From dcf70787ce7d61b81b7c9c86db58db4faefdcf7d Mon Sep 17 00:00:00 2001 From: wormtql <584130248@qq.com> Date: Wed, 9 Aug 2023 21:42:37 +0800 Subject: [PATCH 1/7] feat(4.0): Add Lynette --- mona_core/src/character/character_config.rs | 1 + mona_core/src/character/character_name.rs | 1 + .../src/character/characters/anemo/lynette.rs | 290 +++ .../src/character/characters/anemo/mod.rs | 4 +- src/assets/_gen_artifact.js | 634 +++---- src/assets/_gen_buff.js | 446 ++--- src/assets/_gen_character.js | 1580 +++++++++-------- src/assets/_gen_pf.js | 32 +- src/assets/_gen_tf.js | 438 ++--- src/assets/_gen_weapon.js | 684 +++---- src/i18n/generated/en.json | 38 +- src/i18n/generated/zh-cn.json | 16 + src/images/characters/Lynette_splash.png | Bin 0 -> 41176 bytes 13 files changed, 2284 insertions(+), 1880 deletions(-) create mode 100644 mona_core/src/character/characters/anemo/lynette.rs create mode 100644 src/images/characters/Lynette_splash.png diff --git a/mona_core/src/character/character_config.rs b/mona_core/src/character/character_config.rs index 8aa364a8..809d24dd 100644 --- a/mona_core/src/character/character_config.rs +++ b/mona_core/src/character/character_config.rs @@ -24,5 +24,6 @@ pub enum CharacterConfig { Alhaitham { c2_stack: f64, c4_stack: f64, c6_rate: f64 }, Kaveh { talent2_stack: f64, c2_rate: f64 }, Baizhu { hp_below_50: bool }, + Lynette { talent1_rate: f64, talent1_count: usize, talent2_rate: f64 }, NoConfig, } \ No newline at end of file diff --git a/mona_core/src/character/character_name.rs b/mona_core/src/character/character_name.rs index 95e38dd1..0a6435ec 100644 --- a/mona_core/src/character/character_name.rs +++ b/mona_core/src/character/character_name.rs @@ -62,6 +62,7 @@ pub enum CharacterName { KukiShinobu, Layla, Lisa, + Lynette, Mona, Nahida, Nilou, diff --git a/mona_core/src/character/characters/anemo/lynette.rs b/mona_core/src/character/characters/anemo/lynette.rs new file mode 100644 index 00000000..7ce8e537 --- /dev/null +++ b/mona_core/src/character/characters/anemo/lynette.rs @@ -0,0 +1,290 @@ +use crate::attribute::{Attribute, AttributeName, AttributeCommon}; +use crate::character::{CharacterConfig, CharacterName, CharacterStaticData}; +use crate::character::character_common_data::CharacterCommonData; +use crate::character::character_sub_stat::CharacterSubStatFamily; +use crate::character::macros::{damage_enum, damage_ratio, skill_map, skill_type}; +use crate::character::skill_config::CharacterSkillConfig; +use crate::character::traits::{CharacterSkillMap, CharacterSkillMapItem, CharacterTrait}; +use crate::common::{ChangeAttribute, Element, SkillType, StatName, WeaponType}; +use crate::common::i18n::{locale, hit_n_dmg, plunging_dmg, charged_dmg}; +use crate::common::item_config_type::{ItemConfig, ItemConfigType}; +use crate::damage::damage_builder::DamageBuilder; +use crate::damage::DamageContext; +use crate::target_functions::TargetFunction; +use crate::team::TeamQuantization; +use crate::weapon::weapon_common_data::WeaponCommonData; + +pub struct LynetteSkillType { + pub normal_dmg1: [f64; 15], + pub normal_dmg2: [f64; 15], + pub normal_dmg31: [f64; 15], + pub normal_dmg32: [f64; 15], + pub normal_dmg4: [f64; 15], + pub charged_dmg11: [f64; 15], + pub charged_dmg12: [f64; 15], + pub plunging_dmg1: [f64; 15], + pub plunging_dmg2: [f64; 15], + pub plunging_dmg3: [f64; 15], + + pub e_dmg1: [f64; 15], + pub e_dmg2: [f64; 15], + pub e_heal: f64, + pub e_hp_consumption: f64, + + pub q_dmg1: [f64; 15], + pub q_dmg2: [f64; 15], + pub q_dmg3: [f64; 15], +} + +pub const LYNETTE_SKILL: LynetteSkillType = LynetteSkillType { + normal_dmg1: [0.4308, 0.4659, 0.5009, 0.551, 0.5861, 0.6262, 0.6813, 0.7364, 0.7915, 0.8516, 0.9117, 0.9718, 1.032, 1.0921, 1.1522], + normal_dmg2: [0.3761, 0.4067, 0.4374, 0.4811, 0.5117, 0.5467, 0.5948, 0.6429, 0.691, 0.7435, 0.796, 0.8485, 0.9009, 0.9534, 1.0059], + normal_dmg31: [0.2786, 0.3013, 0.324, 0.3564, 0.3791, 0.405, 0.4406, 0.4763, 0.5119, 0.5508, 0.5897, 0.6286, 0.6674, 0.7063, 0.7452], + normal_dmg32: [0.2159, 0.2335, 0.2511, 0.2762, 0.2938, 0.3138, 0.3415, 0.3691, 0.3967, 0.4268, 0.457, 0.4871, 0.5172, 0.5474, 0.5775], + normal_dmg4: [0.6315, 0.6829, 0.7344, 0.8078, 0.8592, 0.9179, 0.9987, 1.0795, 1.1603, 1.2484, 1.3365, 1.4246, 1.5128, 1.6009, 1.689], + charged_dmg11: [0.442, 0.478, 0.514, 0.5654, 0.6014, 0.6425, 0.699, 0.7556, 0.8121, 0.8738, 0.9355, 0.9972, 1.0588, 1.1205, 1.1822], + charged_dmg12: [0.614, 0.664, 0.714, 0.7854, 0.8354, 0.8925, 0.971, 1.0496, 1.1281, 1.2138, 1.2995, 1.3852, 1.4708, 1.5565, 1.6422], + plunging_dmg1: [0.6393, 0.6914, 0.7434, 0.8177, 0.8698, 0.9293, 1.011, 1.0928, 1.1746, 1.2638, 1.353, 1.4422, 1.5314, 1.6206, 1.7098], + plunging_dmg2: [1.2784, 1.3824, 1.4865, 1.6351, 1.7392, 1.8581, 2.0216, 2.1851, 2.3486, 2.527, 2.7054, 2.8838, 3.0622, 3.2405, 3.4189], + plunging_dmg3: [1.5968, 1.7267, 1.8567, 2.0424, 2.1723, 2.3209, 2.5251, 2.7293, 2.9336, 3.1564, 3.3792, 3.602, 3.8248, 4.0476, 4.2704], + e_dmg1: [2.68, 2.881, 3.082, 3.35, 3.551, 3.752, 4.02, 4.288, 4.556, 4.824, 5.092, 5.36, 5.695, 6.03, 6.365], + e_dmg2: [0.312, 0.3354, 0.3588, 0.39, 0.4134, 0.4368, 0.468, 0.4992, 0.5304, 0.5616, 0.5928, 0.624, 0.663, 0.702, 0.741], + e_heal: 0.25, + e_hp_consumption: 0.06, + q_dmg1: [0.832, 0.8944, 0.9568, 1.04, 1.1024, 1.1648, 1.248, 1.3312, 1.4144, 1.4976, 1.5808, 1.664, 1.768, 1.872, 1.976], + q_dmg2: [0.512, 0.5504, 0.5888, 0.64, 0.6784, 0.7168, 0.768, 0.8192, 0.8704, 0.9216, 0.9728, 1.024, 1.088, 1.152, 1.216], + q_dmg3: [0.456, 0.4902, 0.5244, 0.57, 0.6042, 0.6384, 0.684, 0.7296, 0.7752, 0.8208, 0.8664, 0.912, 0.969, 1.026, 1.083], +}; + +damage_enum!( + LynetteDamageEnum + Normal1 + Normal2 + Normal31 + Normal32 + Normal4 + Charged11 + Charged12 + Plunging1 + Plunging2 + Plunging3 + E1 + E2 + EHeal + Q1 + Q2 + Q3 + Q3Hydro + Q3Pyro + Q3Electro + Q3Cryo +); + +impl LynetteDamageEnum { + pub fn get_element(&self) -> Element { + use LynetteDamageEnum::*; + match *self { + Normal1 | Normal2 | Normal31 | Normal32 | Normal4 => Element::Physical, + Charged11 | Charged12 => Element::Physical, + Plunging1 | Plunging2 | Plunging3 => Element::Physical, + E1 | E2 | EHeal => Element::Anemo, + Q1 | Q2 | Q3 => Element::Anemo, + Q3Hydro => Element::Hydro, + Q3Pyro => Element::Pyro, + Q3Electro => Element::Electro, + Q3Cryo => Element::Cryo, + } + } + + pub fn get_skill_type(&self) -> SkillType { + use LynetteDamageEnum::*; + match *self { + Normal1 | Normal2 | Normal31 | Normal32 | Normal4 => SkillType::NormalAttack, + Charged11 | Charged12 => SkillType::ChargedAttack, + Plunging1 | Plunging2 | Plunging3 => SkillType::PlungingAttack, + E1 | E2 | EHeal => SkillType::ElementalSkill, + Q1 | Q2 | Q3 | Q3Hydro | Q3Pyro | Q3Electro | Q3Cryo => SkillType::ElementalBurst + } + } +} + +pub struct LynetteEffect { + pub has_talent1: bool, + pub has_talent2: bool, + pub talent1_rate: f64, + pub talent1_count: usize, + pub talent2_rate: f64, +} + +impl ChangeAttribute for LynetteEffect { + fn change_attribute(&self, attribute: &mut A) { + if self.has_talent1 { + let rate_base: f64 = 0.04 * self.talent1_count as f64 + 0.04; + attribute.add_atk_percentage("天赋1「巧施协同」", rate_base * self.talent1_rate); + } + + if self.has_talent2 { + attribute.set_value_by(AttributeName::BonusElementalBurst, "天赋2「道具完备」", self.talent2_rate * 0.15); + } + } +} + +pub struct Lynette; + +impl CharacterTrait for Lynette { + const STATIC_DATA: CharacterStaticData = CharacterStaticData { + name: CharacterName::Lynette, + internal_name: "Lynette", + name_locale: locale!( + zh_cn: "琳妮特", + en: "Lynette", + ), + element: Element::Anemo, + hp: [1039, 2670, 3447, 5163, 5715, 6573, 7309, 8168, 8719, 9577, 10129, 10987, 11539, 12397], + atk: [19, 50, 64, 96, 107, 123, 136, 153, 163, 179, 189, 205, 215, 232], + def: [60, 153, 198, 296, 328, 377, 420, 469, 501, 550, 582, 631, 663, 712], + sub_stat: CharacterSubStatFamily::Bonus240(StatName::AnemoBonus), + weapon_type: WeaponType::Sword, + star: 4, + skill_name1: locale!( + zh_cn: "普通攻击·迅捷礼刺剑", + en: "Normal Attack: Rapid Ritesword", + ), + skill_name2: locale!( + zh_cn: "谜影障身法", + en: "Enigmatic Feint", + ), + skill_name3: locale!( + zh_cn: "魔术·运变惊奇", + en: "Magic Trick: Astonishing Shift", + ) + }; + type SkillType = LynetteSkillType; + const SKILL: Self::SkillType = LYNETTE_SKILL; + type DamageEnumType = LynetteDamageEnum; + type RoleEnum = (); + + #[cfg(not(target_family = "wasm"))] + const SKILL_MAP: CharacterSkillMap = CharacterSkillMap { + skill1: skill_map!( + LynetteDamageEnum + Normal1 hit_n_dmg!(1) + Normal2 hit_n_dmg!(2) + Normal31 hit_n_dmg!(3, 1) + Normal32 hit_n_dmg!(3, 2) + Normal4 hit_n_dmg!(4) + Charged11 charged_dmg!(1) + Charged12 charged_dmg!(2) + Plunging1 plunging_dmg!(1) + Plunging2 plunging_dmg!(2) + Plunging3 plunging_dmg!(3) + ), + skill2: skill_map!( + LynetteDamageEnum + E1 locale!(zh_cn: "谜影突刺伤害", en: "Enigma Thrust DMG") + E2 locale!(zh_cn: "流涌之刃伤害", en: "Surging Blade DMG") + EHeal locale!(zh_cn: "命中治疗量", en: "HP Regeneration") + ), + skill3: skill_map!( + LynetteDamageEnum + Q1 locale!(zh_cn: "技能伤害", en: "Skill DMG") + Q2 locale!(zh_cn: "惊奇猫猫盒伤害", en: "Bogglecat Box DMG") + Q3 locale!(zh_cn: "彩练术弹伤害", en: "Vivid Shot DMG") + Q3Hydro locale!(zh_cn: "彩练术弹伤害(水)", en: "Vivid Shot DMG(Hydro)") + Q3Pyro locale!(zh_cn: "彩练术弹伤害(火)", en: "Vivid Shot DMG(Pyro)") + Q3Electro locale!(zh_cn: "彩练术弹伤害(雷)", en: "Vivid Shot DMG(Electro)") + Q3Cryo locale!(zh_cn: "彩练术弹伤害(冰)", en: "Vivid Shot DMG(Cryo)") + ) + }; + + #[cfg(not(target_family = "wasm"))] + const CONFIG_DATA: Option<&'static [ItemConfig]> = Some(&[ + ItemConfig { + name: "talent1_rate", + title: locale!( + zh_cn: "天赋「巧施协同」比例", + en: "Talent 「Sophisticated Synergy」 Ratio" + ), + config: ItemConfigType::Float { min: 0.0, max: 1.0, default: 0.5 } + }, + ItemConfig { + name: "talent1_count", + title: locale!( + zh_cn: "天赋「巧施协同」不同元素类型", + en: "Talent 「Sophisticated Synergy」 Element Counts" + ), + config: ItemConfigType::Int { min: 1, max: 4, default: 4 } + }, + ItemConfig { + name: "talent2_rate", + title: locale!( + zh_cn: "天赋「道具完备」比例", + en: "Talent 「Props Positively Prepped」 Ratio" + ), + config: ItemConfigType::Float { min: 0.0, max: 1.0, default: 0.5 } + } + ]); + + fn damage_internal(context: &DamageContext<'_, D::AttributeType>, s: usize, config: &CharacterSkillConfig, fumo: Option) -> D::Result { + let s: LynetteDamageEnum = num::FromPrimitive::from_usize(s).unwrap(); + let (s1, s2, s3) = context.character_common_data.get_3_skill(); + + use LynetteDamageEnum::*; + + let mut builder = D::new(); + + if s == EHeal { + let ratio = LYNETTE_SKILL.e_heal; + builder.add_hp_ratio("技能倍率", ratio); + + builder.heal(&context.attribute) + } else { + let ratio = match s { + Normal1 => LYNETTE_SKILL.normal_dmg1[s1], + Normal2 => LYNETTE_SKILL.normal_dmg2[s1], + Normal31 => LYNETTE_SKILL.normal_dmg31[s1], + Normal32 => LYNETTE_SKILL.normal_dmg32[s1], + Normal4 => LYNETTE_SKILL.normal_dmg4[s1], + Charged11 => LYNETTE_SKILL.charged_dmg11[s1], + Charged12 => LYNETTE_SKILL.charged_dmg12[s1], + Plunging1 => LYNETTE_SKILL.plunging_dmg1[s1], + Plunging2 => LYNETTE_SKILL.plunging_dmg2[s1], + Plunging3 => LYNETTE_SKILL.plunging_dmg3[s1], + E1 => LYNETTE_SKILL.e_dmg1[s2], + E2 => LYNETTE_SKILL.e_dmg2[s2], + Q1 => LYNETTE_SKILL.q_dmg1[s3], + Q2 => LYNETTE_SKILL.q_dmg2[s3], + Q3 | Q3Hydro | Q3Electro | Q3Pyro | Q3Cryo => LYNETTE_SKILL.q_dmg3[s3], + _ => 0.0, + }; + + builder.add_atk_ratio("技能倍率", ratio); + builder.damage( + &context.attribute, + &context.enemy, + s.get_element(), + s.get_skill_type(), + context.character_common_data.level, + fumo + ) + } + } + + fn new_effect(common_data: &CharacterCommonData, config: &CharacterConfig) -> Option>> { + let (a, b, c) = match *config { + CharacterConfig::Lynette { talent1_rate, talent1_count, talent2_rate } => (talent1_rate, talent1_count, talent2_rate), + _ => (0.0, 1, 0.0) + }; + Some(Box::new(LynetteEffect { + talent1_rate: a, + talent1_count: b, + talent2_rate: c, + has_talent1: common_data.has_talent1, + has_talent2: common_data.has_talent2, + })) + } + + fn get_target_function_by_role(role_index: usize, team: &TeamQuantization, c: &CharacterCommonData, w: &WeaponCommonData) -> Box { + unimplemented!(); + } +} \ No newline at end of file diff --git a/mona_core/src/character/characters/anemo/mod.rs b/mona_core/src/character/characters/anemo/mod.rs index 3058886a..c703a292 100644 --- a/mona_core/src/character/characters/anemo/mod.rs +++ b/mona_core/src/character/characters/anemo/mod.rs @@ -7,7 +7,7 @@ pub mod xiao; pub mod shikanoin_heizou; pub mod wanderer; pub mod faruzan; -//pub mod faruzan; +pub mod lynette; pub use jean::Jean; pub use kaedehara_kazuha::KaedeharaKazuha; @@ -18,4 +18,4 @@ pub use xiao::Xiao; pub use shikanoin_heizou::ShikanoinHeizou; pub use wanderer::Wanderer; pub use faruzan::Faruzan; -//pub use faruzan::Faruzan; \ No newline at end of file +pub use lynette::Lynette; diff --git a/src/assets/_gen_artifact.js b/src/assets/_gen_artifact.js index 2686a736..1316e7a9 100644 --- a/src/assets/_gen_artifact.js +++ b/src/assets/_gen_artifact.js @@ -12,11 +12,11 @@ export default { maxStar: 3, - effect2: 1177, + effect2: 1190, - effect4: 581, + effect4: 585, @@ -58,40 +58,40 @@ export default { "archaicPetra": { eng: "archaicPetra", name2: "ArchaicPetra", - nameLocale: 598, + nameLocale: 607, minStar: 4, maxStar: 5, - effect2: 1378, + effect2: 1391, - effect4: 1393, + effect4: 1406, flower: { - text: 1242, + text: 1255, url: getIcon("UI_RelicIcon_15014_4") }, feather: { - text: 556, + text: 560, url: getIcon("UI_RelicIcon_15014_2") }, sand: { - text: 763, + text: 773, url: getIcon("UI_RelicIcon_15014_5") }, cup: { - text: 557, + text: 561, url: getIcon("UI_RelicIcon_15014_1") }, @@ -105,7 +105,7 @@ export default { {"default":"Electro","name":"element","title":176,"type":"element4"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":695,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":705,"type":"float"}, ], }, @@ -113,52 +113,52 @@ export default { "berserker": { eng: "berserker", name2: "Berserker", - nameLocale: 603, + nameLocale: 613, minStar: 3, maxStar: 4, - effect2: 927, + effect2: 938, - effect4: 1181, + effect4: 1194, flower: { - text: 606, + text: 616, url: getIcon("UI_RelicIcon_10005_4") }, feather: { - text: 605, + text: 615, url: getIcon("UI_RelicIcon_10005_2") }, sand: { - text: 604, + text: 614, url: getIcon("UI_RelicIcon_10005_5") }, cup: { - text: 607, + text: 617, url: getIcon("UI_RelicIcon_10005_1") }, head: { - text: 608, + text: 618, url: getIcon("UI_RelicIcon_10005_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":695,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":705,"type":"float"}, ], }, @@ -171,11 +171,11 @@ export default { maxStar: 5, - effect2: 1377, + effect2: 1390, - effect4: 684, + effect4: 694, @@ -187,7 +187,7 @@ export default { feather: { - text: 667, + text: 677, url: getIcon("UI_RelicIcon_14001_2") }, @@ -199,19 +199,19 @@ export default { cup: { - text: 1550, + text: 1565, url: getIcon("UI_RelicIcon_14001_1") }, head: { - text: 1236, + text: 1249, url: getIcon("UI_RelicIcon_14001_3") }, config4: [ - {"default":0.0,"max":0.4,"min":0.0,"name":"critical_bonus","title":1286,"type":"float"}, + {"default":0.0,"max":0.4,"min":0.0,"name":"critical_bonus","title":1299,"type":"float"}, ], }, @@ -219,12 +219,12 @@ export default { "bloodstainedChivalry": { eng: "bloodstainedChivalry", name2: "BloodstainedChivalry", - nameLocale: 973, + nameLocale: 984, minStar: 4, maxStar: 5, - effect2: 1546, + effect2: 1561, @@ -234,37 +234,37 @@ export default { flower: { - text: 971, + text: 982, url: getIcon("UI_RelicIcon_15008_4") }, feather: { - text: 974, + text: 985, url: getIcon("UI_RelicIcon_15008_2") }, sand: { - text: 1720, + text: 1735, url: getIcon("UI_RelicIcon_15008_5") }, cup: { - text: 975, + text: 986, url: getIcon("UI_RelicIcon_15008_1") }, head: { - text: 972, + text: 983, url: getIcon("UI_RelicIcon_15008_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":695,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":705,"type":"float"}, ], }, @@ -277,11 +277,11 @@ export default { maxStar: 4, - effect2: 674, + effect2: 684, - effect4: 542, + effect4: 546, @@ -317,7 +317,7 @@ export default { config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":695,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":705,"type":"float"}, ], }, @@ -325,52 +325,52 @@ export default { "crimsonWitch": { eng: "crimsonWitch", name2: "CrimsonWitchOfFlames", - nameLocale: 1098, + nameLocale: 1110, minStar: 4, maxStar: 5, - effect2: 1380, + effect2: 1393, - effect4: 1496, + effect4: 1511, flower: { - text: 1728, + text: 1743, url: getIcon("UI_RelicIcon_15006_4") }, feather: { - text: 1726, + text: 1741, url: getIcon("UI_RelicIcon_15006_2") }, sand: { - text: 1729, + text: 1744, url: getIcon("UI_RelicIcon_15006_5") }, cup: { - text: 1727, + text: 1742, url: getIcon("UI_RelicIcon_15006_1") }, head: { - text: 1106, + text: 1118, url: getIcon("UI_RelicIcon_15006_3") }, config4: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"level","title":696,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"level","title":706,"type":"float"}, ], }, @@ -378,12 +378,12 @@ export default { "DeepwoodMemories": { eng: "DeepwoodMemories", name2: "DeepwoodMemories", - nameLocale: 1050, + nameLocale: 1062, minStar: 4, maxStar: 5, - effect2: 1381, + effect2: 1394, @@ -393,37 +393,37 @@ export default { flower: { - text: 1536, + text: 1551, url: getIcon("UI_RelicIcon_15025_4") }, feather: { - text: 1332, + text: 1345, url: getIcon("UI_RelicIcon_15025_2") }, sand: { - text: 1477, + text: 1492, url: getIcon("UI_RelicIcon_15025_5") }, cup: { - text: 1537, + text: 1552, url: getIcon("UI_RelicIcon_15025_1") }, head: { - text: 951, + text: 962, url: getIcon("UI_RelicIcon_15025_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":695,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":705,"type":"float"}, ], }, @@ -431,46 +431,46 @@ export default { "defenderWill": { eng: "defenderWill", name2: "DefendersWill", - nameLocale: 505, + nameLocale: 509, minStar: 0, maxStar: 0, - effect2: 1621, + effect2: 1636, - effect4: 1613, + effect4: 1628, flower: { - text: 507, + text: 511, url: getIcon("UI_RelicIcon_10003_4") }, feather: { - text: 509, + text: 513, url: getIcon("UI_RelicIcon_10003_2") }, sand: { - text: 508, + text: 512, url: getIcon("UI_RelicIcon_10003_5") }, cup: { - text: 506, + text: 510, url: getIcon("UI_RelicIcon_10003_1") }, head: { - text: 510, + text: 514, url: getIcon("UI_RelicIcon_10003_3") }, @@ -482,52 +482,52 @@ export default { "EchoesOfAnOffering": { eng: "EchoesOfAnOffering", name2: "EchoesOfAnOffering", - nameLocale: 960, + nameLocale: 971, minStar: 4, maxStar: 5, - effect2: 674, + effect2: 684, - effect4: 868, + effect4: 879, flower: { - text: 1723, + text: 1738, url: getIcon("UI_RelicIcon_15024_4") }, feather: { - text: 419, + text: 420, url: getIcon("UI_RelicIcon_15024_2") }, sand: { - text: 1244, + text: 1257, url: getIcon("UI_RelicIcon_15024_5") }, cup: { - text: 1049, + text: 1061, url: getIcon("UI_RelicIcon_15024_1") }, head: { - text: 1042, + text: 1054, url: getIcon("UI_RelicIcon_15024_3") }, config4: [ - {"default":0.5053283764473575,"max":1.0,"min":0.0,"name":"rate","title":561,"type":"float"}, + {"default":0.5053283764473575,"max":1.0,"min":0.0,"name":"rate","title":565,"type":"float"}, ], }, @@ -535,7 +535,7 @@ export default { "emblemOfSeveredFate": { eng: "emblemOfSeveredFate", name2: "EmblemOfSeveredFate", - nameLocale: 1310, + nameLocale: 1323, minStar: 4, maxStar: 5, @@ -544,13 +544,13 @@ export default { - effect4: 425, + effect4: 426, flower: { - text: 755, + text: 765, url: getIcon("UI_RelicIcon_15020_4") }, @@ -562,13 +562,13 @@ export default { sand: { - text: 1645, + text: 1660, url: getIcon("UI_RelicIcon_15020_5") }, cup: { - text: 1313, + text: 1326, url: getIcon("UI_RelicIcon_15020_1") }, @@ -595,19 +595,19 @@ export default { - effect4: 1427, + effect4: 1440, flower: { - text: 950, + text: 961, url: getIcon("UI_RelicIcon_15028_4") }, feather: { - text: 1475, + text: 1490, url: getIcon("UI_RelicIcon_15028_2") }, @@ -619,19 +619,19 @@ export default { cup: { - text: 511, + text: 515, url: getIcon("UI_RelicIcon_15028_1") }, head: { - text: 1296, + text: 1309, url: getIcon("UI_RelicIcon_15028_3") }, config4: [ - {"default":4.0,"max":4.0,"min":0.0,"name":"stack","title":696,"type":"float"}, + {"default":4.0,"max":4.0,"min":0.0,"name":"stack","title":706,"type":"float"}, ], }, @@ -639,7 +639,7 @@ export default { "gambler": { eng: "gambler", name2: "Gambler", - nameLocale: 1481, + nameLocale: 1496, minStar: 3, maxStar: 4, @@ -654,31 +654,31 @@ export default { flower: { - text: 1485, + text: 1500, url: getIcon("UI_RelicIcon_10008_4") }, feather: { - text: 1483, + text: 1498, url: getIcon("UI_RelicIcon_10008_2") }, sand: { - text: 1482, + text: 1497, url: getIcon("UI_RelicIcon_10008_5") }, cup: { - text: 1486, + text: 1501, url: getIcon("UI_RelicIcon_10008_1") }, head: { - text: 1484, + text: 1499, url: getIcon("UI_RelicIcon_10008_3") }, @@ -690,16 +690,16 @@ export default { "DesertPavilionChronicle": { eng: "DesertPavilionChronicle", name2: "DesertPavilionChronicle", - nameLocale: 1016, + nameLocale: 1027, minStar: 4, maxStar: 5, - effect2: 1383, + effect2: 1396, - effect4: 1574, + effect4: 1589, @@ -711,31 +711,31 @@ export default { feather: { - text: 1741, + text: 1757, url: getIcon("UI_RelicIcon_15027_2") }, sand: { - text: 482, + text: 486, url: getIcon("UI_RelicIcon_15027_5") }, cup: { - text: 1538, + text: 1553, url: getIcon("UI_RelicIcon_15027_1") }, head: { - text: 1036, + text: 1047, url: getIcon("UI_RelicIcon_15027_3") }, config4: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":695,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":705,"type":"float"}, ], }, @@ -743,46 +743,46 @@ export default { "GildedDreams": { eng: "GildedDreams", name2: "GildedDreams", - nameLocale: 1709, + nameLocale: 1724, minStar: 4, maxStar: 5, - effect2: 214, + effect2: 213, - effect4: 1455, + effect4: 1468, flower: { - text: 982, + text: 993, url: getIcon("UI_RelicIcon_15026_4") }, feather: { - text: 1423, + text: 1436, url: getIcon("UI_RelicIcon_15026_2") }, sand: { - text: 1014, + text: 1025, url: getIcon("UI_RelicIcon_15026_5") }, cup: { - text: 491, + text: 495, url: getIcon("UI_RelicIcon_15026_1") }, head: { - text: 1017, + text: 1028, url: getIcon("UI_RelicIcon_15026_3") }, @@ -792,7 +792,7 @@ export default { {"default":0,"max":3,"min":0,"name":"diff_count","title":81,"type":"int"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":695,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":705,"type":"float"}, ], }, @@ -800,46 +800,46 @@ export default { "gladiatorFinale": { eng: "gladiatorFinale", name2: "GladiatorsFinale", - nameLocale: 1442, + nameLocale: 1455, minStar: 4, maxStar: 5, - effect2: 674, + effect2: 684, - effect4: 1428, + effect4: 1441, flower: { - text: 1441, + text: 1454, url: getIcon("UI_RelicIcon_15001_4") }, feather: { - text: 1440, + text: 1453, url: getIcon("UI_RelicIcon_15001_2") }, sand: { - text: 1439, + text: 1452, url: getIcon("UI_RelicIcon_15001_5") }, cup: { - text: 1443, + text: 1456, url: getIcon("UI_RelicIcon_15001_1") }, head: { - text: 1438, + text: 1451, url: getIcon("UI_RelicIcon_15001_3") }, @@ -851,52 +851,52 @@ export default { "heartOfDepth": { eng: "heartOfDepth", name2: "HeartOfDepth", - nameLocale: 1012, + nameLocale: 1023, minStar: 4, maxStar: 5, - effect2: 1379, + effect2: 1392, - effect4: 717, + effect4: 727, flower: { - text: 1710, + text: 1725, url: getIcon("UI_RelicIcon_15016_4") }, feather: { - text: 1540, + text: 1555, url: getIcon("UI_RelicIcon_15016_2") }, sand: { - text: 418, + text: 419, url: getIcon("UI_RelicIcon_15016_5") }, cup: { - text: 1013, + text: 1024, url: getIcon("UI_RelicIcon_15016_1") }, head: { - text: 1551, + text: 1566, url: getIcon("UI_RelicIcon_15016_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":695,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":705,"type":"float"}, ], }, @@ -909,17 +909,17 @@ export default { maxStar: 5, - effect2: 1621, + effect2: 1636, - effect4: 1424, + effect4: 1437, flower: { - text: 1369, + text: 1382, url: getIcon("UI_RelicIcon_15021_4") }, @@ -937,13 +937,13 @@ export default { cup: { - text: 984, + text: 995, url: getIcon("UI_RelicIcon_15021_1") }, head: { - text: 587, + text: 591, url: getIcon("UI_RelicIcon_15021_3") }, @@ -957,52 +957,52 @@ export default { "instructor": { eng: "instructor", name2: "Instructor", - nameLocale: 699, + nameLocale: 709, minStar: 3, maxStar: 4, - effect2: 213, + effect2: 214, - effect4: 1456, + effect4: 1469, flower: { - text: 704, + text: 714, url: getIcon("UI_RelicIcon_10007_4") }, feather: { - text: 703, + text: 713, url: getIcon("UI_RelicIcon_10007_2") }, sand: { - text: 702, + text: 712, url: getIcon("UI_RelicIcon_10007_5") }, cup: { - text: 705, + text: 715, url: getIcon("UI_RelicIcon_10007_1") }, head: { - text: 701, + text: 711, url: getIcon("UI_RelicIcon_10007_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":695,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":705,"type":"float"}, ], }, @@ -1010,52 +1010,52 @@ export default { "lavaWalker": { eng: "lavaWalker", name2: "Lavawalker", - nameLocale: 1059, + nameLocale: 1071, minStar: 4, maxStar: 5, - effect2: 1080, + effect2: 1092, - effect4: 537, + effect4: 541, flower: { - text: 1054, + text: 1066, url: getIcon("UI_RelicIcon_14003_4") }, feather: { - text: 1057, + text: 1069, url: getIcon("UI_RelicIcon_14003_2") }, sand: { - text: 1056, + text: 1068, url: getIcon("UI_RelicIcon_14003_5") }, cup: { - text: 1058, + text: 1070, url: getIcon("UI_RelicIcon_14003_1") }, head: { - text: 1055, + text: 1067, url: getIcon("UI_RelicIcon_14003_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":697,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":707,"type":"float"}, ], }, @@ -1063,46 +1063,46 @@ export default { "luckyDog": { eng: "luckyDog", name2: "LuckyDog", - nameLocale: 568, + nameLocale: 572, minStar: 1, maxStar: 3, - effect2: 1620, + effect2: 1635, - effect4: 649, + effect4: 659, flower: { - text: 571, + text: 575, url: getIcon("UI_RelicIcon_10011_4") }, feather: { - text: 573, + text: 577, url: getIcon("UI_RelicIcon_10011_2") }, sand: { - text: 570, + text: 574, url: getIcon("UI_RelicIcon_10011_5") }, cup: { - text: 569, + text: 573, url: getIcon("UI_RelicIcon_10011_1") }, head: { - text: 572, + text: 576, url: getIcon("UI_RelicIcon_10011_3") }, @@ -1114,46 +1114,46 @@ export default { "maidenBeloved": { eng: "maidenBeloved", name2: "MaidenBeloved", - nameLocale: 1421, + nameLocale: 1434, minStar: 4, maxStar: 5, - effect2: 1449, + effect2: 1462, - effect4: 724, + effect4: 734, flower: { - text: 1524, + text: 1539, url: getIcon("UI_RelicIcon_14004_4") }, feather: { - text: 548, + text: 552, url: getIcon("UI_RelicIcon_14004_2") }, sand: { - text: 547, + text: 551, url: getIcon("UI_RelicIcon_14004_5") }, cup: { - text: 546, + text: 550, url: getIcon("UI_RelicIcon_14004_1") }, head: { - text: 545, + text: 549, url: getIcon("UI_RelicIcon_14004_3") }, @@ -1165,52 +1165,52 @@ export default { "martialArtist": { eng: "martialArtist", name2: "MartialArtist", - nameLocale: 988, + nameLocale: 999, minStar: 3, maxStar: 4, - effect2: 862, + effect2: 873, - effect4: 718, + effect4: 728, flower: { - text: 991, + text: 1002, url: getIcon("UI_RelicIcon_10006_4") }, feather: { - text: 992, + text: 1003, url: getIcon("UI_RelicIcon_10006_2") }, sand: { - text: 990, + text: 1001, url: getIcon("UI_RelicIcon_10006_5") }, cup: { - text: 993, + text: 1004, url: getIcon("UI_RelicIcon_10006_1") }, head: { - text: 989, + text: 1000, url: getIcon("UI_RelicIcon_10006_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":695,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":705,"type":"float"}, ], }, @@ -1218,7 +1218,7 @@ export default { "noblesseOblige": { eng: "noblesseOblige", name2: "NoblesseOblige", - nameLocale: 756, + nameLocale: 766, minStar: 4, maxStar: 5, @@ -1227,43 +1227,43 @@ export default { - effect4: 732, + effect4: 742, flower: { - text: 516, + text: 520, url: getIcon("UI_RelicIcon_15007_4") }, feather: { - text: 515, + text: 519, url: getIcon("UI_RelicIcon_15007_2") }, sand: { - text: 518, + text: 522, url: getIcon("UI_RelicIcon_15007_5") }, cup: { - text: 521, + text: 525, url: getIcon("UI_RelicIcon_15007_1") }, head: { - text: 524, + text: 528, url: getIcon("UI_RelicIcon_15007_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":695,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":705,"type":"float"}, ], }, @@ -1271,34 +1271,34 @@ export default { "NymphsDream": { eng: "NymphsDream", name2: "NymphsDream", - nameLocale: 1001, + nameLocale: 1012, minStar: 4, maxStar: 5, - effect2: 1379, + effect2: 1392, - effect4: 853, + effect4: 864, flower: { - text: 740, + text: 750, url: getIcon("UI_RelicIcon_15029_4") }, feather: { - text: 417, + text: 418, url: getIcon("UI_RelicIcon_15029_2") }, sand: { - text: 1002, + text: 1013, url: getIcon("UI_RelicIcon_15029_5") }, @@ -1310,7 +1310,7 @@ export default { head: { - text: 597, + text: 606, url: getIcon("UI_RelicIcon_15029_3") }, @@ -1322,7 +1322,7 @@ export default { {"default":1.0,"max":1.0,"min":0.0,"name":"w3","title":67,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":578,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":583,"type":"float"}, ], }, @@ -1330,46 +1330,46 @@ export default { "oceanHuedClam": { eng: "oceanHuedClam", name2: "OceanHuedClam", - nameLocale: 1047, + nameLocale: 1059, minStar: 4, maxStar: 5, - effect2: 1021, + effect2: 1032, - effect4: 1425, + effect4: 1438, flower: { - text: 1046, + text: 1058, url: getIcon("UI_RelicIcon_15022_4") }, feather: { - text: 1053, + text: 1065, url: getIcon("UI_RelicIcon_15022_2") }, sand: { - text: 1276, + text: 1289, url: getIcon("UI_RelicIcon_15022_5") }, cup: { - text: 1224, + text: 1237, url: getIcon("UI_RelicIcon_15022_1") }, head: { - text: 1048, + text: 1060, url: getIcon("UI_RelicIcon_15022_3") }, @@ -1381,12 +1381,12 @@ export default { "paleFlame": { eng: "paleFlame", name2: "PaleFlame", - nameLocale: 1355, + nameLocale: 1368, minStar: 4, maxStar: 5, - effect2: 1547, + effect2: 1562, @@ -1396,13 +1396,13 @@ export default { flower: { - text: 746, + text: 756, url: getIcon("UI_RelicIcon_15018_4") }, feather: { - text: 1476, + text: 1491, url: getIcon("UI_RelicIcon_15018_2") }, @@ -1414,21 +1414,21 @@ export default { cup: { - text: 1494, + text: 1509, url: getIcon("UI_RelicIcon_15018_1") }, head: { - text: 393, + text: 394, url: getIcon("UI_RelicIcon_15018_3") }, config4: [ - {"default":0.0,"max":2.0,"min":0.0,"name":"avg_level","title":691,"type":"float"}, + {"default":0.0,"max":2.0,"min":0.0,"name":"avg_level","title":701,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"full_rate","title":1072,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"full_rate","title":1084,"type":"float"}, ], }, @@ -1436,7 +1436,7 @@ export default { "prayersForDestiny": { eng: "prayersForDestiny", name2: "PrayersForDestiny", - nameLocale: 1265, + nameLocale: 1278, minStar: 3, maxStar: 4, @@ -1453,7 +1453,7 @@ export default { head: { - text: 1266, + text: 1279, url: getIcon("UI_RelicIcon_15010_3") }, @@ -1465,7 +1465,7 @@ export default { "prayersForIllumination": { eng: "prayersForIllumination", name2: "PrayersForIllumination", - nameLocale: 1267, + nameLocale: 1280, minStar: 3, maxStar: 4, @@ -1482,7 +1482,7 @@ export default { head: { - text: 1268, + text: 1281, url: getIcon("UI_RelicIcon_15009_3") }, @@ -1494,7 +1494,7 @@ export default { "prayersForWisdom": { eng: "prayersForWisdom", name2: "PrayersForWisdom", - nameLocale: 1273, + nameLocale: 1286, minStar: 3, maxStar: 4, @@ -1511,7 +1511,7 @@ export default { head: { - text: 1274, + text: 1287, url: getIcon("UI_RelicIcon_15011_3") }, @@ -1523,7 +1523,7 @@ export default { "prayersToSpringtime": { eng: "prayersToSpringtime", name2: "PrayersToSpringtime", - nameLocale: 1263, + nameLocale: 1276, minStar: 3, maxStar: 4, @@ -1540,7 +1540,7 @@ export default { head: { - text: 1264, + text: 1277, url: getIcon("UI_RelicIcon_15013_3") }, @@ -1552,46 +1552,46 @@ export default { "resolutionOfSojourner": { eng: "resolutionOfSojourner", name2: "ResolutionOfSojourner", - nameLocale: 1416, + nameLocale: 1429, minStar: 3, maxStar: 4, - effect2: 674, + effect2: 684, - effect4: 1577, + effect4: 1592, flower: { - text: 689, + text: 699, url: getIcon("UI_RelicIcon_10001_4") }, feather: { - text: 586, + text: 590, url: getIcon("UI_RelicIcon_10001_2") }, sand: { - text: 1543, + text: 1558, url: getIcon("UI_RelicIcon_10001_5") }, cup: { - text: 583, + text: 587, url: getIcon("UI_RelicIcon_10001_1") }, head: { - text: 601, + text: 611, url: getIcon("UI_RelicIcon_10001_3") }, @@ -1603,52 +1603,52 @@ export default { "retracingBolide": { eng: "retracingBolide", name2: "RetracingBolide", - nameLocale: 1542, + nameLocale: 1557, minStar: 4, maxStar: 5, - effect2: 645, + effect2: 655, - effect4: 435, + effect4: 436, flower: { - text: 439, + text: 440, url: getIcon("UI_RelicIcon_15015_4") }, feather: { - text: 442, + text: 443, url: getIcon("UI_RelicIcon_15015_2") }, sand: { - text: 438, + text: 439, url: getIcon("UI_RelicIcon_15015_5") }, cup: { - text: 441, + text: 442, url: getIcon("UI_RelicIcon_15015_1") }, head: { - text: 440, + text: 441, url: getIcon("UI_RelicIcon_15015_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":646,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":657,"type":"float"}, ], }, @@ -1656,7 +1656,7 @@ export default { "scholar": { eng: "scholar", name2: "Scholar", - nameLocale: 498, + nameLocale: 502, minStar: 3, maxStar: 4, @@ -1665,37 +1665,37 @@ export default { - effect4: 1390, + effect4: 1403, flower: { - text: 499, + text: 503, url: getIcon("UI_RelicIcon_10012_4") }, feather: { - text: 502, + text: 506, url: getIcon("UI_RelicIcon_10012_2") }, sand: { - text: 501, + text: 505, url: getIcon("UI_RelicIcon_10012_5") }, cup: { - text: 500, + text: 504, url: getIcon("UI_RelicIcon_10012_1") }, head: { - text: 503, + text: 507, url: getIcon("UI_RelicIcon_10012_3") }, @@ -1707,52 +1707,52 @@ export default { "shimenawaReminiscence": { eng: "shimenawaReminiscence", name2: "ShimenawasReminiscence", - nameLocale: 1539, + nameLocale: 1554, minStar: 4, maxStar: 5, - effect2: 674, + effect2: 684, - effect4: 725, + effect4: 735, flower: { - text: 1324, + text: 1337, url: getIcon("UI_RelicIcon_15019_4") }, feather: { - text: 592, + text: 601, url: getIcon("UI_RelicIcon_15019_2") }, sand: { - text: 952, + text: 963, url: getIcon("UI_RelicIcon_15019_5") }, cup: { - text: 1243, + text: 1256, url: getIcon("UI_RelicIcon_15019_1") }, head: { - text: 748, + text: 758, url: getIcon("UI_RelicIcon_15019_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":695,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":705,"type":"float"}, ], }, @@ -1765,7 +1765,7 @@ export default { maxStar: 5, - effect2: 1183, + effect2: 1196, @@ -1781,31 +1781,31 @@ export default { feather: { - text: 767, + text: 777, url: getIcon("UI_RelicIcon_15017_2") }, sand: { - text: 1583, + text: 1598, url: getIcon("UI_RelicIcon_15017_5") }, cup: { - text: 1223, + text: 1236, url: getIcon("UI_RelicIcon_15017_1") }, head: { - text: 544, + text: 548, url: getIcon("UI_RelicIcon_15017_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":695,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":705,"type":"float"}, ], }, @@ -1813,7 +1813,7 @@ export default { "exile": { eng: "exile", name2: "TheExile", - nameLocale: 1029, + nameLocale: 1040, minStar: 3, maxStar: 4, @@ -1822,37 +1822,37 @@ export default { - effect4: 731, + effect4: 741, flower: { - text: 1032, + text: 1043, url: getIcon("UI_RelicIcon_10009_4") }, feather: { - text: 1031, + text: 1042, url: getIcon("UI_RelicIcon_10009_2") }, sand: { - text: 1034, + text: 1045, url: getIcon("UI_RelicIcon_10009_5") }, cup: { - text: 1030, + text: 1041, url: getIcon("UI_RelicIcon_10009_1") }, head: { - text: 1033, + text: 1044, url: getIcon("UI_RelicIcon_10009_3") }, @@ -1864,46 +1864,46 @@ export default { "thunderingFury": { eng: "thunderingFury", name2: "ThunderingFury", - nameLocale: 492, + nameLocale: 496, minStar: 4, maxStar: 5, - effect2: 1382, + effect2: 1395, - effect4: 1495, + effect4: 1510, flower: { - text: 1666, + text: 1681, url: getIcon("UI_RelicIcon_15005_4") }, feather: { - text: 1656, + text: 1671, url: getIcon("UI_RelicIcon_15005_2") }, sand: { - text: 1665, + text: 1680, url: getIcon("UI_RelicIcon_15005_5") }, cup: { - text: 1641, + text: 1656, url: getIcon("UI_RelicIcon_15005_1") }, head: { - text: 389, + text: 390, url: getIcon("UI_RelicIcon_15005_3") }, @@ -1915,52 +1915,52 @@ export default { "thunderSmoother": { eng: "thunderSmoother", name2: "Thundersoother", - nameLocale: 562, + nameLocale: 566, minStar: 4, maxStar: 5, - effect2: 1648, + effect2: 1663, - effect4: 540, + effect4: 544, flower: { - text: 566, + text: 570, url: getIcon("UI_RelicIcon_14002_4") }, feather: { - text: 567, + text: 571, url: getIcon("UI_RelicIcon_14002_2") }, sand: { - text: 564, + text: 568, url: getIcon("UI_RelicIcon_14002_5") }, cup: { - text: 565, + text: 569, url: getIcon("UI_RelicIcon_14002_1") }, head: { - text: 563, + text: 567, url: getIcon("UI_RelicIcon_14002_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":708,"type":"float"}, ], }, @@ -1968,12 +1968,12 @@ export default { "tinyMiracle": { eng: "tinyMiracle", name2: "TinyMiracle", - nameLocale: 483, + nameLocale: 487, minStar: 3, maxStar: 4, - effect2: 609, + effect2: 619, @@ -1983,31 +1983,31 @@ export default { flower: { - text: 487, + text: 491, url: getIcon("UI_RelicIcon_10004_4") }, feather: { - text: 486, + text: 490, url: getIcon("UI_RelicIcon_10004_2") }, sand: { - text: 485, + text: 489, url: getIcon("UI_RelicIcon_10004_5") }, cup: { - text: 484, + text: 488, url: getIcon("UI_RelicIcon_10004_1") }, head: { - text: 488, + text: 492, url: getIcon("UI_RelicIcon_10004_3") }, @@ -2019,46 +2019,46 @@ export default { "travelingDoctor": { eng: "travelingDoctor", name2: "TravelingDoctor", - nameLocale: 1066, + nameLocale: 1078, minStar: 1, maxStar: 3, - effect2: 1444, + effect2: 1457, - effect4: 735, + effect4: 745, flower: { - text: 1071, + text: 1083, url: getIcon("UI_RelicIcon_10013_4") }, feather: { - text: 1069, + text: 1081, url: getIcon("UI_RelicIcon_10013_2") }, sand: { - text: 1067, + text: 1079, url: getIcon("UI_RelicIcon_10013_5") }, cup: { - text: 1070, + text: 1082, url: getIcon("UI_RelicIcon_10013_1") }, head: { - text: 1068, + text: 1080, url: getIcon("UI_RelicIcon_10013_3") }, @@ -2070,46 +2070,46 @@ export default { "VermillionHereafter": { eng: "VermillionHereafter", name2: "VermillionHereafter", - nameLocale: 1521, + nameLocale: 1536, minStar: 4, maxStar: 5, - effect2: 674, + effect2: 684, - effect4: 729, + effect4: 739, flower: { - text: 1194, + text: 1207, url: getIcon("UI_RelicIcon_15023_4") }, feather: { - text: 1077, + text: 1089, url: getIcon("UI_RelicIcon_15023_2") }, sand: { - text: 1625, + text: 1640, url: getIcon("UI_RelicIcon_15023_5") }, cup: { - text: 1307, + text: 1320, url: getIcon("UI_RelicIcon_15023_1") }, head: { - text: 1407, + text: 1420, url: getIcon("UI_RelicIcon_15023_3") }, @@ -2117,7 +2117,7 @@ export default { {"default":0.0,"max":1.0,"min":0.0,"name":"rate_q","title":209,"type":"float"}, - {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":559,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":563,"type":"float"}, ], }, @@ -2125,46 +2125,46 @@ export default { "viridescentVenerer": { eng: "viridescentVenerer", name2: "ViridescentVenerer", - nameLocale: 1327, + nameLocale: 1340, minStar: 4, maxStar: 5, - effect2: 1383, + effect2: 1396, - effect4: 620, + effect4: 630, flower: { - text: 1582, + text: 1597, url: getIcon("UI_RelicIcon_15002_4") }, feather: { - text: 1131, + text: 1143, url: getIcon("UI_RelicIcon_15002_2") }, sand: { - text: 1330, + text: 1343, url: getIcon("UI_RelicIcon_15002_5") }, cup: { - text: 1329, + text: 1342, url: getIcon("UI_RelicIcon_15002_1") }, head: { - text: 1331, + text: 1344, url: getIcon("UI_RelicIcon_15002_3") }, @@ -2176,12 +2176,12 @@ export default { "VourukashasGlow": { eng: "VourukashasGlow", name2: "VourukashasGlow", - nameLocale: 1350, + nameLocale: 1363, minStar: 4, maxStar: 5, - effect2: 1184, + effect2: 1197, @@ -2191,13 +2191,13 @@ export default { flower: { - text: 1086, + text: 1098, url: getIcon("UI_RelicIcon_15030_4") }, feather: { - text: 1159, + text: 1171, url: getIcon("UI_RelicIcon_15030_2") }, @@ -2209,19 +2209,19 @@ export default { cup: { - text: 750, + text: 760, url: getIcon("UI_RelicIcon_15030_1") }, head: { - text: 1085, + text: 1097, url: getIcon("UI_RelicIcon_15030_3") }, config4: [ - {"default":4.0,"max":5.0,"min":0.0,"name":"stack","title":560,"type":"float"}, + {"default":4.0,"max":5.0,"min":0.0,"name":"stack","title":564,"type":"float"}, ], }, @@ -2229,16 +2229,16 @@ export default { "wandererTroupe": { eng: "wandererTroupe", name2: "WanderersTroupe", - nameLocale: 1038, + nameLocale: 1049, minStar: 4, maxStar: 5, - effect2: 213, + effect2: 214, - effect4: 1429, + effect4: 1442, @@ -2250,13 +2250,13 @@ export default { feather: { - text: 1164, + text: 1177, url: getIcon("UI_RelicIcon_15003_2") }, sand: { - text: 1303, + text: 1316, url: getIcon("UI_RelicIcon_15003_5") }, @@ -2268,7 +2268,7 @@ export default { head: { - text: 658, + text: 668, url: getIcon("UI_RelicIcon_15003_3") }, diff --git a/src/assets/_gen_buff.js b/src/assets/_gen_buff.js index eb751b1d..b2890cf2 100644 --- a/src/assets/_gen_buff.js +++ b/src/assets/_gen_buff.js @@ -270,7 +270,7 @@ export default { "ATKPercentage": { name: "ATKPercentage", - nameLocale: 670, + nameLocale: 680, description: null, @@ -280,14 +280,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":706,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":716,"type":"floatPercentageInput"}, ], }, "DEFPercentage": { name: "DEFPercentage", - nameLocale: 1617, + nameLocale: 1632, description: null, @@ -297,14 +297,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":706,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":716,"type":"floatPercentageInput"}, ], }, "HPPercentage": { name: "HPPercentage", - nameLocale: 1174, + nameLocale: 1187, description: null, @@ -314,14 +314,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":706,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":716,"type":"floatPercentageInput"}, ], }, "ATKFixed": { name: "ATKFixed", - nameLocale: 669, + nameLocale: 679, description: null, @@ -331,14 +331,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"value","title":706,"type":"floatInput"}, + {"default":0.0,"name":"value","title":716,"type":"floatInput"}, ], }, "DEFFixed": { name: "DEFFixed", - nameLocale: 1616, + nameLocale: 1631, description: null, @@ -348,14 +348,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"value","title":706,"type":"floatInput"}, + {"default":0.0,"name":"value","title":716,"type":"floatInput"}, ], }, "HPFixed": { name: "HPFixed", - nameLocale: 1173, + nameLocale: 1186, description: null, @@ -365,14 +365,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"value","title":706,"type":"floatInput"}, + {"default":0.0,"name":"value","title":716,"type":"floatInput"}, ], }, "Critical": { name: "Critical", - nameLocale: 924, + nameLocale: 935, description: null, @@ -382,14 +382,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":706,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":716,"type":"floatPercentageInput"}, ], }, "CriticalDamage": { name: "CriticalDamage", - nameLocale: 920, + nameLocale: 931, description: null, @@ -399,7 +399,7 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":706,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":716,"type":"floatPercentageInput"}, ], }, @@ -416,7 +416,7 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":706,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":716,"type":"floatPercentageInput"}, ], }, @@ -433,7 +433,7 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"value","title":706,"type":"floatInput"}, + {"default":0.0,"name":"value","title":716,"type":"floatInput"}, ], }, @@ -450,7 +450,7 @@ export default { genre: "Common", config: [ - {"default":20.0,"name":"p","title":706,"type":"floatPercentageInput"}, + {"default":20.0,"name":"p","title":716,"type":"floatPercentageInput"}, ], }, @@ -467,7 +467,7 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":706,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":716,"type":"floatPercentageInput"}, ], }, @@ -484,14 +484,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":706,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":716,"type":"floatPercentageInput"}, ], }, "HealingBonus": { name: "HealingBonus", - nameLocale: 1019, + nameLocale: 1030, description: null, @@ -501,16 +501,16 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":706,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":716,"type":"floatPercentageInput"}, ], }, "BaseDmg": { name: "BaseDmg", - nameLocale: 428, + nameLocale: 430, - description: 1503, + description: 1518, badge: BaseDmg_image, @@ -518,16 +518,16 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"value","title":706,"type":"floatInput"}, + {"default":0.0,"name":"value","title":716,"type":"floatInput"}, ], }, "AlbedoTalent2": { name: "AlbedoTalent2", - nameLocale: 1629, + nameLocale: 1644, - description: 1634, + description: 1649, badge: getImage("Albedo"), @@ -540,9 +540,9 @@ export default { "AlbedoC4": { name: "AlbedoC4", - nameLocale: 1630, + nameLocale: 1645, - description: 1632, + description: 1647, badge: getImage("Albedo"), @@ -555,9 +555,9 @@ export default { "AlbedoC6": { name: "AlbedoC6", - nameLocale: 1628, + nameLocale: 1643, - description: 1633, + description: 1648, badge: getImage("Albedo"), @@ -570,9 +570,9 @@ export default { "AloyTalent1": { name: "AloyTalent1", - nameLocale: 423, + nameLocale: 424, - description: 424, + description: 425, badge: getImage("Aloy"), @@ -585,9 +585,9 @@ export default { "AratakiIttoC4": { name: "AratakiIttoC4", - nameLocale: 1363, + nameLocale: 1376, - description: 1365, + description: 1378, badge: getImage("Itto"), @@ -615,9 +615,9 @@ export default { "BennettQ": { name: "BennettQ", - nameLocale: 1150, + nameLocale: 1162, - description: 1153, + description: 1165, badge: getImage("Bennett"), @@ -625,20 +625,20 @@ export default { genre: "Character", config: [ - {"default":800.0,"name":"base_atk","title":1155,"type":"floatInput"}, + {"default":800.0,"name":"base_atk","title":1167,"type":"floatInput"}, - {"default":true,"name":"c1","title":768,"type":"bool"}, + {"default":true,"name":"c1","title":778,"type":"bool"}, - {"default":10,"max":15,"min":1,"name":"skill3","title":638,"type":"int"}, + {"default":10,"max":15,"min":1,"name":"skill3","title":648,"type":"int"}, ], }, "BennettC6": { name: "BennettC6", - nameLocale: 1149, + nameLocale: 1161, - description: 1154, + description: 1166, badge: getImage("Bennett"), @@ -651,9 +651,9 @@ export default { "ChongyunTalent2": { name: "ChongyunTalent2", - nameLocale: 1553, + nameLocale: 1568, - description: 1555, + description: 1570, badge: getImage("Chongyun"), @@ -666,9 +666,9 @@ export default { "DionaC6G50": { name: "DionaC6G50", - nameLocale: 1531, + nameLocale: 1546, - description: 1533, + description: 1548, badge: getImage("Diona"), @@ -691,16 +691,16 @@ export default { genre: "Character", config: [ - {"default":9,"max":15,"min":1,"name":"skill2","title":638,"type":"int"}, + {"default":9,"max":15,"min":1,"name":"skill2","title":648,"type":"int"}, ], }, "GanyuTalent2": { name: "GanyuTalent2", - nameLocale: 1168, + nameLocale: 1181, - description: 1172, + description: 1185, badge: getImage("Ganyu"), @@ -713,9 +713,9 @@ export default { "GanyuC1": { name: "GanyuC1", - nameLocale: 1169, + nameLocale: 1182, - description: 1171, + description: 1184, badge: getImage("Ganyu"), @@ -785,16 +785,16 @@ export default { genre: "Character", config: [ - {"default":1,"max":3,"min":1,"name":"level","title":1677,"type":"int"}, + {"default":1,"max":3,"min":1,"name":"level","title":1692,"type":"int"}, ], }, "HuTaoTalent1": { name: "HuTaoTalent1", - nameLocale: 1341, + nameLocale: 1354, - description: 1343, + description: 1356, badge: getImage("Hutao"), @@ -807,9 +807,9 @@ export default { "JeanC4": { name: "JeanC4", - nameLocale: 1161, + nameLocale: 1174, - description: 1163, + description: 1176, badge: getImage("Qin"), @@ -822,9 +822,9 @@ export default { "KaedeharaKazuhaTalent2": { name: "KaedeharaKazuhaTalent2", - nameLocale: 966, + nameLocale: 977, - description: 970, + description: 981, badge: getImage("Kazuha"), @@ -832,7 +832,7 @@ export default { genre: "Character", config: [ - {"default":"Electro","name":"element","title":618,"type":"element4"}, + {"default":"Electro","name":"element","title":628,"type":"element4"}, {"default":800.0,"name":"em","title":64,"type":"floatInput"}, @@ -841,9 +841,9 @@ export default { "KaedeharaKazuhaC2": { name: "KaedeharaKazuhaC2", - nameLocale: 965, + nameLocale: 976, - description: 969, + description: 980, badge: getImage("Kazuha"), @@ -856,9 +856,9 @@ export default { "KamisatoAyakaC4": { name: "KamisatoAyakaC4", - nameLocale: 1261, + nameLocale: 1274, - description: 1311, + description: 1324, badge: getImage("Ayaka"), @@ -913,7 +913,7 @@ export default { {"default":700.0,"name":"base_atk","title":102,"type":"floatInput"}, - {"default":false,"name":"c6","title":771,"type":"bool"}, + {"default":false,"name":"c6","title":781,"type":"bool"}, {"default":10,"max":15,"min":1,"name":"skill2","title":10,"type":"int"}, @@ -937,9 +937,9 @@ export default { "MonaQ": { name: "MonaQ", - nameLocale: 1371, + nameLocale: 1384, - description: 1374, + description: 1387, badge: getImage("Mona"), @@ -949,16 +949,16 @@ export default { {"default":9,"max":15,"min":1,"name":"skill3","title":16,"type":"int"}, - {"default":false,"name":"c4","title":770,"type":"bool"}, + {"default":false,"name":"c4","title":780,"type":"bool"}, ], }, "MonaC1": { name: "MonaC1", - nameLocale: 1372, + nameLocale: 1385, - description: 1375, + description: 1388, badge: getImage("Mona"), @@ -986,9 +986,9 @@ export default { "RaidenShogunE": { name: "RaidenShogunE", - nameLocale: 1660, + nameLocale: 1675, - description: 1663, + description: 1678, badge: getImage("Shougun"), @@ -996,7 +996,7 @@ export default { genre: "Character", config: [ - {"default":8,"max":15,"min":1,"name":"skill2","title":1662,"type":"int"}, + {"default":8,"max":15,"min":1,"name":"skill2","title":1677,"type":"int"}, {"default":80,"max":100,"min":20,"name":"energy","title":334,"type":"int"}, @@ -1005,9 +1005,9 @@ export default { "RaidenShogunC4": { name: "RaidenShogunC4", - nameLocale: 1659, + nameLocale: 1674, - description: 1664, + description: 1679, badge: getImage("Shougun"), @@ -1020,9 +1020,9 @@ export default { "RazorC4": { name: "RazorC4", - nameLocale: 1653, + nameLocale: 1668, - description: 1655, + description: 1670, badge: getImage("Razor"), @@ -1035,9 +1035,9 @@ export default { "RosariaTalent2": { name: "RosariaTalent2", - nameLocale: 1319, + nameLocale: 1332, - description: 1322, + description: 1335, badge: getImage("Rosaria"), @@ -1045,16 +1045,16 @@ export default { genre: "Character", config: [ - {"default":70.0,"name":"crit","title":1323,"type":"floatPercentageInput"}, + {"default":70.0,"name":"crit","title":1336,"type":"floatPercentageInput"}, ], }, "RosariaC6": { name: "RosariaC6", - nameLocale: 1318, + nameLocale: 1331, - description: 1321, + description: 1334, badge: getImage("Rosaria"), @@ -1067,9 +1067,9 @@ export default { "ShenheE": { name: "ShenheE", - nameLocale: 1198, + nameLocale: 1211, - description: 1204, + description: 1217, badge: getImage("Shenhe"), @@ -1077,18 +1077,18 @@ export default { genre: "Character", config: [ - {"default":3000.0,"name":"atk","title":1209,"type":"floatInput"}, + {"default":3000.0,"name":"atk","title":1222,"type":"floatInput"}, - {"default":8,"max":15,"min":1,"name":"skill2","title":1203,"type":"int"}, + {"default":8,"max":15,"min":1,"name":"skill2","title":1216,"type":"int"}, ], }, "ShenheQ": { name: "ShenheQ", - nameLocale: 1200, + nameLocale: 1213, - description: 1206, + description: 1219, badge: getImage("Shenhe"), @@ -1096,16 +1096,16 @@ export default { genre: "Character", config: [ - {"default":8,"max":15,"min":1,"name":"skill3","title":1205,"type":"int"}, + {"default":8,"max":15,"min":1,"name":"skill3","title":1218,"type":"int"}, ], }, "ShenheTalent1": { name: "ShenheTalent1", - nameLocale: 1199, + nameLocale: 1212, - description: 1207, + description: 1220, badge: getImage("Shenhe"), @@ -1113,16 +1113,16 @@ export default { genre: "Character", config: [ - {"default":false,"name":"c2","title":769,"type":"bool"}, + {"default":false,"name":"c2","title":779,"type":"bool"}, ], }, "ShenheTalent2": { name: "ShenheTalent2", - nameLocale: 1201, + nameLocale: 1214, - description: 1208, + description: 1221, badge: getImage("Shenhe"), @@ -1130,16 +1130,16 @@ export default { genre: "Character", config: [ - {"default":0,"name":"t","options":["点按","长按"],"title":639,"type":"option"}, + {"default":0,"name":"t","options":["点按","长按"],"title":649,"type":"option"}, ], }, "SucroseTalent1": { name: "SucroseTalent1", - nameLocale: 1230, + nameLocale: 1243, - description: 1233, + description: 1246, badge: getImage("Sucrose"), @@ -1152,9 +1152,9 @@ export default { "SucroseTalent2": { name: "SucroseTalent2", - nameLocale: 1228, + nameLocale: 1241, - description: 1234, + description: 1247, badge: getImage("Sucrose"), @@ -1162,16 +1162,16 @@ export default { genre: "Character", config: [ - {"default":200.0,"name":"em","title":1235,"type":"floatInput"}, + {"default":200.0,"name":"em","title":1248,"type":"floatInput"}, ], }, "SucroseC6": { name: "SucroseC6", - nameLocale: 1229, + nameLocale: 1242, - description: 1232, + description: 1245, badge: getImage("Sucrose"), @@ -1179,16 +1179,16 @@ export default { genre: "Character", config: [ - {"default":"Electro","name":"element","title":623,"type":"element4"}, + {"default":"Electro","name":"element","title":633,"type":"element4"}, ], }, "ThomaTalent1": { name: "ThomaTalent1", - nameLocale: 614, + nameLocale: 624, - description: 617, + description: 627, badge: getImage("Tohma"), @@ -1203,9 +1203,9 @@ export default { "ThomaC6": { name: "ThomaC6", - nameLocale: 613, + nameLocale: 623, - description: 616, + description: 626, badge: getImage("Tohma"), @@ -1218,9 +1218,9 @@ export default { "VentiC2": { name: "VentiC2", - nameLocale: 1062, + nameLocale: 1074, - description: 1064, + description: 1076, badge: getImage("Venti"), @@ -1228,16 +1228,16 @@ export default { genre: "Character", config: [ - {"default":false,"name":"levitating","title":1397,"type":"bool"}, + {"default":false,"name":"levitating","title":1410,"type":"bool"}, ], }, "VentiC6": { name: "VentiC6", - nameLocale: 1061, + nameLocale: 1073, - description: 1065, + description: 1077, badge: getImage("Venti"), @@ -1247,16 +1247,16 @@ export default { {"default":true,"name":"is_convert","title":333,"type":"bool"}, - {"default":"Electro","name":"element","title":1508,"type":"element4"}, + {"default":"Electro","name":"element","title":1523,"type":"element4"}, ], }, "XianglingTalent2": { name: "XianglingTalent2", - nameLocale: 1715, + nameLocale: 1730, - description: 1719, + description: 1734, badge: getImage("Xiangling"), @@ -1269,9 +1269,9 @@ export default { "XianglingC1": { name: "XianglingC1", - nameLocale: 1713, + nameLocale: 1728, - description: 1717, + description: 1732, badge: getImage("Xiangling"), @@ -1284,9 +1284,9 @@ export default { "XianglingC6": { name: "XianglingC6", - nameLocale: 1714, + nameLocale: 1729, - description: 1718, + description: 1733, badge: getImage("Xiangling"), @@ -1299,9 +1299,9 @@ export default { "XingqiuC2": { name: "XingqiuC2", - nameLocale: 1413, + nameLocale: 1426, - description: 1415, + description: 1428, badge: getImage("Xingqiu"), @@ -1314,9 +1314,9 @@ export default { "XinyanC4": { name: "XinyanC4", - nameLocale: 1514, + nameLocale: 1529, - description: 1518, + description: 1533, badge: getImage("Xinyan"), @@ -1329,9 +1329,9 @@ export default { "XinyanTalent2": { name: "XinyanTalent2", - nameLocale: 1515, + nameLocale: 1530, - description: 1519, + description: 1534, badge: getImage("Xinyan"), @@ -1359,9 +1359,9 @@ export default { "YoimiyaTalent2": { name: "YoimiyaTalent2", - nameLocale: 527, + nameLocale: 531, - description: 529, + description: 533, badge: getImage("Yoimiya"), @@ -1392,7 +1392,7 @@ export default { {"default":true,"name":"talent2","title":5,"type":"bool"}, - {"default":4,"max":4,"min":1,"name":"ele_count","title":1604,"type":"int"}, + {"default":4,"max":4,"min":1,"name":"ele_count","title":1619,"type":"int"}, ], }, @@ -1414,9 +1414,9 @@ export default { "ZhongliShield": { name: "ZhongliShield", - nameLocale: 1587, + nameLocale: 1602, - description: 1589, + description: 1604, badge: getImage("Zhongli"), @@ -1429,9 +1429,9 @@ export default { "YelanTalent2": { name: "YelanTalent2", - nameLocale: 447, + nameLocale: 448, - description: 451, + description: 452, badge: getImage("Yelan"), @@ -1439,16 +1439,16 @@ export default { genre: "Character", config: [ - {"default":14,"max":14,"min":0,"name":"secs","title":1306,"type":"int"}, + {"default":14,"max":14,"min":0,"name":"secs","title":1319,"type":"int"}, ], }, "YelanC4": { name: "YelanC4", - nameLocale: 448, + nameLocale: 449, - description: 450, + description: 451, badge: getImage("Yelan"), @@ -1456,16 +1456,16 @@ export default { genre: "Character", config: [ - {"default":4,"max":4,"min":1,"name":"count","title":977,"type":"int"}, + {"default":4,"max":4,"min":1,"name":"count","title":988,"type":"int"}, ], }, "KamisatoAyatoQ": { name: "KamisatoAyatoQ", - nameLocale: 1255, + nameLocale: 1268, - description: 1258, + description: 1271, badge: getImage("Ayato"), @@ -1473,16 +1473,16 @@ export default { genre: "Character", config: [ - {"default":8,"max":15,"min":1,"name":"skill_level","title":1257,"type":"int"}, + {"default":8,"max":15,"min":1,"name":"skill_level","title":1270,"type":"int"}, ], }, "ShikanoinHeizouTalent2": { name: "ShikanoinHeizouTalent2", - nameLocale: 1738, + nameLocale: 1754, - description: 1740, + description: 1756, badge: getImage("Heizo"), @@ -1495,9 +1495,9 @@ export default { "TighnariC4": { name: "TighnariC4", - nameLocale: 664, + nameLocale: 674, - description: 666, + description: 676, badge: getImage("Tighnari"), @@ -1505,16 +1505,16 @@ export default { genre: "Character", config: [ - {"default":false,"name":"after_reaction","title":1549,"type":"bool"}, + {"default":false,"name":"after_reaction","title":1564,"type":"bool"}, ], }, "DoriC4": { name: "DoriC4", - nameLocale: 444, + nameLocale: 445, - description: 445, + description: 446, badge: getImage("Dori"), @@ -1522,7 +1522,7 @@ export default { genre: "Character", config: [ - {"default":false,"name":"hp_below50","title":1179,"type":"bool"}, + {"default":false,"name":"hp_below50","title":1192,"type":"bool"}, {"default":true,"name":"energy_below50","title":218,"type":"bool"}, @@ -1531,9 +1531,9 @@ export default { "NilouTalent1": { name: "NilouTalent1", - nameLocale: 494, + nameLocale: 498, - description: 436, + description: 437, badge: getImage("Nilou"), @@ -1546,9 +1546,9 @@ export default { "NilouTalent2": { name: "NilouTalent2", - nameLocale: 495, + nameLocale: 499, - description: 426, + description: 427, badge: getImage("Nilou"), @@ -1556,16 +1556,16 @@ export default { genre: "Character", config: [ - {"default":60000.0,"name":"hp","title":497,"type":"floatInput"}, + {"default":60000.0,"name":"hp","title":501,"type":"floatInput"}, ], }, "CandaceQ": { name: "CandaceQ", - nameLocale: 415, + nameLocale: 416, - description: 1447, + description: 1460, badge: getImage("Candace"), @@ -1578,9 +1578,9 @@ export default { "CandaceTalent2": { name: "CandaceTalent2", - nameLocale: 414, + nameLocale: 415, - description: 434, + description: 435, badge: getImage("Candace"), @@ -1588,16 +1588,16 @@ export default { genre: "Character", config: [ - {"default":30000.0,"name":"hp","title":416,"type":"floatInput"}, + {"default":30000.0,"name":"hp","title":417,"type":"floatInput"}, ], }, "NahidaTalent1": { name: "NahidaTalent1", - nameLocale: 1299, + nameLocale: 1312, - description: 737, + description: 747, 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":1611,"type":"float"}, + {"default":1000.0,"max":3000.0,"min":0.0,"name":"max_em","title":1626,"type":"float"}, ], }, "FaruzanQ": { name: "FaruzanQ", - nameLocale: 1024, + nameLocale: 1035, - description: 1147, + description: 1159, badge: getImage("Faruzan"), @@ -1622,7 +1622,7 @@ export default { genre: "Character", config: [ - {"default":650,"max":1000,"min":0,"name":"base_atk","title":1025,"type":"int"}, + {"default":650,"max":1000,"min":0,"name":"base_atk","title":1036,"type":"int"}, {"default":10,"max":15,"min":1,"name":"q_level","title":16,"type":"int"}, @@ -1639,9 +1639,9 @@ export default { "Mika": { name: "Mika", - nameLocale: 1291, + nameLocale: 1304, - description: 765, + description: 775, badge: getImage("Mika"), @@ -1660,7 +1660,7 @@ export default { name: "KavehQ", nameLocale: 325, - description: 1609, + description: 1624, badge: getImage("Kaveh"), @@ -1670,14 +1670,14 @@ export default { {"default":8,"max":15,"min":1,"name":"q_level","title":326,"type":"int"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":999,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1010,"type":"float"}, ], }, "BaizhuTalent2": { name: "BaizhuTalent2", - nameLocale: 1213, + nameLocale: 1226, description: 336, @@ -1687,18 +1687,18 @@ export default { genre: "Character", config: [ - {"default":50000.0,"max":50000.0,"min":0.0,"name":"hp","title":1215,"type":"float"}, + {"default":50000.0,"max":50000.0,"min":0.0,"name":"hp","title":1228,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":999,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1010,"type":"float"}, ], }, "BaizhuC4": { name: "BaizhuC4", - nameLocale: 1214, + nameLocale: 1227, - description: 738, + description: 748, badge: getImage("Baizhuer"), @@ -1706,14 +1706,14 @@ export default { genre: "Character", config: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":999,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1010,"type":"float"}, ], }, "FreedomSworn": { name: "FreedomSworn", - nameLocale: 1354, + nameLocale: 1367, description: 20, @@ -1723,14 +1723,14 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1294,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1307,"type":"intInput"}, ], }, "SongOfBrokenPines": { name: "SongOfBrokenPines", - nameLocale: 962, + nameLocale: 973, description: 21, @@ -1740,16 +1740,16 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1294,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1307,"type":"intInput"}, ], }, "WolfsGravestone": { name: "WolfsGravestone", - nameLocale: 1125, + nameLocale: 1137, - description: 683, + description: 693, badge: getImageW("Claymore_Wolfmound"), @@ -1757,14 +1757,14 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1294,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1307,"type":"intInput"}, ], }, "ThrillingTalesOfDragonSlayers": { name: "ThrillingTalesOfDragonSlayers", - nameLocale: 1461, + nameLocale: 1474, description: 159, @@ -1774,14 +1774,14 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1294,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1307,"type":"intInput"}, ], }, "ElegyOfTheEnd": { name: "ElegyOfTheEnd", - nameLocale: 1305, + nameLocale: 1318, description: 316, @@ -1791,16 +1791,16 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1294,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1307,"type":"intInput"}, ], }, "HakushinRing": { name: "HakushinRing", - nameLocale: 1220, + nameLocale: 1233, - description: 986, + description: 997, badge: getImageW("Catalyst_Bakufu"), @@ -1808,7 +1808,7 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1294,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1307,"type":"intInput"}, {"default":"Electro","name":"element","title":176,"type":"element8"}, @@ -1819,7 +1819,7 @@ export default { name: "SapwoodBlade", nameLocale: 331, - description: 650, + description: 660, badge: getImageW("Sword_Arakalari"), @@ -1827,18 +1827,18 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1294,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1307,"type":"intInput"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":577,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":581,"type":"float"}, ], }, "Moonpiercer": { name: "Moonpiercer", - nameLocale: 1479, + nameLocale: 1494, - description: 651, + description: 661, badge: getImageW("Pole_Arakalari"), @@ -1846,16 +1846,16 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1294,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1307,"type":"intInput"}, ], }, "XiphosMoonlight": { name: "XiphosMoonlight", - nameLocale: 1432, + nameLocale: 1445, - description: 1426, + description: 1439, badge: getImageW("Sword_Pleroma"), @@ -1863,7 +1863,7 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1294,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1307,"type":"intInput"}, {"default":900.0,"name":"em","title":210,"type":"floatInput"}, @@ -1872,7 +1872,7 @@ export default { "MakhairaAquamarine": { name: "MakhairaAquamarine", - nameLocale: 1142, + nameLocale: 1154, description: 29, @@ -1882,7 +1882,7 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1294,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1307,"type":"intInput"}, {"default":900.0,"name":"em","title":210,"type":"floatInput"}, @@ -1891,9 +1891,9 @@ export default { "KeyOfKhajNisut": { name: "KeyOfKhajNisut", - nameLocale: 410, + nameLocale: 411, - description: 543, + description: 547, badge: getImageW("Sword_Deshret"), @@ -1901,9 +1901,9 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1294,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1307,"type":"intInput"}, - {"default":20000.0,"name":"hp","title":1173,"type":"floatInput"}, + {"default":20000.0,"name":"hp","title":1186,"type":"floatInput"}, ], }, @@ -1912,7 +1912,7 @@ export default { name: "ResonancePyro2", nameLocale: 184, - description: 673, + description: 683, badge: ResonancePyro2_image, @@ -1927,7 +1927,7 @@ export default { name: "ResonanceCryo2", nameLocale: 185, - description: 668, + description: 678, badge: ResonanceCryo2_image, @@ -1935,7 +1935,7 @@ export default { genre: "Resonance", config: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":577,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":581,"type":"float"}, ], }, @@ -1944,7 +1944,7 @@ export default { name: "ResonanceGeo2", nameLocale: 182, - description: 643, + description: 653, badge: ResonanceGeo2_image, @@ -1952,9 +1952,9 @@ export default { genre: "Resonance", config: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate1","title":693,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate1","title":703,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate2","title":694,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate2","title":704,"type":"float"}, ], }, @@ -1963,7 +1963,7 @@ export default { name: "ResonanceHydro2", nameLocale: 183, - description: 1082, + description: 1094, badge: ResonanceHydro2_image, @@ -1986,18 +1986,18 @@ export default { genre: "Resonance", config: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate1","title":693,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate1","title":703,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate2","title":694,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate2","title":704,"type":"float"}, ], }, "Instructor4": { name: "Instructor4", - nameLocale: 700, + nameLocale: 710, - description: 1452, + description: 1465, badge: getImageA("UI_RelicIcon_10007_4"), @@ -2010,9 +2010,9 @@ export default { "NoblesseOblige4": { name: "NoblesseOblige4", - nameLocale: 757, + nameLocale: 767, - description: 733, + description: 743, badge: getImageA("UI_RelicIcon_15007_4"), @@ -2025,9 +2025,9 @@ export default { "ArchaicPetra4": { name: "ArchaicPetra4", - nameLocale: 599, + nameLocale: 608, - description: 1392, + description: 1405, badge: getImageA("UI_RelicIcon_15014_4"), @@ -2035,16 +2035,16 @@ export default { genre: "Artifact", config: [ - {"default":"Electro","name":"element","title":1308,"type":"element4"}, + {"default":"Electro","name":"element","title":1321,"type":"element4"}, ], }, "ViridescentVenerer4": { name: "ViridescentVenerer4", - nameLocale: 1328, + nameLocale: 1341, - description: 978, + description: 989, badge: getImageA("UI_RelicIcon_15002_4"), @@ -2052,7 +2052,7 @@ export default { genre: "Artifact", config: [ - {"default":"Electro","name":"element","title":618,"type":"element4"}, + {"default":"Electro","name":"element","title":628,"type":"element4"}, ], }, @@ -2074,7 +2074,7 @@ export default { "DeepwoodMemories4": { name: "DeepwoodMemories4", - nameLocale: 1051, + nameLocale: 1063, description: 196, @@ -2084,7 +2084,7 @@ export default { genre: "Artifact", config: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":577,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":581,"type":"float"}, ], }, diff --git a/src/assets/_gen_character.js b/src/assets/_gen_character.js index ee5bbd00..a94d74e4 100644 --- a/src/assets/_gen_character.js +++ b/src/assets/_gen_character.js @@ -144,6 +144,10 @@ import Layla_splash from "@image/characters/Layla_splash" // import Lisa_avatar from "@image/characters/Lisa_avatar" import Lisa_splash from "@image/characters/Lisa_splash" +// import Lynette_card from "@image/characters/Lynette_card" +// import Lynette_avatar from "@image/characters/Lynette_avatar" +import Lynette_splash from "@image/characters/Lynette_splash" + // import Mona_card from "@image/characters/Mona_card" // import Mona_avatar from "@image/characters/Mona_avatar" import Mona_splash from "@image/characters/Mona_splash" @@ -282,7 +286,7 @@ export default { AetherAnemo: { name: "AetherAnemo", - nameLocale: 1280, + nameLocale: 1293, element: "Anemo", weapon: "Sword", star: 5, @@ -290,9 +294,9 @@ export default { // avatar: AetherAnemo_avatar, avatar: getName("PlayerBoy"), splash: AetherAnemo_splash, - skillName1: 797, - skillName2: 1685, - skillName3: 1684, + skillName1: 807, + skillName2: 1700, + skillName3: 1699, skillMap1: [ { index: 0, text: 48 }, @@ -305,39 +309,39 @@ export default { { index: 4, text: 131 }, - { index: 5, text: 1562 }, + { index: 5, text: 1578 }, - { index: 6, text: 1567 }, + { index: 6, text: 1581 }, { index: 7, text: 76 }, { index: 8, text: 162 }, - { index: 9, text: 1722 }, + { index: 9, text: 1737 }, ], skillMap2: [ { index: 10, text: 284 }, - { index: 11, text: 936 }, + { index: 11, text: 947 }, { index: 12, text: 285 }, - { index: 13, text: 943 }, + { index: 13, text: 954 }, ], skillMap3: [ - { index: 14, text: 1751 }, + { index: 14, text: 1767 }, - { index: 15, text: 1637 }, + { index: 15, text: 1652 }, - { index: 18, text: 1636 }, + { index: 18, text: 1651 }, - { index: 17, text: 1638 }, + { index: 17, text: 1653 }, - { index: 16, text: 1635 }, + { index: 16, text: 1650 }, ], config: [ @@ -350,7 +354,7 @@ export default { Albedo: { name: "Albedo", - nameLocale: 1627, + nameLocale: 1642, element: "Geo", weapon: "Sword", star: 5, @@ -358,9 +362,9 @@ export default { // avatar: Albedo_avatar, avatar: getName("Albedo"), splash: Albedo_splash, - skillName1: 840, + skillName1: 850, skillName2: 283, - skillName3: 1470, + skillName3: 1483, skillMap1: [ { index: 0, text: 48 }, @@ -373,29 +377,29 @@ export default { { index: 4, text: 131 }, - { index: 5, text: 1563 }, + { index: 5, text: 1579 }, - { index: 6, text: 1566 }, + { index: 6, text: 1582 }, { index: 7, text: 76 }, { index: 8, text: 162 }, - { index: 9, text: 1722 }, + { index: 9, text: 1737 }, ], skillMap2: [ - { index: 10, text: 625 }, + { index: 10, text: 635 }, { index: 11, text: 287 }, ], skillMap3: [ - { index: 12, text: 1112 }, + { index: 12, text: 1124 }, - { index: 13, text: 1193 }, + { index: 13, text: 1206 }, ], config: [ @@ -408,7 +412,7 @@ export default { Alhaitham: { name: "Alhaitham", - nameLocale: 1346, + nameLocale: 1359, element: "Dendro", weapon: "Sword", star: 5, @@ -416,9 +420,9 @@ export default { // avatar: Alhaitham_avatar, avatar: getName("Alhatham"), splash: Alhaitham_splash, - skillName1: 815, + skillName1: 825, skillName2: 235, - skillName3: 994, + skillName3: 1005, skillMap1: [ { index: 0, text: 48 }, @@ -433,20 +437,20 @@ export default { { index: 5, text: 131 }, - { index: 6, text: 1563 }, + { index: 6, text: 1579 }, - { index: 7, text: 1566 }, + { index: 7, text: 1582 }, { index: 8, text: 76 }, { index: 9, text: 162 }, - { index: 10, text: 1722 }, + { index: 10, text: 1737 }, ], skillMap2: [ - { index: 11, text: 1281 }, + { index: 11, text: 1294 }, { index: 12, text: 2 }, @@ -462,23 +466,23 @@ export default { ], config: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"c2_stack","title":382,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"c2_stack","title":383,"type":"float"}, - {"default":0.0,"max":3.0,"min":0.0,"name":"c4_stack","title":384,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"c4_stack","title":385,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"c6_rate","title":386,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"c6_rate","title":387,"type":"float"}, ], configSkill: [ - {"default":true,"name":"under_e","title":1158,"type":"bool"}, + {"default":true,"name":"under_e","title":1170,"type":"bool"}, ], }, Aloy: { name: "Aloy", - nameLocale: 421, + nameLocale: 422, element: "Cryo", weapon: "Bow", star: 5, @@ -486,9 +490,9 @@ export default { // avatar: Aloy_avatar, avatar: getName("Aloy"), splash: Aloy_splash, - skillName1: 803, + skillName1: 813, skillName2: 249, - skillName3: 931, + skillName3: 942, skillMap1: [ { index: 0, text: 49 }, @@ -501,15 +505,15 @@ export default { { index: 4, text: 397 }, - { index: 5, text: 1226 }, + { index: 5, text: 1239 }, - { index: 6, text: 1075 }, + { index: 6, text: 1087 }, { index: 7, text: 76 }, { index: 8, text: 162 }, - { index: 9, text: 1722 }, + { index: 9, text: 1737 }, ], skillMap2: [ @@ -521,7 +525,7 @@ export default { ], skillMap3: [ - { index: 12, text: 625 }, + { index: 12, text: 635 }, ], config: [ @@ -529,14 +533,14 @@ export default { ], configSkill: [ - {"default":4,"max":4,"min":0,"name":"coil_count","title":1301,"type":"int"}, + {"default":4,"max":4,"min":0,"name":"coil_count","title":1314,"type":"int"}, ], }, Amber: { name: "Amber", - nameLocale: 512, + nameLocale: 516, element: "Pyro", weapon: "Bow", star: 4, @@ -544,9 +548,9 @@ export default { // avatar: Amber_avatar, avatar: getName("Ambor"), splash: Amber_splash, - skillName1: 828, - skillName2: 1114, - skillName3: 1287, + skillName1: 838, + skillName2: 1126, + skillName3: 1300, skillMap1: [ { index: 0, text: 48 }, @@ -559,27 +563,27 @@ export default { { index: 4, text: 131 }, - { index: 5, text: 1226 }, + { index: 5, text: 1239 }, - { index: 6, text: 1075 }, + { index: 6, text: 1087 }, { index: 7, text: 76 }, { index: 8, text: 162 }, - { index: 9, text: 1722 }, + { index: 9, text: 1737 }, ], skillMap2: [ - { index: 10, text: 1115 }, + { index: 10, text: 1127 }, ], skillMap3: [ - { index: 11, text: 1288 }, + { index: 11, text: 1301 }, - { index: 12, text: 1289 }, + { index: 12, text: 1302 }, ], config: [ @@ -592,7 +596,7 @@ export default { AratakiItto: { name: "AratakiItto", - nameLocale: 1362, + nameLocale: 1375, element: "Geo", weapon: "Claymore", star: 5, @@ -600,9 +604,9 @@ export default { // avatar: AratakiItto_avatar, avatar: getName("Itto"), splash: AratakiItto_splash, - skillName1: 848, - skillName2: 1731, - skillName3: 948, + skillName1: 859, + skillName2: 1747, + skillName3: 959, skillMap1: [ { index: 0, text: 48 }, @@ -613,22 +617,22 @@ export default { { index: 3, text: 397 }, - { index: 4, text: 1368 }, + { index: 4, text: 1381 }, - { index: 5, text: 1367 }, + { index: 5, text: 1380 }, - { index: 6, text: 558 }, + { index: 6, text: 562 }, { index: 7, text: 76 }, { index: 8, text: 162 }, - { index: 9, text: 1722 }, + { index: 9, text: 1737 }, ], skillMap2: [ - { index: 10, text: 625 }, + { index: 10, text: 635 }, ], skillMap3: [ @@ -639,14 +643,14 @@ export default { ], configSkill: [ - {"default":true,"name":"after_q","title":431,"type":"bool"}, + {"default":true,"name":"after_q","title":432,"type":"bool"}, ], }, Baizhu: { name: "Baizhu", - nameLocale: 1212, + nameLocale: 1225, element: "Dendro", weapon: "Catalyst", star: 5, @@ -654,9 +658,9 @@ export default { // avatar: Baizhu_avatar, avatar: getName("Baizhuer"), splash: Baizhu_splash, - skillName1: 844, - skillName2: 481, - skillName3: 600, + skillName1: 855, + skillName2: 485, + skillName3: 610, skillMap1: [ { index: 0, text: 48 }, @@ -669,32 +673,32 @@ export default { { index: 4, text: 397 }, - { index: 5, text: 1561 }, + { index: 5, text: 1576 }, { index: 6, text: 76 }, { index: 7, text: 162 }, - { index: 8, text: 1722 }, + { index: 8, text: 1737 }, ], skillMap2: [ - { index: 9, text: 625 }, + { index: 9, text: 635 }, - { index: 10, text: 1023 }, + { index: 10, text: 1034 }, ], skillMap3: [ - { index: 12, text: 1089 }, + { index: 12, text: 1101 }, - { index: 11, text: 751 }, + { index: 11, text: 761 }, ], config: [ - {"default":false,"name":"hp_below_50","title":412,"type":"bool"}, + {"default":false,"name":"hp_below_50","title":413,"type":"bool"}, ], configSkill: [ @@ -704,7 +708,7 @@ export default { Barbara: { name: "Barbara", - nameLocale: 1348, + nameLocale: 1361, element: "Hydro", weapon: "Catalyst", star: 4, @@ -712,9 +716,9 @@ export default { // avatar: Barbara_avatar, avatar: getName("Barbara"), splash: Barbara_splash, - skillName1: 811, - skillName2: 1076, - skillName3: 1601, + skillName1: 821, + skillName2: 1088, + skillName3: 1616, skillMap1: [ { index: 0, text: 48 }, @@ -725,27 +729,27 @@ export default { { index: 3, text: 397 }, - { index: 4, text: 1561 }, + { index: 4, text: 1576 }, { index: 5, text: 76 }, { index: 6, text: 162 }, - { index: 7, text: 1722 }, + { index: 7, text: 1737 }, ], skillMap2: [ { index: 8, text: 378 }, - { index: 10, text: 655 }, + { index: 10, text: 667 }, - { index: 9, text: 1008 }, + { index: 9, text: 1019 }, ], skillMap3: [ - { index: 11, text: 1022 }, + { index: 11, text: 1033 }, ], config: [ @@ -766,9 +770,9 @@ export default { // avatar: Beidou_avatar, avatar: getName("Beidou"), splash: Beidou_splash, - skillName1: 800, - skillName2: 661, - skillName3: 709, + skillName1: 810, + skillName2: 671, + skillName3: 719, skillMap1: [ { index: 0, text: 48 }, @@ -781,20 +785,20 @@ export default { { index: 4, text: 131 }, - { index: 5, text: 1575 }, + { index: 5, text: 1590 }, - { index: 6, text: 1578 }, + { index: 6, text: 1593 }, { index: 7, text: 76 }, { index: 8, text: 162 }, - { index: 9, text: 1722 }, + { index: 9, text: 1737 }, ], skillMap2: [ - { index: 10, text: 428 }, + { index: 10, text: 430 }, { index: 11, text: 45 }, @@ -803,9 +807,9 @@ export default { ], skillMap3: [ - { index: 13, text: 625 }, + { index: 13, text: 635 }, - { index: 14, text: 1600 }, + { index: 14, text: 1615 }, ], config: [ @@ -818,7 +822,7 @@ export default { Bennett: { name: "Bennett", - nameLocale: 1148, + nameLocale: 1160, element: "Pyro", weapon: "Sword", star: 4, @@ -826,9 +830,9 @@ export default { // avatar: Bennett_avatar, avatar: getName("Bennett"), splash: Bennett_splash, - skillName1: 794, - skillName2: 1104, - skillName3: 1325, + skillName1: 804, + skillName2: 1116, + skillName3: 1338, skillMap1: [ { index: 0, text: 48 }, @@ -841,20 +845,20 @@ export default { { index: 4, text: 131 }, - { index: 5, text: 1563 }, + { index: 5, text: 1579 }, - { index: 6, text: 1566 }, + { index: 6, text: 1582 }, { index: 7, text: 76 }, { index: 8, text: 162 }, - { index: 9, text: 1722 }, + { index: 9, text: 1737 }, ], skillMap2: [ - { index: 10, text: 1093 }, + { index: 10, text: 1105 }, { index: 11, text: 56 }, @@ -864,14 +868,14 @@ export default { { index: 14, text: 122 }, - { index: 15, text: 1116 }, + { index: 15, text: 1128 }, ], skillMap3: [ - { index: 16, text: 625 }, + { index: 16, text: 635 }, - { index: 17, text: 653 }, + { index: 17, text: 663 }, ], config: [ @@ -884,7 +888,7 @@ export default { Candace: { name: "Candace", - nameLocale: 413, + nameLocale: 414, element: "Hydro", weapon: "Polearm", star: 4, @@ -892,9 +896,9 @@ export default { // avatar: Candace_avatar, avatar: getName("Candace"), splash: Candace_splash, - skillName1: 813, - skillName2: 408, - skillName3: 406, + skillName1: 823, + skillName2: 409, + skillName3: 407, skillMap1: [ { index: 0, text: 48 }, @@ -907,44 +911,44 @@ export default { { index: 4, text: 397 }, - { index: 5, text: 1561 }, + { index: 5, text: 1576 }, { index: 6, text: 76 }, { index: 7, text: 162 }, - { index: 8, text: 1722 }, + { index: 8, text: 1737 }, ], skillMap2: [ { index: 9, text: 429 }, - { index: 10, text: 1402 }, + { index: 10, text: 1415 }, ], skillMap3: [ - { index: 11, text: 625 }, + { index: 11, text: 635 }, - { index: 12, text: 1007 }, + { index: 12, text: 1018 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"c2_rate","title":381,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"c2_rate","title":382,"type":"float"}, ], configSkill: [ - {"default":true,"name":"crown","title":1489,"type":"bool"}, + {"default":true,"name":"crown","title":1504,"type":"bool"}, ], }, Chongyun: { name: "Chongyun", - nameLocale: 1552, + nameLocale: 1567, element: "Cryo", weapon: "Claymore", star: 4, @@ -952,9 +956,9 @@ export default { // avatar: Chongyun_avatar, avatar: getName("Chongyun"), splash: Chongyun_splash, - skillName1: 818, - skillName2: 1088, - skillName3: 1087, + skillName1: 828, + skillName2: 1100, + skillName3: 1099, skillMap1: [ { index: 0, text: 48 }, @@ -965,25 +969,25 @@ export default { { index: 3, text: 397 }, - { index: 4, text: 1575 }, + { index: 4, text: 1590 }, - { index: 5, text: 1578 }, + { index: 5, text: 1593 }, { index: 6, text: 76 }, { index: 7, text: 162 }, - { index: 8, text: 1722 }, + { index: 8, text: 1737 }, ], skillMap2: [ - { index: 9, text: 625 }, + { index: 9, text: 635 }, ], skillMap3: [ - { index: 10, text: 625 }, + { index: 10, text: 635 }, ], config: [ @@ -996,7 +1000,7 @@ export default { Collei: { name: "Collei", - nameLocale: 976, + nameLocale: 987, element: "Dendro", weapon: "Bow", star: 4, @@ -1004,9 +1008,9 @@ export default { // avatar: Collei_avatar, avatar: getName("Collei"), splash: Collei_splash, - skillName1: 826, - skillName2: 648, - skillName3: 1135, + skillName1: 836, + skillName2: 658, + skillName3: 1147, skillMap1: [ { index: 0, text: 48 }, @@ -1017,32 +1021,32 @@ export default { { index: 3, text: 397 }, - { index: 4, text: 1226 }, + { index: 4, text: 1239 }, - { index: 5, text: 1075 }, + { index: 5, text: 1087 }, { index: 6, text: 76 }, { index: 7, text: 162 }, - { index: 8, text: 1722 }, + { index: 8, text: 1737 }, ], skillMap2: [ - { index: 9, text: 625 }, + { index: 9, text: 635 }, ], skillMap3: [ - { index: 10, text: 1113 }, + { index: 10, text: 1125 }, - { index: 11, text: 1502 }, + { index: 11, text: 1517 }, ], config: [ - {"default":false,"name":"background","title":433,"type":"bool"}, + {"default":false,"name":"background","title":434,"type":"bool"}, ], configSkill: [ @@ -1052,7 +1056,7 @@ export default { Cyno: { name: "Cyno", - nameLocale: 1487, + nameLocale: 1502, element: "Electro", weapon: "Polearm", star: 5, @@ -1060,26 +1064,26 @@ export default { // avatar: Cyno_avatar, avatar: getName("Cyno"), splash: Cyno_splash, - skillName1: 785, - skillName2: 1277, - skillName3: 407, + skillName1: 795, + skillName2: 1290, + skillName3: 408, skillMap1: [ { index: 0, text: 48 }, { index: 1, text: 114 }, - { index: 2, text: 71 }, + { index: 2, text: 72 }, { index: 3, text: 397 }, - { index: 4, text: 1561 }, + { index: 4, text: 1576 }, { index: 5, text: 76 }, { index: 6, text: 162 }, - { index: 7, text: 1722 }, + { index: 7, text: 1737 }, { index: 11, text: 361 }, @@ -1102,7 +1106,7 @@ export default { ], skillMap2: [ - { index: 8, text: 625 }, + { index: 8, text: 635 }, { index: 9, text: 367 }, @@ -1114,21 +1118,21 @@ export default { ], config: [ - {"default":4.0,"max":5.0,"min":0.0,"name":"c2_stack","title":379,"type":"float"}, + {"default":4.0,"max":5.0,"min":0.0,"name":"c2_stack","title":380,"type":"float"}, {"default":true,"name":"after_q","title":360,"type":"bool"}, ], configSkill: [ - {"default":true,"name":"under_judication","title":1450,"type":"bool"}, + {"default":true,"name":"under_judication","title":1463,"type":"bool"}, ], }, Dehya: { name: "Dehya", - nameLocale: 1534, + nameLocale: 1549, element: "Pyro", weapon: "Claymore", star: 5, @@ -1136,9 +1140,9 @@ export default { // avatar: Dehya_avatar, avatar: getName("Dehya"), splash: Dehya_splash, - skillName1: 806, - skillName2: 1110, - skillName3: 1091, + skillName1: 816, + skillName2: 1122, + skillName3: 1103, skillMap1: [ { index: 0, text: 48 }, @@ -1149,15 +1153,15 @@ export default { { index: 3, text: 397 }, - { index: 4, text: 1575 }, + { index: 4, text: 1590 }, - { index: 5, text: 1578 }, + { index: 5, text: 1593 }, { index: 6, text: 76 }, { index: 7, text: 162 }, - { index: 8, text: 1722 }, + { index: 8, text: 1737 }, ], skillMap2: [ @@ -1166,14 +1170,14 @@ export default { { index: 10, text: 290 }, - { index: 11, text: 1674 }, + { index: 11, text: 1689 }, ], skillMap3: [ - { index: 12, text: 1099 }, + { index: 12, text: 1111 }, - { index: 13, text: 1105 }, + { index: 13, text: 1117 }, ], config: [ @@ -1190,7 +1194,7 @@ export default { Diluc: { name: "Diluc", - nameLocale: 1528, + nameLocale: 1543, element: "Pyro", weapon: "Claymore", star: 5, @@ -1198,9 +1202,9 @@ export default { // avatar: Diluc_avatar, avatar: getName("Diluc"), splash: Diluc_splash, - skillName1: 814, - skillName2: 1541, - skillName3: 1742, + skillName1: 824, + skillName2: 1556, + skillName3: 1758, skillMap1: [ { index: 0, text: 48 }, @@ -1211,15 +1215,15 @@ export default { { index: 3, text: 397 }, - { index: 4, text: 1575 }, + { index: 4, text: 1590 }, - { index: 5, text: 1578 }, + { index: 5, text: 1593 }, { index: 6, text: 76 }, { index: 7, text: 162 }, - { index: 8, text: 1722 }, + { index: 8, text: 1737 }, ], skillMap2: [ @@ -1233,11 +1237,11 @@ export default { ], skillMap3: [ - { index: 12, text: 707 }, + { index: 12, text: 717 }, - { index: 13, text: 652 }, + { index: 13, text: 662 }, - { index: 14, text: 1117 }, + { index: 14, text: 1129 }, ], config: [ @@ -1245,14 +1249,14 @@ export default { ], configSkill: [ - {"default":true,"name":"pyro","title":772,"type":"bool"}, + {"default":true,"name":"pyro","title":782,"type":"bool"}, ], }, Diona: { name: "Diona", - nameLocale: 1530, + nameLocale: 1545, element: "Cryo", weapon: "Bow", star: 4, @@ -1260,9 +1264,9 @@ export default { // avatar: Diona_avatar, avatar: getName("Diona"), splash: Diona_splash, - skillName1: 823, - skillName2: 1134, - skillName3: 949, + skillName1: 833, + skillName2: 1146, + skillName3: 960, skillMap1: [ { index: 0, text: 48 }, @@ -1275,29 +1279,29 @@ export default { { index: 4, text: 131 }, - { index: 5, text: 1226 }, + { index: 5, text: 1239 }, - { index: 6, text: 1075 }, + { index: 6, text: 1087 }, { index: 7, text: 76 }, { index: 8, text: 162 }, - { index: 9, text: 1722 }, + { index: 9, text: 1737 }, ], skillMap2: [ - { index: 10, text: 1133 }, + { index: 10, text: 1145 }, ], skillMap3: [ - { index: 11, text: 625 }, + { index: 11, text: 635 }, - { index: 12, text: 1676 }, + { index: 12, text: 1691 }, - { index: 13, text: 656 }, + { index: 13, text: 665 }, ], config: [ @@ -1310,7 +1314,7 @@ export default { Dori: { name: "Dori", - nameLocale: 443, + nameLocale: 444, element: "Electro", weapon: "Claymore", star: 4, @@ -1318,8 +1322,8 @@ export default { // avatar: Dori_avatar, avatar: getName("Dori"), splash: Dori_splash, - skillName1: 795, - skillName2: 1597, + skillName1: 805, + skillName2: 1612, skillName3: 327, skillMap1: [ @@ -1331,29 +1335,29 @@ export default { { index: 3, text: 68 }, - { index: 4, text: 1575 }, + { index: 4, text: 1590 }, - { index: 5, text: 1578 }, + { index: 5, text: 1593 }, { index: 6, text: 76 }, { index: 7, text: 162 }, - { index: 8, text: 1722 }, + { index: 8, text: 1737 }, ], skillMap2: [ - { index: 9, text: 715 }, + { index: 9, text: 725 }, - { index: 10, text: 390 }, + { index: 10, text: 391 }, ], skillMap3: [ - { index: 11, text: 1526 }, + { index: 11, text: 1541 }, - { index: 12, text: 657 }, + { index: 12, text: 666 }, ], config: [ @@ -1376,7 +1380,7 @@ export default { // avatar: Eula_avatar, avatar: getName("Eula"), splash: Eula_splash, - skillName1: 839, + skillName1: 849, skillName2: 255, skillName3: 269, skillMap1: [ @@ -1395,31 +1399,31 @@ export default { { index: 6, text: 133 }, - { index: 7, text: 1575 }, + { index: 7, text: 1590 }, - { index: 8, text: 1578 }, + { index: 8, text: 1593 }, { index: 9, text: 76 }, { index: 10, text: 162 }, - { index: 11, text: 1722 }, + { index: 11, text: 1737 }, ], skillMap2: [ - { index: 12, text: 1093 }, + { index: 12, text: 1105 }, - { index: 13, text: 1598 }, + { index: 13, text: 1613 }, { index: 14, text: 254 }, - { index: 15, text: 995 }, + { index: 15, text: 1006 }, ], skillMap3: [ - { index: 16, text: 625 }, + { index: 16, text: 635 }, { index: 17, text: 221 }, @@ -1436,7 +1440,7 @@ export default { Faruzan: { name: "Faruzan", - nameLocale: 1145, + nameLocale: 1157, element: "Anemo", weapon: "Bow", star: 4, @@ -1444,9 +1448,9 @@ export default { // avatar: Faruzan_avatar, avatar: getName("Faruzan"), splash: Faruzan_splash, - skillName1: 843, - skillName2: 1673, - skillName3: 640, + skillName1: 854, + skillName2: 1688, + skillName3: 650, skillMap1: [ { index: 0, text: 48 }, @@ -1457,27 +1461,27 @@ export default { { index: 3, text: 397 }, - { index: 4, text: 1561 }, + { index: 4, text: 1576 }, - { index: 4, text: 1075 }, + { index: 4, text: 1087 }, { index: 6, text: 76 }, { index: 7, text: 162 }, - { index: 8, text: 1722 }, + { index: 8, text: 1737 }, ], skillMap2: [ - { index: 9, text: 625 }, + { index: 9, text: 635 }, - { index: 10, text: 1683 }, + { index: 10, text: 1698 }, ], skillMap3: [ - { index: 11, text: 625 }, + { index: 11, text: 635 }, ], config: [ @@ -1494,7 +1498,7 @@ export default { Fischl: { name: "Fischl", - nameLocale: 1394, + nameLocale: 1407, element: "Electro", weapon: "Bow", star: 4, @@ -1502,9 +1506,9 @@ export default { // avatar: Fischl_avatar, avatar: getName("Fischl"), splash: Fischl_splash, - skillName1: 833, - skillName2: 452, - skillName3: 1345, + skillName1: 843, + skillName2: 453, + skillName3: 1358, skillMap1: [ { index: 0, text: 48 }, @@ -1517,27 +1521,27 @@ export default { { index: 4, text: 131 }, - { index: 5, text: 1226 }, + { index: 5, text: 1239 }, - { index: 6, text: 1075 }, + { index: 6, text: 1087 }, { index: 7, text: 76 }, { index: 8, text: 162 }, - { index: 9, text: 1722 }, + { index: 9, text: 1737 }, ], skillMap2: [ - { index: 10, text: 490 }, + { index: 10, text: 494 }, { index: 11, text: 347 }, ], skillMap3: [ - { index: 12, text: 1398 }, + { index: 12, text: 1411 }, ], config: [ @@ -1550,7 +1554,7 @@ export default { Ganyu: { name: "Ganyu", - nameLocale: 1167, + nameLocale: 1180, element: "Cryo", weapon: "Bow", star: 5, @@ -1558,9 +1562,9 @@ export default { // avatar: Ganyu_avatar, avatar: getName("Ganyu"), splash: Ganyu_splash, - skillName1: 812, - skillName2: 551, - skillName3: 1640, + skillName1: 822, + skillName2: 555, + skillName3: 1655, skillMap1: [ { index: 0, text: 48 }, @@ -1575,24 +1579,24 @@ export default { { index: 5, text: 232 }, - { index: 6, text: 1226 }, + { index: 6, text: 1239 }, - { index: 7, text: 58 }, + { index: 7, text: 59 }, - { index: 8, text: 1669 }, + { index: 8, text: 1684 }, - { index: 9, text: 1668 }, + { index: 9, text: 1683 }, { index: 10, text: 76 }, { index: 11, text: 162 }, - { index: 12, text: 1722 }, + { index: 12, text: 1737 }, ], skillMap2: [ - { index: 13, text: 625 }, + { index: 13, text: 635 }, ], skillMap3: [ @@ -1602,12 +1606,12 @@ export default { ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":472,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":473,"type":"float"}, ], configSkill: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"talent1_rate","title":470,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent1_rate","title":471,"type":"float"}, ], }, @@ -1622,8 +1626,8 @@ export default { // avatar: Gorou_avatar, avatar: getName("Gorou"), splash: Gorou_splash, - skillName1: 847, - skillName2: 1120, + skillName1: 858, + skillName2: 1132, skillName3: 238, skillMap1: [ @@ -1635,27 +1639,27 @@ export default { { index: 3, text: 397 }, - { index: 4, text: 1226 }, + { index: 4, text: 1239 }, - { index: 5, text: 1075 }, + { index: 5, text: 1087 }, { index: 6, text: 76 }, { index: 7, text: 162 }, - { index: 8, text: 1722 }, + { index: 8, text: 1737 }, ], skillMap2: [ - { index: 9, text: 625 }, + { index: 9, text: 635 }, ], skillMap3: [ - { index: 10, text: 625 }, + { index: 10, text: 635 }, - { index: 11, text: 554 }, + { index: 11, text: 558 }, ], config: [ @@ -1668,7 +1672,7 @@ export default { HuTao: { name: "HuTao", - nameLocale: 1340, + nameLocale: 1353, element: "Pyro", weapon: "Polearm", star: 5, @@ -1676,9 +1680,9 @@ export default { // avatar: HuTao_avatar, avatar: getName("Hutao"), splash: HuTao_splash, - skillName1: 799, - skillName2: 1408, - skillName3: 514, + skillName1: 809, + skillName2: 1421, + skillName3: 518, skillMap1: [ { index: 0, text: 48 }, @@ -1695,42 +1699,42 @@ export default { { index: 6, text: 232 }, - { index: 7, text: 1561 }, + { index: 7, text: 1576 }, { index: 8, text: 76 }, { index: 9, text: 162 }, - { index: 10, text: 1722 }, + { index: 10, text: 1737 }, ], skillMap2: [ - { index: 11, text: 1411 }, + { index: 11, text: 1424 }, ], skillMap3: [ - { index: 12, text: 625 }, + { index: 12, text: 635 }, { index: 13, text: 163 }, ], config: [ - {"default":true,"name":"le_50","title":1179,"type":"bool"}, + {"default":true,"name":"le_50","title":1192,"type":"bool"}, ], configSkill: [ - {"default":true,"name":"after_e","title":588,"type":"bool"}, + {"default":true,"name":"after_e","title":597,"type":"bool"}, ], }, Jean: { name: "Jean", - nameLocale: 1160, + nameLocale: 1173, element: "Anemo", weapon: "Sword", star: 5, @@ -1738,9 +1742,9 @@ export default { // avatar: Jean_avatar, avatar: getName("Qin"), splash: Jean_splash, - skillName1: 837, - skillName2: 1682, - skillName3: 1400, + skillName1: 847, + skillName2: 1697, + skillName3: 1413, skillMap1: [ { index: 0, text: 48 }, @@ -1753,29 +1757,29 @@ export default { { index: 4, text: 131 }, - { index: 5, text: 1561 }, + { index: 5, text: 1576 }, { index: 6, text: 76 }, { index: 7, text: 162 }, - { index: 8, text: 1722 }, + { index: 8, text: 1737 }, ], skillMap2: [ - { index: 9, text: 625 }, + { index: 9, text: 635 }, ], skillMap3: [ - { index: 10, text: 1112 }, + { index: 10, text: 1124 }, { index: 11, text: 274 }, - { index: 12, text: 1675 }, + { index: 12, text: 1690 }, - { index: 13, text: 654 }, + { index: 13, text: 664 }, ], config: [ @@ -1788,7 +1792,7 @@ export default { KaedeharaKazuha: { name: "KaedeharaKazuha", - nameLocale: 964, + nameLocale: 975, element: "Anemo", weapon: "Sword", star: 5, @@ -1796,7 +1800,7 @@ export default { // avatar: KaedeharaKazuha_avatar, avatar: getName("Kazuha"), splash: KaedeharaKazuha_splash, - skillName1: 804, + skillName1: 814, skillName2: 317, skillName3: 63, skillMap1: [ @@ -1813,15 +1817,15 @@ export default { { index: 5, text: 134 }, - { index: 6, text: 1565 }, + { index: 6, text: 1577 }, - { index: 6, text: 1569 }, + { index: 6, text: 1584 }, { index: 8, text: 76 }, { index: 9, text: 162 }, - { index: 10, text: 1722 }, + { index: 10, text: 1737 }, ], skillMap2: [ @@ -1840,24 +1844,24 @@ export default { { index: 17, text: 108 }, - { index: 18, text: 1095 }, + { index: 18, text: 1107 }, - { index: 19, text: 1599 }, + { index: 19, text: 1614 }, ], skillMap3: [ - { index: 20, text: 707 }, + { index: 20, text: 717 }, - { index: 21, text: 652 }, + { index: 21, text: 662 }, - { index: 22, text: 1637 }, + { index: 22, text: 1652 }, - { index: 23, text: 1636 }, + { index: 23, text: 1651 }, - { index: 24, text: 1635 }, + { index: 24, text: 1650 }, - { index: 25, text: 1638 }, + { index: 25, text: 1653 }, ], config: [ @@ -1880,8 +1884,8 @@ export default { // avatar: Kaeya_avatar, avatar: getName("Kaeya"), splash: Kaeya_splash, - skillName1: 789, - skillName2: 1671, + skillName1: 799, + skillName2: 1686, skillName3: 264, skillMap1: [ @@ -1895,25 +1899,25 @@ export default { { index: 4, text: 131 }, - { index: 5, text: 1563 }, + { index: 5, text: 1579 }, - { index: 6, text: 1566 }, + { index: 6, text: 1582 }, { index: 7, text: 76 }, { index: 8, text: 162 }, - { index: 9, text: 1722 }, + { index: 9, text: 1737 }, ], skillMap2: [ - { index: 10, text: 625 }, + { index: 10, text: 635 }, ], skillMap3: [ - { index: 11, text: 625 }, + { index: 11, text: 635 }, ], config: [ @@ -1926,7 +1930,7 @@ export default { KamisatoAyaka: { name: "KamisatoAyaka", - nameLocale: 1259, + nameLocale: 1272, element: "Cryo", weapon: "Sword", star: 5, @@ -1934,9 +1938,9 @@ export default { // avatar: KamisatoAyaka_avatar, avatar: getName("Ayaka"), splash: KamisatoAyaka_splash, - skillName1: 829, - skillName2: 1249, - skillName3: 1252, + skillName1: 839, + skillName2: 1262, + skillName3: 1265, skillMap1: [ { index: 0, text: 48 }, @@ -1945,41 +1949,41 @@ export default { { index: 2, text: 68 }, - { index: 3, text: 402 }, + { index: 3, text: 403 }, { index: 5, text: 131 }, - { index: 6, text: 1571 }, + { index: 6, text: 1586 }, { index: 8, text: 76 }, { index: 9, text: 162 }, - { index: 10, text: 1722 }, + { index: 10, text: 1737 }, ], skillMap2: [ - { index: 11, text: 625 }, + { index: 11, text: 635 }, ], skillMap3: [ { index: 12, text: 281 }, - { index: 13, text: 1314 }, + { index: 13, text: 1327 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"talent1_rate","title":473,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent1_rate","title":474,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":474,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":475,"type":"float"}, ], configSkill: [ - {"default":true,"name":"after_dash","title":1253,"type":"bool"}, + {"default":true,"name":"after_dash","title":1266,"type":"bool"}, {"default":false,"name":"use_c6","title":228,"type":"bool"}, @@ -1988,7 +1992,7 @@ export default { KamisatoAyato: { name: "KamisatoAyato", - nameLocale: 1254, + nameLocale: 1267, element: "Hydro", weapon: "Sword", star: 5, @@ -1996,9 +2000,9 @@ export default { // avatar: KamisatoAyato_avatar, avatar: getName("Ayato"), splash: KamisatoAyato_splash, - skillName1: 830, - skillName2: 1251, - skillName3: 1250, + skillName1: 840, + skillName2: 1264, + skillName3: 1263, skillMap1: [ { index: 0, text: 48 }, @@ -2007,17 +2011,17 @@ export default { { index: 2, text: 68 }, - { index: 3, text: 396 }, + { index: 3, text: 398 }, { index: 4, text: 131 }, - { index: 5, text: 1561 }, + { index: 5, text: 1576 }, { index: 6, text: 76 }, { index: 7, text: 162 }, - { index: 8, text: 1722 }, + { index: 8, text: 1737 }, ], skillMap2: [ @@ -2028,12 +2032,12 @@ export default { { index: 11, text: 75 }, - { index: 12, text: 1005 }, + { index: 12, text: 1016 }, ], skillMap3: [ - { index: 13, text: 1009 }, + { index: 13, text: 1020 }, ], config: [ @@ -2043,7 +2047,7 @@ export default { {"default":4,"max":5,"min":0,"name":"e_stack","title":30,"type":"int"}, - {"default":true,"name":"in_q","title":432,"type":"bool"}, + {"default":true,"name":"in_q","title":433,"type":"bool"}, ], }, @@ -2058,9 +2062,9 @@ export default { // avatar: Kaveh_avatar, avatar: getName("Kaveh"), splash: Kaveh_splash, - skillName1: 810, - skillName2: 1210, - skillName3: 1297, + skillName1: 820, + skillName2: 1223, + skillName3: 1310, skillMap1: [ { index: 0, text: 48 }, @@ -2071,32 +2075,32 @@ export default { { index: 3, text: 397 }, - { index: 4, text: 1575 }, + { index: 4, text: 1590 }, - { index: 5, text: 1578 }, + { index: 5, text: 1593 }, { index: 6, text: 76 }, { index: 7, text: 162 }, - { index: 8, text: 1722 }, + { index: 8, text: 1737 }, ], skillMap2: [ - { index: 9, text: 625 }, + { index: 9, text: 635 }, ], skillMap3: [ - { index: 10, text: 625 }, + { index: 10, text: 635 }, ], config: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"talent2_stack","title":475,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"talent2_stack","title":476,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"c2_rate","title":383,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"c2_rate","title":384,"type":"float"}, ], configSkill: [ @@ -2116,9 +2120,9 @@ export default { // avatar: Keqing_avatar, avatar: getName("Keqing"), splash: Keqing_splash, - skillName1: 787, - skillName2: 760, - skillName3: 467, + skillName1: 797, + skillName2: 770, + skillName3: 468, skillMap1: [ { index: 0, text: 48 }, @@ -2127,44 +2131,44 @@ export default { { index: 2, text: 68 }, - { index: 3, text: 398 }, + { index: 3, text: 399 }, - { index: 4, text: 399 }, + { index: 4, text: 400 }, { index: 5, text: 131 }, - { index: 6, text: 1563 }, + { index: 6, text: 1579 }, - { index: 7, text: 1566 }, + { index: 7, text: 1582 }, { index: 8, text: 76 }, { index: 9, text: 162 }, - { index: 10, text: 1722 }, + { index: 10, text: 1737 }, ], skillMap2: [ - { index: 11, text: 1651 }, + { index: 11, text: 1666 }, - { index: 12, text: 707 }, + { index: 12, text: 717 }, - { index: 13, text: 1650 }, + { index: 13, text: 1665 }, ], skillMap3: [ - { index: 15, text: 625 }, + { index: 15, text: 635 }, - { index: 16, text: 1527 }, + { index: 16, text: 1542 }, - { index: 18, text: 933 }, + { index: 18, text: 944 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":476,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":479,"type":"float"}, ], configSkill: [ @@ -2184,9 +2188,9 @@ export default { // avatar: Klee_avatar, avatar: getName("Klee"), splash: Klee_splash, - skillName1: 825, - skillName2: 1504, - skillName3: 1509, + skillName1: 835, + skillName2: 1519, + skillName3: 1524, skillMap1: [ { index: 0, text: 48 }, @@ -2195,27 +2199,27 @@ export default { { index: 2, text: 68 }, - { index: 3, text: 1561 }, + { index: 3, text: 1576 }, - { index: 4, text: 1572 }, + { index: 4, text: 1587 }, { index: 5, text: 76 }, { index: 6, text: 162 }, - { index: 7, text: 1722 }, + { index: 7, text: 1737 }, ], skillMap2: [ - { index: 8, text: 1505 }, + { index: 8, text: 1520 }, - { index: 9, text: 1471 }, + { index: 9, text: 1484 }, ], skillMap3: [ - { index: 10, text: 1510 }, + { index: 10, text: 1525 }, ], config: [ @@ -2236,9 +2240,9 @@ export default { // avatar: KujouSara_avatar, avatar: getName("Sara"), splash: KujouSara_splash, - skillName1: 849, - skillName2: 1733, - skillName3: 1109, + skillName1: 860, + skillName2: 1749, + skillName3: 1121, skillMap1: [ { index: 0, text: 48 }, @@ -2251,27 +2255,27 @@ export default { { index: 4, text: 131 }, - { index: 5, text: 1226 }, + { index: 5, text: 1239 }, - { index: 6, text: 1075 }, + { index: 6, text: 1087 }, { index: 7, text: 76 }, { index: 8, text: 162 }, - { index: 9, text: 1722 }, + { index: 9, text: 1737 }, ], skillMap2: [ - { index: 10, text: 458 }, + { index: 10, text: 459 }, ], skillMap3: [ - { index: 11, text: 459 }, + { index: 11, text: 460 }, - { index: 12, text: 460 }, + { index: 12, text: 461 }, ], config: [ @@ -2292,9 +2296,9 @@ export default { // avatar: KukiShinobu_avatar, avatar: getName("Shinobu"), splash: KukiShinobu_splash, - skillName1: 802, - skillName2: 1501, - skillName3: 589, + skillName1: 812, + skillName2: 1516, + skillName3: 598, skillMap1: [ { index: 0, text: 48 }, @@ -2305,40 +2309,40 @@ export default { { index: 3, text: 397 }, - { index: 4, text: 1563 }, + { index: 4, text: 1579 }, - { index: 5, text: 1566 }, + { index: 5, text: 1582 }, - { index: 6, text: 1561 }, + { index: 6, text: 1576 }, { index: 7, text: 76 }, { index: 8, text: 162 }, - { index: 9, text: 1722 }, + { index: 9, text: 1737 }, ], skillMap2: [ - { index: 10, text: 625 }, + { index: 10, text: 635 }, - { index: 11, text: 1500 }, + { index: 11, text: 1515 }, - { index: 12, text: 1499 }, + { index: 12, text: 1514 }, ], skillMap3: [ { index: 13, text: 323 }, - { index: 14, text: 593 }, + { index: 14, text: 602 }, - { index: 15, text: 594 }, + { index: 15, text: 603 }, ], config: [ - {"default":true,"name":"hp_le_50","title":1178,"type":"bool"}, + {"default":true,"name":"hp_le_50","title":1191,"type":"bool"}, {"default":false,"name":"use_c6","title":359,"type":"bool"}, @@ -2350,7 +2354,7 @@ export default { Layla: { name: "Layla", - nameLocale: 1376, + nameLocale: 1389, element: "Cryo", weapon: "Sword", star: 4, @@ -2358,9 +2362,9 @@ export default { // avatar: Layla_avatar, avatar: getName("Layla"), splash: Layla_splash, - skillName1: 821, - skillName2: 420, - skillName3: 761, + skillName1: 831, + skillName2: 421, + skillName3: 771, skillMap1: [ { index: 0, text: 48 }, @@ -2369,27 +2373,27 @@ export default { { index: 2, text: 68 }, - { index: 3, text: 1563 }, + { index: 3, text: 1579 }, - { index: 4, text: 1566 }, + { index: 4, text: 1582 }, { index: 5, text: 76 }, { index: 6, text: 162 }, - { index: 7, text: 1722 }, + { index: 7, text: 1737 }, ], skillMap2: [ - { index: 8, text: 625 }, + { index: 8, text: 635 }, - { index: 9, text: 1707 }, + { index: 9, text: 1722 }, ], skillMap3: [ - { index: 10, text: 758 }, + { index: 10, text: 768 }, ], config: [ @@ -2410,9 +2414,9 @@ export default { // avatar: Lisa_avatar, avatar: getName("Lisa"), splash: Lisa_splash, - skillName1: 807, - skillName2: 1358, - skillName3: 1404, + skillName1: 817, + skillName2: 1371, + skillName3: 1417, skillMap1: [ { index: 0, text: 48 }, @@ -2423,20 +2427,20 @@ export default { { index: 3, text: 397 }, - { index: 4, text: 1561 }, + { index: 4, text: 1576 }, { index: 5, text: 76 }, { index: 6, text: 162 }, - { index: 7, text: 1722 }, + { index: 7, text: 1737 }, ], skillMap2: [ - { index: 8, text: 1093 }, + { index: 8, text: 1105 }, - { index: 9, text: 749 }, + { index: 9, text: 759 }, { index: 10, text: 46 }, @@ -2447,11 +2451,87 @@ export default { ], skillMap3: [ - { index: 13, text: 1649 }, + { index: 13, text: 1664 }, + + ], + config: [ + + ], + configSkill: [ + + ], + }, + + Lynette: { + name: "Lynette", + nameLocale: 1172, + element: "Anemo", + weapon: "Sword", + star: 4, + // card: Lynette_card, + // avatar: Lynette_avatar, + avatar: getName("Lynette"), + splash: Lynette_splash, + skillName1: 852, + skillName2: 1489, + skillName3: 1746, + skillMap1: [ + + { index: 0, text: 48 }, + + { index: 1, text: 114 }, + + { index: 2, text: 69 }, + + { index: 3, text: 70 }, + + { index: 4, text: 397 }, + + { index: 5, text: 1579 }, + + { index: 6, text: 1582 }, + + { index: 7, text: 76 }, + + { index: 8, text: 162 }, + + { index: 9, text: 1737 }, + + ], + skillMap2: [ + + { index: 10, text: 1488 }, + + { index: 11, text: 1053 }, + + { index: 12, text: 379 }, + + ], + skillMap3: [ + + { index: 13, text: 635 }, + + { index: 14, text: 609 }, + + { index: 15, text: 592 }, + + { index: 16, text: 594 }, + + { index: 17, text: 595 }, + + { index: 18, text: 596 }, + + { index: 19, text: 593 }, ], config: [ + {"default":0.5,"max":1.0,"min":0.0,"name":"talent1_rate","title":478,"type":"float"}, + + {"default":4,"max":4,"min":1,"name":"talent1_count","title":477,"type":"int"}, + + {"default":0.5,"max":1.0,"min":0.0,"name":"talent2_rate","title":482,"type":"float"}, + ], configSkill: [ @@ -2460,7 +2540,7 @@ export default { Mona: { name: "Mona", - nameLocale: 1370, + nameLocale: 1383, element: "Hydro", weapon: "Catalyst", star: 5, @@ -2468,9 +2548,9 @@ export default { // avatar: Mona_avatar, avatar: getName("Mona"), splash: Mona_splash, - skillName1: 793, - skillName2: 1000, - skillName3: 759, + skillName1: 803, + skillName2: 1011, + skillName3: 769, skillMap1: [ { index: 0, text: 48 }, @@ -2481,25 +2561,25 @@ export default { { index: 3, text: 397 }, - { index: 4, text: 1561 }, + { index: 4, text: 1576 }, { index: 5, text: 76 }, { index: 6, text: 162 }, - { index: 7, text: 1722 }, + { index: 7, text: 1737 }, ], skillMap2: [ - { index: 8, text: 652 }, + { index: 8, text: 662 }, - { index: 9, text: 1117 }, + { index: 9, text: 1129 }, ], skillMap3: [ - { index: 10, text: 1026 }, + { index: 10, text: 1037 }, ], config: [ @@ -2512,7 +2592,7 @@ export default { Nahida: { name: "Nahida", - nameLocale: 1298, + nameLocale: 1311, element: "Dendro", weapon: "Catalyst", star: 5, @@ -2520,9 +2600,9 @@ export default { // avatar: Nahida_avatar, avatar: getName("Nahida"), splash: Nahida_splash, - skillName1: 836, - skillName2: 610, - skillName3: 590, + skillName1: 846, + skillName2: 620, + skillName3: 599, skillMap1: [ { index: 0, text: 48 }, @@ -2533,22 +2613,22 @@ export default { { index: 3, text: 397 }, - { index: 4, text: 1561 }, + { index: 4, text: 1576 }, { index: 5, text: 76 }, { index: 6, text: 162 }, - { index: 7, text: 1722 }, + { index: 7, text: 1737 }, ], skillMap2: [ - { index: 8, text: 1093 }, + { index: 8, text: 1105 }, - { index: 9, text: 1598 }, + { index: 9, text: 1613 }, - { index: 10, text: 1084 }, + { index: 10, text: 1096 }, ], skillMap3: [ @@ -2556,7 +2636,7 @@ export default { ], config: [ - {"default":4,"max":4,"min":0,"name":"c4_e_count","title":1753,"type":"int"}, + {"default":4,"max":4,"min":0,"name":"c4_e_count","title":1769,"type":"int"}, ], configSkill: [ @@ -2570,7 +2650,7 @@ export default { Nilou: { name: "Nilou", - nameLocale: 493, + nameLocale: 497, element: "Hydro", weapon: "Sword", star: 5, @@ -2578,9 +2658,9 @@ export default { // avatar: Nilou_avatar, avatar: getName("Nilou"), splash: Nilou_splash, - skillName1: 798, + skillName1: 808, skillName2: 62, - skillName3: 1043, + skillName3: 1055, skillMap1: [ { index: 0, text: 48 }, @@ -2589,39 +2669,39 @@ export default { { index: 2, text: 68 }, - { index: 3, text: 1563 }, + { index: 3, text: 1579 }, - { index: 4, text: 1566 }, + { index: 4, text: 1582 }, { index: 5, text: 76 }, { index: 6, text: 162 }, - { index: 7, text: 1722 }, + { index: 7, text: 1737 }, ], skillMap2: [ - { index: 8, text: 625 }, + { index: 8, text: 635 }, { index: 9, text: 291 }, - { index: 10, text: 744 }, + { index: 10, text: 754 }, { index: 11, text: 292 }, - { index: 12, text: 745 }, + { index: 12, text: 755 }, - { index: 13, text: 1006 }, + { index: 13, text: 1017 }, - { index: 14, text: 1010 }, + { index: 14, text: 1021 }, ], skillMap3: [ - { index: 15, text: 625 }, + { index: 15, text: 635 }, - { index: 16, text: 1011 }, + { index: 16, text: 1022 }, ], config: [ @@ -2644,37 +2724,37 @@ export default { // avatar: Ningguang_avatar, avatar: getName("Ningguang"), splash: Ningguang_splash, - skillName1: 790, - skillName2: 1166, - skillName3: 456, + skillName1: 800, + skillName2: 1179, + skillName3: 457, skillMap1: [ - { index: 0, text: 863 }, + { index: 0, text: 874 }, - { index: 1, text: 1561 }, + { index: 1, text: 1576 }, - { index: 2, text: 762 }, + { index: 2, text: 772 }, { index: 3, text: 76 }, { index: 4, text: 162 }, - { index: 5, text: 1722 }, + { index: 5, text: 1737 }, ], skillMap2: [ - { index: 6, text: 625 }, + { index: 6, text: 635 }, ], skillMap3: [ - { index: 7, text: 998 }, + { index: 7, text: 1009 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":469,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":470,"type":"float"}, ], configSkill: [ @@ -2684,7 +2764,7 @@ export default { Noelle: { name: "Noelle", - nameLocale: 1473, + nameLocale: 1486, element: "Geo", weapon: "Claymore", star: 4, @@ -2692,9 +2772,9 @@ export default { // avatar: Noelle_avatar, avatar: getName("Noel"), splash: Noelle_splash, - skillName1: 838, - skillName2: 641, - skillName3: 454, + skillName1: 848, + skillName2: 651, + skillName3: 455, skillMap1: [ { index: 0, text: 48 }, @@ -2705,29 +2785,29 @@ export default { { index: 3, text: 397 }, - { index: 4, text: 1575 }, + { index: 4, text: 1590 }, - { index: 5, text: 1578 }, + { index: 5, text: 1593 }, { index: 6, text: 76 }, { index: 7, text: 162 }, - { index: 8, text: 1722 }, + { index: 8, text: 1737 }, ], skillMap2: [ - { index: 9, text: 625 }, + { index: 9, text: 635 }, - { index: 10, text: 1023 }, + { index: 10, text: 1034 }, ], skillMap3: [ - { index: 11, text: 1112 }, + { index: 11, text: 1124 }, - { index: 12, text: 625 }, + { index: 12, text: 635 }, ], config: [ @@ -2742,7 +2822,7 @@ export default { Mika: { name: "Mika", - nameLocale: 1290, + nameLocale: 1303, element: "Cryo", weapon: "Polearm", star: 4, @@ -2750,9 +2830,9 @@ export default { // avatar: Mika_avatar, avatar: getName("Mika"), splash: Mika_splash, - skillName1: 841, - skillName2: 764, - skillName3: 1356, + skillName1: 851, + skillName2: 774, + skillName3: 1369, skillMap1: [ { index: 0, text: 48 }, @@ -2761,22 +2841,22 @@ export default { { index: 2, text: 68 }, - { index: 3, text: 401 }, + { index: 3, text: 402 }, { index: 4, text: 131 }, - { index: 5, text: 1561 }, + { index: 5, text: 1576 }, { index: 6, text: 76 }, { index: 7, text: 162 }, - { index: 8, text: 1722 }, + { index: 8, text: 1737 }, ], skillMap2: [ - { index: 9, text: 1670 }, + { index: 9, text: 1685 }, { index: 10, text: 250 }, @@ -2785,9 +2865,9 @@ export default { ], skillMap3: [ - { index: 12, text: 736 }, + { index: 12, text: 746 }, - { index: 13, text: 1736 }, + { index: 13, text: 1752 }, ], config: [ @@ -2808,7 +2888,7 @@ export default { // avatar: Qiqi_avatar, avatar: getName("Qiqi"), splash: Qiqi_splash, - skillName1: 788, + skillName1: 798, skillName2: 148, skillName3: 149, skillMap1: [ @@ -2821,39 +2901,39 @@ export default { { index: 3, text: 70 }, - { index: 4, text: 398 }, + { index: 4, text: 399 }, - { index: 5, text: 399 }, + { index: 5, text: 400 }, { index: 6, text: 131 }, - { index: 7, text: 1563 }, + { index: 7, text: 1579 }, - { index: 8, text: 1566 }, + { index: 8, text: 1582 }, { index: 9, text: 76 }, { index: 10, text: 162 }, - { index: 11, text: 1722 }, + { index: 11, text: 1737 }, ], skillMap2: [ - { index: 12, text: 625 }, + { index: 12, text: 635 }, - { index: 15, text: 530 }, + { index: 15, text: 534 }, { index: 13, text: 377 }, - { index: 14, text: 655 }, + { index: 14, text: 667 }, ], skillMap3: [ - { index: 16, text: 625 }, + { index: 16, text: 635 }, - { index: 17, text: 1023 }, + { index: 17, text: 1034 }, ], config: [ @@ -2866,7 +2946,7 @@ export default { RaidenShogun: { name: "RaidenShogun", - nameLocale: 1658, + nameLocale: 1673, element: "Electro", weapon: "Polearm", star: 5, @@ -2874,9 +2954,9 @@ export default { // avatar: RaidenShogun_avatar, avatar: getName("Shougun"), splash: RaidenShogun_splash, - skillName1: 851, - skillName2: 1246, - skillName3: 489, + skillName1: 862, + skillName2: 1259, + skillName3: 493, skillMap1: [ { index: 0, text: 48 }, @@ -2885,31 +2965,31 @@ export default { { index: 2, text: 68 }, - { index: 3, text: 398 }, + { index: 3, text: 399 }, - { index: 4, text: 399 }, + { index: 4, text: 400 }, { index: 5, text: 131 }, - { index: 6, text: 1561 }, + { index: 6, text: 1576 }, { index: 7, text: 76 }, { index: 8, text: 162 }, - { index: 9, text: 1722 }, + { index: 9, text: 1737 }, ], skillMap2: [ - { index: 10, text: 625 }, + { index: 10, text: 635 }, { index: 11, text: 321 }, ], skillMap3: [ - { index: 12, text: 983 }, + { index: 12, text: 994 }, { index: 13, text: 48 }, @@ -2917,21 +2997,21 @@ export default { { index: 15, text: 68 }, - { index: 16, text: 398 }, + { index: 16, text: 399 }, - { index: 17, text: 399 }, + { index: 17, text: 400 }, { index: 18, text: 131 }, - { index: 19, text: 1563 }, + { index: 19, text: 1579 }, - { index: 20, text: 1566 }, + { index: 20, text: 1582 }, { index: 21, text: 76 }, { index: 22, text: 162 }, - { index: 23, text: 1722 }, + { index: 23, text: 1737 }, ], config: [ @@ -2939,16 +3019,16 @@ export default { ], configSkill: [ - {"default":true,"name":"under_e","title":437,"type":"bool"}, + {"default":true,"name":"under_e","title":438,"type":"bool"}, - {"default":60,"max":60,"min":0,"name":"resolve_stack","title":1472,"type":"int"}, + {"default":60,"max":60,"min":0,"name":"resolve_stack","title":1485,"type":"int"}, ], }, Razor: { name: "Razor", - nameLocale: 1652, + nameLocale: 1667, element: "Electro", weapon: "Claymore", star: 4, @@ -2956,9 +3036,9 @@ export default { // avatar: Razor_avatar, avatar: getName("Razor"), splash: Razor_splash, - skillName1: 845, + skillName1: 856, skillName2: 286, - skillName3: 1657, + skillName3: 1672, skillMap1: [ { index: 0, text: 48 }, @@ -2969,42 +3049,42 @@ export default { { index: 3, text: 397 }, - { index: 4, text: 1575 }, + { index: 4, text: 1590 }, - { index: 5, text: 1578 }, + { index: 5, text: 1593 }, { index: 6, text: 76 }, { index: 7, text: 162 }, - { index: 8, text: 1722 }, + { index: 8, text: 1737 }, ], skillMap2: [ - { index: 9, text: 1094 }, + { index: 9, text: 1106 }, - { index: 10, text: 1599 }, + { index: 10, text: 1614 }, ], skillMap3: [ - { index: 11, text: 1112 }, + { index: 11, text: 1124 }, - { index: 12, text: 1126 }, + { index: 12, text: 1138 }, - { index: 13, text: 1128 }, + { index: 13, text: 1140 }, - { index: 14, text: 1127 }, + { index: 14, text: 1139 }, - { index: 15, text: 1129 }, + { index: 15, text: 1141 }, ], config: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"e_stack","title":1644,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"e_stack","title":1659,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_ratio","title":480,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_ratio","title":484,"type":"float"}, ], configSkill: [ @@ -3014,7 +3094,7 @@ export default { Rosaria: { name: "Rosaria", - nameLocale: 1317, + nameLocale: 1330, element: "Cryo", weapon: "Polearm", star: 4, @@ -3022,16 +3102,16 @@ export default { // avatar: Rosaria_avatar, avatar: getName("Rosaria"), splash: Rosaria_splash, - skillName1: 808, - skillName2: 395, - skillName3: 1302, + skillName1: 818, + skillName2: 396, + skillName3: 1315, skillMap1: [ { index: 0, text: 48 }, { index: 1, text: 114 }, - { index: 2, text: 71 }, + { index: 2, text: 72 }, { index: 3, text: 397 }, @@ -3039,34 +3119,34 @@ export default { { index: 5, text: 133 }, - { index: 6, text: 1561 }, + { index: 6, text: 1576 }, { index: 7, text: 76 }, { index: 8, text: 162 }, - { index: 9, text: 1722 }, + { index: 9, text: 1737 }, ], skillMap2: [ - { index: 10, text: 627 }, + { index: 10, text: 637 }, - { index: 11, text: 629 }, + { index: 11, text: 639 }, ], skillMap3: [ - { index: 12, text: 627 }, + { index: 12, text: 637 }, - { index: 13, text: 629 }, + { index: 13, text: 639 }, { index: 14, text: 252 }, ], config: [ - {"default":true,"name":"e_from_behind","title":576,"type":"bool"}, + {"default":true,"name":"e_from_behind","title":580,"type":"bool"}, ], configSkill: [ @@ -3076,7 +3156,7 @@ export default { SangonomiyaKokomi: { name: "SangonomiyaKokomi", - nameLocale: 1143, + nameLocale: 1155, element: "Hydro", weapon: "Catalyst", star: 5, @@ -3084,9 +3164,9 @@ export default { // avatar: SangonomiyaKokomi_avatar, avatar: getName("Kokomi"), splash: SangonomiyaKokomi_splash, - skillName1: 850, - skillName2: 1045, - skillName3: 1044, + skillName1: 861, + skillName2: 1057, + skillName3: 1056, skillMap1: [ { index: 0, text: 48 }, @@ -3095,25 +3175,25 @@ export default { { index: 2, text: 68 }, - { index: 3, text: 1561 }, + { index: 3, text: 1576 }, { index: 4, text: 76 }, { index: 5, text: 162 }, - { index: 6, text: 1722 }, + { index: 6, text: 1737 }, ], skillMap2: [ - { index: 8, text: 1028 }, + { index: 8, text: 1039 }, - { index: 7, text: 1022 }, + { index: 7, text: 1033 }, ], skillMap3: [ - { index: 9, text: 625 }, + { index: 9, text: 635 }, { index: 10, text: 378 }, @@ -3130,7 +3210,7 @@ export default { Sayu: { name: "Sayu", - nameLocale: 753, + nameLocale: 763, element: "Anemo", weapon: "Claymore", star: 4, @@ -3138,7 +3218,7 @@ export default { // avatar: Sayu_avatar, avatar: getName("Sayu"), splash: Sayu_splash, - skillName1: 801, + skillName1: 811, skillName2: 373, skillName3: 372, skillMap1: [ @@ -3153,47 +3233,47 @@ export default { { index: 4, text: 397 }, - { index: 5, text: 1575 }, + { index: 5, text: 1590 }, - { index: 6, text: 1578 }, + { index: 6, text: 1593 }, { index: 7, text: 76 }, { index: 8, text: 162 }, - { index: 9, text: 1722 }, + { index: 9, text: 1737 }, ], skillMap2: [ - { index: 10, text: 1690 }, + { index: 10, text: 1705 }, - { index: 11, text: 1691 }, + { index: 11, text: 1706 }, - { index: 12, text: 1692 }, + { index: 12, text: 1707 }, - { index: 13, text: 1699 }, + { index: 13, text: 1714 }, - { index: 16, text: 1698 }, + { index: 16, text: 1713 }, - { index: 15, text: 1697 }, + { index: 15, text: 1712 }, - { index: 14, text: 1700 }, + { index: 14, text: 1715 }, - { index: 17, text: 1695 }, + { index: 17, text: 1710 }, - { index: 20, text: 1694 }, + { index: 20, text: 1709 }, - { index: 19, text: 1693 }, + { index: 19, text: 1708 }, - { index: 18, text: 1696 }, + { index: 18, text: 1711 }, ], skillMap3: [ - { index: 21, text: 636 }, + { index: 21, text: 646 }, - { index: 22, text: 637 }, + { index: 22, text: 647 }, { index: 23, text: 77 }, @@ -3210,7 +3290,7 @@ export default { Shenhe: { name: "Shenhe", - nameLocale: 1197, + nameLocale: 1210, element: "Cryo", weapon: "Polearm", star: 5, @@ -3218,9 +3298,9 @@ export default { // avatar: Shenhe_avatar, avatar: getName("Shenhe"), splash: Shenhe_splash, - skillName1: 852, + skillName1: 863, skillName2: 152, - skillName3: 1247, + skillName3: 1260, skillMap1: [ { index: 0, text: 48 }, @@ -3229,33 +3309,33 @@ export default { { index: 2, text: 68 }, - { index: 3, text: 398 }, + { index: 3, text: 399 }, - { index: 4, text: 399 }, + { index: 4, text: 400 }, { index: 5, text: 131 }, - { index: 6, text: 1561 }, + { index: 6, text: 1576 }, { index: 7, text: 76 }, { index: 8, text: 162 }, - { index: 9, text: 1722 }, + { index: 9, text: 1737 }, ], skillMap2: [ - { index: 10, text: 1096 }, + { index: 10, text: 1108 }, - { index: 11, text: 1599 }, + { index: 11, text: 1614 }, ], skillMap3: [ - { index: 12, text: 625 }, + { index: 12, text: 635 }, - { index: 13, text: 652 }, + { index: 13, text: 662 }, ], config: [ @@ -3268,7 +3348,7 @@ export default { ShikanoinHeizou: { name: "ShikanoinHeizou", - nameLocale: 1737, + nameLocale: 1753, element: "Anemo", weapon: "Catalyst", star: 4, @@ -3276,9 +3356,9 @@ export default { // avatar: ShikanoinHeizou_avatar, avatar: getName("Heizo"), splash: ShikanoinHeizou_splash, - skillName1: 786, + skillName1: 796, skillName2: 303, - skillName3: 1339, + skillName3: 1352, skillMap1: [ { index: 0, text: 48 }, @@ -3287,49 +3367,49 @@ export default { { index: 2, text: 68 }, - { index: 3, text: 398 }, + { index: 3, text: 399 }, - { index: 4, text: 399 }, + { index: 4, text: 400 }, - { index: 5, text: 400 }, + { index: 5, text: 401 }, { index: 6, text: 397 }, { index: 7, text: 131 }, - { index: 8, text: 1561 }, + { index: 8, text: 1576 }, { index: 9, text: 76 }, { index: 10, text: 162 }, - { index: 11, text: 1722 }, + { index: 11, text: 1737 }, ], skillMap2: [ - { index: 12, text: 626 }, + { index: 12, text: 636 }, - { index: 13, text: 628 }, + { index: 13, text: 638 }, - { index: 14, text: 630 }, + { index: 14, text: 640 }, - { index: 15, text: 631 }, + { index: 15, text: 641 }, - { index: 16, text: 632 }, + { index: 16, text: 642 }, ], skillMap3: [ { index: 17, text: 79 }, - { index: 18, text: 1337 }, + { index: 18, text: 1350 }, - { index: 20, text: 1335 }, + { index: 20, text: 1348 }, - { index: 21, text: 1338 }, + { index: 21, text: 1351 }, - { index: 19, text: 1336 }, + { index: 19, text: 1349 }, ], config: [ @@ -3342,7 +3422,7 @@ export default { Sucrose: { name: "Sucrose", - nameLocale: 1227, + nameLocale: 1240, element: "Anemo", weapon: "Catalyst", star: 4, @@ -3350,9 +3430,9 @@ export default { // avatar: Sucrose_avatar, avatar: getName("Sucrose"), splash: Sucrose_splash, - skillName1: 831, - skillName2: 1686, - skillName3: 1275, + skillName1: 841, + skillName2: 1701, + skillName3: 1288, skillMap1: [ { index: 0, text: 48 }, @@ -3363,31 +3443,31 @@ export default { { index: 3, text: 397 }, - { index: 4, text: 1561 }, + { index: 4, text: 1576 }, { index: 5, text: 76 }, { index: 6, text: 162 }, - { index: 7, text: 1722 }, + { index: 7, text: 1737 }, ], skillMap2: [ - { index: 8, text: 625 }, + { index: 8, text: 635 }, ], skillMap3: [ - { index: 9, text: 652 }, + { index: 9, text: 662 }, - { index: 10, text: 1637 }, + { index: 10, text: 1652 }, - { index: 11, text: 1636 }, + { index: 11, text: 1651 }, - { index: 13, text: 1635 }, + { index: 13, text: 1650 }, - { index: 12, text: 1638 }, + { index: 12, text: 1653 }, ], config: [ @@ -3400,7 +3480,7 @@ export default { Tartaglia: { name: "Tartaglia", - nameLocale: 1522, + nameLocale: 1537, element: "Hydro", weapon: "Bow", star: 5, @@ -3408,9 +3488,9 @@ export default { // avatar: Tartaglia_avatar, avatar: getName("Tartaglia"), splash: Tartaglia_splash, - skillName1: 809, - skillName2: 1732, - skillName3: 963, + skillName1: 819, + skillName2: 1748, + skillName3: 974, skillMap1: [ { index: 0, text: 48 }, @@ -3425,24 +3505,24 @@ export default { { index: 5, text: 232 }, - { index: 6, text: 1226 }, + { index: 6, text: 1239 }, - { index: 7, text: 1075 }, + { index: 7, text: 1087 }, - { index: 8, text: 713 }, + { index: 8, text: 723 }, - { index: 9, text: 712 }, + { index: 9, text: 722 }, { index: 10, text: 76 }, { index: 11, text: 162 }, - { index: 12, text: 1722 }, + { index: 12, text: 1737 }, ], skillMap2: [ - { index: 13, text: 1122 }, + { index: 13, text: 1134 }, { index: 14, text: 48 }, @@ -3458,20 +3538,20 @@ export default { { index: 20, text: 234 }, - { index: 21, text: 1563 }, + { index: 21, text: 1579 }, - { index: 22, text: 1566 }, + { index: 22, text: 1582 }, - { index: 23, text: 710 }, + { index: 23, text: 720 }, ], skillMap3: [ - { index: 24, text: 634 }, + { index: 24, text: 644 }, - { index: 25, text: 635 }, + { index: 25, text: 645 }, - { index: 26, text: 711 }, + { index: 26, text: 721 }, ], config: [ @@ -3484,7 +3564,7 @@ export default { Thoma: { name: "Thoma", - nameLocale: 612, + nameLocale: 622, element: "Pyro", weapon: "Polearm", star: 4, @@ -3492,38 +3572,38 @@ export default { // avatar: Thoma_avatar, avatar: getName("Tohma"), splash: Thoma_splash, - skillName1: 842, - skillName2: 1100, - skillName3: 1225, + skillName1: 853, + skillName2: 1112, + skillName3: 1238, skillMap1: [ { index: 0, text: 48 }, { index: 1, text: 114 }, - { index: 2, text: 71 }, + { index: 2, text: 72 }, { index: 4, text: 397 }, - { index: 5, text: 1561 }, + { index: 5, text: 1576 }, { index: 6, text: 76 }, { index: 7, text: 162 }, - { index: 8, text: 1722 }, + { index: 8, text: 1737 }, ], skillMap2: [ - { index: 9, text: 625 }, + { index: 9, text: 635 }, ], skillMap3: [ - { index: 10, text: 625 }, + { index: 10, text: 635 }, - { index: 11, text: 1097 }, + { index: 11, text: 1109 }, ], config: [ @@ -3536,7 +3616,7 @@ export default { Tighnari: { name: "Tighnari", - nameLocale: 663, + nameLocale: 673, element: "Dendro", weapon: "Bow", star: 5, @@ -3544,9 +3624,9 @@ export default { // avatar: Tighnari_avatar, avatar: getName("Tighnari"), splash: Tighnari_splash, - skillName1: 834, - skillName2: 1464, - skillName3: 1548, + skillName1: 844, + skillName2: 1477, + skillName3: 1563, skillMap1: [ { index: 0, text: 48 }, @@ -3557,38 +3637,38 @@ export default { { index: 3, text: 397 }, - { index: 4, text: 1226 }, + { index: 4, text: 1239 }, - { index: 5, text: 59 }, + { index: 5, text: 58 }, - { index: 6, text: 1351 }, + { index: 6, text: 1364 }, - { index: 7, text: 1406 }, + { index: 7, text: 1419 }, { index: 8, text: 76 }, { index: 9, text: 162 }, - { index: 10, text: 1722 }, + { index: 10, text: 1737 }, ], skillMap2: [ - { index: 11, text: 625 }, + { index: 11, text: 635 }, ], skillMap3: [ - { index: 12, text: 1316 }, + { index: 12, text: 1329 }, - { index: 13, text: 987 }, + { index: 13, text: 998 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"talent1_ratio","title":477,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent1_ratio","title":480,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"c2_ratio","title":380,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"c2_ratio","title":381,"type":"float"}, ], configSkill: [ @@ -3598,7 +3678,7 @@ export default { Venti: { name: "Venti", - nameLocale: 1060, + nameLocale: 1072, element: "Anemo", weapon: "Bow", star: 5, @@ -3606,9 +3686,9 @@ export default { // avatar: Venti_avatar, avatar: getName("Venti"), splash: Venti_splash, - skillName1: 827, - skillName2: 1721, - skillName3: 1687, + skillName1: 837, + skillName2: 1736, + skillName3: 1702, skillMap1: [ { index: 0, text: 49 }, @@ -3619,43 +3699,43 @@ export default { { index: 4, text: 68 }, - { index: 5, text: 398 }, + { index: 5, text: 399 }, - { index: 6, text: 399 }, + { index: 6, text: 400 }, { index: 8, text: 131 }, { index: 9, text: 232 }, - { index: 10, text: 1226 }, + { index: 10, text: 1239 }, - { index: 11, text: 1075 }, + { index: 11, text: 1087 }, { index: 12, text: 76 }, { index: 13, text: 162 }, - { index: 14, text: 1722 }, + { index: 14, text: 1737 }, ], skillMap2: [ - { index: 15, text: 1093 }, + { index: 15, text: 1105 }, - { index: 16, text: 1598 }, + { index: 16, text: 1613 }, ], skillMap3: [ - { index: 17, text: 652 }, + { index: 17, text: 662 }, - { index: 18, text: 1637 }, + { index: 18, text: 1652 }, - { index: 20, text: 1636 }, + { index: 20, text: 1651 }, - { index: 21, text: 1635 }, + { index: 21, text: 1650 }, - { index: 19, text: 1638 }, + { index: 19, text: 1653 }, ], config: [ @@ -3668,7 +3748,7 @@ export default { Wanderer: { name: "Wanderer", - nameLocale: 1040, + nameLocale: 1051, element: "Anemo", weapon: "Catalyst", star: 5, @@ -3676,16 +3756,16 @@ export default { // avatar: Wanderer_avatar, avatar: getName("Wanderer"), splash: Wanderer_splash, - skillName1: 835, - skillName2: 1326, - skillName3: 1123, + skillName1: 845, + skillName2: 1339, + skillName3: 1135, skillMap1: [ { index: 0, text: 48 }, { index: 1, text: 114 }, - { index: 2, text: 72 }, + { index: 2, text: 71 }, { index: 3, text: 52 }, @@ -3693,7 +3773,7 @@ export default { { index: 5, text: 73 }, - { index: 6, text: 1561 }, + { index: 6, text: 1576 }, { index: 7, text: 26 }, @@ -3701,17 +3781,17 @@ export default { { index: 9, text: 162 }, - { index: 10, text: 1722 }, + { index: 10, text: 1737 }, ], skillMap2: [ - { index: 11, text: 625 }, + { index: 11, text: 635 }, ], skillMap3: [ - { index: 12, text: 633 }, + { index: 12, text: 643 }, ], config: [ @@ -3723,18 +3803,18 @@ export default { ], configSkill: [ - {"default":true,"name":"e_enabled","title":430,"type":"bool"}, + {"default":true,"name":"e_enabled","title":431,"type":"bool"}, {"default":false,"name":"e_hydro","title":24,"type":"bool"}, - {"default":50.0,"max":120.0,"min":0.0,"name":"sdpoints","title":1285,"type":"float"}, + {"default":50.0,"max":120.0,"min":0.0,"name":"sdpoints","title":1298,"type":"float"}, ], }, Xiangling: { name: "Xiangling", - nameLocale: 1712, + nameLocale: 1727, element: "Pyro", weapon: "Polearm", star: 4, @@ -3742,9 +3822,9 @@ export default { // avatar: Xiangling_avatar, avatar: getName("Xiangling"), splash: Xiangling_splash, - skillName1: 824, - skillName2: 1596, - skillName3: 742, + skillName1: 834, + skillName2: 1611, + skillName3: 752, skillMap1: [ { index: 0, text: 48 }, @@ -3755,22 +3835,22 @@ export default { { index: 3, text: 70 }, - { index: 5, text: 403 }, + { index: 5, text: 404 }, { index: 7, text: 131 }, - { index: 8, text: 1561 }, + { index: 8, text: 1576 }, { index: 9, text: 76 }, { index: 10, text: 162 }, - { index: 11, text: 1722 }, + { index: 11, text: 1737 }, ], skillMap2: [ - { index: 12, text: 392 }, + { index: 12, text: 393 }, ], skillMap3: [ @@ -3781,7 +3861,7 @@ export default { { index: 15, text: 74 }, - { index: 16, text: 743 }, + { index: 16, text: 753 }, ], config: [ @@ -3794,7 +3874,7 @@ export default { Xiao: { name: "Xiao", - nameLocale: 1724, + nameLocale: 1739, element: "Anemo", weapon: "Polearm", star: 5, @@ -3802,9 +3882,9 @@ export default { // avatar: Xiao_avatar, avatar: getName("Xiao"), splash: Xiao_splash, - skillName1: 791, - skillName2: 1689, - skillName3: 1672, + skillName1: 801, + skillName2: 1704, + skillName3: 1687, skillMap1: [ { index: 0, text: 49 }, @@ -3815,26 +3895,26 @@ export default { { index: 4, text: 68 }, - { index: 5, text: 398 }, + { index: 5, text: 399 }, - { index: 6, text: 399 }, + { index: 6, text: 400 }, { index: 8, text: 131 }, { index: 9, text: 232 }, - { index: 10, text: 1561 }, + { index: 10, text: 1576 }, { index: 11, text: 76 }, { index: 12, text: 162 }, - { index: 13, text: 1722 }, + { index: 13, text: 1737 }, ], skillMap2: [ - { index: 14, text: 625 }, + { index: 14, text: 635 }, ], skillMap3: [ @@ -3845,18 +3925,18 @@ export default { ], configSkill: [ - {"default":true,"name":"after_q","title":1672,"type":"bool"}, + {"default":true,"name":"after_q","title":1687,"type":"bool"}, - {"default":4.0,"max":4.0,"min":0.0,"name":"talent1_stack","title":479,"type":"float"}, + {"default":4.0,"max":4.0,"min":0.0,"name":"talent1_stack","title":483,"type":"float"}, - {"default":0.0,"max":3.0,"min":0.0,"name":"talent2_stack","title":471,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"talent2_stack","title":472,"type":"float"}, ], }, Xingqiu: { name: "Xingqiu", - nameLocale: 1412, + nameLocale: 1425, element: "Hydro", weapon: "Sword", star: 4, @@ -3864,7 +3944,7 @@ export default { // avatar: Xingqiu_avatar, avatar: getName("Xingqiu"), splash: Xingqiu_splash, - skillName1: 792, + skillName1: 802, skillName2: 345, skillName3: 346, skillMap1: [ @@ -3883,22 +3963,22 @@ export default { { index: 7, text: 133 }, - { index: 9, text: 1563 }, + { index: 9, text: 1579 }, - { index: 10, text: 1566 }, + { index: 10, text: 1582 }, { index: 12, text: 76 }, { index: 13, text: 162 }, - { index: 14, text: 1722 }, + { index: 14, text: 1737 }, ], skillMap2: [ - { index: 15, text: 627 }, + { index: 15, text: 637 }, - { index: 16, text: 629 }, + { index: 16, text: 639 }, ], skillMap3: [ @@ -3911,14 +3991,14 @@ export default { ], configSkill: [ - {"default":false,"name":"c4","title":575,"type":"bool"}, + {"default":false,"name":"c4","title":579,"type":"bool"}, ], }, Xinyan: { name: "Xinyan", - nameLocale: 1513, + nameLocale: 1528, element: "Pyro", weapon: "Claymore", star: 4, @@ -3926,8 +4006,8 @@ export default { // avatar: Xinyan_avatar, avatar: getName("Xinyan"), splash: Xinyan_splash, - skillName1: 819, - skillName2: 1103, + skillName1: 829, + skillName2: 1115, skillName3: 342, skillMap1: [ @@ -3939,29 +4019,29 @@ export default { { index: 3, text: 397 }, - { index: 4, text: 1575 }, + { index: 4, text: 1590 }, - { index: 5, text: 1578 }, + { index: 5, text: 1593 }, { index: 6, text: 76 }, { index: 7, text: 162 }, - { index: 8, text: 1722 }, + { index: 8, text: 1737 }, ], skillMap2: [ - { index: 9, text: 660 }, + { index: 9, text: 670 }, - { index: 10, text: 652 }, + { index: 10, text: 662 }, ], skillMap3: [ - { index: 11, text: 625 }, + { index: 11, text: 635 }, - { index: 12, text: 1081 }, + { index: 12, text: 1093 }, ], config: [ @@ -3984,9 +4064,9 @@ export default { // avatar: YaeMiko_avatar, avatar: getName("Yae"), splash: YaeMiko_splash, - skillName1: 822, - skillName2: 1581, - skillName3: 453, + skillName1: 832, + skillName2: 1596, + skillName3: 454, skillMap1: [ { index: 0, text: 48 }, @@ -3995,31 +4075,31 @@ export default { { index: 2, text: 68 }, - { index: 3, text: 1561 }, + { index: 3, text: 1576 }, { index: 4, text: 76 }, { index: 5, text: 162 }, - { index: 6, text: 1722 }, + { index: 6, text: 1737 }, ], skillMap2: [ - { index: 7, text: 957 }, + { index: 7, text: 968 }, - { index: 8, text: 959 }, + { index: 8, text: 970 }, - { index: 9, text: 956 }, + { index: 9, text: 967 }, - { index: 10, text: 958 }, + { index: 10, text: 969 }, ], skillMap3: [ - { index: 11, text: 625 }, + { index: 11, text: 635 }, - { index: 12, text: 457 }, + { index: 12, text: 458 }, ], config: [ @@ -4032,7 +4112,7 @@ export default { Yanfei: { name: "Yanfei", - nameLocale: 1101, + nameLocale: 1113, element: "Pyro", weapon: "Catalyst", star: 4, @@ -4040,7 +4120,7 @@ export default { // avatar: Yanfei_avatar, avatar: getName("Feiyan"), splash: Yanfei_splash, - skillName1: 817, + skillName1: 827, skillName2: 86, skillName3: 271, skillMap1: [ @@ -4051,33 +4131,33 @@ export default { { index: 2, text: 68 }, - { index: 3, text: 1560 }, + { index: 3, text: 1575 }, - { index: 4, text: 1556 }, + { index: 4, text: 1571 }, - { index: 5, text: 1557 }, + { index: 5, text: 1572 }, - { index: 6, text: 1558 }, + { index: 6, text: 1573 }, - { index: 7, text: 1559 }, + { index: 7, text: 1574 }, - { index: 8, text: 468 }, + { index: 8, text: 469 }, { index: 9, text: 76 }, { index: 10, text: 162 }, - { index: 11, text: 1722 }, + { index: 11, text: 1737 }, ], skillMap2: [ - { index: 12, text: 625 }, + { index: 12, text: 635 }, ], skillMap3: [ - { index: 13, text: 625 }, + { index: 13, text: 635 }, ], config: [ @@ -4085,14 +4165,14 @@ export default { ], configSkill: [ - {"default":true,"name":"after_q","title":1090,"type":"bool"}, + {"default":true,"name":"after_q","title":1102,"type":"bool"}, ], }, Yaoyao: { name: "Yaoyao", - nameLocale: 1165, + nameLocale: 1178, element: "Dendro", weapon: "Polearm", star: 4, @@ -4100,9 +4180,9 @@ export default { // avatar: Yaoyao_avatar, avatar: getName("Yaoyao"), splash: Yaoyao_splash, - skillName1: 846, + skillName1: 857, skillName2: 123, - skillName3: 1139, + skillName3: 1151, skillMap1: [ { index: 0, text: 48 }, @@ -4115,34 +4195,34 @@ export default { { index: 4, text: 397 }, - { index: 5, text: 1561 }, + { index: 5, text: 1576 }, { index: 6, text: 76 }, { index: 7, text: 162 }, - { index: 8, text: 1722 }, + { index: 8, text: 1737 }, ], skillMap2: [ - { index: 9, text: 1216 }, + { index: 9, text: 1229 }, - { index: 10, text: 1217 }, + { index: 10, text: 1230 }, ], skillMap3: [ - { index: 11, text: 625 }, + { index: 11, text: 635 }, - { index: 12, text: 979 }, + { index: 12, text: 990 }, - { index: 13, text: 980 }, + { index: 13, text: 991 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"c4_rate","title":385,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"c4_rate","title":386,"type":"float"}, ], configSkill: [ @@ -4152,7 +4232,7 @@ export default { Yelan: { name: "Yelan", - nameLocale: 446, + nameLocale: 447, element: "Hydro", weapon: "Bow", star: 5, @@ -4160,9 +4240,9 @@ export default { // avatar: Yelan_avatar, avatar: getName("Yelan"), splash: Yelan_splash, - skillName1: 816, - skillName2: 1396, - skillName3: 1052, + skillName1: 826, + skillName2: 1409, + skillName3: 1064, skillMap1: [ { index: 0, text: 48 }, @@ -4171,36 +4251,36 @@ export default { { index: 2, text: 68 }, - { index: 3, text: 401 }, + { index: 3, text: 402 }, - { index: 4, text: 1226 }, + { index: 4, text: 1239 }, - { index: 5, text: 1075 }, + { index: 5, text: 1087 }, - { index: 6, text: 1237 }, + { index: 6, text: 1250 }, { index: 8, text: 76 }, { index: 9, text: 162 }, - { index: 10, text: 1722 }, + { index: 10, text: 1737 }, ], skillMap2: [ - { index: 11, text: 625 }, + { index: 11, text: 635 }, ], skillMap3: [ - { index: 12, text: 625 }, + { index: 12, text: 635 }, - { index: 13, text: 1138 }, + { index: 13, text: 1150 }, ], config: [ - {"default":4,"max":4,"min":1,"name":"team_element_count","title":1603,"type":"int"}, + {"default":4,"max":4,"min":1,"name":"team_element_count","title":1618,"type":"int"}, ], configSkill: [ @@ -4210,7 +4290,7 @@ export default { Yoimiya: { name: "Yoimiya", - nameLocale: 526, + nameLocale: 530, element: "Pyro", weapon: "Bow", star: 5, @@ -4218,9 +4298,9 @@ export default { // avatar: Yoimiya_avatar, avatar: getName("Yoimiya"), splash: Yoimiya_splash, - skillName1: 820, - skillName2: 1107, - skillName3: 1156, + skillName1: 830, + skillName2: 1119, + skillName3: 1168, skillMap1: [ { index: 0, text: 51 }, @@ -4229,21 +4309,21 @@ export default { { index: 2, text: 68 }, - { index: 3, text: 401 }, + { index: 3, text: 402 }, { index: 4, text: 131 }, - { index: 5, text: 1226 }, + { index: 5, text: 1239 }, - { index: 6, text: 1075 }, + { index: 6, text: 1087 }, - { index: 7, text: 1108 }, + { index: 7, text: 1120 }, { index: 8, text: 76 }, { index: 9, text: 162 }, - { index: 10, text: 1722 }, + { index: 10, text: 1737 }, ], skillMap2: [ @@ -4251,19 +4331,19 @@ export default { ], skillMap3: [ - { index: 11, text: 625 }, + { index: 11, text: 635 }, - { index: 12, text: 1157 }, + { index: 12, text: 1169 }, ], config: [ - {"default":8.0,"max":10.0,"min":0.0,"name":"talent1_level","title":478,"type":"float"}, + {"default":8.0,"max":10.0,"min":0.0,"name":"talent1_level","title":481,"type":"float"}, ], configSkill: [ - {"default":true,"name":"after_e","title":580,"type":"bool"}, + {"default":true,"name":"after_e","title":584,"type":"bool"}, ], }, @@ -4278,9 +4358,9 @@ export default { // avatar: Yunjin_avatar, avatar: getName("Yunjin"), splash: Yunjin_splash, - skillName1: 805, - skillName2: 741, - skillName3: 1238, + skillName1: 815, + skillName2: 751, + skillName3: 1251, skillMap1: [ { index: 0, text: 48 }, @@ -4291,24 +4371,24 @@ export default { { index: 3, text: 70 }, - { index: 4, text: 398 }, + { index: 4, text: 399 }, - { index: 5, text: 399 }, + { index: 5, text: 400 }, { index: 6, text: 131 }, - { index: 7, text: 1561 }, + { index: 7, text: 1576 }, { index: 8, text: 76 }, { index: 9, text: 162 }, - { index: 10, text: 1722 }, + { index: 10, text: 1737 }, ], skillMap2: [ - { index: 11, text: 1092 }, + { index: 11, text: 1104 }, { index: 12, text: 55 }, @@ -4317,7 +4397,7 @@ export default { ], skillMap3: [ - { index: 14, text: 625 }, + { index: 14, text: 635 }, ], config: [ @@ -4330,7 +4410,7 @@ export default { Zhongli: { name: "Zhongli", - nameLocale: 1586, + nameLocale: 1601, element: "Geo", weapon: "Polearm", star: 5, @@ -4338,9 +4418,9 @@ export default { // avatar: Zhongli_avatar, avatar: getName("Zhongli"), splash: Zhongli_splash, - skillName1: 796, - skillName2: 411, - skillName3: 455, + skillName1: 806, + skillName2: 412, + skillName3: 456, skillMap1: [ { index: 0, text: 48 }, @@ -4355,27 +4435,27 @@ export default { { index: 5, text: 232 }, - { index: 6, text: 1561 }, + { index: 6, text: 1576 }, { index: 7, text: 76 }, { index: 8, text: 162 }, - { index: 9, text: 1722 }, + { index: 9, text: 1737 }, ], skillMap2: [ - { index: 10, text: 555 }, + { index: 10, text: 559 }, { index: 11, text: 236 }, - { index: 12, text: 1598 }, + { index: 12, text: 1613 }, ], skillMap3: [ - { index: 13, text: 625 }, + { index: 13, text: 635 }, ], config: [ @@ -4388,17 +4468,17 @@ export default { Kirara: { name: "Kirara", - nameLocale: 1312, + nameLocale: 1325, element: "Dendro", weapon: "Sword", star: 4, // card: Kirara_card, // avatar: Kirara_avatar, - avatar: getName("Kirara"), + avatar: getName("Momoka"), splash: Kirara_splash, - skillName1: 832, + skillName1: 842, skillName2: 374, - skillName3: 1278, + skillName3: 1291, skillMap1: [ { index: 0, text: 48 }, @@ -4411,33 +4491,33 @@ export default { { index: 4, text: 397 }, - { index: 5, text: 1564 }, + { index: 5, text: 1580 }, - { index: 6, text: 1568 }, + { index: 6, text: 1583 }, - { index: 7, text: 1570 }, + { index: 7, text: 1585 }, { index: 8, text: 76 }, { index: 9, text: 162 }, - { index: 10, text: 1722 }, + { index: 10, text: 1737 }, ], skillMap2: [ - { index: 11, text: 1195 }, + { index: 11, text: 1208 }, - { index: 12, text: 1136 }, + { index: 12, text: 1148 }, - { index: 13, text: 1334 }, + { index: 13, text: 1347 }, ], skillMap3: [ - { index: 14, text: 625 }, + { index: 14, text: 635 }, - { index: 15, text: 1137 }, + { index: 15, text: 1149 }, ], config: [ diff --git a/src/assets/_gen_pf.js b/src/assets/_gen_pf.js index edf42be6..1df77e46 100644 --- a/src/assets/_gen_pf.js +++ b/src/assets/_gen_pf.js @@ -12,37 +12,37 @@ export default { badge: ArtifactEff_image, config: [ - {"default":false,"name":"atk_use","title":678,"type":"bool"}, + {"default":false,"name":"atk_use","title":688,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"atk_weight","title":679,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"atk_weight","title":689,"type":"float"}, - {"default":true,"name":"atk_p_use","title":671,"type":"bool"}, + {"default":true,"name":"atk_p_use","title":681,"type":"bool"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"atk_p_weight","title":672,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"atk_p_weight","title":682,"type":"float"}, - {"default":false,"name":"hp_use","title":1189,"type":"bool"}, + {"default":false,"name":"hp_use","title":1202,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"hp_weight","title":1190,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"hp_weight","title":1203,"type":"float"}, - {"default":false,"name":"hp_p_use","title":1175,"type":"bool"}, + {"default":false,"name":"hp_p_use","title":1188,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"hp_p_weight","title":1176,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"hp_p_weight","title":1189,"type":"float"}, - {"default":false,"name":"def_use","title":1623,"type":"bool"}, + {"default":false,"name":"def_use","title":1638,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"def_weight","title":1624,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"def_weight","title":1639,"type":"float"}, - {"default":false,"name":"def_p_use","title":1618,"type":"bool"}, + {"default":false,"name":"def_p_use","title":1633,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"def_p_weight","title":1619,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"def_p_weight","title":1634,"type":"float"}, - {"default":true,"name":"critical_use","title":928,"type":"bool"}, + {"default":true,"name":"critical_use","title":939,"type":"bool"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"critical_weight","title":929,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"critical_weight","title":940,"type":"float"}, - {"default":true,"name":"critical_damage_use","title":922,"type":"bool"}, + {"default":true,"name":"critical_damage_use","title":933,"type":"bool"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"critical_damage_weight","title":923,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"critical_damage_weight","title":934,"type":"float"}, {"default":false,"name":"elemental_mastery_use","title":216,"type":"bool"}, diff --git a/src/assets/_gen_tf.js b/src/assets/_gen_tf.js index 18c595c4..cd71d8f2 100644 --- a/src/assets/_gen_tf.js +++ b/src/assets/_gen_tf.js @@ -204,8 +204,8 @@ export default { "MaxATK": { name: "MaxATK", - nameLocale: 942, - description: 939, + nameLocale: 953, + description: 950, tags: [ "攻击", @@ -222,8 +222,8 @@ export default { "MaxDEF": { name: "MaxDEF", - nameLocale: 947, - description: 941, + nameLocale: 958, + description: 952, tags: [ "防御", @@ -240,8 +240,8 @@ export default { "MaxHP": { name: "MaxHP", - nameLocale: 944, - description: 940, + nameLocale: 955, + description: 951, tags: [ "生命", @@ -258,8 +258,8 @@ export default { "MaxEM": { name: "MaxEM", - nameLocale: 934, - description: 938, + nameLocale: 945, + description: 949, tags: [ "元素精通", @@ -276,8 +276,8 @@ export default { "MaxRecharge": { name: "MaxRecharge", - nameLocale: 935, - description: 937, + nameLocale: 946, + description: 948, tags: [ "", @@ -294,8 +294,8 @@ export default { "PyroDamage": { name: "PyroDamage", - nameLocale: 1078, - description: 1079, + nameLocale: 1090, + description: 1091, tags: [ "输出", @@ -307,7 +307,7 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1293,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1306,"type":"option"}, ], }, @@ -327,15 +327,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1293,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1306,"type":"option"}, ], }, "HydroDamage": { name: "HydroDamage", - nameLocale: 1003, - description: 1004, + nameLocale: 1014, + description: 1015, tags: [ "输出", @@ -347,15 +347,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1293,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1306,"type":"option"}, ], }, "ElectroDamage": { name: "ElectroDamage", - nameLocale: 1646, - description: 1647, + nameLocale: 1661, + description: 1662, tags: [ "输出", @@ -367,15 +367,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1293,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1306,"type":"option"}, ], }, "AnemoDamage": { name: "AnemoDamage", - nameLocale: 1679, - description: 1681, + nameLocale: 1694, + description: 1696, tags: [ "输出", @@ -387,15 +387,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1293,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1306,"type":"option"}, ], }, "DendroDamage": { name: "DendroDamage", - nameLocale: 1360, - description: 1361, + nameLocale: 1373, + description: 1374, tags: [ "", @@ -407,15 +407,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1293,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1306,"type":"option"}, ], }, "GeoDamage": { name: "GeoDamage", - nameLocale: 552, - description: 553, + nameLocale: 556, + description: 557, tags: [ "输出", @@ -427,15 +427,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1293,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1306,"type":"option"}, ], }, "PhysicalDamage": { name: "PhysicalDamage", - nameLocale: 1118, - description: 1119, + nameLocale: 1130, + description: 1131, tags: [ "输出", @@ -447,14 +447,14 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1293,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1306,"type":"option"}, ], }, "MaxVaporize": { name: "MaxVaporize", - nameLocale: 945, + nameLocale: 956, description: 168, tags: [ @@ -467,16 +467,16 @@ export default { config: [ - {"default":0,"name":"t","options":["火","水"],"title":1451,"type":"option"}, + {"default":0,"name":"t","options":["火","水"],"title":1464,"type":"option"}, - {"default":"NormalAttack","name":"skill","title":624,"type":"skill4"}, + {"default":"NormalAttack","name":"skill","title":634,"type":"skill4"}, ], }, "MaxMelt": { name: "MaxMelt", - nameLocale: 946, + nameLocale: 957, description: 170, tags: [ @@ -489,16 +489,16 @@ export default { config: [ - {"default":0,"name":"t","options":["火","冰"],"title":1451,"type":"option"}, + {"default":0,"name":"t","options":["火","冰"],"title":1464,"type":"option"}, - {"default":"NormalAttack","name":"skill","title":624,"type":"skill4"}, + {"default":"NormalAttack","name":"skill","title":634,"type":"skill4"}, ], }, "ExpectVaporize": { name: "ExpectVaporize", - nameLocale: 954, + nameLocale: 965, description: 169, tags: [ @@ -511,16 +511,16 @@ export default { config: [ - {"default":0,"name":"t","options":["火","水"],"title":1451,"type":"option"}, + {"default":0,"name":"t","options":["火","水"],"title":1464,"type":"option"}, - {"default":"NormalAttack","name":"skill","title":624,"type":"skill4"}, + {"default":"NormalAttack","name":"skill","title":634,"type":"skill4"}, ], }, "ExpectMelt": { name: "ExpectMelt", - nameLocale: 955, + nameLocale: 966, description: 171, tags: [ @@ -533,17 +533,17 @@ export default { config: [ - {"default":0,"name":"t","options":["火","冰"],"title":1451,"type":"option"}, + {"default":0,"name":"t","options":["火","冰"],"title":1464,"type":"option"}, - {"default":"NormalAttack","name":"skill","title":624,"type":"skill4"}, + {"default":"NormalAttack","name":"skill","title":634,"type":"skill4"}, ], }, "AlbedoDefault": { name: "AlbedoDefault", - nameLocale: 1631, - description: 781, + nameLocale: 1646, + description: 791, tags: [ "输出", @@ -560,8 +560,8 @@ export default { "AloyDefault": { name: "AloyDefault", - nameLocale: 422, - description: 895, + nameLocale: 423, + description: 906, tags: [ "输出", @@ -578,8 +578,8 @@ export default { "AmberDefault": { name: "AmberDefault", - nameLocale: 513, - description: 898, + nameLocale: 517, + description: 909, tags: [ "输出", @@ -596,8 +596,8 @@ export default { "AratakiIttoDefault": { name: "AratakiIttoDefault", - nameLocale: 1364, - description: 1366, + nameLocale: 1377, + description: 1379, tags: [ "输出", @@ -614,7 +614,7 @@ export default { "BarbaraDefault": { name: "BarbaraDefault", - nameLocale: 1349, + nameLocale: 1362, description: 167, tags: [ @@ -635,7 +635,7 @@ export default { "BeidouDefault": { name: "BeidouDefault", nameLocale: 306, - description: 782, + description: 792, tags: [ "输出", @@ -652,8 +652,8 @@ export default { "BennettDamage": { name: "BennettDamage", - nameLocale: 1151, - description: 778, + nameLocale: 1163, + description: 788, tags: [ "辅助", @@ -669,7 +669,7 @@ export default { config: [ - {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":219,"type":"float"}, + {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":220,"type":"float"}, {"default":0.9,"max":1.0,"min":0.0,"name":"other_dmg_ratio","title":147,"type":"float"}, @@ -678,8 +678,8 @@ export default { "BennettDefault": { name: "BennettDefault", - nameLocale: 1152, - description: 886, + nameLocale: 1164, + description: 897, tags: [ "辅助", @@ -691,15 +691,15 @@ export default { config: [ - {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":219,"type":"float"}, + {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":220,"type":"float"}, ], }, "ChongyunDefault": { name: "ChongyunDefault", - nameLocale: 1554, - description: 780, + nameLocale: 1569, + description: 790, tags: [ "副C", @@ -718,8 +718,8 @@ export default { "DilucDefault": { name: "DilucDefault", - nameLocale: 1529, - description: 910, + nameLocale: 1544, + description: 921, tags: [ "输出", @@ -731,17 +731,17 @@ export default { config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1409,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1422,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1401,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1414,"type":"float"}, ], }, "DionaDefault": { name: "DionaDefault", - nameLocale: 1532, - description: 879, + nameLocale: 1547, + description: 890, tags: [ "治疗", @@ -755,7 +755,7 @@ export default { config: [ - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":219,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":220,"type":"float"}, ], }, @@ -763,7 +763,7 @@ export default { "EulaDefault": { name: "EulaDefault", nameLocale: 157, - description: 774, + description: 784, tags: [ "输出", @@ -780,8 +780,8 @@ export default { "FischlDefault": { name: "FischlDefault", - nameLocale: 1395, - description: 775, + nameLocale: 1408, + description: 785, tags: [ "输出", @@ -798,8 +798,8 @@ export default { "GanyuDefault": { name: "GanyuDefault", - nameLocale: 1170, - description: 906, + nameLocale: 1183, + description: 917, tags: [ "输出", @@ -811,7 +811,7 @@ export default { config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1409,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1422,"type":"float"}, ], }, @@ -819,7 +819,7 @@ export default { "GorouDefault": { name: "GorouDefault", nameLocale: 141, - description: 784, + description: 794, tags: [ "辅助", @@ -831,15 +831,15 @@ export default { config: [ - {"default":1.7,"max":3.0,"min":1.0,"name":"recharge_demand","title":220,"type":"float"}, + {"default":1.7,"max":3.0,"min":1.0,"name":"recharge_demand","title":219,"type":"float"}, ], }, "HuTaoDefault": { name: "HuTaoDefault", - nameLocale: 1342, - description: 891, + nameLocale: 1355, + description: 902, tags: [ "输出", @@ -851,17 +851,17 @@ export default { config: [ - {"default":0.5,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1401,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1414,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1409,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1422,"type":"float"}, ], }, "JeanDefault": { name: "JeanDefault", - nameLocale: 1162, - description: 776, + nameLocale: 1175, + description: 786, tags: [ "副C", @@ -875,17 +875,17 @@ export default { config: [ - {"default":0.5,"max":1.0,"min":0.0,"name":"damage_weight","title":1018,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"damage_weight","title":1029,"type":"float"}, - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":220,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":219,"type":"float"}, ], }, "KaedeharaKazuhaDamage": { name: "KaedeharaKazuhaDamage", - nameLocale: 968, - description: 901, + nameLocale: 979, + description: 912, tags: [ "输出", @@ -899,9 +899,9 @@ export default { config: [ - {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":219,"type":"float"}, + {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":220,"type":"float"}, - {"default":0.5,"max":1.0,"min":0.0,"name":"swirl_rate","title":622,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"swirl_rate","title":632,"type":"float"}, {"default":0.9,"max":1.0,"min":0.0,"name":"other_dmg_ratio","title":147,"type":"float"}, @@ -910,8 +910,8 @@ export default { "KaedeharaKazuhaDefault": { name: "KaedeharaKazuhaDefault", - nameLocale: 967, - description: 885, + nameLocale: 978, + description: 896, tags: [ "辅助", @@ -923,7 +923,7 @@ export default { config: [ - {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":219,"type":"float"}, + {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":220,"type":"float"}, ], }, @@ -931,7 +931,7 @@ export default { "KaeyaDefault": { name: "KaeyaDefault", nameLocale: 273, - description: 777, + description: 787, tags: [ "输出", @@ -948,8 +948,8 @@ export default { "KamisatoAyakaDefault": { name: "KamisatoAyakaDefault", - nameLocale: 1262, - description: 773, + nameLocale: 1275, + description: 783, tags: [ "输出", @@ -961,15 +961,15 @@ export default { config: [ - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":219,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":220,"type":"float"}, ], }, "KamisatoAyakaDps": { name: "KamisatoAyakaDps", - nameLocale: 1260, - description: 953, + nameLocale: 1273, + description: 964, tags: [ "输出", @@ -986,8 +986,8 @@ export default { "KamisatoAyatoDefault": { name: "KamisatoAyatoDefault", - nameLocale: 1256, - description: 878, + nameLocale: 1269, + description: 889, tags: [ "输出", @@ -1005,7 +1005,7 @@ export default { "KeqingDefault": { name: "KeqingDefault", nameLocale: 289, - description: 914, + description: 925, tags: [ "输出", @@ -1017,7 +1017,7 @@ export default { config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"aggravate_rate","title":1492,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"aggravate_rate","title":1507,"type":"float"}, ], }, @@ -1037,7 +1037,7 @@ export default { config: [ - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":219,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":220,"type":"float"}, ], }, @@ -1059,7 +1059,7 @@ export default { config: [ - {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":219,"type":"float"}, + {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":220,"type":"float"}, ], }, @@ -1067,7 +1067,7 @@ export default { "KujouSaraDefault": { name: "KujouSaraDefault", nameLocale: 100, - description: 915, + description: 926, tags: [ "辅助", @@ -1085,7 +1085,7 @@ export default { "LisaDefault": { name: "LisaDefault", nameLocale: 90, - description: 892, + description: 903, tags: [ "输出", @@ -1097,15 +1097,15 @@ export default { config: [ - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":220,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":219,"type":"float"}, ], }, "MonaDefault": { name: "MonaDefault", - nameLocale: 1373, - description: 907, + nameLocale: 1386, + description: 918, tags: [ "输出", @@ -1119,7 +1119,7 @@ export default { config: [ - {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":220,"type":"float"}, + {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":219,"type":"float"}, ], }, @@ -1127,7 +1127,7 @@ export default { "NingguangDefault": { name: "NingguangDefault", nameLocale: 267, - description: 893, + description: 904, tags: [ "输出", @@ -1144,8 +1144,8 @@ export default { "NoelleDefault": { name: "NoelleDefault", - nameLocale: 1474, - description: 908, + nameLocale: 1487, + description: 919, tags: [ "输出", @@ -1163,7 +1163,7 @@ export default { "QiqiDefault": { name: "QiqiDefault", nameLocale: 61, - description: 881, + description: 892, tags: [ "治疗", @@ -1175,15 +1175,15 @@ export default { config: [ - {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":220,"type":"float"}, + {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":219,"type":"float"}, ], }, "RaidenShogunDefault": { name: "RaidenShogunDefault", - nameLocale: 1661, - description: 912, + nameLocale: 1676, + description: 923, tags: [ "输出", @@ -1195,15 +1195,15 @@ export default { config: [ - {"default":2.6,"max":4.0,"min":1.0,"name":"recharge_demand","title":219,"type":"float"}, + {"default":2.6,"max":4.0,"min":1.0,"name":"recharge_demand","title":220,"type":"float"}, ], }, "RazorDefault": { name: "RazorDefault", - nameLocale: 1654, - description: 905, + nameLocale: 1669, + description: 916, tags: [ "输出", @@ -1220,8 +1220,8 @@ export default { "RosariaDefault": { name: "RosariaDefault", - nameLocale: 1320, - description: 889, + nameLocale: 1333, + description: 900, tags: [ "辅助", @@ -1240,8 +1240,8 @@ export default { "SangonomiyaKokomiDefault": { name: "SangonomiyaKokomiDefault", - nameLocale: 1144, - description: 900, + nameLocale: 1156, + description: 911, tags: [ "输出", @@ -1260,8 +1260,8 @@ export default { "SayuDefault": { name: "SayuDefault", - nameLocale: 754, - description: 894, + nameLocale: 764, + description: 905, tags: [ "输出", @@ -1275,15 +1275,15 @@ export default { config: [ - {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":220,"type":"float"}, + {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":219,"type":"float"}, ], }, "ShenheDefault": { name: "ShenheDefault", - nameLocale: 1202, - description: 887, + nameLocale: 1215, + description: 898, tags: [ "辅助", @@ -1295,15 +1295,15 @@ export default { config: [ - {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":220,"type":"float"}, + {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":219,"type":"float"}, ], }, "SucroseDefault": { name: "SucroseDefault", - nameLocale: 1231, - description: 888, + nameLocale: 1244, + description: 899, tags: [ "辅助", @@ -1315,15 +1315,15 @@ export default { config: [ - {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":220,"type":"float"}, + {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":219,"type":"float"}, ], }, "TartagliaDefault": { name: "TartagliaDefault", - nameLocale: 1523, - description: 909, + nameLocale: 1538, + description: 920, tags: [ "输出", @@ -1340,8 +1340,8 @@ export default { "ThomaDefault": { name: "ThomaDefault", - nameLocale: 615, - description: 884, + nameLocale: 625, + description: 895, tags: [ "辅助", @@ -1353,15 +1353,15 @@ export default { config: [ - {"default":2.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":220,"type":"float"}, + {"default":2.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":219,"type":"float"}, ], }, "VentiDefault": { name: "VentiDefault", - nameLocale: 1063, - description: 902, + nameLocale: 1075, + description: 913, tags: [ "输出", @@ -1373,15 +1373,15 @@ export default { config: [ - {"default":0.7,"max":1.0,"min":0.0,"name":"swirl_rate","title":619,"type":"float"}, + {"default":0.7,"max":1.0,"min":0.0,"name":"swirl_rate","title":629,"type":"float"}, ], }, "XianglingDefault": { name: "XianglingDefault", - nameLocale: 1716, - description: 903, + nameLocale: 1731, + description: 914, tags: [ "输出", @@ -1393,21 +1393,21 @@ export default { config: [ - {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":220,"type":"float"}, + {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":219,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1409,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1422,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1401,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1414,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"overload_rate","title":1498,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"overload_rate","title":1513,"type":"float"}, ], }, "XiaoDefault": { name: "XiaoDefault", - nameLocale: 1725, - description: 913, + nameLocale: 1740, + description: 924, tags: [ "输出", @@ -1424,8 +1424,8 @@ export default { "XingqiuDefault": { name: "XingqiuDefault", - nameLocale: 1414, - description: 779, + nameLocale: 1427, + description: 789, tags: [ "输出", @@ -1437,15 +1437,15 @@ export default { config: [ - {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":220,"type":"float"}, + {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":219,"type":"float"}, ], }, "XinyanDamage": { name: "XinyanDamage", - nameLocale: 1517, - description: 883, + nameLocale: 1532, + description: 894, tags: [ "输出", @@ -1462,8 +1462,8 @@ export default { "XinyanDefault": { name: "XinyanDefault", - nameLocale: 1516, - description: 890, + nameLocale: 1531, + description: 901, tags: [ "辅助", @@ -1475,7 +1475,7 @@ export default { config: [ - {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":220,"type":"float"}, + {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":219,"type":"float"}, {"default":0.5,"max":1.0,"min":0.0,"name":"damage_demand","title":161,"type":"float"}, @@ -1485,7 +1485,7 @@ export default { "YaeMikoDefault": { name: "YaeMikoDefault", nameLocale: 225, - description: 659, + description: 669, tags: [ "输出", @@ -1497,21 +1497,21 @@ export default { config: [ - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_requirement","title":220,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_requirement","title":219,"type":"float"}, - {"default":0,"name":"combo","options":["不站场平A","站场平A"],"title":1525,"type":"option"}, + {"default":0,"name":"combo","options":["不站场平A","站场平A"],"title":1540,"type":"option"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"aggravate_rate","title":1492,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"aggravate_rate","title":1507,"type":"float"}, - {"default":0.0,"max":4.0,"min":0.0,"name":"hyperbloom_rate","title":1493,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"hyperbloom_rate","title":1508,"type":"float"}, ], }, "YanfeiDefault": { name: "YanfeiDefault", - nameLocale: 1102, - description: 904, + nameLocale: 1114, + description: 915, tags: [ "输出", @@ -1528,8 +1528,8 @@ export default { "YelanDefault": { name: "YelanDefault", - nameLocale: 449, - description: 896, + nameLocale: 450, + description: 907, tags: [ "输出", @@ -1541,17 +1541,17 @@ export default { config: [ - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":219,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":220,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1401,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1414,"type":"float"}, ], }, "YoimiyaDefault": { name: "YoimiyaDefault", - nameLocale: 528, - description: 899, + nameLocale: 532, + description: 910, tags: [ "输出", @@ -1563,9 +1563,9 @@ export default { config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1401,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1414,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1409,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1422,"type":"float"}, ], }, @@ -1573,7 +1573,7 @@ export default { "YunjinDefault": { name: "YunjinDefault", nameLocale: 127, - description: 783, + description: 793, tags: [ "辅助", @@ -1585,15 +1585,15 @@ export default { config: [ - {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":220,"type":"float"}, + {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":219,"type":"float"}, ], }, "ZhongliDefault": { name: "ZhongliDefault", - nameLocale: 1588, - description: 882, + nameLocale: 1603, + description: 893, tags: [ "爆发", @@ -1605,7 +1605,7 @@ export default { config: [ - {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":220,"type":"float"}, + {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":219,"type":"float"}, ], }, @@ -1613,7 +1613,7 @@ export default { "KukiShinobuDefault": { name: "KukiShinobuDefault", nameLocale: 93, - description: 1511, + description: 1526, tags: [ "辅助", @@ -1632,8 +1632,8 @@ export default { "ShikanoinHeizouDefault": { name: "ShikanoinHeizouDefault", - nameLocale: 1739, - description: 1512, + nameLocale: 1755, + description: 1527, tags: [ "输出", @@ -1650,7 +1650,7 @@ export default { "TighnariDefault": { name: "TighnariDefault", - nameLocale: 665, + nameLocale: 675, description: 165, tags: [ @@ -1663,15 +1663,15 @@ export default { config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"spread_rate","title":1403,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"spread_rate","title":1416,"type":"float"}, ], }, "CynoDefault": { name: "CynoDefault", - nameLocale: 1488, - description: 611, + nameLocale: 1503, + description: 621, tags: [ "输出", @@ -1683,27 +1683,27 @@ export default { config: [ - {"default":1.3,"max":3.0,"min":1.0,"name":"recharge_requirement","title":220,"type":"float"}, + {"default":1.3,"max":3.0,"min":1.0,"name":"recharge_requirement","title":219,"type":"float"}, - {"default":0,"name":"combo","options":["乱a不取消","取消第五段"],"title":1525,"type":"option"}, + {"default":0,"name":"combo","options":["乱a不取消","取消第五段"],"title":1540,"type":"option"}, {"default":false,"name":"until_expire","title":17,"type":"bool"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"aggravate_rate","title":1492,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"aggravate_rate","title":1507,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"elecharged_rate","title":602,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"elecharged_rate","title":612,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"overload_rate","title":1497,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"overload_rate","title":1512,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"hyperbloom_rate","title":1493,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"hyperbloom_rate","title":1508,"type":"float"}, ], }, "NilouDefault": { name: "NilouDefault", - nameLocale: 496, - description: 897, + nameLocale: 500, + description: 908, tags: [ "", @@ -1719,18 +1719,18 @@ export default { {"default":1.0,"max":10.0,"min":0.0,"name":"q_ratio","title":204,"type":"float"}, - {"default":3.0,"max":10.0,"min":0.0,"name":"bloom_ratio","title":1315,"type":"float"}, + {"default":3.0,"max":10.0,"min":0.0,"name":"bloom_ratio","title":1328,"type":"float"}, - {"default":1000.0,"max":3000.0,"min":0.0,"name":"other_em","title":1614,"type":"float"}, + {"default":1000.0,"max":3000.0,"min":0.0,"name":"other_em","title":1629,"type":"float"}, - {"default":7.0,"max":10.0,"min":0.0,"name":"other_bloom_ratio","title":1615,"type":"float"}, + {"default":7.0,"max":10.0,"min":0.0,"name":"other_bloom_ratio","title":1630,"type":"float"}, ], }, "NahidaDefault": { name: "NahidaDefault", - nameLocale: 1300, + nameLocale: 1313, description: 172, tags: [ @@ -1743,23 +1743,23 @@ export default { config: [ - {"default":0,"max":1500,"min":0,"name":"em_requirement","title":1295,"type":"int"}, + {"default":0,"max":1500,"min":0,"name":"em_requirement","title":1308,"type":"int"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"spread_rate","title":1403,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"spread_rate","title":1416,"type":"float"}, - {"default":0.0,"max":4.0,"min":0.0,"name":"bloom_count","title":1315,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"bloom_count","title":1328,"type":"float"}, - {"default":0.0,"max":3.0,"min":0.0,"name":"burn_duration","title":1111,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"burn_duration","title":1123,"type":"float"}, - {"default":0,"max":2,"min":0,"name":"pryo_teammate_count","title":1083,"type":"int"}, + {"default":0,"max":2,"min":0,"name":"pryo_teammate_count","title":1095,"type":"int"}, ], }, "WandererDefault": { name: "WandererDefault", - nameLocale: 1041, - description: 1459, + nameLocale: 1052, + description: 1472, tags: [ "输出", @@ -1777,22 +1777,22 @@ export default { {"default":false,"name":"e_cryo","title":23,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"spd_extra","title":1678,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"spd_extra","title":1693,"type":"float"}, - {"default":1.0,"max":1.5,"min":0.5,"name":"spd_comp","title":688,"type":"float"}, + {"default":1.0,"max":1.5,"min":0.5,"name":"spd_comp","title":698,"type":"float"}, {"default":3,"max":12,"min":0,"name":"dash_count","title":27,"type":"int"}, {"default":5,"max":5,"min":0,"name":"q_count","title":12,"type":"int"}, - {"default":12,"max":24,"min":0,"name":"swirl_count","title":621,"type":"int"}, + {"default":12,"max":24,"min":0,"name":"swirl_count","title":631,"type":"int"}, ], }, "FaruzanDamage": { name: "FaruzanDamage", - nameLocale: 1146, + nameLocale: 1158, description: 166, tags: [ @@ -1805,14 +1805,14 @@ export default { config: [ - {"default":2.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":220,"type":"float"}, + {"default":2.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":219,"type":"float"}, ], }, "AlhaithamDefault": { name: "AlhaithamDefault", - nameLocale: 1347, + nameLocale: 1360, description: 151, tags: [ @@ -1825,21 +1825,21 @@ export default { config: [ - {"default":5.0,"max":10.0,"min":0.0,"name":"charged_ratio","title":1576,"type":"float"}, + {"default":5.0,"max":10.0,"min":0.0,"name":"charged_ratio","title":1591,"type":"float"}, {"default":5.0,"max":10.0,"min":0.0,"name":"e_ratio","title":198,"type":"float"}, {"default":1.0,"max":10.0,"min":0.0,"name":"q_ratio","title":205,"type":"float"}, - {"default":0.3,"max":1.0,"min":0.0,"name":"spread_ratio","title":1403,"type":"float"}, + {"default":0.3,"max":1.0,"min":0.0,"name":"spread_ratio","title":1416,"type":"float"}, ], }, "DehyaDefault": { name: "DehyaDefault", - nameLocale: 1535, - description: 911, + nameLocale: 1550, + description: 922, tags: [ "输出", @@ -1851,9 +1851,9 @@ export default { config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1409,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1422,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1401,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1414,"type":"float"}, {"default":6,"max":20,"min":0,"name":"e_count","title":85,"type":"int"}, @@ -1862,8 +1862,8 @@ export default { "MikaDefault": { name: "MikaDefault", - nameLocale: 1292, - description: 880, + nameLocale: 1305, + description: 891, tags: [ "治疗", @@ -1877,9 +1877,9 @@ export default { config: [ - {"default":2.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":219,"type":"float"}, + {"default":2.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":220,"type":"float"}, - {"default":0.6,"max":1.0,"min":0.0,"name":"crit_demand","title":930,"type":"float"}, + {"default":0.6,"max":1.0,"min":0.0,"name":"crit_demand","title":941,"type":"float"}, ], }, diff --git a/src/assets/_gen_weapon.js b/src/assets/_gen_weapon.js index 1df394ca..c0822ce4 100644 --- a/src/assets/_gen_weapon.js +++ b/src/assets/_gen_weapon.js @@ -320,13 +320,13 @@ export default { MistsplitterReforged: { name: "MistsplitterReforged", internalName: "Sword_Narukami", - nameLocale: 1667, + nameLocale: 1682, star: 5, url: imageUrl("Sword_Narukami"), type: "Sword", - effect: 1385, + effect: 1398, configs: [ @@ -340,13 +340,13 @@ export default { AquilaFavonia: { name: "AquilaFavonia", internalName: "Sword_Falcon", - nameLocale: 1701, + nameLocale: 1716, star: 5, url: imageUrl("Sword_Falcon"), type: "Sword", - effect: 676, + effect: 686, configs: null, @@ -356,20 +356,20 @@ export default { SummitShaper: { name: "SummitShaper", internalName: "Sword_Kunwu", - nameLocale: 708, + nameLocale: 718, star: 5, url: imageUrl("Sword_Kunwu"), type: "Sword", - effect: 644, + effect: 654, configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1420,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1433,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":647,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":656,"type":"float"}, ], @@ -378,13 +378,13 @@ export default { SkywardBlade: { name: "SkywardBlade", internalName: "Sword_Dvalin", - nameLocale: 463, + nameLocale: 464, star: 5, url: imageUrl("Sword_Dvalin"), type: "Sword", - effect: 925, + effect: 936, configs: null, @@ -394,18 +394,18 @@ export default { FreedomSworn: { name: "FreedomSworn", internalName: "Sword_Widsith", - nameLocale: 1353, + nameLocale: 1366, star: 5, url: imageUrl("Sword_Widsith"), type: "Sword", - effect: 1704, + effect: 1719, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1419,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, ], @@ -414,13 +414,13 @@ export default { PrimordialJadeCutter: { name: "PrimordialJadeCutter", internalName: "Sword_Morax", - nameLocale: 1241, + nameLocale: 1254, star: 5, url: imageUrl("Sword_Morax"), type: "Sword", - effect: 1188, + effect: 1201, configs: null, @@ -430,13 +430,13 @@ export default { TheFlute: { name: "TheFlute", internalName: "Sword_Troupe", - nameLocale: 1283, + nameLocale: 1296, star: 4, url: imageUrl("Sword_Troupe"), type: "Sword", - effect: 872, + effect: 883, configs: null, @@ -446,13 +446,13 @@ export default { TheBlackSword: { name: "TheBlackSword", internalName: "Sword_Bloodstained", - nameLocale: 1744, + nameLocale: 1760, star: 4, url: imageUrl("Sword_Bloodstained"), type: "Sword", - effect: 860, + effect: 871, configs: null, @@ -462,18 +462,18 @@ export default { TheAlleyFlash: { name: "TheAlleyFlash", internalName: "Sword_Outlaw", - nameLocale: 918, + nameLocale: 929, star: 4, url: imageUrl("Sword_Outlaw"), type: "Sword", - effect: 1448, + effect: 1461, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1419,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, ], @@ -482,7 +482,7 @@ export default { SwordOfDescension: { name: "SwordOfDescension", internalName: "Sword_Psalmus", - nameLocale: 1639, + nameLocale: 1654, star: 4, url: imageUrl("Sword_Psalmus"), type: "Sword", @@ -498,7 +498,7 @@ export default { SacrificialSword: { name: "SacrificialSword", internalName: "Sword_Fossil", - nameLocale: 1269, + nameLocale: 1282, star: 4, url: imageUrl("Sword_Fossil"), type: "Sword", @@ -514,13 +514,13 @@ export default { RoyalLongsword: { name: "RoyalLongsword", internalName: "Sword_Theocrat", - nameLocale: 522, + nameLocale: 526, star: 4, url: imageUrl("Sword_Theocrat"), type: "Sword", - effect: 686, + effect: 696, configs: null, @@ -530,18 +530,18 @@ export default { PrototypeRancour: { name: "PrototypeRancour", internalName: "Sword_Proto", - nameLocale: 1466, + nameLocale: 1479, star: 4, url: imageUrl("Sword_Proto"), type: "Sword", - effect: 873, + effect: 884, configs: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1420,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1433,"type":"float"}, ], @@ -550,13 +550,13 @@ export default { AmenomaKageuchi: { name: "AmenomaKageuchi", internalName: "Sword_Bakufu", - nameLocale: 461, + nameLocale: 462, star: 4, url: imageUrl("Sword_Bakufu"), type: "Sword", - effect: 723, + effect: 733, configs: null, @@ -572,12 +572,12 @@ export default { type: "Sword", - effect: 539, + effect: 543, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1419,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, ], @@ -586,18 +586,18 @@ export default { IronSting: { name: "IronSting", internalName: "Sword_Exotic", - nameLocale: 1594, + nameLocale: 1609, star: 4, url: imageUrl("Sword_Exotic"), type: "Sword", - effect: 1544, + effect: 1559, configs: [ - {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1420,"type":"float"}, + {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1433,"type":"float"}, ], @@ -606,7 +606,7 @@ export default { FesteringDesire: { name: "FesteringDesire", internalName: "Sword_Magnum", - nameLocale: 1344, + nameLocale: 1357, star: 4, url: imageUrl("Sword_Magnum"), type: "Sword", @@ -622,13 +622,13 @@ export default { FavoniusSword: { name: "FavoniusSword", internalName: "Sword_Zephyrus", - nameLocale: 1433, + nameLocale: 1446, star: 4, url: imageUrl("Sword_Zephyrus"), type: "Sword", - effect: 687, + effect: 697, configs: null, @@ -638,7 +638,7 @@ export default { CinnabarSpindle: { name: "CinnabarSpindle", internalName: "Sword_Opus", - nameLocale: 1520, + nameLocale: 1535, star: 4, url: imageUrl("Sword_Opus"), type: "Sword", @@ -649,7 +649,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1419,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, ], @@ -658,7 +658,7 @@ export default { BlackcliffLongsword: { name: "BlackcliffLongsword", internalName: "Sword_Blackrock", - nameLocale: 1749, + nameLocale: 1765, star: 4, url: imageUrl("Sword_Blackrock"), type: "Sword", @@ -669,7 +669,7 @@ export default { configs: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1420,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1433,"type":"float"}, ], @@ -678,18 +678,18 @@ export default { HarbingerOfDawn: { name: "HarbingerOfDawn", internalName: "Sword_Dawn", - nameLocale: 1743, + nameLocale: 1759, star: 3, url: imageUrl("Sword_Dawn"), type: "Sword", - effect: 1191, + effect: 1204, configs: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1419,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, ], @@ -704,7 +704,7 @@ export default { type: "Sword", - effect: 682, + effect: 692, configs: null, @@ -714,18 +714,18 @@ export default { SkyriderSword: { name: "SkyriderSword", internalName: "Sword_Mitsurugi", - nameLocale: 1706, + nameLocale: 1721, star: 3, url: imageUrl("Sword_Mitsurugi"), type: "Sword", - effect: 730, + effect: 740, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1419,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, ], @@ -734,18 +734,18 @@ export default { DarkIronSword: { name: "DarkIronSword", internalName: "Sword_Darker", - nameLocale: 919, + nameLocale: 930, star: 3, url: imageUrl("Sword_Darker"), type: "Sword", - effect: 1458, + effect: 1471, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1419,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, ], @@ -760,12 +760,12 @@ export default { type: "Sword", - effect: 532, + effect: 536, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1419,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, ], @@ -774,13 +774,13 @@ export default { TravelersHandySword: { name: "TravelersHandySword", internalName: "Sword_Traveler", - nameLocale: 739, + nameLocale: 749, star: 3, url: imageUrl("Sword_Traveler"), type: "Sword", - effect: 1391, + effect: 1404, configs: null, @@ -790,7 +790,7 @@ export default { SilverSword: { name: "SilverSword", internalName: "Sword_Silver", - nameLocale: 1595, + nameLocale: 1610, star: 2, url: imageUrl("Sword_Silver"), type: "Sword", @@ -804,7 +804,7 @@ export default { DullBlade: { name: "DullBlade", internalName: "Sword_Blunt", - nameLocale: 752, + nameLocale: 762, star: 1, url: imageUrl("Sword_Blunt"), type: "Sword", @@ -818,13 +818,13 @@ export default { HaranGeppakuFutsu: { name: "HaranGeppakuFutsu", internalName: "Sword_Amenoma", - nameLocale: 1027, + nameLocale: 1038, star: 5, url: imageUrl("Sword_Amenoma"), type: "Sword", - effect: 1387, + effect: 1400, configs: [ @@ -838,18 +838,18 @@ export default { CursedBlade: { name: "CursedBlade", internalName: "Sword_Youtou", - nameLocale: 1284, + nameLocale: 1297, star: 4, url: imageUrl("Sword_Youtou"), type: "Sword", - effect: 854, + effect: 865, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1419,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, ], @@ -867,7 +867,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1419,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, ], @@ -876,18 +876,18 @@ export default { XiphosMoonlight: { name: "XiphosMoonlight", internalName: "Sword_Pleroma", - nameLocale: 1431, + nameLocale: 1444, star: 4, url: imageUrl("Sword_Pleroma"), type: "Sword", - effect: 997, + effect: 1008, configs: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1419,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, ], @@ -896,18 +896,18 @@ export default { KeyOfKhajNisut: { name: "KeyOfKhajNisut", internalName: "Sword_Deshret", - nameLocale: 409, + nameLocale: 410, star: 5, url: imageUrl("Sword_Deshret"), type: "Sword", - effect: 1186, + effect: 1199, configs: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1420,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1433,"type":"float"}, ], @@ -922,12 +922,12 @@ export default { type: "Sword", - effect: 681, + effect: 691, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1419,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, ], @@ -936,7 +936,7 @@ export default { LightOfFoliarIncision: { name: "LightOfFoliarIncision", internalName: "Sword_Ayus", - nameLocale: 1422, + nameLocale: 1435, star: 5, url: imageUrl("Sword_Ayus"), type: "Sword", @@ -945,7 +945,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1419,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, ], @@ -954,18 +954,18 @@ export default { WolfsGravestone: { name: "WolfsGravestone", internalName: "Claymore_Wolfmound", - nameLocale: 1124, + nameLocale: 1136, star: 5, url: imageUrl("Claymore_Wolfmound"), type: "Claymore", - effect: 677, + effect: 687, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1419,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, ], @@ -974,13 +974,13 @@ export default { SkywardPride: { name: "SkywardPride", internalName: "Claymore_Dvalin", - nameLocale: 462, + nameLocale: 463, star: 5, url: imageUrl("Claymore_Dvalin"), type: "Claymore", - effect: 1545, + effect: 1560, configs: null, @@ -990,20 +990,20 @@ export default { TheUnforged: { name: "TheUnforged", internalName: "Claymore_Kunwu", - nameLocale: 747, + nameLocale: 757, star: 5, url: imageUrl("Claymore_Kunwu"), type: "Claymore", - effect: 644, + effect: 654, configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1420,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1433,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":647,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":656,"type":"float"}, ], @@ -1012,18 +1012,18 @@ export default { SongOfBrokenPines: { name: "SongOfBrokenPines", internalName: "Claymore_Widsith", - nameLocale: 961, + nameLocale: 972, star: 5, url: imageUrl("Claymore_Widsith"), type: "Claymore", - effect: 1703, + effect: 1718, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1419,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, ], @@ -1032,13 +1032,13 @@ export default { RedhornStonethresher: { name: "RedhornStonethresher", internalName: "Claymore_Itadorimaru", - nameLocale: 1491, + nameLocale: 1506, star: 5, url: imageUrl("Claymore_Itadorimaru"), type: "Claymore", - effect: 1622, + effect: 1637, configs: null, @@ -1048,18 +1048,18 @@ export default { Akuoumaru: { name: "Akuoumaru", internalName: "Claymore_Maria", - nameLocale: 596, + nameLocale: 605, star: 4, url: imageUrl("Claymore_Maria"), type: "Claymore", - effect: 1605, + effect: 1620, configs: [ - {"default":40,"max":400,"min":40,"name":"energy","title":1610,"type":"int"}, + {"default":40,"max":400,"min":40,"name":"energy","title":1625,"type":"int"}, ], @@ -1068,13 +1068,13 @@ export default { RoyalGreatsword: { name: "RoyalGreatsword", internalName: "Claymore_Theocrat", - nameLocale: 517, + nameLocale: 521, star: 4, url: imageUrl("Claymore_Theocrat"), type: "Claymore", - effect: 686, + effect: 696, configs: null, @@ -1084,18 +1084,18 @@ export default { Whiteblind: { name: "Whiteblind", internalName: "Claymore_Exotic", - nameLocale: 1211, + nameLocale: 1224, star: 4, url: imageUrl("Claymore_Exotic"), type: "Claymore", - effect: 869, + effect: 880, configs: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1420,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1433,"type":"float"}, ], @@ -1104,7 +1104,7 @@ export default { TheBell: { name: "TheBell", internalName: "Claymore_Troupe", - nameLocale: 1585, + nameLocale: 1600, star: 4, url: imageUrl("Claymore_Troupe"), type: "Claymore", @@ -1115,7 +1115,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1419,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, ], @@ -1124,13 +1124,13 @@ export default { SnowTombedStarsilver: { name: "SnowTombedStarsilver", internalName: "Claymore_Dragonfell", - nameLocale: 1643, + nameLocale: 1658, star: 4, url: imageUrl("Claymore_Dragonfell"), type: "Claymore", - effect: 855, + effect: 866, configs: null, @@ -1140,13 +1140,13 @@ export default { FavoniusGreatsword: { name: "FavoniusGreatsword", internalName: "Claymore_Zephyrus", - nameLocale: 1434, + nameLocale: 1447, star: 4, url: imageUrl("Claymore_Zephyrus"), type: "Claymore", - effect: 687, + effect: 697, configs: null, @@ -1156,7 +1156,7 @@ export default { KatsuragikiriNagamasa: { name: "KatsuragikiriNagamasa", internalName: "Claymore_Bakufu", - nameLocale: 981, + nameLocale: 992, star: 4, url: imageUrl("Claymore_Bakufu"), type: "Claymore", @@ -1172,7 +1172,7 @@ export default { SacrificialGreatsword: { name: "SacrificialGreatsword", internalName: "Claymore_Fossil", - nameLocale: 1270, + nameLocale: 1283, star: 4, url: imageUrl("Claymore_Fossil"), type: "Claymore", @@ -1188,18 +1188,18 @@ export default { SerpentSpine: { name: "SerpentSpine", internalName: "Claymore_Kione", - nameLocale: 1410, + nameLocale: 1423, star: 4, url: imageUrl("Claymore_Kione"), type: "Claymore", - effect: 1445, + effect: 1458, configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1420,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1433,"type":"float"}, ], @@ -1208,7 +1208,7 @@ export default { BlackcliffSlasher: { name: "BlackcliffSlasher", internalName: "Claymore_Blackrock", - nameLocale: 1747, + nameLocale: 1763, star: 4, url: imageUrl("Claymore_Blackrock"), type: "Claymore", @@ -1219,7 +1219,7 @@ export default { configs: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1420,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1433,"type":"float"}, ], @@ -1228,18 +1228,18 @@ export default { Rainslasher: { name: "Rainslasher", internalName: "Claymore_Perdue", - nameLocale: 1642, + nameLocale: 1657, star: 4, url: imageUrl("Claymore_Perdue"), type: "Claymore", - effect: 536, + effect: 540, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1419,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, ], @@ -1248,13 +1248,13 @@ export default { PrototypeArchaic: { name: "PrototypeArchaic", internalName: "Claymore_Proto", - nameLocale: 1465, + nameLocale: 1478, star: 4, url: imageUrl("Claymore_Proto"), type: "Claymore", - effect: 871, + effect: 882, configs: null, @@ -1264,7 +1264,7 @@ export default { LuxuriousSeaLord: { name: "LuxuriousSeaLord", internalName: "Claymore_MillenniaTuna", - nameLocale: 1417, + nameLocale: 1430, star: 4, url: imageUrl("Claymore_MillenniaTuna"), type: "Claymore", @@ -1286,12 +1286,12 @@ export default { type: "Claymore", - effect: 1608, + effect: 1623, configs: [ - {"default":0,"max":4,"min":0,"name":"liyue_count","title":1612,"type":"int"}, + {"default":0,"max":4,"min":0,"name":"liyue_count","title":1627,"type":"int"}, ], @@ -1300,18 +1300,18 @@ export default { SkyriderGreatsword: { name: "SkyriderGreatsword", internalName: "Claymore_Mitsurugi", - nameLocale: 1705, + nameLocale: 1720, star: 3, url: imageUrl("Claymore_Mitsurugi"), type: "Claymore", - effect: 870, + effect: 881, configs: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1420,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1433,"type":"float"}, ], @@ -1326,7 +1326,7 @@ export default { type: "Claymore", - effect: 721, + effect: 731, configs: null, @@ -1336,18 +1336,18 @@ export default { BloodstainedGreatsword: { name: "BloodstainedGreatsword", internalName: "Claymore_Siegfry", - nameLocale: 1015, + nameLocale: 1026, star: 3, url: imageUrl("Claymore_Siegfry"), type: "Claymore", - effect: 538, + effect: 542, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1419,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, ], @@ -1356,7 +1356,7 @@ export default { WhiteIronGreatsword: { name: "WhiteIronGreatsword", internalName: "Claymore_Tin", - nameLocale: 1221, + nameLocale: 1234, star: 3, url: imageUrl("Claymore_Tin"), type: "Claymore", @@ -1372,18 +1372,18 @@ export default { FerrousShadow: { name: "FerrousShadow", internalName: "Claymore_Glaive", - nameLocale: 1593, + nameLocale: 1608, star: 3, url: imageUrl("Claymore_Glaive"), type: "Claymore", - effect: 1182, + effect: 1195, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1419,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, ], @@ -1406,7 +1406,7 @@ export default { WasterGreatsword: { name: "WasterGreatsword", internalName: "Claymore_Aniki", - nameLocale: 1462, + nameLocale: 1475, star: 1, url: imageUrl("Claymore_Aniki"), type: "Claymore", @@ -1420,7 +1420,7 @@ export default { ForestRegalia: { name: "ForestRegalia", internalName: "Claymore_Arakalari", - nameLocale: 985, + nameLocale: 996, star: 4, url: imageUrl("Claymore_Arakalari"), type: "Claymore", @@ -1429,7 +1429,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1419,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, ], @@ -1438,18 +1438,18 @@ export default { MakhairaAquamarine: { name: "MakhairaAquamarine", internalName: "Claymore_Pleroma", - nameLocale: 1141, + nameLocale: 1153, star: 4, url: imageUrl("Claymore_Pleroma"), type: "Claymore", - effect: 996, + effect: 1007, configs: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1419,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, ], @@ -1458,7 +1458,7 @@ export default { BeaconOfTheReedSea: { name: "BeaconOfTheReedSea", internalName: "Claymore_Deshret", - nameLocale: 1352, + nameLocale: 1365, star: 5, url: imageUrl("Claymore_Deshret"), type: "Claymore", @@ -1469,9 +1469,9 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate_atk","title":685,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate_atk","title":695,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate_hp","title":1192,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate_hp","title":1205,"type":"float"}, ], @@ -1480,7 +1480,7 @@ export default { MailedFlower: { name: "MailedFlower", internalName: "Claymore_Fleurfair", - nameLocale: 1711, + nameLocale: 1726, star: 4, url: imageUrl("Claymore_Fleurfair"), type: "Claymore", @@ -1491,7 +1491,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":579,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":582,"type":"float"}, ], @@ -1500,18 +1500,18 @@ export default { EngulfingLightning: { name: "EngulfingLightning", internalName: "Pole_Narukami", - nameLocale: 1405, + nameLocale: 1418, star: 5, url: imageUrl("Pole_Narukami"), type: "Polearm", - effect: 680, + effect: 690, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1419,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, ], @@ -1520,13 +1520,13 @@ export default { SkywardSpine: { name: "SkywardSpine", internalName: "Pole_Dvalin", - nameLocale: 466, + nameLocale: 467, star: 5, url: imageUrl("Pole_Dvalin"), type: "Polearm", - effect: 926, + effect: 937, configs: null, @@ -1536,7 +1536,7 @@ export default { PrimordialJadeWingedSpear: { name: "PrimordialJadeWingedSpear", internalName: "Pole_Morax", - nameLocale: 387, + nameLocale: 388, star: 5, url: imageUrl("Pole_Morax"), type: "Polearm", @@ -1547,9 +1547,9 @@ export default { configs: [ - {"default":0.0,"max":7.0,"min":0.0,"name":"stack","title":1420,"type":"float"}, + {"default":0.0,"max":7.0,"min":0.0,"name":"stack","title":1433,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"full_rate","title":1074,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"full_rate","title":1086,"type":"float"}, ], @@ -1558,13 +1558,13 @@ export default { CalamityQueller: { name: "CalamityQueller", internalName: "Pole_Santika", - nameLocale: 595, + nameLocale: 604, star: 5, url: imageUrl("Pole_Santika"), type: "Polearm", - effect: 1386, + effect: 1399, configs: [ @@ -1580,18 +1580,18 @@ export default { StaffOfHoma: { name: "StaffOfHoma", internalName: "Pole_Homa", - nameLocale: 642, + nameLocale: 652, star: 5, url: imageUrl("Pole_Homa"), type: "Polearm", - effect: 1187, + effect: 1200, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"be50_rate","title":1180,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"be50_rate","title":1193,"type":"float"}, ], @@ -1600,20 +1600,20 @@ export default { VortexVanquisher: { name: "VortexVanquisher", internalName: "Pole_Kunwu", - nameLocale: 1480, + nameLocale: 1495, star: 5, url: imageUrl("Pole_Kunwu"), type: "Polearm", - effect: 644, + effect: 654, configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1420,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1433,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":647,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":656,"type":"float"}, ], @@ -1622,18 +1622,18 @@ export default { PrototypeStarglitter: { name: "PrototypeStarglitter", internalName: "Pole_Proto", - nameLocale: 1467, + nameLocale: 1480, star: 4, url: imageUrl("Pole_Proto"), type: "Polearm", - effect: 722, + effect: 732, configs: [ - {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1420,"type":"float"}, + {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1433,"type":"float"}, ], @@ -1648,12 +1648,12 @@ export default { type: "Polearm", - effect: 1607, + effect: 1622, configs: [ - {"default":0,"max":4,"min":0,"name":"liyue_count","title":1612,"type":"int"}, + {"default":0,"max":4,"min":0,"name":"liyue_count","title":1627,"type":"int"}, ], @@ -1662,7 +1662,7 @@ export default { KitainCrossSpear: { name: "KitainCrossSpear", internalName: "Pole_Bakufu", - nameLocale: 391, + nameLocale: 392, star: 4, url: imageUrl("Pole_Bakufu"), type: "Polearm", @@ -1694,13 +1694,13 @@ export default { FavoniusLance: { name: "FavoniusLance", internalName: "Pole_Zephyrus", - nameLocale: 1437, + nameLocale: 1450, star: 4, url: imageUrl("Pole_Zephyrus"), type: "Polearm", - effect: 687, + effect: 697, configs: null, @@ -1710,13 +1710,13 @@ export default { DragonspineSpear: { name: "DragonspineSpear", internalName: "Pole_Everfrost", - nameLocale: 1752, + nameLocale: 1768, star: 4, url: imageUrl("Pole_Everfrost"), type: "Polearm", - effect: 855, + effect: 866, configs: null, @@ -1732,12 +1732,12 @@ export default { type: "Polearm", - effect: 534, + effect: 538, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1419,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, ], @@ -1752,12 +1752,12 @@ export default { type: "Polearm", - effect: 1507, + effect: 1522, configs: [ - {"default":true,"name":"ge2","title":1506,"type":"bool"}, + {"default":true,"name":"ge2","title":1521,"type":"bool"}, ], @@ -1766,13 +1766,13 @@ export default { CrescentPike: { name: "CrescentPike", internalName: "Pole_Exotic", - nameLocale: 1035, + nameLocale: 1046, star: 4, url: imageUrl("Pole_Exotic"), type: "Polearm", - effect: 1388, + effect: 1401, configs: null, @@ -1782,7 +1782,7 @@ export default { BlackcliffPole: { name: "BlackcliffPole", internalName: "Pole_Blackrock", - nameLocale: 1745, + nameLocale: 1761, star: 4, url: imageUrl("Pole_Blackrock"), type: "Polearm", @@ -1793,7 +1793,7 @@ export default { configs: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1420,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1433,"type":"float"}, ], @@ -1802,18 +1802,18 @@ export default { WavebreakersFin: { name: "WavebreakersFin", internalName: "Pole_Maria", - nameLocale: 714, + nameLocale: 724, star: 4, url: imageUrl("Pole_Maria"), type: "Polearm", - effect: 1605, + effect: 1620, configs: [ - {"default":40,"max":400,"min":40,"name":"energy","title":1610,"type":"int"}, + {"default":40,"max":400,"min":40,"name":"energy","title":1625,"type":"int"}, ], @@ -1822,13 +1822,13 @@ export default { RoyalSpear: { name: "RoyalSpear", internalName: "Pole_Theocrat", - nameLocale: 519, + nameLocale: 523, star: 4, url: imageUrl("Pole_Theocrat"), type: "Polearm", - effect: 686, + effect: 696, configs: null, @@ -1838,13 +1838,13 @@ export default { Halberd: { name: "Halberd", internalName: "Pole_Halberd", - nameLocale: 1591, + nameLocale: 1606, star: 3, url: imageUrl("Pole_Halberd"), type: "Polearm", - effect: 541, + effect: 545, configs: null, @@ -1854,18 +1854,18 @@ export default { BlackTassel: { name: "BlackTassel", internalName: "Pole_Noire", - nameLocale: 1750, + nameLocale: 1766, star: 3, url: imageUrl("Pole_Noire"), type: "Polearm", - effect: 531, + effect: 535, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1419,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, ], @@ -1874,13 +1874,13 @@ export default { WhiteTassel: { name: "WhiteTassel", internalName: "Pole_Ruby", - nameLocale: 1218, + nameLocale: 1231, star: 3, url: imageUrl("Pole_Ruby"), type: "Polearm", - effect: 876, + effect: 887, configs: null, @@ -1890,7 +1890,7 @@ export default { IronPoint: { name: "IronPoint", internalName: "Pole_Rod", - nameLocale: 1592, + nameLocale: 1607, star: 2, url: imageUrl("Pole_Rod"), type: "Polearm", @@ -1904,7 +1904,7 @@ export default { BeginnersProtector: { name: "BeginnersProtector", internalName: "Pole_Gewalt", - nameLocale: 716, + nameLocale: 726, star: 1, url: imageUrl("Pole_Gewalt"), type: "Polearm", @@ -1918,7 +1918,7 @@ export default { Moonpiercer: { name: "Moonpiercer", internalName: "Pole_Arakalari", - nameLocale: 1478, + nameLocale: 1493, star: 4, url: imageUrl("Pole_Arakalari"), type: "Polearm", @@ -1927,7 +1927,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1419,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, ], @@ -1936,18 +1936,18 @@ export default { MissiveWindspear: { name: "MissiveWindspear", internalName: "Pole_Windvane", - nameLocale: 1680, + nameLocale: 1695, star: 4, url: imageUrl("Pole_Windvane"), type: "Polearm", - effect: 1453, + effect: 1466, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1419,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, ], @@ -1956,18 +1956,18 @@ export default { StaffOfTheScarletSands: { name: "StaffOfTheScarletSands", internalName: "Pole_Deshret", - nameLocale: 1490, + nameLocale: 1505, star: 5, url: imageUrl("Pole_Deshret"), type: "Polearm", - effect: 427, + effect: 428, configs: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1420,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1433,"type":"float"}, ], @@ -1976,18 +1976,18 @@ export default { LostPrayerToTheSacredWinds: { name: "LostPrayerToTheSacredWinds", internalName: "Catalyst_Fourwinds", - nameLocale: 404, + nameLocale: 405, star: 5, url: imageUrl("Catalyst_Fourwinds"), type: "Catalyst", - effect: 1279, + effect: 1292, configs: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1420,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1433,"type":"float"}, ], @@ -1996,7 +1996,7 @@ export default { SkywardAtlas: { name: "SkywardAtlas", internalName: "Catalyst_Dvalin", - nameLocale: 464, + nameLocale: 465, star: 5, url: imageUrl("Catalyst_Dvalin"), type: "Catalyst", @@ -2018,7 +2018,7 @@ export default { type: "Catalyst", - effect: 1020, + effect: 1031, configs: null, @@ -2028,20 +2028,20 @@ export default { MemoryOfDust: { name: "MemoryOfDust", internalName: "Catalyst_Kunwu", - nameLocale: 549, + nameLocale: 553, star: 5, url: imageUrl("Catalyst_Kunwu"), type: "Catalyst", - effect: 644, + effect: 654, configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1420,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1433,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":647,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":656,"type":"float"}, ], @@ -2050,18 +2050,18 @@ export default { WindAndSong: { name: "WindAndSong", internalName: "Catalyst_Outlaw", - nameLocale: 917, + nameLocale: 928, star: 4, url: imageUrl("Catalyst_Outlaw"), type: "Catalyst", - effect: 867, + effect: 878, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1419,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, ], @@ -2070,22 +2070,22 @@ export default { TheWidsith: { name: "TheWidsith", internalName: "Catalyst_Troupe", - nameLocale: 1037, + nameLocale: 1048, star: 4, url: imageUrl("Catalyst_Troupe"), type: "Catalyst", - effect: 1446, + effect: 1459, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"t1_rate","title":525,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"t1_rate","title":529,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"t2_rate","title":388,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"t2_rate","title":389,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"t3_rate","title":1602,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"t3_rate","title":1617,"type":"float"}, ], @@ -2100,14 +2100,14 @@ export default { type: "Catalyst", - effect: 864, + effect: 875, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":690,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":700,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":692,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":702,"type":"float"}, ], @@ -2116,7 +2116,7 @@ export default { SacrificialFragments: { name: "SacrificialFragments", internalName: "Catalyst_Fossil", - nameLocale: 1272, + nameLocale: 1285, star: 4, url: imageUrl("Catalyst_Fossil"), type: "Catalyst", @@ -2132,13 +2132,13 @@ export default { RoyalGrimoire: { name: "RoyalGrimoire", internalName: "Catalyst_Theocrat", - nameLocale: 520, + nameLocale: 524, star: 4, url: imageUrl("Catalyst_Theocrat"), type: "Catalyst", - effect: 686, + effect: 696, configs: null, @@ -2148,13 +2148,13 @@ export default { PrototypeAmber: { name: "PrototypeAmber", internalName: "Catalyst_Proto", - nameLocale: 1469, + nameLocale: 1482, star: 4, url: imageUrl("Catalyst_Proto"), type: "Catalyst", - effect: 728, + effect: 738, configs: null, @@ -2170,12 +2170,12 @@ export default { type: "Catalyst", - effect: 1454, + effect: 1467, configs: [ - {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1420,"type":"float"}, + {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1433,"type":"float"}, ], @@ -2184,13 +2184,13 @@ export default { HakushinRing: { name: "HakushinRing", internalName: "Catalyst_Bakufu", - nameLocale: 1219, + nameLocale: 1232, star: 4, url: imageUrl("Catalyst_Bakufu"), type: "Catalyst", - effect: 1430, + effect: 1443, configs: null, @@ -2200,13 +2200,13 @@ export default { Frostbearer: { name: "Frostbearer", internalName: "Catalyst_Everfrost", - nameLocale: 591, + nameLocale: 600, star: 4, url: imageUrl("Catalyst_Everfrost"), type: "Catalyst", - effect: 855, + effect: 866, configs: null, @@ -2216,13 +2216,13 @@ export default { FavoniusCodex: { name: "FavoniusCodex", internalName: "Catalyst_Zephyrus", - nameLocale: 1436, + nameLocale: 1449, star: 4, url: imageUrl("Catalyst_Zephyrus"), type: "Catalyst", - effect: 687, + effect: 697, configs: null, @@ -2232,13 +2232,13 @@ export default { EyeOfPerception: { name: "EyeOfPerception", internalName: "Catalyst_Truelens", - nameLocale: 766, + nameLocale: 776, star: 4, url: imageUrl("Catalyst_Truelens"), type: "Catalyst", - effect: 857, + effect: 868, configs: null, @@ -2248,20 +2248,20 @@ export default { DodocoTales: { name: "DodocoTales", internalName: "Catalyst_Ludiharpastum", - nameLocale: 394, + nameLocale: 395, star: 4, url: imageUrl("Catalyst_Ludiharpastum"), type: "Catalyst", - effect: 866, + effect: 877, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":690,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":700,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":692,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":702,"type":"float"}, ], @@ -2270,7 +2270,7 @@ export default { BlackcliffAgate: { name: "BlackcliffAgate", internalName: "Catalyst_Blackrock", - nameLocale: 1748, + nameLocale: 1764, star: 4, url: imageUrl("Catalyst_Blackrock"), type: "Catalyst", @@ -2281,7 +2281,7 @@ export default { configs: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1420,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1433,"type":"float"}, ], @@ -2290,20 +2290,20 @@ export default { KagurasVerity: { name: "KagurasVerity", internalName: "Catalyst_Narukami", - nameLocale: 1245, + nameLocale: 1258, star: 5, url: imageUrl("Catalyst_Narukami"), type: "Catalyst", - effect: 726, + effect: 736, configs: [ - {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1420,"type":"float"}, + {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1433,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"full_rate","title":1073,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"full_rate","title":1085,"type":"float"}, ], @@ -2312,18 +2312,18 @@ export default { OathswornEye: { name: "OathswornEye", internalName: "Catalyst_Jyanome", - nameLocale: 1463, + nameLocale: 1476, star: 4, url: imageUrl("Catalyst_Jyanome"), type: "Catalyst", - effect: 719, + effect: 729, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1419,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, ], @@ -2332,18 +2332,18 @@ export default { MagicGuide: { name: "MagicGuide", internalName: "Catalyst_Intro", - nameLocale: 1730, + nameLocale: 1745, star: 3, url: imageUrl("Catalyst_Intro"), type: "Catalyst", - effect: 535, + effect: 539, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1419,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, ], @@ -2352,13 +2352,13 @@ export default { OtherworldlyStory: { name: "OtherworldlyStory", internalName: "Catalyst_Lightnov", - nameLocale: 582, + nameLocale: 586, star: 3, url: imageUrl("Catalyst_Lightnov"), type: "Catalyst", - effect: 1389, + effect: 1402, configs: null, @@ -2368,18 +2368,18 @@ export default { EmeraldOrb: { name: "EmeraldOrb", internalName: "Catalyst_Jade", - nameLocale: 1333, + nameLocale: 1346, star: 3, url: imageUrl("Catalyst_Jade"), type: "Catalyst", - effect: 1457, + effect: 1470, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1419,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, ], @@ -2388,7 +2388,7 @@ export default { ThrillingTalesOfDragonSlayers: { name: "ThrillingTalesOfDragonSlayers", internalName: "Catalyst_Pulpfic", - nameLocale: 1460, + nameLocale: 1473, star: 3, url: imageUrl("Catalyst_Pulpfic"), type: "Catalyst", @@ -2404,7 +2404,7 @@ export default { TwinNephrite: { name: "TwinNephrite", internalName: "Catalyst_Phoney", - nameLocale: 1196, + nameLocale: 1209, star: 3, url: imageUrl("Catalyst_Phoney"), type: "Catalyst", @@ -2415,7 +2415,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1419,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, ], @@ -2438,7 +2438,7 @@ export default { ApprenticesNotes: { name: "ApprenticesNotes", internalName: "Catalyst_Apprentice", - nameLocale: 504, + nameLocale: 508, star: 1, url: imageUrl("Catalyst_Apprentice"), type: "Catalyst", @@ -2452,7 +2452,7 @@ export default { FruitOfFulfillment: { name: "FruitOfFulfillment", internalName: "Catalyst_Arakalari", - nameLocale: 1222, + nameLocale: 1235, star: 4, url: imageUrl("Catalyst_Arakalari"), type: "Catalyst", @@ -2461,7 +2461,7 @@ export default { configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1420,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1433,"type":"float"}, ], @@ -2470,18 +2470,18 @@ export default { WanderingEvenstar: { name: "WanderingEvenstar", internalName: "Catalyst_Pleroma", - nameLocale: 1039, + nameLocale: 1050, star: 4, url: imageUrl("Catalyst_Pleroma"), type: "Catalyst", - effect: 996, + effect: 1007, configs: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1419,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, ], @@ -2496,7 +2496,7 @@ export default { type: "Catalyst", - effect: 1606, + effect: 1621, configs: [ @@ -2512,18 +2512,18 @@ export default { TulaytullahsRemembrance: { name: "TulaytullahsRemembrance", internalName: "Catalyst_Alaya", - nameLocale: 405, + nameLocale: 406, star: 5, url: imageUrl("Catalyst_Alaya"), type: "Catalyst", - effect: 874, + effect: 885, configs: [ - {"default":7.0,"max":10.0,"min":0.0,"name":"stack","title":1420,"type":"float"}, + {"default":7.0,"max":10.0,"min":0.0,"name":"stack","title":1433,"type":"float"}, ], @@ -2532,18 +2532,18 @@ export default { JadeFallsSplendor: { name: "JadeFallsSplendor", internalName: "Catalyst_Morax", - nameLocale: 1240, + nameLocale: 1253, star: 5, url: imageUrl("Catalyst_Morax"), type: "Catalyst", - effect: 734, + effect: 744, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1419,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, ], @@ -2572,13 +2572,13 @@ export default { ThunderingPulse: { name: "ThunderingPulse", internalName: "Bow_Narukami", - nameLocale: 1708, + nameLocale: 1723, star: 5, url: imageUrl("Bow_Narukami"), type: "Bow", - effect: 675, + effect: 685, configs: [ @@ -2592,18 +2592,18 @@ export default { ElegyOfTheEnd: { name: "ElegyOfTheEnd", internalName: "Bow_Widsith", - nameLocale: 1304, + nameLocale: 1317, star: 5, url: imageUrl("Bow_Widsith"), type: "Bow", - effect: 1702, + effect: 1717, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1419,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, ], @@ -2612,13 +2612,13 @@ export default { SkywardHarp: { name: "SkywardHarp", internalName: "Bow_Dvalin", - nameLocale: 465, + nameLocale: 466, star: 5, url: imageUrl("Bow_Dvalin"), type: "Bow", - effect: 921, + effect: 932, configs: null, @@ -2628,18 +2628,18 @@ export default { AmosBow: { name: "AmosBow", internalName: "Bow_Amos", - nameLocale: 1626, + nameLocale: 1641, star: 5, url: imageUrl("Bow_Amos"), type: "Bow", - effect: 861, + effect: 872, configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1420,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1433,"type":"float"}, ], @@ -2648,18 +2648,18 @@ export default { AlleyHunter: { name: "AlleyHunter", internalName: "Bow_Outlaw", - nameLocale: 916, + nameLocale: 927, star: 4, url: imageUrl("Bow_Outlaw"), type: "Bow", - effect: 1418, + effect: 1431, configs: [ - {"default":0.0,"max":10.0,"min":0.0,"name":"stack","title":1420,"type":"float"}, + {"default":0.0,"max":10.0,"min":0.0,"name":"stack","title":1433,"type":"float"}, ], @@ -2668,13 +2668,13 @@ export default { TheViridescentHunt: { name: "TheViridescentHunt", internalName: "Bow_Viridescent", - nameLocale: 1357, + nameLocale: 1370, star: 4, url: imageUrl("Bow_Viridescent"), type: "Bow", - effect: 858, + effect: 869, configs: null, @@ -2684,7 +2684,7 @@ export default { TheStringless: { name: "TheStringless", internalName: "Bow_Troupe", - nameLocale: 1309, + nameLocale: 1322, star: 4, url: imageUrl("Bow_Troupe"), type: "Bow", @@ -2700,7 +2700,7 @@ export default { SacrificialBow: { name: "SacrificialBow", internalName: "Bow_Fossil", - nameLocale: 1271, + nameLocale: 1284, star: 4, url: imageUrl("Bow_Fossil"), type: "Bow", @@ -2716,13 +2716,13 @@ export default { Rust: { name: "Rust", internalName: "Bow_Recluse", - nameLocale: 584, + nameLocale: 588, star: 4, url: imageUrl("Bow_Recluse"), type: "Bow", - effect: 877, + effect: 888, configs: null, @@ -2732,13 +2732,13 @@ export default { RoyalBow: { name: "RoyalBow", internalName: "Bow_Theocrat", - nameLocale: 523, + nameLocale: 527, star: 4, url: imageUrl("Bow_Theocrat"), type: "Bow", - effect: 686, + effect: 696, configs: null, @@ -2748,7 +2748,7 @@ export default { Predator: { name: "Predator", internalName: "Bow_Predator", - nameLocale: 662, + nameLocale: 672, star: 4, url: imageUrl("Bow_Predator"), type: "Bow", @@ -2759,7 +2759,7 @@ export default { configs: [ - {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1420,"type":"float"}, + {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1433,"type":"float"}, ], @@ -2768,18 +2768,18 @@ export default { PrototypeCrescent: { name: "PrototypeCrescent", internalName: "Bow_Proto", - nameLocale: 1468, + nameLocale: 1481, star: 4, url: imageUrl("Bow_Proto"), type: "Bow", - effect: 1579, + effect: 1594, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1419,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, ], @@ -2788,18 +2788,18 @@ export default { MouunsMoon: { name: "MouunsMoon", internalName: "Bow_Maria", - nameLocale: 932, + nameLocale: 943, star: 4, url: imageUrl("Bow_Maria"), type: "Bow", - effect: 1605, + effect: 1620, configs: [ - {"default":40,"max":400,"min":40,"name":"energy","title":1610,"type":"int"}, + {"default":40,"max":400,"min":40,"name":"energy","title":1625,"type":"int"}, ], @@ -2808,20 +2808,20 @@ export default { MitternachtsWaltz: { name: "MitternachtsWaltz", internalName: "Bow_Nachtblind", - nameLocale: 574, + nameLocale: 578, star: 4, url: imageUrl("Bow_Nachtblind"), type: "Bow", - effect: 865, + effect: 876, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":690,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":700,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":692,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":702,"type":"float"}, ], @@ -2830,18 +2830,18 @@ export default { Hamayumi: { name: "Hamayumi", internalName: "Bow_Bakufu", - nameLocale: 1239, + nameLocale: 1252, star: 4, url: imageUrl("Bow_Bakufu"), type: "Bow", - effect: 875, + effect: 886, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1419,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, ], @@ -2850,13 +2850,13 @@ export default { FavoniusWarbow: { name: "FavoniusWarbow", internalName: "Bow_Zephyrus", - nameLocale: 1435, + nameLocale: 1448, star: 4, url: imageUrl("Bow_Zephyrus"), type: "Bow", - effect: 687, + effect: 697, configs: null, @@ -2866,18 +2866,18 @@ export default { CompoundBow: { name: "CompoundBow", internalName: "Bow_Exotic", - nameLocale: 1590, + nameLocale: 1605, star: 4, url: imageUrl("Bow_Exotic"), type: "Bow", - effect: 856, + effect: 867, configs: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1420,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1433,"type":"float"}, ], @@ -2886,7 +2886,7 @@ export default { BlackcliffWarbow: { name: "BlackcliffWarbow", internalName: "Bow_Blackrock", - nameLocale: 1746, + nameLocale: 1762, star: 4, url: imageUrl("Bow_Blackrock"), type: "Bow", @@ -2897,7 +2897,7 @@ export default { configs: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1420,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1433,"type":"float"}, ], @@ -2906,18 +2906,18 @@ export default { WindblumeOde: { name: "WindblumeOde", internalName: "Bow_Fleurfair", - nameLocale: 1688, + nameLocale: 1703, star: 4, url: imageUrl("Bow_Fleurfair"), type: "Bow", - effect: 727, + effect: 737, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1419,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, ], @@ -2926,18 +2926,18 @@ export default { RavenBow: { name: "RavenBow", internalName: "Bow_Crowfeather", - nameLocale: 1734, + nameLocale: 1750, star: 3, url: imageUrl("Bow_Crowfeather"), type: "Bow", - effect: 533, + effect: 537, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1419,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, ], @@ -2968,7 +2968,7 @@ export default { type: "Bow", - effect: 1580, + effect: 1595, configs: null, @@ -2978,18 +2978,18 @@ export default { SharpshootersOath: { name: "SharpshootersOath", internalName: "Bow_Arjuna", - nameLocale: 1248, + nameLocale: 1261, star: 3, url: imageUrl("Bow_Arjuna"), type: "Bow", - effect: 1584, + effect: 1599, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1419,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, ], @@ -2998,20 +2998,20 @@ export default { Slingshot: { name: "Slingshot", internalName: "Bow_Sling", - nameLocale: 585, + nameLocale: 589, star: 3, url: imageUrl("Bow_Sling"), type: "Bow", - effect: 859, + effect: 870, configs: [ {"default":true,"name":"is_effect","title":1,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1419,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, ], @@ -3034,7 +3034,7 @@ export default { HuntersBow: { name: "HuntersBow", internalName: "Bow_Hunters", - nameLocale: 1132, + nameLocale: 1144, star: 1, url: imageUrl("Bow_Hunters"), type: "Bow", @@ -3048,13 +3048,13 @@ export default { AquaSimulacra: { name: "AquaSimulacra", internalName: "Bow_Kirin", - nameLocale: 1359, + nameLocale: 1372, star: 5, url: imageUrl("Bow_Kirin"), type: "Bow", - effect: 1185, + effect: 1198, configs: [ @@ -3068,7 +3068,7 @@ export default { FadingTwilight: { name: "FadingTwilight", internalName: "Bow_Fallensun", - nameLocale: 1399, + nameLocale: 1412, star: 4, url: imageUrl("Bow_Fallensun"), type: "Bow", @@ -3079,7 +3079,7 @@ export default { configs: [ - {"default":2,"name":"state","options":["夕暮","流霞","朝晖"],"title":1121,"type":"option"}, + {"default":2,"name":"state","options":["夕暮","流霞","朝晖"],"title":1133,"type":"option"}, ], @@ -3088,18 +3088,18 @@ export default { HuntersPath: { name: "HuntersPath", internalName: "Bow_Ayus", - nameLocale: 1130, + nameLocale: 1142, star: 5, url: imageUrl("Bow_Ayus"), type: "Bow", - effect: 1384, + effect: 1397, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1419,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, ], @@ -3108,13 +3108,13 @@ export default { Trawler: { name: "Trawler", internalName: "Bow_Fin", - nameLocale: 1282, + nameLocale: 1295, star: 4, url: imageUrl("Bow_Fin"), type: "Bow", - effect: 720, + effect: 730, configs: null, @@ -3124,7 +3124,7 @@ export default { KingsSquire: { name: "KingsSquire", internalName: "Bow_Arakalari", - nameLocale: 1140, + nameLocale: 1152, star: 4, url: imageUrl("Bow_Arakalari"), type: "Bow", @@ -3133,7 +3133,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1419,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, ], @@ -3141,19 +3141,19 @@ export default { IbisPiercer: { name: "IbisPiercer", - internalName: "", - nameLocale: 1735, + internalName: "Bow_Ibis", + nameLocale: 1751, star: 4, - url: imageUrl(""), + url: imageUrl("Bow_Ibis"), type: "Bow", - effect: 1573, + effect: 1588, configs: [ - {"default":2.0,"max":2.0,"min":0.0,"name":"stack","title":550,"type":"float"}, + {"default":2.0,"max":2.0,"min":0.0,"name":"stack","title":554,"type":"float"}, ], diff --git a/src/i18n/generated/en.json b/src/i18n/generated/en.json index 3ebea797..a509bc69 100644 --- a/src/i18n/generated/en.json +++ b/src/i18n/generated/en.json @@ -57,8 +57,8 @@ "Charge Level 1 DMG", "Charge Level 1 DMG-1", "Charge Level 1 DMG-2", - "Aimed Shot Charge Level 1", "Level 1 Aimed Shot", + "Aimed Shot Charge Level 1", "Qiqi", "Qiqi-Icy Resurrection", "Dance of Haftkarsvar", @@ -70,8 +70,8 @@ "3-Hit DMG", "3-Hit DMG-1", "3-Hit DMG-2", - "3-Hit DMG/2", "2-Hit DMG/2", + "3-Hit DMG/2", "C6 Additional 3", "3-Hit Swing DMG", "Shunsuiken 3-Hit DMG", @@ -212,14 +212,14 @@ "EM", "Elemental Mastery", "元素精通提升50点。触发燃烧、原激化、绽放反应后,队伍中附近的所有角色元素精通提升30点,持续6秒。触发超激化、蔓激化、超绽放、烈绽放反应后,队伍中附近的所有角色元素精通提升20点,持续6秒。以上效果的持续时间独立计算。", - "Increases Elemental Mastery by 80.", "Elemental Mastery +80.", + "Increases Elemental Mastery by 80.", "Elemental Mastery +80", "EM Valid", "EM Weight", "Energy Below 50%", - "Recharge Requirement", "Recharge demand", + "Recharge Requirement", "Lightfall Sword DMG", "Lightfall Sword Energy Stack", "Yae Miko", @@ -378,6 +378,7 @@ "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", "C2「Ceremony: Homecoming of Spirits」Stacks", "C2「Origins Known From the Stem」Ratio", "C2 Ratio", @@ -395,8 +396,8 @@ "Mocking Mask", "Dodoco Tales", "Ravaging Confession", - "4-Hit DMG/2", "4-Hit DMG", + "4-Hit DMG/2", "4-Hit DMG-1", "4-Hit DMG-2", "4-Hit DMG-3", @@ -427,8 +428,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.", - "Base DMG", "Basic DMG", + "Base DMG", "Under Windfavored State", "Under「Raging Oni King」", "Under「Suiyuu」", @@ -475,9 +476,12 @@ "Talent「Amatsumi Kunitsumi Sanctification」Apply Ratio", "Talent「Kanten Senmyou Blessing」Apply Ratio", "Talent 「A Craftsman's Curious Conceptions」 Stack", + "Talent 「Sophisticated Synergy」 Element Counts", + "Talent 「Sophisticated Synergy」 Ratio", "Talent「Aristocratic Dignity」Apply Ratio", "Talent「Keen Sight」Ratio", "Talent「Tricks of the Trouble-Maker」Apply Ratio", + "Talent 「Props Positively Prepped」 Ratio", "Talent「Conqueror of Evil: Tamer of Demons」Apply Stack", "Talent「Hunger」Apply Ratio", "Universal Diagnosis", @@ -577,8 +581,8 @@ "Use C4", "Use Talent「Regina Probationum」", "Apply Ratio", - "Rate", "Equivalent Rate of Effect", + "Rate", "Niwabi Enshou", "Opening a chest regenerates 30% Max HP over 5s.", "Otherworldly Story", @@ -587,6 +591,11 @@ "Slingshot", "Feather of Homecoming", "Skeletal Hat", + "Vivid Shot DMG", + "Vivid Shot DMG(Cryo)", + "Vivid Shot DMG(Hydro)", + "Vivid Shot DMG(Pyro)", + "Vivid Shot DMG(Electro)", "Guide to Afterlife", "Gyoei Narukami Kariyama Rite", "Illusory Heart", @@ -599,6 +608,7 @@ "Fell Dragon's Monocle", "Archaic Petra", "Archaic Petra 4", + "Bogglecat Box DMG", "Holistic Revivification", "Crown of Parting", "Electro-charge Ratio", @@ -645,8 +655,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 Coverage", "Shield Rate", + "Shield Coverage", "Floral Brush", "Picking up Mora restores 300 HP.", "When picked up, the Leaf will grant the character 60 Elemental Mastery for 12s", @@ -654,9 +664,9 @@ "DoT", "Continuous Regeneration Per Sec", "Continuous Regeneration", - "Continuous Regeneration", "HP Regeneration Over Time", "Continuous Healing", + "Continuous Regeneration", "Conductor's Top Hat", "DPS Yae Miko", "Swing DMG", @@ -841,6 +851,7 @@ "Normal Attack: Favonius Bladework - Edel", "Normal Attack: Favonius Bladework - Weiss", "Normal Attack: Spear of Favonius – Arrow’s Passage", + "Normal Attack: Rapid Ritesword", "Normal Attack: Swiftshatter Spear", "Normal Attack: Turnaround Shooter", "Normal Attack: The Classics of Acupuncture", @@ -1041,6 +1052,7 @@ "Wandering Evenstar", "Wanderer", "Wanderer-Eons Adrift", + "Surging Blade DMG", "Flowing Rings", "Dance of Abzendegi: Distant Dreams, Listening Spring", "Nereid's Ascension", @@ -1159,6 +1171,7 @@ "Aurous Blaze Explosion DMG", "Chisel-Light Mirror", "Vibrant Pinion", + "Lynette", "Jean", "Jean-「Lands of Dandelion」", "Jean-Dandelion Knight", @@ -1474,6 +1487,8 @@ "Chakra Desiderata Resolve", "Noelle", "Noelle-Chivalric Blossom", + "Enigma Thrust DMG", + "Enigmatic Feint", "Wilting Feast", "Wise Doctor's Pinion", "A Time of Insight", @@ -1561,12 +1576,12 @@ "Charged Attack-4 Scarlet Seals", "Charged Attack-No Scarlet Seals", "Charged Attack DMG", + "Charged DMG-1", "Charged Attack-1", "Charged Attack DMG-1", "Charnged DMG-1", - "Charged DMG-1", - "Charged Attack DMG-2", "Charged Attack-2", + "Charged Attack DMG-2", "Charnged DMG-2", "Charged DMG-2", "Charnged DMG-3", @@ -1730,6 +1745,7 @@ "Witch's Flower of Blaze", "Witch's End Time", "Magic Guide", + "Magic Trick: Astonishing Shift", "Masatsu Zetsugi: Akaushi Burst!", "Foul Legacy: Raging Tide", "Tengu Stormcall", diff --git a/src/i18n/generated/zh-cn.json b/src/i18n/generated/zh-cn.json index fc973076..7288e189 100644 --- a/src/i18n/generated/zh-cn.json +++ b/src/i18n/generated/zh-cn.json @@ -378,6 +378,7 @@ "命中敌人时自身攻击力提高3.2%-3.9%-4.6%-5.3%-6%,持续6秒,最高可以叠加7层。该效果每0.3秒最多触发一次。满层状态时伤害提升12%-15%-18%-21%-24%。", "命中治疗量", "命中治疗量", + "命中治疗量", "命座2「令仪·引谒归灵」等效层数", "命座2「由茎干剖析来缘」应用比例", "命座2「贯月的耀锋」比例", @@ -475,9 +476,12 @@ "天赋「天罪国罪镇词」应用比例", "天赋「寒天宣命祝词」应用比例", "天赋「工艺家的奇想」层数", + "天赋「巧施协同」不同元素类型", + "天赋「巧施协同」比例", "天赋「玉衡之贵」应用比例", "天赋「眼识殊明」应用比例", "天赋「袖火百景图」应用层数", + "天赋「道具完备」比例", "天赋「降魔·平妖大圣」应用层数", "天赋「饥饿」应用比例", "太素诊要", @@ -587,6 +591,11 @@ "弹弓", "归乡之羽", "形骸之笠", + "彩练术弹伤害", + "彩练术弹伤害(冰)", + "彩练术弹伤害(水)", + "彩练术弹伤害(火)", + "彩练术弹伤害(雷)", "彼岸蝶舞", "御咏鸣神刈山祭", "心景幻成", @@ -599,6 +608,7 @@ "恶龙的单片镜", "悠古的磐岩", "悠古的磐岩4", + "惊奇猫猫盒伤害", "愈气全形论", "感别之冠", "感电比例", @@ -841,6 +851,7 @@ "普通攻击·西风剑术·宗室", "普通攻击·西风剑术·白", "普通攻击·西风枪术·镝传", + "普通攻击·迅捷礼刺剑", "普通攻击·迅破枪势", "普通攻击·迴身箭术", "普通攻击·金匮针解", @@ -1041,6 +1052,7 @@ "流浪的晚星", "流浪者", "流浪者-久世浮倾", + "流涌之刃伤害", "浮溯之珏", "浮莲舞步·远梦聆泉", "海人化羽", @@ -1159,6 +1171,7 @@ "琉金火光爆炸伤害", "琢光镜", "琦色灵彩之羽", + "琳妮特", "琴", "琴-「蒲公英的国土」", "琴-蒲公英骑士", @@ -1474,6 +1487,8 @@ "诸愿百眼之愿力层数", "诺艾尔", "诺艾尔-未授勋之花", + "谜影突刺伤害", + "谜影障身法", "谢落的筵席", "贤医之羽", "贤智的定期", @@ -1730,6 +1745,7 @@ "魔女的炎之花", "魔女破灭之时", "魔导绪论", + "魔术·运变惊奇", "魔杀绝技•赤牛发破!", "魔王武装·狂澜", "鸦羽天狗霆雷召咒", diff --git a/src/images/characters/Lynette_splash.png b/src/images/characters/Lynette_splash.png new file mode 100644 index 0000000000000000000000000000000000000000..a563c175602850fe6778df7de4503fd461cecc57 GIT binary patch literal 41176 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

qG>jnW8pC80uVj0c*$c;f?hj3+=^gjArbkFbZO# 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 Date: Fri, 18 Aug 2023 11:36:52 +0800 Subject: [PATCH 3/7] feat(4.0): Add Lyney --- mona_core/src/character/character_config.rs | 1 + mona_core/src/character/character_name.rs | 1 + .../src/character/characters/pyro/lyney.rs | 302 ++++++++++++++++++ .../src/character/characters/pyro/mod.rs | 2 + mona_core/src/character/skill_config.rs | 1 + .../target_functions/target_function_name.rs | 1 + .../target_functions/pyro/lyney_default.rs | 69 ++++ .../target_functions/pyro/mod.rs | 2 + src/images/characters/Lyney_splash.png | Bin 0 -> 42476 bytes 9 files changed, 379 insertions(+) create mode 100644 mona_core/src/character/characters/pyro/lyney.rs create mode 100644 mona_core/src/target_functions/target_functions/pyro/lyney_default.rs create mode 100644 src/images/characters/Lyney_splash.png diff --git a/mona_core/src/character/character_config.rs b/mona_core/src/character/character_config.rs index 56374397..cc64eda9 100644 --- a/mona_core/src/character/character_config.rs +++ b/mona_core/src/character/character_config.rs @@ -26,5 +26,6 @@ pub enum CharacterConfig { Baizhu { hp_below_50: bool }, Lynette { talent1_rate: f64, talent1_count: usize, talent2_rate: f64 }, Freminet { c4_stack: f64, c6_stack: f64 }, + Lyney { c2_stack: f64, c4_rate: f64 }, NoConfig, } \ No newline at end of file diff --git a/mona_core/src/character/character_name.rs b/mona_core/src/character/character_name.rs index 230b0054..bd916685 100644 --- a/mona_core/src/character/character_name.rs +++ b/mona_core/src/character/character_name.rs @@ -64,6 +64,7 @@ pub enum CharacterName { Layla, Lisa, Lynette, + Lyney, Mona, Nahida, Nilou, diff --git a/mona_core/src/character/characters/pyro/lyney.rs b/mona_core/src/character/characters/pyro/lyney.rs new file mode 100644 index 00000000..ce855543 --- /dev/null +++ b/mona_core/src/character/characters/pyro/lyney.rs @@ -0,0 +1,302 @@ +use crate::attribute::{Attribute, AttributeName, AttributeCommon}; +use crate::character::{CharacterConfig, CharacterName, CharacterStaticData}; +use crate::character::character_common_data::CharacterCommonData; +use crate::character::character_sub_stat::CharacterSubStatFamily; +use crate::character::macros::{damage_enum, damage_ratio, skill_map, skill_type}; +use crate::character::skill_config::CharacterSkillConfig; +use crate::character::traits::{CharacterSkillMap, CharacterSkillMapItem, CharacterTrait}; +use crate::common::{ChangeAttribute, Element, SkillType, StatName, WeaponType}; +use crate::common::i18n::{locale, hit_n_dmg, plunging_dmg, charged_dmg}; +use crate::common::item_config_type::{ItemConfig, ItemConfigType}; +use crate::damage::damage_builder::DamageBuilder; +use crate::damage::DamageContext; +use crate::target_functions::TargetFunction; +use crate::team::TeamQuantization; +use crate::weapon::weapon_common_data::WeaponCommonData; + +pub struct LyneySkillType { + pub normal_dmg1: [f64; 15], + pub normal_dmg2: [f64; 15], + pub normal_dmg3: [f64; 15], + pub normal_dmg4: [f64; 15], + pub plunging_dmg1: [f64; 15], + pub plunging_dmg2: [f64; 15], + pub plunging_dmg3: [f64; 15], + pub charged_dmg1: [f64; 15], + pub charged_dmg2: [f64; 15], + pub charged_dmg3: [f64; 15], + pub a_hp_inheritance: [f64; 15], + pub a_dmg1: [f64; 15], + pub a_dmg2: [f64; 15], + + pub e_dmg1: [f64; 15], + pub e_dmg2: [f64; 15], + + pub q_dmg1: [f64; 15], + pub q_dmg2: [f64; 15], +} + +pub const LYNEY_SKILL: LyneySkillType = LyneySkillType { + normal_dmg1: [0.3879, 0.4194, 0.451, 0.4961, 0.5277, 0.5638, 0.6134, 0.663, 0.7126, 0.7667, 0.8208, 0.8749, 0.9291, 0.9832, 1.0373], + normal_dmg2: [0.3801, 0.4111, 0.442, 0.4862, 0.5171, 0.5525, 0.6011, 0.6497, 0.6984, 0.7514, 0.8044, 0.8575, 0.9105, 0.9636, 1.0166], + normal_dmg3: [0.2726, 0.2948, 0.317, 0.3487, 0.3709, 0.3963, 0.4311, 0.466, 0.5009, 0.5389, 0.5769, 0.615, 0.653, 0.6911, 0.7291], + normal_dmg4: [0.5693, 0.6157, 0.662, 0.7282, 0.7745, 0.8275, 0.9003, 0.9731, 1.046, 1.1254, 1.2048, 1.2843, 1.3637, 1.4432, 1.5226], + plunging_dmg1: [0.5683, 0.6145, 0.6608, 0.7269, 0.7731, 0.826, 0.8987, 0.9714, 1.0441, 1.1234, 1.2027, 1.282, 1.3612, 1.4405, 1.5198], + plunging_dmg2: [1.1363, 1.2288, 1.3213, 1.4535, 1.5459, 1.6516, 1.797, 1.9423, 2.0877, 2.2462, 2.4048, 2.5634, 2.7219, 2.8805, 3.039], + plunging_dmg3: [1.4193, 1.5349, 1.6504, 1.8154, 1.931, 2.063, 2.2445, 2.4261, 2.6076, 2.8057, 3.0037, 3.2018, 3.3998, 3.5979, 3.7959], + charged_dmg1: [0.4386, 0.4743, 0.51, 0.561, 0.5967, 0.6375, 0.6936, 0.7497, 0.8058, 0.867, 0.9282, 0.9894, 1.0506, 1.1118, 1.173], + charged_dmg2: [1.24, 1.333, 1.426, 1.55, 1.643, 1.736, 1.86, 1.984, 2.108, 2.232, 2.356, 2.48, 2.635, 2.79, 2.945], + charged_dmg3: [1.728, 1.8576, 1.9872, 2.16, 2.2896, 2.4192, 2.592, 2.7648, 2.9376, 3.1104, 3.2832, 3.456, 3.672, 3.888, 4.104], + a_hp_inheritance: [0.64, 0.688, 0.736, 0.8, 0.848, 0.896, 0.96, 1.024, 1.088, 1.152, 1.216, 1.28, 1.36, 1.44, 1.52], + a_dmg1: [2.12, 2.279, 2.438, 2.65, 2.809, 2.968, 3.18, 3.392, 3.604, 3.816, 4.028, 4.24, 4.505, 4.77, 5.035], + a_dmg2: [0.2755, 0.2962, 0.3168, 0.3444, 0.3651, 0.3857, 0.4133, 0.4408, 0.4684, 0.4959, 0.5235, 0.551, 0.5855, 0.6199, 0.6544], + e_dmg1: [1.672, 1.7974, 1.9228, 2.09, 2.2154, 2.3408, 2.508, 2.6752, 2.8424, 3.0096, 3.1768, 3.344, 3.553, 3.762, 3.971], + e_dmg2: [0.532, 0.5719, 0.6118, 0.665, 0.7049, 0.7448, 0.798, 0.8512, 0.9044, 0.9576, 1.0108, 1.064, 1.1305, 1.197, 1.2635], + q_dmg1: [1.54, 1.6555, 1.771, 1.925, 2.0405, 2.156, 2.31, 2.464, 2.618, 2.772, 2.926, 3.08, 3.2725, 3.465, 3.6575], + q_dmg2: [4.14, 4.4505, 4.761, 5.175, 5.4855, 5.796, 6.21, 6.624, 7.038, 7.452, 7.866, 8.28, 8.7975, 9.315, 9.8325], +}; + +damage_enum!( + LyneyDamageEnum + Normal1 + Normal2 + Normal3 + Normal4 + Charged1 + Charged2 + Charged3 + Plunging1 + Plunging2 + Plunging3 + A1 + A2 + E1 + Q1 + Q2 +); + +impl LyneyDamageEnum { + pub fn get_element(&self) -> Element { + use LyneyDamageEnum::*; + match *self { + Normal1 | Normal2 | Normal3 | Normal4 | Plunging1 | Plunging2 | Plunging3 | + Charged1 => Element::Physical, + Charged2 | Charged3 | A1 | A2 | E1 | Q1 | Q2 => Element::Pyro + } + } + + pub fn get_skill_type(&self) -> SkillType { + use LyneyDamageEnum::*; + match *self { + Normal1 | Normal2 | Normal3 | Normal4 => SkillType::NormalAttack, + Plunging1 | Plunging2 | Plunging3 => SkillType::PlungingAttack, + Charged1 | Charged2 | Charged3 | A1 | A2 => SkillType::ChargedAttack, + E1 => SkillType::ElementalSkill, + Q1 | Q2 => SkillType::ElementalBurst, + } + } +} + +pub struct LyneyEffect { + pub constellation: usize, + pub c2_stack: f64, + pub c4_rate: f64, +} + +impl ChangeAttribute for LyneyEffect { + fn change_attribute(&self, attribute: &mut A) { + if self.constellation >= 2 { + let value = 0.2 * self.c2_stack; + attribute.set_value_by(AttributeName::CriticalDamageBase, "2命「巧言贴耳的诱引」", value); + } + if self.constellation >= 4 { + let value = 0.2 * self.c4_rate; + attribute.set_value_by(AttributeName::ResMinusPyro, "4命「熟稔习练的筹谋」", value); + } + } +} + +pub struct Lyney; + +impl CharacterTrait for Lyney { + const STATIC_DATA: CharacterStaticData = CharacterStaticData { + name: CharacterName::Lyney, + internal_name: "Lyney", // todo + name_locale: locale!( + zh_cn: "林尼", + en: "Lyney" + ), + element: Element::Pyro, + hp: [858, 2226, 2961, 4431, 4954, 5699, 6396, 7150, 7672, 8432, 8955, 9724, 10247, 11021], + atk: [25, 64, 85, 128, 143, 165, 185, 206, 221, 243, 258, 281, 296, 318], + def: [42, 109, 145, 216, 242, 278, 312, 349, 375, 412, 437, 475, 500, 538], + sub_stat: CharacterSubStatFamily::CriticalRate192, + weapon_type: WeaponType::Bow, + star: 5, + skill_name1: locale!( + zh_cn: "普通攻击·迫牌易位式", + en: "Normal Attack: Card Force Translocation" + ), + skill_name2: locale!( + zh_cn: "眩惑光戏法", + en: "Bewildering Lights" + ), + skill_name3: locale!( + zh_cn: "大魔术·灵迹巡游", + en: "Wondrous Trick: Miracle Parade" + ) + }; + type SkillType = LyneySkillType; + const SKILL: Self::SkillType = LYNEY_SKILL; + type DamageEnumType = LyneyDamageEnum; + type RoleEnum = (); + + #[cfg(not(target_family = "wasm"))] + const SKILL_MAP: CharacterSkillMap = CharacterSkillMap { + skill1: skill_map!( + LyneyDamageEnum + Normal1 hit_n_dmg!(1) + Normal2 hit_n_dmg!(2) + Normal3 locale!(zh_cn: "三段伤害/2", en: "3-Hit DMG/2") + Normal4 hit_n_dmg!(4) + Charged1 locale!(zh_cn: "瞄准射击", en: "Aimed Shot") + Charged2 locale!(zh_cn: "一段蓄力瞄准射击", en: "Aimed Shot Charge Level 1") + Charged3 locale!(zh_cn: "隐具魔术箭伤害", en: "Prop Arrow DMG") + Plunging1 plunging_dmg!(1) + Plunging2 plunging_dmg!(2) + Plunging3 plunging_dmg!(3) + A1 locale!(zh_cn: "礼花术弹伤害", en: "Pyrotechnic Strike DMG") + A2 locale!(zh_cn: "灵息之刺伤害", en: "Spiritbreath Thorn DMG") + ), + skill2: skill_map!( + LyneyDamageEnum + E1 locale!(zh_cn: "技能伤害", en: "Skill DMG") + ), + skill3: skill_map!( + LyneyDamageEnum + Q1 locale!(zh_cn: "技能伤害", en: "Skill DMG") + Q2 locale!(zh_cn: "引爆礼花伤害", en: "Explosive Firework DMG") + ) + }; + + #[cfg(not(target_family = "wasm"))] + const CONFIG_DATA: Option<&'static [ItemConfig]> = Some(&[ + ItemConfig { + name: "c2_stack", + title: locale!( + zh_cn: "2命「巧言贴耳的诱引」层数", + en: "C2「Loquacious Cajoling」Stack", + ), + config: ItemConfigType::Float { min: 0.0, max: 3.0, default: 0.0 } + }, + ItemConfig { + name: "c4_rate", + title: locale!( + zh_cn: "4命「熟稔习练的筹谋」比例", + en: "C4「Well-Versed, Well-Rehearsed」Rate" + ), + config: ItemConfigType::Float { min: 0.0, max: 1.0, default: 0.0 } + } + ]); + + #[cfg(not(target_family = "wasm"))] + const CONFIG_SKILL: Option<&'static [ItemConfig]> = Some(&[ + ItemConfig { + name: "prop_stack", + title: locale!( + zh_cn: "隐具余数", + en: "Prop Surplus stacks" + ), + config: ItemConfigType::Float { min: 0.0, max: 5.0, default: 0.0 } + }, + ItemConfig { + name: "under_pyro", + title: locale!( + zh_cn: "敌人被挂火", + en: "Under Pyro" + ), + config: ItemConfigType::Bool { default: false } + }, + ItemConfig { + name: "pyro_count", + title: locale!( + zh_cn: "队伍火元素数(除林尼)", + en: "Pyro Count in Team (Lyney Excluded)" + ), + config: ItemConfigType::Int { min: 0, max: 3, default: 1 } + } + ]); + + fn damage_internal(context: &DamageContext<'_, D::AttributeType>, s: usize, config: &CharacterSkillConfig, fumo: Option) -> D::Result { + let s: LyneyDamageEnum = num::FromPrimitive::from_usize(s).unwrap(); + let (s1, s2, s3) = context.character_common_data.get_3_skill(); + + use LyneyDamageEnum::*; + + let mut builder = D::new(); + let mut ratio = match s { + Normal1 => LYNEY_SKILL.normal_dmg1[s1], + Normal2 => LYNEY_SKILL.normal_dmg2[s1], + Normal3 => LYNEY_SKILL.normal_dmg3[s1], + Normal4 => LYNEY_SKILL.normal_dmg4[s1], + Charged1 => LYNEY_SKILL.charged_dmg1[s1], + Charged2 => LYNEY_SKILL.charged_dmg2[s1], + Charged3 => LYNEY_SKILL.charged_dmg3[s1], + Plunging1 => LYNEY_SKILL.plunging_dmg1[s1], + Plunging2 => LYNEY_SKILL.plunging_dmg2[s1], + Plunging3 => LYNEY_SKILL.plunging_dmg3[s1], + A1 => LYNEY_SKILL.a_dmg1[s1], + A2 => LYNEY_SKILL.a_dmg2[s1], + E1 => LYNEY_SKILL.e_dmg1[s2], + Q1 => LYNEY_SKILL.q_dmg1[s3], + Q2 => LYNEY_SKILL.q_dmg2[s3], + }; + + let (prop_stack, under_pyro, pyro_count) = match *config { + CharacterSkillConfig::Lyney { prop_stack, under_pyro, pyro_count } => ( + prop_stack, under_pyro, pyro_count + ), + _ => (0.0, false, 0) + }; + + if s == E1 { + ratio += LYNEY_SKILL.e_dmg2[s2] * prop_stack; + } + + builder.add_atk_ratio("技能倍率", ratio); + if context.character_common_data.has_talent1 && s == Charged3 { + builder.add_atk_ratio("天赋1「」惊险演出", 0.8); + } + + if context.character_common_data.has_talent2 && under_pyro { + let mut bonus = 0.6; + bonus += pyro_count as f64 * 0.2; + bonus = bonus.min(1.0); + builder.add_atk_ratio("天赋2「完场喝彩」", bonus); + } + + builder.damage( + &context.attribute, + &context.enemy, + s.get_element(), + s.get_skill_type(), + context.character_common_data.level, + fumo + ) + } + + fn new_effect(common_data: &CharacterCommonData, config: &CharacterConfig) -> Option>> { + let (c2_stack, c4_rate) = match *config { + CharacterConfig::Lyney { c2_stack, c4_rate } => (c2_stack, c4_rate), + _ => (0.0, 0.0) + }; + Some(Box::new(LyneyEffect { + c2_stack, c4_rate, + constellation: common_data.constellation as usize + })) + } + + fn get_target_function_by_role(role_index: usize, team: &TeamQuantization, c: &CharacterCommonData, w: &WeaponCommonData) -> Box { + unimplemented!() + } +} diff --git a/mona_core/src/character/characters/pyro/mod.rs b/mona_core/src/character/characters/pyro/mod.rs index 23c5c773..f6f59d63 100644 --- a/mona_core/src/character/characters/pyro/mod.rs +++ b/mona_core/src/character/characters/pyro/mod.rs @@ -9,6 +9,7 @@ pub mod xinyan; pub mod yanfei; pub mod yoimiya; pub mod dehya; +pub mod lyney; pub use amber::Amber; pub use bennett::Bennett; @@ -21,3 +22,4 @@ pub use xinyan::Xinyan; pub use yanfei::Yanfei; pub use yoimiya::Yoimiya; pub use dehya::Dehya; +pub use lyney::Lyney; diff --git a/mona_core/src/character/skill_config.rs b/mona_core/src/character/skill_config.rs index cb25e4c0..a41822f2 100644 --- a/mona_core/src/character/skill_config.rs +++ b/mona_core/src/character/skill_config.rs @@ -40,5 +40,6 @@ pub enum CharacterSkillConfig { Dehya { c2_rate: f64, c6_stack: f64 }, Kaveh { after_q: bool }, Freminet { talent2_rate: f64 }, + Lyney { prop_stack: f64, under_pyro: bool, pyro_count: usize, }, NoConfig, } diff --git a/mona_core/src/target_functions/target_function_name.rs b/mona_core/src/target_functions/target_function_name.rs index 57840b44..7c1728fa 100644 --- a/mona_core/src/target_functions/target_function_name.rs +++ b/mona_core/src/target_functions/target_function_name.rs @@ -90,4 +90,5 @@ pub enum TargetFunctionName { DehyaDefault, MikaDefault, FreminetDefault, + LyneyDefault, } diff --git a/mona_core/src/target_functions/target_functions/pyro/lyney_default.rs b/mona_core/src/target_functions/target_functions/pyro/lyney_default.rs new file mode 100644 index 00000000..c5500460 --- /dev/null +++ b/mona_core/src/target_functions/target_functions/pyro/lyney_default.rs @@ -0,0 +1,69 @@ +use crate::artifacts::Artifact; +use crate::artifacts::effect_config::ArtifactEffectConfig; +use crate::attribute::SimpleAttributeGraph2; +use crate::character::character_common_data::CharacterCommonData; +use crate::character::{Character, CharacterName}; +use crate::character::characters::Lyney; +use crate::character::skill_config::CharacterSkillConfig; +use crate::character::traits::CharacterTrait; +use crate::common::i18n::locale; +use crate::damage::{DamageContext, SimpleDamageBuilder}; +use crate::enemies::Enemy; +use crate::target_functions::target_function::TargetFunctionMetaTrait; +use crate::target_functions::target_function_meta::{TargetFunctionFor, TargetFunctionMeta, TargetFunctionMetaImage}; +use crate::target_functions::{TargetFunction, TargetFunctionConfig, TargetFunctionName}; +use crate::target_functions::target_function_opt_config::TargetFunctionOptConfig; +use crate::team::TeamQuantization; +use crate::weapon::Weapon; +use crate::weapon::weapon_common_data::WeaponCommonData; + +pub struct LyneyDefaultTargetFunction; + +impl TargetFunction for LyneyDefaultTargetFunction { + fn get_target_function_opt_config(&self) -> TargetFunctionOptConfig { + unimplemented!() + } + + fn get_default_artifact_config(&self, team_config: &TeamQuantization) -> ArtifactEffectConfig { + Default::default() + } + + fn target(&self, attribute: &SimpleAttributeGraph2, character: &Character, weapon: &Weapon, artifacts: &[&Artifact], enemy: &Enemy) -> f64 { + let context: DamageContext<'_, SimpleAttributeGraph2> = DamageContext { + character_common_data: &character.common_data, + attribute, + enemy, + }; + + type S = ::DamageEnumType; + let damage = Lyney::damage::(&context, S::A1, &CharacterSkillConfig::Lyney { + prop_stack: 5.0, + under_pyro: true, + pyro_count: 1 + }, None); + + damage.normal.expectation + } +} + +impl TargetFunctionMetaTrait for LyneyDefaultTargetFunction { + #[cfg(not(target_family = "wasm"))] + const META_DATA: TargetFunctionMeta = TargetFunctionMeta { + name: TargetFunctionName::LyneyDefault, + name_locale: locale!( + zh_cn: "林尼-惑光幻戏", + en: "Lyney- Spectacle of Phantasmagoria" + ), + description: locale!( + zh_cn: "普通输出林尼", + en: "DPS Lyney" + ), + tags: "", + four: TargetFunctionFor::SomeWho(CharacterName::Lyney), + image: TargetFunctionMetaImage::Avatar + }; + + fn create(character: &CharacterCommonData, weapon: &WeaponCommonData, config: &TargetFunctionConfig) -> Box { + Box::new(LyneyDefaultTargetFunction) + } +} \ No newline at end of file diff --git a/mona_core/src/target_functions/target_functions/pyro/mod.rs b/mona_core/src/target_functions/target_functions/pyro/mod.rs index 4db8789c..d12b2c13 100644 --- a/mona_core/src/target_functions/target_functions/pyro/mod.rs +++ b/mona_core/src/target_functions/target_functions/pyro/mod.rs @@ -11,6 +11,7 @@ pub mod xinyan_default; pub mod yanfei_default; pub mod yoimiya_default; pub mod dehya_default; +pub mod lyney_default; pub use amber_default::AmberDefaultTargetFunction; pub use bennett_damage::BennettDamageTargetFunction; @@ -25,3 +26,4 @@ pub use xinyan_default::XinyanDefaultTargetFunction; pub use yanfei_default::YanfeiDefaultTargetFunction; pub use yoimiya_default::YoimiyaDefaultTargetFunction; pub use dehya_default::DehyaDefaultTargetFunction; +pub use lyney_default::LyneyDefaultTargetFunction; diff --git a/src/images/characters/Lyney_splash.png b/src/images/characters/Lyney_splash.png new file mode 100644 index 0000000000000000000000000000000000000000..d73870d0b1139b05d8ac1398353be4ab1cde3ef6 GIT binary patch literal 42476 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�{#joBsja~h4DD=z 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 u&j_mKwguN)N#Js= Date: Fri, 18 Aug 2023 17:12:01 +0800 Subject: [PATCH 4/7] feat(4.0): Add several weapons --- mona_core/src/weapon/weapon_config.rs | 5 + mona_core/src/weapon/weapon_name.rs | 5 + mona_core/src/weapon/weapon_sub_stat.rs | 3 + mona_core/src/weapon/weapons/bows/mod.rs | 2 + .../weapons/bows/the_first_great_magic.rs | 83 + mona_core/src/weapon/weapons/claymores/mod.rs | 2 + .../weapon/weapons/claymores/talking_stick.rs | 79 + .../weapons/swords/finale_of_the_deep.rs | 89 + .../weapons/swords/fleuve_cendre_ferryman.rs | 62 + mona_core/src/weapon/weapons/swords/mod.rs | 6 + .../src/weapon/weapons/swords/wolf_fang.rs | 88 + src/assets/_gen_artifact.js | 746 ++--- src/assets/_gen_buff.js | 594 ++-- src/assets/_gen_character.js | 2856 +++++++++-------- src/assets/_gen_pf.js | 40 +- src/assets/_gen_tf.js | 546 ++-- src/assets/_gen_weapon.js | 916 +++--- src/i18n/generated/en.json | 68 +- src/i18n/generated/zh-cn.json | 32 + 19 files changed, 3461 insertions(+), 2761 deletions(-) create mode 100644 mona_core/src/weapon/weapons/bows/the_first_great_magic.rs create mode 100644 mona_core/src/weapon/weapons/claymores/talking_stick.rs create mode 100644 mona_core/src/weapon/weapons/swords/finale_of_the_deep.rs create mode 100644 mona_core/src/weapon/weapons/swords/fleuve_cendre_ferryman.rs create mode 100644 mona_core/src/weapon/weapons/swords/wolf_fang.rs diff --git a/mona_core/src/weapon/weapon_config.rs b/mona_core/src/weapon/weapon_config.rs index d3b0be9f..9506522c 100644 --- a/mona_core/src/weapon/weapon_config.rs +++ b/mona_core/src/weapon/weapon_config.rs @@ -25,6 +25,9 @@ pub enum WeaponConfig { KeyOfKhajNisut { stack: f64 }, ToukabouShigure { rate: f64 }, LightOfFoliarIncision { rate: f64 }, + WolfFang { e_stack: f64, q_stack: f64 }, + FinaleOfTheDeep { rate1: f64, rate2: f64 }, + FleuveCendreFerryman { rate: f64 }, // claymore WolfsGravestone { rate: f64 }, @@ -44,6 +47,7 @@ pub enum WeaponConfig { MakhairaAquamarine { rate: f64 }, BeaconOfTheReedSea { rate_atk: f64, rate_hp: f64 }, MailedFlower { rate: f64 }, + TalkingStick { rate1: f64, rate2: f64 }, // Polearm EngulfingLightning { rate: f64 }, @@ -104,6 +108,7 @@ pub enum WeaponConfig { HuntersPath { rate: f64 }, KingsSquire { rate: f64 }, IbisPiercer { stack: f64 }, + TheFirstGreatMagic { same_count: f64, diff_count: f64 }, } impl Default for WeaponConfig { diff --git a/mona_core/src/weapon/weapon_name.rs b/mona_core/src/weapon/weapon_name.rs index 89424b17..27009593 100644 --- a/mona_core/src/weapon/weapon_name.rs +++ b/mona_core/src/weapon/weapon_name.rs @@ -48,6 +48,9 @@ pub enum WeaponName { KeyOfKhajNisut, ToukabouShigure, LightOfFoliarIncision, + WolfFang, + FinaleOfTheDeep, + FleuveCendreFerryman, // claymore WolfsGravestone, @@ -80,6 +83,7 @@ pub enum WeaponName { MakhairaAquamarine, BeaconOfTheReedSea, MailedFlower, + TalkingStick, // polearm EngulfingLightning, @@ -176,4 +180,5 @@ pub enum WeaponName { Trawler, KingsSquire, IbisPiercer, + TheFirstGreatMagic, } diff --git a/mona_core/src/weapon/weapon_sub_stat.rs b/mona_core/src/weapon/weapon_sub_stat.rs index 45ba2e2d..fe92dd2c 100644 --- a/mona_core/src/weapon/weapon_sub_stat.rs +++ b/mona_core/src/weapon/weapon_sub_stat.rs @@ -22,6 +22,7 @@ pub enum WeaponSubStatFamily { CriticalDamage192, CriticalRate34, + CriticalRate40, CriticalRate48, CriticalRate51, CriticalRate60, @@ -88,6 +89,7 @@ pub fn get_stat_name_from_family(family: WeaponSubStatFamily) -> StatName { WeaponSubStatFamily::CriticalDamage192 => StatName::CriticalDamage, WeaponSubStatFamily::CriticalRate34 => StatName::CriticalRate, + WeaponSubStatFamily::CriticalRate40 => StatName::CriticalRate, WeaponSubStatFamily::CriticalRate48 => StatName::CriticalRate, WeaponSubStatFamily::CriticalRate51 => StatName::CriticalRate, WeaponSubStatFamily::CriticalRate60 => StatName::CriticalRate, @@ -155,6 +157,7 @@ pub fn get_value_array(family: WeaponSubStatFamily) -> [f64; 8] { WeaponSubStatFamily::CriticalDamage192 => [0.192, 0.339, 0.494, 0.572, 0.65, 0.727, 0.804, 0.882], WeaponSubStatFamily::CriticalRate34 => [0.034, 0.06, 0.088, 0.101, 0.115, 0.129, 0.142, 0.156], + WeaponSubStatFamily::CriticalRate40 => [0.04, 0.0707, 0.103, 0.1192, 0.1353, 0.1514, 0.1676, 0.1838], WeaponSubStatFamily::CriticalRate48 => [0.048, 0.085, 0.124, 0.143, 0.162, 0.182, 0.201, 0.221], WeaponSubStatFamily::CriticalRate51 => [0.051, 0.09, 0.131, 0.152, 0.173, 0.193, 0.201, 0.221], WeaponSubStatFamily::CriticalRate60 => [0.06, 0.106, 0.155, 0.179, 0.203, 0.227, 0.251, 0.276], diff --git a/mona_core/src/weapon/weapons/bows/mod.rs b/mona_core/src/weapon/weapons/bows/mod.rs index bf8e040f..cd6633d8 100644 --- a/mona_core/src/weapon/weapons/bows/mod.rs +++ b/mona_core/src/weapon/weapons/bows/mod.rs @@ -31,6 +31,7 @@ pub use hunters_path::HuntersPath; pub use trawler::Trawler; pub use kings_squire::KingsSquire; pub use ibis_piercer::IbisPiercer; +pub use the_first_great_magic::TheFirstGreatMagic; pub mod polar_star; pub mod thundering_pulse; @@ -65,3 +66,4 @@ pub mod hunters_path; pub mod trawler; pub mod kings_squire; pub mod ibis_piercer; +pub mod the_first_great_magic; diff --git a/mona_core/src/weapon/weapons/bows/the_first_great_magic.rs b/mona_core/src/weapon/weapons/bows/the_first_great_magic.rs new file mode 100644 index 00000000..65973a0e --- /dev/null +++ b/mona_core/src/weapon/weapons/bows/the_first_great_magic.rs @@ -0,0 +1,83 @@ +use crate::attribute::{Attribute, AttributeName, AttributeCommon}; +use crate::character::character_common_data::CharacterCommonData; +use crate::common::i18n::locale; +use crate::common::item_config_type::{ItemConfig, ItemConfigType}; +use crate::common::WeaponType; +use crate::weapon::weapon_common_data::WeaponCommonData; +use crate::weapon::weapon_effect::WeaponEffect; +use crate::weapon::weapon_static_data::WeaponStaticData; +use crate::weapon::weapon_trait::WeaponTrait; +use crate::weapon::{WeaponConfig, WeaponName}; +use crate::weapon::weapon_base_atk::WeaponBaseATKFamily; +use crate::weapon::weapon_sub_stat::WeaponSubStatFamily; + +pub struct TheFirstGreatMagicEffect { + pub diff_count: f64, + pub same_count: f64, +} + +impl WeaponEffect for TheFirstGreatMagicEffect { + fn apply(&self, data: &WeaponCommonData, attribute: &mut A) { + let refine = data.refine as f64; + + attribute.set_value_by(AttributeName::BonusChargedAttack, "最初的大魔术被动", 0.04 * refine + 0.12); + if self.diff_count > 0.0 { + let interval = 0.04 * refine + 0.12; + attribute.add_atk_percentage("最初的大魔术被动", self.same_count * interval); + } + } +} + +pub struct TheFirstGreatMagic; + +impl WeaponTrait for TheFirstGreatMagic { + const META_DATA: WeaponStaticData = WeaponStaticData { + name: WeaponName::TheFirstGreatMagic, + internal_name: "Bow_Pledge", + weapon_type: WeaponType::Bow, + weapon_sub_stat: Some(WeaponSubStatFamily::CriticalDamage144), + weapon_base: WeaponBaseATKFamily::ATK608, + star: 5, + #[cfg(not(target_family = "wasm"))] + effect: Some(locale!( + zh_cn: "重击造成的伤害提升16%-20%-24%-28%-32%;队伍中每存在一位与装备者元素类型相同的角色(包括装备者自身),将获得1层「手法」效果;每存在一位元素类型不同的角色,将获得1层「演技」效果。处于1/2/3层及以上「手法」效果下时,攻击力提升16%-20%-24%-28%-32%/32%-40%-48%-56%-64%/48%-60%-72%-84%-96%;处于1/2/3层及以上「演技」效果下时,移动速度提升4%-6%-8%-10%-12%/7%-9%-11%-13%-15%/10%-12%-14%-16%-18%。", + en: "DMG dealt by Charged Attacks increased by 16%-20%-24%-28%-32%. For every party member with the same Elemental Type as the wielder (including the wielder themselves), gain 1 Gimmick stack. For every party member with a different Elemental Type from the wielder, gain 1 Theatrics stack. When the wielder has 1/2/3 or more Gimmick stacks, ATK will be increased by 16%-20%-24%-28%-32%/32%-40%-48%-56%-64%/48%-60%-72%-84%-96%. When the wielder has 1/2/3 or more Theatrics stacks, Movement SPD will be increased by 4%-6%-8%-10%-12%/7%-9%-11%-13%-15%/10%-12%-14%-16%-18%." + )), + #[cfg(not(target_family = "wasm"))] + name_locale: locale!( + zh_cn: "最初的大魔术", + en: "The First Great Magic" + ) + }; + + #[cfg(not(target_family = "wasm"))] + const CONFIG_DATA: Option<&'static [ItemConfig]> = Some(&[ + ItemConfig { + name: "same_count", + title: locale!( + zh_cn: "队伍同元素数量", + en: "Same Element Number" + ), + config: ItemConfigType::Float { min: 0.0, max: 3.0, default: 1.0 } + }, + ItemConfig { + name: "diff_count", + title: locale!( + zh_cn: "队伍不同元素数量", + en: "Diff Element Number" + ), + config: ItemConfigType::Float { min: 0.0, max: 3.0, default: 0.0 } + } + ]); + + fn get_effect(character: &CharacterCommonData, config: &WeaponConfig) -> Option>> { + let (a, b) = match *config { + WeaponConfig::TheFirstGreatMagic { diff_count, same_count } => (diff_count, same_count), + _ => (0.0, 0.0) + }; + Some(Box::new(TheFirstGreatMagicEffect { + diff_count: a, + same_count: b + })) + } +} diff --git a/mona_core/src/weapon/weapons/claymores/mod.rs b/mona_core/src/weapon/weapons/claymores/mod.rs index a979c0c6..b336042b 100644 --- a/mona_core/src/weapon/weapons/claymores/mod.rs +++ b/mona_core/src/weapon/weapons/claymores/mod.rs @@ -28,6 +28,7 @@ pub use forest_regalia::ForestRegalia; pub use makhaira_aquamarine::MakhairaAquamarine; pub use beacon_of_the_reed_sea::BeaconOfTheReedSea; pub use mailed_flower::MailedFlower; +pub use talking_stick::TalkingStick; pub mod wolfs_gravestone; pub mod skyward_pride; @@ -59,3 +60,4 @@ pub mod forest_regalia; pub mod makhaira_aquamarine; pub mod beacon_of_the_reed_sea; pub mod mailed_flower; +pub mod talking_stick; diff --git a/mona_core/src/weapon/weapons/claymores/talking_stick.rs b/mona_core/src/weapon/weapons/claymores/talking_stick.rs new file mode 100644 index 00000000..7f948d00 --- /dev/null +++ b/mona_core/src/weapon/weapons/claymores/talking_stick.rs @@ -0,0 +1,79 @@ +use crate::attribute::{Attribute, AttributeCommon}; +use crate::character::character_common_data::CharacterCommonData; +use crate::common::i18n::locale; +use crate::common::item_config_type::{ItemConfig, ItemConfigType}; +use crate::common::WeaponType; +use crate::weapon::weapon_common_data::WeaponCommonData; +use crate::weapon::weapon_effect::WeaponEffect; +use crate::weapon::weapon_static_data::WeaponStaticData; +use crate::weapon::weapon_trait::WeaponTrait; +use crate::weapon::{WeaponConfig, WeaponName}; +use crate::weapon::weapon_base_atk::WeaponBaseATKFamily; +use crate::weapon::weapon_sub_stat::WeaponSubStatFamily; + +pub struct TalkingStickEffect { + pub rate1: f64, + pub rate2: f64 +} + +impl WeaponEffect for TalkingStickEffect { + fn apply(&self, data: &WeaponCommonData, attribute: &mut A) { + let refine = data.refine as f64; + attribute.add_atk_percentage("聊聊棒被动", (0.04 * refine + 0.12) * self.rate1); + attribute.add_elemental_bonus("聊聊棒被动", (0.03 * refine + 0.09) * self.rate2); + } +} + +pub struct TalkingStick; + +impl WeaponTrait for TalkingStick { + const META_DATA: WeaponStaticData = WeaponStaticData { + name: WeaponName::TalkingStick, + internal_name: "Claymore_BeastTamer", + weapon_type: WeaponType::Claymore, + weapon_sub_stat: Some(WeaponSubStatFamily::CriticalRate40), + weapon_base: WeaponBaseATKFamily::ATK565, + star: 4, + #[cfg(not(target_family = "wasm"))] + effect: Some(locale!( + zh_cn: "承受火元素附着后的15秒内,攻击力提升16%-20%-24%-28%-32%,每12秒至多触发一次;承受水元素、冰元素、雷元素或草元素附着后的15秒内,所有元素伤害加成提升12%-15%-18%-21%-24%,每12秒至多触发一次。", + en: "ATK will be increased by 16%-20%-24%-28%-32% for 15s after being affected by Pyro. This effect can be triggered once every 12s. All Elemental DMG Bonus will be increased by 12%-15%-18%-21%-24% for 15s after being affected by Hydro, Cryo, Electro, or Dendro. This effect can be triggered once every 12s." + )), + #[cfg(not(target_family = "wasm"))] + name_locale: locale!( + zh_cn: "聊聊棒", + en: "Talking Stick" + ) + }; + + #[cfg(not(target_family = "wasm"))] + const CONFIG_DATA: Option<&'static [ItemConfig]> = Some(&[ + ItemConfig { + name: "rate1", + title: locale!( + zh_cn: "被动①比例", + en: "Effect 1 Rate" + ), + config: ItemConfigType::Float { min: 0.0, max: 1.0, default: 0.0 } + }, + ItemConfig { + name: "rate2", + title: locale!( + zh_cn: "被动②比例", + en: "Effect 2 Rate" + ), + config: ItemConfigType::Float { min: 0.0, max: 1.0, default: 0.0 } + }, + ]); + + fn get_effect(character: &CharacterCommonData, config: &WeaponConfig) -> Option>> { + let (rate1, rate2) = match *config { + WeaponConfig::TalkingStick { rate1, rate2 } => (rate1, rate2), + _ => (0.0, 0.0) + }; + Some(Box::new(TalkingStickEffect { + rate1, + rate2 + })) + } +} diff --git a/mona_core/src/weapon/weapons/swords/finale_of_the_deep.rs b/mona_core/src/weapon/weapons/swords/finale_of_the_deep.rs new file mode 100644 index 00000000..bc8c4a04 --- /dev/null +++ b/mona_core/src/weapon/weapons/swords/finale_of_the_deep.rs @@ -0,0 +1,89 @@ +use crate::attribute::{Attribute, AttributeCommon, AttributeName}; +use crate::character::character_common_data::CharacterCommonData; +use crate::common::i18n::locale; +use crate::common::item_config_type::{ItemConfig, ItemConfigType}; +use crate::common::WeaponType; +use crate::weapon::weapon_common_data::WeaponCommonData; +use crate::weapon::weapon_effect::WeaponEffect; +use crate::weapon::weapon_static_data::WeaponStaticData; +use crate::weapon::weapon_trait::WeaponTrait; +use crate::weapon::{WeaponConfig, WeaponName}; +use crate::weapon::weapon_base_atk::WeaponBaseATKFamily; +use crate::weapon::weapon_sub_stat::WeaponSubStatFamily; + +pub struct FinaleOfTheDeepEffect { + pub rate1: f64, + pub rate2: f64, +} + +impl WeaponEffect for FinaleOfTheDeepEffect { + fn apply(&self, data: &WeaponCommonData, attribute: &mut A) { + let refine = data.refine as f64; + let rate2 = self.rate2; + + attribute.add_atk_percentage("海渊终曲被动", (0.03 * refine + 0.09) * self.rate1); + attribute.add_edge1( + AttributeName::HP, + AttributeName::ATKFixed, + Box::new(move |hp, _| { + let max = 37.5 * refine + 112.5; + max.min(hp * 0.25 * (0.006 * refine + 0.018)) * rate2 + }), + Box::new(|x, y, v| (0.0, 0.0)), + "海渊终曲被动" + ); + } +} + +pub struct FinaleOfTheDeep; + +impl WeaponTrait for FinaleOfTheDeep { + const META_DATA: WeaponStaticData = WeaponStaticData { + name: WeaponName::FinaleOfTheDeep, + internal_name: "Sword_Vorpal", + weapon_type: WeaponType::Sword, + weapon_sub_stat: Some(WeaponSubStatFamily::ATK60), + weapon_base: WeaponBaseATKFamily::ATK565, + star: 4, + #[cfg(not(target_family = "wasm"))] + effect: Some(locale!( + zh_cn: "施放元素战技时,攻击力提升12%-15%-18%-21%-24%,持续15秒,并赋予生命值上限25%的生命之契,该效果每10秒至多触发一次。生命之契清除时,基于清除值的2.4%-3%-3.6%-4.2%-4.8%提升至多150-187.5-225-262.5-300点攻击力,持续15秒。", + en: "When using an Elemental Skill, ATK will be increased by 12%-15%-18%-21%-24% for 15s, and a Bond of Life worth 25% of Max HP will be granted. This effect can be triggered once every 10s. When the Bond of Life is cleared, a maximum of 150-187.5-225-262.5-300 ATK will be gained based on 2.4%-3%-3.6%-4.2%-4.8% of the total amount of the Life Bond cleared, lasting for 15s." + )), + #[cfg(not(target_family = "wasm"))] + name_locale: locale!( + zh_cn: "海渊终曲", + en: "Finale of the Deep" + ) + }; + + #[cfg(not(target_family = "wasm"))] + const CONFIG_DATA: Option<&'static [ItemConfig]> = Some(&[ + ItemConfig { + name: "rate1", + title: locale!( + zh_cn: "效果①比例", + en: "Effect 1 Rate" + ), + config: ItemConfigType::Float { min: 0.0, max: 1.0, default: 0.5 } + }, + ItemConfig { + name: "rate2", + title: locale!( + zh_cn: "效果②比例", + en: "Effect 2 Rate", + ), + config: ItemConfigType::Float { min: 0.0, max: 1.0, default: 0.5 } + } + ]); + + fn get_effect(character: &CharacterCommonData, config: &WeaponConfig) -> Option>> { + let (rate1, rate2) = match *config { + WeaponConfig::FinaleOfTheDeep { rate1, rate2 } => (rate1, rate2), + _ => (0.0, 0.0) + }; + Some(Box::new(FinaleOfTheDeepEffect { + rate1, rate2 + })) + } +} diff --git a/mona_core/src/weapon/weapons/swords/fleuve_cendre_ferryman.rs b/mona_core/src/weapon/weapons/swords/fleuve_cendre_ferryman.rs new file mode 100644 index 00000000..855ec334 --- /dev/null +++ b/mona_core/src/weapon/weapons/swords/fleuve_cendre_ferryman.rs @@ -0,0 +1,62 @@ +use crate::attribute::{Attribute, AttributeName}; +use crate::character::character_common_data::CharacterCommonData; +use crate::common::i18n::locale; +use crate::common::item_config_type::ItemConfig; +use crate::common::WeaponType; +use crate::weapon::weapon_common_data::WeaponCommonData; +use crate::weapon::weapon_effect::WeaponEffect; +use crate::weapon::weapon_static_data::WeaponStaticData; +use crate::weapon::weapon_trait::WeaponTrait; +use crate::weapon::{WeaponConfig, WeaponName}; +use crate::weapon::weapon_base_atk::WeaponBaseATKFamily; +use crate::weapon::weapon_sub_stat::WeaponSubStatFamily; + +pub struct FleuveCendreFerrymanEffect { + pub rate: f64, +} + +impl WeaponEffect for FleuveCendreFerrymanEffect { + fn apply(&self, data: &WeaponCommonData, attribute: &mut A) { + let refine = data.refine as f64; + attribute.set_value_by(AttributeName::CriticalElementalSkill, "灰河渡手被动", 0.02 * refine + 0.06); + attribute.set_value_by(AttributeName::Recharge, "灰河渡手被动", (0.04 * refine + 0.12) * self.rate); + } +} + +pub struct FleuveCendreFerryman; + +impl WeaponTrait for FleuveCendreFerryman { + const META_DATA: WeaponStaticData = WeaponStaticData { + name: WeaponName::FleuveCendreFerryman, + internal_name: "Sword_Machination", + weapon_type: WeaponType::Sword, + weapon_sub_stat: Some(WeaponSubStatFamily::Recharge100), + weapon_base: WeaponBaseATKFamily::ATK510, + star: 4, + #[cfg(not(target_family = "wasm"))] + effect: Some(locale!( + zh_cn: "元素战技暴击率提升8%-10%-12%-14%-16%;此外,施放元素战技后的5秒内,元素充能效率提升116%-20%-24%-28%-32%。", + en: "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." + )), + #[cfg(not(target_family = "wasm"))] + name_locale: locale!( + zh_cn: "灰河渡手", + en: "Fleuve Cendre Ferryman" + ) + }; + + #[cfg(not(target_family = "wasm"))] + const CONFIG_DATA: Option<&'static [ItemConfig]> = Some(&[ + ItemConfig::RATE01 + ]); + + fn get_effect(character: &CharacterCommonData, config: &WeaponConfig) -> Option>> { + let rate = match *config { + WeaponConfig::FleuveCendreFerryman { rate } => rate, + _ => 0.0 + }; + Some(Box::new(FleuveCendreFerrymanEffect { + rate + })) + } +} diff --git a/mona_core/src/weapon/weapons/swords/mod.rs b/mona_core/src/weapon/weapons/swords/mod.rs index aa2cd05a..a2aa81ea 100644 --- a/mona_core/src/weapon/weapons/swords/mod.rs +++ b/mona_core/src/weapon/weapons/swords/mod.rs @@ -33,6 +33,9 @@ pub use xiphos_moonlight::XiphosMoonlight; pub use key_of_khaj_nisut::KeyOfKhajNisut; pub use toukabou_shigure::ToukabouShigure; pub use light_of_foliar_incision::LightOfFoliarIncision; +pub use wolf_fang::WolfFang; +pub use finale_of_the_deep::FinaleOfTheDeep; +pub use fleuve_cendre_ferryman::FleuveCendreFerryman; pub mod mistsplitter_reforged; pub mod aquila_favonia; @@ -69,3 +72,6 @@ pub mod xiphos_moonlight; pub mod key_of_khaj_nisut; pub mod toukabou_shigure; pub mod light_of_foliar_incision; +pub mod wolf_fang; +pub mod finale_of_the_deep; +pub mod fleuve_cendre_ferryman; diff --git a/mona_core/src/weapon/weapons/swords/wolf_fang.rs b/mona_core/src/weapon/weapons/swords/wolf_fang.rs new file mode 100644 index 00000000..143a6f67 --- /dev/null +++ b/mona_core/src/weapon/weapons/swords/wolf_fang.rs @@ -0,0 +1,88 @@ +use crate::attribute::{Attribute, AttributeName}; +use crate::character::character_common_data::CharacterCommonData; +use crate::common::i18n::locale; +use crate::common::item_config_type::{ItemConfig, ItemConfigType}; +use crate::common::WeaponType; +use crate::weapon::weapon_common_data::WeaponCommonData; +use crate::weapon::weapon_effect::WeaponEffect; +use crate::weapon::weapon_static_data::WeaponStaticData; +use crate::weapon::weapon_trait::WeaponTrait; +use crate::weapon::{WeaponConfig, WeaponName}; +use crate::weapon::weapon_base_atk::WeaponBaseATKFamily; +use crate::weapon::weapon_sub_stat::WeaponSubStatFamily; + +pub struct WolfFangEffect { + pub e_stack: f64, + pub q_stack: f64, +} + +impl WeaponEffect for WolfFangEffect { + fn apply(&self, data: &WeaponCommonData, attribute: &mut A) { + let refine = data.refine as f64; + let value = 0.04 * refine + 0.12; + attribute.set_value_by(AttributeName::BonusElementalSkill, "狼牙被动", value); + attribute.set_value_by(AttributeName::BonusElementalBurst, "狼牙被动", value); + + if self.e_stack > 0.0 { + let step = 0.005 * refine + 0.015; + attribute.set_value_by(AttributeName::CriticalElementalSkill, "狼牙被动", step * self.e_stack); + } + if self.q_stack > 0.0 { + let step = 0.005 * refine + 0.015; + attribute.set_value_by(AttributeName::CriticalElementalBurst, "狼牙被动", step * self.q_stack); + } + } +} + +pub struct WolfFang; + +impl WeaponTrait for WolfFang { + const META_DATA: WeaponStaticData = WeaponStaticData { + name: WeaponName::WolfFang, + internal_name: "Sword_Boreas", + weapon_type: WeaponType::Sword, + weapon_sub_stat: Some(WeaponSubStatFamily::CriticalRate60), + weapon_base: WeaponBaseATKFamily::ATK510, + star: 4, + #[cfg(not(target_family = "wasm"))] + effect: Some(locale!( + zh_cn: "元素战技与元素爆发造成的伤害提升16%-20%-24%-28%-32%。元素战技命中敌人时,元素战技的暴击率提升2%-2.5%-3%-3.5%-4%;元素爆发命中敌人时,元素爆发的暴击率提升2%-2.5%-3%-3.5%-4%。上述两种效果各自持续10秒,至多叠加4次,每0.1秒至多触发一次。", + en: "DMG dealt by Elemental Skill and Elemental Burst is increased by 16%-20%-24%-28%-32%. When an Elemental Skill hits an opponent, its CRIT Rate will be increased by 2%-2.5%-3%-3.5%-4%. When an Elemental Burst hits an opponent, its CRIT Rate will be increased by 2%-2.5%-3%-3.5%-4%. Both of these effects last 10s separately, have 4 max stacks, and can be triggered once every 0.1s." + )), + #[cfg(not(target_family = "wasm"))] + name_locale: locale!( + zh_cn: "狼牙", + en: "Wolf-Fang" + ) + }; + + #[cfg(not(target_family = "wasm"))] + const CONFIG_DATA: Option<&'static [ItemConfig]> = Some(&[ + ItemConfig { + name: "e_stack", + title: locale!( + zh_cn: "元素战技命中层数", + en: "E Hit Stack" + ), + config: ItemConfigType::Float { min: 0.0, max: 4.0, default: 0.0 } + }, + ItemConfig { + name: "q_stack", + title: locale!( + zh_cn: "元素爆发命中层数", + en: "Q Hit Stack" + ), + config: ItemConfigType::Float { min: 0.0, max: 4.0, default: 0.0 } + }, + ]); + + fn get_effect(character: &CharacterCommonData, config: &WeaponConfig) -> Option>> { + let (e_stack, q_stack) = match *config { + WeaponConfig::WolfFang { e_stack, q_stack } => (e_stack, q_stack), + _ => (0.0, 0.0) + }; + Some(Box::new(WolfFangEffect { + e_stack, q_stack + })) + } +} diff --git a/src/assets/_gen_artifact.js b/src/assets/_gen_artifact.js index cc5e613b..27918ada 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: 246, + nameLocale: 252, minStar: 1, maxStar: 3, - effect2: 1206, + effect2: 1227, - effect4: 596, + effect4: 603, flower: { - text: 247, + text: 253, url: getIcon("UI_RelicIcon_10010_4") }, feather: { - text: 249, + text: 255, url: getIcon("UI_RelicIcon_10010_2") }, sand: { - text: 250, + text: 256, url: getIcon("UI_RelicIcon_10010_5") }, cup: { - text: 251, + text: 257, url: getIcon("UI_RelicIcon_10010_1") }, head: { - text: 248, + text: 254, url: getIcon("UI_RelicIcon_10010_3") }, @@ -58,54 +58,54 @@ export default { "archaicPetra": { eng: "archaicPetra", name2: "ArchaicPetra", - nameLocale: 618, + nameLocale: 626, minStar: 4, maxStar: 5, - effect2: 1407, + effect2: 1431, - effect4: 1422, + effect4: 1446, flower: { - text: 1271, + text: 1293, url: getIcon("UI_RelicIcon_15014_4") }, feather: { - text: 571, + text: 578, url: getIcon("UI_RelicIcon_15014_2") }, sand: { - text: 784, + text: 797, url: getIcon("UI_RelicIcon_15014_5") }, cup: { - text: 572, + text: 579, url: getIcon("UI_RelicIcon_15014_1") }, head: { - text: 85, + text: 87, url: getIcon("UI_RelicIcon_15014_3") }, config4: [ - {"default":"Electro","name":"element","title":183,"type":"element4"}, + {"default":"Electro","name":"element","title":185,"type":"element4"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":716,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":727,"type":"float"}, ], }, @@ -113,52 +113,52 @@ export default { "berserker": { eng: "berserker", name2: "Berserker", - nameLocale: 624, + nameLocale: 632, minStar: 3, maxStar: 4, - effect2: 951, + effect2: 966, - effect4: 1210, + effect4: 1231, flower: { - text: 627, + text: 635, url: getIcon("UI_RelicIcon_10005_4") }, feather: { - text: 626, + text: 634, url: getIcon("UI_RelicIcon_10005_2") }, sand: { - text: 625, + text: 633, url: getIcon("UI_RelicIcon_10005_5") }, cup: { - text: 628, + text: 636, url: getIcon("UI_RelicIcon_10005_1") }, head: { - text: 629, + text: 637, url: getIcon("UI_RelicIcon_10005_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":716,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":727,"type":"float"}, ], }, @@ -166,52 +166,52 @@ export default { "blizzardStrayer": { eng: "blizzardStrayer", name2: "BlizzardStrayer", - nameLocale: 264, + nameLocale: 270, minStar: 4, maxStar: 5, - effect2: 1406, + effect2: 1430, - effect4: 705, + effect4: 714, flower: { - text: 336, + text: 342, url: getIcon("UI_RelicIcon_14001_4") }, feather: { - text: 688, + text: 697, url: getIcon("UI_RelicIcon_14001_2") }, sand: { - text: 263, + text: 269, url: getIcon("UI_RelicIcon_14001_5") }, cup: { - text: 1583, + text: 1609, url: getIcon("UI_RelicIcon_14001_1") }, head: { - text: 1265, + text: 1287, url: getIcon("UI_RelicIcon_14001_3") }, config4: [ - {"default":0.0,"max":0.4,"min":0.0,"name":"critical_bonus","title":1315,"type":"float"}, + {"default":0.0,"max":0.4,"min":0.0,"name":"critical_bonus","title":1338,"type":"float"}, ], }, @@ -219,52 +219,52 @@ export default { "bloodstainedChivalry": { eng: "bloodstainedChivalry", name2: "BloodstainedChivalry", - nameLocale: 997, + nameLocale: 1015, minStar: 4, maxStar: 5, - effect2: 1579, + effect2: 1606, - effect4: 282, + effect4: 288, flower: { - text: 995, + text: 1013, url: getIcon("UI_RelicIcon_15008_4") }, feather: { - text: 998, + text: 1016, url: getIcon("UI_RelicIcon_15008_2") }, sand: { - text: 1756, + text: 1788, url: getIcon("UI_RelicIcon_15008_5") }, cup: { - text: 999, + text: 1017, url: getIcon("UI_RelicIcon_15008_1") }, head: { - text: 996, + text: 1014, url: getIcon("UI_RelicIcon_15008_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":716,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":727,"type":"float"}, ], }, @@ -272,52 +272,52 @@ export default { "braveHeart": { eng: "braveHeart", name2: "BraveHeart", - nameLocale: 302, + nameLocale: 308, minStar: 3, maxStar: 4, - effect2: 695, + effect2: 704, - effect4: 557, + effect4: 564, flower: { - text: 304, + text: 310, url: getIcon("UI_RelicIcon_10002_4") }, feather: { - text: 307, + text: 313, url: getIcon("UI_RelicIcon_10002_2") }, sand: { - text: 305, + text: 311, url: getIcon("UI_RelicIcon_10002_5") }, cup: { - text: 306, + text: 312, url: getIcon("UI_RelicIcon_10002_1") }, head: { - text: 303, + text: 309, url: getIcon("UI_RelicIcon_10002_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":716,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":727,"type":"float"}, ], }, @@ -325,52 +325,52 @@ export default { "crimsonWitch": { eng: "crimsonWitch", name2: "CrimsonWitchOfFlames", - nameLocale: 1125, + nameLocale: 1145, minStar: 4, maxStar: 5, - effect2: 1409, + effect2: 1433, - effect4: 1529, + effect4: 1555, flower: { - text: 1764, + text: 1796, url: getIcon("UI_RelicIcon_15006_4") }, feather: { - text: 1762, + text: 1794, url: getIcon("UI_RelicIcon_15006_2") }, sand: { - text: 1765, + text: 1797, url: getIcon("UI_RelicIcon_15006_5") }, cup: { - text: 1763, + text: 1795, url: getIcon("UI_RelicIcon_15006_1") }, head: { - text: 1133, + text: 1153, url: getIcon("UI_RelicIcon_15006_3") }, config4: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"level","title":717,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"level","title":728,"type":"float"}, ], }, @@ -378,52 +378,52 @@ export default { "DeepwoodMemories": { eng: "DeepwoodMemories", name2: "DeepwoodMemories", - nameLocale: 1076, + nameLocale: 1095, minStar: 4, maxStar: 5, - effect2: 1410, + effect2: 1434, - effect4: 204, + effect4: 207, flower: { - text: 1569, + text: 1595, url: getIcon("UI_RelicIcon_15025_4") }, feather: { - text: 1361, + text: 1384, url: getIcon("UI_RelicIcon_15025_2") }, sand: { - text: 1510, + text: 1536, url: getIcon("UI_RelicIcon_15025_5") }, cup: { - text: 1570, + text: 1596, url: getIcon("UI_RelicIcon_15025_1") }, head: { - text: 975, + text: 991, url: getIcon("UI_RelicIcon_15025_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":716,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":727,"type":"float"}, ], }, @@ -431,46 +431,46 @@ export default { "defenderWill": { eng: "defenderWill", name2: "DefendersWill", - nameLocale: 520, + nameLocale: 527, minStar: 0, maxStar: 0, - effect2: 1654, + effect2: 1684, - effect4: 1646, + effect4: 1676, flower: { - text: 522, + text: 529, url: getIcon("UI_RelicIcon_10003_4") }, feather: { - text: 524, + text: 531, url: getIcon("UI_RelicIcon_10003_2") }, sand: { - text: 523, + text: 530, url: getIcon("UI_RelicIcon_10003_5") }, cup: { - text: 521, + text: 528, url: getIcon("UI_RelicIcon_10003_1") }, head: { - text: 525, + text: 532, url: getIcon("UI_RelicIcon_10003_3") }, @@ -482,52 +482,52 @@ export default { "EchoesOfAnOffering": { eng: "EchoesOfAnOffering", name2: "EchoesOfAnOffering", - nameLocale: 984, + nameLocale: 1000, minStar: 4, maxStar: 5, - effect2: 695, + effect2: 704, - effect4: 891, + effect4: 905, flower: { - text: 1759, + text: 1791, url: getIcon("UI_RelicIcon_15024_4") }, feather: { - text: 430, + text: 436, url: getIcon("UI_RelicIcon_15024_2") }, sand: { - text: 1273, + text: 1296, url: getIcon("UI_RelicIcon_15024_5") }, cup: { - text: 1075, + text: 1094, url: getIcon("UI_RelicIcon_15024_1") }, head: { - text: 1068, + text: 1086, url: getIcon("UI_RelicIcon_15024_3") }, config4: [ - {"default":0.5053283764473575,"max":1.0,"min":0.0,"name":"rate","title":576,"type":"float"}, + {"default":0.5053283764473575,"max":1.0,"min":0.0,"name":"rate","title":583,"type":"float"}, ], }, @@ -535,46 +535,46 @@ export default { "emblemOfSeveredFate": { eng: "emblemOfSeveredFate", name2: "EmblemOfSeveredFate", - nameLocale: 1339, + nameLocale: 1362, minStar: 4, maxStar: 5, - effect2: 186, + effect2: 188, - effect4: 436, + effect4: 442, flower: { - text: 776, + text: 789, url: getIcon("UI_RelicIcon_15020_4") }, feather: { - text: 289, + text: 295, url: getIcon("UI_RelicIcon_15020_2") }, sand: { - text: 1679, + text: 1711, url: getIcon("UI_RelicIcon_15020_5") }, cup: { - text: 1342, + text: 1365, url: getIcon("UI_RelicIcon_15020_1") }, head: { - text: 325, + text: 331, url: getIcon("UI_RelicIcon_15020_3") }, @@ -586,52 +586,52 @@ export default { "FlowerOfParadiseLost": { eng: "FlowerOfParadiseLost", name2: "FlowerOfParadiseLost", - nameLocale: 101, + nameLocale: 103, minStar: 4, maxStar: 5, - effect2: 222, + effect2: 226, - effect4: 1458, + effect4: 1484, flower: { - text: 974, + text: 990, url: getIcon("UI_RelicIcon_15028_4") }, feather: { - text: 1508, + text: 1534, url: getIcon("UI_RelicIcon_15028_2") }, sand: { - text: 277, + text: 283, url: getIcon("UI_RelicIcon_15028_5") }, cup: { - text: 526, + text: 533, url: getIcon("UI_RelicIcon_15028_1") }, head: { - text: 1325, + text: 1348, url: getIcon("UI_RelicIcon_15028_3") }, config4: [ - {"default":4.0,"max":4.0,"min":0.0,"name":"stack","title":717,"type":"float"}, + {"default":4.0,"max":4.0,"min":0.0,"name":"stack","title":728,"type":"float"}, ], }, @@ -639,46 +639,46 @@ export default { "gambler": { eng: "gambler", name2: "Gambler", - nameLocale: 1514, + nameLocale: 1540, minStar: 3, maxStar: 4, - effect2: 209, + effect2: 214, - effect4: 287, + effect4: 293, flower: { - text: 1518, + text: 1544, url: getIcon("UI_RelicIcon_10008_4") }, feather: { - text: 1516, + text: 1542, url: getIcon("UI_RelicIcon_10008_2") }, sand: { - text: 1515, + text: 1541, url: getIcon("UI_RelicIcon_10008_5") }, cup: { - text: 1519, + text: 1545, url: getIcon("UI_RelicIcon_10008_1") }, head: { - text: 1517, + text: 1543, url: getIcon("UI_RelicIcon_10008_3") }, @@ -690,52 +690,52 @@ export default { "DesertPavilionChronicle": { eng: "DesertPavilionChronicle", name2: "DesertPavilionChronicle", - nameLocale: 1040, + nameLocale: 1058, minStar: 4, maxStar: 5, - effect2: 1412, + effect2: 1436, - effect4: 1607, + effect4: 1633, flower: { - text: 160, + text: 162, url: getIcon("UI_RelicIcon_15027_4") }, feather: { - text: 1778, + text: 1810, url: getIcon("UI_RelicIcon_15027_2") }, sand: { - text: 497, + text: 504, url: getIcon("UI_RelicIcon_15027_5") }, cup: { - text: 1571, + text: 1597, url: getIcon("UI_RelicIcon_15027_1") }, head: { - text: 1060, + text: 1078, url: getIcon("UI_RelicIcon_15027_3") }, config4: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":716,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":727,"type":"float"}, ], }, @@ -743,56 +743,56 @@ export default { "GildedDreams": { eng: "GildedDreams", name2: "GildedDreams", - nameLocale: 1745, + nameLocale: 1777, minStar: 4, maxStar: 5, - effect2: 220, + effect2: 227, - effect4: 1486, + effect4: 1512, flower: { - text: 1006, + text: 1024, url: getIcon("UI_RelicIcon_15026_4") }, feather: { - text: 1454, + text: 1480, url: getIcon("UI_RelicIcon_15026_2") }, sand: { - text: 1038, + text: 1056, url: getIcon("UI_RelicIcon_15026_5") }, cup: { - text: 506, + text: 513, url: getIcon("UI_RelicIcon_15026_1") }, head: { - text: 1041, + text: 1059, url: getIcon("UI_RelicIcon_15026_3") }, config4: [ - {"default":0,"max":3,"min":0,"name":"same_count","title":363,"type":"int"}, + {"default":0,"max":3,"min":0,"name":"same_count","title":369,"type":"int"}, - {"default":0,"max":3,"min":0,"name":"diff_count","title":87,"type":"int"}, + {"default":0,"max":3,"min":0,"name":"diff_count","title":89,"type":"int"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":716,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":727,"type":"float"}, ], }, @@ -800,46 +800,46 @@ export default { "gladiatorFinale": { eng: "gladiatorFinale", name2: "GladiatorsFinale", - nameLocale: 1473, + nameLocale: 1499, minStar: 4, maxStar: 5, - effect2: 695, + effect2: 704, - effect4: 1459, + effect4: 1485, flower: { - text: 1472, + text: 1498, url: getIcon("UI_RelicIcon_15001_4") }, feather: { - text: 1471, + text: 1497, url: getIcon("UI_RelicIcon_15001_2") }, sand: { - text: 1470, + text: 1496, url: getIcon("UI_RelicIcon_15001_5") }, cup: { - text: 1474, + text: 1500, url: getIcon("UI_RelicIcon_15001_1") }, head: { - text: 1469, + text: 1495, url: getIcon("UI_RelicIcon_15001_3") }, @@ -851,52 +851,52 @@ export default { "heartOfDepth": { eng: "heartOfDepth", name2: "HeartOfDepth", - nameLocale: 1036, + nameLocale: 1054, minStar: 4, maxStar: 5, - effect2: 1408, + effect2: 1432, - effect4: 738, + effect4: 750, flower: { - text: 1746, + text: 1778, url: getIcon("UI_RelicIcon_15016_4") }, feather: { - text: 1573, + text: 1599, url: getIcon("UI_RelicIcon_15016_2") }, sand: { - text: 429, + text: 435, url: getIcon("UI_RelicIcon_15016_5") }, cup: { - text: 1037, + text: 1055, url: getIcon("UI_RelicIcon_15016_1") }, head: { - text: 1584, + text: 1610, url: getIcon("UI_RelicIcon_15016_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":716,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":727,"type":"float"}, ], }, @@ -904,52 +904,52 @@ export default { "huskOfOpulentDreams": { eng: "huskOfOpulentDreams", name2: "HuskOfOpulentDreams", - nameLocale: 327, + nameLocale: 333, minStar: 4, maxStar: 5, - effect2: 1654, + effect2: 1684, - effect4: 1455, + effect4: 1481, flower: { - text: 1398, + text: 1422, url: getIcon("UI_RelicIcon_15021_4") }, feather: { - text: 326, + text: 332, url: getIcon("UI_RelicIcon_15021_2") }, sand: { - text: 161, + text: 163, url: getIcon("UI_RelicIcon_15021_5") }, cup: { - text: 1008, + text: 1026, url: getIcon("UI_RelicIcon_15021_1") }, head: { - text: 602, + text: 610, url: getIcon("UI_RelicIcon_15021_3") }, config4: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"level","title":42,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"level","title":44,"type":"float"}, ], }, @@ -957,52 +957,52 @@ export default { "instructor": { eng: "instructor", name2: "Instructor", - nameLocale: 720, + nameLocale: 732, minStar: 3, maxStar: 4, - effect2: 221, + effect2: 228, - effect4: 1487, + effect4: 1513, flower: { - text: 725, + text: 737, url: getIcon("UI_RelicIcon_10007_4") }, feather: { - text: 724, + text: 736, url: getIcon("UI_RelicIcon_10007_2") }, sand: { - text: 723, + text: 735, url: getIcon("UI_RelicIcon_10007_5") }, cup: { - text: 726, + text: 738, url: getIcon("UI_RelicIcon_10007_1") }, head: { - text: 722, + text: 734, url: getIcon("UI_RelicIcon_10007_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":716,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":727,"type":"float"}, ], }, @@ -1010,52 +1010,52 @@ export default { "lavaWalker": { eng: "lavaWalker", name2: "Lavawalker", - nameLocale: 1085, + nameLocale: 1104, minStar: 4, maxStar: 5, - effect2: 1106, + effect2: 1125, - effect4: 552, + effect4: 559, flower: { - text: 1080, + text: 1099, url: getIcon("UI_RelicIcon_14003_4") }, feather: { - text: 1083, + text: 1102, url: getIcon("UI_RelicIcon_14003_2") }, sand: { - text: 1082, + text: 1101, url: getIcon("UI_RelicIcon_14003_5") }, cup: { - text: 1084, + text: 1103, url: getIcon("UI_RelicIcon_14003_1") }, head: { - text: 1081, + text: 1100, url: getIcon("UI_RelicIcon_14003_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":718,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":729,"type":"float"}, ], }, @@ -1063,46 +1063,46 @@ export default { "luckyDog": { eng: "luckyDog", name2: "LuckyDog", - nameLocale: 583, + nameLocale: 590, minStar: 1, maxStar: 3, - effect2: 1653, + effect2: 1683, - effect4: 670, + effect4: 679, flower: { - text: 586, + text: 593, url: getIcon("UI_RelicIcon_10011_4") }, feather: { - text: 588, + text: 595, url: getIcon("UI_RelicIcon_10011_2") }, sand: { - text: 585, + text: 592, url: getIcon("UI_RelicIcon_10011_5") }, cup: { - text: 584, + text: 591, url: getIcon("UI_RelicIcon_10011_1") }, head: { - text: 587, + text: 594, url: getIcon("UI_RelicIcon_10011_3") }, @@ -1114,46 +1114,46 @@ export default { "maidenBeloved": { eng: "maidenBeloved", name2: "MaidenBeloved", - nameLocale: 1452, + nameLocale: 1478, minStar: 4, maxStar: 5, - effect2: 1480, + effect2: 1506, - effect4: 745, + effect4: 757, flower: { - text: 1557, + text: 1583, url: getIcon("UI_RelicIcon_14004_4") }, feather: { - text: 563, + text: 570, url: getIcon("UI_RelicIcon_14004_2") }, sand: { - text: 562, + text: 569, url: getIcon("UI_RelicIcon_14004_5") }, cup: { - text: 561, + text: 568, url: getIcon("UI_RelicIcon_14004_1") }, head: { - text: 560, + text: 567, url: getIcon("UI_RelicIcon_14004_3") }, @@ -1165,52 +1165,52 @@ export default { "martialArtist": { eng: "martialArtist", name2: "MartialArtist", - nameLocale: 1012, + nameLocale: 1030, minStar: 3, maxStar: 4, - effect2: 885, + effect2: 899, - effect4: 739, + effect4: 751, flower: { - text: 1015, + text: 1033, url: getIcon("UI_RelicIcon_10006_4") }, feather: { - text: 1016, + text: 1034, url: getIcon("UI_RelicIcon_10006_2") }, sand: { - text: 1014, + text: 1032, url: getIcon("UI_RelicIcon_10006_5") }, cup: { - text: 1017, + text: 1035, url: getIcon("UI_RelicIcon_10006_1") }, head: { - text: 1013, + text: 1031, url: getIcon("UI_RelicIcon_10006_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":716,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":727,"type":"float"}, ], }, @@ -1218,52 +1218,52 @@ export default { "noblesseOblige": { eng: "noblesseOblige", name2: "NoblesseOblige", - nameLocale: 777, + nameLocale: 790, minStar: 4, maxStar: 5, - effect2: 213, + effect2: 219, - effect4: 753, + effect4: 766, flower: { - text: 531, + text: 538, url: getIcon("UI_RelicIcon_15007_4") }, feather: { - text: 530, + text: 537, url: getIcon("UI_RelicIcon_15007_2") }, sand: { - text: 533, + text: 540, url: getIcon("UI_RelicIcon_15007_5") }, cup: { - text: 536, + text: 543, url: getIcon("UI_RelicIcon_15007_1") }, head: { - text: 539, + text: 546, url: getIcon("UI_RelicIcon_15007_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":716,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":727,"type":"float"}, ], }, @@ -1271,58 +1271,58 @@ export default { "NymphsDream": { eng: "NymphsDream", name2: "NymphsDream", - nameLocale: 1025, + nameLocale: 1043, minStar: 4, maxStar: 5, - effect2: 1408, + effect2: 1432, - effect4: 876, + effect4: 890, flower: { - text: 761, + text: 774, url: getIcon("UI_RelicIcon_15029_4") }, feather: { - text: 428, + text: 434, url: getIcon("UI_RelicIcon_15029_2") }, sand: { - text: 1026, + text: 1044, url: getIcon("UI_RelicIcon_15029_5") }, cup: { - text: 308, + text: 314, url: getIcon("UI_RelicIcon_15029_1") }, head: { - text: 617, + text: 625, url: getIcon("UI_RelicIcon_15029_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"w1","title":47,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"w1","title":49,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"w2","title":118,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"w2","title":120,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"w3","title":69,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"w3","title":71,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":593,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":599,"type":"float"}, ], }, @@ -1330,46 +1330,46 @@ export default { "oceanHuedClam": { eng: "oceanHuedClam", name2: "OceanHuedClam", - nameLocale: 1073, + nameLocale: 1091, minStar: 4, maxStar: 5, - effect2: 1045, + effect2: 1063, - effect4: 1456, + effect4: 1482, flower: { - text: 1072, + text: 1090, url: getIcon("UI_RelicIcon_15022_4") }, feather: { - text: 1079, + text: 1098, url: getIcon("UI_RelicIcon_15022_2") }, sand: { - text: 1305, + text: 1328, url: getIcon("UI_RelicIcon_15022_5") }, cup: { - text: 1253, + text: 1274, url: getIcon("UI_RelicIcon_15022_1") }, head: { - text: 1074, + text: 1093, url: getIcon("UI_RelicIcon_15022_3") }, @@ -1381,54 +1381,54 @@ export default { "paleFlame": { eng: "paleFlame", name2: "PaleFlame", - nameLocale: 1384, + nameLocale: 1408, minStar: 4, maxStar: 5, - effect2: 1580, + effect2: 1605, - effect4: 199, + effect4: 203, flower: { - text: 767, + text: 780, url: getIcon("UI_RelicIcon_15018_4") }, feather: { - text: 1509, + text: 1535, url: getIcon("UI_RelicIcon_15018_2") }, sand: { - text: 182, + text: 184, url: getIcon("UI_RelicIcon_15018_5") }, cup: { - text: 1527, + text: 1553, url: getIcon("UI_RelicIcon_15018_1") }, head: { - text: 403, + text: 409, url: getIcon("UI_RelicIcon_15018_3") }, config4: [ - {"default":0.0,"max":2.0,"min":0.0,"name":"avg_level","title":712,"type":"float"}, + {"default":0.0,"max":2.0,"min":0.0,"name":"avg_level","title":721,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"full_rate","title":1098,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"full_rate","title":1117,"type":"float"}, ], }, @@ -1436,11 +1436,11 @@ export default { "prayersForDestiny": { eng: "prayersForDestiny", name2: "PrayersForDestiny", - nameLocale: 1294, + nameLocale: 1317, minStar: 3, maxStar: 4, - effect1: 346, + effect1: 352, @@ -1453,7 +1453,7 @@ export default { head: { - text: 1295, + text: 1318, url: getIcon("UI_RelicIcon_15010_3") }, @@ -1465,11 +1465,11 @@ export default { "prayersForIllumination": { eng: "prayersForIllumination", name2: "PrayersForIllumination", - nameLocale: 1296, + nameLocale: 1319, minStar: 3, maxStar: 4, - effect1: 347, + effect1: 353, @@ -1482,7 +1482,7 @@ export default { head: { - text: 1297, + text: 1320, url: getIcon("UI_RelicIcon_15009_3") }, @@ -1494,11 +1494,11 @@ export default { "prayersForWisdom": { eng: "prayersForWisdom", name2: "PrayersForWisdom", - nameLocale: 1302, + nameLocale: 1325, minStar: 3, maxStar: 4, - effect1: 348, + effect1: 354, @@ -1511,7 +1511,7 @@ export default { head: { - text: 1303, + text: 1326, url: getIcon("UI_RelicIcon_15011_3") }, @@ -1523,11 +1523,11 @@ export default { "prayersToSpringtime": { eng: "prayersToSpringtime", name2: "PrayersToSpringtime", - nameLocale: 1292, + nameLocale: 1315, minStar: 3, maxStar: 4, - effect1: 345, + effect1: 351, @@ -1540,7 +1540,7 @@ export default { head: { - text: 1293, + text: 1316, url: getIcon("UI_RelicIcon_15013_3") }, @@ -1552,46 +1552,46 @@ export default { "resolutionOfSojourner": { eng: "resolutionOfSojourner", name2: "ResolutionOfSojourner", - nameLocale: 1447, + nameLocale: 1471, minStar: 3, maxStar: 4, - effect2: 695, + effect2: 704, - effect4: 1610, + effect4: 1636, flower: { - text: 710, + text: 719, url: getIcon("UI_RelicIcon_10001_4") }, feather: { - text: 601, + text: 609, url: getIcon("UI_RelicIcon_10001_2") }, sand: { - text: 1576, + text: 1602, url: getIcon("UI_RelicIcon_10001_5") }, cup: { - text: 598, + text: 605, url: getIcon("UI_RelicIcon_10001_1") }, head: { - text: 622, + text: 630, url: getIcon("UI_RelicIcon_10001_3") }, @@ -1603,52 +1603,52 @@ export default { "retracingBolide": { eng: "retracingBolide", name2: "RetracingBolide", - nameLocale: 1575, + nameLocale: 1601, minStar: 4, maxStar: 5, - effect2: 666, + effect2: 675, - effect4: 446, + effect4: 452, flower: { - text: 450, + text: 456, url: getIcon("UI_RelicIcon_15015_4") }, feather: { - text: 453, + text: 459, url: getIcon("UI_RelicIcon_15015_2") }, sand: { - text: 449, + text: 455, url: getIcon("UI_RelicIcon_15015_5") }, cup: { - text: 452, + text: 458, url: getIcon("UI_RelicIcon_15015_1") }, head: { - text: 451, + text: 457, url: getIcon("UI_RelicIcon_15015_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":668,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":677,"type":"float"}, ], }, @@ -1656,46 +1656,46 @@ export default { "scholar": { eng: "scholar", name2: "Scholar", - nameLocale: 513, + nameLocale: 520, minStar: 3, maxStar: 4, - effect2: 186, + effect2: 188, - effect4: 1419, + effect4: 1443, flower: { - text: 514, + text: 521, url: getIcon("UI_RelicIcon_10012_4") }, feather: { - text: 517, + text: 524, url: getIcon("UI_RelicIcon_10012_2") }, sand: { - text: 516, + text: 523, url: getIcon("UI_RelicIcon_10012_5") }, cup: { - text: 515, + text: 522, url: getIcon("UI_RelicIcon_10012_1") }, head: { - text: 518, + text: 525, url: getIcon("UI_RelicIcon_10012_3") }, @@ -1707,52 +1707,52 @@ export default { "shimenawaReminiscence": { eng: "shimenawaReminiscence", name2: "ShimenawasReminiscence", - nameLocale: 1572, + nameLocale: 1598, minStar: 4, maxStar: 5, - effect2: 695, + effect2: 704, - effect4: 746, + effect4: 758, flower: { - text: 1353, + text: 1376, url: getIcon("UI_RelicIcon_15019_4") }, feather: { - text: 612, + text: 620, url: getIcon("UI_RelicIcon_15019_2") }, sand: { - text: 976, + text: 992, url: getIcon("UI_RelicIcon_15019_5") }, cup: { - text: 1272, + text: 1295, url: getIcon("UI_RelicIcon_15019_1") }, head: { - text: 769, + text: 782, url: getIcon("UI_RelicIcon_15019_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":716,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":727,"type":"float"}, ], }, @@ -1760,52 +1760,52 @@ export default { "tenacityOfTheMillelith": { eng: "tenacityOfTheMillelith", name2: "TenacityOfTheMillelith", - nameLocale: 320, + nameLocale: 326, minStar: 4, maxStar: 5, - effect2: 1212, + effect2: 1233, - effect4: 198, + effect4: 202, flower: { - text: 309, + text: 315, url: getIcon("UI_RelicIcon_15017_4") }, feather: { - text: 788, + text: 801, url: getIcon("UI_RelicIcon_15017_2") }, sand: { - text: 1616, + text: 1643, url: getIcon("UI_RelicIcon_15017_5") }, cup: { - text: 1252, + text: 1273, url: getIcon("UI_RelicIcon_15017_1") }, head: { - text: 559, + text: 566, url: getIcon("UI_RelicIcon_15017_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":716,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":727,"type":"float"}, ], }, @@ -1813,46 +1813,46 @@ export default { "exile": { eng: "exile", name2: "TheExile", - nameLocale: 1053, + nameLocale: 1071, minStar: 3, maxStar: 4, - effect2: 186, + effect2: 188, - effect4: 752, + effect4: 765, flower: { - text: 1056, + text: 1074, url: getIcon("UI_RelicIcon_10009_4") }, feather: { - text: 1055, + text: 1073, url: getIcon("UI_RelicIcon_10009_2") }, sand: { - text: 1058, + text: 1076, url: getIcon("UI_RelicIcon_10009_5") }, cup: { - text: 1054, + text: 1072, url: getIcon("UI_RelicIcon_10009_1") }, head: { - text: 1057, + text: 1075, url: getIcon("UI_RelicIcon_10009_3") }, @@ -1864,46 +1864,46 @@ export default { "thunderingFury": { eng: "thunderingFury", name2: "ThunderingFury", - nameLocale: 507, + nameLocale: 514, minStar: 4, maxStar: 5, - effect2: 1411, + effect2: 1435, - effect4: 1528, + effect4: 1554, flower: { - text: 1700, + text: 1732, url: getIcon("UI_RelicIcon_15005_4") }, feather: { - text: 1690, + text: 1722, url: getIcon("UI_RelicIcon_15005_2") }, sand: { - text: 1699, + text: 1731, url: getIcon("UI_RelicIcon_15005_5") }, cup: { - text: 1674, + text: 1704, url: getIcon("UI_RelicIcon_15005_1") }, head: { - text: 399, + text: 405, url: getIcon("UI_RelicIcon_15005_3") }, @@ -1915,52 +1915,52 @@ export default { "thunderSmoother": { eng: "thunderSmoother", name2: "Thundersoother", - nameLocale: 577, + nameLocale: 584, minStar: 4, maxStar: 5, - effect2: 1682, + effect2: 1714, - effect4: 555, + effect4: 562, flower: { - text: 581, + text: 588, url: getIcon("UI_RelicIcon_14002_4") }, feather: { - text: 582, + text: 589, url: getIcon("UI_RelicIcon_14002_2") }, sand: { - text: 579, + text: 586, url: getIcon("UI_RelicIcon_14002_5") }, cup: { - text: 580, + text: 587, url: getIcon("UI_RelicIcon_14002_1") }, head: { - text: 578, + text: 585, url: getIcon("UI_RelicIcon_14002_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":719,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":731,"type":"float"}, ], }, @@ -1968,46 +1968,46 @@ export default { "tinyMiracle": { eng: "tinyMiracle", name2: "TinyMiracle", - nameLocale: 498, + nameLocale: 505, minStar: 3, maxStar: 4, - effect2: 630, + effect2: 638, - effect4: 344, + effect4: 350, flower: { - text: 502, + text: 509, url: getIcon("UI_RelicIcon_10004_4") }, feather: { - text: 501, + text: 508, url: getIcon("UI_RelicIcon_10004_2") }, sand: { - text: 500, + text: 507, url: getIcon("UI_RelicIcon_10004_5") }, cup: { - text: 499, + text: 506, url: getIcon("UI_RelicIcon_10004_1") }, head: { - text: 503, + text: 510, url: getIcon("UI_RelicIcon_10004_3") }, @@ -2019,46 +2019,46 @@ export default { "travelingDoctor": { eng: "travelingDoctor", name2: "TravelingDoctor", - nameLocale: 1092, + nameLocale: 1111, minStar: 1, maxStar: 3, - effect2: 1475, + effect2: 1501, - effect4: 756, + effect4: 769, flower: { - text: 1097, + text: 1116, url: getIcon("UI_RelicIcon_10013_4") }, feather: { - text: 1095, + text: 1114, url: getIcon("UI_RelicIcon_10013_2") }, sand: { - text: 1093, + text: 1112, url: getIcon("UI_RelicIcon_10013_5") }, cup: { - text: 1096, + text: 1115, url: getIcon("UI_RelicIcon_10013_1") }, head: { - text: 1094, + text: 1113, url: getIcon("UI_RelicIcon_10013_3") }, @@ -2070,54 +2070,54 @@ export default { "VermillionHereafter": { eng: "VermillionHereafter", name2: "VermillionHereafter", - nameLocale: 1554, + nameLocale: 1580, minStar: 4, maxStar: 5, - effect2: 695, + effect2: 704, - effect4: 750, + effect4: 763, flower: { - text: 1223, + text: 1244, url: getIcon("UI_RelicIcon_15023_4") }, feather: { - text: 1103, + text: 1122, url: getIcon("UI_RelicIcon_15023_2") }, sand: { - text: 1658, + text: 1688, url: getIcon("UI_RelicIcon_15023_5") }, cup: { - text: 1336, + text: 1359, url: getIcon("UI_RelicIcon_15023_1") }, head: { - text: 1438, + text: 1462, url: getIcon("UI_RelicIcon_15023_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate_q","title":216,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate_q","title":222,"type":"float"}, - {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":574,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":582,"type":"float"}, ], }, @@ -2125,46 +2125,46 @@ export default { "viridescentVenerer": { eng: "viridescentVenerer", name2: "ViridescentVenerer", - nameLocale: 1356, + nameLocale: 1379, minStar: 4, maxStar: 5, - effect2: 1412, + effect2: 1436, - effect4: 641, + effect4: 649, flower: { - text: 1615, + text: 1642, url: getIcon("UI_RelicIcon_15002_4") }, feather: { - text: 1158, + text: 1179, url: getIcon("UI_RelicIcon_15002_2") }, sand: { - text: 1359, + text: 1382, url: getIcon("UI_RelicIcon_15002_5") }, cup: { - text: 1358, + text: 1381, url: getIcon("UI_RelicIcon_15002_1") }, head: { - text: 1360, + text: 1383, url: getIcon("UI_RelicIcon_15002_3") }, @@ -2176,52 +2176,52 @@ export default { "VourukashasGlow": { eng: "VourukashasGlow", name2: "VourukashasGlow", - nameLocale: 1379, + nameLocale: 1403, minStar: 4, maxStar: 5, - effect2: 1213, + effect2: 1234, - effect4: 195, + effect4: 197, flower: { - text: 1112, + text: 1132, url: getIcon("UI_RelicIcon_15030_4") }, feather: { - text: 1187, + text: 1208, url: getIcon("UI_RelicIcon_15030_2") }, sand: { - text: 99, + text: 101, url: getIcon("UI_RelicIcon_15030_5") }, cup: { - text: 771, + text: 784, url: getIcon("UI_RelicIcon_15030_1") }, head: { - text: 1111, + text: 1131, url: getIcon("UI_RelicIcon_15030_3") }, config4: [ - {"default":4.0,"max":5.0,"min":0.0,"name":"stack","title":575,"type":"float"}, + {"default":4.0,"max":5.0,"min":0.0,"name":"stack","title":581,"type":"float"}, ], }, @@ -2229,46 +2229,46 @@ export default { "wandererTroupe": { eng: "wandererTroupe", name2: "WanderersTroupe", - nameLocale: 1062, + nameLocale: 1080, minStar: 4, maxStar: 5, - effect2: 221, + effect2: 228, - effect4: 1460, + effect4: 1486, flower: { - text: 100, + text: 102, url: getIcon("UI_RelicIcon_15003_4") }, feather: { - text: 1193, + text: 1214, url: getIcon("UI_RelicIcon_15003_2") }, sand: { - text: 1332, + text: 1355, url: getIcon("UI_RelicIcon_15003_5") }, cup: { - text: 365, + text: 371, url: getIcon("UI_RelicIcon_15003_1") }, head: { - text: 679, + text: 688, url: getIcon("UI_RelicIcon_15003_3") }, diff --git a/src/assets/_gen_buff.js b/src/assets/_gen_buff.js index 1b688e85..7c558cbf 100644 --- a/src/assets/_gen_buff.js +++ b/src/assets/_gen_buff.js @@ -270,7 +270,7 @@ export default { "ATKPercentage": { name: "ATKPercentage", - nameLocale: 691, + nameLocale: 700, description: null, @@ -280,14 +280,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":727,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":739,"type":"floatPercentageInput"}, ], }, "DEFPercentage": { name: "DEFPercentage", - nameLocale: 1650, + nameLocale: 1680, description: null, @@ -297,14 +297,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":727,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":739,"type":"floatPercentageInput"}, ], }, "HPPercentage": { name: "HPPercentage", - nameLocale: 1203, + nameLocale: 1224, description: null, @@ -314,14 +314,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":727,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":739,"type":"floatPercentageInput"}, ], }, "ATKFixed": { name: "ATKFixed", - nameLocale: 690, + nameLocale: 699, description: null, @@ -331,14 +331,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"value","title":727,"type":"floatInput"}, + {"default":0.0,"name":"value","title":739,"type":"floatInput"}, ], }, "DEFFixed": { name: "DEFFixed", - nameLocale: 1649, + nameLocale: 1679, description: null, @@ -348,14 +348,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"value","title":727,"type":"floatInput"}, + {"default":0.0,"name":"value","title":739,"type":"floatInput"}, ], }, "HPFixed": { name: "HPFixed", - nameLocale: 1202, + nameLocale: 1223, description: null, @@ -365,14 +365,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"value","title":727,"type":"floatInput"}, + {"default":0.0,"name":"value","title":739,"type":"floatInput"}, ], }, "Critical": { name: "Critical", - nameLocale: 948, + nameLocale: 963, description: null, @@ -382,14 +382,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":727,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":739,"type":"floatPercentageInput"}, ], }, "CriticalDamage": { name: "CriticalDamage", - nameLocale: 944, + nameLocale: 959, description: null, @@ -399,14 +399,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":727,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":739,"type":"floatPercentageInput"}, ], }, "CustomBonus": { name: "CustomBonus", - nameLocale: 167, + nameLocale: 169, description: null, @@ -416,14 +416,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":727,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":739,"type":"floatPercentageInput"}, ], }, "ElementalMastery": { name: "ElementalMastery", - nameLocale: 217, + nameLocale: 223, description: null, @@ -433,14 +433,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"value","title":727,"type":"floatInput"}, + {"default":0.0,"name":"value","title":739,"type":"floatInput"}, ], }, "Recharge": { name: "Recharge", - nameLocale: 185, + nameLocale: 187, description: null, @@ -450,14 +450,14 @@ export default { genre: "Common", config: [ - {"default":20.0,"name":"p","title":727,"type":"floatPercentageInput"}, + {"default":20.0,"name":"p","title":739,"type":"floatPercentageInput"}, ], }, "DEFMinus": { name: "DEFMinus", - nameLocale: 270, + nameLocale: 276, description: 0, @@ -467,14 +467,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":727,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":739,"type":"floatPercentageInput"}, ], }, "ResMinus": { name: "ResMinus", - nameLocale: 269, + nameLocale: 275, description: null, @@ -484,14 +484,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":727,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":739,"type":"floatPercentageInput"}, ], }, "HealingBonus": { name: "HealingBonus", - nameLocale: 1043, + nameLocale: 1061, description: null, @@ -501,16 +501,16 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":727,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":739,"type":"floatPercentageInput"}, ], }, "BaseDmg": { name: "BaseDmg", - nameLocale: 439, + nameLocale: 446, - description: 1536, + description: 1562, badge: BaseDmg_image, @@ -518,16 +518,16 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"value","title":727,"type":"floatInput"}, + {"default":0.0,"name":"value","title":739,"type":"floatInput"}, ], }, "AlbedoTalent2": { name: "AlbedoTalent2", - nameLocale: 1662, + nameLocale: 1692, - description: 1667, + description: 1697, badge: getImage("Albedo"), @@ -540,9 +540,9 @@ export default { "AlbedoC4": { name: "AlbedoC4", - nameLocale: 1663, + nameLocale: 1693, - description: 1665, + description: 1695, badge: getImage("Albedo"), @@ -555,9 +555,9 @@ export default { "AlbedoC6": { name: "AlbedoC6", - nameLocale: 1661, + nameLocale: 1691, - description: 1666, + description: 1696, badge: getImage("Albedo"), @@ -570,9 +570,9 @@ export default { "AloyTalent1": { name: "AloyTalent1", - nameLocale: 434, + nameLocale: 440, - description: 435, + description: 441, badge: getImage("Aloy"), @@ -585,9 +585,9 @@ export default { "AratakiIttoC4": { name: "AratakiIttoC4", - nameLocale: 1392, + nameLocale: 1416, - description: 1394, + description: 1418, badge: getImage("Itto"), @@ -600,9 +600,9 @@ export default { "BeidouC6": { name: "BeidouC6", - nameLocale: 312, + nameLocale: 318, - description: 314, + description: 320, badge: getImage("Beidou"), @@ -615,9 +615,9 @@ export default { "BennettQ": { name: "BennettQ", - nameLocale: 1178, + nameLocale: 1199, - description: 1181, + description: 1202, badge: getImage("Bennett"), @@ -625,20 +625,20 @@ export default { genre: "Character", config: [ - {"default":800.0,"name":"base_atk","title":1183,"type":"floatInput"}, + {"default":800.0,"name":"base_atk","title":1204,"type":"floatInput"}, - {"default":true,"name":"c1","title":789,"type":"bool"}, + {"default":true,"name":"c1","title":802,"type":"bool"}, - {"default":10,"max":15,"min":1,"name":"skill3","title":659,"type":"int"}, + {"default":10,"max":15,"min":1,"name":"skill3","title":668,"type":"int"}, ], }, "BennettC6": { name: "BennettC6", - nameLocale: 1177, + nameLocale: 1198, - description: 1182, + description: 1203, badge: getImage("Bennett"), @@ -651,9 +651,9 @@ export default { "ChongyunTalent2": { name: "ChongyunTalent2", - nameLocale: 1586, + nameLocale: 1612, - description: 1588, + description: 1614, badge: getImage("Chongyun"), @@ -666,9 +666,9 @@ export default { "DionaC6G50": { name: "DionaC6G50", - nameLocale: 1564, + nameLocale: 1590, - description: 1566, + description: 1592, badge: getImage("Diona"), @@ -681,9 +681,9 @@ export default { "EulaE": { name: "EulaE", - nameLocale: 163, + nameLocale: 165, - description: 165, + description: 167, badge: getImage("Eula"), @@ -691,16 +691,16 @@ export default { genre: "Character", config: [ - {"default":9,"max":15,"min":1,"name":"skill2","title":659,"type":"int"}, + {"default":9,"max":15,"min":1,"name":"skill2","title":668,"type":"int"}, ], }, "GanyuTalent2": { name: "GanyuTalent2", - nameLocale: 1197, + nameLocale: 1218, - description: 1201, + description: 1222, badge: getImage("Ganyu"), @@ -713,9 +713,9 @@ export default { "GanyuC1": { name: "GanyuC1", - nameLocale: 1198, + nameLocale: 1219, - description: 1200, + description: 1221, badge: getImage("Ganyu"), @@ -728,9 +728,9 @@ export default { "GorouE1": { name: "GorouE1", - nameLocale: 145, + nameLocale: 147, - description: 150, + description: 152, badge: getImage("Gorou"), @@ -738,16 +738,16 @@ export default { genre: "Character", config: [ - {"default":10,"max":15,"min":1,"name":"skill2","title":149,"type":"int"}, + {"default":10,"max":15,"min":1,"name":"skill2","title":151,"type":"int"}, ], }, "GorouE3": { name: "GorouE3", - nameLocale: 146, + nameLocale: 148, - description: 151, + description: 153, badge: getImage("Gorou"), @@ -760,9 +760,9 @@ export default { "GorouTalent1": { name: "GorouTalent1", - nameLocale: 144, + nameLocale: 146, - description: 153, + description: 155, badge: getImage("Gorou"), @@ -775,9 +775,9 @@ export default { "GorouC6": { name: "GorouC6", - nameLocale: 147, + nameLocale: 149, - description: 152, + description: 154, badge: getImage("Gorou"), @@ -785,16 +785,16 @@ export default { genre: "Character", config: [ - {"default":1,"max":3,"min":1,"name":"level","title":1713,"type":"int"}, + {"default":1,"max":3,"min":1,"name":"level","title":1745,"type":"int"}, ], }, "HuTaoTalent1": { name: "HuTaoTalent1", - nameLocale: 1370, + nameLocale: 1394, - description: 1372, + description: 1396, badge: getImage("Hutao"), @@ -807,9 +807,9 @@ export default { "JeanC4": { name: "JeanC4", - nameLocale: 1190, + nameLocale: 1211, - description: 1192, + description: 1213, badge: getImage("Qin"), @@ -822,9 +822,9 @@ export default { "KaedeharaKazuhaTalent2": { name: "KaedeharaKazuhaTalent2", - nameLocale: 990, + nameLocale: 1008, - description: 994, + description: 1012, badge: getImage("Kazuha"), @@ -832,18 +832,18 @@ export default { genre: "Character", config: [ - {"default":"Electro","name":"element","title":639,"type":"element4"}, + {"default":"Electro","name":"element","title":647,"type":"element4"}, - {"default":800.0,"name":"em","title":66,"type":"floatInput"}, + {"default":800.0,"name":"em","title":68,"type":"floatInput"}, ], }, "KaedeharaKazuhaC2": { name: "KaedeharaKazuhaC2", - nameLocale: 989, + nameLocale: 1007, - description: 993, + description: 1011, badge: getImage("Kazuha"), @@ -856,9 +856,9 @@ export default { "KamisatoAyakaC4": { name: "KamisatoAyakaC4", - nameLocale: 1290, + nameLocale: 1313, - description: 1340, + description: 1363, badge: getImage("Ayaka"), @@ -871,9 +871,9 @@ export default { "KleeC2": { name: "KleeC2", - nameLocale: 357, + nameLocale: 363, - description: 359, + description: 365, badge: getImage("Klee"), @@ -886,9 +886,9 @@ export default { "KleeC6": { name: "KleeC6", - nameLocale: 356, + nameLocale: 362, - description: 360, + description: 366, badge: getImage("Klee"), @@ -901,9 +901,9 @@ export default { "KujouSaraEOrQ": { name: "KujouSaraEOrQ", - nameLocale: 103, + nameLocale: 105, - description: 106, + description: 108, badge: getImage("Sara"), @@ -911,20 +911,20 @@ export default { genre: "Character", config: [ - {"default":700.0,"name":"base_atk","title":107,"type":"floatInput"}, + {"default":700.0,"name":"base_atk","title":109,"type":"floatInput"}, - {"default":false,"name":"c6","title":792,"type":"bool"}, + {"default":false,"name":"c6","title":805,"type":"bool"}, - {"default":10,"max":15,"min":1,"name":"skill2","title":10,"type":"int"}, + {"default":10,"max":15,"min":1,"name":"skill2","title":12,"type":"int"}, ], }, "LisaTalent2": { name: "LisaTalent2", - nameLocale: 94, + nameLocale: 96, - description: 96, + description: 98, badge: getImage("Lisa"), @@ -937,9 +937,9 @@ export default { "MonaQ": { name: "MonaQ", - nameLocale: 1400, + nameLocale: 1424, - description: 1403, + description: 1427, badge: getImage("Mona"), @@ -947,18 +947,18 @@ export default { genre: "Character", config: [ - {"default":9,"max":15,"min":1,"name":"skill3","title":16,"type":"int"}, + {"default":9,"max":15,"min":1,"name":"skill3","title":18,"type":"int"}, - {"default":false,"name":"c4","title":791,"type":"bool"}, + {"default":false,"name":"c4","title":804,"type":"bool"}, ], }, "MonaC1": { name: "MonaC1", - nameLocale: 1401, + nameLocale: 1425, - description: 1404, + description: 1428, badge: getImage("Mona"), @@ -971,9 +971,9 @@ export default { "NingguangTalent2": { name: "NingguangTalent2", - nameLocale: 273, + nameLocale: 279, - description: 275, + description: 281, badge: getImage("Ningguang"), @@ -986,9 +986,9 @@ export default { "RaidenShogunE": { name: "RaidenShogunE", - nameLocale: 1694, + nameLocale: 1726, - description: 1697, + description: 1729, badge: getImage("Shougun"), @@ -996,18 +996,18 @@ export default { genre: "Character", config: [ - {"default":8,"max":15,"min":1,"name":"skill2","title":1696,"type":"int"}, + {"default":8,"max":15,"min":1,"name":"skill2","title":1728,"type":"int"}, - {"default":80,"max":100,"min":20,"name":"energy","title":341,"type":"int"}, + {"default":80,"max":100,"min":20,"name":"energy","title":347,"type":"int"}, ], }, "RaidenShogunC4": { name: "RaidenShogunC4", - nameLocale: 1693, + nameLocale: 1725, - description: 1698, + description: 1730, badge: getImage("Shougun"), @@ -1020,9 +1020,9 @@ export default { "RazorC4": { name: "RazorC4", - nameLocale: 1687, + nameLocale: 1719, - description: 1689, + description: 1721, badge: getImage("Razor"), @@ -1035,9 +1035,9 @@ export default { "RosariaTalent2": { name: "RosariaTalent2", - nameLocale: 1348, + nameLocale: 1371, - description: 1351, + description: 1374, badge: getImage("Rosaria"), @@ -1045,16 +1045,16 @@ export default { genre: "Character", config: [ - {"default":70.0,"name":"crit","title":1352,"type":"floatPercentageInput"}, + {"default":70.0,"name":"crit","title":1375,"type":"floatPercentageInput"}, ], }, "RosariaC6": { name: "RosariaC6", - nameLocale: 1347, + nameLocale: 1370, - description: 1350, + description: 1373, badge: getImage("Rosaria"), @@ -1067,9 +1067,9 @@ export default { "ShenheE": { name: "ShenheE", - nameLocale: 1227, + nameLocale: 1248, - description: 1233, + description: 1254, badge: getImage("Shenhe"), @@ -1077,18 +1077,18 @@ export default { genre: "Character", config: [ - {"default":3000.0,"name":"atk","title":1238,"type":"floatInput"}, + {"default":3000.0,"name":"atk","title":1259,"type":"floatInput"}, - {"default":8,"max":15,"min":1,"name":"skill2","title":1232,"type":"int"}, + {"default":8,"max":15,"min":1,"name":"skill2","title":1253,"type":"int"}, ], }, "ShenheQ": { name: "ShenheQ", - nameLocale: 1229, + nameLocale: 1250, - description: 1235, + description: 1256, badge: getImage("Shenhe"), @@ -1096,16 +1096,16 @@ export default { genre: "Character", config: [ - {"default":8,"max":15,"min":1,"name":"skill3","title":1234,"type":"int"}, + {"default":8,"max":15,"min":1,"name":"skill3","title":1255,"type":"int"}, ], }, "ShenheTalent1": { name: "ShenheTalent1", - nameLocale: 1228, + nameLocale: 1249, - description: 1236, + description: 1257, badge: getImage("Shenhe"), @@ -1113,16 +1113,16 @@ export default { genre: "Character", config: [ - {"default":false,"name":"c2","title":790,"type":"bool"}, + {"default":false,"name":"c2","title":803,"type":"bool"}, ], }, "ShenheTalent2": { name: "ShenheTalent2", - nameLocale: 1230, + nameLocale: 1251, - description: 1237, + description: 1258, badge: getImage("Shenhe"), @@ -1130,16 +1130,16 @@ export default { genre: "Character", config: [ - {"default":0,"name":"t","options":["点按","长按"],"title":660,"type":"option"}, + {"default":0,"name":"t","options":["点按","长按"],"title":669,"type":"option"}, ], }, "SucroseTalent1": { name: "SucroseTalent1", - nameLocale: 1259, + nameLocale: 1281, - description: 1262, + description: 1284, badge: getImage("Sucrose"), @@ -1152,9 +1152,9 @@ export default { "SucroseTalent2": { name: "SucroseTalent2", - nameLocale: 1257, + nameLocale: 1279, - description: 1263, + description: 1285, badge: getImage("Sucrose"), @@ -1162,16 +1162,16 @@ export default { genre: "Character", config: [ - {"default":200.0,"name":"em","title":1264,"type":"floatInput"}, + {"default":200.0,"name":"em","title":1286,"type":"floatInput"}, ], }, "SucroseC6": { name: "SucroseC6", - nameLocale: 1258, + nameLocale: 1280, - description: 1261, + description: 1283, badge: getImage("Sucrose"), @@ -1179,16 +1179,16 @@ export default { genre: "Character", config: [ - {"default":"Electro","name":"element","title":644,"type":"element4"}, + {"default":"Electro","name":"element","title":652,"type":"element4"}, ], }, "ThomaTalent1": { name: "ThomaTalent1", - nameLocale: 635, + nameLocale: 643, - description: 638, + description: 646, badge: getImage("Tohma"), @@ -1196,16 +1196,16 @@ export default { genre: "Character", config: [ - {"default":2.0,"max":5.0,"min":0.0,"name":"stack","title":350,"type":"float"}, + {"default":2.0,"max":5.0,"min":0.0,"name":"stack","title":356,"type":"float"}, ], }, "ThomaC6": { name: "ThomaC6", - nameLocale: 634, + nameLocale: 642, - description: 637, + description: 645, badge: getImage("Tohma"), @@ -1218,9 +1218,9 @@ export default { "VentiC2": { name: "VentiC2", - nameLocale: 1088, + nameLocale: 1107, - description: 1090, + description: 1109, badge: getImage("Venti"), @@ -1228,16 +1228,16 @@ export default { genre: "Character", config: [ - {"default":false,"name":"levitating","title":1428,"type":"bool"}, + {"default":false,"name":"levitating","title":1452,"type":"bool"}, ], }, "VentiC6": { name: "VentiC6", - nameLocale: 1087, + nameLocale: 1106, - description: 1091, + description: 1110, badge: getImage("Venti"), @@ -1245,18 +1245,18 @@ export default { genre: "Character", config: [ - {"default":true,"name":"is_convert","title":340,"type":"bool"}, + {"default":true,"name":"is_convert","title":346,"type":"bool"}, - {"default":"Electro","name":"element","title":1541,"type":"element4"}, + {"default":"Electro","name":"element","title":1567,"type":"element4"}, ], }, "XianglingTalent2": { name: "XianglingTalent2", - nameLocale: 1751, + nameLocale: 1783, - description: 1755, + description: 1787, badge: getImage("Xiangling"), @@ -1269,9 +1269,9 @@ export default { "XianglingC1": { name: "XianglingC1", - nameLocale: 1749, + nameLocale: 1781, - description: 1753, + description: 1785, badge: getImage("Xiangling"), @@ -1284,9 +1284,9 @@ export default { "XianglingC6": { name: "XianglingC6", - nameLocale: 1750, + nameLocale: 1782, - description: 1754, + description: 1786, badge: getImage("Xiangling"), @@ -1299,9 +1299,9 @@ export default { "XingqiuC2": { name: "XingqiuC2", - nameLocale: 1444, + nameLocale: 1468, - description: 1446, + description: 1470, badge: getImage("Xingqiu"), @@ -1314,9 +1314,9 @@ export default { "XinyanC4": { name: "XinyanC4", - nameLocale: 1547, + nameLocale: 1573, - description: 1551, + description: 1577, badge: getImage("Xinyan"), @@ -1329,9 +1329,9 @@ export default { "XinyanTalent2": { name: "XinyanTalent2", - nameLocale: 1548, + nameLocale: 1574, - description: 1552, + description: 1578, badge: getImage("Xinyan"), @@ -1344,9 +1344,9 @@ export default { "YaeMikoC4": { name: "YaeMikoC4", - nameLocale: 231, + nameLocale: 237, - description: 233, + description: 239, badge: getImage("Yae"), @@ -1359,9 +1359,9 @@ export default { "YoimiyaTalent2": { name: "YoimiyaTalent2", - nameLocale: 542, + nameLocale: 549, - description: 544, + description: 551, badge: getImage("Yoimiya"), @@ -1369,16 +1369,16 @@ export default { genre: "Character", config: [ - {"default":0,"max":10,"min":0,"name":"talent1_stack","title":39,"type":"int"}, + {"default":0,"max":10,"min":0,"name":"talent1_stack","title":41,"type":"int"}, ], }, "YunjinQ": { name: "YunjinQ", - nameLocale: 133, + nameLocale: 135, - description: 135, + description: 137, badge: getImage("Yunjin"), @@ -1386,22 +1386,22 @@ export default { genre: "Character", config: [ - {"default":10,"max":15,"min":1,"name":"skill3","title":16,"type":"int"}, + {"default":10,"max":15,"min":1,"name":"skill3","title":18,"type":"int"}, - {"default":2000.0,"name":"def","title":137,"type":"floatInput"}, + {"default":2000.0,"name":"def","title":139,"type":"floatInput"}, - {"default":true,"name":"talent2","title":5,"type":"bool"}, + {"default":true,"name":"talent2","title":7,"type":"bool"}, - {"default":4,"max":4,"min":1,"name":"ele_count","title":1637,"type":"int"}, + {"default":4,"max":4,"min":1,"name":"ele_count","title":1665,"type":"int"}, ], }, "YunjinC2": { name: "YunjinC2", - nameLocale: 132, + nameLocale: 134, - description: 136, + description: 138, badge: getImage("Yunjin"), @@ -1414,9 +1414,9 @@ export default { "ZhongliShield": { name: "ZhongliShield", - nameLocale: 1620, + nameLocale: 1647, - description: 1622, + description: 1649, badge: getImage("Zhongli"), @@ -1429,9 +1429,9 @@ export default { "YelanTalent2": { name: "YelanTalent2", - nameLocale: 458, + nameLocale: 464, - description: 462, + description: 468, badge: getImage("Yelan"), @@ -1439,16 +1439,16 @@ export default { genre: "Character", config: [ - {"default":14,"max":14,"min":0,"name":"secs","title":1335,"type":"int"}, + {"default":14,"max":14,"min":0,"name":"secs","title":1358,"type":"int"}, ], }, "YelanC4": { name: "YelanC4", - nameLocale: 459, + nameLocale: 465, - description: 461, + description: 467, badge: getImage("Yelan"), @@ -1456,16 +1456,16 @@ export default { genre: "Character", config: [ - {"default":4,"max":4,"min":1,"name":"count","title":1001,"type":"int"}, + {"default":4,"max":4,"min":1,"name":"count","title":1019,"type":"int"}, ], }, "KamisatoAyatoQ": { name: "KamisatoAyatoQ", - nameLocale: 1284, + nameLocale: 1307, - description: 1287, + description: 1310, badge: getImage("Ayato"), @@ -1473,16 +1473,16 @@ export default { genre: "Character", config: [ - {"default":8,"max":15,"min":1,"name":"skill_level","title":1286,"type":"int"}, + {"default":8,"max":15,"min":1,"name":"skill_level","title":1309,"type":"int"}, ], }, "ShikanoinHeizouTalent2": { name: "ShikanoinHeizouTalent2", - nameLocale: 1775, + nameLocale: 1807, - description: 1777, + description: 1809, badge: getImage("Heizo"), @@ -1495,9 +1495,9 @@ export default { "TighnariC4": { name: "TighnariC4", - nameLocale: 685, + nameLocale: 694, - description: 687, + description: 696, badge: getImage("Tighnari"), @@ -1505,16 +1505,16 @@ export default { genre: "Character", config: [ - {"default":false,"name":"after_reaction","title":1582,"type":"bool"}, + {"default":false,"name":"after_reaction","title":1608,"type":"bool"}, ], }, "DoriC4": { name: "DoriC4", - nameLocale: 455, + nameLocale: 461, - description: 456, + description: 462, badge: getImage("Dori"), @@ -1522,18 +1522,18 @@ export default { genre: "Character", config: [ - {"default":false,"name":"hp_below50","title":1208,"type":"bool"}, + {"default":false,"name":"hp_below50","title":1229,"type":"bool"}, - {"default":true,"name":"energy_below50","title":225,"type":"bool"}, + {"default":true,"name":"energy_below50","title":231,"type":"bool"}, ], }, "NilouTalent1": { name: "NilouTalent1", - nameLocale: 509, + nameLocale: 516, - description: 447, + description: 453, badge: getImage("Nilou"), @@ -1546,9 +1546,9 @@ export default { "NilouTalent2": { name: "NilouTalent2", - nameLocale: 510, + nameLocale: 517, - description: 437, + description: 443, badge: getImage("Nilou"), @@ -1556,16 +1556,16 @@ export default { genre: "Character", config: [ - {"default":60000.0,"name":"hp","title":512,"type":"floatInput"}, + {"default":60000.0,"name":"hp","title":519,"type":"floatInput"}, ], }, "CandaceQ": { name: "CandaceQ", - nameLocale: 426, + nameLocale: 432, - description: 1478, + description: 1504, badge: getImage("Candace"), @@ -1578,9 +1578,9 @@ export default { "CandaceTalent2": { name: "CandaceTalent2", - nameLocale: 425, + nameLocale: 431, - description: 445, + description: 451, badge: getImage("Candace"), @@ -1588,16 +1588,16 @@ export default { genre: "Character", config: [ - {"default":30000.0,"name":"hp","title":427,"type":"floatInput"}, + {"default":30000.0,"name":"hp","title":433,"type":"floatInput"}, ], }, "NahidaTalent1": { name: "NahidaTalent1", - nameLocale: 1328, + nameLocale: 1351, - description: 758, + description: 771, 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":1644,"type":"float"}, + {"default":1000.0,"max":3000.0,"min":0.0,"name":"max_em","title":1673,"type":"float"}, ], }, "FaruzanQ": { name: "FaruzanQ", - nameLocale: 1048, + nameLocale: 1066, - description: 1175, + description: 1196, badge: getImage("Faruzan"), @@ -1622,26 +1622,26 @@ export default { genre: "Character", config: [ - {"default":650,"max":1000,"min":0,"name":"base_atk","title":1049,"type":"int"}, + {"default":650,"max":1000,"min":0,"name":"base_atk","title":1067,"type":"int"}, - {"default":10,"max":15,"min":1,"name":"q_level","title":16,"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":40,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate_q1","title":42,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate_q2","title":36,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate_q2","title":39,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate_talent2","title":18,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate_talent2","title":20,"type":"float"}, - {"default":false,"name":"enable_c6","title":234,"type":"bool"}, + {"default":false,"name":"enable_c6","title":240,"type":"bool"}, ], }, "Mika": { name: "Mika", - nameLocale: 1320, + nameLocale: 1343, - description: 786, + description: 799, 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":180,"type":"float"}, + {"default":3.0,"max":5.0,"min":0.0,"name":"stack_talent2","title":182,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate_c6","title":236,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate_c6","title":242,"type":"float"}, ], }, "KavehQ": { name: "KavehQ", - nameLocale: 332, + nameLocale: 338, - description: 1642, + description: 1670, badge: getImage("Kaveh"), @@ -1668,18 +1668,18 @@ export default { genre: "Character", config: [ - {"default":8,"max":15,"min":1,"name":"q_level","title":333,"type":"int"}, + {"default":8,"max":15,"min":1,"name":"q_level","title":339,"type":"int"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1023,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1041,"type":"float"}, ], }, "BaizhuTalent2": { name: "BaizhuTalent2", - nameLocale: 1242, + nameLocale: 1263, - description: 343, + description: 349, badge: getImage("Baizhuer"), @@ -1687,18 +1687,18 @@ export default { genre: "Character", config: [ - {"default":50000.0,"max":50000.0,"min":0.0,"name":"hp","title":1244,"type":"float"}, + {"default":50000.0,"max":50000.0,"min":0.0,"name":"hp","title":1265,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1023,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1041,"type":"float"}, ], }, "BaizhuC4": { name: "BaizhuC4", - nameLocale: 1243, + nameLocale: 1264, - description: 759, + description: 772, badge: getImage("Baizhuer"), @@ -1706,16 +1706,16 @@ export default { genre: "Character", config: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1023,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1041,"type":"float"}, ], }, "FreedomSworn": { name: "FreedomSworn", - nameLocale: 1383, + nameLocale: 1407, - description: 20, + description: 22, badge: getImageW("Sword_Widsith"), @@ -1723,16 +1723,16 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1323,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1346,"type":"intInput"}, ], }, "SongOfBrokenPines": { name: "SongOfBrokenPines", - nameLocale: 986, + nameLocale: 1002, - description: 21, + description: 23, badge: getImageW("Claymore_Widsith"), @@ -1740,16 +1740,16 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1323,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1346,"type":"intInput"}, ], }, "WolfsGravestone": { name: "WolfsGravestone", - nameLocale: 1152, + nameLocale: 1173, - description: 704, + description: 713, badge: getImageW("Claymore_Wolfmound"), @@ -1757,16 +1757,16 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1323,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1346,"type":"intInput"}, ], }, "ThrillingTalesOfDragonSlayers": { name: "ThrillingTalesOfDragonSlayers", - nameLocale: 1492, + nameLocale: 1518, - description: 166, + description: 168, badge: getImageW("Catalyst_Pulpfic"), @@ -1774,16 +1774,16 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1323,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1346,"type":"intInput"}, ], }, "ElegyOfTheEnd": { name: "ElegyOfTheEnd", - nameLocale: 1334, + nameLocale: 1357, - description: 323, + description: 329, badge: getImageW("Bow_Widsith"), @@ -1791,16 +1791,16 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1323,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1346,"type":"intInput"}, ], }, "HakushinRing": { name: "HakushinRing", - nameLocale: 1249, + nameLocale: 1270, - description: 1010, + description: 1028, badge: getImageW("Catalyst_Bakufu"), @@ -1808,18 +1808,18 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1323,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1346,"type":"intInput"}, - {"default":"Electro","name":"element","title":183,"type":"element8"}, + {"default":"Electro","name":"element","title":185,"type":"element8"}, ], }, "SapwoodBlade": { name: "SapwoodBlade", - nameLocale: 338, + nameLocale: 344, - description: 671, + description: 680, badge: getImageW("Sword_Arakalari"), @@ -1827,18 +1827,18 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1323,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1346,"type":"intInput"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":594,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":601,"type":"float"}, ], }, "Moonpiercer": { name: "Moonpiercer", - nameLocale: 1512, + nameLocale: 1538, - description: 672, + description: 681, badge: getImageW("Pole_Arakalari"), @@ -1846,16 +1846,16 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1323,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1346,"type":"intInput"}, ], }, "XiphosMoonlight": { name: "XiphosMoonlight", - nameLocale: 1463, + nameLocale: 1489, - description: 1457, + description: 1483, badge: getImageW("Sword_Pleroma"), @@ -1863,18 +1863,18 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1323,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1346,"type":"intInput"}, - {"default":900.0,"name":"em","title":218,"type":"floatInput"}, + {"default":900.0,"name":"em","title":224,"type":"floatInput"}, ], }, "MakhairaAquamarine": { name: "MakhairaAquamarine", - nameLocale: 1170, + nameLocale: 1191, - description: 29, + description: 31, badge: getImageW("Claymore_Pleroma"), @@ -1882,18 +1882,18 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1323,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1346,"type":"intInput"}, - {"default":900.0,"name":"em","title":218,"type":"floatInput"}, + {"default":900.0,"name":"em","title":224,"type":"floatInput"}, ], }, "KeyOfKhajNisut": { name: "KeyOfKhajNisut", - nameLocale: 421, + nameLocale: 427, - description: 558, + description: 565, badge: getImageW("Sword_Deshret"), @@ -1901,18 +1901,18 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1323,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1346,"type":"intInput"}, - {"default":20000.0,"name":"hp","title":1202,"type":"floatInput"}, + {"default":20000.0,"name":"hp","title":1223,"type":"floatInput"}, ], }, "ResonancePyro2": { name: "ResonancePyro2", - nameLocale: 191, + nameLocale: 193, - description: 694, + description: 703, badge: ResonancePyro2_image, @@ -1925,9 +1925,9 @@ export default { "ResonanceCryo2": { name: "ResonanceCryo2", - nameLocale: 192, + nameLocale: 194, - description: 689, + description: 698, badge: ResonanceCryo2_image, @@ -1935,16 +1935,16 @@ export default { genre: "Resonance", config: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":594,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":601,"type":"float"}, ], }, "ResonanceGeo2": { name: "ResonanceGeo2", - nameLocale: 189, + nameLocale: 191, - description: 664, + description: 673, badge: ResonanceGeo2_image, @@ -1952,18 +1952,18 @@ export default { genre: "Resonance", config: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate1","title":714,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate1","title":724,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate2","title":715,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate2","title":725,"type":"float"}, ], }, "ResonanceHydro2": { name: "ResonanceHydro2", - nameLocale: 190, + nameLocale: 192, - description: 1108, + description: 1127, badge: ResonanceHydro2_image, @@ -1976,9 +1976,9 @@ export default { "ResonanceDendro2": { name: "ResonanceDendro2", - nameLocale: 193, + nameLocale: 195, - description: 219, + description: 225, badge: ResonanceDendro2_image, @@ -1986,18 +1986,18 @@ export default { genre: "Resonance", config: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate1","title":714,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate1","title":724,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate2","title":715,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate2","title":725,"type":"float"}, ], }, "Instructor4": { name: "Instructor4", - nameLocale: 721, + nameLocale: 733, - description: 1483, + description: 1509, badge: getImageA("UI_RelicIcon_10007_4"), @@ -2010,9 +2010,9 @@ export default { "NoblesseOblige4": { name: "NoblesseOblige4", - nameLocale: 778, + nameLocale: 791, - description: 754, + description: 767, badge: getImageA("UI_RelicIcon_15007_4"), @@ -2025,9 +2025,9 @@ export default { "ArchaicPetra4": { name: "ArchaicPetra4", - nameLocale: 619, + nameLocale: 627, - description: 1421, + description: 1445, badge: getImageA("UI_RelicIcon_15014_4"), @@ -2035,16 +2035,16 @@ export default { genre: "Artifact", config: [ - {"default":"Electro","name":"element","title":1337,"type":"element4"}, + {"default":"Electro","name":"element","title":1360,"type":"element4"}, ], }, "ViridescentVenerer4": { name: "ViridescentVenerer4", - nameLocale: 1357, + nameLocale: 1380, - description: 1002, + description: 1020, badge: getImageA("UI_RelicIcon_15002_4"), @@ -2052,16 +2052,16 @@ export default { genre: "Artifact", config: [ - {"default":"Electro","name":"element","title":639,"type":"element4"}, + {"default":"Electro","name":"element","title":647,"type":"element4"}, ], }, "TenacityOfTheMillelith4": { name: "TenacityOfTheMillelith4", - nameLocale: 321, + nameLocale: 327, - description: 197, + description: 201, badge: getImageA("UI_RelicIcon_15017_4"), @@ -2074,9 +2074,9 @@ export default { "DeepwoodMemories4": { name: "DeepwoodMemories4", - nameLocale: 1077, + nameLocale: 1096, - description: 203, + description: 208, 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":594,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":601,"type":"float"}, ], }, diff --git a/src/assets/_gen_character.js b/src/assets/_gen_character.js index 4d213545..4ab1e2f0 100644 --- a/src/assets/_gen_character.js +++ b/src/assets/_gen_character.js @@ -152,6 +152,10 @@ import Lisa_splash from "@image/characters/Lisa_splash" // import Lynette_avatar from "@image/characters/Lynette_avatar" import Lynette_splash from "@image/characters/Lynette_splash" +// import Lyney_card from "@image/characters/Lyney_card" +// import Lyney_avatar from "@image/characters/Lyney_avatar" +import Lyney_splash from "@image/characters/Lyney_splash" + // import Mona_card from "@image/characters/Mona_card" // import Mona_avatar from "@image/characters/Mona_avatar" import Mona_splash from "@image/characters/Mona_splash" @@ -290,7 +294,7 @@ export default { AetherAnemo: { name: "AetherAnemo", - nameLocale: 1309, + nameLocale: 1332, element: "Anemo", weapon: "Sword", star: 5, @@ -298,54 +302,54 @@ export default { // avatar: AetherAnemo_avatar, avatar: getName("PlayerBoy"), splash: AetherAnemo_splash, - skillName1: 818, - skillName2: 1721, - skillName3: 1720, + skillName1: 831, + skillName2: 1753, + skillName3: 1752, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 70 }, + { index: 2, text: 72 }, - { index: 3, text: 406 }, + { index: 3, text: 413 }, - { index: 4, text: 138 }, + { index: 4, text: 140 }, - { index: 5, text: 1598 }, + { index: 5, text: 1624 }, - { index: 6, text: 1600 }, + { index: 6, text: 1627 }, - { index: 7, text: 81 }, + { index: 7, text: 83 }, - { index: 8, text: 169 }, + { index: 8, text: 171 }, - { index: 9, text: 1758 }, + { index: 9, text: 1790 }, ], skillMap2: [ - { index: 10, text: 291 }, + { index: 10, text: 297 }, - { index: 11, text: 960 }, + { index: 11, text: 976 }, - { index: 12, text: 292 }, + { index: 12, text: 298 }, - { index: 13, text: 967 }, + { index: 13, text: 983 }, ], skillMap3: [ - { index: 14, text: 1788 }, + { index: 14, text: 1820 }, - { index: 15, text: 1670 }, + { index: 15, text: 1700 }, - { index: 18, text: 1669 }, + { index: 18, text: 1699 }, - { index: 17, text: 1671 }, + { index: 17, text: 1701 }, - { index: 16, text: 1668 }, + { index: 16, text: 1698 }, ], config: [ @@ -358,7 +362,7 @@ export default { Albedo: { name: "Albedo", - nameLocale: 1660, + nameLocale: 1690, element: "Geo", weapon: "Sword", star: 5, @@ -366,44 +370,44 @@ export default { // avatar: Albedo_avatar, avatar: getName("Albedo"), splash: Albedo_splash, - skillName1: 862, - skillName2: 290, - skillName3: 1501, + skillName1: 875, + skillName2: 296, + skillName3: 1527, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 70 }, + { index: 2, text: 72 }, - { index: 3, text: 406 }, + { index: 3, text: 413 }, - { index: 4, text: 138 }, + { index: 4, text: 140 }, - { index: 5, text: 1596 }, + { index: 5, text: 1621 }, - { index: 6, text: 1602 }, + { index: 6, text: 1626 }, - { index: 7, text: 81 }, + { index: 7, text: 83 }, - { index: 8, text: 169 }, + { index: 8, text: 171 }, - { index: 9, text: 1758 }, + { index: 9, text: 1790 }, ], skillMap2: [ - { index: 10, text: 646 }, + { index: 10, text: 655 }, - { index: 11, text: 294 }, + { index: 11, text: 300 }, ], skillMap3: [ - { index: 12, text: 1139 }, + { index: 12, text: 1160 }, - { index: 13, text: 1222 }, + { index: 13, text: 1243 }, ], config: [ @@ -416,7 +420,7 @@ export default { Alhaitham: { name: "Alhaitham", - nameLocale: 1375, + nameLocale: 1399, element: "Dendro", weapon: "Sword", star: 5, @@ -424,69 +428,69 @@ export default { // avatar: Alhaitham_avatar, avatar: getName("Alhatham"), splash: Alhaitham_splash, - skillName1: 837, - skillName2: 242, - skillName3: 1018, + skillName1: 850, + skillName2: 248, + skillName3: 1036, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 71 }, + { index: 2, text: 73 }, - { index: 3, text: 72 }, + { index: 3, text: 74 }, - { index: 4, text: 406 }, + { index: 4, text: 413 }, - { index: 5, text: 138 }, + { index: 5, text: 140 }, - { index: 6, text: 1596 }, + { index: 6, text: 1621 }, - { index: 7, text: 1602 }, + { index: 7, text: 1626 }, - { index: 8, text: 81 }, + { index: 8, text: 83 }, - { index: 9, text: 169 }, + { index: 9, text: 171 }, - { index: 10, text: 1758 }, + { index: 10, text: 1790 }, ], skillMap2: [ - { index: 11, text: 1310 }, + { index: 11, text: 1333 }, { index: 12, text: 2 }, - { index: 13, text: 3 }, + { index: 13, text: 4 }, - { index: 14, text: 4 }, + { index: 14, text: 5 }, ], skillMap3: [ - { index: 15, text: 329 }, + { index: 15, text: 336 }, ], config: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"c2_stack","title":390,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"c2_stack","title":396,"type":"float"}, - {"default":0.0,"max":3.0,"min":0.0,"name":"c4_stack","title":392,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"c4_stack","title":398,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"c6_rate","title":396,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"c6_rate","title":402,"type":"float"}, ], configSkill: [ - {"default":true,"name":"under_e","title":1186,"type":"bool"}, + {"default":true,"name":"under_e","title":1207,"type":"bool"}, ], }, Aloy: { name: "Aloy", - nameLocale: 432, + nameLocale: 438, element: "Cryo", weapon: "Bow", star: 5, @@ -494,42 +498,42 @@ export default { // avatar: Aloy_avatar, avatar: getName("Aloy"), splash: Aloy_splash, - skillName1: 824, - skillName2: 256, - skillName3: 955, + skillName1: 837, + skillName2: 262, + skillName3: 970, skillMap1: [ - { index: 0, text: 49 }, + { index: 0, text: 51 }, - { index: 1, text: 50 }, + { index: 1, text: 52 }, - { index: 2, text: 119 }, + { index: 2, text: 121 }, - { index: 3, text: 70 }, + { index: 3, text: 72 }, - { index: 4, text: 406 }, + { index: 4, text: 413 }, - { index: 5, text: 1255 }, + { index: 5, text: 1277 }, - { index: 6, text: 1101 }, + { index: 6, text: 1120 }, - { index: 7, text: 81 }, + { index: 7, text: 83 }, - { index: 8, text: 169 }, + { index: 8, text: 171 }, - { index: 9, text: 1758 }, + { index: 9, text: 1790 }, ], skillMap2: [ - { index: 10, text: 255 }, + { index: 10, text: 261 }, - { index: 11, text: 266 }, + { index: 11, text: 272 }, ], skillMap3: [ - { index: 12, text: 646 }, + { index: 12, text: 655 }, ], config: [ @@ -537,14 +541,14 @@ export default { ], configSkill: [ - {"default":4,"max":4,"min":0,"name":"coil_count","title":1330,"type":"int"}, + {"default":4,"max":4,"min":0,"name":"coil_count","title":1353,"type":"int"}, ], }, Amber: { name: "Amber", - nameLocale: 527, + nameLocale: 534, element: "Pyro", weapon: "Bow", star: 4, @@ -552,42 +556,42 @@ export default { // avatar: Amber_avatar, avatar: getName("Ambor"), splash: Amber_splash, - skillName1: 850, - skillName2: 1141, - skillName3: 1316, + skillName1: 863, + skillName2: 1161, + skillName3: 1339, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 70 }, + { index: 2, text: 72 }, - { index: 3, text: 406 }, + { index: 3, text: 413 }, - { index: 4, text: 138 }, + { index: 4, text: 140 }, - { index: 5, text: 1255 }, + { index: 5, text: 1277 }, - { index: 6, text: 1101 }, + { index: 6, text: 1120 }, - { index: 7, text: 81 }, + { index: 7, text: 83 }, - { index: 8, text: 169 }, + { index: 8, text: 171 }, - { index: 9, text: 1758 }, + { index: 9, text: 1790 }, ], skillMap2: [ - { index: 10, text: 1142 }, + { index: 10, text: 1163 }, ], skillMap3: [ - { index: 11, text: 1317 }, + { index: 11, text: 1340 }, - { index: 12, text: 1318 }, + { index: 12, text: 1341 }, ], config: [ @@ -600,7 +604,7 @@ export default { AratakiItto: { name: "AratakiItto", - nameLocale: 1391, + nameLocale: 1415, element: "Geo", weapon: "Claymore", star: 5, @@ -608,35 +612,35 @@ export default { // avatar: AratakiItto_avatar, avatar: getName("Itto"), splash: AratakiItto_splash, - skillName1: 871, - skillName2: 1768, - skillName3: 972, + skillName1: 885, + skillName2: 1800, + skillName3: 988, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 70 }, + { index: 2, text: 72 }, - { index: 3, text: 406 }, + { index: 3, text: 413 }, - { index: 4, text: 1397 }, + { index: 4, text: 1421 }, - { index: 5, text: 1396 }, + { index: 5, text: 1420 }, - { index: 6, text: 573 }, + { index: 6, text: 580 }, - { index: 7, text: 81 }, + { index: 7, text: 83 }, - { index: 8, text: 169 }, + { index: 8, text: 171 }, - { index: 9, text: 1758 }, + { index: 9, text: 1790 }, ], skillMap2: [ - { index: 10, text: 646 }, + { index: 10, text: 655 }, ], skillMap3: [ @@ -647,14 +651,14 @@ export default { ], configSkill: [ - {"default":true,"name":"after_q","title":442,"type":"bool"}, + {"default":true,"name":"after_q","title":448,"type":"bool"}, ], }, Baizhu: { name: "Baizhu", - nameLocale: 1241, + nameLocale: 1262, element: "Dendro", weapon: "Catalyst", star: 5, @@ -662,47 +666,47 @@ export default { // avatar: Baizhu_avatar, avatar: getName("Baizhuer"), splash: Baizhu_splash, - skillName1: 867, - skillName2: 496, - skillName3: 621, + skillName1: 881, + skillName2: 503, + skillName3: 629, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 71 }, + { index: 2, text: 73 }, - { index: 3, text: 72 }, + { index: 3, text: 74 }, - { index: 4, text: 406 }, + { index: 4, text: 413 }, - { index: 5, text: 1594 }, + { index: 5, text: 1620 }, - { index: 6, text: 81 }, + { index: 6, text: 83 }, - { index: 7, text: 169 }, + { index: 7, text: 171 }, - { index: 8, text: 1758 }, + { index: 8, text: 1790 }, ], skillMap2: [ - { index: 9, text: 646 }, + { index: 9, text: 655 }, - { index: 10, text: 1047 }, + { index: 10, text: 1064 }, ], skillMap3: [ - { index: 12, text: 1116 }, + { index: 12, text: 1136 }, - { index: 11, text: 772 }, + { index: 11, text: 785 }, ], config: [ - {"default":false,"name":"hp_below_50","title":423,"type":"bool"}, + {"default":false,"name":"hp_below_50","title":429,"type":"bool"}, ], configSkill: [ @@ -712,7 +716,7 @@ export default { Barbara: { name: "Barbara", - nameLocale: 1377, + nameLocale: 1401, element: "Hydro", weapon: "Catalyst", star: 4, @@ -720,40 +724,40 @@ export default { // avatar: Barbara_avatar, avatar: getName("Barbara"), splash: Barbara_splash, - skillName1: 832, - skillName2: 1102, - skillName3: 1634, + skillName1: 845, + skillName2: 1121, + skillName3: 1661, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 70 }, + { index: 2, text: 72 }, - { index: 3, text: 406 }, + { index: 3, text: 413 }, - { index: 4, text: 1594 }, + { index: 4, text: 1620 }, - { index: 5, text: 81 }, + { index: 5, text: 83 }, - { index: 6, text: 169 }, + { index: 6, text: 171 }, - { index: 7, text: 1758 }, + { index: 7, text: 1790 }, ], skillMap2: [ - { index: 8, text: 385 }, + { index: 8, text: 392 }, - { index: 10, text: 677 }, + { index: 10, text: 686 }, - { index: 9, text: 1032 }, + { index: 9, text: 1050 }, ], skillMap3: [ - { index: 11, text: 1046 }, + { index: 11, text: 1065 }, ], config: [ @@ -766,7 +770,7 @@ export default { Beidou: { name: "Beidou", - nameLocale: 311, + nameLocale: 317, element: "Electro", weapon: "Claymore", star: 4, @@ -774,46 +778,46 @@ export default { // avatar: Beidou_avatar, avatar: getName("Beidou"), splash: Beidou_splash, - skillName1: 821, - skillName2: 682, - skillName3: 730, + skillName1: 834, + skillName2: 691, + skillName3: 742, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 70 }, + { index: 2, text: 72 }, - { index: 3, text: 406 }, + { index: 3, text: 413 }, - { index: 4, text: 138 }, + { index: 4, text: 140 }, - { index: 5, text: 1608 }, + { index: 5, text: 1634 }, - { index: 6, text: 1611 }, + { index: 6, text: 1637 }, - { index: 7, text: 81 }, + { index: 7, text: 83 }, - { index: 8, text: 169 }, + { index: 8, text: 171 }, - { index: 9, text: 1758 }, + { index: 9, text: 1790 }, ], skillMap2: [ - { index: 10, text: 439 }, + { index: 10, text: 446 }, - { index: 11, text: 45 }, + { index: 11, text: 47 }, - { index: 12, text: 116 }, + { index: 12, text: 118 }, ], skillMap3: [ - { index: 13, text: 646 }, + { index: 13, text: 655 }, - { index: 14, text: 1633 }, + { index: 14, text: 1660 }, ], config: [ @@ -826,7 +830,7 @@ export default { Bennett: { name: "Bennett", - nameLocale: 1176, + nameLocale: 1197, element: "Pyro", weapon: "Sword", star: 4, @@ -834,52 +838,52 @@ export default { // avatar: Bennett_avatar, avatar: getName("Bennett"), splash: Bennett_splash, - skillName1: 815, - skillName2: 1131, - skillName3: 1354, + skillName1: 828, + skillName2: 1151, + skillName3: 1377, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 70 }, + { index: 2, text: 72 }, - { index: 3, text: 406 }, + { index: 3, text: 413 }, - { index: 4, text: 138 }, + { index: 4, text: 140 }, - { index: 5, text: 1596 }, + { index: 5, text: 1621 }, - { index: 6, text: 1602 }, + { index: 6, text: 1626 }, - { index: 7, text: 81 }, + { index: 7, text: 83 }, - { index: 8, text: 169 }, + { index: 8, text: 171 }, - { index: 9, text: 1758 }, + { index: 9, text: 1790 }, ], skillMap2: [ - { index: 10, text: 1120 }, + { index: 10, text: 1140 }, - { index: 11, text: 56 }, + { index: 11, text: 58 }, - { index: 12, text: 57 }, + { index: 12, text: 59 }, - { index: 13, text: 126 }, + { index: 13, text: 128 }, - { index: 14, text: 127 }, + { index: 14, text: 129 }, - { index: 15, text: 1143 }, + { index: 15, text: 1162 }, ], skillMap3: [ - { index: 16, text: 646 }, + { index: 16, text: 655 }, - { index: 17, text: 675 }, + { index: 17, text: 684 }, ], config: [ @@ -892,7 +896,7 @@ export default { Candace: { name: "Candace", - nameLocale: 424, + nameLocale: 430, element: "Hydro", weapon: "Polearm", star: 4, @@ -900,59 +904,59 @@ export default { // avatar: Candace_avatar, avatar: getName("Candace"), splash: Candace_splash, - skillName1: 835, - skillName2: 419, - skillName3: 417, + skillName1: 848, + skillName2: 425, + skillName3: 423, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 71 }, + { index: 2, text: 73 }, - { index: 3, text: 72 }, + { index: 3, text: 74 }, - { index: 4, text: 406 }, + { index: 4, text: 413 }, - { index: 5, text: 1594 }, + { index: 5, text: 1620 }, - { index: 6, text: 81 }, + { index: 6, text: 83 }, - { index: 7, text: 169 }, + { index: 7, text: 171 }, - { index: 8, text: 1758 }, + { index: 8, text: 1790 }, ], skillMap2: [ - { index: 9, text: 440 }, + { index: 9, text: 445 }, - { index: 10, text: 1433 }, + { index: 10, text: 1457 }, ], skillMap3: [ - { index: 11, text: 646 }, + { index: 11, text: 655 }, - { index: 12, text: 1031 }, + { index: 12, text: 1049 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"c2_rate","title":389,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"c2_rate","title":395,"type":"float"}, ], configSkill: [ - {"default":true,"name":"crown","title":1522,"type":"bool"}, + {"default":true,"name":"crown","title":1548,"type":"bool"}, ], }, Chongyun: { name: "Chongyun", - nameLocale: 1585, + nameLocale: 1611, element: "Cryo", weapon: "Claymore", star: 4, @@ -960,38 +964,38 @@ export default { // avatar: Chongyun_avatar, avatar: getName("Chongyun"), splash: Chongyun_splash, - skillName1: 840, - skillName2: 1114, - skillName3: 1113, + skillName1: 853, + skillName2: 1134, + skillName3: 1133, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 70 }, + { index: 2, text: 72 }, - { index: 3, text: 406 }, + { index: 3, text: 413 }, - { index: 4, text: 1608 }, + { index: 4, text: 1634 }, - { index: 5, text: 1611 }, + { index: 5, text: 1637 }, - { index: 6, text: 81 }, + { index: 6, text: 83 }, - { index: 7, text: 169 }, + { index: 7, text: 171 }, - { index: 8, text: 1758 }, + { index: 8, text: 1790 }, ], skillMap2: [ - { index: 9, text: 646 }, + { index: 9, text: 655 }, ], skillMap3: [ - { index: 10, text: 646 }, + { index: 10, text: 655 }, ], config: [ @@ -1004,7 +1008,7 @@ export default { Collei: { name: "Collei", - nameLocale: 1000, + nameLocale: 1018, element: "Dendro", weapon: "Bow", star: 4, @@ -1012,45 +1016,45 @@ export default { // avatar: Collei_avatar, avatar: getName("Collei"), splash: Collei_splash, - skillName1: 848, - skillName2: 669, - skillName3: 1163, + skillName1: 861, + skillName2: 678, + skillName3: 1184, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 70 }, + { index: 2, text: 72 }, - { index: 3, text: 406 }, + { index: 3, text: 413 }, - { index: 4, text: 1255 }, + { index: 4, text: 1277 }, - { index: 5, text: 1101 }, + { index: 5, text: 1120 }, - { index: 6, text: 81 }, + { index: 6, text: 83 }, - { index: 7, text: 169 }, + { index: 7, text: 171 }, - { index: 8, text: 1758 }, + { index: 8, text: 1790 }, ], skillMap2: [ - { index: 9, text: 646 }, + { index: 9, text: 655 }, ], skillMap3: [ - { index: 10, text: 1140 }, + { index: 10, text: 1159 }, - { index: 11, text: 1535 }, + { index: 11, text: 1561 }, ], config: [ - {"default":false,"name":"background","title":444,"type":"bool"}, + {"default":false,"name":"background","title":450,"type":"bool"}, ], configSkill: [ @@ -1060,7 +1064,7 @@ export default { Cyno: { name: "Cyno", - nameLocale: 1520, + nameLocale: 1546, element: "Electro", weapon: "Polearm", star: 5, @@ -1068,53 +1072,53 @@ export default { // avatar: Cyno_avatar, avatar: getName("Cyno"), splash: Cyno_splash, - skillName1: 806, - skillName2: 1306, - skillName3: 418, + skillName1: 819, + skillName2: 1329, + skillName3: 424, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 73 }, + { index: 2, text: 75 }, - { index: 3, text: 406 }, + { index: 3, text: 413 }, - { index: 4, text: 1594 }, + { index: 4, text: 1620 }, - { index: 5, text: 81 }, + { index: 5, text: 83 }, - { index: 6, text: 169 }, + { index: 6, text: 171 }, - { index: 7, text: 1758 }, + { index: 7, text: 1790 }, - { index: 11, text: 368 }, + { index: 11, text: 374 }, - { index: 12, text: 371 }, + { index: 12, text: 377 }, - { index: 13, text: 369 }, + { index: 13, text: 375 }, - { index: 14, text: 375 }, + { index: 14, text: 381 }, - { index: 15, text: 372 }, + { index: 15, text: 378 }, - { index: 16, text: 377 }, + { index: 16, text: 383 }, - { index: 17, text: 370 }, + { index: 17, text: 376 }, - { index: 18, text: 373 }, + { index: 18, text: 379 }, - { index: 19, text: 378 }, + { index: 19, text: 384 }, ], skillMap2: [ - { index: 8, text: 646 }, + { index: 8, text: 655 }, - { index: 9, text: 374 }, + { index: 9, text: 380 }, - { index: 10, text: 376 }, + { index: 10, text: 382 }, ], skillMap3: [ @@ -1122,21 +1126,21 @@ export default { ], config: [ - {"default":4.0,"max":5.0,"min":0.0,"name":"c2_stack","title":387,"type":"float"}, + {"default":4.0,"max":5.0,"min":0.0,"name":"c2_stack","title":393,"type":"float"}, - {"default":true,"name":"after_q","title":367,"type":"bool"}, + {"default":true,"name":"after_q","title":373,"type":"bool"}, ], configSkill: [ - {"default":true,"name":"under_judication","title":1481,"type":"bool"}, + {"default":true,"name":"under_judication","title":1507,"type":"bool"}, ], }, Dehya: { name: "Dehya", - nameLocale: 1567, + nameLocale: 1593, element: "Pyro", weapon: "Claymore", star: 5, @@ -1144,44 +1148,44 @@ export default { // avatar: Dehya_avatar, avatar: getName("Dehya"), splash: Dehya_splash, - skillName1: 827, - skillName2: 1137, - skillName3: 1118, + skillName1: 840, + skillName2: 1157, + skillName3: 1138, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 70 }, + { index: 2, text: 72 }, - { index: 3, text: 406 }, + { index: 3, text: 413 }, - { index: 4, text: 1608 }, + { index: 4, text: 1634 }, - { index: 5, text: 1611 }, + { index: 5, text: 1637 }, - { index: 6, text: 81 }, + { index: 6, text: 83 }, - { index: 7, text: 169 }, + { index: 7, text: 171 }, - { index: 8, text: 1758 }, + { index: 8, text: 1790 }, ], skillMap2: [ - { index: 9, text: 268 }, + { index: 9, text: 274 }, - { index: 10, text: 297 }, + { index: 10, text: 303 }, - { index: 11, text: 1710 }, + { index: 11, text: 1742 }, ], skillMap3: [ - { index: 12, text: 1126 }, + { index: 12, text: 1146 }, - { index: 13, text: 1132 }, + { index: 13, text: 1152 }, ], config: [ @@ -1189,16 +1193,16 @@ export default { ], configSkill: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"c2_rate","title":115,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"c2_rate","title":117,"type":"float"}, - {"default":3.5,"max":4.0,"min":0.0,"name":"c6_stack","title":237,"type":"float"}, + {"default":3.5,"max":4.0,"min":0.0,"name":"c6_stack","title":243,"type":"float"}, ], }, Diluc: { name: "Diluc", - nameLocale: 1561, + nameLocale: 1587, element: "Pyro", weapon: "Claymore", star: 5, @@ -1206,46 +1210,46 @@ export default { // avatar: Diluc_avatar, avatar: getName("Diluc"), splash: Diluc_splash, - skillName1: 836, - skillName2: 1574, - skillName3: 1779, + skillName1: 849, + skillName2: 1600, + skillName3: 1811, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 70 }, + { index: 2, text: 72 }, - { index: 3, text: 406 }, + { index: 3, text: 413 }, - { index: 4, text: 1608 }, + { index: 4, text: 1634 }, - { index: 5, text: 1611 }, + { index: 5, text: 1637 }, - { index: 6, text: 81 }, + { index: 6, text: 83 }, - { index: 7, text: 169 }, + { index: 7, text: 171 }, - { index: 8, text: 1758 }, + { index: 8, text: 1790 }, ], skillMap2: [ - { index: 9, text: 48 }, + { index: 9, text: 50 }, - { index: 10, text: 119 }, + { index: 10, text: 121 }, - { index: 11, text: 70 }, + { index: 11, text: 72 }, ], skillMap3: [ - { index: 12, text: 728 }, + { index: 12, text: 740 }, - { index: 13, text: 673 }, + { index: 13, text: 682 }, - { index: 14, text: 1144 }, + { index: 14, text: 1164 }, ], config: [ @@ -1253,14 +1257,14 @@ export default { ], configSkill: [ - {"default":true,"name":"pyro","title":793,"type":"bool"}, + {"default":true,"name":"pyro","title":806,"type":"bool"}, ], }, Diona: { name: "Diona", - nameLocale: 1563, + nameLocale: 1589, element: "Cryo", weapon: "Bow", star: 4, @@ -1268,44 +1272,44 @@ export default { // avatar: Diona_avatar, avatar: getName("Diona"), splash: Diona_splash, - skillName1: 845, - skillName2: 1162, - skillName3: 973, + skillName1: 858, + skillName2: 1183, + skillName3: 989, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 70 }, + { index: 2, text: 72 }, - { index: 3, text: 406 }, + { index: 3, text: 413 }, - { index: 4, text: 138 }, + { index: 4, text: 140 }, - { index: 5, text: 1255 }, + { index: 5, text: 1277 }, - { index: 6, text: 1101 }, + { index: 6, text: 1120 }, - { index: 7, text: 81 }, + { index: 7, text: 83 }, - { index: 8, text: 169 }, + { index: 8, text: 171 }, - { index: 9, text: 1758 }, + { index: 9, text: 1790 }, ], skillMap2: [ - { index: 10, text: 1161 }, + { index: 10, text: 1182 }, ], skillMap3: [ - { index: 11, text: 646 }, + { index: 11, text: 655 }, - { index: 12, text: 1712 }, + { index: 12, text: 1744 }, - { index: 13, text: 676 }, + { index: 13, text: 685 }, ], config: [ @@ -1318,7 +1322,7 @@ export default { Dori: { name: "Dori", - nameLocale: 454, + nameLocale: 460, element: "Electro", weapon: "Claymore", star: 4, @@ -1326,42 +1330,42 @@ export default { // avatar: Dori_avatar, avatar: getName("Dori"), splash: Dori_splash, - skillName1: 816, - skillName2: 1630, - skillName3: 334, + skillName1: 829, + skillName2: 1657, + skillName3: 340, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 120 }, + { index: 1, text: 122 }, - { index: 2, text: 121 }, + { index: 2, text: 123 }, - { index: 3, text: 70 }, + { index: 3, text: 72 }, - { index: 4, text: 1608 }, + { index: 4, text: 1634 }, - { index: 5, text: 1611 }, + { index: 5, text: 1637 }, - { index: 6, text: 81 }, + { index: 6, text: 83 }, - { index: 7, text: 169 }, + { index: 7, text: 171 }, - { index: 8, text: 1758 }, + { index: 8, text: 1790 }, ], skillMap2: [ - { index: 9, text: 736 }, + { index: 9, text: 748 }, - { index: 10, text: 400 }, + { index: 10, text: 406 }, ], skillMap3: [ - { index: 11, text: 1559 }, + { index: 11, text: 1585 }, - { index: 12, text: 678 }, + { index: 12, text: 687 }, ], config: [ @@ -1369,14 +1373,14 @@ export default { ], configSkill: [ - {"default":false,"name":"c6","title":32,"type":"bool"}, + {"default":false,"name":"c6","title":34,"type":"bool"}, ], }, Eula: { name: "Eula", - nameLocale: 162, + nameLocale: 164, element: "Cryo", weapon: "Claymore", star: 5, @@ -1384,52 +1388,52 @@ export default { // avatar: Eula_avatar, avatar: getName("Eula"), splash: Eula_splash, - skillName1: 861, - skillName2: 262, - skillName3: 276, + skillName1: 874, + skillName2: 268, + skillName3: 282, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 71 }, + { index: 2, text: 73 }, - { index: 3, text: 72 }, + { index: 3, text: 74 }, - { index: 4, text: 406 }, + { index: 4, text: 413 }, - { index: 5, text: 139 }, + { index: 5, text: 141 }, - { index: 6, text: 140 }, + { index: 6, text: 142 }, - { index: 7, text: 1608 }, + { index: 7, text: 1634 }, - { index: 8, text: 1611 }, + { index: 8, text: 1637 }, - { index: 9, text: 81 }, + { index: 9, text: 83 }, - { index: 10, text: 169 }, + { index: 10, text: 171 }, - { index: 11, text: 1758 }, + { index: 11, text: 1790 }, ], skillMap2: [ - { index: 12, text: 1120 }, + { index: 12, text: 1140 }, - { index: 13, text: 1631 }, + { index: 13, text: 1658 }, - { index: 14, text: 261 }, + { index: 14, text: 267 }, - { index: 15, text: 1019 }, + { index: 15, text: 1037 }, ], skillMap3: [ - { index: 16, text: 646 }, + { index: 16, text: 655 }, - { index: 17, text: 228 }, + { index: 17, text: 234 }, ], config: [ @@ -1437,14 +1441,14 @@ export default { ], configSkill: [ - {"default":0,"max":30,"min":0,"name":"lightfall_stack","title":229,"type":"int"}, + {"default":0,"max":30,"min":0,"name":"lightfall_stack","title":235,"type":"int"}, ], }, Faruzan: { name: "Faruzan", - nameLocale: 1173, + nameLocale: 1194, element: "Anemo", weapon: "Bow", star: 4, @@ -1452,57 +1456,57 @@ export default { // avatar: Faruzan_avatar, avatar: getName("Faruzan"), splash: Faruzan_splash, - skillName1: 866, - skillName2: 1709, - skillName3: 661, + skillName1: 880, + skillName2: 1741, + skillName3: 670, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 70 }, + { index: 2, text: 72 }, - { index: 3, text: 406 }, + { index: 3, text: 413 }, - { index: 4, text: 1594 }, + { index: 4, text: 1620 }, - { index: 4, text: 1101 }, + { index: 4, text: 1120 }, - { index: 6, text: 81 }, + { index: 6, text: 83 }, - { index: 7, text: 169 }, + { index: 7, text: 171 }, - { index: 8, text: 1758 }, + { index: 8, text: 1790 }, ], skillMap2: [ - { index: 9, text: 646 }, + { index: 9, text: 655 }, - { index: 10, text: 1719 }, + { index: 10, text: 1751 }, ], skillMap3: [ - { index: 11, text: 646 }, + { index: 11, text: 655 }, ], config: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"q_ratio","title":37,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"q_ratio","title":38,"type":"float"}, ], configSkill: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"talent2_ratio","title":33,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"talent2_ratio","title":35,"type":"float"}, ], }, Fischl: { name: "Fischl", - nameLocale: 1425, + nameLocale: 1449, element: "Electro", weapon: "Bow", star: 4, @@ -1510,42 +1514,42 @@ export default { // avatar: Fischl_avatar, avatar: getName("Fischl"), splash: Fischl_splash, - skillName1: 855, - skillName2: 463, - skillName3: 1374, + skillName1: 868, + skillName2: 469, + skillName3: 1398, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 70 }, + { index: 2, text: 72 }, - { index: 3, text: 406 }, + { index: 3, text: 413 }, - { index: 4, text: 138 }, + { index: 4, text: 140 }, - { index: 5, text: 1255 }, + { index: 5, text: 1277 }, - { index: 6, text: 1101 }, + { index: 6, text: 1120 }, - { index: 7, text: 81 }, + { index: 7, text: 83 }, - { index: 8, text: 169 }, + { index: 8, text: 171 }, - { index: 9, text: 1758 }, + { index: 9, text: 1790 }, ], skillMap2: [ - { index: 10, text: 505 }, + { index: 10, text: 512 }, - { index: 11, text: 354 }, + { index: 11, text: 360 }, ], skillMap3: [ - { index: 12, text: 1429 }, + { index: 12, text: 1453 }, ], config: [ @@ -1558,7 +1562,7 @@ export default { Freminet: { name: "Freminet", - nameLocale: 1423, + nameLocale: 1447, element: "Cryo", weapon: "Claymore", star: 4, @@ -1566,79 +1570,79 @@ export default { // avatar: Freminet_avatar, avatar: getName("Freminet"), splash: Freminet_splash, - skillName1: 833, - skillName2: 1067, - skillName3: 1160, + skillName1: 846, + skillName2: 1085, + skillName3: 1181, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 70 }, + { index: 2, text: 72 }, - { index: 3, text: 406 }, + { index: 3, text: 413 }, - { index: 4, text: 1608 }, + { index: 4, text: 1634 }, - { index: 5, text: 1611 }, + { index: 5, text: 1637 }, - { index: 6, text: 81 }, + { index: 6, text: 83 }, - { index: 7, text: 169 }, + { index: 7, text: 171 }, - { index: 8, text: 1758 }, + { index: 8, text: 1790 }, ], skillMap2: [ - { index: 9, text: 80 }, + { index: 9, text: 82 }, - { index: 10, text: 1704 }, + { index: 10, text: 1736 }, - { index: 11, text: 1677 }, + { index: 11, text: 1709 }, - { index: 12, text: 60 }, + { index: 12, text: 62 }, - { index: 13, text: 61 }, + { index: 13, text: 63 }, - { index: 14, text: 128 }, + { index: 14, text: 130 }, - { index: 15, text: 129 }, + { index: 15, text: 131 }, - { index: 16, text: 78 }, + { index: 16, text: 80 }, - { index: 17, text: 79 }, + { index: 17, text: 81 }, - { index: 18, text: 414 }, + { index: 18, text: 420 }, - { index: 19, text: 1115 }, + { index: 19, text: 1135 }, - { index: 21, text: 1705 }, + { index: 21, text: 1737 }, ], skillMap3: [ - { index: 20, text: 646 }, + { index: 20, text: 655 }, ], config: [ - {"default":0.0,"max":2.0,"min":0.0,"name":"c4_stack","title":394,"type":"float"}, + {"default":0.0,"max":2.0,"min":0.0,"name":"c4_stack","title":400,"type":"float"}, - {"default":0.0,"max":3.0,"min":0.0,"name":"c6_stack","title":395,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"c6_stack","title":401,"type":"float"}, ], configSkill: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":489,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":496,"type":"float"}, ], }, Ganyu: { name: "Ganyu", - nameLocale: 1196, + nameLocale: 1217, element: "Cryo", weapon: "Bow", star: 5, @@ -1646,63 +1650,63 @@ export default { // avatar: Ganyu_avatar, avatar: getName("Ganyu"), splash: Ganyu_splash, - skillName1: 834, - skillName2: 566, - skillName3: 1673, + skillName1: 847, + skillName2: 573, + skillName3: 1703, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 70 }, + { index: 2, text: 72 }, - { index: 3, text: 406 }, + { index: 3, text: 413 }, - { index: 4, text: 138 }, + { index: 4, text: 140 }, - { index: 5, text: 239 }, + { index: 5, text: 245 }, - { index: 6, text: 1255 }, + { index: 6, text: 1277 }, - { index: 7, text: 58 }, + { index: 7, text: 60 }, - { index: 8, text: 1703 }, + { index: 8, text: 1735 }, - { index: 9, text: 1702 }, + { index: 9, text: 1734 }, - { index: 10, text: 81 }, + { index: 10, text: 83 }, - { index: 11, text: 169 }, + { index: 11, text: 171 }, - { index: 12, text: 1758 }, + { index: 12, text: 1790 }, ], skillMap2: [ - { index: 13, text: 646 }, + { index: 13, text: 655 }, ], skillMap3: [ - { index: 14, text: 260 }, + { index: 14, text: 266 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":483,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":490,"type":"float"}, ], configSkill: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"talent1_rate","title":481,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent1_rate","title":488,"type":"float"}, ], }, Gorou: { name: "Gorou", - nameLocale: 143, + nameLocale: 145, element: "Geo", weapon: "Bow", star: 4, @@ -1710,40 +1714,40 @@ export default { // avatar: Gorou_avatar, avatar: getName("Gorou"), splash: Gorou_splash, - skillName1: 870, - skillName2: 1147, - skillName3: 245, + skillName1: 884, + skillName2: 1167, + skillName3: 251, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 70 }, + { index: 2, text: 72 }, - { index: 3, text: 406 }, + { index: 3, text: 413 }, - { index: 4, text: 1255 }, + { index: 4, text: 1277 }, - { index: 5, text: 1101 }, + { index: 5, text: 1120 }, - { index: 6, text: 81 }, + { index: 6, text: 83 }, - { index: 7, text: 169 }, + { index: 7, text: 171 }, - { index: 8, text: 1758 }, + { index: 8, text: 1790 }, ], skillMap2: [ - { index: 9, text: 646 }, + { index: 9, text: 655 }, ], skillMap3: [ - { index: 10, text: 646 }, + { index: 10, text: 655 }, - { index: 11, text: 569 }, + { index: 11, text: 576 }, ], config: [ @@ -1756,7 +1760,7 @@ export default { HuTao: { name: "HuTao", - nameLocale: 1369, + nameLocale: 1393, element: "Pyro", weapon: "Polearm", star: 5, @@ -1764,61 +1768,61 @@ export default { // avatar: HuTao_avatar, avatar: getName("Hutao"), splash: HuTao_splash, - skillName1: 820, - skillName2: 1439, - skillName3: 529, + skillName1: 833, + skillName2: 1463, + skillName3: 536, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 70 }, + { index: 2, text: 72 }, - { index: 3, text: 406 }, + { index: 3, text: 413 }, - { index: 4, text: 139 }, + { index: 4, text: 141 }, - { index: 5, text: 140 }, + { index: 5, text: 142 }, - { index: 6, text: 239 }, + { index: 6, text: 245 }, - { index: 7, text: 1594 }, + { index: 7, text: 1620 }, - { index: 8, text: 81 }, + { index: 8, text: 83 }, - { index: 9, text: 169 }, + { index: 9, text: 171 }, - { index: 10, text: 1758 }, + { index: 10, text: 1790 }, ], skillMap2: [ - { index: 11, text: 1442 }, + { index: 11, text: 1466 }, ], skillMap3: [ - { index: 12, text: 646 }, + { index: 12, text: 655 }, - { index: 13, text: 170 }, + { index: 13, text: 172 }, ], config: [ - {"default":true,"name":"le_50","title":1208,"type":"bool"}, + {"default":true,"name":"le_50","title":1229,"type":"bool"}, ], configSkill: [ - {"default":true,"name":"after_e","title":608,"type":"bool"}, + {"default":true,"name":"after_e","title":616,"type":"bool"}, ], }, Jean: { name: "Jean", - nameLocale: 1189, + nameLocale: 1210, element: "Anemo", weapon: "Sword", star: 5, @@ -1826,44 +1830,44 @@ export default { // avatar: Jean_avatar, avatar: getName("Qin"), splash: Jean_splash, - skillName1: 859, - skillName2: 1718, - skillName3: 1431, + skillName1: 872, + skillName2: 1750, + skillName3: 1455, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 70 }, + { index: 2, text: 72 }, - { index: 3, text: 406 }, + { index: 3, text: 413 }, - { index: 4, text: 138 }, + { index: 4, text: 140 }, - { index: 5, text: 1594 }, + { index: 5, text: 1620 }, - { index: 6, text: 81 }, + { index: 6, text: 83 }, - { index: 7, text: 169 }, + { index: 7, text: 171 }, - { index: 8, text: 1758 }, + { index: 8, text: 1790 }, ], skillMap2: [ - { index: 9, text: 646 }, + { index: 9, text: 655 }, ], skillMap3: [ - { index: 10, text: 1139 }, + { index: 10, text: 1160 }, - { index: 11, text: 281 }, + { index: 11, text: 287 }, - { index: 12, text: 1711 }, + { index: 12, text: 1743 }, - { index: 13, text: 674 }, + { index: 13, text: 683 }, ], config: [ @@ -1876,7 +1880,7 @@ export default { KaedeharaKazuha: { name: "KaedeharaKazuha", - nameLocale: 988, + nameLocale: 1006, element: "Anemo", weapon: "Sword", star: 5, @@ -1884,68 +1888,68 @@ export default { // avatar: KaedeharaKazuha_avatar, avatar: getName("Kazuha"), splash: KaedeharaKazuha_splash, - skillName1: 825, - skillName2: 324, - skillName3: 65, + skillName1: 838, + skillName2: 330, + skillName3: 67, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 71 }, + { index: 2, text: 73 }, - { index: 3, text: 72 }, + { index: 3, text: 74 }, - { index: 4, text: 406 }, + { index: 4, text: 413 }, - { index: 5, text: 141 }, + { index: 5, text: 143 }, - { index: 6, text: 1597 }, + { index: 6, text: 1622 }, - { index: 6, text: 1599 }, + { index: 6, text: 1628 }, - { index: 8, text: 81 }, + { index: 8, text: 83 }, - { index: 9, text: 169 }, + { index: 9, text: 171 }, - { index: 10, text: 1758 }, + { index: 10, text: 1790 }, ], skillMap2: [ - { index: 11, text: 108 }, + { index: 11, text: 110 }, - { index: 12, text: 109 }, + { index: 12, text: 111 }, - { index: 13, text: 114 }, + { index: 13, text: 116 }, - { index: 14, text: 112 }, + { index: 14, text: 114 }, - { index: 15, text: 111 }, + { index: 15, text: 113 }, - { index: 16, text: 110 }, + { index: 16, text: 112 }, - { index: 17, text: 113 }, + { index: 17, text: 115 }, - { index: 18, text: 1122 }, + { index: 18, text: 1141 }, - { index: 19, text: 1632 }, + { index: 19, text: 1659 }, ], skillMap3: [ - { index: 20, text: 728 }, + { index: 20, text: 740 }, - { index: 21, text: 673 }, + { index: 21, text: 682 }, - { index: 22, text: 1670 }, + { index: 22, text: 1700 }, - { index: 23, text: 1669 }, + { index: 23, text: 1699 }, - { index: 24, text: 1668 }, + { index: 24, text: 1698 }, - { index: 25, text: 1671 }, + { index: 25, text: 1701 }, ], config: [ @@ -1953,14 +1957,14 @@ export default { ], configSkill: [ - {"default":false,"name":"after_e_or_q","title":238,"type":"bool"}, + {"default":false,"name":"after_e_or_q","title":244,"type":"bool"}, ], }, Kaeya: { name: "Kaeya", - nameLocale: 279, + nameLocale: 285, element: "Cryo", weapon: "Sword", star: 4, @@ -1968,40 +1972,40 @@ export default { // avatar: Kaeya_avatar, avatar: getName("Kaeya"), splash: Kaeya_splash, - skillName1: 810, - skillName2: 1707, - skillName3: 271, + skillName1: 823, + skillName2: 1739, + skillName3: 277, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 70 }, + { index: 2, text: 72 }, - { index: 3, text: 406 }, + { index: 3, text: 413 }, - { index: 4, text: 138 }, + { index: 4, text: 140 }, - { index: 5, text: 1596 }, + { index: 5, text: 1621 }, - { index: 6, text: 1602 }, + { index: 6, text: 1626 }, - { index: 7, text: 81 }, + { index: 7, text: 83 }, - { index: 8, text: 169 }, + { index: 8, text: 171 }, - { index: 9, text: 1758 }, + { index: 9, text: 1790 }, ], skillMap2: [ - { index: 10, text: 646 }, + { index: 10, text: 655 }, ], skillMap3: [ - { index: 11, text: 646 }, + { index: 11, text: 655 }, ], config: [ @@ -2014,7 +2018,7 @@ export default { KamisatoAyaka: { name: "KamisatoAyaka", - nameLocale: 1288, + nameLocale: 1311, element: "Cryo", weapon: "Sword", star: 5, @@ -2022,61 +2026,61 @@ export default { // avatar: KamisatoAyaka_avatar, avatar: getName("Ayaka"), splash: KamisatoAyaka_splash, - skillName1: 851, - skillName2: 1278, - skillName3: 1281, + skillName1: 864, + skillName2: 1301, + skillName3: 1304, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 70 }, + { index: 2, text: 72 }, - { index: 3, text: 412 }, + { index: 3, text: 418 }, - { index: 5, text: 138 }, + { index: 5, text: 140 }, - { index: 6, text: 1604 }, + { index: 6, text: 1630 }, - { index: 8, text: 81 }, + { index: 8, text: 83 }, - { index: 9, text: 169 }, + { index: 9, text: 171 }, - { index: 10, text: 1758 }, + { index: 10, text: 1790 }, ], skillMap2: [ - { index: 11, text: 646 }, + { index: 11, text: 655 }, ], skillMap3: [ - { index: 12, text: 288 }, + { index: 12, text: 294 }, - { index: 13, text: 1343 }, + { index: 13, text: 1366 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"talent1_rate","title":484,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent1_rate","title":491,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":485,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":492,"type":"float"}, ], configSkill: [ - {"default":true,"name":"after_dash","title":1282,"type":"bool"}, + {"default":true,"name":"after_dash","title":1305,"type":"bool"}, - {"default":false,"name":"use_c6","title":235,"type":"bool"}, + {"default":false,"name":"use_c6","title":241,"type":"bool"}, ], }, KamisatoAyato: { name: "KamisatoAyato", - nameLocale: 1283, + nameLocale: 1306, element: "Hydro", weapon: "Sword", star: 5, @@ -2084,44 +2088,44 @@ export default { // avatar: KamisatoAyato_avatar, avatar: getName("Ayato"), splash: KamisatoAyato_splash, - skillName1: 852, - skillName2: 1280, - skillName3: 1279, + skillName1: 865, + skillName2: 1303, + skillName3: 1302, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 70 }, + { index: 2, text: 72 }, - { index: 3, text: 407 }, + { index: 3, text: 412 }, - { index: 4, text: 138 }, + { index: 4, text: 140 }, - { index: 5, text: 1594 }, + { index: 5, text: 1620 }, - { index: 6, text: 81 }, + { index: 6, text: 83 }, - { index: 7, text: 169 }, + { index: 7, text: 171 }, - { index: 8, text: 1758 }, + { index: 8, text: 1790 }, ], skillMap2: [ - { index: 9, text: 54 }, + { index: 9, text: 56 }, - { index: 10, text: 124 }, + { index: 10, text: 126 }, - { index: 11, text: 77 }, + { index: 11, text: 79 }, - { index: 12, text: 1029 }, + { index: 12, text: 1047 }, ], skillMap3: [ - { index: 13, text: 1033 }, + { index: 13, text: 1051 }, ], config: [ @@ -2129,16 +2133,16 @@ export default { ], configSkill: [ - {"default":4,"max":5,"min":0,"name":"e_stack","title":30,"type":"int"}, + {"default":4,"max":5,"min":0,"name":"e_stack","title":32,"type":"int"}, - {"default":true,"name":"in_q","title":443,"type":"bool"}, + {"default":true,"name":"in_q","title":449,"type":"bool"}, ], }, Kaveh: { name: "Kaveh", - nameLocale: 331, + nameLocale: 337, element: "Dendro", weapon: "Claymore", star: 4, @@ -2146,57 +2150,57 @@ export default { // avatar: Kaveh_avatar, avatar: getName("Kaveh"), splash: Kaveh_splash, - skillName1: 831, - skillName2: 1239, - skillName3: 1326, + skillName1: 844, + skillName2: 1260, + skillName3: 1349, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 70 }, + { index: 2, text: 72 }, - { index: 3, text: 406 }, + { index: 3, text: 413 }, - { index: 4, text: 1608 }, + { index: 4, text: 1634 }, - { index: 5, text: 1611 }, + { index: 5, text: 1637 }, - { index: 6, text: 81 }, + { index: 6, text: 83 }, - { index: 7, text: 169 }, + { index: 7, text: 171 }, - { index: 8, text: 1758 }, + { index: 8, text: 1790 }, ], skillMap2: [ - { index: 9, text: 646 }, + { index: 9, text: 655 }, ], skillMap3: [ - { index: 10, text: 646 }, + { index: 10, text: 655 }, ], config: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"talent2_stack","title":486,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"talent2_stack","title":493,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"c2_rate","title":391,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"c2_rate","title":397,"type":"float"}, ], configSkill: [ - {"default":false,"name":"after_q","title":38,"type":"bool"}, + {"default":false,"name":"after_q","title":40,"type":"bool"}, ], }, Keqing: { name: "Keqing", - nameLocale: 295, + nameLocale: 301, element: "Electro", weapon: "Sword", star: 5, @@ -2204,67 +2208,67 @@ export default { // avatar: Keqing_avatar, avatar: getName("Keqing"), splash: Keqing_splash, - skillName1: 808, - skillName2: 781, - skillName3: 478, + skillName1: 821, + skillName2: 794, + skillName3: 485, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 70 }, + { index: 2, text: 72 }, - { index: 3, text: 408 }, + { index: 3, text: 414 }, - { index: 4, text: 409 }, + { index: 4, text: 415 }, - { index: 5, text: 138 }, + { index: 5, text: 140 }, - { index: 6, text: 1596 }, + { index: 6, text: 1621 }, - { index: 7, text: 1602 }, + { index: 7, text: 1626 }, - { index: 8, text: 81 }, + { index: 8, text: 83 }, - { index: 9, text: 169 }, + { index: 9, text: 171 }, - { index: 10, text: 1758 }, + { index: 10, text: 1790 }, ], skillMap2: [ - { index: 11, text: 1685 }, + { index: 11, text: 1717 }, - { index: 12, text: 728 }, + { index: 12, text: 740 }, - { index: 13, text: 1684 }, + { index: 13, text: 1716 }, ], skillMap3: [ - { index: 15, text: 646 }, + { index: 15, text: 655 }, - { index: 16, text: 1560 }, + { index: 16, text: 1586 }, - { index: 18, text: 957 }, + { index: 18, text: 973 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":490,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":497,"type":"float"}, ], configSkill: [ - {"default":true,"name":"after_e","title":11,"type":"bool"}, + {"default":true,"name":"after_e","title":13,"type":"bool"}, ], }, Klee: { name: "Klee", - nameLocale: 355, + nameLocale: 361, element: "Pyro", weapon: "Catalyst", star: 5, @@ -2272,38 +2276,38 @@ export default { // avatar: Klee_avatar, avatar: getName("Klee"), splash: Klee_splash, - skillName1: 847, - skillName2: 1537, - skillName3: 1542, + skillName1: 860, + skillName2: 1563, + skillName3: 1568, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 70 }, + { index: 2, text: 72 }, - { index: 3, text: 1594 }, + { index: 3, text: 1620 }, - { index: 4, text: 1605 }, + { index: 4, text: 1631 }, - { index: 5, text: 81 }, + { index: 5, text: 83 }, - { index: 6, text: 169 }, + { index: 6, text: 171 }, - { index: 7, text: 1758 }, + { index: 7, text: 1790 }, ], skillMap2: [ - { index: 8, text: 1538 }, + { index: 8, text: 1564 }, - { index: 9, text: 1502 }, + { index: 9, text: 1528 }, ], skillMap3: [ - { index: 10, text: 1543 }, + { index: 10, text: 1569 }, ], config: [ @@ -2316,7 +2320,7 @@ export default { KujouSara: { name: "KujouSara", - nameLocale: 102, + nameLocale: 104, element: "Electro", weapon: "Bow", star: 4, @@ -2324,42 +2328,42 @@ export default { // avatar: KujouSara_avatar, avatar: getName("Sara"), splash: KujouSara_splash, - skillName1: 872, - skillName2: 1770, - skillName3: 1136, + skillName1: 886, + skillName2: 1802, + skillName3: 1156, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 70 }, + { index: 2, text: 72 }, - { index: 3, text: 406 }, + { index: 3, text: 413 }, - { index: 4, text: 138 }, + { index: 4, text: 140 }, - { index: 5, text: 1255 }, + { index: 5, text: 1277 }, - { index: 6, text: 1101 }, + { index: 6, text: 1120 }, - { index: 7, text: 81 }, + { index: 7, text: 83 }, - { index: 8, text: 169 }, + { index: 8, text: 171 }, - { index: 9, text: 1758 }, + { index: 9, text: 1790 }, ], skillMap2: [ - { index: 10, text: 469 }, + { index: 10, text: 476 }, ], skillMap3: [ - { index: 11, text: 470 }, + { index: 11, text: 477 }, - { index: 12, text: 471 }, + { index: 12, text: 478 }, ], config: [ @@ -2372,7 +2376,7 @@ export default { KukiShinobu: { name: "KukiShinobu", - nameLocale: 97, + nameLocale: 99, element: "Electro", weapon: "Sword", star: 4, @@ -2380,55 +2384,55 @@ export default { // avatar: KukiShinobu_avatar, avatar: getName("Shinobu"), splash: KukiShinobu_splash, - skillName1: 823, - skillName2: 1534, - skillName3: 609, + skillName1: 836, + skillName2: 1560, + skillName3: 617, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 70 }, + { index: 2, text: 72 }, - { index: 3, text: 406 }, + { index: 3, text: 413 }, - { index: 4, text: 1596 }, + { index: 4, text: 1621 }, - { index: 5, text: 1602 }, + { index: 5, text: 1626 }, - { index: 6, text: 1594 }, + { index: 6, text: 1620 }, - { index: 7, text: 81 }, + { index: 7, text: 83 }, - { index: 8, text: 169 }, + { index: 8, text: 171 }, - { index: 9, text: 1758 }, + { index: 9, text: 1790 }, ], skillMap2: [ - { index: 10, text: 646 }, + { index: 10, text: 655 }, - { index: 11, text: 1533 }, + { index: 11, text: 1559 }, - { index: 12, text: 1532 }, + { index: 12, text: 1558 }, ], skillMap3: [ - { index: 13, text: 330 }, + { index: 13, text: 335 }, - { index: 14, text: 613 }, + { index: 14, text: 621 }, - { index: 15, text: 614 }, + { index: 15, text: 622 }, ], config: [ - {"default":true,"name":"hp_le_50","title":1207,"type":"bool"}, + {"default":true,"name":"hp_le_50","title":1228,"type":"bool"}, - {"default":false,"name":"use_c6","title":366,"type":"bool"}, + {"default":false,"name":"use_c6","title":372,"type":"bool"}, ], configSkill: [ @@ -2438,7 +2442,7 @@ export default { Layla: { name: "Layla", - nameLocale: 1405, + nameLocale: 1429, element: "Cryo", weapon: "Sword", star: 4, @@ -2446,38 +2450,38 @@ export default { // avatar: Layla_avatar, avatar: getName("Layla"), splash: Layla_splash, - skillName1: 843, - skillName2: 431, - skillName3: 782, + skillName1: 856, + skillName2: 437, + skillName3: 795, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 70 }, + { index: 2, text: 72 }, - { index: 3, text: 1596 }, + { index: 3, text: 1621 }, - { index: 4, text: 1602 }, + { index: 4, text: 1626 }, - { index: 5, text: 81 }, + { index: 5, text: 83 }, - { index: 6, text: 169 }, + { index: 6, text: 171 }, - { index: 7, text: 1758 }, + { index: 7, text: 1790 }, ], skillMap2: [ - { index: 8, text: 646 }, + { index: 8, text: 655 }, - { index: 9, text: 1743 }, + { index: 9, text: 1775 }, ], skillMap3: [ - { index: 10, text: 779 }, + { index: 10, text: 792 }, ], config: [ @@ -2490,7 +2494,7 @@ export default { Lisa: { name: "Lisa", - nameLocale: 93, + nameLocale: 95, element: "Electro", weapon: "Catalyst", star: 4, @@ -2498,44 +2502,44 @@ export default { // avatar: Lisa_avatar, avatar: getName("Lisa"), splash: Lisa_splash, - skillName1: 828, - skillName2: 1387, - skillName3: 1435, + skillName1: 841, + skillName2: 1411, + skillName3: 1459, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 70 }, + { index: 2, text: 72 }, - { index: 3, text: 406 }, + { index: 3, text: 413 }, - { index: 4, text: 1594 }, + { index: 4, text: 1620 }, - { index: 5, text: 81 }, + { index: 5, text: 83 }, - { index: 6, text: 169 }, + { index: 6, text: 171 }, - { index: 7, text: 1758 }, + { index: 7, text: 1790 }, ], skillMap2: [ - { index: 8, text: 1120 }, + { index: 8, text: 1140 }, - { index: 9, text: 770 }, + { index: 9, text: 783 }, - { index: 10, text: 46 }, + { index: 10, text: 48 }, - { index: 11, text: 117 }, + { index: 11, text: 119 }, - { index: 12, text: 68 }, + { index: 12, text: 70 }, ], skillMap3: [ - { index: 13, text: 1683 }, + { index: 13, text: 1715 }, ], config: [ @@ -2548,7 +2552,7 @@ export default { Lynette: { name: "Lynette", - nameLocale: 1188, + nameLocale: 1209, element: "Anemo", weapon: "Sword", star: 4, @@ -2556,75 +2560,145 @@ export default { // avatar: Lynette_avatar, avatar: getName("Lynette"), splash: Lynette_splash, - skillName1: 864, - skillName2: 1507, - skillName3: 1767, + skillName1: 877, + skillName2: 1533, + skillName3: 1799, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 71 }, + { index: 2, text: 73 }, - { index: 3, text: 72 }, + { index: 3, text: 74 }, - { index: 4, text: 406 }, + { index: 4, text: 413 }, - { index: 5, text: 1596 }, + { index: 5, text: 1621 }, - { index: 6, text: 1602 }, + { index: 6, text: 1626 }, - { index: 7, text: 81 }, + { index: 7, text: 83 }, - { index: 8, text: 169 }, + { index: 8, text: 171 }, - { index: 9, text: 1758 }, + { index: 9, text: 1790 }, ], skillMap2: [ - { index: 10, text: 1506 }, + { index: 10, text: 1532 }, - { index: 11, text: 1066 }, + { index: 11, text: 1084 }, - { index: 12, text: 386 }, + { index: 12, text: 391 }, ], skillMap3: [ - { index: 13, text: 646 }, + { index: 13, text: 655 }, - { index: 14, text: 620 }, + { index: 14, text: 628 }, - { index: 15, text: 603 }, + { index: 15, text: 611 }, - { index: 16, text: 605 }, + { index: 16, text: 613 }, - { index: 17, text: 606 }, + { index: 17, text: 614 }, - { index: 18, text: 607 }, + { index: 18, text: 615 }, - { index: 19, text: 604 }, + { index: 19, text: 612 }, ], config: [ - {"default":0.5,"max":1.0,"min":0.0,"name":"talent1_rate","title":488,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"talent1_rate","title":495,"type":"float"}, + + {"default":4,"max":4,"min":1,"name":"talent1_count","title":494,"type":"int"}, + + {"default":0.5,"max":1.0,"min":0.0,"name":"talent2_rate","title":500,"type":"float"}, + + ], + configSkill: [ + + ], + }, + + Lyney: { + name: "Lyney", + nameLocale: 1004, + element: "Pyro", + weapon: "Bow", + star: 5, + // card: Lyney_card, + // avatar: Lyney_avatar, + avatar: getName("Lyney"), + splash: Lyney_splash, + skillName1: 879, + skillName2: 1276, + skillName3: 472, + skillMap1: [ + + { index: 0, text: 50 }, - {"default":4,"max":4,"min":1,"name":"talent1_count","title":487,"type":"int"}, + { index: 1, text: 121 }, - {"default":0.5,"max":1.0,"min":0.0,"name":"talent2_rate","title":493,"type":"float"}, + { index: 2, text: 75 }, + + { index: 3, text: 413 }, + + { index: 4, text: 1277 }, + + { index: 5, text: 60 }, + + { index: 6, text: 1706 }, + + { index: 7, text: 83 }, + + { index: 8, text: 171 }, + + { index: 9, text: 1790 }, + + { index: 10, text: 1294 }, + + { index: 11, text: 1135 }, + + ], + skillMap2: [ + + { index: 12, text: 655 }, + + ], + skillMap3: [ + + { index: 13, text: 655 }, + + { index: 14, text: 607 }, + + ], + config: [ + + {"default":0.0,"max":3.0,"min":0.0,"name":"c2_stack","title":3,"type":"float"}, + + {"default":0.0,"max":1.0,"min":0.0,"name":"c4_rate","title":6,"type":"float"}, ], configSkill: [ + {"default":0.0,"max":5.0,"min":0.0,"name":"prop_stack","title":1705,"type":"float"}, + + {"default":false,"name":"under_pyro","title":730,"type":"bool"}, + + {"default":1,"max":3,"min":0,"name":"pyro_count","title":1674,"type":"int"}, + ], }, Mona: { name: "Mona", - nameLocale: 1399, + nameLocale: 1423, element: "Hydro", weapon: "Catalyst", star: 5, @@ -2632,38 +2706,38 @@ export default { // avatar: Mona_avatar, avatar: getName("Mona"), splash: Mona_splash, - skillName1: 814, - skillName2: 1024, - skillName3: 780, + skillName1: 827, + skillName2: 1042, + skillName3: 793, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 70 }, + { index: 2, text: 72 }, - { index: 3, text: 406 }, + { index: 3, text: 413 }, - { index: 4, text: 1594 }, + { index: 4, text: 1620 }, - { index: 5, text: 81 }, + { index: 5, text: 83 }, - { index: 6, text: 169 }, + { index: 6, text: 171 }, - { index: 7, text: 1758 }, + { index: 7, text: 1790 }, ], skillMap2: [ - { index: 8, text: 673 }, + { index: 8, text: 682 }, - { index: 9, text: 1144 }, + { index: 9, text: 1164 }, ], skillMap3: [ - { index: 10, text: 1050 }, + { index: 10, text: 1068 }, ], config: [ @@ -2676,7 +2750,7 @@ export default { Nahida: { name: "Nahida", - nameLocale: 1327, + nameLocale: 1350, element: "Dendro", weapon: "Catalyst", star: 5, @@ -2684,35 +2758,35 @@ export default { // avatar: Nahida_avatar, avatar: getName("Nahida"), splash: Nahida_splash, - skillName1: 858, - skillName2: 631, - skillName3: 610, + skillName1: 871, + skillName2: 639, + skillName3: 618, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 70 }, + { index: 2, text: 72 }, - { index: 3, text: 406 }, + { index: 3, text: 413 }, - { index: 4, text: 1594 }, + { index: 4, text: 1620 }, - { index: 5, text: 81 }, + { index: 5, text: 83 }, - { index: 6, text: 169 }, + { index: 6, text: 171 }, - { index: 7, text: 1758 }, + { index: 7, text: 1790 }, ], skillMap2: [ - { index: 8, text: 1120 }, + { index: 8, text: 1140 }, - { index: 9, text: 1631 }, + { index: 9, text: 1658 }, - { index: 10, text: 1110 }, + { index: 10, text: 1129 }, ], skillMap3: [ @@ -2720,21 +2794,21 @@ export default { ], config: [ - {"default":4,"max":4,"min":0,"name":"c4_e_count","title":1790,"type":"int"}, + {"default":4,"max":4,"min":0,"name":"c4_e_count","title":1822,"type":"int"}, ], configSkill: [ - {"default":true,"name":"q_bonus","title":15,"type":"bool"}, + {"default":true,"name":"q_bonus","title":17,"type":"bool"}, - {"default":2,"max":2,"min":1,"name":"q_bonus_count","title":14,"type":"int"}, + {"default":2,"max":2,"min":1,"name":"q_bonus_count","title":16,"type":"int"}, ], }, Nilou: { name: "Nilou", - nameLocale: 508, + nameLocale: 515, element: "Hydro", weapon: "Sword", star: 5, @@ -2742,55 +2816,55 @@ export default { // avatar: Nilou_avatar, avatar: getName("Nilou"), splash: Nilou_splash, - skillName1: 819, - skillName2: 64, - skillName3: 1069, + skillName1: 832, + skillName2: 66, + skillName3: 1087, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 70 }, + { index: 2, text: 72 }, - { index: 3, text: 1596 }, + { index: 3, text: 1621 }, - { index: 4, text: 1602 }, + { index: 4, text: 1626 }, - { index: 5, text: 81 }, + { index: 5, text: 83 }, - { index: 6, text: 169 }, + { index: 6, text: 171 }, - { index: 7, text: 1758 }, + { index: 7, text: 1790 }, ], skillMap2: [ - { index: 8, text: 646 }, + { index: 8, text: 655 }, - { index: 9, text: 298 }, + { index: 9, text: 304 }, - { index: 10, text: 765 }, + { index: 10, text: 778 }, - { index: 11, text: 299 }, + { index: 11, text: 305 }, - { index: 12, text: 766 }, + { index: 12, text: 779 }, - { index: 13, text: 1030 }, + { index: 13, text: 1048 }, - { index: 14, text: 1034 }, + { index: 14, text: 1052 }, ], skillMap3: [ - { index: 15, text: 646 }, + { index: 15, text: 655 }, - { index: 16, text: 1035 }, + { index: 16, text: 1053 }, ], config: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"golden_rate","title":41,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"golden_rate","title":43,"type":"float"}, ], configSkill: [ @@ -2800,7 +2874,7 @@ export default { Ningguang: { name: "Ningguang", - nameLocale: 272, + nameLocale: 278, element: "Geo", weapon: "Catalyst", star: 4, @@ -2808,37 +2882,37 @@ export default { // avatar: Ningguang_avatar, avatar: getName("Ningguang"), splash: Ningguang_splash, - skillName1: 811, - skillName2: 1195, - skillName3: 467, + skillName1: 824, + skillName2: 1216, + skillName3: 474, skillMap1: [ - { index: 0, text: 886 }, + { index: 0, text: 900 }, - { index: 1, text: 1594 }, + { index: 1, text: 1620 }, - { index: 2, text: 783 }, + { index: 2, text: 796 }, - { index: 3, text: 81 }, + { index: 3, text: 83 }, - { index: 4, text: 169 }, + { index: 4, text: 171 }, - { index: 5, text: 1758 }, + { index: 5, text: 1790 }, ], skillMap2: [ - { index: 6, text: 646 }, + { index: 6, text: 655 }, ], skillMap3: [ - { index: 7, text: 1022 }, + { index: 7, text: 1040 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":480,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":487,"type":"float"}, ], configSkill: [ @@ -2848,7 +2922,7 @@ export default { Noelle: { name: "Noelle", - nameLocale: 1504, + nameLocale: 1530, element: "Geo", weapon: "Claymore", star: 4, @@ -2856,42 +2930,42 @@ export default { // avatar: Noelle_avatar, avatar: getName("Noel"), splash: Noelle_splash, - skillName1: 860, - skillName2: 662, - skillName3: 465, + skillName1: 873, + skillName2: 671, + skillName3: 471, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 70 }, + { index: 2, text: 72 }, - { index: 3, text: 406 }, + { index: 3, text: 413 }, - { index: 4, text: 1608 }, + { index: 4, text: 1634 }, - { index: 5, text: 1611 }, + { index: 5, text: 1637 }, - { index: 6, text: 81 }, + { index: 6, text: 83 }, - { index: 7, text: 169 }, + { index: 7, text: 171 }, - { index: 8, text: 1758 }, + { index: 8, text: 1790 }, ], skillMap2: [ - { index: 9, text: 646 }, + { index: 9, text: 655 }, - { index: 10, text: 1047 }, + { index: 10, text: 1064 }, ], skillMap3: [ - { index: 11, text: 1139 }, + { index: 11, text: 1160 }, - { index: 12, text: 646 }, + { index: 12, text: 655 }, ], config: [ @@ -2899,14 +2973,14 @@ export default { ], configSkill: [ - {"default":true,"name":"after_q","title":13,"type":"bool"}, + {"default":true,"name":"after_q","title":15,"type":"bool"}, ], }, Mika: { name: "Mika", - nameLocale: 1319, + nameLocale: 1342, element: "Cryo", weapon: "Polearm", star: 4, @@ -2914,44 +2988,44 @@ export default { // avatar: Mika_avatar, avatar: getName("Mika"), splash: Mika_splash, - skillName1: 863, - skillName2: 785, - skillName3: 1385, + skillName1: 876, + skillName2: 798, + skillName3: 1409, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 70 }, + { index: 2, text: 72 }, - { index: 3, text: 411 }, + { index: 3, text: 417 }, - { index: 4, text: 138 }, + { index: 4, text: 140 }, - { index: 5, text: 1594 }, + { index: 5, text: 1620 }, - { index: 6, text: 81 }, + { index: 6, text: 83 }, - { index: 7, text: 169 }, + { index: 7, text: 171 }, - { index: 8, text: 1758 }, + { index: 8, text: 1790 }, ], skillMap2: [ - { index: 9, text: 1706 }, + { index: 9, text: 1738 }, - { index: 10, text: 257 }, + { index: 10, text: 263 }, - { index: 11, text: 258 }, + { index: 11, text: 264 }, ], skillMap3: [ - { index: 12, text: 757 }, + { index: 12, text: 770 }, - { index: 13, text: 1773 }, + { index: 13, text: 1805 }, ], config: [ @@ -2964,7 +3038,7 @@ export default { Qiqi: { name: "Qiqi", - nameLocale: 62, + nameLocale: 64, element: "Cryo", weapon: "Sword", star: 5, @@ -2972,52 +3046,52 @@ export default { // avatar: Qiqi_avatar, avatar: getName("Qiqi"), splash: Qiqi_splash, - skillName1: 809, - skillName2: 155, - skillName3: 156, + skillName1: 822, + skillName2: 157, + skillName3: 158, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 71 }, + { index: 2, text: 73 }, - { index: 3, text: 72 }, + { index: 3, text: 74 }, - { index: 4, text: 408 }, + { index: 4, text: 414 }, - { index: 5, text: 409 }, + { index: 5, text: 415 }, - { index: 6, text: 138 }, + { index: 6, text: 140 }, - { index: 7, text: 1596 }, + { index: 7, text: 1621 }, - { index: 8, text: 1602 }, + { index: 8, text: 1626 }, - { index: 9, text: 81 }, + { index: 9, text: 83 }, - { index: 10, text: 169 }, + { index: 10, text: 171 }, - { index: 11, text: 1758 }, + { index: 11, text: 1790 }, ], skillMap2: [ - { index: 12, text: 646 }, + { index: 12, text: 655 }, - { index: 15, text: 545 }, + { index: 15, text: 552 }, - { index: 13, text: 384 }, + { index: 13, text: 390 }, - { index: 14, text: 677 }, + { index: 14, text: 686 }, ], skillMap3: [ - { index: 16, text: 646 }, + { index: 16, text: 655 }, - { index: 17, text: 1047 }, + { index: 17, text: 1064 }, ], config: [ @@ -3030,7 +3104,7 @@ export default { RaidenShogun: { name: "RaidenShogun", - nameLocale: 1692, + nameLocale: 1724, element: "Electro", weapon: "Polearm", star: 5, @@ -3038,64 +3112,64 @@ export default { // avatar: RaidenShogun_avatar, avatar: getName("Shougun"), splash: RaidenShogun_splash, - skillName1: 874, - skillName2: 1275, - skillName3: 504, + skillName1: 888, + skillName2: 1298, + skillName3: 511, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 70 }, + { index: 2, text: 72 }, - { index: 3, text: 408 }, + { index: 3, text: 414 }, - { index: 4, text: 409 }, + { index: 4, text: 415 }, - { index: 5, text: 138 }, + { index: 5, text: 140 }, - { index: 6, text: 1594 }, + { index: 6, text: 1620 }, - { index: 7, text: 81 }, + { index: 7, text: 83 }, - { index: 8, text: 169 }, + { index: 8, text: 171 }, - { index: 9, text: 1758 }, + { index: 9, text: 1790 }, ], skillMap2: [ - { index: 10, text: 646 }, + { index: 10, text: 655 }, - { index: 11, text: 328 }, + { index: 11, text: 334 }, ], skillMap3: [ - { index: 12, text: 1007 }, + { index: 12, text: 1025 }, - { index: 13, text: 48 }, + { index: 13, text: 50 }, - { index: 14, text: 119 }, + { index: 14, text: 121 }, - { index: 15, text: 70 }, + { index: 15, text: 72 }, - { index: 16, text: 408 }, + { index: 16, text: 414 }, - { index: 17, text: 409 }, + { index: 17, text: 415 }, - { index: 18, text: 138 }, + { index: 18, text: 140 }, - { index: 19, text: 1596 }, + { index: 19, text: 1621 }, - { index: 20, text: 1602 }, + { index: 20, text: 1626 }, - { index: 21, text: 81 }, + { index: 21, text: 83 }, - { index: 22, text: 169 }, + { index: 22, text: 171 }, - { index: 23, text: 1758 }, + { index: 23, text: 1790 }, ], config: [ @@ -3103,16 +3177,16 @@ export default { ], configSkill: [ - {"default":true,"name":"under_e","title":448,"type":"bool"}, + {"default":true,"name":"under_e","title":454,"type":"bool"}, - {"default":60,"max":60,"min":0,"name":"resolve_stack","title":1503,"type":"int"}, + {"default":60,"max":60,"min":0,"name":"resolve_stack","title":1529,"type":"int"}, ], }, Razor: { name: "Razor", - nameLocale: 1686, + nameLocale: 1718, element: "Electro", weapon: "Claymore", star: 4, @@ -3120,55 +3194,55 @@ export default { // avatar: Razor_avatar, avatar: getName("Razor"), splash: Razor_splash, - skillName1: 868, - skillName2: 293, - skillName3: 1691, + skillName1: 882, + skillName2: 299, + skillName3: 1723, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 70 }, + { index: 2, text: 72 }, - { index: 3, text: 406 }, + { index: 3, text: 413 }, - { index: 4, text: 1608 }, + { index: 4, text: 1634 }, - { index: 5, text: 1611 }, + { index: 5, text: 1637 }, - { index: 6, text: 81 }, + { index: 6, text: 83 }, - { index: 7, text: 169 }, + { index: 7, text: 171 }, - { index: 8, text: 1758 }, + { index: 8, text: 1790 }, ], skillMap2: [ - { index: 9, text: 1121 }, + { index: 9, text: 1143 }, - { index: 10, text: 1632 }, + { index: 10, text: 1659 }, ], skillMap3: [ - { index: 11, text: 1139 }, + { index: 11, text: 1160 }, - { index: 12, text: 1153 }, + { index: 12, text: 1174 }, - { index: 13, text: 1155 }, + { index: 13, text: 1176 }, - { index: 14, text: 1154 }, + { index: 14, text: 1175 }, - { index: 15, text: 1156 }, + { index: 15, text: 1177 }, ], config: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"e_stack","title":1678,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"e_stack","title":1710,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_ratio","title":495,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_ratio","title":502,"type":"float"}, ], configSkill: [ @@ -3178,7 +3252,7 @@ export default { Rosaria: { name: "Rosaria", - nameLocale: 1346, + nameLocale: 1369, element: "Cryo", weapon: "Polearm", star: 4, @@ -3186,51 +3260,51 @@ export default { // avatar: Rosaria_avatar, avatar: getName("Rosaria"), splash: Rosaria_splash, - skillName1: 829, - skillName2: 405, - skillName3: 1331, + skillName1: 842, + skillName2: 411, + skillName3: 1354, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 73 }, + { index: 2, text: 75 }, - { index: 3, text: 406 }, + { index: 3, text: 413 }, - { index: 4, text: 139 }, + { index: 4, text: 141 }, - { index: 5, text: 140 }, + { index: 5, text: 142 }, - { index: 6, text: 1594 }, + { index: 6, text: 1620 }, - { index: 7, text: 81 }, + { index: 7, text: 83 }, - { index: 8, text: 169 }, + { index: 8, text: 171 }, - { index: 9, text: 1758 }, + { index: 9, text: 1790 }, ], skillMap2: [ - { index: 10, text: 648 }, + { index: 10, text: 657 }, - { index: 11, text: 650 }, + { index: 11, text: 659 }, ], skillMap3: [ - { index: 12, text: 648 }, + { index: 12, text: 657 }, - { index: 13, text: 650 }, + { index: 13, text: 659 }, - { index: 14, text: 259 }, + { index: 14, text: 265 }, ], config: [ - {"default":true,"name":"e_from_behind","title":591,"type":"bool"}, + {"default":true,"name":"e_from_behind","title":598,"type":"bool"}, ], configSkill: [ @@ -3240,7 +3314,7 @@ export default { SangonomiyaKokomi: { name: "SangonomiyaKokomi", - nameLocale: 1171, + nameLocale: 1192, element: "Hydro", weapon: "Catalyst", star: 5, @@ -3248,38 +3322,38 @@ export default { // avatar: SangonomiyaKokomi_avatar, avatar: getName("Kokomi"), splash: SangonomiyaKokomi_splash, - skillName1: 873, - skillName2: 1071, - skillName3: 1070, + skillName1: 887, + skillName2: 1089, + skillName3: 1088, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 70 }, + { index: 2, text: 72 }, - { index: 3, text: 1594 }, + { index: 3, text: 1620 }, - { index: 4, text: 81 }, + { index: 4, text: 83 }, - { index: 5, text: 169 }, + { index: 5, text: 171 }, - { index: 6, text: 1758 }, + { index: 6, text: 1790 }, ], skillMap2: [ - { index: 8, text: 1052 }, + { index: 8, text: 1070 }, - { index: 7, text: 1046 }, + { index: 7, text: 1065 }, ], skillMap3: [ - { index: 9, text: 646 }, + { index: 9, text: 655 }, - { index: 10, text: 385 }, + { index: 10, text: 392 }, ], config: [ @@ -3287,14 +3361,14 @@ export default { ], configSkill: [ - {"default":true,"name":"after_q","title":19,"type":"bool"}, + {"default":true,"name":"after_q","title":21,"type":"bool"}, ], }, Sayu: { name: "Sayu", - nameLocale: 774, + nameLocale: 787, element: "Anemo", weapon: "Claymore", star: 4, @@ -3302,66 +3376,66 @@ export default { // avatar: Sayu_avatar, avatar: getName("Sayu"), splash: Sayu_splash, - skillName1: 822, - skillName2: 380, - skillName3: 379, + skillName1: 835, + skillName2: 386, + skillName3: 385, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 71 }, + { index: 2, text: 73 }, - { index: 3, text: 72 }, + { index: 3, text: 74 }, - { index: 4, text: 406 }, + { index: 4, text: 413 }, - { index: 5, text: 1608 }, + { index: 5, text: 1634 }, - { index: 6, text: 1611 }, + { index: 6, text: 1637 }, - { index: 7, text: 81 }, + { index: 7, text: 83 }, - { index: 8, text: 169 }, + { index: 8, text: 171 }, - { index: 9, text: 1758 }, + { index: 9, text: 1790 }, ], skillMap2: [ - { index: 10, text: 1726 }, + { index: 10, text: 1758 }, - { index: 11, text: 1727 }, + { index: 11, text: 1759 }, - { index: 12, text: 1728 }, + { index: 12, text: 1760 }, - { index: 13, text: 1735 }, + { index: 13, text: 1767 }, - { index: 16, text: 1734 }, + { index: 16, text: 1766 }, - { index: 15, text: 1733 }, + { index: 15, text: 1765 }, - { index: 14, text: 1736 }, + { index: 14, text: 1768 }, - { index: 17, text: 1731 }, + { index: 17, text: 1763 }, - { index: 20, text: 1730 }, + { index: 20, text: 1762 }, - { index: 19, text: 1729 }, + { index: 19, text: 1761 }, - { index: 18, text: 1732 }, + { index: 18, text: 1764 }, ], skillMap3: [ - { index: 21, text: 657 }, + { index: 21, text: 666 }, - { index: 22, text: 658 }, + { index: 22, text: 667 }, - { index: 23, text: 82 }, + { index: 23, text: 84 }, - { index: 24, text: 83 }, + { index: 24, text: 85 }, ], config: [ @@ -3374,7 +3448,7 @@ export default { Shenhe: { name: "Shenhe", - nameLocale: 1226, + nameLocale: 1247, element: "Cryo", weapon: "Polearm", star: 5, @@ -3382,44 +3456,44 @@ export default { // avatar: Shenhe_avatar, avatar: getName("Shenhe"), splash: Shenhe_splash, - skillName1: 875, - skillName2: 159, - skillName3: 1276, + skillName1: 889, + skillName2: 161, + skillName3: 1299, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 70 }, + { index: 2, text: 72 }, - { index: 3, text: 408 }, + { index: 3, text: 414 }, - { index: 4, text: 409 }, + { index: 4, text: 415 }, - { index: 5, text: 138 }, + { index: 5, text: 140 }, - { index: 6, text: 1594 }, + { index: 6, text: 1620 }, - { index: 7, text: 81 }, + { index: 7, text: 83 }, - { index: 8, text: 169 }, + { index: 8, text: 171 }, - { index: 9, text: 1758 }, + { index: 9, text: 1790 }, ], skillMap2: [ - { index: 10, text: 1123 }, + { index: 10, text: 1142 }, - { index: 11, text: 1632 }, + { index: 11, text: 1659 }, ], skillMap3: [ - { index: 12, text: 646 }, + { index: 12, text: 655 }, - { index: 13, text: 673 }, + { index: 13, text: 682 }, ], config: [ @@ -3432,7 +3506,7 @@ export default { ShikanoinHeizou: { name: "ShikanoinHeizou", - nameLocale: 1774, + nameLocale: 1806, element: "Anemo", weapon: "Catalyst", star: 4, @@ -3440,60 +3514,60 @@ export default { // avatar: ShikanoinHeizou_avatar, avatar: getName("Heizo"), splash: ShikanoinHeizou_splash, - skillName1: 807, - skillName2: 310, - skillName3: 1368, + skillName1: 820, + skillName2: 316, + skillName3: 1392, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 70 }, + { index: 2, text: 72 }, - { index: 3, text: 408 }, + { index: 3, text: 414 }, - { index: 4, text: 409 }, + { index: 4, text: 415 }, - { index: 5, text: 410 }, + { index: 5, text: 416 }, - { index: 6, text: 406 }, + { index: 6, text: 413 }, - { index: 7, text: 138 }, + { index: 7, text: 140 }, - { index: 8, text: 1594 }, + { index: 8, text: 1620 }, - { index: 9, text: 81 }, + { index: 9, text: 83 }, - { index: 10, text: 169 }, + { index: 10, text: 171 }, - { index: 11, text: 1758 }, + { index: 11, text: 1790 }, ], skillMap2: [ - { index: 12, text: 647 }, + { index: 12, text: 656 }, - { index: 13, text: 649 }, + { index: 13, text: 658 }, - { index: 14, text: 651 }, + { index: 14, text: 660 }, - { index: 15, text: 652 }, + { index: 15, text: 661 }, - { index: 16, text: 653 }, + { index: 16, text: 662 }, ], skillMap3: [ - { index: 17, text: 84 }, + { index: 17, text: 86 }, - { index: 18, text: 1366 }, + { index: 18, text: 1390 }, - { index: 20, text: 1364 }, + { index: 20, text: 1388 }, - { index: 21, text: 1367 }, + { index: 21, text: 1391 }, - { index: 19, text: 1365 }, + { index: 19, text: 1389 }, ], config: [ @@ -3506,7 +3580,7 @@ export default { Sucrose: { name: "Sucrose", - nameLocale: 1256, + nameLocale: 1278, element: "Anemo", weapon: "Catalyst", star: 4, @@ -3514,44 +3588,44 @@ export default { // avatar: Sucrose_avatar, avatar: getName("Sucrose"), splash: Sucrose_splash, - skillName1: 853, - skillName2: 1722, - skillName3: 1304, + skillName1: 866, + skillName2: 1754, + skillName3: 1327, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 70 }, + { index: 2, text: 72 }, - { index: 3, text: 406 }, + { index: 3, text: 413 }, - { index: 4, text: 1594 }, + { index: 4, text: 1620 }, - { index: 5, text: 81 }, + { index: 5, text: 83 }, - { index: 6, text: 169 }, + { index: 6, text: 171 }, - { index: 7, text: 1758 }, + { index: 7, text: 1790 }, ], skillMap2: [ - { index: 8, text: 646 }, + { index: 8, text: 655 }, ], skillMap3: [ - { index: 9, text: 673 }, + { index: 9, text: 682 }, - { index: 10, text: 1670 }, + { index: 10, text: 1700 }, - { index: 11, text: 1669 }, + { index: 11, text: 1699 }, - { index: 13, text: 1668 }, + { index: 13, text: 1698 }, - { index: 12, text: 1671 }, + { index: 12, text: 1701 }, ], config: [ @@ -3564,7 +3638,7 @@ export default { Tartaglia: { name: "Tartaglia", - nameLocale: 1555, + nameLocale: 1581, element: "Hydro", weapon: "Bow", star: 5, @@ -3572,70 +3646,70 @@ export default { // avatar: Tartaglia_avatar, avatar: getName("Tartaglia"), splash: Tartaglia_splash, - skillName1: 830, - skillName2: 1769, - skillName3: 987, + skillName1: 843, + skillName2: 1801, + skillName3: 1003, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 70 }, + { index: 2, text: 72 }, - { index: 3, text: 406 }, + { index: 3, text: 413 }, - { index: 4, text: 138 }, + { index: 4, text: 140 }, - { index: 5, text: 239 }, + { index: 5, text: 245 }, - { index: 6, text: 1255 }, + { index: 6, text: 1277 }, - { index: 7, text: 1101 }, + { index: 7, text: 1120 }, - { index: 8, text: 734 }, + { index: 8, text: 746 }, - { index: 9, text: 733 }, + { index: 9, text: 745 }, - { index: 10, text: 81 }, + { index: 10, text: 83 }, - { index: 11, text: 169 }, + { index: 11, text: 171 }, - { index: 12, text: 1758 }, + { index: 12, text: 1790 }, ], skillMap2: [ - { index: 13, text: 1149 }, + { index: 13, text: 1169 }, - { index: 14, text: 48 }, + { index: 14, text: 50 }, - { index: 15, text: 119 }, + { index: 15, text: 121 }, - { index: 16, text: 70 }, + { index: 16, text: 72 }, - { index: 17, text: 406 }, + { index: 17, text: 413 }, - { index: 18, text: 138 }, + { index: 18, text: 140 }, - { index: 19, text: 240 }, + { index: 19, text: 246 }, - { index: 20, text: 241 }, + { index: 20, text: 247 }, - { index: 21, text: 1596 }, + { index: 21, text: 1621 }, - { index: 22, text: 1602 }, + { index: 22, text: 1626 }, - { index: 23, text: 731 }, + { index: 23, text: 743 }, ], skillMap3: [ - { index: 24, text: 655 }, + { index: 24, text: 664 }, - { index: 25, text: 656 }, + { index: 25, text: 665 }, - { index: 26, text: 732 }, + { index: 26, text: 744 }, ], config: [ @@ -3648,7 +3722,7 @@ export default { Thoma: { name: "Thoma", - nameLocale: 633, + nameLocale: 641, element: "Pyro", weapon: "Polearm", star: 4, @@ -3656,38 +3730,38 @@ export default { // avatar: Thoma_avatar, avatar: getName("Tohma"), splash: Thoma_splash, - skillName1: 865, - skillName2: 1127, - skillName3: 1254, + skillName1: 878, + skillName2: 1147, + skillName3: 1275, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 73 }, + { index: 2, text: 75 }, - { index: 4, text: 406 }, + { index: 4, text: 413 }, - { index: 5, text: 1594 }, + { index: 5, text: 1620 }, - { index: 6, text: 81 }, + { index: 6, text: 83 }, - { index: 7, text: 169 }, + { index: 7, text: 171 }, - { index: 8, text: 1758 }, + { index: 8, text: 1790 }, ], skillMap2: [ - { index: 9, text: 646 }, + { index: 9, text: 655 }, ], skillMap3: [ - { index: 10, text: 646 }, + { index: 10, text: 655 }, - { index: 11, text: 1124 }, + { index: 11, text: 1144 }, ], config: [ @@ -3700,7 +3774,7 @@ export default { Tighnari: { name: "Tighnari", - nameLocale: 684, + nameLocale: 693, element: "Dendro", weapon: "Bow", star: 5, @@ -3708,51 +3782,51 @@ export default { // avatar: Tighnari_avatar, avatar: getName("Tighnari"), splash: Tighnari_splash, - skillName1: 856, - skillName2: 1495, - skillName3: 1581, + skillName1: 869, + skillName2: 1521, + skillName3: 1607, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 70 }, + { index: 2, text: 72 }, - { index: 3, text: 406 }, + { index: 3, text: 413 }, - { index: 4, text: 1255 }, + { index: 4, text: 1277 }, - { index: 5, text: 59 }, + { index: 5, text: 61 }, - { index: 6, text: 1380 }, + { index: 6, text: 1404 }, - { index: 7, text: 1437 }, + { index: 7, text: 1461 }, - { index: 8, text: 81 }, + { index: 8, text: 83 }, - { index: 9, text: 169 }, + { index: 9, text: 171 }, - { index: 10, text: 1758 }, + { index: 10, text: 1790 }, ], skillMap2: [ - { index: 11, text: 646 }, + { index: 11, text: 655 }, ], skillMap3: [ - { index: 12, text: 1345 }, + { index: 12, text: 1368 }, - { index: 13, text: 1011 }, + { index: 13, text: 1029 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"talent1_ratio","title":491,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent1_ratio","title":498,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"c2_ratio","title":388,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"c2_ratio","title":394,"type":"float"}, ], configSkill: [ @@ -3762,7 +3836,7 @@ export default { Venti: { name: "Venti", - nameLocale: 1086, + nameLocale: 1105, element: "Anemo", weapon: "Bow", star: 5, @@ -3770,56 +3844,56 @@ export default { // avatar: Venti_avatar, avatar: getName("Venti"), splash: Venti_splash, - skillName1: 849, - skillName2: 1757, - skillName3: 1723, + skillName1: 862, + skillName2: 1789, + skillName3: 1755, skillMap1: [ - { index: 0, text: 49 }, + { index: 0, text: 51 }, - { index: 1, text: 50 }, + { index: 1, text: 52 }, - { index: 3, text: 119 }, + { index: 3, text: 121 }, - { index: 4, text: 70 }, + { index: 4, text: 72 }, - { index: 5, text: 408 }, + { index: 5, text: 414 }, - { index: 6, text: 409 }, + { index: 6, text: 415 }, - { index: 8, text: 138 }, + { index: 8, text: 140 }, - { index: 9, text: 239 }, + { index: 9, text: 245 }, - { index: 10, text: 1255 }, + { index: 10, text: 1277 }, - { index: 11, text: 1101 }, + { index: 11, text: 1120 }, - { index: 12, text: 81 }, + { index: 12, text: 83 }, - { index: 13, text: 169 }, + { index: 13, text: 171 }, - { index: 14, text: 1758 }, + { index: 14, text: 1790 }, ], skillMap2: [ - { index: 15, text: 1120 }, + { index: 15, text: 1140 }, - { index: 16, text: 1631 }, + { index: 16, text: 1658 }, ], skillMap3: [ - { index: 17, text: 673 }, + { index: 17, text: 682 }, - { index: 18, text: 1670 }, + { index: 18, text: 1700 }, - { index: 20, text: 1669 }, + { index: 20, text: 1699 }, - { index: 21, text: 1668 }, + { index: 21, text: 1698 }, - { index: 19, text: 1671 }, + { index: 19, text: 1701 }, ], config: [ @@ -3832,7 +3906,7 @@ export default { Wanderer: { name: "Wanderer", - nameLocale: 1064, + nameLocale: 1082, element: "Anemo", weapon: "Catalyst", star: 5, @@ -3840,65 +3914,65 @@ export default { // avatar: Wanderer_avatar, avatar: getName("Wanderer"), splash: Wanderer_splash, - skillName1: 857, - skillName2: 1355, - skillName3: 1150, + skillName1: 870, + skillName2: 1378, + skillName3: 1170, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 74 }, + { index: 2, text: 76 }, - { index: 3, text: 52 }, + { index: 3, text: 54 }, - { index: 4, text: 122 }, + { index: 4, text: 124 }, - { index: 5, text: 75 }, + { index: 5, text: 77 }, - { index: 6, text: 1594 }, + { index: 6, text: 1620 }, - { index: 7, text: 26 }, + { index: 7, text: 28 }, - { index: 8, text: 81 }, + { index: 8, text: 83 }, - { index: 9, text: 169 }, + { index: 9, text: 171 }, - { index: 10, text: 1758 }, + { index: 10, text: 1790 }, ], skillMap2: [ - { index: 11, text: 646 }, + { index: 11, text: 655 }, ], skillMap3: [ - { index: 12, text: 654 }, + { index: 12, text: 663 }, ], config: [ - {"default":false,"name":"e_pyro","title":25,"type":"bool"}, + {"default":false,"name":"e_pyro","title":27,"type":"bool"}, - {"default":false,"name":"e_cryo","title":23,"type":"bool"}, + {"default":false,"name":"e_cryo","title":25,"type":"bool"}, ], configSkill: [ - {"default":true,"name":"e_enabled","title":441,"type":"bool"}, + {"default":true,"name":"e_enabled","title":447,"type":"bool"}, - {"default":false,"name":"e_hydro","title":24,"type":"bool"}, + {"default":false,"name":"e_hydro","title":26,"type":"bool"}, - {"default":50.0,"max":120.0,"min":0.0,"name":"sdpoints","title":1314,"type":"float"}, + {"default":50.0,"max":120.0,"min":0.0,"name":"sdpoints","title":1337,"type":"float"}, ], }, Xiangling: { name: "Xiangling", - nameLocale: 1748, + nameLocale: 1780, element: "Pyro", weapon: "Polearm", star: 4, @@ -3906,46 +3980,46 @@ export default { // avatar: Xiangling_avatar, avatar: getName("Xiangling"), splash: Xiangling_splash, - skillName1: 846, - skillName2: 1629, - skillName3: 763, + skillName1: 859, + skillName2: 1656, + skillName3: 776, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 71 }, + { index: 2, text: 73 }, - { index: 3, text: 72 }, + { index: 3, text: 74 }, - { index: 5, text: 413 }, + { index: 5, text: 419 }, - { index: 7, text: 138 }, + { index: 7, text: 140 }, - { index: 8, text: 1594 }, + { index: 8, text: 1620 }, - { index: 9, text: 81 }, + { index: 9, text: 83 }, - { index: 10, text: 169 }, + { index: 10, text: 171 }, - { index: 11, text: 1758 }, + { index: 11, text: 1790 }, ], skillMap2: [ - { index: 12, text: 402 }, + { index: 12, text: 408 }, ], skillMap3: [ - { index: 13, text: 53 }, + { index: 13, text: 55 }, - { index: 14, text: 123 }, + { index: 14, text: 125 }, - { index: 15, text: 76 }, + { index: 15, text: 78 }, - { index: 16, text: 764 }, + { index: 16, text: 777 }, ], config: [ @@ -3958,7 +4032,7 @@ export default { Xiao: { name: "Xiao", - nameLocale: 1760, + nameLocale: 1792, element: "Anemo", weapon: "Polearm", star: 5, @@ -3966,39 +4040,39 @@ export default { // avatar: Xiao_avatar, avatar: getName("Xiao"), splash: Xiao_splash, - skillName1: 812, - skillName2: 1725, - skillName3: 1708, + skillName1: 825, + skillName2: 1757, + skillName3: 1740, skillMap1: [ - { index: 0, text: 49 }, + { index: 0, text: 51 }, - { index: 1, text: 50 }, + { index: 1, text: 52 }, - { index: 3, text: 119 }, + { index: 3, text: 121 }, - { index: 4, text: 70 }, + { index: 4, text: 72 }, - { index: 5, text: 408 }, + { index: 5, text: 414 }, - { index: 6, text: 409 }, + { index: 6, text: 415 }, - { index: 8, text: 138 }, + { index: 8, text: 140 }, - { index: 9, text: 239 }, + { index: 9, text: 245 }, - { index: 10, text: 1594 }, + { index: 10, text: 1620 }, - { index: 11, text: 81 }, + { index: 11, text: 83 }, - { index: 12, text: 169 }, + { index: 12, text: 171 }, - { index: 13, text: 1758 }, + { index: 13, text: 1790 }, ], skillMap2: [ - { index: 14, text: 646 }, + { index: 14, text: 655 }, ], skillMap3: [ @@ -4009,18 +4083,18 @@ export default { ], configSkill: [ - {"default":true,"name":"after_q","title":1708,"type":"bool"}, + {"default":true,"name":"after_q","title":1740,"type":"bool"}, - {"default":4.0,"max":4.0,"min":0.0,"name":"talent1_stack","title":494,"type":"float"}, + {"default":4.0,"max":4.0,"min":0.0,"name":"talent1_stack","title":501,"type":"float"}, - {"default":0.0,"max":3.0,"min":0.0,"name":"talent2_stack","title":482,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"talent2_stack","title":489,"type":"float"}, ], }, Xingqiu: { name: "Xingqiu", - nameLocale: 1443, + nameLocale: 1467, element: "Hydro", weapon: "Sword", star: 4, @@ -4028,46 +4102,46 @@ export default { // avatar: Xingqiu_avatar, avatar: getName("Xingqiu"), splash: Xingqiu_splash, - skillName1: 813, - skillName2: 352, - skillName3: 353, + skillName1: 826, + skillName2: 358, + skillName3: 359, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 71 }, + { index: 2, text: 73 }, - { index: 3, text: 72 }, + { index: 3, text: 74 }, - { index: 5, text: 406 }, + { index: 5, text: 413 }, - { index: 6, text: 139 }, + { index: 6, text: 141 }, - { index: 7, text: 140 }, + { index: 7, text: 142 }, - { index: 9, text: 1596 }, + { index: 9, text: 1621 }, - { index: 10, text: 1602 }, + { index: 10, text: 1626 }, - { index: 12, text: 81 }, + { index: 12, text: 83 }, - { index: 13, text: 169 }, + { index: 13, text: 171 }, - { index: 14, text: 1758 }, + { index: 14, text: 1790 }, ], skillMap2: [ - { index: 15, text: 648 }, + { index: 15, text: 657 }, - { index: 16, text: 650 }, + { index: 16, text: 659 }, ], skillMap3: [ - { index: 17, text: 300 }, + { index: 17, text: 306 }, ], config: [ @@ -4075,14 +4149,14 @@ export default { ], configSkill: [ - {"default":false,"name":"c4","title":590,"type":"bool"}, + {"default":false,"name":"c4","title":597,"type":"bool"}, ], }, Xinyan: { name: "Xinyan", - nameLocale: 1546, + nameLocale: 1572, element: "Pyro", weapon: "Claymore", star: 4, @@ -4090,42 +4164,42 @@ export default { // avatar: Xinyan_avatar, avatar: getName("Xinyan"), splash: Xinyan_splash, - skillName1: 841, - skillName2: 1130, - skillName3: 349, + skillName1: 854, + skillName2: 1150, + skillName3: 355, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 70 }, + { index: 2, text: 72 }, - { index: 3, text: 406 }, + { index: 3, text: 413 }, - { index: 4, text: 1608 }, + { index: 4, text: 1634 }, - { index: 5, text: 1611 }, + { index: 5, text: 1637 }, - { index: 6, text: 81 }, + { index: 6, text: 83 }, - { index: 7, text: 169 }, + { index: 7, text: 171 }, - { index: 8, text: 1758 }, + { index: 8, text: 1790 }, ], skillMap2: [ - { index: 9, text: 681 }, + { index: 9, text: 690 }, - { index: 10, text: 673 }, + { index: 10, text: 682 }, ], skillMap3: [ - { index: 11, text: 646 }, + { index: 11, text: 655 }, - { index: 12, text: 1107 }, + { index: 12, text: 1126 }, ], config: [ @@ -4133,14 +4207,14 @@ export default { ], configSkill: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":34,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":36,"type":"float"}, ], }, YaeMiko: { name: "YaeMiko", - nameLocale: 230, + nameLocale: 236, element: "Electro", weapon: "Catalyst", star: 5, @@ -4148,42 +4222,42 @@ export default { // avatar: YaeMiko_avatar, avatar: getName("Yae"), splash: YaeMiko_splash, - skillName1: 844, - skillName2: 1614, - skillName3: 464, + skillName1: 857, + skillName2: 1641, + skillName3: 470, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 70 }, + { index: 2, text: 72 }, - { index: 3, text: 1594 }, + { index: 3, text: 1620 }, - { index: 4, text: 81 }, + { index: 4, text: 83 }, - { index: 5, text: 169 }, + { index: 5, text: 171 }, - { index: 6, text: 1758 }, + { index: 6, text: 1790 }, ], skillMap2: [ - { index: 7, text: 981 }, + { index: 7, text: 997 }, - { index: 8, text: 983 }, + { index: 8, text: 999 }, - { index: 9, text: 980 }, + { index: 9, text: 996 }, - { index: 10, text: 982 }, + { index: 10, text: 998 }, ], skillMap3: [ - { index: 11, text: 646 }, + { index: 11, text: 655 }, - { index: 12, text: 468 }, + { index: 12, text: 475 }, ], config: [ @@ -4196,7 +4270,7 @@ export default { Yanfei: { name: "Yanfei", - nameLocale: 1128, + nameLocale: 1148, element: "Pyro", weapon: "Catalyst", star: 4, @@ -4204,44 +4278,44 @@ export default { // avatar: Yanfei_avatar, avatar: getName("Feiyan"), splash: Yanfei_splash, - skillName1: 839, - skillName2: 91, - skillName3: 278, + skillName1: 852, + skillName2: 93, + skillName3: 284, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 70 }, + { index: 2, text: 72 }, - { index: 3, text: 1593 }, + { index: 3, text: 1619 }, - { index: 4, text: 1589 }, + { index: 4, text: 1615 }, - { index: 5, text: 1590 }, + { index: 5, text: 1616 }, - { index: 6, text: 1591 }, + { index: 6, text: 1617 }, - { index: 7, text: 1592 }, + { index: 7, text: 1618 }, - { index: 8, text: 479 }, + { index: 8, text: 486 }, - { index: 9, text: 81 }, + { index: 9, text: 83 }, - { index: 10, text: 169 }, + { index: 10, text: 171 }, - { index: 11, text: 1758 }, + { index: 11, text: 1790 }, ], skillMap2: [ - { index: 12, text: 646 }, + { index: 12, text: 655 }, ], skillMap3: [ - { index: 13, text: 646 }, + { index: 13, text: 655 }, ], config: [ @@ -4249,14 +4323,14 @@ export default { ], configSkill: [ - {"default":true,"name":"after_q","title":1117,"type":"bool"}, + {"default":true,"name":"after_q","title":1137,"type":"bool"}, ], }, Yaoyao: { name: "Yaoyao", - nameLocale: 1194, + nameLocale: 1215, element: "Dendro", weapon: "Polearm", star: 4, @@ -4264,49 +4338,49 @@ export default { // avatar: Yaoyao_avatar, avatar: getName("Yaoyao"), splash: Yaoyao_splash, - skillName1: 869, - skillName2: 130, - skillName3: 1167, + skillName1: 883, + skillName2: 132, + skillName3: 1188, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 71 }, + { index: 2, text: 73 }, - { index: 3, text: 72 }, + { index: 3, text: 74 }, - { index: 4, text: 406 }, + { index: 4, text: 413 }, - { index: 5, text: 1594 }, + { index: 5, text: 1620 }, - { index: 6, text: 81 }, + { index: 6, text: 83 }, - { index: 7, text: 169 }, + { index: 7, text: 171 }, - { index: 8, text: 1758 }, + { index: 8, text: 1790 }, ], skillMap2: [ - { index: 9, text: 1245 }, + { index: 9, text: 1266 }, - { index: 10, text: 1246 }, + { index: 10, text: 1267 }, ], skillMap3: [ - { index: 11, text: 646 }, + { index: 11, text: 655 }, - { index: 12, text: 1003 }, + { index: 12, text: 1021 }, - { index: 13, text: 1004 }, + { index: 13, text: 1022 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"c4_rate","title":393,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"c4_rate","title":399,"type":"float"}, ], configSkill: [ @@ -4316,7 +4390,7 @@ export default { Yelan: { name: "Yelan", - nameLocale: 457, + nameLocale: 463, element: "Hydro", weapon: "Bow", star: 5, @@ -4324,47 +4398,47 @@ export default { // avatar: Yelan_avatar, avatar: getName("Yelan"), splash: Yelan_splash, - skillName1: 838, - skillName2: 1427, - skillName3: 1078, + skillName1: 851, + skillName2: 1451, + skillName3: 1097, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 70 }, + { index: 2, text: 72 }, - { index: 3, text: 411 }, + { index: 3, text: 417 }, - { index: 4, text: 1255 }, + { index: 4, text: 1277 }, - { index: 5, text: 1101 }, + { index: 5, text: 1120 }, - { index: 6, text: 1266 }, + { index: 6, text: 1288 }, - { index: 8, text: 81 }, + { index: 8, text: 83 }, - { index: 9, text: 169 }, + { index: 9, text: 171 }, - { index: 10, text: 1758 }, + { index: 10, text: 1790 }, ], skillMap2: [ - { index: 11, text: 646 }, + { index: 11, text: 655 }, ], skillMap3: [ - { index: 12, text: 646 }, + { index: 12, text: 655 }, - { index: 13, text: 1166 }, + { index: 13, text: 1187 }, ], config: [ - {"default":4,"max":4,"min":1,"name":"team_element_count","title":1636,"type":"int"}, + {"default":4,"max":4,"min":1,"name":"team_element_count","title":1663,"type":"int"}, ], configSkill: [ @@ -4374,7 +4448,7 @@ export default { Yoimiya: { name: "Yoimiya", - nameLocale: 541, + nameLocale: 548, element: "Pyro", weapon: "Bow", star: 5, @@ -4382,32 +4456,32 @@ export default { // avatar: Yoimiya_avatar, avatar: getName("Yoimiya"), splash: Yoimiya_splash, - skillName1: 842, - skillName2: 1134, - skillName3: 1184, + skillName1: 855, + skillName2: 1154, + skillName3: 1205, skillMap1: [ - { index: 0, text: 51 }, + { index: 0, text: 53 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 70 }, + { index: 2, text: 72 }, - { index: 3, text: 411 }, + { index: 3, text: 417 }, - { index: 4, text: 138 }, + { index: 4, text: 140 }, - { index: 5, text: 1255 }, + { index: 5, text: 1277 }, - { index: 6, text: 1101 }, + { index: 6, text: 1120 }, - { index: 7, text: 1135 }, + { index: 7, text: 1155 }, - { index: 8, text: 81 }, + { index: 8, text: 83 }, - { index: 9, text: 169 }, + { index: 9, text: 171 }, - { index: 10, text: 1758 }, + { index: 10, text: 1790 }, ], skillMap2: [ @@ -4415,26 +4489,26 @@ export default { ], skillMap3: [ - { index: 11, text: 646 }, + { index: 11, text: 655 }, - { index: 12, text: 1185 }, + { index: 12, text: 1206 }, ], config: [ - {"default":8.0,"max":10.0,"min":0.0,"name":"talent1_level","title":492,"type":"float"}, + {"default":8.0,"max":10.0,"min":0.0,"name":"talent1_level","title":499,"type":"float"}, ], configSkill: [ - {"default":true,"name":"after_e","title":595,"type":"bool"}, + {"default":true,"name":"after_e","title":602,"type":"bool"}, ], }, Yunjin: { name: "Yunjin", - nameLocale: 131, + nameLocale: 133, element: "Geo", weapon: "Polearm", star: 4, @@ -4442,46 +4516,46 @@ export default { // avatar: Yunjin_avatar, avatar: getName("Yunjin"), splash: Yunjin_splash, - skillName1: 826, - skillName2: 762, - skillName3: 1267, + skillName1: 839, + skillName2: 775, + skillName3: 1289, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 71 }, + { index: 2, text: 73 }, - { index: 3, text: 72 }, + { index: 3, text: 74 }, - { index: 4, text: 408 }, + { index: 4, text: 414 }, - { index: 5, text: 409 }, + { index: 5, text: 415 }, - { index: 6, text: 138 }, + { index: 6, text: 140 }, - { index: 7, text: 1594 }, + { index: 7, text: 1620 }, - { index: 8, text: 81 }, + { index: 8, text: 83 }, - { index: 9, text: 169 }, + { index: 9, text: 171 }, - { index: 10, text: 1758 }, + { index: 10, text: 1790 }, ], skillMap2: [ - { index: 11, text: 1119 }, + { index: 11, text: 1139 }, - { index: 12, text: 55 }, + { index: 12, text: 57 }, - { index: 13, text: 125 }, + { index: 13, text: 127 }, ], skillMap3: [ - { index: 14, text: 646 }, + { index: 14, text: 655 }, ], config: [ @@ -4494,7 +4568,7 @@ export default { Zhongli: { name: "Zhongli", - nameLocale: 1619, + nameLocale: 1646, element: "Geo", weapon: "Polearm", star: 5, @@ -4502,44 +4576,44 @@ export default { // avatar: Zhongli_avatar, avatar: getName("Zhongli"), splash: Zhongli_splash, - skillName1: 817, - skillName2: 422, - skillName3: 466, + skillName1: 830, + skillName2: 428, + skillName3: 473, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 70 }, + { index: 2, text: 72 }, - { index: 3, text: 406 }, + { index: 3, text: 413 }, - { index: 4, text: 142 }, + { index: 4, text: 144 }, - { index: 5, text: 239 }, + { index: 5, text: 245 }, - { index: 6, text: 1594 }, + { index: 6, text: 1620 }, - { index: 7, text: 81 }, + { index: 7, text: 83 }, - { index: 8, text: 169 }, + { index: 8, text: 171 }, - { index: 9, text: 1758 }, + { index: 9, text: 1790 }, ], skillMap2: [ - { index: 10, text: 570 }, + { index: 10, text: 577 }, - { index: 11, text: 243 }, + { index: 11, text: 249 }, - { index: 12, text: 1631 }, + { index: 12, text: 1658 }, ], skillMap3: [ - { index: 13, text: 646 }, + { index: 13, text: 655 }, ], config: [ @@ -4552,7 +4626,7 @@ export default { Kirara: { name: "Kirara", - nameLocale: 1341, + nameLocale: 1364, element: "Dendro", weapon: "Sword", star: 4, @@ -4560,48 +4634,48 @@ export default { // avatar: Kirara_avatar, avatar: getName("Momoka"), splash: Kirara_splash, - skillName1: 854, - skillName2: 381, - skillName3: 1307, + skillName1: 867, + skillName2: 387, + skillName3: 1330, skillMap1: [ - { index: 0, text: 48 }, + { index: 0, text: 50 }, - { index: 1, text: 119 }, + { index: 1, text: 121 }, - { index: 2, text: 71 }, + { index: 2, text: 73 }, - { index: 3, text: 72 }, + { index: 3, text: 74 }, - { index: 4, text: 406 }, + { index: 4, text: 413 }, - { index: 5, text: 1595 }, + { index: 5, text: 1623 }, - { index: 6, text: 1601 }, + { index: 6, text: 1625 }, - { index: 7, text: 1603 }, + { index: 7, text: 1629 }, - { index: 8, text: 81 }, + { index: 8, text: 83 }, - { index: 9, text: 169 }, + { index: 9, text: 171 }, - { index: 10, text: 1758 }, + { index: 10, text: 1790 }, ], skillMap2: [ - { index: 11, text: 1224 }, + { index: 11, text: 1245 }, - { index: 12, text: 1164 }, + { index: 12, text: 1185 }, - { index: 13, text: 1363 }, + { index: 13, text: 1386 }, ], skillMap3: [ - { index: 14, text: 646 }, + { index: 14, text: 655 }, - { index: 15, text: 1165 }, + { index: 15, text: 1186 }, ], config: [ diff --git a/src/assets/_gen_pf.js b/src/assets/_gen_pf.js index 8bff8041..d943fd1a 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":699,"type":"bool"}, + {"default":false,"name":"atk_use","title":708,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"atk_weight","title":700,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"atk_weight","title":709,"type":"float"}, - {"default":true,"name":"atk_p_use","title":692,"type":"bool"}, + {"default":true,"name":"atk_p_use","title":701,"type":"bool"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"atk_p_weight","title":693,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"atk_p_weight","title":702,"type":"float"}, - {"default":false,"name":"hp_use","title":1218,"type":"bool"}, + {"default":false,"name":"hp_use","title":1239,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"hp_weight","title":1219,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"hp_weight","title":1240,"type":"float"}, - {"default":false,"name":"hp_p_use","title":1204,"type":"bool"}, + {"default":false,"name":"hp_p_use","title":1225,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"hp_p_weight","title":1205,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"hp_p_weight","title":1226,"type":"float"}, - {"default":false,"name":"def_use","title":1656,"type":"bool"}, + {"default":false,"name":"def_use","title":1686,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"def_weight","title":1657,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"def_weight","title":1687,"type":"float"}, - {"default":false,"name":"def_p_use","title":1651,"type":"bool"}, + {"default":false,"name":"def_p_use","title":1681,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"def_p_weight","title":1652,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"def_p_weight","title":1682,"type":"float"}, - {"default":true,"name":"critical_use","title":952,"type":"bool"}, + {"default":true,"name":"critical_use","title":967,"type":"bool"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"critical_weight","title":953,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"critical_weight","title":968,"type":"float"}, - {"default":true,"name":"critical_damage_use","title":946,"type":"bool"}, + {"default":true,"name":"critical_damage_use","title":961,"type":"bool"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"critical_damage_weight","title":947,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"critical_damage_weight","title":962,"type":"float"}, - {"default":false,"name":"elemental_mastery_use","title":223,"type":"bool"}, + {"default":false,"name":"elemental_mastery_use","title":229,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"elemental_mastery_weight","title":224,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"elemental_mastery_weight","title":230,"type":"float"}, - {"default":false,"name":"recharge_use","title":187,"type":"bool"}, + {"default":false,"name":"recharge_use","title":189,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"recharge_weight","title":188,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"recharge_weight","title":190,"type":"float"}, ], }, diff --git a/src/assets/_gen_tf.js b/src/assets/_gen_tf.js index 038134dc..e030c501 100644 --- a/src/assets/_gen_tf.js +++ b/src/assets/_gen_tf.js @@ -196,6 +196,8 @@ import ExpectMelt_image from "@image/misc/sword" + + @@ -206,8 +208,8 @@ export default { "MaxATK": { name: "MaxATK", - nameLocale: 966, - description: 963, + nameLocale: 982, + description: 979, tags: [ "攻击", @@ -224,8 +226,8 @@ export default { "MaxDEF": { name: "MaxDEF", - nameLocale: 971, - description: 965, + nameLocale: 987, + description: 981, tags: [ "防御", @@ -242,8 +244,8 @@ export default { "MaxHP": { name: "MaxHP", - nameLocale: 968, - description: 964, + nameLocale: 984, + description: 980, tags: [ "生命", @@ -260,8 +262,8 @@ export default { "MaxEM": { name: "MaxEM", - nameLocale: 958, - description: 962, + nameLocale: 974, + description: 978, tags: [ "元素精通", @@ -278,8 +280,8 @@ export default { "MaxRecharge": { name: "MaxRecharge", - nameLocale: 959, - description: 961, + nameLocale: 975, + description: 977, tags: [ "", @@ -296,8 +298,8 @@ export default { "PyroDamage": { name: "PyroDamage", - nameLocale: 1104, - description: 1105, + nameLocale: 1123, + description: 1124, tags: [ "输出", @@ -309,15 +311,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1322,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1345,"type":"option"}, ], }, "CryoDamage": { name: "CryoDamage", - nameLocale: 253, - description: 254, + nameLocale: 259, + description: 260, tags: [ "输出", @@ -329,15 +331,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1322,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1345,"type":"option"}, ], }, "HydroDamage": { name: "HydroDamage", - nameLocale: 1027, - description: 1028, + nameLocale: 1045, + description: 1046, tags: [ "输出", @@ -349,15 +351,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1322,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1345,"type":"option"}, ], }, "ElectroDamage": { name: "ElectroDamage", - nameLocale: 1680, - description: 1681, + nameLocale: 1712, + description: 1713, tags: [ "输出", @@ -369,15 +371,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1322,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1345,"type":"option"}, ], }, "AnemoDamage": { name: "AnemoDamage", - nameLocale: 1715, - description: 1717, + nameLocale: 1747, + description: 1749, tags: [ "输出", @@ -389,15 +391,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1322,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1345,"type":"option"}, ], }, "DendroDamage": { name: "DendroDamage", - nameLocale: 1389, - description: 1390, + nameLocale: 1413, + description: 1414, tags: [ "", @@ -409,15 +411,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1322,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1345,"type":"option"}, ], }, "GeoDamage": { name: "GeoDamage", - nameLocale: 567, - description: 568, + nameLocale: 574, + description: 575, tags: [ "输出", @@ -429,15 +431,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1322,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1345,"type":"option"}, ], }, "PhysicalDamage": { name: "PhysicalDamage", - nameLocale: 1145, - description: 1146, + nameLocale: 1165, + description: 1166, tags: [ "输出", @@ -449,15 +451,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1322,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1345,"type":"option"}, ], }, "MaxVaporize": { name: "MaxVaporize", - nameLocale: 969, - description: 175, + nameLocale: 985, + description: 177, tags: [ "输出", @@ -469,17 +471,17 @@ export default { config: [ - {"default":0,"name":"t","options":["火","水"],"title":1482,"type":"option"}, + {"default":0,"name":"t","options":["火","水"],"title":1508,"type":"option"}, - {"default":"NormalAttack","name":"skill","title":645,"type":"skill4"}, + {"default":"NormalAttack","name":"skill","title":654,"type":"skill4"}, ], }, "MaxMelt": { name: "MaxMelt", - nameLocale: 970, - description: 177, + nameLocale: 986, + description: 179, tags: [ "输出", @@ -491,17 +493,17 @@ export default { config: [ - {"default":0,"name":"t","options":["火","冰"],"title":1482,"type":"option"}, + {"default":0,"name":"t","options":["火","冰"],"title":1508,"type":"option"}, - {"default":"NormalAttack","name":"skill","title":645,"type":"skill4"}, + {"default":"NormalAttack","name":"skill","title":654,"type":"skill4"}, ], }, "ExpectVaporize": { name: "ExpectVaporize", - nameLocale: 978, - description: 176, + nameLocale: 994, + description: 178, tags: [ "输出", @@ -513,17 +515,17 @@ export default { config: [ - {"default":0,"name":"t","options":["火","水"],"title":1482,"type":"option"}, + {"default":0,"name":"t","options":["火","水"],"title":1508,"type":"option"}, - {"default":"NormalAttack","name":"skill","title":645,"type":"skill4"}, + {"default":"NormalAttack","name":"skill","title":654,"type":"skill4"}, ], }, "ExpectMelt": { name: "ExpectMelt", - nameLocale: 979, - description: 178, + nameLocale: 995, + description: 180, tags: [ "输出", @@ -535,17 +537,17 @@ export default { config: [ - {"default":0,"name":"t","options":["火","冰"],"title":1482,"type":"option"}, + {"default":0,"name":"t","options":["火","冰"],"title":1508,"type":"option"}, - {"default":"NormalAttack","name":"skill","title":645,"type":"skill4"}, + {"default":"NormalAttack","name":"skill","title":654,"type":"skill4"}, ], }, "AlbedoDefault": { name: "AlbedoDefault", - nameLocale: 1664, - description: 802, + nameLocale: 1694, + description: 815, tags: [ "输出", @@ -562,8 +564,8 @@ export default { "AloyDefault": { name: "AloyDefault", - nameLocale: 433, - description: 918, + nameLocale: 439, + description: 932, tags: [ "输出", @@ -580,8 +582,8 @@ export default { "AmberDefault": { name: "AmberDefault", - nameLocale: 528, - description: 921, + nameLocale: 535, + description: 935, tags: [ "输出", @@ -598,8 +600,8 @@ export default { "AratakiIttoDefault": { name: "AratakiIttoDefault", - nameLocale: 1393, - description: 1395, + nameLocale: 1417, + description: 1419, tags: [ "输出", @@ -616,8 +618,8 @@ export default { "BarbaraDefault": { name: "BarbaraDefault", - nameLocale: 1378, - description: 174, + nameLocale: 1402, + description: 176, tags: [ "治疗", @@ -636,8 +638,8 @@ export default { "BeidouDefault": { name: "BeidouDefault", - nameLocale: 313, - description: 803, + nameLocale: 319, + description: 816, tags: [ "输出", @@ -654,8 +656,8 @@ export default { "BennettDamage": { name: "BennettDamage", - nameLocale: 1179, - description: 799, + nameLocale: 1200, + description: 812, tags: [ "辅助", @@ -671,17 +673,17 @@ export default { config: [ - {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":227,"type":"float"}, + {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, - {"default":0.9,"max":1.0,"min":0.0,"name":"other_dmg_ratio","title":154,"type":"float"}, + {"default":0.9,"max":1.0,"min":0.0,"name":"other_dmg_ratio","title":156,"type":"float"}, ], }, "BennettDefault": { name: "BennettDefault", - nameLocale: 1180, - description: 909, + nameLocale: 1201, + description: 923, tags: [ "辅助", @@ -693,15 +695,15 @@ export default { config: [ - {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":227,"type":"float"}, + {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, ], }, "ChongyunDefault": { name: "ChongyunDefault", - nameLocale: 1587, - description: 801, + nameLocale: 1613, + description: 814, tags: [ "副C", @@ -720,8 +722,8 @@ export default { "DilucDefault": { name: "DilucDefault", - nameLocale: 1562, - description: 934, + nameLocale: 1588, + description: 949, tags: [ "输出", @@ -733,17 +735,17 @@ export default { config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1440,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1464,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1432,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1456,"type":"float"}, ], }, "DionaDefault": { name: "DionaDefault", - nameLocale: 1565, - description: 902, + nameLocale: 1591, + description: 916, tags: [ "治疗", @@ -757,15 +759,15 @@ export default { config: [ - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":227,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, ], }, "EulaDefault": { name: "EulaDefault", - nameLocale: 164, - description: 795, + nameLocale: 166, + description: 808, tags: [ "输出", @@ -782,8 +784,8 @@ export default { "FischlDefault": { name: "FischlDefault", - nameLocale: 1426, - description: 796, + nameLocale: 1450, + description: 809, tags: [ "输出", @@ -800,8 +802,8 @@ export default { "GanyuDefault": { name: "GanyuDefault", - nameLocale: 1199, - description: 929, + nameLocale: 1220, + description: 944, tags: [ "输出", @@ -813,15 +815,15 @@ export default { config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1440,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1464,"type":"float"}, ], }, "GorouDefault": { name: "GorouDefault", - nameLocale: 148, - description: 805, + nameLocale: 150, + description: 818, tags: [ "辅助", @@ -833,15 +835,15 @@ export default { config: [ - {"default":1.7,"max":3.0,"min":1.0,"name":"recharge_demand","title":226,"type":"float"}, + {"default":1.7,"max":3.0,"min":1.0,"name":"recharge_demand","title":232,"type":"float"}, ], }, "HuTaoDefault": { name: "HuTaoDefault", - nameLocale: 1371, - description: 914, + nameLocale: 1395, + description: 928, tags: [ "输出", @@ -853,17 +855,17 @@ export default { config: [ - {"default":0.5,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1432,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1456,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1440,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1464,"type":"float"}, ], }, "JeanDefault": { name: "JeanDefault", - nameLocale: 1191, - description: 797, + nameLocale: 1212, + description: 810, tags: [ "副C", @@ -877,17 +879,17 @@ export default { config: [ - {"default":0.5,"max":1.0,"min":0.0,"name":"damage_weight","title":1042,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"damage_weight","title":1060,"type":"float"}, - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":226,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":232,"type":"float"}, ], }, "KaedeharaKazuhaDamage": { name: "KaedeharaKazuhaDamage", - nameLocale: 992, - description: 924, + nameLocale: 1010, + description: 939, tags: [ "输出", @@ -901,19 +903,19 @@ export default { config: [ - {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":227,"type":"float"}, + {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, - {"default":0.5,"max":1.0,"min":0.0,"name":"swirl_rate","title":643,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"swirl_rate","title":651,"type":"float"}, - {"default":0.9,"max":1.0,"min":0.0,"name":"other_dmg_ratio","title":154,"type":"float"}, + {"default":0.9,"max":1.0,"min":0.0,"name":"other_dmg_ratio","title":156,"type":"float"}, ], }, "KaedeharaKazuhaDefault": { name: "KaedeharaKazuhaDefault", - nameLocale: 991, - description: 908, + nameLocale: 1009, + description: 922, tags: [ "辅助", @@ -925,15 +927,15 @@ export default { config: [ - {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":227,"type":"float"}, + {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, ], }, "KaeyaDefault": { name: "KaeyaDefault", - nameLocale: 280, - description: 798, + nameLocale: 286, + description: 811, tags: [ "输出", @@ -950,8 +952,8 @@ export default { "KamisatoAyakaDefault": { name: "KamisatoAyakaDefault", - nameLocale: 1291, - description: 794, + nameLocale: 1314, + description: 807, tags: [ "输出", @@ -963,15 +965,15 @@ export default { config: [ - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":227,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, ], }, "KamisatoAyakaDps": { name: "KamisatoAyakaDps", - nameLocale: 1289, - description: 977, + nameLocale: 1312, + description: 993, tags: [ "输出", @@ -988,8 +990,8 @@ export default { "KamisatoAyatoDefault": { name: "KamisatoAyatoDefault", - nameLocale: 1285, - description: 901, + nameLocale: 1308, + description: 915, tags: [ "输出", @@ -1006,8 +1008,8 @@ export default { "KeqingDefault": { name: "KeqingDefault", - nameLocale: 296, - description: 938, + nameLocale: 302, + description: 953, tags: [ "输出", @@ -1019,15 +1021,15 @@ export default { config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"aggravate_rate","title":1525,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"aggravate_rate","title":1551,"type":"float"}, ], }, "KleeDefault": { name: "KleeDefault", - nameLocale: 358, - description: 361, + nameLocale: 364, + description: 367, tags: [ "输出", @@ -1039,15 +1041,15 @@ export default { config: [ - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":227,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, ], }, "KujouSaraDamage": { name: "KujouSaraDamage", - nameLocale: 104, - description: 301, + nameLocale: 106, + description: 307, tags: [ "输出", @@ -1061,15 +1063,15 @@ export default { config: [ - {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":227,"type":"float"}, + {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, ], }, "KujouSaraDefault": { name: "KujouSaraDefault", - nameLocale: 105, - description: 939, + nameLocale: 107, + description: 954, tags: [ "辅助", @@ -1086,8 +1088,8 @@ export default { "LisaDefault": { name: "LisaDefault", - nameLocale: 95, - description: 915, + nameLocale: 97, + description: 929, tags: [ "输出", @@ -1099,15 +1101,15 @@ export default { config: [ - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":226,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":232,"type":"float"}, ], }, "MonaDefault": { name: "MonaDefault", - nameLocale: 1402, - description: 930, + nameLocale: 1426, + description: 945, tags: [ "输出", @@ -1121,15 +1123,15 @@ export default { config: [ - {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":226,"type":"float"}, + {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":232,"type":"float"}, ], }, "NingguangDefault": { name: "NingguangDefault", - nameLocale: 274, - description: 916, + nameLocale: 280, + description: 930, tags: [ "输出", @@ -1146,8 +1148,8 @@ export default { "NoelleDefault": { name: "NoelleDefault", - nameLocale: 1505, - description: 932, + nameLocale: 1531, + description: 947, tags: [ "输出", @@ -1164,8 +1166,8 @@ export default { "QiqiDefault": { name: "QiqiDefault", - nameLocale: 63, - description: 904, + nameLocale: 65, + description: 918, tags: [ "治疗", @@ -1177,15 +1179,15 @@ export default { config: [ - {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":226,"type":"float"}, + {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":232,"type":"float"}, ], }, "RaidenShogunDefault": { name: "RaidenShogunDefault", - nameLocale: 1695, - description: 936, + nameLocale: 1727, + description: 951, tags: [ "输出", @@ -1197,15 +1199,15 @@ export default { config: [ - {"default":2.6,"max":4.0,"min":1.0,"name":"recharge_demand","title":227,"type":"float"}, + {"default":2.6,"max":4.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, ], }, "RazorDefault": { name: "RazorDefault", - nameLocale: 1688, - description: 928, + nameLocale: 1720, + description: 943, tags: [ "输出", @@ -1222,8 +1224,8 @@ export default { "RosariaDefault": { name: "RosariaDefault", - nameLocale: 1349, - description: 912, + nameLocale: 1372, + description: 926, tags: [ "辅助", @@ -1242,8 +1244,8 @@ export default { "SangonomiyaKokomiDefault": { name: "SangonomiyaKokomiDefault", - nameLocale: 1172, - description: 923, + nameLocale: 1193, + description: 937, tags: [ "输出", @@ -1262,8 +1264,8 @@ export default { "SayuDefault": { name: "SayuDefault", - nameLocale: 775, - description: 917, + nameLocale: 788, + description: 931, tags: [ "输出", @@ -1277,15 +1279,15 @@ export default { config: [ - {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":226,"type":"float"}, + {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":232,"type":"float"}, ], }, "ShenheDefault": { name: "ShenheDefault", - nameLocale: 1231, - description: 910, + nameLocale: 1252, + description: 924, tags: [ "辅助", @@ -1297,15 +1299,15 @@ export default { config: [ - {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":226,"type":"float"}, + {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":232,"type":"float"}, ], }, "SucroseDefault": { name: "SucroseDefault", - nameLocale: 1260, - description: 911, + nameLocale: 1282, + description: 925, tags: [ "辅助", @@ -1317,15 +1319,15 @@ export default { config: [ - {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":226,"type":"float"}, + {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":232,"type":"float"}, ], }, "TartagliaDefault": { name: "TartagliaDefault", - nameLocale: 1556, - description: 933, + nameLocale: 1582, + description: 948, tags: [ "输出", @@ -1342,8 +1344,8 @@ export default { "ThomaDefault": { name: "ThomaDefault", - nameLocale: 636, - description: 907, + nameLocale: 644, + description: 921, tags: [ "辅助", @@ -1355,15 +1357,15 @@ export default { config: [ - {"default":2.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":226,"type":"float"}, + {"default":2.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":232,"type":"float"}, ], }, "VentiDefault": { name: "VentiDefault", - nameLocale: 1089, - description: 925, + nameLocale: 1108, + description: 940, tags: [ "输出", @@ -1375,15 +1377,15 @@ export default { config: [ - {"default":0.7,"max":1.0,"min":0.0,"name":"swirl_rate","title":640,"type":"float"}, + {"default":0.7,"max":1.0,"min":0.0,"name":"swirl_rate","title":648,"type":"float"}, ], }, "XianglingDefault": { name: "XianglingDefault", - nameLocale: 1752, - description: 926, + nameLocale: 1784, + description: 941, tags: [ "输出", @@ -1395,21 +1397,21 @@ export default { config: [ - {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":226,"type":"float"}, + {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":232,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1440,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1464,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1432,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1456,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"overload_rate","title":1531,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"overload_rate","title":1557,"type":"float"}, ], }, "XiaoDefault": { name: "XiaoDefault", - nameLocale: 1761, - description: 937, + nameLocale: 1793, + description: 952, tags: [ "输出", @@ -1426,8 +1428,8 @@ export default { "XingqiuDefault": { name: "XingqiuDefault", - nameLocale: 1445, - description: 800, + nameLocale: 1469, + description: 813, tags: [ "输出", @@ -1439,15 +1441,15 @@ export default { config: [ - {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":226,"type":"float"}, + {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":232,"type":"float"}, ], }, "XinyanDamage": { name: "XinyanDamage", - nameLocale: 1550, - description: 906, + nameLocale: 1576, + description: 920, tags: [ "输出", @@ -1464,8 +1466,8 @@ export default { "XinyanDefault": { name: "XinyanDefault", - nameLocale: 1549, - description: 913, + nameLocale: 1575, + description: 927, tags: [ "辅助", @@ -1477,17 +1479,17 @@ export default { config: [ - {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":226,"type":"float"}, + {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":232,"type":"float"}, - {"default":0.5,"max":1.0,"min":0.0,"name":"damage_demand","title":168,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"damage_demand","title":170,"type":"float"}, ], }, "YaeMikoDefault": { name: "YaeMikoDefault", - nameLocale: 232, - description: 680, + nameLocale: 238, + description: 689, tags: [ "输出", @@ -1499,21 +1501,21 @@ export default { config: [ - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_requirement","title":226,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_requirement","title":232,"type":"float"}, - {"default":0,"name":"combo","options":["不站场平A","站场平A"],"title":1558,"type":"option"}, + {"default":0,"name":"combo","options":["不站场平A","站场平A"],"title":1584,"type":"option"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"aggravate_rate","title":1525,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"aggravate_rate","title":1551,"type":"float"}, - {"default":0.0,"max":4.0,"min":0.0,"name":"hyperbloom_rate","title":1526,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"hyperbloom_rate","title":1552,"type":"float"}, ], }, "YanfeiDefault": { name: "YanfeiDefault", - nameLocale: 1129, - description: 927, + nameLocale: 1149, + description: 942, tags: [ "输出", @@ -1530,8 +1532,8 @@ export default { "YelanDefault": { name: "YelanDefault", - nameLocale: 460, - description: 919, + nameLocale: 466, + description: 933, tags: [ "输出", @@ -1543,17 +1545,17 @@ export default { config: [ - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":227,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1432,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1456,"type":"float"}, ], }, "YoimiyaDefault": { name: "YoimiyaDefault", - nameLocale: 543, - description: 922, + nameLocale: 550, + description: 936, tags: [ "输出", @@ -1565,17 +1567,17 @@ export default { config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1432,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1456,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1440,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1464,"type":"float"}, ], }, "YunjinDefault": { name: "YunjinDefault", - nameLocale: 134, - description: 804, + nameLocale: 136, + description: 817, tags: [ "辅助", @@ -1587,15 +1589,15 @@ export default { config: [ - {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":226,"type":"float"}, + {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":232,"type":"float"}, ], }, "ZhongliDefault": { name: "ZhongliDefault", - nameLocale: 1621, - description: 905, + nameLocale: 1648, + description: 919, tags: [ "爆发", @@ -1607,15 +1609,15 @@ export default { config: [ - {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":226,"type":"float"}, + {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":232,"type":"float"}, ], }, "KukiShinobuDefault": { name: "KukiShinobuDefault", - nameLocale: 98, - description: 1544, + nameLocale: 100, + description: 1570, tags: [ "辅助", @@ -1627,15 +1629,15 @@ export default { config: [ - {"default":0.6,"max":1.0,"min":0.0,"name":"e_ratio","title":9,"type":"float"}, + {"default":0.6,"max":1.0,"min":0.0,"name":"e_ratio","title":11,"type":"float"}, ], }, "ShikanoinHeizouDefault": { name: "ShikanoinHeizouDefault", - nameLocale: 1776, - description: 1545, + nameLocale: 1808, + description: 1571, tags: [ "输出", @@ -1652,8 +1654,8 @@ export default { "TighnariDefault": { name: "TighnariDefault", - nameLocale: 686, - description: 172, + nameLocale: 695, + description: 174, tags: [ "", @@ -1665,15 +1667,15 @@ export default { config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"spread_rate","title":1434,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"spread_rate","title":1458,"type":"float"}, ], }, "CynoDefault": { name: "CynoDefault", - nameLocale: 1521, - description: 632, + nameLocale: 1547, + description: 640, tags: [ "输出", @@ -1685,27 +1687,27 @@ export default { config: [ - {"default":1.3,"max":3.0,"min":1.0,"name":"recharge_requirement","title":226,"type":"float"}, + {"default":1.3,"max":3.0,"min":1.0,"name":"recharge_requirement","title":232,"type":"float"}, - {"default":0,"name":"combo","options":["乱a不取消","取消第五段"],"title":1558,"type":"option"}, + {"default":0,"name":"combo","options":["乱a不取消","取消第五段"],"title":1584,"type":"option"}, - {"default":false,"name":"until_expire","title":17,"type":"bool"}, + {"default":false,"name":"until_expire","title":19,"type":"bool"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"aggravate_rate","title":1525,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"aggravate_rate","title":1551,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"elecharged_rate","title":623,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"elecharged_rate","title":631,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"overload_rate","title":1530,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"overload_rate","title":1556,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"hyperbloom_rate","title":1526,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"hyperbloom_rate","title":1552,"type":"float"}, ], }, "NilouDefault": { name: "NilouDefault", - nameLocale: 511, - description: 920, + nameLocale: 518, + description: 934, tags: [ "", @@ -1717,23 +1719,23 @@ export default { config: [ - {"default":5.0,"max":10.0,"min":0.0,"name":"e_ratio","title":196,"type":"float"}, + {"default":5.0,"max":10.0,"min":0.0,"name":"e_ratio","title":199,"type":"float"}, - {"default":1.0,"max":10.0,"min":0.0,"name":"q_ratio","title":211,"type":"float"}, + {"default":1.0,"max":10.0,"min":0.0,"name":"q_ratio","title":216,"type":"float"}, - {"default":3.0,"max":10.0,"min":0.0,"name":"bloom_ratio","title":1344,"type":"float"}, + {"default":3.0,"max":10.0,"min":0.0,"name":"bloom_ratio","title":1367,"type":"float"}, - {"default":1000.0,"max":3000.0,"min":0.0,"name":"other_em","title":1647,"type":"float"}, + {"default":1000.0,"max":3000.0,"min":0.0,"name":"other_em","title":1677,"type":"float"}, - {"default":7.0,"max":10.0,"min":0.0,"name":"other_bloom_ratio","title":1648,"type":"float"}, + {"default":7.0,"max":10.0,"min":0.0,"name":"other_bloom_ratio","title":1678,"type":"float"}, ], }, "NahidaDefault": { name: "NahidaDefault", - nameLocale: 1329, - description: 179, + nameLocale: 1352, + description: 181, tags: [ "输出", @@ -1745,23 +1747,23 @@ export default { config: [ - {"default":0,"max":1500,"min":0,"name":"em_requirement","title":1324,"type":"int"}, + {"default":0,"max":1500,"min":0,"name":"em_requirement","title":1347,"type":"int"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"spread_rate","title":1434,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"spread_rate","title":1458,"type":"float"}, - {"default":0.0,"max":4.0,"min":0.0,"name":"bloom_count","title":1344,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"bloom_count","title":1367,"type":"float"}, - {"default":0.0,"max":3.0,"min":0.0,"name":"burn_duration","title":1138,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"burn_duration","title":1158,"type":"float"}, - {"default":0,"max":2,"min":0,"name":"pryo_teammate_count","title":1109,"type":"int"}, + {"default":0,"max":2,"min":0,"name":"pryo_teammate_count","title":1128,"type":"int"}, ], }, "WandererDefault": { name: "WandererDefault", - nameLocale: 1065, - description: 1490, + nameLocale: 1083, + description: 1516, tags: [ "输出", @@ -1773,29 +1775,29 @@ export default { config: [ - {"default":false,"name":"e_hydro","title":24,"type":"bool"}, + {"default":false,"name":"e_hydro","title":26,"type":"bool"}, - {"default":false,"name":"e_pyro","title":25,"type":"bool"}, + {"default":false,"name":"e_pyro","title":27,"type":"bool"}, - {"default":false,"name":"e_cryo","title":23,"type":"bool"}, + {"default":false,"name":"e_cryo","title":25,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"spd_extra","title":1714,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"spd_extra","title":1746,"type":"float"}, - {"default":1.0,"max":1.5,"min":0.5,"name":"spd_comp","title":709,"type":"float"}, + {"default":1.0,"max":1.5,"min":0.5,"name":"spd_comp","title":718,"type":"float"}, - {"default":3,"max":12,"min":0,"name":"dash_count","title":27,"type":"int"}, + {"default":3,"max":12,"min":0,"name":"dash_count","title":29,"type":"int"}, - {"default":5,"max":5,"min":0,"name":"q_count","title":12,"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":642,"type":"int"}, + {"default":12,"max":24,"min":0,"name":"swirl_count","title":650,"type":"int"}, ], }, "FaruzanDamage": { name: "FaruzanDamage", - nameLocale: 1174, - description: 173, + nameLocale: 1195, + description: 175, tags: [ "", @@ -1807,15 +1809,15 @@ export default { config: [ - {"default":2.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":226,"type":"float"}, + {"default":2.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":232,"type":"float"}, ], }, "AlhaithamDefault": { name: "AlhaithamDefault", - nameLocale: 1376, - description: 158, + nameLocale: 1400, + description: 160, tags: [ "", @@ -1827,21 +1829,21 @@ export default { config: [ - {"default":5.0,"max":10.0,"min":0.0,"name":"charged_ratio","title":1609,"type":"float"}, + {"default":5.0,"max":10.0,"min":0.0,"name":"charged_ratio","title":1635,"type":"float"}, - {"default":5.0,"max":10.0,"min":0.0,"name":"e_ratio","title":205,"type":"float"}, + {"default":5.0,"max":10.0,"min":0.0,"name":"e_ratio","title":210,"type":"float"}, - {"default":1.0,"max":10.0,"min":0.0,"name":"q_ratio","title":212,"type":"float"}, + {"default":1.0,"max":10.0,"min":0.0,"name":"q_ratio","title":218,"type":"float"}, - {"default":0.3,"max":1.0,"min":0.0,"name":"spread_ratio","title":1434,"type":"float"}, + {"default":0.3,"max":1.0,"min":0.0,"name":"spread_ratio","title":1458,"type":"float"}, ], }, "DehyaDefault": { name: "DehyaDefault", - nameLocale: 1568, - description: 935, + nameLocale: 1594, + description: 950, tags: [ "输出", @@ -1853,19 +1855,19 @@ export default { config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1440,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1464,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1432,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1456,"type":"float"}, - {"default":6,"max":20,"min":0,"name":"e_count","title":90,"type":"int"}, + {"default":6,"max":20,"min":0,"name":"e_count","title":92,"type":"int"}, ], }, "MikaDefault": { name: "MikaDefault", - nameLocale: 1321, - description: 903, + nameLocale: 1344, + description: 917, tags: [ "治疗", @@ -1879,17 +1881,17 @@ export default { config: [ - {"default":2.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":227,"type":"float"}, + {"default":2.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, - {"default":0.6,"max":1.0,"min":0.0,"name":"crit_demand","title":954,"type":"float"}, + {"default":0.6,"max":1.0,"min":0.0,"name":"crit_demand","title":969,"type":"float"}, ], }, "FreminetDefault": { name: "FreminetDefault", - nameLocale: 1424, - description: 931, + nameLocale: 1448, + description: 946, tags: [ "", @@ -1904,4 +1906,22 @@ export default { ], }, + "LyneyDefault": { + name: "LyneyDefault", + nameLocale: 1005, + description: 938, + tags: [ + + "", + + ], + "for": "Lyney", + + badge: getImage("UI_AvatarIcon_Lyney"), + + config: [ + + ], + }, + } \ No newline at end of file diff --git a/src/assets/_gen_weapon.js b/src/assets/_gen_weapon.js index ae9c6216..194dac71 100644 --- a/src/assets/_gen_weapon.js +++ b/src/assets/_gen_weapon.js @@ -70,6 +70,12 @@ // // import LightOfFoliarIncision_tn from "@image/weapons/LightOfFoliarIncision_tn" // +// import WolfFang_tn from "@image/weapons/WolfFang_tn" +// +// import FinaleOfTheDeep_tn from "@image/weapons/FinaleOfTheDeep_tn" +// +// import FleuveCendreFerryman_tn from "@image/weapons/FleuveCendreFerryman_tn" +// // import WolfsGravestone_tn from "@image/weapons/WolfsGravestone_tn" // // import SkywardPride_tn from "@image/weapons/SkywardPride_tn" @@ -130,6 +136,8 @@ // // import MailedFlower_tn from "@image/weapons/MailedFlower_tn" // +// import TalkingStick_tn from "@image/weapons/TalkingStick_tn" +// // import EngulfingLightning_tn from "@image/weapons/EngulfingLightning_tn" // // import SkywardSpine_tn from "@image/weapons/SkywardSpine_tn" @@ -310,6 +318,8 @@ // // import IbisPiercer_tn from "@image/weapons/IbisPiercer_tn" // +// import TheFirstGreatMagic_tn from "@image/weapons/TheFirstGreatMagic_tn" +// const template = "https://upload-bbs.mihoyo.com/game_record/genshin/equip/UI_EquipIcon_#.png" @@ -320,18 +330,18 @@ export default { MistsplitterReforged: { name: "MistsplitterReforged", internalName: "Sword_Narukami", - nameLocale: 1701, + nameLocale: 1733, star: 5, url: imageUrl("Sword_Narukami"), type: "Sword", - effect: 1414, + effect: 1438, configs: [ - {"default":3,"max":3,"min":0,"name":"emblem_level","title":43,"type":"int"}, + {"default":3,"max":3,"min":0,"name":"emblem_level","title":45,"type":"int"}, ], @@ -340,13 +350,13 @@ export default { AquilaFavonia: { name: "AquilaFavonia", internalName: "Sword_Falcon", - nameLocale: 1737, + nameLocale: 1769, star: 5, url: imageUrl("Sword_Falcon"), type: "Sword", - effect: 697, + effect: 706, configs: null, @@ -356,20 +366,20 @@ export default { SummitShaper: { name: "SummitShaper", internalName: "Sword_Kunwu", - nameLocale: 729, + nameLocale: 741, star: 5, url: imageUrl("Sword_Kunwu"), type: "Sword", - effect: 665, + effect: 674, configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1451,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1477,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":667,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":676,"type":"float"}, ], @@ -378,13 +388,13 @@ export default { SkywardBlade: { name: "SkywardBlade", internalName: "Sword_Dvalin", - nameLocale: 474, + nameLocale: 481, star: 5, url: imageUrl("Sword_Dvalin"), type: "Sword", - effect: 949, + effect: 964, configs: null, @@ -394,18 +404,18 @@ export default { FreedomSworn: { name: "FreedomSworn", internalName: "Sword_Widsith", - nameLocale: 1382, + nameLocale: 1406, star: 5, url: imageUrl("Sword_Widsith"), type: "Sword", - effect: 1740, + effect: 1772, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, ], @@ -414,13 +424,13 @@ export default { PrimordialJadeCutter: { name: "PrimordialJadeCutter", internalName: "Sword_Morax", - nameLocale: 1270, + nameLocale: 1292, star: 5, url: imageUrl("Sword_Morax"), type: "Sword", - effect: 1217, + effect: 1238, configs: null, @@ -430,13 +440,13 @@ export default { TheFlute: { name: "TheFlute", internalName: "Sword_Troupe", - nameLocale: 1312, + nameLocale: 1335, star: 4, url: imageUrl("Sword_Troupe"), type: "Sword", - effect: 895, + effect: 909, configs: null, @@ -446,13 +456,13 @@ export default { TheBlackSword: { name: "TheBlackSword", internalName: "Sword_Bloodstained", - nameLocale: 1781, + nameLocale: 1813, star: 4, url: imageUrl("Sword_Bloodstained"), type: "Sword", - effect: 883, + effect: 897, configs: null, @@ -462,18 +472,18 @@ export default { TheAlleyFlash: { name: "TheAlleyFlash", internalName: "Sword_Outlaw", - nameLocale: 942, + nameLocale: 957, star: 4, url: imageUrl("Sword_Outlaw"), type: "Sword", - effect: 1479, + effect: 1505, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, ], @@ -482,13 +492,13 @@ export default { SwordOfDescension: { name: "SwordOfDescension", internalName: "Sword_Psalmus", - nameLocale: 1672, + nameLocale: 1702, star: 4, url: imageUrl("Sword_Psalmus"), type: "Sword", - effect: 7, + effect: 9, configs: null, @@ -498,13 +508,13 @@ export default { SacrificialSword: { name: "SacrificialSword", internalName: "Sword_Fossil", - nameLocale: 1298, + nameLocale: 1321, star: 4, url: imageUrl("Sword_Fossil"), type: "Sword", - effect: 206, + effect: 211, configs: null, @@ -514,13 +524,13 @@ export default { RoyalLongsword: { name: "RoyalLongsword", internalName: "Sword_Theocrat", - nameLocale: 537, + nameLocale: 544, star: 4, url: imageUrl("Sword_Theocrat"), type: "Sword", - effect: 707, + effect: 716, configs: null, @@ -530,18 +540,18 @@ export default { PrototypeRancour: { name: "PrototypeRancour", internalName: "Sword_Proto", - nameLocale: 1497, + nameLocale: 1523, star: 4, url: imageUrl("Sword_Proto"), type: "Sword", - effect: 896, + effect: 910, configs: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1451,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1477,"type":"float"}, ], @@ -550,13 +560,13 @@ export default { AmenomaKageuchi: { name: "AmenomaKageuchi", internalName: "Sword_Bakufu", - nameLocale: 472, + nameLocale: 479, star: 4, url: imageUrl("Sword_Bakufu"), type: "Sword", - effect: 744, + effect: 756, configs: null, @@ -566,18 +576,18 @@ export default { LionsRoar: { name: "LionsRoar", internalName: "Sword_Rockkiller", - nameLocale: 317, + nameLocale: 323, star: 4, url: imageUrl("Sword_Rockkiller"), type: "Sword", - effect: 554, + effect: 561, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, ], @@ -586,18 +596,18 @@ export default { IronSting: { name: "IronSting", internalName: "Sword_Exotic", - nameLocale: 1627, + nameLocale: 1654, star: 4, url: imageUrl("Sword_Exotic"), type: "Sword", - effect: 1577, + effect: 1603, configs: [ - {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1451,"type":"float"}, + {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1477,"type":"float"}, ], @@ -606,13 +616,13 @@ export default { FesteringDesire: { name: "FesteringDesire", internalName: "Sword_Magnum", - nameLocale: 1373, + nameLocale: 1397, star: 4, url: imageUrl("Sword_Magnum"), type: "Sword", - effect: 208, + effect: 213, configs: null, @@ -622,13 +632,13 @@ export default { FavoniusSword: { name: "FavoniusSword", internalName: "Sword_Zephyrus", - nameLocale: 1464, + nameLocale: 1490, star: 4, url: imageUrl("Sword_Zephyrus"), type: "Sword", - effect: 708, + effect: 717, configs: null, @@ -638,18 +648,18 @@ export default { CinnabarSpindle: { name: "CinnabarSpindle", internalName: "Sword_Opus", - nameLocale: 1553, + nameLocale: 1579, star: 4, url: imageUrl("Sword_Opus"), type: "Sword", - effect: 207, + effect: 212, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, ], @@ -658,18 +668,18 @@ export default { BlackcliffLongsword: { name: "BlackcliffLongsword", internalName: "Sword_Blackrock", - nameLocale: 1786, + nameLocale: 1818, star: 4, url: imageUrl("Sword_Blackrock"), type: "Sword", - effect: 284, + effect: 291, configs: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1451,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1477,"type":"float"}, ], @@ -678,18 +688,18 @@ export default { HarbingerOfDawn: { name: "HarbingerOfDawn", internalName: "Sword_Dawn", - nameLocale: 1780, + nameLocale: 1812, star: 3, url: imageUrl("Sword_Dawn"), type: "Sword", - effect: 1220, + effect: 1241, configs: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, ], @@ -698,13 +708,13 @@ export default { FilletBlade: { name: "FilletBlade", internalName: "Sword_Sashimi", - nameLocale: 362, + nameLocale: 368, star: 3, url: imageUrl("Sword_Sashimi"), type: "Sword", - effect: 703, + effect: 712, configs: null, @@ -714,18 +724,18 @@ export default { SkyriderSword: { name: "SkyriderSword", internalName: "Sword_Mitsurugi", - nameLocale: 1742, + nameLocale: 1774, star: 3, url: imageUrl("Sword_Mitsurugi"), type: "Sword", - effect: 751, + effect: 764, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, ], @@ -734,18 +744,18 @@ export default { DarkIronSword: { name: "DarkIronSword", internalName: "Sword_Darker", - nameLocale: 943, + nameLocale: 958, star: 3, url: imageUrl("Sword_Darker"), type: "Sword", - effect: 1489, + effect: 1515, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, ], @@ -754,18 +764,18 @@ export default { CoolSteel: { name: "CoolSteel", internalName: "Sword_Steel", - nameLocale: 267, + nameLocale: 273, star: 3, url: imageUrl("Sword_Steel"), type: "Sword", - effect: 547, + effect: 554, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, ], @@ -774,13 +784,13 @@ export default { TravelersHandySword: { name: "TravelersHandySword", internalName: "Sword_Traveler", - nameLocale: 760, + nameLocale: 773, star: 3, url: imageUrl("Sword_Traveler"), type: "Sword", - effect: 1420, + effect: 1444, configs: null, @@ -790,7 +800,7 @@ export default { SilverSword: { name: "SilverSword", internalName: "Sword_Silver", - nameLocale: 1628, + nameLocale: 1655, star: 2, url: imageUrl("Sword_Silver"), type: "Sword", @@ -804,7 +814,7 @@ export default { DullBlade: { name: "DullBlade", internalName: "Sword_Blunt", - nameLocale: 773, + nameLocale: 786, star: 1, url: imageUrl("Sword_Blunt"), type: "Sword", @@ -818,18 +828,18 @@ export default { HaranGeppakuFutsu: { name: "HaranGeppakuFutsu", internalName: "Sword_Amenoma", - nameLocale: 1051, + nameLocale: 1069, star: 5, url: imageUrl("Sword_Amenoma"), type: "Sword", - effect: 1416, + effect: 1440, configs: [ - {"default":2.0,"max":2.0,"min":0.0,"name":"stack","title":28,"type":"float"}, + {"default":2.0,"max":2.0,"min":0.0,"name":"stack","title":30,"type":"float"}, ], @@ -838,18 +848,18 @@ export default { CursedBlade: { name: "CursedBlade", internalName: "Sword_Youtou", - nameLocale: 1313, + nameLocale: 1336, star: 4, url: imageUrl("Sword_Youtou"), type: "Sword", - effect: 877, + effect: 891, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, ], @@ -858,7 +868,7 @@ export default { SapwoodBlade: { name: "SapwoodBlade", internalName: "Sword_Arakalari", - nameLocale: 337, + nameLocale: 343, star: 4, url: imageUrl("Sword_Arakalari"), type: "Sword", @@ -867,7 +877,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, ], @@ -876,18 +886,18 @@ export default { XiphosMoonlight: { name: "XiphosMoonlight", internalName: "Sword_Pleroma", - nameLocale: 1462, + nameLocale: 1488, star: 4, url: imageUrl("Sword_Pleroma"), type: "Sword", - effect: 1021, + effect: 1039, configs: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, ], @@ -896,18 +906,18 @@ export default { KeyOfKhajNisut: { name: "KeyOfKhajNisut", internalName: "Sword_Deshret", - nameLocale: 420, + nameLocale: 426, star: 5, url: imageUrl("Sword_Deshret"), type: "Sword", - effect: 1215, + effect: 1236, configs: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1451,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1477,"type":"float"}, ], @@ -916,18 +926,18 @@ export default { ToukabouShigure: { name: "ToukabouShigure", internalName: "Sword_Kasabouzu", - nameLocale: 89, + nameLocale: 91, star: 4, url: imageUrl("Sword_Kasabouzu"), type: "Sword", - effect: 702, + effect: 711, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, ], @@ -936,7 +946,7 @@ export default { LightOfFoliarIncision: { name: "LightOfFoliarIncision", internalName: "Sword_Ayus", - nameLocale: 1453, + nameLocale: 1479, star: 5, url: imageUrl("Sword_Ayus"), type: "Sword", @@ -945,7 +955,71 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, + + ], + + }, + + WolfFang: { + name: "WolfFang", + internalName: "Sword_Boreas", + nameLocale: 1171, + star: 4, + url: imageUrl("Sword_Boreas"), + type: "Sword", + + + effect: 198, + + + configs: [ + + {"default":0.0,"max":4.0,"min":0.0,"name":"e_stack","title":200,"type":"float"}, + + {"default":0.0,"max":4.0,"min":0.0,"name":"q_stack","title":217,"type":"float"}, + + ], + + }, + + FinaleOfTheDeep: { + name: "FinaleOfTheDeep", + internalName: "Sword_Vorpal", + nameLocale: 1092, + star: 4, + url: imageUrl("Sword_Vorpal"), + type: "Sword", + + + effect: 760, + + + configs: [ + + {"default":0.5,"max":1.0,"min":0.0,"name":"rate1","title":723,"type":"float"}, + + {"default":0.5,"max":1.0,"min":0.0,"name":"rate2","title":726,"type":"float"}, + + ], + + }, + + FleuveCendreFerryman: { + name: "FleuveCendreFerryman", + internalName: "Sword_Machination", + nameLocale: 1130, + star: 4, + url: imageUrl("Sword_Machination"), + type: "Sword", + + + effect: 209, + + + configs: [ + + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, ], @@ -954,18 +1028,18 @@ export default { WolfsGravestone: { name: "WolfsGravestone", internalName: "Claymore_Wolfmound", - nameLocale: 1151, + nameLocale: 1172, star: 5, url: imageUrl("Claymore_Wolfmound"), type: "Claymore", - effect: 698, + effect: 707, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, ], @@ -974,13 +1048,13 @@ export default { SkywardPride: { name: "SkywardPride", internalName: "Claymore_Dvalin", - nameLocale: 473, + nameLocale: 480, star: 5, url: imageUrl("Claymore_Dvalin"), type: "Claymore", - effect: 1578, + effect: 1604, configs: null, @@ -990,20 +1064,20 @@ export default { TheUnforged: { name: "TheUnforged", internalName: "Claymore_Kunwu", - nameLocale: 768, + nameLocale: 781, star: 5, url: imageUrl("Claymore_Kunwu"), type: "Claymore", - effect: 665, + effect: 674, configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1451,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1477,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":667,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":676,"type":"float"}, ], @@ -1012,18 +1086,18 @@ export default { SongOfBrokenPines: { name: "SongOfBrokenPines", internalName: "Claymore_Widsith", - nameLocale: 985, + nameLocale: 1001, star: 5, url: imageUrl("Claymore_Widsith"), type: "Claymore", - effect: 1739, + effect: 1771, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, ], @@ -1032,13 +1106,13 @@ export default { RedhornStonethresher: { name: "RedhornStonethresher", internalName: "Claymore_Itadorimaru", - nameLocale: 1524, + nameLocale: 1550, star: 5, url: imageUrl("Claymore_Itadorimaru"), type: "Claymore", - effect: 1655, + effect: 1685, configs: null, @@ -1048,18 +1122,18 @@ export default { Akuoumaru: { name: "Akuoumaru", internalName: "Claymore_Maria", - nameLocale: 616, + nameLocale: 624, star: 4, url: imageUrl("Claymore_Maria"), type: "Claymore", - effect: 1638, + effect: 1666, configs: [ - {"default":40,"max":400,"min":40,"name":"energy","title":1643,"type":"int"}, + {"default":40,"max":400,"min":40,"name":"energy","title":1671,"type":"int"}, ], @@ -1068,13 +1142,13 @@ export default { RoyalGreatsword: { name: "RoyalGreatsword", internalName: "Claymore_Theocrat", - nameLocale: 532, + nameLocale: 539, star: 4, url: imageUrl("Claymore_Theocrat"), type: "Claymore", - effect: 707, + effect: 716, configs: null, @@ -1084,18 +1158,18 @@ export default { Whiteblind: { name: "Whiteblind", internalName: "Claymore_Exotic", - nameLocale: 1240, + nameLocale: 1261, star: 4, url: imageUrl("Claymore_Exotic"), type: "Claymore", - effect: 892, + effect: 906, configs: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1451,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1477,"type":"float"}, ], @@ -1104,18 +1178,18 @@ export default { TheBell: { name: "TheBell", internalName: "Claymore_Troupe", - nameLocale: 1618, + nameLocale: 1645, star: 4, url: imageUrl("Claymore_Troupe"), type: "Claymore", - effect: 342, + effect: 348, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, ], @@ -1124,13 +1198,13 @@ export default { SnowTombedStarsilver: { name: "SnowTombedStarsilver", internalName: "Claymore_Dragonfell", - nameLocale: 1676, + nameLocale: 1708, star: 4, url: imageUrl("Claymore_Dragonfell"), type: "Claymore", - effect: 878, + effect: 892, configs: null, @@ -1140,13 +1214,13 @@ export default { FavoniusGreatsword: { name: "FavoniusGreatsword", internalName: "Claymore_Zephyrus", - nameLocale: 1465, + nameLocale: 1491, star: 4, url: imageUrl("Claymore_Zephyrus"), type: "Claymore", - effect: 708, + effect: 717, configs: null, @@ -1156,13 +1230,13 @@ export default { KatsuragikiriNagamasa: { name: "KatsuragikiriNagamasa", internalName: "Claymore_Bakufu", - nameLocale: 1005, + nameLocale: 1023, star: 4, url: imageUrl("Claymore_Bakufu"), type: "Claymore", - effect: 210, + effect: 215, configs: null, @@ -1172,13 +1246,13 @@ export default { SacrificialGreatsword: { name: "SacrificialGreatsword", internalName: "Claymore_Fossil", - nameLocale: 1299, + nameLocale: 1322, star: 4, url: imageUrl("Claymore_Fossil"), type: "Claymore", - effect: 206, + effect: 211, configs: null, @@ -1188,18 +1262,18 @@ export default { SerpentSpine: { name: "SerpentSpine", internalName: "Claymore_Kione", - nameLocale: 1441, + nameLocale: 1465, star: 4, url: imageUrl("Claymore_Kione"), type: "Claymore", - effect: 1476, + effect: 1502, configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1451,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1477,"type":"float"}, ], @@ -1208,18 +1282,18 @@ export default { BlackcliffSlasher: { name: "BlackcliffSlasher", internalName: "Claymore_Blackrock", - nameLocale: 1784, + nameLocale: 1816, star: 4, url: imageUrl("Claymore_Blackrock"), type: "Claymore", - effect: 284, + effect: 291, configs: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1451,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1477,"type":"float"}, ], @@ -1228,18 +1302,18 @@ export default { Rainslasher: { name: "Rainslasher", internalName: "Claymore_Perdue", - nameLocale: 1675, + nameLocale: 1707, star: 4, url: imageUrl("Claymore_Perdue"), type: "Claymore", - effect: 551, + effect: 558, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, ], @@ -1248,13 +1322,13 @@ export default { PrototypeArchaic: { name: "PrototypeArchaic", internalName: "Claymore_Proto", - nameLocale: 1496, + nameLocale: 1522, star: 4, url: imageUrl("Claymore_Proto"), type: "Claymore", - effect: 894, + effect: 908, configs: null, @@ -1264,13 +1338,13 @@ export default { LuxuriousSeaLord: { name: "LuxuriousSeaLord", internalName: "Claymore_MillenniaTuna", - nameLocale: 1448, + nameLocale: 1472, star: 4, url: imageUrl("Claymore_MillenniaTuna"), type: "Claymore", - effect: 214, + effect: 220, configs: null, @@ -1280,18 +1354,18 @@ export default { LithicBlade: { name: "LithicBlade", internalName: "Claymore_Lapis", - nameLocale: 319, + nameLocale: 325, star: 4, url: imageUrl("Claymore_Lapis"), type: "Claymore", - effect: 1641, + effect: 1669, configs: [ - {"default":0,"max":4,"min":0,"name":"liyue_count","title":1645,"type":"int"}, + {"default":0,"max":4,"min":0,"name":"liyue_count","title":1675,"type":"int"}, ], @@ -1300,18 +1374,18 @@ export default { SkyriderGreatsword: { name: "SkyriderGreatsword", internalName: "Claymore_Mitsurugi", - nameLocale: 1741, + nameLocale: 1773, star: 3, url: imageUrl("Claymore_Mitsurugi"), type: "Claymore", - effect: 893, + effect: 907, configs: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1451,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1477,"type":"float"}, ], @@ -1320,13 +1394,13 @@ export default { DebateClub: { name: "DebateClub", internalName: "Claymore_Reasoning", - nameLocale: 157, + nameLocale: 159, star: 3, url: imageUrl("Claymore_Reasoning"), type: "Claymore", - effect: 742, + effect: 754, configs: null, @@ -1336,18 +1410,18 @@ export default { BloodstainedGreatsword: { name: "BloodstainedGreatsword", internalName: "Claymore_Siegfry", - nameLocale: 1039, + nameLocale: 1057, star: 3, url: imageUrl("Claymore_Siegfry"), type: "Claymore", - effect: 553, + effect: 560, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, ], @@ -1356,13 +1430,13 @@ export default { WhiteIronGreatsword: { name: "WhiteIronGreatsword", internalName: "Claymore_Tin", - nameLocale: 1250, + nameLocale: 1271, star: 3, url: imageUrl("Claymore_Tin"), type: "Claymore", - effect: 286, + effect: 292, configs: null, @@ -1372,18 +1446,18 @@ export default { FerrousShadow: { name: "FerrousShadow", internalName: "Claymore_Glaive", - nameLocale: 1626, + nameLocale: 1653, star: 3, url: imageUrl("Claymore_Glaive"), type: "Claymore", - effect: 1211, + effect: 1232, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, ], @@ -1392,7 +1466,7 @@ export default { OldMercsPal: { name: "OldMercsPal", internalName: "Claymore_Oyaji", - nameLocale: 171, + nameLocale: 173, star: 2, url: imageUrl("Claymore_Oyaji"), type: "Claymore", @@ -1406,7 +1480,7 @@ export default { WasterGreatsword: { name: "WasterGreatsword", internalName: "Claymore_Aniki", - nameLocale: 1493, + nameLocale: 1519, star: 1, url: imageUrl("Claymore_Aniki"), type: "Claymore", @@ -1420,7 +1494,7 @@ export default { ForestRegalia: { name: "ForestRegalia", internalName: "Claymore_Arakalari", - nameLocale: 1009, + nameLocale: 1027, star: 4, url: imageUrl("Claymore_Arakalari"), type: "Claymore", @@ -1429,7 +1503,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, ], @@ -1438,18 +1512,18 @@ export default { MakhairaAquamarine: { name: "MakhairaAquamarine", internalName: "Claymore_Pleroma", - nameLocale: 1169, + nameLocale: 1190, star: 4, url: imageUrl("Claymore_Pleroma"), type: "Claymore", - effect: 1020, + effect: 1038, configs: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, ], @@ -1458,20 +1532,20 @@ export default { BeaconOfTheReedSea: { name: "BeaconOfTheReedSea", internalName: "Claymore_Deshret", - nameLocale: 1381, + nameLocale: 1405, star: 5, url: imageUrl("Claymore_Deshret"), type: "Claymore", - effect: 200, + effect: 204, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate_atk","title":706,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate_atk","title":715,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate_hp","title":1221,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate_hp","title":1242,"type":"float"}, ], @@ -1480,18 +1554,40 @@ export default { MailedFlower: { name: "MailedFlower", internalName: "Claymore_Fleurfair", - nameLocale: 1747, + nameLocale: 1779, star: 4, url: imageUrl("Claymore_Fleurfair"), type: "Claymore", - effect: 201, + effect: 205, + + + configs: [ + + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":600,"type":"float"}, + + ], + + }, + + TalkingStick: { + name: "TalkingStick", + internalName: "", + nameLocale: 1387, + star: 4, + url: imageUrl(""), + type: "Claymore", + + + effect: 653, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":592,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":1474,"type":"float"}, + + {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":1475,"type":"float"}, ], @@ -1500,18 +1596,18 @@ export default { EngulfingLightning: { name: "EngulfingLightning", internalName: "Pole_Narukami", - nameLocale: 1436, + nameLocale: 1460, star: 5, url: imageUrl("Pole_Narukami"), type: "Polearm", - effect: 701, + effect: 710, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, ], @@ -1520,13 +1616,13 @@ export default { SkywardSpine: { name: "SkywardSpine", internalName: "Pole_Dvalin", - nameLocale: 477, + nameLocale: 484, star: 5, url: imageUrl("Pole_Dvalin"), type: "Polearm", - effect: 950, + effect: 965, configs: null, @@ -1536,20 +1632,20 @@ export default { PrimordialJadeWingedSpear: { name: "PrimordialJadeWingedSpear", internalName: "Pole_Morax", - nameLocale: 397, + nameLocale: 403, star: 5, url: imageUrl("Pole_Morax"), type: "Polearm", - effect: 383, + effect: 389, configs: [ - {"default":0.0,"max":7.0,"min":0.0,"name":"stack","title":1451,"type":"float"}, + {"default":0.0,"max":7.0,"min":0.0,"name":"stack","title":1477,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"full_rate","title":1100,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"full_rate","title":1119,"type":"float"}, ], @@ -1558,20 +1654,20 @@ export default { CalamityQueller: { name: "CalamityQueller", internalName: "Pole_Santika", - nameLocale: 615, + nameLocale: 623, star: 5, url: imageUrl("Pole_Santika"), type: "Polearm", - effect: 1415, + effect: 1439, configs: [ - {"default":6.0,"max":6.0,"min":0.0,"name":"stack","title":22,"type":"float"}, + {"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":364,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"backend_rate","title":370,"type":"float"}, ], @@ -1580,18 +1676,18 @@ export default { StaffOfHoma: { name: "StaffOfHoma", internalName: "Pole_Homa", - nameLocale: 663, + nameLocale: 672, star: 5, url: imageUrl("Pole_Homa"), type: "Polearm", - effect: 1216, + effect: 1237, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"be50_rate","title":1209,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"be50_rate","title":1230,"type":"float"}, ], @@ -1600,20 +1696,20 @@ export default { VortexVanquisher: { name: "VortexVanquisher", internalName: "Pole_Kunwu", - nameLocale: 1513, + nameLocale: 1539, star: 5, url: imageUrl("Pole_Kunwu"), type: "Polearm", - effect: 665, + effect: 674, configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1451,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1477,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":667,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":676,"type":"float"}, ], @@ -1622,18 +1718,18 @@ export default { PrototypeStarglitter: { name: "PrototypeStarglitter", internalName: "Pole_Proto", - nameLocale: 1498, + nameLocale: 1524, star: 4, url: imageUrl("Pole_Proto"), type: "Polearm", - effect: 743, + effect: 755, configs: [ - {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1451,"type":"float"}, + {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1477,"type":"float"}, ], @@ -1642,18 +1738,18 @@ export default { LithicSpear: { name: "LithicSpear", internalName: "Pole_Lapis", - nameLocale: 322, + nameLocale: 328, star: 4, url: imageUrl("Pole_Lapis"), type: "Polearm", - effect: 1640, + effect: 1668, configs: [ - {"default":0,"max":4,"min":0,"name":"liyue_count","title":1645,"type":"int"}, + {"default":0,"max":4,"min":0,"name":"liyue_count","title":1675,"type":"int"}, ], @@ -1662,13 +1758,13 @@ export default { KitainCrossSpear: { name: "KitainCrossSpear", internalName: "Pole_Bakufu", - nameLocale: 401, + nameLocale: 407, star: 4, url: imageUrl("Pole_Bakufu"), type: "Polearm", - effect: 210, + effect: 215, configs: null, @@ -1678,13 +1774,13 @@ export default { TheCatch: { name: "TheCatch", internalName: "Pole_Mori", - nameLocale: 31, + nameLocale: 33, star: 4, url: imageUrl("Pole_Mori"), type: "Polearm", - effect: 215, + effect: 221, configs: null, @@ -1694,13 +1790,13 @@ export default { FavoniusLance: { name: "FavoniusLance", internalName: "Pole_Zephyrus", - nameLocale: 1468, + nameLocale: 1494, star: 4, url: imageUrl("Pole_Zephyrus"), type: "Polearm", - effect: 708, + effect: 717, configs: null, @@ -1710,13 +1806,13 @@ export default { DragonspineSpear: { name: "DragonspineSpear", internalName: "Pole_Everfrost", - nameLocale: 1789, + nameLocale: 1821, star: 4, url: imageUrl("Pole_Everfrost"), type: "Polearm", - effect: 878, + effect: 892, configs: null, @@ -1726,18 +1822,18 @@ export default { DragonsBane: { name: "DragonsBane", internalName: "Pole_Stardust", - nameLocale: 316, + nameLocale: 322, star: 4, url: imageUrl("Pole_Stardust"), type: "Polearm", - effect: 549, + effect: 556, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, ], @@ -1746,18 +1842,18 @@ export default { Deathmatch: { name: "Deathmatch", internalName: "Pole_Gladiator", - nameLocale: 265, + nameLocale: 271, star: 4, url: imageUrl("Pole_Gladiator"), type: "Polearm", - effect: 1540, + effect: 1566, configs: [ - {"default":true,"name":"ge2","title":1539,"type":"bool"}, + {"default":true,"name":"ge2","title":1565,"type":"bool"}, ], @@ -1766,13 +1862,13 @@ export default { CrescentPike: { name: "CrescentPike", internalName: "Pole_Exotic", - nameLocale: 1059, + nameLocale: 1077, star: 4, url: imageUrl("Pole_Exotic"), type: "Polearm", - effect: 1417, + effect: 1441, configs: null, @@ -1782,18 +1878,18 @@ export default { BlackcliffPole: { name: "BlackcliffPole", internalName: "Pole_Blackrock", - nameLocale: 1782, + nameLocale: 1814, star: 4, url: imageUrl("Pole_Blackrock"), type: "Polearm", - effect: 285, + effect: 290, configs: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1451,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1477,"type":"float"}, ], @@ -1802,18 +1898,18 @@ export default { WavebreakersFin: { name: "WavebreakersFin", internalName: "Pole_Maria", - nameLocale: 735, + nameLocale: 747, star: 4, url: imageUrl("Pole_Maria"), type: "Polearm", - effect: 1638, + effect: 1666, configs: [ - {"default":40,"max":400,"min":40,"name":"energy","title":1643,"type":"int"}, + {"default":40,"max":400,"min":40,"name":"energy","title":1671,"type":"int"}, ], @@ -1822,13 +1918,13 @@ export default { RoyalSpear: { name: "RoyalSpear", internalName: "Pole_Theocrat", - nameLocale: 534, + nameLocale: 541, star: 4, url: imageUrl("Pole_Theocrat"), type: "Polearm", - effect: 707, + effect: 716, configs: null, @@ -1838,13 +1934,13 @@ export default { Halberd: { name: "Halberd", internalName: "Pole_Halberd", - nameLocale: 1624, + nameLocale: 1651, star: 3, url: imageUrl("Pole_Halberd"), type: "Polearm", - effect: 556, + effect: 563, configs: null, @@ -1854,18 +1950,18 @@ export default { BlackTassel: { name: "BlackTassel", internalName: "Pole_Noire", - nameLocale: 1787, + nameLocale: 1819, star: 3, url: imageUrl("Pole_Noire"), type: "Polearm", - effect: 546, + effect: 553, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, ], @@ -1874,13 +1970,13 @@ export default { WhiteTassel: { name: "WhiteTassel", internalName: "Pole_Ruby", - nameLocale: 1247, + nameLocale: 1268, star: 3, url: imageUrl("Pole_Ruby"), type: "Polearm", - effect: 899, + effect: 913, configs: null, @@ -1890,7 +1986,7 @@ export default { IronPoint: { name: "IronPoint", internalName: "Pole_Rod", - nameLocale: 1625, + nameLocale: 1652, star: 2, url: imageUrl("Pole_Rod"), type: "Polearm", @@ -1904,7 +2000,7 @@ export default { BeginnersProtector: { name: "BeginnersProtector", internalName: "Pole_Gewalt", - nameLocale: 737, + nameLocale: 749, star: 1, url: imageUrl("Pole_Gewalt"), type: "Polearm", @@ -1918,7 +2014,7 @@ export default { Moonpiercer: { name: "Moonpiercer", internalName: "Pole_Arakalari", - nameLocale: 1511, + nameLocale: 1537, star: 4, url: imageUrl("Pole_Arakalari"), type: "Polearm", @@ -1927,7 +2023,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, ], @@ -1936,18 +2032,18 @@ export default { MissiveWindspear: { name: "MissiveWindspear", internalName: "Pole_Windvane", - nameLocale: 1716, + nameLocale: 1748, star: 4, url: imageUrl("Pole_Windvane"), type: "Polearm", - effect: 1484, + effect: 1510, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, ], @@ -1956,18 +2052,18 @@ export default { StaffOfTheScarletSands: { name: "StaffOfTheScarletSands", internalName: "Pole_Deshret", - nameLocale: 1523, + nameLocale: 1549, star: 5, url: imageUrl("Pole_Deshret"), type: "Polearm", - effect: 438, + effect: 444, configs: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1451,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1477,"type":"float"}, ], @@ -1976,18 +2072,18 @@ export default { LostPrayerToTheSacredWinds: { name: "LostPrayerToTheSacredWinds", internalName: "Catalyst_Fourwinds", - nameLocale: 415, + nameLocale: 421, star: 5, url: imageUrl("Catalyst_Fourwinds"), type: "Catalyst", - effect: 1308, + effect: 1331, configs: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1451,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1477,"type":"float"}, ], @@ -1996,13 +2092,13 @@ export default { SkywardAtlas: { name: "SkywardAtlas", internalName: "Catalyst_Dvalin", - nameLocale: 475, + nameLocale: 482, star: 5, url: imageUrl("Catalyst_Dvalin"), type: "Catalyst", - effect: 184, + effect: 186, configs: null, @@ -2012,13 +2108,13 @@ export default { EverlastingMoonglow: { name: "EverlastingMoonglow", internalName: "Catalyst_Kaleido", - nameLocale: 88, + nameLocale: 90, star: 5, url: imageUrl("Catalyst_Kaleido"), type: "Catalyst", - effect: 1044, + effect: 1062, configs: null, @@ -2028,20 +2124,20 @@ export default { MemoryOfDust: { name: "MemoryOfDust", internalName: "Catalyst_Kunwu", - nameLocale: 564, + nameLocale: 571, star: 5, url: imageUrl("Catalyst_Kunwu"), type: "Catalyst", - effect: 665, + effect: 674, configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1451,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1477,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":667,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":676,"type":"float"}, ], @@ -2050,18 +2146,18 @@ export default { WindAndSong: { name: "WindAndSong", internalName: "Catalyst_Outlaw", - nameLocale: 941, + nameLocale: 956, star: 4, url: imageUrl("Catalyst_Outlaw"), type: "Catalyst", - effect: 890, + effect: 904, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, ], @@ -2070,22 +2166,22 @@ export default { TheWidsith: { name: "TheWidsith", internalName: "Catalyst_Troupe", - nameLocale: 1061, + nameLocale: 1079, star: 4, url: imageUrl("Catalyst_Troupe"), type: "Catalyst", - effect: 1477, + effect: 1503, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"t1_rate","title":540,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"t1_rate","title":547,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"t2_rate","title":398,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"t2_rate","title":404,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"t3_rate","title":1635,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"t3_rate","title":1662,"type":"float"}, ], @@ -2094,20 +2190,20 @@ export default { SolarPearl: { name: "SolarPearl", internalName: "Catalyst_Resurrection", - nameLocale: 315, + nameLocale: 321, star: 4, url: imageUrl("Catalyst_Resurrection"), type: "Catalyst", - effect: 887, + effect: 901, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":711,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":720,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":713,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":722,"type":"float"}, ], @@ -2116,13 +2212,13 @@ export default { SacrificialFragments: { name: "SacrificialFragments", internalName: "Catalyst_Fossil", - nameLocale: 1301, + nameLocale: 1324, star: 4, url: imageUrl("Catalyst_Fossil"), type: "Catalyst", - effect: 206, + effect: 211, configs: null, @@ -2132,13 +2228,13 @@ export default { RoyalGrimoire: { name: "RoyalGrimoire", internalName: "Catalyst_Theocrat", - nameLocale: 535, + nameLocale: 542, star: 4, url: imageUrl("Catalyst_Theocrat"), type: "Catalyst", - effect: 707, + effect: 716, configs: null, @@ -2148,13 +2244,13 @@ export default { PrototypeAmber: { name: "PrototypeAmber", internalName: "Catalyst_Proto", - nameLocale: 1500, + nameLocale: 1526, star: 4, url: imageUrl("Catalyst_Proto"), type: "Catalyst", - effect: 749, + effect: 762, configs: null, @@ -2164,18 +2260,18 @@ export default { MappaMare: { name: "MappaMare", internalName: "Catalyst_Exotic", - nameLocale: 67, + nameLocale: 69, star: 4, url: imageUrl("Catalyst_Exotic"), type: "Catalyst", - effect: 1485, + effect: 1511, configs: [ - {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1451,"type":"float"}, + {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1477,"type":"float"}, ], @@ -2184,13 +2280,13 @@ export default { HakushinRing: { name: "HakushinRing", internalName: "Catalyst_Bakufu", - nameLocale: 1248, + nameLocale: 1269, star: 4, url: imageUrl("Catalyst_Bakufu"), type: "Catalyst", - effect: 1461, + effect: 1487, configs: null, @@ -2200,13 +2296,13 @@ export default { Frostbearer: { name: "Frostbearer", internalName: "Catalyst_Everfrost", - nameLocale: 611, + nameLocale: 619, star: 4, url: imageUrl("Catalyst_Everfrost"), type: "Catalyst", - effect: 878, + effect: 892, configs: null, @@ -2216,13 +2312,13 @@ export default { FavoniusCodex: { name: "FavoniusCodex", internalName: "Catalyst_Zephyrus", - nameLocale: 1467, + nameLocale: 1493, star: 4, url: imageUrl("Catalyst_Zephyrus"), type: "Catalyst", - effect: 708, + effect: 717, configs: null, @@ -2232,13 +2328,13 @@ export default { EyeOfPerception: { name: "EyeOfPerception", internalName: "Catalyst_Truelens", - nameLocale: 787, + nameLocale: 800, star: 4, url: imageUrl("Catalyst_Truelens"), type: "Catalyst", - effect: 880, + effect: 894, configs: null, @@ -2248,20 +2344,20 @@ export default { DodocoTales: { name: "DodocoTales", internalName: "Catalyst_Ludiharpastum", - nameLocale: 404, + nameLocale: 410, star: 4, url: imageUrl("Catalyst_Ludiharpastum"), type: "Catalyst", - effect: 889, + effect: 903, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":711,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":720,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":713,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":722,"type":"float"}, ], @@ -2270,18 +2366,18 @@ export default { BlackcliffAgate: { name: "BlackcliffAgate", internalName: "Catalyst_Blackrock", - nameLocale: 1785, + nameLocale: 1817, star: 4, url: imageUrl("Catalyst_Blackrock"), type: "Catalyst", - effect: 285, + effect: 290, configs: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1451,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1477,"type":"float"}, ], @@ -2290,20 +2386,20 @@ export default { KagurasVerity: { name: "KagurasVerity", internalName: "Catalyst_Narukami", - nameLocale: 1274, + nameLocale: 1297, star: 5, url: imageUrl("Catalyst_Narukami"), type: "Catalyst", - effect: 747, + effect: 759, configs: [ - {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1451,"type":"float"}, + {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1477,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"full_rate","title":1099,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"full_rate","title":1118,"type":"float"}, ], @@ -2312,18 +2408,18 @@ export default { OathswornEye: { name: "OathswornEye", internalName: "Catalyst_Jyanome", - nameLocale: 1494, + nameLocale: 1520, star: 4, url: imageUrl("Catalyst_Jyanome"), type: "Catalyst", - effect: 740, + effect: 752, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, ], @@ -2332,18 +2428,18 @@ export default { MagicGuide: { name: "MagicGuide", internalName: "Catalyst_Intro", - nameLocale: 1766, + nameLocale: 1798, star: 3, url: imageUrl("Catalyst_Intro"), type: "Catalyst", - effect: 550, + effect: 557, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, ], @@ -2352,13 +2448,13 @@ export default { OtherworldlyStory: { name: "OtherworldlyStory", internalName: "Catalyst_Lightnov", - nameLocale: 597, + nameLocale: 604, star: 3, url: imageUrl("Catalyst_Lightnov"), type: "Catalyst", - effect: 1418, + effect: 1442, configs: null, @@ -2368,18 +2464,18 @@ export default { EmeraldOrb: { name: "EmeraldOrb", internalName: "Catalyst_Jade", - nameLocale: 1362, + nameLocale: 1385, star: 3, url: imageUrl("Catalyst_Jade"), type: "Catalyst", - effect: 1488, + effect: 1514, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, ], @@ -2388,13 +2484,13 @@ export default { ThrillingTalesOfDragonSlayers: { name: "ThrillingTalesOfDragonSlayers", internalName: "Catalyst_Pulpfic", - nameLocale: 1491, + nameLocale: 1517, star: 3, url: imageUrl("Catalyst_Pulpfic"), type: "Catalyst", - effect: 92, + effect: 94, configs: null, @@ -2404,18 +2500,18 @@ export default { TwinNephrite: { name: "TwinNephrite", internalName: "Catalyst_Phoney", - nameLocale: 1225, + nameLocale: 1246, star: 3, url: imageUrl("Catalyst_Phoney"), type: "Catalyst", - effect: 283, + effect: 289, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, ], @@ -2424,7 +2520,7 @@ export default { PocketGrimoire: { name: "PocketGrimoire", internalName: "Catalyst_Pocket", - nameLocale: 351, + nameLocale: 357, star: 2, url: imageUrl("Catalyst_Pocket"), type: "Catalyst", @@ -2438,7 +2534,7 @@ export default { ApprenticesNotes: { name: "ApprenticesNotes", internalName: "Catalyst_Apprentice", - nameLocale: 519, + nameLocale: 526, star: 1, url: imageUrl("Catalyst_Apprentice"), type: "Catalyst", @@ -2452,7 +2548,7 @@ export default { FruitOfFulfillment: { name: "FruitOfFulfillment", internalName: "Catalyst_Arakalari", - nameLocale: 1251, + nameLocale: 1272, star: 4, url: imageUrl("Catalyst_Arakalari"), type: "Catalyst", @@ -2461,7 +2557,7 @@ export default { configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1451,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1477,"type":"float"}, ], @@ -2470,18 +2566,18 @@ export default { WanderingEvenstar: { name: "WanderingEvenstar", internalName: "Catalyst_Pleroma", - nameLocale: 1063, + nameLocale: 1081, star: 4, url: imageUrl("Catalyst_Pleroma"), type: "Catalyst", - effect: 1020, + effect: 1038, configs: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, ], @@ -2490,20 +2586,20 @@ export default { AThousandFloatingDreams: { name: "AThousandFloatingDreams", internalName: "Catalyst_Ayus", - nameLocale: 318, + nameLocale: 324, star: 5, url: imageUrl("Catalyst_Ayus"), type: "Catalyst", - effect: 1639, + effect: 1667, configs: [ - {"default":1,"max":3,"min":0,"name":"same_count","title":363,"type":"int"}, + {"default":1,"max":3,"min":0,"name":"same_count","title":369,"type":"int"}, - {"default":2,"max":3,"min":0,"name":"diff_count","title":86,"type":"int"}, + {"default":2,"max":3,"min":0,"name":"diff_count","title":88,"type":"int"}, ], @@ -2512,18 +2608,18 @@ export default { TulaytullahsRemembrance: { name: "TulaytullahsRemembrance", internalName: "Catalyst_Alaya", - nameLocale: 416, + nameLocale: 422, star: 5, url: imageUrl("Catalyst_Alaya"), type: "Catalyst", - effect: 897, + effect: 911, configs: [ - {"default":7.0,"max":10.0,"min":0.0,"name":"stack","title":1451,"type":"float"}, + {"default":7.0,"max":10.0,"min":0.0,"name":"stack","title":1477,"type":"float"}, ], @@ -2532,18 +2628,18 @@ export default { JadeFallsSplendor: { name: "JadeFallsSplendor", internalName: "Catalyst_Morax", - nameLocale: 1269, + nameLocale: 1291, star: 5, url: imageUrl("Catalyst_Morax"), type: "Catalyst", - effect: 755, + effect: 768, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, ], @@ -2552,18 +2648,18 @@ export default { PolarStar: { name: "PolarStar", internalName: "Bow_Worldbane", - nameLocale: 252, + nameLocale: 258, star: 5, url: imageUrl("Bow_Worldbane"), type: "Bow", - effect: 202, + effect: 206, configs: [ - {"default":0,"max":4,"min":0,"name":"stack","title":35,"type":"int"}, + {"default":0,"max":4,"min":0,"name":"stack","title":37,"type":"int"}, ], @@ -2572,18 +2668,18 @@ export default { ThunderingPulse: { name: "ThunderingPulse", internalName: "Bow_Narukami", - nameLocale: 1744, + nameLocale: 1776, star: 5, url: imageUrl("Bow_Narukami"), type: "Bow", - effect: 696, + effect: 705, configs: [ - {"default":0,"max":3,"min":0,"name":"stack","title":44,"type":"int"}, + {"default":0,"max":3,"min":0,"name":"stack","title":46,"type":"int"}, ], @@ -2592,18 +2688,18 @@ export default { ElegyOfTheEnd: { name: "ElegyOfTheEnd", internalName: "Bow_Widsith", - nameLocale: 1333, + nameLocale: 1356, star: 5, url: imageUrl("Bow_Widsith"), type: "Bow", - effect: 1738, + effect: 1770, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, ], @@ -2612,13 +2708,13 @@ export default { SkywardHarp: { name: "SkywardHarp", internalName: "Bow_Dvalin", - nameLocale: 476, + nameLocale: 483, star: 5, url: imageUrl("Bow_Dvalin"), type: "Bow", - effect: 945, + effect: 960, configs: null, @@ -2628,18 +2724,18 @@ export default { AmosBow: { name: "AmosBow", internalName: "Bow_Amos", - nameLocale: 1659, + nameLocale: 1689, star: 5, url: imageUrl("Bow_Amos"), type: "Bow", - effect: 884, + effect: 898, configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1451,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1477,"type":"float"}, ], @@ -2648,18 +2744,18 @@ export default { AlleyHunter: { name: "AlleyHunter", internalName: "Bow_Outlaw", - nameLocale: 940, + nameLocale: 955, star: 4, url: imageUrl("Bow_Outlaw"), type: "Bow", - effect: 1449, + effect: 1473, configs: [ - {"default":0.0,"max":10.0,"min":0.0,"name":"stack","title":1451,"type":"float"}, + {"default":0.0,"max":10.0,"min":0.0,"name":"stack","title":1477,"type":"float"}, ], @@ -2668,13 +2764,13 @@ export default { TheViridescentHunt: { name: "TheViridescentHunt", internalName: "Bow_Viridescent", - nameLocale: 1386, + nameLocale: 1410, star: 4, url: imageUrl("Bow_Viridescent"), type: "Bow", - effect: 881, + effect: 895, configs: null, @@ -2684,13 +2780,13 @@ export default { TheStringless: { name: "TheStringless", internalName: "Bow_Troupe", - nameLocale: 1338, + nameLocale: 1361, star: 4, url: imageUrl("Bow_Troupe"), type: "Bow", - effect: 194, + effect: 196, configs: null, @@ -2700,13 +2796,13 @@ export default { SacrificialBow: { name: "SacrificialBow", internalName: "Bow_Fossil", - nameLocale: 1300, + nameLocale: 1323, star: 4, url: imageUrl("Bow_Fossil"), type: "Bow", - effect: 206, + effect: 211, configs: null, @@ -2716,13 +2812,13 @@ export default { Rust: { name: "Rust", internalName: "Bow_Recluse", - nameLocale: 599, + nameLocale: 606, star: 4, url: imageUrl("Bow_Recluse"), type: "Bow", - effect: 900, + effect: 914, configs: null, @@ -2732,13 +2828,13 @@ export default { RoyalBow: { name: "RoyalBow", internalName: "Bow_Theocrat", - nameLocale: 538, + nameLocale: 545, star: 4, url: imageUrl("Bow_Theocrat"), type: "Bow", - effect: 707, + effect: 716, configs: null, @@ -2748,18 +2844,18 @@ export default { Predator: { name: "Predator", internalName: "Bow_Predator", - nameLocale: 683, + nameLocale: 692, star: 4, url: imageUrl("Bow_Predator"), type: "Bow", - effect: 6, + effect: 8, configs: [ - {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1451,"type":"float"}, + {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1477,"type":"float"}, ], @@ -2768,18 +2864,18 @@ export default { PrototypeCrescent: { name: "PrototypeCrescent", internalName: "Bow_Proto", - nameLocale: 1499, + nameLocale: 1525, star: 4, url: imageUrl("Bow_Proto"), type: "Bow", - effect: 1612, + effect: 1638, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, ], @@ -2788,18 +2884,18 @@ export default { MouunsMoon: { name: "MouunsMoon", internalName: "Bow_Maria", - nameLocale: 956, + nameLocale: 971, star: 4, url: imageUrl("Bow_Maria"), type: "Bow", - effect: 1638, + effect: 1666, configs: [ - {"default":40,"max":400,"min":40,"name":"energy","title":1643,"type":"int"}, + {"default":40,"max":400,"min":40,"name":"energy","title":1671,"type":"int"}, ], @@ -2808,20 +2904,20 @@ export default { MitternachtsWaltz: { name: "MitternachtsWaltz", internalName: "Bow_Nachtblind", - nameLocale: 589, + nameLocale: 596, star: 4, url: imageUrl("Bow_Nachtblind"), type: "Bow", - effect: 888, + effect: 902, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":711,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":720,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":713,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":722,"type":"float"}, ], @@ -2830,18 +2926,18 @@ export default { Hamayumi: { name: "Hamayumi", internalName: "Bow_Bakufu", - nameLocale: 1268, + nameLocale: 1290, star: 4, url: imageUrl("Bow_Bakufu"), type: "Bow", - effect: 898, + effect: 912, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, ], @@ -2850,13 +2946,13 @@ export default { FavoniusWarbow: { name: "FavoniusWarbow", internalName: "Bow_Zephyrus", - nameLocale: 1466, + nameLocale: 1492, star: 4, url: imageUrl("Bow_Zephyrus"), type: "Bow", - effect: 708, + effect: 717, configs: null, @@ -2866,18 +2962,18 @@ export default { CompoundBow: { name: "CompoundBow", internalName: "Bow_Exotic", - nameLocale: 1623, + nameLocale: 1650, star: 4, url: imageUrl("Bow_Exotic"), type: "Bow", - effect: 879, + effect: 893, configs: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1451,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1477,"type":"float"}, ], @@ -2886,18 +2982,18 @@ export default { BlackcliffWarbow: { name: "BlackcliffWarbow", internalName: "Bow_Blackrock", - nameLocale: 1783, + nameLocale: 1815, star: 4, url: imageUrl("Bow_Blackrock"), type: "Bow", - effect: 285, + effect: 290, configs: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1451,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1477,"type":"float"}, ], @@ -2906,18 +3002,18 @@ export default { WindblumeOde: { name: "WindblumeOde", internalName: "Bow_Fleurfair", - nameLocale: 1724, + nameLocale: 1756, star: 4, url: imageUrl("Bow_Fleurfair"), type: "Bow", - effect: 748, + effect: 761, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, ], @@ -2926,18 +3022,18 @@ export default { RavenBow: { name: "RavenBow", internalName: "Bow_Crowfeather", - nameLocale: 1771, + nameLocale: 1803, star: 3, url: imageUrl("Bow_Crowfeather"), type: "Bow", - effect: 548, + effect: 555, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, ], @@ -2946,13 +3042,13 @@ export default { RecurveBow: { name: "RecurveBow", internalName: "Bow_Curve", - nameLocale: 339, + nameLocale: 345, star: 3, url: imageUrl("Bow_Curve"), type: "Bow", - effect: 286, + effect: 292, configs: null, @@ -2962,13 +3058,13 @@ export default { Messenger: { name: "Messenger", internalName: "Bow_Msg", - nameLocale: 181, + nameLocale: 183, star: 3, url: imageUrl("Bow_Msg"), type: "Bow", - effect: 1613, + effect: 1639, configs: null, @@ -2978,18 +3074,18 @@ export default { SharpshootersOath: { name: "SharpshootersOath", internalName: "Bow_Arjuna", - nameLocale: 1277, + nameLocale: 1300, star: 3, url: imageUrl("Bow_Arjuna"), type: "Bow", - effect: 1617, + effect: 1644, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, ], @@ -2998,20 +3094,20 @@ export default { Slingshot: { name: "Slingshot", internalName: "Bow_Sling", - nameLocale: 600, + nameLocale: 608, star: 3, url: imageUrl("Bow_Sling"), type: "Bow", - effect: 882, + effect: 896, configs: [ {"default":true,"name":"is_effect","title":1,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, ], @@ -3020,7 +3116,7 @@ export default { SeasonedHuntersBow: { name: "SeasonedHuntersBow", internalName: "Bow_Old", - nameLocale: 335, + nameLocale: 341, star: 2, url: imageUrl("Bow_Old"), type: "Bow", @@ -3034,7 +3130,7 @@ export default { HuntersBow: { name: "HuntersBow", internalName: "Bow_Hunters", - nameLocale: 1159, + nameLocale: 1180, star: 1, url: imageUrl("Bow_Hunters"), type: "Bow", @@ -3048,18 +3144,18 @@ export default { AquaSimulacra: { name: "AquaSimulacra", internalName: "Bow_Kirin", - nameLocale: 1388, + nameLocale: 1412, star: 5, url: imageUrl("Bow_Kirin"), type: "Bow", - effect: 1214, + effect: 1235, configs: [ - {"default":true,"name":"is_enemy_around","title":382,"type":"bool"}, + {"default":true,"name":"is_enemy_around","title":388,"type":"bool"}, ], @@ -3068,18 +3164,18 @@ export default { FadingTwilight: { name: "FadingTwilight", internalName: "Bow_Fallensun", - nameLocale: 1430, + nameLocale: 1454, star: 4, url: imageUrl("Bow_Fallensun"), type: "Bow", - effect: 244, + effect: 250, configs: [ - {"default":2,"name":"state","options":["夕暮","流霞","朝晖"],"title":1148,"type":"option"}, + {"default":2,"name":"state","options":["夕暮","流霞","朝晖"],"title":1168,"type":"option"}, ], @@ -3088,18 +3184,18 @@ export default { HuntersPath: { name: "HuntersPath", internalName: "Bow_Ayus", - nameLocale: 1157, + nameLocale: 1178, star: 5, url: imageUrl("Bow_Ayus"), type: "Bow", - effect: 1413, + effect: 1437, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, ], @@ -3108,13 +3204,13 @@ export default { Trawler: { name: "Trawler", internalName: "Bow_Fin", - nameLocale: 1311, + nameLocale: 1334, star: 4, url: imageUrl("Bow_Fin"), type: "Bow", - effect: 741, + effect: 753, configs: null, @@ -3124,7 +3220,7 @@ export default { KingsSquire: { name: "KingsSquire", internalName: "Bow_Arakalari", - nameLocale: 1168, + nameLocale: 1189, star: 4, url: imageUrl("Bow_Arakalari"), type: "Bow", @@ -3133,7 +3229,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, ], @@ -3142,18 +3238,40 @@ export default { IbisPiercer: { name: "IbisPiercer", internalName: "Bow_Ibis", - nameLocale: 1772, + nameLocale: 1804, star: 4, url: imageUrl("Bow_Ibis"), type: "Bow", - effect: 1606, + effect: 1632, + + + configs: [ + + {"default":2.0,"max":2.0,"min":0.0,"name":"stack","title":572,"type":"float"}, + + ], + + }, + + TheFirstGreatMagic: { + name: "TheFirstGreatMagic", + internalName: "Bow_Pledge", + nameLocale: 972, + star: 5, + url: imageUrl("Bow_Pledge"), + type: "Bow", + + + effect: 1640, configs: [ - {"default":2.0,"max":2.0,"min":0.0,"name":"stack","title":565,"type":"float"}, + {"default":1.0,"max":3.0,"min":0.0,"name":"same_count","title":1672,"type":"float"}, + + {"default":0.0,"max":3.0,"min":0.0,"name":"diff_count","title":1664,"type":"float"}, ], diff --git a/src/i18n/generated/en.json b/src/i18n/generated/en.json index 4aa781f8..fcab715e 100644 --- a/src/i18n/generated/en.json +++ b/src/i18n/generated/en.json @@ -2,8 +2,10 @@ "", "Hit in 0.3s", "1-Mirror Projection Attack DMG", + "C2「Loquacious Cajoling」Stack", "2-Mirror Projection Attack DMG", "3-Mirror Projection Attack DMG", + "C4「Well-Versed, Well-Rehearsed」Rate", "60 Ascend", "Effective only on the following platform:
\"PlayStation Network\"
Dealing Cryo DMG to opponents increases this character's Normal and Charged Attack DMG by 10% for 6s. This effect can have a maximum of 2 stacks. Additionally, when Aloy equips Predator, ATK is increased by 66.", "Effective only on the following platform:
\"PlayStation Network\"
Hitting opponents with Normal and Charged Attacks grants a 50% chance to deal 200% ATK as DMG in a small AoE. This effect can only occur once every 10s. Additionally, if the Traveler equips the Sword of Descension, their ATK is increased by 66.", @@ -35,8 +37,8 @@ "Hurricane Guard effect Ratio", "「Sweeping Fervor」Shield Coverage", "「Nightstar」Stack", - "Prayerful Wind's GiftRate", "Prayerful Wind’s Benefit Ratio", + "Prayerful Wind's GiftRate", "Painted Dome", "「Tricks of the Trouble-Maker」Stack", "Perfidious Wind's Ruin Rate", @@ -195,15 +197,18 @@ "Resonance-Sprawling Greenery", "Increases Elemental Skill and Elemental Burst DMG by 24%-30%-36%-42%-48%.", "\tElemental Skill and Elemental Burst DMG will be increased by 10%. After the equipping character takes DMG, the aforementioned DMG Bonus is increased by 80% for 5s. This effect increase can have 5 stacks. The duration of each stack is counted independently. These effects can be triggered even when the equipping character is not on the field.", + "DMG dealt by Elemental Skill and Elemental Burst is increased by 16%-20%-24%-28%-32%. When an Elemental Skill hits an opponent, its CRIT Rate will be increased by 2%-2.5%-3%-3.5%-4%. When an Elemental Burst hits an opponent, its CRIT Rate will be increased by 2%-2.5%-3%-3.5%-4%. Both of these effects last 10s separately, have 4 max stacks, and can be triggered once every 0.1s.", "Elemental Skill Times", + "E Hit Stack", "元素战技命中敌人后,使队伍中附近的所有角色攻击力提升20%,护盾强效提升30%,持续3秒。", "When an Elemental Skill hits an opponent, the ATK of all nearby party members is increased by 20% and their Shield Strength is increased by 30% for 3s. This effect can be triggered once every 0.5s. This effect can still be triggered even when the character who is using this artifact set is not on the field.", "When an Elemental Skill hits an opponent, ATK is increased by 9% for 7s. This effect stacks up to 2 times and can be triggered once every 0.3s. Once 2 stacks are reached, the 2-set effect is increased by 100%.", "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.", - "元素战技或元素爆发命中敌人后,使命中目标的草元素抗性降低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.", + "元素战技或元素爆发命中敌人后,使命中目标的草元素抗性降低30%,持续8秒。装备者处于队伍后台时,依然能触发该效果。", + "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.", "Elemental Skill DMG is increased by 40%-50%-60%-70%-80% of DEF. The effect will be triggered no more than once every 1.5s and will be cleared 0.1s after the Elemental Skill deals DMG.", @@ -211,6 +216,7 @@ "Increases Elemental Skill DMG by 20%.", "Increases Elemental Skill DMG by 6%-7.5%-9%-10.5%-12%. After Elemental Skill hits an opponent, the character loses 3 Energy but regenerates 3-3.5-4-4.5-5 Energy every 2s for the next 6s. This effect can occur once every 10s. Can be triggered even when the character is not on the field.", "Elemental Burst Times", + "Q Hit Stack", "Q Hit", "Elemental Burst DMG +20%", "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.", @@ -219,9 +225,9 @@ "Elemental Mastery", "EM", "元素精通提升50点。触发燃烧、原激化、绽放反应后,队伍中附近的所有角色元素精通提升30点,持续6秒。触发超激化、蔓激化、超绽放、烈绽放反应后,队伍中附近的所有角色元素精通提升20点,持续6秒。以上效果的持续时间独立计算。", + "Elemental Mastery +80", "Elemental Mastery +80.", "Increases Elemental Mastery by 80.", - "Elemental Mastery +80", "EM Valid", "EM Weight", "Energy Below 50%", @@ -283,8 +289,8 @@ "Field Entering/Exiting DMG", "After defeating an opponent, increases Charged Attack DMG by 50%, and reduces its Stamina cost to 0 for 10s.", "Defeating an opponent increases Movement SPD and ATK by 12%-14%-16%-18%-20% for 15s.", - "After defeating an opponent, ATK is increased by 12%-15%-18%-21%-24% for 30s. This effect has a maximum of 3 stacks, and the duration of each stack is independent of the others.", "After defeating an enemy, ATK is increased by 12%-15%-18%-21%-24% for 30s. This effect has a maximum of 3 stacks, and the duration of each stack is independent of the others.", + "After defeating an opponent, ATK is increased by 12%-15%-18%-21%-24% for 30s. This effect has a maximum of 3 stacks, and the duration of each stack is independent of the others.", "Defeating an opponent restores 8%-10%-12%-14%-16% HP.", "Defeating an opponent has a 100% chance to remove Elemental Skill CD. Can only occur once every 15s.", "Cutting DMG", @@ -328,8 +334,8 @@ "Plume of Luxury", "Husk of Opulent Dreams", "Coordinated ATK DMG", - "Single-Instance DMG", "Single Instance DMG", + "Single-Instance DMG", "Kaveh", "Kaveh Q", "Kaveh Q Level", @@ -384,8 +390,8 @@ "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", + "HP Regeneration Per Hit", "C2「Ceremony: Homecoming of Spirits」Stacks", "C2「Origins Known From the Stem」Ratio", "C2 Ratio", @@ -405,8 +411,8 @@ "Mocking Mask", "Dodoco Tales", "Ravaging Confession", - "4-Hit DMG", "4-Hit DMG/2", + "4-Hit DMG", "4-Hit DMG-1", "4-Hit DMG-2", "4-Hit DMG-3", @@ -438,8 +444,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.", - "Base DMG", "Basic DMG", + "Base DMG", "Under Windfavored State", "Under「Raging Oni King」", "Under「Suiyuu」", @@ -465,6 +471,7 @@ "Nightrider", "Great Secret Art: Tenko Kenshin", "Sweeping Time", + "Wondrous Trick: Miracle Parade", "Planet Befall", "Starshatter", "Tenko Thunderbolt DMG", @@ -573,8 +580,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", @@ -591,14 +598,15 @@ "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.", "Otherworldly Story", "Goblet of the Sojourner", "Rust", + "Explosive Firework DMG", "Slingshot", "Feather of Homecoming", "Skeletal Hat", @@ -644,6 +652,7 @@ "Swirl Hits", "Swirl Frequency", "Swirl Type", + "ATK will be increased by 16%-20%-24%-28%-32% for 15s after being affected by Pyro. This effect can be triggered once every 12s. All Elemental DMG Bonus will be increased by 12%-15%-18%-21%-24% for 15s after being affected by Hydro, Cryo, Electro, or Dendro. This effect can be triggered once every 12s.", "Skill", "Skill DMG", "Skill DMG-0", @@ -713,11 +722,14 @@ "Effect1 Ratio", "Effect1 Equivalent Stack", "Effect2 Ratio", + "Effect 1 Rate", "Effect① Ratio", "Effect② Ratio", + "Effect 2 Rate", "Effect Apply Ratio", "Equivalent Stack", "Enemy Pyro Coverage", + "Under Pyro", "Enemy Electro Coverage", "Instructor", "Instructor 4", @@ -747,6 +759,7 @@ "Using an Elemental Skill or Burst increases healing received by all party members by 20% for 10s.", "When casting an Elemental Skill, if the character has 15 or more Energy, they lose 15 Energy and Normal/Charged/Plunging Attack DMG is increased by 50% for 10s. This effect will not trigger again during that duration.", "Gains the Kagura Dance effect when using an Elemental Skill, causing the Elemental Skill DMG of the character wielding this weapon to increase by 12%-15%-18%-21%-24% for 16s. Max 3 stacks. This character will gain 12%-15%-18%-21%-24% All Elemental DMG Bonus when they possess 3 stacks.", + "When using an Elemental Skill, ATK will be increased by 12%-15%-18%-21%-24% for 15s, and a Bond of Life worth 25% of Max HP will be granted. This effect can be triggered once every 10s. When the Bond of Life is cleared, a maximum of 150-187.5-225-262.5-300 ATK will be gained based on 2.4%-3%-3.6%-4.2%-4.8% of the total amount of the Life Bond cleared, lasting for 15s.", "After using an Elemental Skill, receive a boon from the ancient wish of the Windblume, increasing ATK by 16%-20%-24%-28%-32% for 6s.", "Using an Elemental Burst regenerates 4-4.5-5-5.5-6 Energy every 2s for 6s. All party members will regenerate 4%-4.5%-5%-5.5%-6% HP every 2s for this duration.", "After using an Elemental Burst, this character will gain the Nascent Light effect, increasing their ATK by 8% for 16s. When the character's HP decreases, their ATK will further increase by 10%. This further increase can occur this way a maximum of 4 times. This effect can be triggered once every 0.8s. Nascent Light will be dispelled when the character leaves the field. If an Elemental Burst is used again during the duration of Nascent Light, the original Nascent Light will be dispelled.", @@ -865,6 +878,7 @@ "Normal Attack: Spear of Favonius – Arrow’s Passage", "Normal Attack: Rapid Ritesword", "Normal Attack: Swiftshatter Spear", + "Normal Attack: Card Force Translocation", "Normal Attack: Turnaround Shooter", "Normal Attack: The Classics of Acupuncture", "Normal Attack: Steel Fang", @@ -923,6 +937,7 @@ "DPS Amber", "DPS Yoimiya", "DPS Kokomi", + "DPS Lyney", "DPS Kazuha(also support)", "DPS Venti", "Cryo DPS Xiangling", @@ -956,6 +971,7 @@ "CRIT Rate Requirement", "Prophecies of Dawn", "Mouun's Moon", + "The First Great Magic", "Last Attack DMG", "Max EM", "Max Recharge", @@ -987,6 +1003,8 @@ "Song of Broken Pines", "Song of Broken Pines-「Millennial Movement: Banner-Hymn」", "Havoc: Obliteration", + "Lyney", + "Lyney-\tSpectacle of Phantasmagoria", "Kaedehara Kazuha", "Kazuha-「Yamaarashi Tailwind」", "Kazuha-「Poetics of Fuubutsu」", @@ -1045,8 +1063,8 @@ "Healing Bonus", "Healing Bonus increased by 10%-12.5%-15%-17.5%-20%, Normal Attack DMG is increased by 1%-1.5%-2%-2.5%-3% of the Max HP of the character equipping this weapon. For 12s after using an Elemental Burst, Normal Attacks that hit opponents will restore 0.6 Energy. Energy can be restored this way once every 0.1s.", "Healing Bonus +15%.", - "Regeneration", "Healing", + "Regeneration", "Faruzan-「The Wind’s Secret Ways」", "Faruzan Base ATK", "Illusory Bubble Explosion DMG", @@ -1073,6 +1091,7 @@ "Kurage's Oath", "Sea-Dyed Blossom", "Ocean-Hued Clam", + "Finale of the Deep", "Crown of Watatsumi", "Chalice of the Font", "Deepwood Memories", @@ -1110,6 +1129,7 @@ "火元素附着的持续时间下降40%。生命值上限提升25%", "Pryo Team Member Count", "Tri-Karma Purification DMG", + "Fleuve Cendre Ferryman", "Heart of Khvarena's Brilliance", "Stamen of Khvarena's Origin", "Spirit Blade: Cloud-Parting Star", @@ -1120,9 +1140,9 @@ "Leonine Bite", "Tap DMG", "Tapping DMG", - "Tapping Skill DMG", "Press Skill DMG", "Tap Skill DMG", + "Tapping Skill DMG", "Fiery Collapse DMG", "Crimson Witch of Flames", "Flame-Mane’s Fist DMG", @@ -1138,11 +1158,11 @@ "Subjugation: Koukou Sendou", "Molten Inferno", "Buring Duration", - "Burst DMG", "Explosion DMG", + "Burst DMG", "Explosive Puppet", - "", "Explosion DMG", + "", "Explosion DMG", "Physical DMG", "Maximize Crit or Avg Physical Damage", @@ -1150,6 +1170,7 @@ "State", "Stance Change DMG", "Kyougen: Shikiraku Gobandate", + "Wolf-Fang", "Wolf's Gravestone", "Wolf's Gravestone-「Wolfish Tracker」", "Soul Companion 1-Hit DMG", @@ -1254,6 +1275,7 @@ "Noble's Pledging Vessel", "Pearl Cage", "Crimson Ooyoroi", + "Bewildering Lights", "Aimed Shot", "Sucrose", "Sucrose-「Mollis Favonius」", @@ -1271,6 +1293,7 @@ "Jadefall’s Splendor", "Primordial Jade Cutter", "Flower of Creviced Cliff", + "Pyrotechnic Strike DMG", "Hopeful Heart", "Symbol of Felicitation", "Kagura's Verity", @@ -1363,6 +1386,7 @@ "Scholar of Vines", "Emerald Orb", "Flipclaw Strike DMG", + "Talking Stick", "Windmuster Iris DMG-Cryo", "Windmuster Iris DMG-Hydro", "Windmuster Iris DMG-Pyro", @@ -1449,6 +1473,8 @@ "Resolution of Sojourner", "Luxurious Sea-Lord", "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", "Avg Effect Ratio", "Avg Effect Stack", "Maiden Beloved", @@ -1578,8 +1604,8 @@ "Sundial of the Sojourner", "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", @@ -1594,14 +1620,14 @@ "Charged Attack-4 Scarlet Seals", "Charged Attack-No Scarlet Seals", "Charged Attack DMG", - "Charnged DMG-1", "Charged Attack DMG-1", "Charged DMG-1", + "Charnged DMG-1", "Charged Attack-1", - "Charged DMG-2", - "Charged Attack-2", "Charnged DMG-2", "Charged Attack DMG-2", + "Charged Attack-2", + "Charged DMG-2", "Charnged DMG-3", "Charged Attack DMG/3", "Charged Attack DMG(With talent)", @@ -1613,6 +1639,7 @@ "Charged Attack Final DMG", "Charged Attack hits on weak points increase Movement SPD by 10% and ATK by 36%-45%-54%-63%-72% for 10s.", "Charged Attack hits on weak points deal an additional 100%-125%-150%-175%-200% ATK DMG as CRIT DMG. Can only occur once every 10s.", + "DMG dealt by Charged Attacks increased by 16%-20%-24%-28%-32%. For every party member with the same Elemental Type as the wielder (including the wielder themselves), gain 1 Gimmick stack. For every party member with a different Elemental Type from the wielder, gain 1 Theatrics stack. When the wielder has 1/2/3 or more Gimmick stacks, ATK will be increased by 16%-20%-24%-28%-32%/32%-40%-48%-56%-64%/48%-60%-72%-84%-96%. When the wielder has 1/2/3 or more Theatrics stacks, Movement SPD will be increased by 4%-6%-8%-10%-12%/7%-9%-11%-13%-15%/10%-12%-14%-16%-18%.", "Yakan Evocation: Sesshou Sakura", "In Remembrance of Viridescent Fields", "Orichalceous Time-Dial", @@ -1636,6 +1663,7 @@ "Shining Miracle♪", "「Interlude」Ratio", "Different Element Count", + "Diff Element Number", "Different Element Count", "For every point of the entire party's combined maximum Energy capacity, the Elemental Burst DMG of the character equipping this weapon is increased by 0.12%-0.15%-0.18%-0.21%-0.24%. A maximum of 40%-50%-60%-70%-80% increased Elemental Burst DMG can be achieved this way.", "Party members other than the equipping character will provide the equipping character with buffs based on whether their Elemental Type is the same as the latter or not. If their Elemental Types are the same, increase Elemental Mastery by 32-40-48-56-64. If not, increase the equipping character’s DMG Bonus from their Elemental Type by 10%-14%-18%-22%-26%. Each of the aforementioned effects can have up to 3 stacks. Additionally, all nearby party members other than the equipping character will have their Elemental Mastery increased by 40-42-44-46-48. Multiple such effects from multiple such weapons can stack.", @@ -1643,7 +1671,9 @@ "For every character in the party who hails from Liyue, the character who equips this weapon gains a 7%-8%-9%-10%-11% ATK increase and a 3%-4%-5%-6%-7% CRIT Rate increase. This effect stacks up to 4 times.", "All Dendro Cores created by all your own party members through Bloom reactions will deal additional DMG when they burst", "Team Energy Number Sum", + "Same Element Number", "Max EM in Team", + "Pyro Count in Team (Lyney Excluded)", "Team Liyue Character Count", "For each different element present in your own party, the wearer's Elemental RES to that corresponding element is increased by 30%.", "Teammates' equivalent EM", @@ -1674,6 +1704,8 @@ "Sword of Descension", "Celestial Shower", "Omen of Thunderstorm", + "Prop Surplus stacks", + "Prop Arrow DMG", "Rainslasher", "Snow-Tombed Starsilver", "Level 0 Shattering Pressure DMG", diff --git a/src/i18n/generated/zh-cn.json b/src/i18n/generated/zh-cn.json index 875edaf6..22835498 100644 --- a/src/i18n/generated/zh-cn.json +++ b/src/i18n/generated/zh-cn.json @@ -2,8 +2,10 @@ "", "0.3秒内命中", "1枚光幕攻击伤害", + "2命「巧言贴耳的诱引」层数", "2枚光幕攻击伤害", "3枚光幕攻击伤害", + "4命「熟稔习练的筹谋」比例", "60级突破", "仅在以下平台生效:
\"PlayStation Network\"
对敌人造成冰元素伤害后,普通攻击与重击造成的伤害提高10%,该效果持续6秒,至多叠加2次;此外,埃洛伊装备掠食者时,攻击力提升66点。", "仅在以下平台生效:
\"PlayStation Network\"
普通攻击与重击命中敌人后有50%概率在小范围内造成200%攻击力的伤害。该效果每10秒只能触发一次;此外,旅行者装备降临之剑时,攻击力提升66点。", @@ -195,7 +197,9 @@ "元素共鸣-蔓生之草", "元素战技与元素爆发的伤害提高24%-30%-36%-42%-48%。", "元素战技与元素爆发造成的伤害提升10%;装备者受到伤害后的5秒内,上述伤害提升效果提高80%,该提高效果至多叠加5层,每层持续时间独立计算,处于队伍后台时依然能触发该效果。", + "元素战技与元素爆发造成的伤害提升16%-20%-24%-28%-32%。元素战技命中敌人时,元素战技的暴击率提升2%-2.5%-3%-3.5%-4%;元素爆发命中敌人时,元素爆发的暴击率提升2%-2.5%-3%-3.5%-4%。上述两种效果各自持续10秒,至多叠加4次,每0.1秒至多触发一次。", "元素战技倍数", + "元素战技命中层数", "元素战技命中敌人后,使队伍中附近的所有角色攻击力提升20%,护盾强效提升30%,持续3秒。", "元素战技命中敌人后,使队伍中附近的所有角色攻击力提升20%,护盾强效提升30%,持续3秒。该效果每0.5秒至多触发一次。装备此圣遗物套装的角色处于队伍后台时,依然能触发该效果。", "元素战技命中敌人后,攻击力提升9%。该效果持续7秒,至多叠加2层,每0.3秒至多触发一次。叠满2层时,2件套的效果提升100%。", @@ -204,6 +208,7 @@ "元素战技和元素爆发造成的伤害提高12%-15%-18%-21%-24%;普通攻击、重击、元素战技或元素爆发命中敌人后,将产生1层持续12秒的「白夜极星」效果。处于1/2/3/4层「白夜极星」效果下时,攻击力将提高10/20/30/48%-12.5/25/37.5/60%-15/30/45/72%-17.5/35/52.5/84%-20/40/60/96%。由普通攻击、重击、元素战技或元素爆发产生的「白夜极星」将分别独立存在。", "元素战技或元素爆发命中敌人后,使命中目标的草元素抗性降低30%,持续8秒。装备者处于队伍后台时,依然能触发该效果。", "元素战技或元素爆发命中敌人后,使命中目标的草元素抗性降低30%,持续8秒。装备者处于队伍后台时,依然能触发该效果。", + "元素战技暴击率提升8%-10%-12%-14%-16%;此外,施放元素战技后的5秒内,元素充能效率提升116%-20%-24%-28%-32%。", "元素战技次数", "元素战技造成伤害时,有40%-50%-60%-70%-80%的概率重置该技能的冷却时间,该效果每30-26-22-19-16秒只能触发一次。", "元素战技造成的伤害值提高,提高数值相当于防御力的40%-50%-60%-70%-80%。该效果每1.5秒最多触发一次,并将在元素战技造成伤害后的0.1秒后清除效果。", @@ -211,6 +216,7 @@ "元素战技造成的伤害提升20%。", "元素战技造成的伤害提升6%-7.5%-9%-10.5%-12%。元素战技命中后,角色流失3点元素能量,并在此后的6秒内,每2秒恢复3-3.5-4-4.5-5点元素能量。该效果每10秒至多触发一次,角色处于队伍后台也能触发。", "元素爆发倍数", + "元素爆发命中层数", "元素爆发次数", "元素爆发造成的伤害提升20%。", "元素爆发造成的伤害提升12%-15%-18%-21%-24%。元素爆发命中敌人时,有100%概率召唤大鲔冲击,造成100%-125%-150%-175%-200%攻击力的范围伤害。该效果每15秒至多触发一次。", @@ -465,6 +471,7 @@ "夜巡影翼", "大密法·天狐显真", "大扫除", + "大魔术·灵迹巡游", "天星", "天权崩玉", "天狐霆雷伤害", @@ -599,6 +606,7 @@ "异世界行记", "异国之盏", "弓藏", + "引爆礼花伤害", "弹弓", "归乡之羽", "形骸之笠", @@ -644,6 +652,7 @@ "扩散命中数", "扩散相对频率", "扩散类型", + "承受火元素附着后的15秒内,攻击力提升16%-20%-24%-28%-32%,每12秒至多触发一次;承受水元素、冰元素、雷元素或草元素附着后的15秒内,所有元素伤害加成提升12%-15%-18%-21%-24%,每12秒至多触发一次。", "技能", "技能伤害", "技能伤害-0层", @@ -714,10 +723,13 @@ "效果1等效层数", "效果2比例", "效果①比例", + "效果①比例", + "效果②比例", "效果②比例", "效果应用比例", "效果等效层数", "敌人火元素覆盖率", + "敌人被挂火", "敌方雷元素覆盖率", "教官", "教官4", @@ -747,6 +759,7 @@ "施放元素战技或元素爆发后的10秒内,队伍中所有角色受治疗效果加成提高20%。", "施放元素战技时,如果角色的元素能量高于或等于15点,则会流失15点元素能量,使接下来的10秒内,普通攻击、重击、下落攻击造成的伤害提高50%,持续期间内该效果不会再次触发。", "施放元素战技时,将获得「神乐舞」的效果,使装备该武器的角色的元素战技造成的伤害提高12%-15%-18%-21%-24%,该效果持续16秒,至多叠加3层。持有3层时,该角色获得12%-15%-18%-21%-24%所有元素伤害加成。", + "施放元素战技时,攻击力提升12%-15%-18%-21%-24%,持续15秒,并赋予生命值上限25%的生命之契,该效果每10秒至多触发一次。生命之契清除时,基于清除值的2.4%-3%-3.6%-4.2%-4.8%提升至多150-187.5-225-262.5-300点攻击力,持续15秒。", "施放元素战技时,获得风之花的悠古愿望加持,攻击力提升16%-20%-24%-28%-32%,持续6秒。", "施放元素爆发后6秒内,每2秒恢复4-4.5-5-5.5-6点元素能量,队伍中的所有角色每2秒恢复4%-4.5%-5%-5.5%-6%生命值。", "施放元素爆发后,将产生持续16秒的「潜光」效果:攻击力提升8%;并在角色的生命值降低时,攻击力进一步提升10%,至多通过这种方式提升4次,每0.8秒至多触发一次。「潜光」效果将在角色退场时消失;持续期间再次施放元素爆发,将移除原有的「潜光」。", @@ -865,6 +878,7 @@ "普通攻击·西风枪术·镝传", "普通攻击·迅捷礼刺剑", "普通攻击·迅破枪势", + "普通攻击·迫牌易位式", "普通攻击·迴身箭术", "普通攻击·金匮针解", "普通攻击·钢脊", @@ -923,6 +937,7 @@ "普通输出安柏", "普通输出宵宫", "普通输出心海", + "普通输出林尼", "普通输出枫原万叶(兼辅助)", "普通输出温迪", "普通输出火伤香菱", @@ -956,6 +971,7 @@ "暴击需求", "曙光预言", "曚云之月", + "最初的大魔术", "最后一击伤害", "最大元素精通", "最大充能效率", @@ -987,6 +1003,8 @@ "松籁响起之时", "松籁响起之时-「千年的大乐章·揭旗之歌」", "极恶技·尽灭闪", + "林尼", + "林尼-惑光幻戏", "枫原万叶", "枫原万叶-「山岚残芯」", "枫原万叶-「风物之诗咏」", @@ -1073,6 +1091,7 @@ "海月之誓", "海染之花", "海染砗磲", + "海渊终曲", "海祇之冠", "涌泉之盏", "深林的记忆", @@ -1110,6 +1129,7 @@ "火元素附着的持续时间下降40%。生命值上限提升25%", "火系队友数量", "灭净三业伤害", + "灰河渡手", "灵光明烁之心", "灵光源起之蕊", "灵刃·云开星落", @@ -1150,6 +1170,7 @@ "状态", "状态爆发伤害", "狂言·式乐五番", + "狼牙", "狼的末路", "狼的末路-「如狼般狩猎者」", "狼魂-一段伤害", @@ -1254,6 +1275,7 @@ "盟誓金爵", "真珠之笼", "真红炽火之大铠", + "眩惑光戏法", "瞄准射击", "砂糖", "砂糖-「小小的慧风」", @@ -1271,6 +1293,7 @@ "碧落之珑", "磐岩结绿", "磐陀裂生之花", + "礼花术弹伤害", "祈望之心", "祝祀之凭", "神乐之真意", @@ -1363,6 +1386,7 @@ "翠蔓的智者", "翡玉法球", "翻正爪击伤害", + "聊聊棒", "聚风真眼伤害-冰", "聚风真眼伤害-水", "聚风真眼伤害-火", @@ -1449,6 +1473,8 @@ "行者之心", "衔珠海皇", "街巷伏击:装备该武器的角色处于队伍后台时,每1秒角色造成的伤害提升2%/2.5%/3%/3.5%/4%,最多通过这种方式获得20%/25%/30%/35%/40%的伤害提升;在场上超过4秒后,上述伤害提升效果每1秒会流失4%/5%/6%/7%/8%,直到降低至0%。", + "被动①比例", + "被动②比例", "被动应用比例", "被动等效层数", "被怜爱的少女", @@ -1613,6 +1639,7 @@ "重击终结伤害", "重击若命中要害,则提升10%移动速度与36%-45%-54%-63%-72%攻击力,持续10秒。", "重击若命中要害,则额外造成100%-125%-150%-175%-200%攻击力的伤害,该伤害必定暴击。此效果每10秒只能触发一次。", + "重击造成的伤害提升16%-20%-24%-28%-32%;队伍中每存在一位与装备者元素类型相同的角色(包括装备者自身),将获得1层「手法」效果;每存在一位元素类型不同的角色,将获得1层「演技」效果。处于1/2/3层及以上「手法」效果下时,攻击力提升16%-20%-24%-28%-32%/32%-40%-48%-56%-64%/48%-60%-72%-84%-96%;处于1/2/3层及以上「演技」效果下时,移动速度提升4%-6%-8%-10%-12%/7%-9%-11%-13%-15%/10%-12%-14%-16%-18%。", "野干役咒·杀生樱", "野花记忆的绿野", "金铜时晷", @@ -1636,6 +1663,7 @@ "闪耀奇迹♪", "间奏曲比例", "队伍不同元素数量", + "队伍不同元素数量", "队伍不同属性数量", "队伍中所有角色的元素能量上限的总和,每1点能使装备此武器的角色的元素爆发造成的伤害提高0.12%-0.15%-0.18%-0.21%-0.24%,通过这种方式,元素爆发造成的伤害至多提高40%-50%-60%-70%-80%。", "队伍中每个其他角色,都会依据元素类型与装备者相同与否,为装备者提供提升效果。相同:元素精通提升32-40-48-56-64点;不同:装备者元素类型的元素伤害加成提升10%-14%-18%-22%-26%。上述提升效果每种至多叠加3层。此外,队伍中装备者以外的附近角色的元素精通提升40-42-44-46-48点,多件同名武器产生的此效果可以叠加。", @@ -1643,7 +1671,9 @@ "队伍中每有一位璃月角色,装备该武器的角色便获得7%-8%-9%-10%-11%攻击力提升与3%-4%-5%-6%-7%暴击率提升。至多获得4层提升效果。", "队伍中自己的角色触发绽放反应产生的草原核,在迸发时造成的伤害提升", "队伍元素能量上限总和", + "队伍同元素数量", "队伍最大元素精通", + "队伍火元素数(除林尼)", "队伍璃月角色数量", "队伍里每有不同一种元素类型的自己的角色,自身获得30%相应的元素抗性。", "队友的等效精通", @@ -1674,6 +1704,8 @@ "降临之剑", "降众天华", "降雷的凶兆", + "隐具余数", + "隐具魔术箭伤害", "雨裁", "雪葬的星银", "零阶高压粉碎伤害", From 6aa1fa6852b48fac6876249e1c28dcd7467fbe8a Mon Sep 17 00:00:00 2001 From: wormtql <584130248@qq.com> Date: Fri, 18 Aug 2023 19:58:47 +0800 Subject: [PATCH 5/7] feat(4.0): Add some weapons --- mona_core/src/weapon/weapon_config.rs | 3 + mona_core/src/weapon/weapon_name.rs | 4 + mona_core/src/weapon/weapon_sub_stat.rs | 3 + mona_core/src/weapon/weapons/catalysts/mod.rs | 2 + .../weapons/catalysts/sacrificial_jade.rs | 62 + mona_core/src/weapon/weapons/claymores/mod.rs | 2 + .../weapon/weapons/claymores/tidal_shadow.rs | 62 + .../weapons/polearms/ballad_of_the_fjords.rs | 70 + mona_core/src/weapon/weapons/polearms/mod.rs | 4 + .../weapons/polearms/rightful_reward.rs | 37 + src/assets/_gen_artifact.js | 698 +++---- src/assets/_gen_buff.js | 488 ++--- src/assets/_gen_character.js | 1852 ++++++++--------- src/assets/_gen_pf.js | 32 +- src/assets/_gen_tf.js | 408 ++-- src/assets/_gen_weapon.js | 854 ++++---- src/i18n/generated/en.json | 47 +- src/i18n/generated/zh-cn.json | 9 + 18 files changed, 2494 insertions(+), 2143 deletions(-) create mode 100644 mona_core/src/weapon/weapons/catalysts/sacrificial_jade.rs create mode 100644 mona_core/src/weapon/weapons/claymores/tidal_shadow.rs create mode 100644 mona_core/src/weapon/weapons/polearms/ballad_of_the_fjords.rs create mode 100644 mona_core/src/weapon/weapons/polearms/rightful_reward.rs diff --git a/mona_core/src/weapon/weapon_config.rs b/mona_core/src/weapon/weapon_config.rs index 9506522c..63bc3eb8 100644 --- a/mona_core/src/weapon/weapon_config.rs +++ b/mona_core/src/weapon/weapon_config.rs @@ -48,6 +48,7 @@ pub enum WeaponConfig { BeaconOfTheReedSea { rate_atk: f64, rate_hp: f64 }, MailedFlower { rate: f64 }, TalkingStick { rate1: f64, rate2: f64 }, + TidalShadow { rate: f64 }, // Polearm EngulfingLightning { rate: f64 }, @@ -65,6 +66,7 @@ pub enum WeaponConfig { Moonpiercer { rate: f64 }, MissiveWindspear { rate: f64 }, StaffOfTheScarletSands { stack: f64 }, + BalladOfTheFjords { use_effect: bool }, // Catalyst LostPrayerToTheSacredWinds { stack: f64 }, @@ -85,6 +87,7 @@ pub enum WeaponConfig { AThousandFloatingDreams { same_count: usize, diff_count: usize }, TulaytullahsRemembrance { stack: f64 }, JadeFallsSplendor { rate: f64 }, + SacrificialJade { rate: f64 }, // Bow PolarStar { stack: usize }, diff --git a/mona_core/src/weapon/weapon_name.rs b/mona_core/src/weapon/weapon_name.rs index 27009593..5166f9e7 100644 --- a/mona_core/src/weapon/weapon_name.rs +++ b/mona_core/src/weapon/weapon_name.rs @@ -84,6 +84,7 @@ pub enum WeaponName { BeaconOfTheReedSea, MailedFlower, TalkingStick, + TidalShadow, // polearm EngulfingLightning, @@ -112,6 +113,8 @@ pub enum WeaponName { Moonpiercer, MissiveWindspear, StaffOfTheScarletSands, + BalladOfTheFjords, + RightfulReward, // catalyst LostPrayerToTheSacredWinds, @@ -145,6 +148,7 @@ pub enum WeaponName { AThousandFloatingDreams, TulaytullahsRemembrance, JadeFallsSplendor, + SacrificialJade, // bows PolarStar, diff --git a/mona_core/src/weapon/weapon_sub_stat.rs b/mona_core/src/weapon/weapon_sub_stat.rs index fe92dd2c..4a87c0f2 100644 --- a/mona_core/src/weapon/weapon_sub_stat.rs +++ b/mona_core/src/weapon/weapon_sub_stat.rs @@ -46,6 +46,7 @@ pub enum WeaponSubStatFamily { EM48, EM58, + HP60, HP77, HP90, HP102, @@ -113,6 +114,7 @@ pub fn get_stat_name_from_family(family: WeaponSubStatFamily) -> StatName { WeaponSubStatFamily::EM48 => StatName::ElementalMastery, WeaponSubStatFamily::EM58 => StatName::ElementalMastery, + WeaponSubStatFamily::HP60 => StatName::HPPercentage, WeaponSubStatFamily::HP77 => StatName::HPPercentage, WeaponSubStatFamily::HP90 => StatName::HPPercentage, WeaponSubStatFamily::HP102 => StatName::HPPercentage, @@ -181,6 +183,7 @@ pub fn get_value_array(family: WeaponSubStatFamily) -> [f64; 8] { WeaponSubStatFamily::EM48 => [48.0, 85.0, 124.0, 143.0, 162.0, 182.0, 201.0, 221.0], WeaponSubStatFamily::EM58 => [57.6, 101.78, 148.32, 171.59, 194.86, 218.07, 241.34, 264.61], + WeaponSubStatFamily::HP60 => [0.06, 0.106, 0.1545, 0.1787, 0.203, 0.2272, 0.2514, 0.2756], WeaponSubStatFamily::HP77 => [0.077, 0.135, 0.197, 0.228, 0.259, 0.29, 0.321, 0.413], WeaponSubStatFamily::HP90 => [0.09, 0.159, 0.232, 0.268, 0.304, 0.341, 0.377, 0.413], WeaponSubStatFamily::HP102 => [0.102, 0.18, 0.263, 0.304, 0.345, 0.386, 0.427, 0.469], diff --git a/mona_core/src/weapon/weapons/catalysts/mod.rs b/mona_core/src/weapon/weapons/catalysts/mod.rs index 4a86999f..7c118a4d 100644 --- a/mona_core/src/weapon/weapons/catalysts/mod.rs +++ b/mona_core/src/weapon/weapons/catalysts/mod.rs @@ -29,6 +29,7 @@ pub use wandering_evenstar::WanderingEvenstar; pub use a_thousand_floating_dreams::AThousandFloatingDreams; pub use tulaytullah_s_remembrance::TulaytullahsRemembrance; pub use jadefalls_splendor::JadeFallsSplendor; +pub use sacrificial_jade::SacrificialJade; pub mod lost_prayer_to_the_sacred_winds; pub mod skyward_atlas; @@ -61,3 +62,4 @@ pub mod wandering_evenstar; pub mod a_thousand_floating_dreams; pub mod tulaytullah_s_remembrance; pub mod jadefalls_splendor; +pub mod sacrificial_jade; diff --git a/mona_core/src/weapon/weapons/catalysts/sacrificial_jade.rs b/mona_core/src/weapon/weapons/catalysts/sacrificial_jade.rs new file mode 100644 index 00000000..adaf9325 --- /dev/null +++ b/mona_core/src/weapon/weapons/catalysts/sacrificial_jade.rs @@ -0,0 +1,62 @@ +use crate::attribute::{Attribute, AttributeCommon, AttributeName}; +use crate::character::character_common_data::CharacterCommonData; +use crate::common::i18n::locale; +use crate::common::item_config_type::ItemConfig; +use crate::common::WeaponType; +use crate::weapon::weapon_common_data::WeaponCommonData; +use crate::weapon::weapon_effect::WeaponEffect; +use crate::weapon::weapon_static_data::WeaponStaticData; +use crate::weapon::weapon_trait::WeaponTrait; +use crate::weapon::{WeaponConfig, WeaponName}; +use crate::weapon::weapon_base_atk::WeaponBaseATKFamily; +use crate::weapon::weapon_sub_stat::WeaponSubStatFamily; + +pub struct SacrificialJadeEffect { + pub rate: f64 +} + +impl WeaponEffect
for SacrificialJadeEffect { + fn apply(&self, data: &WeaponCommonData, attribute: &mut A) { + let refine = data.refine as f64; + attribute.add_hp_percentage("遗祀玉珑被动", self.rate * (0.08 * refine + 0.24)); + attribute.set_value_by(AttributeName::ElementalMastery, "遗祀玉珑被动", self.rate * (10.0 * refine + 30.0)); + } +} + +pub struct SacrificialJade; + +impl WeaponTrait for SacrificialJade { + const META_DATA: WeaponStaticData = WeaponStaticData { + name: WeaponName::SacrificialJade, + internal_name: "", + weapon_type: WeaponType::Catalyst, + weapon_sub_stat: Some(WeaponSubStatFamily::CriticalRate80), + weapon_base: WeaponBaseATKFamily::ATK454, + star: 4, + #[cfg(not(target_family = "wasm"))] + effect: Some(locale!( + zh_cn: "处于队伍后台超过5秒后,生命值上限提升32%-40%-48%-56%-64%,元素精通提升40-50-60-70-80点。装备者登场并留在场上10秒后,该效果将失效。", + en: "When not on the field for more than 5s, Max HP will be increased by 32%-40%-48%-56%-64% and Elemental Mastery will be increased by 40-50-60-70-80. These effects will be canceled after the wielder has been on the field for 10s." + )), + #[cfg(not(target_family = "wasm"))] + name_locale: locale!( + zh_cn: "遗祀玉珑", + en: "Sacrificial Jade" + ) + }; + + #[cfg(not(target_family = "wasm"))] + const CONFIG_DATA: Option<&'static [ItemConfig]> = Some(&[ + ItemConfig::RATE01 + ]); + + fn get_effect(character: &CharacterCommonData, config: &WeaponConfig) -> Option>> { + let rate = match *config { + WeaponConfig::SacrificialJade { rate } => rate, + _ => 0.0 + }; + Some(Box::new(SacrificialJadeEffect { + rate + })) + } +} diff --git a/mona_core/src/weapon/weapons/claymores/mod.rs b/mona_core/src/weapon/weapons/claymores/mod.rs index b336042b..a8af069e 100644 --- a/mona_core/src/weapon/weapons/claymores/mod.rs +++ b/mona_core/src/weapon/weapons/claymores/mod.rs @@ -29,6 +29,7 @@ pub use makhaira_aquamarine::MakhairaAquamarine; pub use beacon_of_the_reed_sea::BeaconOfTheReedSea; pub use mailed_flower::MailedFlower; pub use talking_stick::TalkingStick; +pub use tidal_shadow::TidalShadow; pub mod wolfs_gravestone; pub mod skyward_pride; @@ -61,3 +62,4 @@ pub mod makhaira_aquamarine; pub mod beacon_of_the_reed_sea; pub mod mailed_flower; pub mod talking_stick; +pub mod tidal_shadow; diff --git a/mona_core/src/weapon/weapons/claymores/tidal_shadow.rs b/mona_core/src/weapon/weapons/claymores/tidal_shadow.rs new file mode 100644 index 00000000..31c8722f --- /dev/null +++ b/mona_core/src/weapon/weapons/claymores/tidal_shadow.rs @@ -0,0 +1,62 @@ +use crate::attribute::{Attribute, AttributeCommon}; +use crate::character::character_common_data::CharacterCommonData; +use crate::common::i18n::locale; +use crate::common::item_config_type::ItemConfig; +use crate::common::WeaponType; +use crate::weapon::weapon_common_data::WeaponCommonData; +use crate::weapon::weapon_effect::WeaponEffect; +use crate::weapon::weapon_static_data::WeaponStaticData; +use crate::weapon::weapon_trait::WeaponTrait; +use crate::weapon::{WeaponConfig, WeaponName}; +use crate::weapon::weapon_base_atk::WeaponBaseATKFamily; +use crate::weapon::weapon_sub_stat::WeaponSubStatFamily; + +pub struct TidalShadowEffect { + pub rate: f64 +} + +impl WeaponEffect for TidalShadowEffect { + fn apply(&self, data: &WeaponCommonData, attribute: &mut A) { + let refine = data.refine as f64; + let value = 0.06 * refine + 0.18; + attribute.add_atk_percentage("浪影阔剑被动", value * self.rate); + } +} + +pub struct TidalShadow; + +impl WeaponTrait for TidalShadow { + const META_DATA: WeaponStaticData = WeaponStaticData { + name: WeaponName::TidalShadow, + internal_name: "Claymore_Vorpal", + weapon_type: WeaponType::Claymore, + weapon_sub_stat: Some(WeaponSubStatFamily::ATK90), + weapon_base: WeaponBaseATKFamily::ATK510, + star: 4, + #[cfg(not(target_family = "wasm"))] + effect: Some(locale!( + zh_cn: "受到治疗后,攻击力提升24%-30%-36%-42%-48%,持续8秒。角色处于队伍后台也能触发。", + en: "After the wielder is healed, ATK will be increased by 24%-30%-36%-42%-48% for 8s. This can be triggered even when the character is not on the field." + )), + #[cfg(not(target_family = "wasm"))] + name_locale: locale!( + zh_cn: "浪影阔剑", + en: "Tidal Shadow", + ) + }; + + #[cfg(not(target_family = "wasm"))] + const CONFIG_DATA: Option<&'static [ItemConfig]> = Some(&[ + ItemConfig::RATE01 + ]); + + fn get_effect(character: &CharacterCommonData, config: &WeaponConfig) -> Option>> { + let rate = match *config { + WeaponConfig::TidalShadow { rate } => rate, + _ => 0.0 + }; + Some(Box::new(TidalShadowEffect { + rate + })) + } +} diff --git a/mona_core/src/weapon/weapons/polearms/ballad_of_the_fjords.rs b/mona_core/src/weapon/weapons/polearms/ballad_of_the_fjords.rs new file mode 100644 index 00000000..abc3205c --- /dev/null +++ b/mona_core/src/weapon/weapons/polearms/ballad_of_the_fjords.rs @@ -0,0 +1,70 @@ +use crate::attribute::{Attribute, AttributeName}; +use crate::character::character_common_data::CharacterCommonData; +use crate::common::i18n::locale; +use crate::common::item_config_type::{ItemConfig, ItemConfigType}; +use crate::common::WeaponType; +use crate::weapon::weapon_common_data::WeaponCommonData; +use crate::weapon::weapon_effect::WeaponEffect; +use crate::weapon::weapon_static_data::WeaponStaticData; +use crate::weapon::weapon_trait::WeaponTrait; +use crate::weapon::{WeaponConfig, WeaponName}; +use crate::weapon::weapon_base_atk::WeaponBaseATKFamily; +use crate::weapon::weapon_sub_stat::WeaponSubStatFamily; + +pub struct BalladOfTheFjordsEffect { + pub use_effect: bool +} + +impl WeaponEffect for BalladOfTheFjordsEffect { + fn apply(&self, data: &WeaponCommonData, attribute: &mut A) { + if self.use_effect { + let value = 30 * data.refine + 90; + attribute.set_value_by(AttributeName::ElementalMastery, "峡湾长歌被动", value as f64); + } + } +} + +pub struct BalladOfTheFjords; + +impl WeaponTrait for BalladOfTheFjords { + const META_DATA: WeaponStaticData = WeaponStaticData { + name: WeaponName::BalladOfTheFjords, + internal_name: "Pole_Shanty", + weapon_type: WeaponType::Polearm, + weapon_sub_stat: Some(WeaponSubStatFamily::CriticalRate60), + weapon_base: WeaponBaseATKFamily::ATK510, + star: 4, + #[cfg(not(target_family = "wasm"))] + effect: Some(locale!( + zh_cn: "队伍中存在至少三种不同元素类型的角色时,元素精通提升120-150-180-210-240点。", + en: "When there are at least 3 different Elemental Types in your party, Elemental Mastery will be increased by 120-150-180-210-240." + )), + #[cfg(not(target_family = "wasm"))] + name_locale: locale!( + zh_cn: "峡湾长歌", + en: "Ballad of the Fjords" + ) + }; + + #[cfg(not(target_family = "wasm"))] + const CONFIG_DATA: Option<&'static [ItemConfig]> = Some(&[ + ItemConfig { + name: "use_effect", + title: locale!( + zh_cn: "开启被动", + en: "Use Effect" + ), + config: ItemConfigType::Bool { default: true } + } + ]); + + fn get_effect(character: &CharacterCommonData, config: &WeaponConfig) -> Option>> { + let b = match *config { + WeaponConfig::BalladOfTheFjords { use_effect } => use_effect, + _ => false + }; + Some(Box::new(BalladOfTheFjordsEffect { + use_effect: b + })) + } +} diff --git a/mona_core/src/weapon/weapons/polearms/mod.rs b/mona_core/src/weapon/weapons/polearms/mod.rs index 5e5683c0..d2a46277 100644 --- a/mona_core/src/weapon/weapons/polearms/mod.rs +++ b/mona_core/src/weapon/weapons/polearms/mod.rs @@ -24,6 +24,8 @@ pub use beginners_protector::BeginnersProtector; pub use moonpiercer::Moonpiercer; pub use missive_windspear::MissiveWindspear; pub use staff_of_the_scarlet_sands::StaffOfTheScarletSands; +pub use ballad_of_the_fjords::BalladOfTheFjords; +pub use rightful_reward::RightfulReward; pub mod engulfing_lightning; pub mod skyward_spine; @@ -51,3 +53,5 @@ pub mod beginners_protector; pub mod moonpiercer; pub mod missive_windspear; pub mod staff_of_the_scarlet_sands; +pub mod ballad_of_the_fjords; +pub mod rightful_reward; diff --git a/mona_core/src/weapon/weapons/polearms/rightful_reward.rs b/mona_core/src/weapon/weapons/polearms/rightful_reward.rs new file mode 100644 index 00000000..4956213d --- /dev/null +++ b/mona_core/src/weapon/weapons/polearms/rightful_reward.rs @@ -0,0 +1,37 @@ +use crate::attribute::Attribute; +use crate::character::character_common_data::CharacterCommonData; +use crate::common::i18n::locale; +use crate::common::WeaponType; +use crate::weapon::weapon_effect::WeaponEffect; +use crate::weapon::weapon_static_data::WeaponStaticData; +use crate::weapon::weapon_trait::WeaponTrait; +use crate::weapon::{WeaponConfig, WeaponName}; +use crate::weapon::weapon_base_atk::WeaponBaseATKFamily; +use crate::weapon::weapon_sub_stat::WeaponSubStatFamily; + +pub struct RightfulReward; + +impl WeaponTrait for RightfulReward { + const META_DATA: WeaponStaticData = WeaponStaticData { + name: WeaponName::RightfulReward, + internal_name: "Pole_Vorpal", + weapon_type: WeaponType::Polearm, + weapon_sub_stat: Some(WeaponSubStatFamily::HP60), + weapon_base: WeaponBaseATKFamily::ATK565, + star: 4, + #[cfg(not(target_family = "wasm"))] + effect: Some(locale!( + zh_cn: "受到治疗时,恢复8-10-12-14-16点能量,该效果每10秒至多触发一次,角色处于队伍后台时也能触发。", + en: "When the wielder is healed, restore 8-10-12-14-16 Energy. This effect can be triggered once every 10s, and can occur even when the character is not on the field." + )), + #[cfg(not(target_family = "wasm"))] + name_locale: locale!( + zh_cn: "公义的酬报", + en: "Rightful Reward" + ) + }; + + fn get_effect(character: &CharacterCommonData, config: &WeaponConfig) -> Option>> { + None + } +} diff --git a/src/assets/_gen_artifact.js b/src/assets/_gen_artifact.js index 27918ada..f5ae9a1b 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: 252, + nameLocale: 253, minStar: 1, maxStar: 3, - effect2: 1227, + effect2: 1234, - effect4: 603, + effect4: 608, flower: { - text: 253, + text: 254, url: getIcon("UI_RelicIcon_10010_4") }, feather: { - text: 255, + text: 256, url: getIcon("UI_RelicIcon_10010_2") }, sand: { - text: 256, + text: 257, url: getIcon("UI_RelicIcon_10010_5") }, cup: { - text: 257, + text: 258, url: getIcon("UI_RelicIcon_10010_1") }, head: { - text: 254, + text: 255, url: getIcon("UI_RelicIcon_10010_3") }, @@ -58,40 +58,40 @@ export default { "archaicPetra": { eng: "archaicPetra", name2: "ArchaicPetra", - nameLocale: 626, + nameLocale: 632, minStar: 4, maxStar: 5, - effect2: 1431, + effect2: 1438, - effect4: 1446, + effect4: 1453, flower: { - text: 1293, + text: 1300, url: getIcon("UI_RelicIcon_15014_4") }, feather: { - text: 578, + text: 583, url: getIcon("UI_RelicIcon_15014_2") }, sand: { - text: 797, + text: 803, url: getIcon("UI_RelicIcon_15014_5") }, cup: { - text: 579, + text: 584, url: getIcon("UI_RelicIcon_15014_1") }, @@ -105,7 +105,7 @@ export default { {"default":"Electro","name":"element","title":185,"type":"element4"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":727,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":733,"type":"float"}, ], }, @@ -113,52 +113,52 @@ export default { "berserker": { eng: "berserker", name2: "Berserker", - nameLocale: 632, + nameLocale: 638, minStar: 3, maxStar: 4, - effect2: 966, + effect2: 972, - effect4: 1231, + effect4: 1238, flower: { - text: 635, + text: 641, url: getIcon("UI_RelicIcon_10005_4") }, feather: { - text: 634, + text: 640, url: getIcon("UI_RelicIcon_10005_2") }, sand: { - text: 633, + text: 639, url: getIcon("UI_RelicIcon_10005_5") }, cup: { - text: 636, + text: 642, url: getIcon("UI_RelicIcon_10005_1") }, head: { - text: 637, + text: 643, url: getIcon("UI_RelicIcon_10005_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":727,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":733,"type":"float"}, ], }, @@ -166,52 +166,52 @@ export default { "blizzardStrayer": { eng: "blizzardStrayer", name2: "BlizzardStrayer", - nameLocale: 270, + nameLocale: 271, minStar: 4, maxStar: 5, - effect2: 1430, + effect2: 1437, - effect4: 714, + effect4: 720, flower: { - text: 342, + text: 343, url: getIcon("UI_RelicIcon_14001_4") }, feather: { - text: 697, + text: 703, url: getIcon("UI_RelicIcon_14001_2") }, sand: { - text: 269, + text: 270, url: getIcon("UI_RelicIcon_14001_5") }, cup: { - text: 1609, + text: 1616, url: getIcon("UI_RelicIcon_14001_1") }, head: { - text: 1287, + text: 1294, url: getIcon("UI_RelicIcon_14001_3") }, config4: [ - {"default":0.0,"max":0.4,"min":0.0,"name":"critical_bonus","title":1338,"type":"float"}, + {"default":0.0,"max":0.4,"min":0.0,"name":"critical_bonus","title":1345,"type":"float"}, ], }, @@ -219,52 +219,52 @@ export default { "bloodstainedChivalry": { eng: "bloodstainedChivalry", name2: "BloodstainedChivalry", - nameLocale: 1015, + nameLocale: 1021, minStar: 4, maxStar: 5, - effect2: 1606, + effect2: 1612, - effect4: 288, + effect4: 289, flower: { - text: 1013, + text: 1019, url: getIcon("UI_RelicIcon_15008_4") }, feather: { - text: 1016, + text: 1022, url: getIcon("UI_RelicIcon_15008_2") }, sand: { - text: 1788, + text: 1797, url: getIcon("UI_RelicIcon_15008_5") }, cup: { - text: 1017, + text: 1023, url: getIcon("UI_RelicIcon_15008_1") }, head: { - text: 1014, + text: 1020, url: getIcon("UI_RelicIcon_15008_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":727,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":733,"type":"float"}, ], }, @@ -272,52 +272,52 @@ export default { "braveHeart": { eng: "braveHeart", name2: "BraveHeart", - nameLocale: 308, + nameLocale: 309, minStar: 3, maxStar: 4, - effect2: 704, + effect2: 710, - effect4: 564, + effect4: 568, flower: { - text: 310, + text: 311, url: getIcon("UI_RelicIcon_10002_4") }, feather: { - text: 313, + text: 314, url: getIcon("UI_RelicIcon_10002_2") }, sand: { - text: 311, + text: 312, url: getIcon("UI_RelicIcon_10002_5") }, cup: { - text: 312, + text: 313, url: getIcon("UI_RelicIcon_10002_1") }, head: { - text: 309, + text: 310, url: getIcon("UI_RelicIcon_10002_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":727,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":733,"type":"float"}, ], }, @@ -325,52 +325,52 @@ export default { "crimsonWitch": { eng: "crimsonWitch", name2: "CrimsonWitchOfFlames", - nameLocale: 1145, + nameLocale: 1152, minStar: 4, maxStar: 5, - effect2: 1433, + effect2: 1440, - effect4: 1555, + effect4: 1562, flower: { - text: 1796, + text: 1805, url: getIcon("UI_RelicIcon_15006_4") }, feather: { - text: 1794, + text: 1803, url: getIcon("UI_RelicIcon_15006_2") }, sand: { - text: 1797, + text: 1806, url: getIcon("UI_RelicIcon_15006_5") }, cup: { - text: 1795, + text: 1804, url: getIcon("UI_RelicIcon_15006_1") }, head: { - text: 1153, + text: 1160, url: getIcon("UI_RelicIcon_15006_3") }, config4: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"level","title":728,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"level","title":734,"type":"float"}, ], }, @@ -378,12 +378,12 @@ export default { "DeepwoodMemories": { eng: "DeepwoodMemories", name2: "DeepwoodMemories", - nameLocale: 1095, + nameLocale: 1102, minStar: 4, maxStar: 5, - effect2: 1434, + effect2: 1441, @@ -393,37 +393,37 @@ export default { flower: { - text: 1595, + text: 1602, url: getIcon("UI_RelicIcon_15025_4") }, feather: { - text: 1384, + text: 1391, url: getIcon("UI_RelicIcon_15025_2") }, sand: { - text: 1536, + text: 1543, url: getIcon("UI_RelicIcon_15025_5") }, cup: { - text: 1596, + text: 1603, url: getIcon("UI_RelicIcon_15025_1") }, head: { - text: 991, + text: 997, url: getIcon("UI_RelicIcon_15025_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":727,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":733,"type":"float"}, ], }, @@ -431,46 +431,46 @@ export default { "defenderWill": { eng: "defenderWill", name2: "DefendersWill", - nameLocale: 527, + nameLocale: 531, minStar: 0, maxStar: 0, - effect2: 1684, + effect2: 1693, - effect4: 1676, + effect4: 1685, flower: { - text: 529, + text: 533, url: getIcon("UI_RelicIcon_10003_4") }, feather: { - text: 531, + text: 535, url: getIcon("UI_RelicIcon_10003_2") }, sand: { - text: 530, + text: 534, url: getIcon("UI_RelicIcon_10003_5") }, cup: { - text: 528, + text: 532, url: getIcon("UI_RelicIcon_10003_1") }, head: { - text: 532, + text: 536, url: getIcon("UI_RelicIcon_10003_3") }, @@ -482,52 +482,52 @@ export default { "EchoesOfAnOffering": { eng: "EchoesOfAnOffering", name2: "EchoesOfAnOffering", - nameLocale: 1000, + nameLocale: 1006, minStar: 4, maxStar: 5, - effect2: 704, + effect2: 710, - effect4: 905, + effect4: 911, flower: { - text: 1791, + text: 1800, url: getIcon("UI_RelicIcon_15024_4") }, feather: { - text: 436, + text: 439, url: getIcon("UI_RelicIcon_15024_2") }, sand: { - text: 1296, + text: 1303, url: getIcon("UI_RelicIcon_15024_5") }, cup: { - text: 1094, + text: 1101, url: getIcon("UI_RelicIcon_15024_1") }, head: { - text: 1086, + text: 1093, url: getIcon("UI_RelicIcon_15024_3") }, config4: [ - {"default":0.5053283764473575,"max":1.0,"min":0.0,"name":"rate","title":583,"type":"float"}, + {"default":0.5053283764473575,"max":1.0,"min":0.0,"name":"rate","title":588,"type":"float"}, ], }, @@ -535,7 +535,7 @@ export default { "emblemOfSeveredFate": { eng: "emblemOfSeveredFate", name2: "EmblemOfSeveredFate", - nameLocale: 1362, + nameLocale: 1369, minStar: 4, maxStar: 5, @@ -544,37 +544,37 @@ export default { - effect4: 442, + effect4: 445, flower: { - text: 789, + text: 795, url: getIcon("UI_RelicIcon_15020_4") }, feather: { - text: 295, + text: 296, url: getIcon("UI_RelicIcon_15020_2") }, sand: { - text: 1711, + text: 1720, url: getIcon("UI_RelicIcon_15020_5") }, cup: { - text: 1365, + text: 1372, url: getIcon("UI_RelicIcon_15020_1") }, head: { - text: 331, + text: 332, url: getIcon("UI_RelicIcon_15020_3") }, @@ -591,47 +591,47 @@ export default { maxStar: 5, - effect2: 226, + effect2: 228, - effect4: 1484, + effect4: 1491, flower: { - text: 990, + text: 996, url: getIcon("UI_RelicIcon_15028_4") }, feather: { - text: 1534, + text: 1541, url: getIcon("UI_RelicIcon_15028_2") }, sand: { - text: 283, + text: 284, url: getIcon("UI_RelicIcon_15028_5") }, cup: { - text: 533, + text: 537, url: getIcon("UI_RelicIcon_15028_1") }, head: { - text: 1348, + text: 1355, url: getIcon("UI_RelicIcon_15028_3") }, config4: [ - {"default":4.0,"max":4.0,"min":0.0,"name":"stack","title":728,"type":"float"}, + {"default":4.0,"max":4.0,"min":0.0,"name":"stack","title":734,"type":"float"}, ], }, @@ -639,7 +639,7 @@ export default { "gambler": { eng: "gambler", name2: "Gambler", - nameLocale: 1540, + nameLocale: 1547, minStar: 3, maxStar: 4, @@ -648,37 +648,37 @@ export default { - effect4: 293, + effect4: 294, flower: { - text: 1544, + text: 1551, url: getIcon("UI_RelicIcon_10008_4") }, feather: { - text: 1542, + text: 1549, url: getIcon("UI_RelicIcon_10008_2") }, sand: { - text: 1541, + text: 1548, url: getIcon("UI_RelicIcon_10008_5") }, cup: { - text: 1545, + text: 1552, url: getIcon("UI_RelicIcon_10008_1") }, head: { - text: 1543, + text: 1550, url: getIcon("UI_RelicIcon_10008_3") }, @@ -690,16 +690,16 @@ export default { "DesertPavilionChronicle": { eng: "DesertPavilionChronicle", name2: "DesertPavilionChronicle", - nameLocale: 1058, + nameLocale: 1064, minStar: 4, maxStar: 5, - effect2: 1436, + effect2: 1443, - effect4: 1633, + effect4: 1641, @@ -711,31 +711,31 @@ export default { feather: { - text: 1810, + text: 1819, url: getIcon("UI_RelicIcon_15027_2") }, sand: { - text: 504, + text: 508, url: getIcon("UI_RelicIcon_15027_5") }, cup: { - text: 1597, + text: 1604, url: getIcon("UI_RelicIcon_15027_1") }, head: { - text: 1078, + text: 1084, url: getIcon("UI_RelicIcon_15027_3") }, config4: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":727,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":733,"type":"float"}, ], }, @@ -743,7 +743,7 @@ export default { "GildedDreams": { eng: "GildedDreams", name2: "GildedDreams", - nameLocale: 1777, + nameLocale: 1786, minStar: 4, maxStar: 5, @@ -752,47 +752,47 @@ export default { - effect4: 1512, + effect4: 1519, flower: { - text: 1024, + text: 1030, url: getIcon("UI_RelicIcon_15026_4") }, feather: { - text: 1480, + text: 1487, url: getIcon("UI_RelicIcon_15026_2") }, sand: { - text: 1056, + text: 1062, url: getIcon("UI_RelicIcon_15026_5") }, cup: { - text: 513, + text: 517, url: getIcon("UI_RelicIcon_15026_1") }, head: { - text: 1059, + text: 1065, url: getIcon("UI_RelicIcon_15026_3") }, config4: [ - {"default":0,"max":3,"min":0,"name":"same_count","title":369,"type":"int"}, + {"default":0,"max":3,"min":0,"name":"same_count","title":372,"type":"int"}, {"default":0,"max":3,"min":0,"name":"diff_count","title":89,"type":"int"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":727,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":733,"type":"float"}, ], }, @@ -800,46 +800,46 @@ export default { "gladiatorFinale": { eng: "gladiatorFinale", name2: "GladiatorsFinale", - nameLocale: 1499, + nameLocale: 1506, minStar: 4, maxStar: 5, - effect2: 704, + effect2: 710, - effect4: 1485, + effect4: 1492, flower: { - text: 1498, + text: 1505, url: getIcon("UI_RelicIcon_15001_4") }, feather: { - text: 1497, + text: 1504, url: getIcon("UI_RelicIcon_15001_2") }, sand: { - text: 1496, + text: 1503, url: getIcon("UI_RelicIcon_15001_5") }, cup: { - text: 1500, + text: 1507, url: getIcon("UI_RelicIcon_15001_1") }, head: { - text: 1495, + text: 1502, url: getIcon("UI_RelicIcon_15001_3") }, @@ -851,52 +851,52 @@ export default { "heartOfDepth": { eng: "heartOfDepth", name2: "HeartOfDepth", - nameLocale: 1054, + nameLocale: 1060, minStar: 4, maxStar: 5, - effect2: 1432, + effect2: 1439, - effect4: 750, + effect4: 756, flower: { - text: 1778, + text: 1787, url: getIcon("UI_RelicIcon_15016_4") }, feather: { - text: 1599, + text: 1606, url: getIcon("UI_RelicIcon_15016_2") }, sand: { - text: 435, + text: 438, url: getIcon("UI_RelicIcon_15016_5") }, cup: { - text: 1055, + text: 1061, url: getIcon("UI_RelicIcon_15016_1") }, head: { - text: 1610, + text: 1618, url: getIcon("UI_RelicIcon_15016_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":727,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":733,"type":"float"}, ], }, @@ -904,28 +904,28 @@ export default { "huskOfOpulentDreams": { eng: "huskOfOpulentDreams", name2: "HuskOfOpulentDreams", - nameLocale: 333, + nameLocale: 334, minStar: 4, maxStar: 5, - effect2: 1684, + effect2: 1693, - effect4: 1481, + effect4: 1488, flower: { - text: 1422, + text: 1429, url: getIcon("UI_RelicIcon_15021_4") }, feather: { - text: 332, + text: 333, url: getIcon("UI_RelicIcon_15021_2") }, @@ -937,13 +937,13 @@ export default { cup: { - text: 1026, + text: 1032, url: getIcon("UI_RelicIcon_15021_1") }, head: { - text: 610, + text: 616, url: getIcon("UI_RelicIcon_15021_3") }, @@ -957,52 +957,52 @@ export default { "instructor": { eng: "instructor", name2: "Instructor", - nameLocale: 732, + nameLocale: 738, minStar: 3, maxStar: 4, - effect2: 228, + effect2: 226, - effect4: 1513, + effect4: 1520, flower: { - text: 737, + text: 743, url: getIcon("UI_RelicIcon_10007_4") }, feather: { - text: 736, + text: 742, url: getIcon("UI_RelicIcon_10007_2") }, sand: { - text: 735, + text: 741, url: getIcon("UI_RelicIcon_10007_5") }, cup: { - text: 738, + text: 744, url: getIcon("UI_RelicIcon_10007_1") }, head: { - text: 734, + text: 740, url: getIcon("UI_RelicIcon_10007_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":727,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":733,"type":"float"}, ], }, @@ -1010,52 +1010,52 @@ export default { "lavaWalker": { eng: "lavaWalker", name2: "Lavawalker", - nameLocale: 1104, + nameLocale: 1111, minStar: 4, maxStar: 5, - effect2: 1125, + effect2: 1132, - effect4: 559, + effect4: 563, flower: { - text: 1099, + text: 1106, url: getIcon("UI_RelicIcon_14003_4") }, feather: { - text: 1102, + text: 1109, url: getIcon("UI_RelicIcon_14003_2") }, sand: { - text: 1101, + text: 1108, url: getIcon("UI_RelicIcon_14003_5") }, cup: { - text: 1103, + text: 1110, url: getIcon("UI_RelicIcon_14003_1") }, head: { - text: 1100, + text: 1107, url: getIcon("UI_RelicIcon_14003_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":729,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":735,"type":"float"}, ], }, @@ -1063,46 +1063,46 @@ export default { "luckyDog": { eng: "luckyDog", name2: "LuckyDog", - nameLocale: 590, + nameLocale: 595, minStar: 1, maxStar: 3, - effect2: 1683, + effect2: 1692, - effect4: 679, + effect4: 685, flower: { - text: 593, + text: 598, url: getIcon("UI_RelicIcon_10011_4") }, feather: { - text: 595, + text: 600, url: getIcon("UI_RelicIcon_10011_2") }, sand: { - text: 592, + text: 597, url: getIcon("UI_RelicIcon_10011_5") }, cup: { - text: 591, + text: 596, url: getIcon("UI_RelicIcon_10011_1") }, head: { - text: 594, + text: 599, url: getIcon("UI_RelicIcon_10011_3") }, @@ -1114,46 +1114,46 @@ export default { "maidenBeloved": { eng: "maidenBeloved", name2: "MaidenBeloved", - nameLocale: 1478, + nameLocale: 1485, minStar: 4, maxStar: 5, - effect2: 1506, + effect2: 1513, - effect4: 757, + effect4: 763, flower: { - text: 1583, + text: 1590, url: getIcon("UI_RelicIcon_14004_4") }, feather: { - text: 570, + text: 574, url: getIcon("UI_RelicIcon_14004_2") }, sand: { - text: 569, + text: 573, url: getIcon("UI_RelicIcon_14004_5") }, cup: { - text: 568, + text: 572, url: getIcon("UI_RelicIcon_14004_1") }, head: { - text: 567, + text: 571, url: getIcon("UI_RelicIcon_14004_3") }, @@ -1165,52 +1165,52 @@ export default { "martialArtist": { eng: "martialArtist", name2: "MartialArtist", - nameLocale: 1030, + nameLocale: 1036, minStar: 3, maxStar: 4, - effect2: 899, + effect2: 905, - effect4: 751, + effect4: 757, flower: { - text: 1033, + text: 1039, url: getIcon("UI_RelicIcon_10006_4") }, feather: { - text: 1034, + text: 1040, url: getIcon("UI_RelicIcon_10006_2") }, sand: { - text: 1032, + text: 1038, url: getIcon("UI_RelicIcon_10006_5") }, cup: { - text: 1035, + text: 1041, url: getIcon("UI_RelicIcon_10006_1") }, head: { - text: 1031, + text: 1037, url: getIcon("UI_RelicIcon_10006_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":727,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":733,"type":"float"}, ], }, @@ -1218,7 +1218,7 @@ export default { "noblesseOblige": { eng: "noblesseOblige", name2: "NoblesseOblige", - nameLocale: 790, + nameLocale: 796, minStar: 4, maxStar: 5, @@ -1227,43 +1227,43 @@ export default { - effect4: 766, + effect4: 772, flower: { - text: 538, + text: 542, url: getIcon("UI_RelicIcon_15007_4") }, feather: { - text: 537, + text: 541, url: getIcon("UI_RelicIcon_15007_2") }, sand: { - text: 540, + text: 544, url: getIcon("UI_RelicIcon_15007_5") }, cup: { - text: 543, + text: 547, url: getIcon("UI_RelicIcon_15007_1") }, head: { - text: 546, + text: 550, url: getIcon("UI_RelicIcon_15007_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":727,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":733,"type":"float"}, ], }, @@ -1271,46 +1271,46 @@ export default { "NymphsDream": { eng: "NymphsDream", name2: "NymphsDream", - nameLocale: 1043, + nameLocale: 1049, minStar: 4, maxStar: 5, - effect2: 1432, + effect2: 1439, - effect4: 890, + effect4: 896, flower: { - text: 774, + text: 780, url: getIcon("UI_RelicIcon_15029_4") }, feather: { - text: 434, + text: 437, url: getIcon("UI_RelicIcon_15029_2") }, sand: { - text: 1044, + text: 1050, url: getIcon("UI_RelicIcon_15029_5") }, cup: { - text: 314, + text: 315, url: getIcon("UI_RelicIcon_15029_1") }, head: { - text: 625, + text: 631, url: getIcon("UI_RelicIcon_15029_3") }, @@ -1322,7 +1322,7 @@ export default { {"default":1.0,"max":1.0,"min":0.0,"name":"w3","title":71,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":599,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":606,"type":"float"}, ], }, @@ -1330,46 +1330,46 @@ export default { "oceanHuedClam": { eng: "oceanHuedClam", name2: "OceanHuedClam", - nameLocale: 1091, + nameLocale: 1098, minStar: 4, maxStar: 5, - effect2: 1063, + effect2: 1069, - effect4: 1482, + effect4: 1489, flower: { - text: 1090, + text: 1097, url: getIcon("UI_RelicIcon_15022_4") }, feather: { - text: 1098, + text: 1105, url: getIcon("UI_RelicIcon_15022_2") }, sand: { - text: 1328, + text: 1335, url: getIcon("UI_RelicIcon_15022_5") }, cup: { - text: 1274, + text: 1281, url: getIcon("UI_RelicIcon_15022_1") }, head: { - text: 1093, + text: 1100, url: getIcon("UI_RelicIcon_15022_3") }, @@ -1381,12 +1381,12 @@ export default { "paleFlame": { eng: "paleFlame", name2: "PaleFlame", - nameLocale: 1408, + nameLocale: 1415, minStar: 4, maxStar: 5, - effect2: 1605, + effect2: 1613, @@ -1396,13 +1396,13 @@ export default { flower: { - text: 780, + text: 786, url: getIcon("UI_RelicIcon_15018_4") }, feather: { - text: 1535, + text: 1542, url: getIcon("UI_RelicIcon_15018_2") }, @@ -1414,21 +1414,21 @@ export default { cup: { - text: 1553, + text: 1560, url: getIcon("UI_RelicIcon_15018_1") }, head: { - text: 409, + text: 412, url: getIcon("UI_RelicIcon_15018_3") }, config4: [ - {"default":0.0,"max":2.0,"min":0.0,"name":"avg_level","title":721,"type":"float"}, + {"default":0.0,"max":2.0,"min":0.0,"name":"avg_level","title":727,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"full_rate","title":1117,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"full_rate","title":1124,"type":"float"}, ], }, @@ -1436,11 +1436,11 @@ export default { "prayersForDestiny": { eng: "prayersForDestiny", name2: "PrayersForDestiny", - nameLocale: 1317, + nameLocale: 1324, minStar: 3, maxStar: 4, - effect1: 352, + effect1: 355, @@ -1453,7 +1453,7 @@ export default { head: { - text: 1318, + text: 1325, url: getIcon("UI_RelicIcon_15010_3") }, @@ -1465,11 +1465,11 @@ export default { "prayersForIllumination": { eng: "prayersForIllumination", name2: "PrayersForIllumination", - nameLocale: 1319, + nameLocale: 1326, minStar: 3, maxStar: 4, - effect1: 353, + effect1: 356, @@ -1482,7 +1482,7 @@ export default { head: { - text: 1320, + text: 1327, url: getIcon("UI_RelicIcon_15009_3") }, @@ -1494,11 +1494,11 @@ export default { "prayersForWisdom": { eng: "prayersForWisdom", name2: "PrayersForWisdom", - nameLocale: 1325, + nameLocale: 1332, minStar: 3, maxStar: 4, - effect1: 354, + effect1: 357, @@ -1511,7 +1511,7 @@ export default { head: { - text: 1326, + text: 1333, url: getIcon("UI_RelicIcon_15011_3") }, @@ -1523,11 +1523,11 @@ export default { "prayersToSpringtime": { eng: "prayersToSpringtime", name2: "PrayersToSpringtime", - nameLocale: 1315, + nameLocale: 1322, minStar: 3, maxStar: 4, - effect1: 351, + effect1: 354, @@ -1540,7 +1540,7 @@ export default { head: { - text: 1316, + text: 1323, url: getIcon("UI_RelicIcon_15013_3") }, @@ -1552,46 +1552,46 @@ export default { "resolutionOfSojourner": { eng: "resolutionOfSojourner", name2: "ResolutionOfSojourner", - nameLocale: 1471, + nameLocale: 1478, minStar: 3, maxStar: 4, - effect2: 704, + effect2: 710, - effect4: 1636, + effect4: 1644, flower: { - text: 719, + text: 725, url: getIcon("UI_RelicIcon_10001_4") }, feather: { - text: 609, + text: 615, url: getIcon("UI_RelicIcon_10001_2") }, sand: { - text: 1602, + text: 1609, url: getIcon("UI_RelicIcon_10001_5") }, cup: { - text: 605, + text: 611, url: getIcon("UI_RelicIcon_10001_1") }, head: { - text: 630, + text: 636, url: getIcon("UI_RelicIcon_10001_3") }, @@ -1603,52 +1603,52 @@ export default { "retracingBolide": { eng: "retracingBolide", name2: "RetracingBolide", - nameLocale: 1601, + nameLocale: 1608, minStar: 4, maxStar: 5, - effect2: 675, + effect2: 681, - effect4: 452, + effect4: 455, flower: { - text: 456, + text: 460, url: getIcon("UI_RelicIcon_15015_4") }, feather: { - text: 459, + text: 463, url: getIcon("UI_RelicIcon_15015_2") }, sand: { - text: 455, + text: 459, url: getIcon("UI_RelicIcon_15015_5") }, cup: { - text: 458, + text: 462, url: getIcon("UI_RelicIcon_15015_1") }, head: { - text: 457, + text: 461, url: getIcon("UI_RelicIcon_15015_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":677,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":683,"type":"float"}, ], }, @@ -1656,7 +1656,7 @@ export default { "scholar": { eng: "scholar", name2: "Scholar", - nameLocale: 520, + nameLocale: 524, minStar: 3, maxStar: 4, @@ -1665,37 +1665,37 @@ export default { - effect4: 1443, + effect4: 1450, flower: { - text: 521, + text: 525, url: getIcon("UI_RelicIcon_10012_4") }, feather: { - text: 524, + text: 528, url: getIcon("UI_RelicIcon_10012_2") }, sand: { - text: 523, + text: 527, url: getIcon("UI_RelicIcon_10012_5") }, cup: { - text: 522, + text: 526, url: getIcon("UI_RelicIcon_10012_1") }, head: { - text: 525, + text: 529, url: getIcon("UI_RelicIcon_10012_3") }, @@ -1707,52 +1707,52 @@ export default { "shimenawaReminiscence": { eng: "shimenawaReminiscence", name2: "ShimenawasReminiscence", - nameLocale: 1598, + nameLocale: 1605, minStar: 4, maxStar: 5, - effect2: 704, + effect2: 710, - effect4: 758, + effect4: 764, flower: { - text: 1376, + text: 1383, url: getIcon("UI_RelicIcon_15019_4") }, feather: { - text: 620, + text: 626, url: getIcon("UI_RelicIcon_15019_2") }, sand: { - text: 992, + text: 998, url: getIcon("UI_RelicIcon_15019_5") }, cup: { - text: 1295, + text: 1302, url: getIcon("UI_RelicIcon_15019_1") }, head: { - text: 782, + text: 788, url: getIcon("UI_RelicIcon_15019_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":727,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":733,"type":"float"}, ], }, @@ -1760,12 +1760,12 @@ export default { "tenacityOfTheMillelith": { eng: "tenacityOfTheMillelith", name2: "TenacityOfTheMillelith", - nameLocale: 326, + nameLocale: 327, minStar: 4, maxStar: 5, - effect2: 1233, + effect2: 1240, @@ -1775,37 +1775,37 @@ export default { flower: { - text: 315, + text: 316, url: getIcon("UI_RelicIcon_15017_4") }, feather: { - text: 801, + text: 807, url: getIcon("UI_RelicIcon_15017_2") }, sand: { - text: 1643, + text: 1651, url: getIcon("UI_RelicIcon_15017_5") }, cup: { - text: 1273, + text: 1280, url: getIcon("UI_RelicIcon_15017_1") }, head: { - text: 566, + text: 570, url: getIcon("UI_RelicIcon_15017_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":727,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":733,"type":"float"}, ], }, @@ -1813,7 +1813,7 @@ export default { "exile": { eng: "exile", name2: "TheExile", - nameLocale: 1071, + nameLocale: 1077, minStar: 3, maxStar: 4, @@ -1822,37 +1822,37 @@ export default { - effect4: 765, + effect4: 771, flower: { - text: 1074, + text: 1080, url: getIcon("UI_RelicIcon_10009_4") }, feather: { - text: 1073, + text: 1079, url: getIcon("UI_RelicIcon_10009_2") }, sand: { - text: 1076, + text: 1082, url: getIcon("UI_RelicIcon_10009_5") }, cup: { - text: 1072, + text: 1078, url: getIcon("UI_RelicIcon_10009_1") }, head: { - text: 1075, + text: 1081, url: getIcon("UI_RelicIcon_10009_3") }, @@ -1864,46 +1864,46 @@ export default { "thunderingFury": { eng: "thunderingFury", name2: "ThunderingFury", - nameLocale: 514, + nameLocale: 518, minStar: 4, maxStar: 5, - effect2: 1435, + effect2: 1442, - effect4: 1554, + effect4: 1561, flower: { - text: 1732, + text: 1741, url: getIcon("UI_RelicIcon_15005_4") }, feather: { - text: 1722, + text: 1731, url: getIcon("UI_RelicIcon_15005_2") }, sand: { - text: 1731, + text: 1740, url: getIcon("UI_RelicIcon_15005_5") }, cup: { - text: 1704, + text: 1713, url: getIcon("UI_RelicIcon_15005_1") }, head: { - text: 405, + text: 408, url: getIcon("UI_RelicIcon_15005_3") }, @@ -1915,52 +1915,52 @@ export default { "thunderSmoother": { eng: "thunderSmoother", name2: "Thundersoother", - nameLocale: 584, + nameLocale: 589, minStar: 4, maxStar: 5, - effect2: 1714, + effect2: 1723, - effect4: 562, + effect4: 566, flower: { - text: 588, + text: 593, url: getIcon("UI_RelicIcon_14002_4") }, feather: { - text: 589, + text: 594, url: getIcon("UI_RelicIcon_14002_2") }, sand: { - text: 586, + text: 591, url: getIcon("UI_RelicIcon_14002_5") }, cup: { - text: 587, + text: 592, url: getIcon("UI_RelicIcon_14002_1") }, head: { - text: 585, + text: 590, url: getIcon("UI_RelicIcon_14002_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":731,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":737,"type":"float"}, ], }, @@ -1968,46 +1968,46 @@ export default { "tinyMiracle": { eng: "tinyMiracle", name2: "TinyMiracle", - nameLocale: 505, + nameLocale: 509, minStar: 3, maxStar: 4, - effect2: 638, + effect2: 644, - effect4: 350, + effect4: 351, flower: { - text: 509, + text: 513, url: getIcon("UI_RelicIcon_10004_4") }, feather: { - text: 508, + text: 512, url: getIcon("UI_RelicIcon_10004_2") }, sand: { - text: 507, + text: 511, url: getIcon("UI_RelicIcon_10004_5") }, cup: { - text: 506, + text: 510, url: getIcon("UI_RelicIcon_10004_1") }, head: { - text: 510, + text: 514, url: getIcon("UI_RelicIcon_10004_3") }, @@ -2019,46 +2019,46 @@ export default { "travelingDoctor": { eng: "travelingDoctor", name2: "TravelingDoctor", - nameLocale: 1111, + nameLocale: 1118, minStar: 1, maxStar: 3, - effect2: 1501, + effect2: 1508, - effect4: 769, + effect4: 775, flower: { - text: 1116, + text: 1123, url: getIcon("UI_RelicIcon_10013_4") }, feather: { - text: 1114, + text: 1121, url: getIcon("UI_RelicIcon_10013_2") }, sand: { - text: 1112, + text: 1119, url: getIcon("UI_RelicIcon_10013_5") }, cup: { - text: 1115, + text: 1122, url: getIcon("UI_RelicIcon_10013_1") }, head: { - text: 1113, + text: 1120, url: getIcon("UI_RelicIcon_10013_3") }, @@ -2070,46 +2070,46 @@ export default { "VermillionHereafter": { eng: "VermillionHereafter", name2: "VermillionHereafter", - nameLocale: 1580, + nameLocale: 1587, minStar: 4, maxStar: 5, - effect2: 704, + effect2: 710, - effect4: 763, + effect4: 769, flower: { - text: 1244, + text: 1251, url: getIcon("UI_RelicIcon_15023_4") }, feather: { - text: 1122, + text: 1129, url: getIcon("UI_RelicIcon_15023_2") }, sand: { - text: 1688, + text: 1697, url: getIcon("UI_RelicIcon_15023_5") }, cup: { - text: 1359, + text: 1366, url: getIcon("UI_RelicIcon_15023_1") }, head: { - text: 1462, + text: 1469, url: getIcon("UI_RelicIcon_15023_3") }, @@ -2117,7 +2117,7 @@ export default { {"default":0.0,"max":1.0,"min":0.0,"name":"rate_q","title":222,"type":"float"}, - {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":582,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":587,"type":"float"}, ], }, @@ -2125,46 +2125,46 @@ export default { "viridescentVenerer": { eng: "viridescentVenerer", name2: "ViridescentVenerer", - nameLocale: 1379, + nameLocale: 1386, minStar: 4, maxStar: 5, - effect2: 1436, + effect2: 1443, - effect4: 649, + effect4: 655, flower: { - text: 1642, + text: 1650, url: getIcon("UI_RelicIcon_15002_4") }, feather: { - text: 1179, + text: 1186, url: getIcon("UI_RelicIcon_15002_2") }, sand: { - text: 1382, + text: 1389, url: getIcon("UI_RelicIcon_15002_5") }, cup: { - text: 1381, + text: 1388, url: getIcon("UI_RelicIcon_15002_1") }, head: { - text: 1383, + text: 1390, url: getIcon("UI_RelicIcon_15002_3") }, @@ -2176,12 +2176,12 @@ export default { "VourukashasGlow": { eng: "VourukashasGlow", name2: "VourukashasGlow", - nameLocale: 1403, + nameLocale: 1410, minStar: 4, maxStar: 5, - effect2: 1234, + effect2: 1241, @@ -2191,13 +2191,13 @@ export default { flower: { - text: 1132, + text: 1139, url: getIcon("UI_RelicIcon_15030_4") }, feather: { - text: 1208, + text: 1215, url: getIcon("UI_RelicIcon_15030_2") }, @@ -2209,19 +2209,19 @@ export default { cup: { - text: 784, + text: 790, url: getIcon("UI_RelicIcon_15030_1") }, head: { - text: 1131, + text: 1138, url: getIcon("UI_RelicIcon_15030_3") }, config4: [ - {"default":4.0,"max":5.0,"min":0.0,"name":"stack","title":581,"type":"float"}, + {"default":4.0,"max":5.0,"min":0.0,"name":"stack","title":586,"type":"float"}, ], }, @@ -2229,16 +2229,16 @@ export default { "wandererTroupe": { eng: "wandererTroupe", name2: "WanderersTroupe", - nameLocale: 1080, + nameLocale: 1086, minStar: 4, maxStar: 5, - effect2: 228, + effect2: 226, - effect4: 1486, + effect4: 1493, @@ -2250,25 +2250,25 @@ export default { feather: { - text: 1214, + text: 1221, url: getIcon("UI_RelicIcon_15003_2") }, sand: { - text: 1355, + text: 1362, url: getIcon("UI_RelicIcon_15003_5") }, cup: { - text: 371, + text: 374, url: getIcon("UI_RelicIcon_15003_1") }, head: { - text: 688, + text: 694, url: getIcon("UI_RelicIcon_15003_3") }, diff --git a/src/assets/_gen_buff.js b/src/assets/_gen_buff.js index 7c558cbf..f8da5531 100644 --- a/src/assets/_gen_buff.js +++ b/src/assets/_gen_buff.js @@ -270,7 +270,7 @@ export default { "ATKPercentage": { name: "ATKPercentage", - nameLocale: 700, + nameLocale: 706, description: null, @@ -280,14 +280,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":739,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":745,"type":"floatPercentageInput"}, ], }, "DEFPercentage": { name: "DEFPercentage", - nameLocale: 1680, + nameLocale: 1689, description: null, @@ -297,14 +297,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":739,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":745,"type":"floatPercentageInput"}, ], }, "HPPercentage": { name: "HPPercentage", - nameLocale: 1224, + nameLocale: 1231, description: null, @@ -314,14 +314,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":739,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":745,"type":"floatPercentageInput"}, ], }, "ATKFixed": { name: "ATKFixed", - nameLocale: 699, + nameLocale: 705, description: null, @@ -331,14 +331,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"value","title":739,"type":"floatInput"}, + {"default":0.0,"name":"value","title":745,"type":"floatInput"}, ], }, "DEFFixed": { name: "DEFFixed", - nameLocale: 1679, + nameLocale: 1688, description: null, @@ -348,14 +348,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"value","title":739,"type":"floatInput"}, + {"default":0.0,"name":"value","title":745,"type":"floatInput"}, ], }, "HPFixed": { name: "HPFixed", - nameLocale: 1223, + nameLocale: 1230, description: null, @@ -365,14 +365,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"value","title":739,"type":"floatInput"}, + {"default":0.0,"name":"value","title":745,"type":"floatInput"}, ], }, "Critical": { name: "Critical", - nameLocale: 963, + nameLocale: 969, description: null, @@ -382,14 +382,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":739,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":745,"type":"floatPercentageInput"}, ], }, "CriticalDamage": { name: "CriticalDamage", - nameLocale: 959, + nameLocale: 965, description: null, @@ -399,7 +399,7 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":739,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":745,"type":"floatPercentageInput"}, ], }, @@ -416,7 +416,7 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":739,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":745,"type":"floatPercentageInput"}, ], }, @@ -433,7 +433,7 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"value","title":739,"type":"floatInput"}, + {"default":0.0,"name":"value","title":745,"type":"floatInput"}, ], }, @@ -450,14 +450,14 @@ export default { genre: "Common", config: [ - {"default":20.0,"name":"p","title":739,"type":"floatPercentageInput"}, + {"default":20.0,"name":"p","title":745,"type":"floatPercentageInput"}, ], }, "DEFMinus": { name: "DEFMinus", - nameLocale: 276, + nameLocale: 277, description: 0, @@ -467,14 +467,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":739,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":745,"type":"floatPercentageInput"}, ], }, "ResMinus": { name: "ResMinus", - nameLocale: 275, + nameLocale: 276, description: null, @@ -484,14 +484,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":739,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":745,"type":"floatPercentageInput"}, ], }, "HealingBonus": { name: "HealingBonus", - nameLocale: 1061, + nameLocale: 1067, description: null, @@ -501,16 +501,16 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":739,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":745,"type":"floatPercentageInput"}, ], }, "BaseDmg": { name: "BaseDmg", - nameLocale: 446, + nameLocale: 448, - description: 1562, + description: 1569, badge: BaseDmg_image, @@ -518,16 +518,16 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"value","title":739,"type":"floatInput"}, + {"default":0.0,"name":"value","title":745,"type":"floatInput"}, ], }, "AlbedoTalent2": { name: "AlbedoTalent2", - nameLocale: 1692, + nameLocale: 1701, - description: 1697, + description: 1706, badge: getImage("Albedo"), @@ -540,9 +540,9 @@ export default { "AlbedoC4": { name: "AlbedoC4", - nameLocale: 1693, + nameLocale: 1702, - description: 1695, + description: 1704, badge: getImage("Albedo"), @@ -555,9 +555,9 @@ export default { "AlbedoC6": { name: "AlbedoC6", - nameLocale: 1691, + nameLocale: 1700, - description: 1696, + description: 1705, badge: getImage("Albedo"), @@ -570,9 +570,9 @@ export default { "AloyTalent1": { name: "AloyTalent1", - nameLocale: 440, + nameLocale: 443, - description: 441, + description: 444, badge: getImage("Aloy"), @@ -585,9 +585,9 @@ export default { "AratakiIttoC4": { name: "AratakiIttoC4", - nameLocale: 1416, + nameLocale: 1423, - description: 1418, + description: 1425, badge: getImage("Itto"), @@ -600,9 +600,9 @@ export default { "BeidouC6": { name: "BeidouC6", - nameLocale: 318, + nameLocale: 319, - description: 320, + description: 321, badge: getImage("Beidou"), @@ -615,9 +615,9 @@ export default { "BennettQ": { name: "BennettQ", - nameLocale: 1199, + nameLocale: 1206, - description: 1202, + description: 1209, badge: getImage("Bennett"), @@ -625,20 +625,20 @@ export default { genre: "Character", config: [ - {"default":800.0,"name":"base_atk","title":1204,"type":"floatInput"}, + {"default":800.0,"name":"base_atk","title":1211,"type":"floatInput"}, - {"default":true,"name":"c1","title":802,"type":"bool"}, + {"default":true,"name":"c1","title":808,"type":"bool"}, - {"default":10,"max":15,"min":1,"name":"skill3","title":668,"type":"int"}, + {"default":10,"max":15,"min":1,"name":"skill3","title":674,"type":"int"}, ], }, "BennettC6": { name: "BennettC6", - nameLocale: 1198, + nameLocale: 1205, - description: 1203, + description: 1210, badge: getImage("Bennett"), @@ -651,9 +651,9 @@ export default { "ChongyunTalent2": { name: "ChongyunTalent2", - nameLocale: 1612, + nameLocale: 1620, - description: 1614, + description: 1622, badge: getImage("Chongyun"), @@ -666,9 +666,9 @@ export default { "DionaC6G50": { name: "DionaC6G50", - nameLocale: 1590, + nameLocale: 1597, - description: 1592, + description: 1599, badge: getImage("Diona"), @@ -691,16 +691,16 @@ export default { genre: "Character", config: [ - {"default":9,"max":15,"min":1,"name":"skill2","title":668,"type":"int"}, + {"default":9,"max":15,"min":1,"name":"skill2","title":674,"type":"int"}, ], }, "GanyuTalent2": { name: "GanyuTalent2", - nameLocale: 1218, + nameLocale: 1225, - description: 1222, + description: 1229, badge: getImage("Ganyu"), @@ -713,9 +713,9 @@ export default { "GanyuC1": { name: "GanyuC1", - nameLocale: 1219, + nameLocale: 1226, - description: 1221, + description: 1228, badge: getImage("Ganyu"), @@ -785,16 +785,16 @@ export default { genre: "Character", config: [ - {"default":1,"max":3,"min":1,"name":"level","title":1745,"type":"int"}, + {"default":1,"max":3,"min":1,"name":"level","title":1754,"type":"int"}, ], }, "HuTaoTalent1": { name: "HuTaoTalent1", - nameLocale: 1394, + nameLocale: 1401, - description: 1396, + description: 1403, badge: getImage("Hutao"), @@ -807,9 +807,9 @@ export default { "JeanC4": { name: "JeanC4", - nameLocale: 1211, + nameLocale: 1218, - description: 1213, + description: 1220, badge: getImage("Qin"), @@ -822,9 +822,9 @@ export default { "KaedeharaKazuhaTalent2": { name: "KaedeharaKazuhaTalent2", - nameLocale: 1008, + nameLocale: 1014, - description: 1012, + description: 1018, badge: getImage("Kazuha"), @@ -832,7 +832,7 @@ export default { genre: "Character", config: [ - {"default":"Electro","name":"element","title":647,"type":"element4"}, + {"default":"Electro","name":"element","title":653,"type":"element4"}, {"default":800.0,"name":"em","title":68,"type":"floatInput"}, @@ -841,9 +841,9 @@ export default { "KaedeharaKazuhaC2": { name: "KaedeharaKazuhaC2", - nameLocale: 1007, + nameLocale: 1013, - description: 1011, + description: 1017, badge: getImage("Kazuha"), @@ -856,9 +856,9 @@ export default { "KamisatoAyakaC4": { name: "KamisatoAyakaC4", - nameLocale: 1313, + nameLocale: 1320, - description: 1363, + description: 1370, badge: getImage("Ayaka"), @@ -871,9 +871,9 @@ export default { "KleeC2": { name: "KleeC2", - nameLocale: 363, + nameLocale: 366, - description: 365, + description: 368, badge: getImage("Klee"), @@ -886,9 +886,9 @@ export default { "KleeC6": { name: "KleeC6", - nameLocale: 362, + nameLocale: 365, - description: 366, + description: 369, badge: getImage("Klee"), @@ -913,7 +913,7 @@ export default { {"default":700.0,"name":"base_atk","title":109,"type":"floatInput"}, - {"default":false,"name":"c6","title":805,"type":"bool"}, + {"default":false,"name":"c6","title":811,"type":"bool"}, {"default":10,"max":15,"min":1,"name":"skill2","title":12,"type":"int"}, @@ -937,9 +937,9 @@ export default { "MonaQ": { name: "MonaQ", - nameLocale: 1424, + nameLocale: 1431, - description: 1427, + description: 1434, 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":804,"type":"bool"}, + {"default":false,"name":"c4","title":810,"type":"bool"}, ], }, "MonaC1": { name: "MonaC1", - nameLocale: 1425, + nameLocale: 1432, - description: 1428, + description: 1435, badge: getImage("Mona"), @@ -971,9 +971,9 @@ export default { "NingguangTalent2": { name: "NingguangTalent2", - nameLocale: 279, + nameLocale: 280, - description: 281, + description: 282, badge: getImage("Ningguang"), @@ -986,9 +986,9 @@ export default { "RaidenShogunE": { name: "RaidenShogunE", - nameLocale: 1726, + nameLocale: 1735, - description: 1729, + description: 1738, badge: getImage("Shougun"), @@ -996,18 +996,18 @@ export default { genre: "Character", config: [ - {"default":8,"max":15,"min":1,"name":"skill2","title":1728,"type":"int"}, + {"default":8,"max":15,"min":1,"name":"skill2","title":1737,"type":"int"}, - {"default":80,"max":100,"min":20,"name":"energy","title":347,"type":"int"}, + {"default":80,"max":100,"min":20,"name":"energy","title":348,"type":"int"}, ], }, "RaidenShogunC4": { name: "RaidenShogunC4", - nameLocale: 1725, + nameLocale: 1734, - description: 1730, + description: 1739, badge: getImage("Shougun"), @@ -1020,9 +1020,9 @@ export default { "RazorC4": { name: "RazorC4", - nameLocale: 1719, + nameLocale: 1728, - description: 1721, + description: 1730, badge: getImage("Razor"), @@ -1035,9 +1035,9 @@ export default { "RosariaTalent2": { name: "RosariaTalent2", - nameLocale: 1371, + nameLocale: 1378, - description: 1374, + description: 1381, badge: getImage("Rosaria"), @@ -1045,16 +1045,16 @@ export default { genre: "Character", config: [ - {"default":70.0,"name":"crit","title":1375,"type":"floatPercentageInput"}, + {"default":70.0,"name":"crit","title":1382,"type":"floatPercentageInput"}, ], }, "RosariaC6": { name: "RosariaC6", - nameLocale: 1370, + nameLocale: 1377, - description: 1373, + description: 1380, badge: getImage("Rosaria"), @@ -1067,9 +1067,9 @@ export default { "ShenheE": { name: "ShenheE", - nameLocale: 1248, + nameLocale: 1255, - description: 1254, + description: 1261, badge: getImage("Shenhe"), @@ -1077,18 +1077,18 @@ export default { genre: "Character", config: [ - {"default":3000.0,"name":"atk","title":1259,"type":"floatInput"}, + {"default":3000.0,"name":"atk","title":1266,"type":"floatInput"}, - {"default":8,"max":15,"min":1,"name":"skill2","title":1253,"type":"int"}, + {"default":8,"max":15,"min":1,"name":"skill2","title":1260,"type":"int"}, ], }, "ShenheQ": { name: "ShenheQ", - nameLocale: 1250, + nameLocale: 1257, - description: 1256, + description: 1263, badge: getImage("Shenhe"), @@ -1096,16 +1096,16 @@ export default { genre: "Character", config: [ - {"default":8,"max":15,"min":1,"name":"skill3","title":1255,"type":"int"}, + {"default":8,"max":15,"min":1,"name":"skill3","title":1262,"type":"int"}, ], }, "ShenheTalent1": { name: "ShenheTalent1", - nameLocale: 1249, + nameLocale: 1256, - description: 1257, + description: 1264, badge: getImage("Shenhe"), @@ -1113,16 +1113,16 @@ export default { genre: "Character", config: [ - {"default":false,"name":"c2","title":803,"type":"bool"}, + {"default":false,"name":"c2","title":809,"type":"bool"}, ], }, "ShenheTalent2": { name: "ShenheTalent2", - nameLocale: 1251, + nameLocale: 1258, - description: 1258, + description: 1265, badge: getImage("Shenhe"), @@ -1130,16 +1130,16 @@ export default { genre: "Character", config: [ - {"default":0,"name":"t","options":["点按","长按"],"title":669,"type":"option"}, + {"default":0,"name":"t","options":["点按","长按"],"title":675,"type":"option"}, ], }, "SucroseTalent1": { name: "SucroseTalent1", - nameLocale: 1281, + nameLocale: 1288, - description: 1284, + description: 1291, badge: getImage("Sucrose"), @@ -1152,9 +1152,9 @@ export default { "SucroseTalent2": { name: "SucroseTalent2", - nameLocale: 1279, + nameLocale: 1286, - description: 1285, + description: 1292, badge: getImage("Sucrose"), @@ -1162,16 +1162,16 @@ export default { genre: "Character", config: [ - {"default":200.0,"name":"em","title":1286,"type":"floatInput"}, + {"default":200.0,"name":"em","title":1293,"type":"floatInput"}, ], }, "SucroseC6": { name: "SucroseC6", - nameLocale: 1280, + nameLocale: 1287, - description: 1283, + description: 1290, badge: getImage("Sucrose"), @@ -1179,16 +1179,16 @@ export default { genre: "Character", config: [ - {"default":"Electro","name":"element","title":652,"type":"element4"}, + {"default":"Electro","name":"element","title":658,"type":"element4"}, ], }, "ThomaTalent1": { name: "ThomaTalent1", - nameLocale: 643, + nameLocale: 649, - description: 646, + description: 652, badge: getImage("Tohma"), @@ -1196,16 +1196,16 @@ export default { genre: "Character", config: [ - {"default":2.0,"max":5.0,"min":0.0,"name":"stack","title":356,"type":"float"}, + {"default":2.0,"max":5.0,"min":0.0,"name":"stack","title":359,"type":"float"}, ], }, "ThomaC6": { name: "ThomaC6", - nameLocale: 642, + nameLocale: 648, - description: 645, + description: 651, badge: getImage("Tohma"), @@ -1218,9 +1218,9 @@ export default { "VentiC2": { name: "VentiC2", - nameLocale: 1107, + nameLocale: 1114, - description: 1109, + description: 1116, badge: getImage("Venti"), @@ -1228,16 +1228,16 @@ export default { genre: "Character", config: [ - {"default":false,"name":"levitating","title":1452,"type":"bool"}, + {"default":false,"name":"levitating","title":1459,"type":"bool"}, ], }, "VentiC6": { name: "VentiC6", - nameLocale: 1106, + nameLocale: 1113, - description: 1110, + description: 1117, badge: getImage("Venti"), @@ -1245,18 +1245,18 @@ export default { genre: "Character", config: [ - {"default":true,"name":"is_convert","title":346,"type":"bool"}, + {"default":true,"name":"is_convert","title":347,"type":"bool"}, - {"default":"Electro","name":"element","title":1567,"type":"element4"}, + {"default":"Electro","name":"element","title":1574,"type":"element4"}, ], }, "XianglingTalent2": { name: "XianglingTalent2", - nameLocale: 1783, + nameLocale: 1792, - description: 1787, + description: 1796, badge: getImage("Xiangling"), @@ -1269,9 +1269,9 @@ export default { "XianglingC1": { name: "XianglingC1", - nameLocale: 1781, + nameLocale: 1790, - description: 1785, + description: 1794, badge: getImage("Xiangling"), @@ -1284,9 +1284,9 @@ export default { "XianglingC6": { name: "XianglingC6", - nameLocale: 1782, + nameLocale: 1791, - description: 1786, + description: 1795, badge: getImage("Xiangling"), @@ -1299,9 +1299,9 @@ export default { "XingqiuC2": { name: "XingqiuC2", - nameLocale: 1468, + nameLocale: 1475, - description: 1470, + description: 1477, badge: getImage("Xingqiu"), @@ -1314,9 +1314,9 @@ export default { "XinyanC4": { name: "XinyanC4", - nameLocale: 1573, + nameLocale: 1580, - description: 1577, + description: 1584, badge: getImage("Xinyan"), @@ -1329,9 +1329,9 @@ export default { "XinyanTalent2": { name: "XinyanTalent2", - nameLocale: 1574, + nameLocale: 1581, - description: 1578, + description: 1585, badge: getImage("Xinyan"), @@ -1359,9 +1359,9 @@ export default { "YoimiyaTalent2": { name: "YoimiyaTalent2", - nameLocale: 549, + nameLocale: 553, - description: 551, + description: 555, badge: getImage("Yoimiya"), @@ -1392,7 +1392,7 @@ export default { {"default":true,"name":"talent2","title":7,"type":"bool"}, - {"default":4,"max":4,"min":1,"name":"ele_count","title":1665,"type":"int"}, + {"default":4,"max":4,"min":1,"name":"ele_count","title":1673,"type":"int"}, ], }, @@ -1414,9 +1414,9 @@ export default { "ZhongliShield": { name: "ZhongliShield", - nameLocale: 1647, + nameLocale: 1655, - description: 1649, + description: 1657, badge: getImage("Zhongli"), @@ -1429,9 +1429,9 @@ export default { "YelanTalent2": { name: "YelanTalent2", - nameLocale: 464, + nameLocale: 468, - description: 468, + description: 472, badge: getImage("Yelan"), @@ -1439,16 +1439,16 @@ export default { genre: "Character", config: [ - {"default":14,"max":14,"min":0,"name":"secs","title":1358,"type":"int"}, + {"default":14,"max":14,"min":0,"name":"secs","title":1365,"type":"int"}, ], }, "YelanC4": { name: "YelanC4", - nameLocale: 465, + nameLocale: 469, - description: 467, + description: 471, badge: getImage("Yelan"), @@ -1456,16 +1456,16 @@ export default { genre: "Character", config: [ - {"default":4,"max":4,"min":1,"name":"count","title":1019,"type":"int"}, + {"default":4,"max":4,"min":1,"name":"count","title":1025,"type":"int"}, ], }, "KamisatoAyatoQ": { name: "KamisatoAyatoQ", - nameLocale: 1307, + nameLocale: 1314, - description: 1310, + description: 1317, badge: getImage("Ayato"), @@ -1473,16 +1473,16 @@ export default { genre: "Character", config: [ - {"default":8,"max":15,"min":1,"name":"skill_level","title":1309,"type":"int"}, + {"default":8,"max":15,"min":1,"name":"skill_level","title":1316,"type":"int"}, ], }, "ShikanoinHeizouTalent2": { name: "ShikanoinHeizouTalent2", - nameLocale: 1807, + nameLocale: 1816, - description: 1809, + description: 1818, badge: getImage("Heizo"), @@ -1495,9 +1495,9 @@ export default { "TighnariC4": { name: "TighnariC4", - nameLocale: 694, + nameLocale: 700, - description: 696, + description: 702, badge: getImage("Tighnari"), @@ -1505,16 +1505,16 @@ export default { genre: "Character", config: [ - {"default":false,"name":"after_reaction","title":1608,"type":"bool"}, + {"default":false,"name":"after_reaction","title":1615,"type":"bool"}, ], }, "DoriC4": { name: "DoriC4", - nameLocale: 461, + nameLocale: 465, - description: 462, + description: 466, badge: getImage("Dori"), @@ -1522,7 +1522,7 @@ export default { genre: "Character", config: [ - {"default":false,"name":"hp_below50","title":1229,"type":"bool"}, + {"default":false,"name":"hp_below50","title":1236,"type":"bool"}, {"default":true,"name":"energy_below50","title":231,"type":"bool"}, @@ -1531,9 +1531,9 @@ export default { "NilouTalent1": { name: "NilouTalent1", - nameLocale: 516, + nameLocale: 520, - description: 453, + description: 456, badge: getImage("Nilou"), @@ -1546,9 +1546,9 @@ export default { "NilouTalent2": { name: "NilouTalent2", - nameLocale: 517, + nameLocale: 521, - description: 443, + description: 446, badge: getImage("Nilou"), @@ -1556,16 +1556,16 @@ export default { genre: "Character", config: [ - {"default":60000.0,"name":"hp","title":519,"type":"floatInput"}, + {"default":60000.0,"name":"hp","title":523,"type":"floatInput"}, ], }, "CandaceQ": { name: "CandaceQ", - nameLocale: 432, + nameLocale: 435, - description: 1504, + description: 1511, badge: getImage("Candace"), @@ -1578,9 +1578,9 @@ export default { "CandaceTalent2": { name: "CandaceTalent2", - nameLocale: 431, + nameLocale: 434, - description: 451, + description: 454, badge: getImage("Candace"), @@ -1588,16 +1588,16 @@ export default { genre: "Character", config: [ - {"default":30000.0,"name":"hp","title":433,"type":"floatInput"}, + {"default":30000.0,"name":"hp","title":436,"type":"floatInput"}, ], }, "NahidaTalent1": { name: "NahidaTalent1", - nameLocale: 1351, + nameLocale: 1358, - description: 771, + description: 777, 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":1673,"type":"float"}, + {"default":1000.0,"max":3000.0,"min":0.0,"name":"max_em","title":1682,"type":"float"}, ], }, "FaruzanQ": { name: "FaruzanQ", - nameLocale: 1066, + nameLocale: 1072, - description: 1196, + description: 1203, badge: getImage("Faruzan"), @@ -1622,7 +1622,7 @@ export default { genre: "Character", config: [ - {"default":650,"max":1000,"min":0,"name":"base_atk","title":1067,"type":"int"}, + {"default":650,"max":1000,"min":0,"name":"base_atk","title":1073,"type":"int"}, {"default":10,"max":15,"min":1,"name":"q_level","title":18,"type":"int"}, @@ -1632,16 +1632,16 @@ export default { {"default":0.0,"max":1.0,"min":0.0,"name":"rate_talent2","title":20,"type":"float"}, - {"default":false,"name":"enable_c6","title":240,"type":"bool"}, + {"default":false,"name":"enable_c6","title":241,"type":"bool"}, ], }, "Mika": { name: "Mika", - nameLocale: 1343, + nameLocale: 1350, - description: 799, + description: 805, badge: getImage("Mika"), @@ -1651,16 +1651,16 @@ export default { {"default":3.0,"max":5.0,"min":0.0,"name":"stack_talent2","title":182,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate_c6","title":242,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate_c6","title":243,"type":"float"}, ], }, "KavehQ": { name: "KavehQ", - nameLocale: 338, + nameLocale: 339, - description: 1670, + description: 1679, badge: getImage("Kaveh"), @@ -1668,18 +1668,18 @@ export default { genre: "Character", config: [ - {"default":8,"max":15,"min":1,"name":"q_level","title":339,"type":"int"}, + {"default":8,"max":15,"min":1,"name":"q_level","title":340,"type":"int"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1041,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1047,"type":"float"}, ], }, "BaizhuTalent2": { name: "BaizhuTalent2", - nameLocale: 1263, + nameLocale: 1270, - description: 349, + description: 350, badge: getImage("Baizhuer"), @@ -1687,18 +1687,18 @@ export default { genre: "Character", config: [ - {"default":50000.0,"max":50000.0,"min":0.0,"name":"hp","title":1265,"type":"float"}, + {"default":50000.0,"max":50000.0,"min":0.0,"name":"hp","title":1272,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1041,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1047,"type":"float"}, ], }, "BaizhuC4": { name: "BaizhuC4", - nameLocale: 1264, + nameLocale: 1271, - description: 772, + description: 778, badge: getImage("Baizhuer"), @@ -1706,14 +1706,14 @@ export default { genre: "Character", config: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1041,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1047,"type":"float"}, ], }, "FreedomSworn": { name: "FreedomSworn", - nameLocale: 1407, + nameLocale: 1414, description: 22, @@ -1723,14 +1723,14 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1346,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1353,"type":"intInput"}, ], }, "SongOfBrokenPines": { name: "SongOfBrokenPines", - nameLocale: 1002, + nameLocale: 1008, description: 23, @@ -1740,16 +1740,16 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1346,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1353,"type":"intInput"}, ], }, "WolfsGravestone": { name: "WolfsGravestone", - nameLocale: 1173, + nameLocale: 1180, - description: 713, + description: 719, badge: getImageW("Claymore_Wolfmound"), @@ -1757,14 +1757,14 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1346,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1353,"type":"intInput"}, ], }, "ThrillingTalesOfDragonSlayers": { name: "ThrillingTalesOfDragonSlayers", - nameLocale: 1518, + nameLocale: 1525, description: 168, @@ -1774,16 +1774,16 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1346,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1353,"type":"intInput"}, ], }, "ElegyOfTheEnd": { name: "ElegyOfTheEnd", - nameLocale: 1357, + nameLocale: 1364, - description: 329, + description: 330, badge: getImageW("Bow_Widsith"), @@ -1791,16 +1791,16 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1346,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1353,"type":"intInput"}, ], }, "HakushinRing": { name: "HakushinRing", - nameLocale: 1270, + nameLocale: 1277, - description: 1028, + description: 1034, badge: getImageW("Catalyst_Bakufu"), @@ -1808,7 +1808,7 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1346,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1353,"type":"intInput"}, {"default":"Electro","name":"element","title":185,"type":"element8"}, @@ -1817,9 +1817,9 @@ export default { "SapwoodBlade": { name: "SapwoodBlade", - nameLocale: 344, + nameLocale: 345, - description: 680, + description: 686, badge: getImageW("Sword_Arakalari"), @@ -1827,18 +1827,18 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1346,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1353,"type":"intInput"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":601,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":604,"type":"float"}, ], }, "Moonpiercer": { name: "Moonpiercer", - nameLocale: 1538, + nameLocale: 1545, - description: 681, + description: 687, badge: getImageW("Pole_Arakalari"), @@ -1846,16 +1846,16 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1346,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1353,"type":"intInput"}, ], }, "XiphosMoonlight": { name: "XiphosMoonlight", - nameLocale: 1489, + nameLocale: 1496, - description: 1483, + description: 1490, badge: getImageW("Sword_Pleroma"), @@ -1863,7 +1863,7 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1346,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1353,"type":"intInput"}, {"default":900.0,"name":"em","title":224,"type":"floatInput"}, @@ -1872,7 +1872,7 @@ export default { "MakhairaAquamarine": { name: "MakhairaAquamarine", - nameLocale: 1191, + nameLocale: 1198, description: 31, @@ -1882,7 +1882,7 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1346,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1353,"type":"intInput"}, {"default":900.0,"name":"em","title":224,"type":"floatInput"}, @@ -1891,9 +1891,9 @@ export default { "KeyOfKhajNisut": { name: "KeyOfKhajNisut", - nameLocale: 427, + nameLocale: 430, - description: 565, + description: 569, badge: getImageW("Sword_Deshret"), @@ -1901,9 +1901,9 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1346,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1353,"type":"intInput"}, - {"default":20000.0,"name":"hp","title":1223,"type":"floatInput"}, + {"default":20000.0,"name":"hp","title":1230,"type":"floatInput"}, ], }, @@ -1912,7 +1912,7 @@ export default { name: "ResonancePyro2", nameLocale: 193, - description: 703, + description: 709, badge: ResonancePyro2_image, @@ -1927,7 +1927,7 @@ export default { name: "ResonanceCryo2", nameLocale: 194, - description: 698, + description: 704, badge: ResonanceCryo2_image, @@ -1935,7 +1935,7 @@ export default { genre: "Resonance", config: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":601,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":604,"type":"float"}, ], }, @@ -1944,7 +1944,7 @@ export default { name: "ResonanceGeo2", nameLocale: 191, - description: 673, + description: 679, badge: ResonanceGeo2_image, @@ -1952,9 +1952,9 @@ export default { genre: "Resonance", config: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate1","title":724,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate1","title":730,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate2","title":725,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate2","title":732,"type":"float"}, ], }, @@ -1963,7 +1963,7 @@ export default { name: "ResonanceHydro2", nameLocale: 192, - description: 1127, + description: 1134, badge: ResonanceHydro2_image, @@ -1986,18 +1986,18 @@ export default { genre: "Resonance", config: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate1","title":724,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate1","title":730,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate2","title":725,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate2","title":732,"type":"float"}, ], }, "Instructor4": { name: "Instructor4", - nameLocale: 733, + nameLocale: 739, - description: 1509, + description: 1516, badge: getImageA("UI_RelicIcon_10007_4"), @@ -2010,9 +2010,9 @@ export default { "NoblesseOblige4": { name: "NoblesseOblige4", - nameLocale: 791, + nameLocale: 797, - description: 767, + description: 773, badge: getImageA("UI_RelicIcon_15007_4"), @@ -2025,9 +2025,9 @@ export default { "ArchaicPetra4": { name: "ArchaicPetra4", - nameLocale: 627, + nameLocale: 633, - description: 1445, + description: 1452, badge: getImageA("UI_RelicIcon_15014_4"), @@ -2035,16 +2035,16 @@ export default { genre: "Artifact", config: [ - {"default":"Electro","name":"element","title":1360,"type":"element4"}, + {"default":"Electro","name":"element","title":1367,"type":"element4"}, ], }, "ViridescentVenerer4": { name: "ViridescentVenerer4", - nameLocale: 1380, + nameLocale: 1387, - description: 1020, + description: 1026, badge: getImageA("UI_RelicIcon_15002_4"), @@ -2052,14 +2052,14 @@ export default { genre: "Artifact", config: [ - {"default":"Electro","name":"element","title":647,"type":"element4"}, + {"default":"Electro","name":"element","title":653,"type":"element4"}, ], }, "TenacityOfTheMillelith4": { name: "TenacityOfTheMillelith4", - nameLocale: 327, + nameLocale: 328, description: 201, @@ -2074,7 +2074,7 @@ export default { "DeepwoodMemories4": { name: "DeepwoodMemories4", - nameLocale: 1096, + nameLocale: 1103, description: 208, @@ -2084,7 +2084,7 @@ export default { genre: "Artifact", config: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":601,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":604,"type":"float"}, ], }, diff --git a/src/assets/_gen_character.js b/src/assets/_gen_character.js index 4ab1e2f0..eb0139c5 100644 --- a/src/assets/_gen_character.js +++ b/src/assets/_gen_character.js @@ -294,7 +294,7 @@ export default { AetherAnemo: { name: "AetherAnemo", - nameLocale: 1332, + nameLocale: 1339, element: "Anemo", weapon: "Sword", star: 5, @@ -302,9 +302,9 @@ export default { // avatar: AetherAnemo_avatar, avatar: getName("PlayerBoy"), splash: AetherAnemo_splash, - skillName1: 831, - skillName2: 1753, - skillName3: 1752, + skillName1: 837, + skillName2: 1762, + skillName3: 1761, skillMap1: [ { index: 0, text: 50 }, @@ -313,43 +313,43 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 413 }, + { index: 3, text: 415 }, { index: 4, text: 140 }, - { index: 5, text: 1624 }, + { index: 5, text: 1632 }, - { index: 6, text: 1627 }, + { index: 6, text: 1634 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1790 }, + { index: 9, text: 1799 }, ], skillMap2: [ - { index: 10, text: 297 }, + { index: 10, text: 298 }, - { index: 11, text: 976 }, + { index: 11, text: 982 }, - { index: 12, text: 298 }, + { index: 12, text: 299 }, - { index: 13, text: 983 }, + { index: 13, text: 989 }, ], skillMap3: [ - { index: 14, text: 1820 }, + { index: 14, text: 1829 }, - { index: 15, text: 1700 }, + { index: 15, text: 1709 }, - { index: 18, text: 1699 }, + { index: 18, text: 1708 }, - { index: 17, text: 1701 }, + { index: 17, text: 1710 }, - { index: 16, text: 1698 }, + { index: 16, text: 1707 }, ], config: [ @@ -362,7 +362,7 @@ export default { Albedo: { name: "Albedo", - nameLocale: 1690, + nameLocale: 1699, element: "Geo", weapon: "Sword", star: 5, @@ -370,9 +370,9 @@ export default { // avatar: Albedo_avatar, avatar: getName("Albedo"), splash: Albedo_splash, - skillName1: 875, - skillName2: 296, - skillName3: 1527, + skillName1: 881, + skillName2: 297, + skillName3: 1534, skillMap1: [ { index: 0, text: 50 }, @@ -381,33 +381,33 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 413 }, + { index: 3, text: 415 }, { index: 4, text: 140 }, - { index: 5, text: 1621 }, + { index: 5, text: 1631 }, - { index: 6, text: 1626 }, + { index: 6, text: 1635 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1790 }, + { index: 9, text: 1799 }, ], skillMap2: [ - { index: 10, text: 655 }, + { index: 10, text: 661 }, - { index: 11, text: 300 }, + { index: 11, text: 301 }, ], skillMap3: [ - { index: 12, text: 1160 }, + { index: 12, text: 1167 }, - { index: 13, text: 1243 }, + { index: 13, text: 1250 }, ], config: [ @@ -420,7 +420,7 @@ export default { Alhaitham: { name: "Alhaitham", - nameLocale: 1399, + nameLocale: 1406, element: "Dendro", weapon: "Sword", star: 5, @@ -428,9 +428,9 @@ export default { // avatar: Alhaitham_avatar, avatar: getName("Alhatham"), splash: Alhaitham_splash, - skillName1: 850, - skillName2: 248, - skillName3: 1036, + skillName1: 856, + skillName2: 249, + skillName3: 1042, skillMap1: [ { index: 0, text: 50 }, @@ -441,24 +441,24 @@ export default { { index: 3, text: 74 }, - { index: 4, text: 413 }, + { index: 4, text: 415 }, { index: 5, text: 140 }, - { index: 6, text: 1621 }, + { index: 6, text: 1631 }, - { index: 7, text: 1626 }, + { index: 7, text: 1635 }, { index: 8, text: 83 }, { index: 9, text: 171 }, - { index: 10, text: 1790 }, + { index: 10, text: 1799 }, ], skillMap2: [ - { index: 11, text: 1333 }, + { index: 11, text: 1340 }, { index: 12, text: 2 }, @@ -469,28 +469,28 @@ export default { ], skillMap3: [ - { index: 15, text: 336 }, + { index: 15, text: 337 }, ], config: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"c2_stack","title":396,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"c2_stack","title":399,"type":"float"}, - {"default":0.0,"max":3.0,"min":0.0,"name":"c4_stack","title":398,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"c4_stack","title":401,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"c6_rate","title":402,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"c6_rate","title":405,"type":"float"}, ], configSkill: [ - {"default":true,"name":"under_e","title":1207,"type":"bool"}, + {"default":true,"name":"under_e","title":1214,"type":"bool"}, ], }, Aloy: { name: "Aloy", - nameLocale: 438, + nameLocale: 441, element: "Cryo", weapon: "Bow", star: 5, @@ -498,9 +498,9 @@ export default { // avatar: Aloy_avatar, avatar: getName("Aloy"), splash: Aloy_splash, - skillName1: 837, - skillName2: 262, - skillName3: 970, + skillName1: 843, + skillName2: 263, + skillName3: 976, skillMap1: [ { index: 0, text: 51 }, @@ -511,29 +511,29 @@ export default { { index: 3, text: 72 }, - { index: 4, text: 413 }, + { index: 4, text: 415 }, - { index: 5, text: 1277 }, + { index: 5, text: 1284 }, - { index: 6, text: 1120 }, + { index: 6, text: 1127 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1790 }, + { index: 9, text: 1799 }, ], skillMap2: [ - { index: 10, text: 261 }, + { index: 10, text: 262 }, - { index: 11, text: 272 }, + { index: 11, text: 273 }, ], skillMap3: [ - { index: 12, text: 655 }, + { index: 12, text: 661 }, ], config: [ @@ -541,14 +541,14 @@ export default { ], configSkill: [ - {"default":4,"max":4,"min":0,"name":"coil_count","title":1353,"type":"int"}, + {"default":4,"max":4,"min":0,"name":"coil_count","title":1360,"type":"int"}, ], }, Amber: { name: "Amber", - nameLocale: 534, + nameLocale: 538, element: "Pyro", weapon: "Bow", star: 4, @@ -556,9 +556,9 @@ export default { // avatar: Amber_avatar, avatar: getName("Ambor"), splash: Amber_splash, - skillName1: 863, - skillName2: 1161, - skillName3: 1339, + skillName1: 869, + skillName2: 1168, + skillName3: 1346, skillMap1: [ { index: 0, text: 50 }, @@ -567,31 +567,31 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 413 }, + { index: 3, text: 415 }, { index: 4, text: 140 }, - { index: 5, text: 1277 }, + { index: 5, text: 1284 }, - { index: 6, text: 1120 }, + { index: 6, text: 1127 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1790 }, + { index: 9, text: 1799 }, ], skillMap2: [ - { index: 10, text: 1163 }, + { index: 10, text: 1169 }, ], skillMap3: [ - { index: 11, text: 1340 }, + { index: 11, text: 1347 }, - { index: 12, text: 1341 }, + { index: 12, text: 1348 }, ], config: [ @@ -604,7 +604,7 @@ export default { AratakiItto: { name: "AratakiItto", - nameLocale: 1415, + nameLocale: 1422, element: "Geo", weapon: "Claymore", star: 5, @@ -612,9 +612,9 @@ export default { // avatar: AratakiItto_avatar, avatar: getName("Itto"), splash: AratakiItto_splash, - skillName1: 885, - skillName2: 1800, - skillName3: 988, + skillName1: 891, + skillName2: 1809, + skillName3: 994, skillMap1: [ { index: 0, text: 50 }, @@ -623,24 +623,24 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 413 }, + { index: 3, text: 415 }, - { index: 4, text: 1421 }, + { index: 4, text: 1428 }, - { index: 5, text: 1420 }, + { index: 5, text: 1427 }, - { index: 6, text: 580 }, + { index: 6, text: 585 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1790 }, + { index: 9, text: 1799 }, ], skillMap2: [ - { index: 10, text: 655 }, + { index: 10, text: 661 }, ], skillMap3: [ @@ -651,14 +651,14 @@ export default { ], configSkill: [ - {"default":true,"name":"after_q","title":448,"type":"bool"}, + {"default":true,"name":"after_q","title":451,"type":"bool"}, ], }, Baizhu: { name: "Baizhu", - nameLocale: 1262, + nameLocale: 1269, element: "Dendro", weapon: "Catalyst", star: 5, @@ -666,9 +666,9 @@ export default { // avatar: Baizhu_avatar, avatar: getName("Baizhuer"), splash: Baizhu_splash, - skillName1: 881, - skillName2: 503, - skillName3: 629, + skillName1: 887, + skillName2: 507, + skillName3: 635, skillMap1: [ { index: 0, text: 50 }, @@ -679,34 +679,34 @@ export default { { index: 3, text: 74 }, - { index: 4, text: 413 }, + { index: 4, text: 415 }, - { index: 5, text: 1620 }, + { index: 5, text: 1628 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1790 }, + { index: 8, text: 1799 }, ], skillMap2: [ - { index: 9, text: 655 }, + { index: 9, text: 661 }, - { index: 10, text: 1064 }, + { index: 10, text: 1071 }, ], skillMap3: [ - { index: 12, text: 1136 }, + { index: 12, text: 1143 }, - { index: 11, text: 785 }, + { index: 11, text: 791 }, ], config: [ - {"default":false,"name":"hp_below_50","title":429,"type":"bool"}, + {"default":false,"name":"hp_below_50","title":432,"type":"bool"}, ], configSkill: [ @@ -716,7 +716,7 @@ export default { Barbara: { name: "Barbara", - nameLocale: 1401, + nameLocale: 1408, element: "Hydro", weapon: "Catalyst", star: 4, @@ -724,9 +724,9 @@ export default { // avatar: Barbara_avatar, avatar: getName("Barbara"), splash: Barbara_splash, - skillName1: 845, - skillName2: 1121, - skillName3: 1661, + skillName1: 851, + skillName2: 1128, + skillName3: 1669, skillMap1: [ { index: 0, text: 50 }, @@ -735,29 +735,29 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 413 }, + { index: 3, text: 415 }, - { index: 4, text: 1620 }, + { index: 4, text: 1628 }, { index: 5, text: 83 }, { index: 6, text: 171 }, - { index: 7, text: 1790 }, + { index: 7, text: 1799 }, ], skillMap2: [ - { index: 8, text: 392 }, + { index: 8, text: 393 }, - { index: 10, text: 686 }, + { index: 10, text: 691 }, - { index: 9, text: 1050 }, + { index: 9, text: 1056 }, ], skillMap3: [ - { index: 11, text: 1065 }, + { index: 11, text: 1070 }, ], config: [ @@ -770,7 +770,7 @@ export default { Beidou: { name: "Beidou", - nameLocale: 317, + nameLocale: 318, element: "Electro", weapon: "Claymore", star: 4, @@ -778,9 +778,9 @@ export default { // avatar: Beidou_avatar, avatar: getName("Beidou"), splash: Beidou_splash, - skillName1: 834, - skillName2: 691, - skillName3: 742, + skillName1: 840, + skillName2: 697, + skillName3: 748, skillMap1: [ { index: 0, text: 50 }, @@ -789,24 +789,24 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 413 }, + { index: 3, text: 415 }, { index: 4, text: 140 }, - { index: 5, text: 1634 }, + { index: 5, text: 1642 }, - { index: 6, text: 1637 }, + { index: 6, text: 1645 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1790 }, + { index: 9, text: 1799 }, ], skillMap2: [ - { index: 10, text: 446 }, + { index: 10, text: 448 }, { index: 11, text: 47 }, @@ -815,9 +815,9 @@ export default { ], skillMap3: [ - { index: 13, text: 655 }, + { index: 13, text: 661 }, - { index: 14, text: 1660 }, + { index: 14, text: 1668 }, ], config: [ @@ -830,7 +830,7 @@ export default { Bennett: { name: "Bennett", - nameLocale: 1197, + nameLocale: 1204, element: "Pyro", weapon: "Sword", star: 4, @@ -838,9 +838,9 @@ export default { // avatar: Bennett_avatar, avatar: getName("Bennett"), splash: Bennett_splash, - skillName1: 828, - skillName2: 1151, - skillName3: 1377, + skillName1: 834, + skillName2: 1158, + skillName3: 1384, skillMap1: [ { index: 0, text: 50 }, @@ -849,24 +849,24 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 413 }, + { index: 3, text: 415 }, { index: 4, text: 140 }, - { index: 5, text: 1621 }, + { index: 5, text: 1631 }, - { index: 6, text: 1626 }, + { index: 6, text: 1635 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1790 }, + { index: 9, text: 1799 }, ], skillMap2: [ - { index: 10, text: 1140 }, + { index: 10, text: 1147 }, { index: 11, text: 58 }, @@ -876,14 +876,14 @@ export default { { index: 14, text: 129 }, - { index: 15, text: 1162 }, + { index: 15, text: 1170 }, ], skillMap3: [ - { index: 16, text: 655 }, + { index: 16, text: 661 }, - { index: 17, text: 684 }, + { index: 17, text: 690 }, ], config: [ @@ -896,7 +896,7 @@ export default { Candace: { name: "Candace", - nameLocale: 430, + nameLocale: 433, element: "Hydro", weapon: "Polearm", star: 4, @@ -904,9 +904,9 @@ export default { // avatar: Candace_avatar, avatar: getName("Candace"), splash: Candace_splash, - skillName1: 848, - skillName2: 425, - skillName3: 423, + skillName1: 854, + skillName2: 428, + skillName3: 426, skillMap1: [ { index: 0, text: 50 }, @@ -917,46 +917,46 @@ export default { { index: 3, text: 74 }, - { index: 4, text: 413 }, + { index: 4, text: 415 }, - { index: 5, text: 1620 }, + { index: 5, text: 1628 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1790 }, + { index: 8, text: 1799 }, ], skillMap2: [ - { index: 9, text: 445 }, + { index: 9, text: 449 }, - { index: 10, text: 1457 }, + { index: 10, text: 1464 }, ], skillMap3: [ - { index: 11, text: 655 }, + { index: 11, text: 661 }, - { index: 12, text: 1049 }, + { index: 12, text: 1055 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"c2_rate","title":395,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"c2_rate","title":398,"type":"float"}, ], configSkill: [ - {"default":true,"name":"crown","title":1548,"type":"bool"}, + {"default":true,"name":"crown","title":1555,"type":"bool"}, ], }, Chongyun: { name: "Chongyun", - nameLocale: 1611, + nameLocale: 1619, element: "Cryo", weapon: "Claymore", star: 4, @@ -964,9 +964,9 @@ export default { // avatar: Chongyun_avatar, avatar: getName("Chongyun"), splash: Chongyun_splash, - skillName1: 853, - skillName2: 1134, - skillName3: 1133, + skillName1: 859, + skillName2: 1141, + skillName3: 1140, skillMap1: [ { index: 0, text: 50 }, @@ -975,27 +975,27 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 413 }, + { index: 3, text: 415 }, - { index: 4, text: 1634 }, + { index: 4, text: 1642 }, - { index: 5, text: 1637 }, + { index: 5, text: 1645 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1790 }, + { index: 8, text: 1799 }, ], skillMap2: [ - { index: 9, text: 655 }, + { index: 9, text: 661 }, ], skillMap3: [ - { index: 10, text: 655 }, + { index: 10, text: 661 }, ], config: [ @@ -1008,7 +1008,7 @@ export default { Collei: { name: "Collei", - nameLocale: 1018, + nameLocale: 1024, element: "Dendro", weapon: "Bow", star: 4, @@ -1016,9 +1016,9 @@ export default { // avatar: Collei_avatar, avatar: getName("Collei"), splash: Collei_splash, - skillName1: 861, - skillName2: 678, - skillName3: 1184, + skillName1: 867, + skillName2: 684, + skillName3: 1191, skillMap1: [ { index: 0, text: 50 }, @@ -1027,34 +1027,34 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 413 }, + { index: 3, text: 415 }, - { index: 4, text: 1277 }, + { index: 4, text: 1284 }, - { index: 5, text: 1120 }, + { index: 5, text: 1127 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1790 }, + { index: 8, text: 1799 }, ], skillMap2: [ - { index: 9, text: 655 }, + { index: 9, text: 661 }, ], skillMap3: [ - { index: 10, text: 1159 }, + { index: 10, text: 1166 }, - { index: 11, text: 1561 }, + { index: 11, text: 1568 }, ], config: [ - {"default":false,"name":"background","title":450,"type":"bool"}, + {"default":false,"name":"background","title":453,"type":"bool"}, ], configSkill: [ @@ -1064,7 +1064,7 @@ export default { Cyno: { name: "Cyno", - nameLocale: 1546, + nameLocale: 1553, element: "Electro", weapon: "Polearm", star: 5, @@ -1072,53 +1072,53 @@ export default { // avatar: Cyno_avatar, avatar: getName("Cyno"), splash: Cyno_splash, - skillName1: 819, - skillName2: 1329, - skillName3: 424, + skillName1: 825, + skillName2: 1336, + skillName3: 427, skillMap1: [ { index: 0, text: 50 }, { index: 1, text: 121 }, - { index: 2, text: 75 }, + { index: 2, text: 76 }, - { index: 3, text: 413 }, + { index: 3, text: 415 }, - { index: 4, text: 1620 }, + { index: 4, text: 1628 }, { index: 5, text: 83 }, { index: 6, text: 171 }, - { index: 7, text: 1790 }, + { index: 7, text: 1799 }, - { index: 11, text: 374 }, + { index: 11, text: 377 }, - { index: 12, text: 377 }, + { index: 12, text: 380 }, - { index: 13, text: 375 }, + { index: 13, text: 378 }, - { index: 14, text: 381 }, + { index: 14, text: 384 }, - { index: 15, text: 378 }, + { index: 15, text: 381 }, - { index: 16, text: 383 }, + { index: 16, text: 386 }, - { index: 17, text: 376 }, + { index: 17, text: 379 }, - { index: 18, text: 379 }, + { index: 18, text: 382 }, - { index: 19, text: 384 }, + { index: 19, text: 387 }, ], skillMap2: [ - { index: 8, text: 655 }, + { index: 8, text: 661 }, - { index: 9, text: 380 }, + { index: 9, text: 383 }, - { index: 10, text: 382 }, + { index: 10, text: 385 }, ], skillMap3: [ @@ -1126,21 +1126,21 @@ export default { ], config: [ - {"default":4.0,"max":5.0,"min":0.0,"name":"c2_stack","title":393,"type":"float"}, + {"default":4.0,"max":5.0,"min":0.0,"name":"c2_stack","title":396,"type":"float"}, - {"default":true,"name":"after_q","title":373,"type":"bool"}, + {"default":true,"name":"after_q","title":376,"type":"bool"}, ], configSkill: [ - {"default":true,"name":"under_judication","title":1507,"type":"bool"}, + {"default":true,"name":"under_judication","title":1514,"type":"bool"}, ], }, Dehya: { name: "Dehya", - nameLocale: 1593, + nameLocale: 1600, element: "Pyro", weapon: "Claymore", star: 5, @@ -1148,9 +1148,9 @@ export default { // avatar: Dehya_avatar, avatar: getName("Dehya"), splash: Dehya_splash, - skillName1: 840, - skillName2: 1157, - skillName3: 1138, + skillName1: 846, + skillName2: 1164, + skillName3: 1145, skillMap1: [ { index: 0, text: 50 }, @@ -1159,33 +1159,33 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 413 }, + { index: 3, text: 415 }, - { index: 4, text: 1634 }, + { index: 4, text: 1642 }, - { index: 5, text: 1637 }, + { index: 5, text: 1645 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1790 }, + { index: 8, text: 1799 }, ], skillMap2: [ - { index: 9, text: 274 }, + { index: 9, text: 275 }, - { index: 10, text: 303 }, + { index: 10, text: 304 }, - { index: 11, text: 1742 }, + { index: 11, text: 1751 }, ], skillMap3: [ - { index: 12, text: 1146 }, + { index: 12, text: 1153 }, - { index: 13, text: 1152 }, + { index: 13, text: 1159 }, ], config: [ @@ -1195,14 +1195,14 @@ export default { {"default":0.0,"max":1.0,"min":0.0,"name":"c2_rate","title":117,"type":"float"}, - {"default":3.5,"max":4.0,"min":0.0,"name":"c6_stack","title":243,"type":"float"}, + {"default":3.5,"max":4.0,"min":0.0,"name":"c6_stack","title":244,"type":"float"}, ], }, Diluc: { name: "Diluc", - nameLocale: 1587, + nameLocale: 1594, element: "Pyro", weapon: "Claymore", star: 5, @@ -1210,9 +1210,9 @@ export default { // avatar: Diluc_avatar, avatar: getName("Diluc"), splash: Diluc_splash, - skillName1: 849, - skillName2: 1600, - skillName3: 1811, + skillName1: 855, + skillName2: 1607, + skillName3: 1820, skillMap1: [ { index: 0, text: 50 }, @@ -1221,17 +1221,17 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 413 }, + { index: 3, text: 415 }, - { index: 4, text: 1634 }, + { index: 4, text: 1642 }, - { index: 5, text: 1637 }, + { index: 5, text: 1645 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1790 }, + { index: 8, text: 1799 }, ], skillMap2: [ @@ -1245,11 +1245,11 @@ export default { ], skillMap3: [ - { index: 12, text: 740 }, + { index: 12, text: 746 }, - { index: 13, text: 682 }, + { index: 13, text: 688 }, - { index: 14, text: 1164 }, + { index: 14, text: 1171 }, ], config: [ @@ -1257,14 +1257,14 @@ export default { ], configSkill: [ - {"default":true,"name":"pyro","title":806,"type":"bool"}, + {"default":true,"name":"pyro","title":812,"type":"bool"}, ], }, Diona: { name: "Diona", - nameLocale: 1589, + nameLocale: 1596, element: "Cryo", weapon: "Bow", star: 4, @@ -1272,9 +1272,9 @@ export default { // avatar: Diona_avatar, avatar: getName("Diona"), splash: Diona_splash, - skillName1: 858, - skillName2: 1183, - skillName3: 989, + skillName1: 864, + skillName2: 1190, + skillName3: 995, skillMap1: [ { index: 0, text: 50 }, @@ -1283,33 +1283,33 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 413 }, + { index: 3, text: 415 }, { index: 4, text: 140 }, - { index: 5, text: 1277 }, + { index: 5, text: 1284 }, - { index: 6, text: 1120 }, + { index: 6, text: 1127 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1790 }, + { index: 9, text: 1799 }, ], skillMap2: [ - { index: 10, text: 1182 }, + { index: 10, text: 1189 }, ], skillMap3: [ - { index: 11, text: 655 }, + { index: 11, text: 661 }, - { index: 12, text: 1744 }, + { index: 12, text: 1753 }, - { index: 13, text: 685 }, + { index: 13, text: 692 }, ], config: [ @@ -1322,7 +1322,7 @@ export default { Dori: { name: "Dori", - nameLocale: 460, + nameLocale: 464, element: "Electro", weapon: "Claymore", star: 4, @@ -1330,9 +1330,9 @@ export default { // avatar: Dori_avatar, avatar: getName("Dori"), splash: Dori_splash, - skillName1: 829, - skillName2: 1657, - skillName3: 340, + skillName1: 835, + skillName2: 1665, + skillName3: 341, skillMap1: [ { index: 0, text: 50 }, @@ -1343,29 +1343,29 @@ export default { { index: 3, text: 72 }, - { index: 4, text: 1634 }, + { index: 4, text: 1642 }, - { index: 5, text: 1637 }, + { index: 5, text: 1645 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1790 }, + { index: 8, text: 1799 }, ], skillMap2: [ - { index: 9, text: 748 }, + { index: 9, text: 754 }, - { index: 10, text: 406 }, + { index: 10, text: 409 }, ], skillMap3: [ - { index: 11, text: 1585 }, + { index: 11, text: 1592 }, - { index: 12, text: 687 }, + { index: 12, text: 693 }, ], config: [ @@ -1388,9 +1388,9 @@ export default { // avatar: Eula_avatar, avatar: getName("Eula"), splash: Eula_splash, - skillName1: 874, - skillName2: 268, - skillName3: 282, + skillName1: 880, + skillName2: 269, + skillName3: 283, skillMap1: [ { index: 0, text: 50 }, @@ -1401,37 +1401,37 @@ export default { { index: 3, text: 74 }, - { index: 4, text: 413 }, + { index: 4, text: 415 }, { index: 5, text: 141 }, { index: 6, text: 142 }, - { index: 7, text: 1634 }, + { index: 7, text: 1642 }, - { index: 8, text: 1637 }, + { index: 8, text: 1645 }, { index: 9, text: 83 }, { index: 10, text: 171 }, - { index: 11, text: 1790 }, + { index: 11, text: 1799 }, ], skillMap2: [ - { index: 12, text: 1140 }, + { index: 12, text: 1147 }, - { index: 13, text: 1658 }, + { index: 13, text: 1666 }, - { index: 14, text: 267 }, + { index: 14, text: 268 }, - { index: 15, text: 1037 }, + { index: 15, text: 1043 }, ], skillMap3: [ - { index: 16, text: 655 }, + { index: 16, text: 661 }, { index: 17, text: 234 }, @@ -1448,7 +1448,7 @@ export default { Faruzan: { name: "Faruzan", - nameLocale: 1194, + nameLocale: 1201, element: "Anemo", weapon: "Bow", star: 4, @@ -1456,9 +1456,9 @@ export default { // avatar: Faruzan_avatar, avatar: getName("Faruzan"), splash: Faruzan_splash, - skillName1: 880, - skillName2: 1741, - skillName3: 670, + skillName1: 886, + skillName2: 1750, + skillName3: 676, skillMap1: [ { index: 0, text: 50 }, @@ -1467,29 +1467,29 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 413 }, + { index: 3, text: 415 }, - { index: 4, text: 1620 }, + { index: 4, text: 1628 }, - { index: 4, text: 1120 }, + { index: 4, text: 1127 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1790 }, + { index: 8, text: 1799 }, ], skillMap2: [ - { index: 9, text: 655 }, + { index: 9, text: 661 }, - { index: 10, text: 1751 }, + { index: 10, text: 1760 }, ], skillMap3: [ - { index: 11, text: 655 }, + { index: 11, text: 661 }, ], config: [ @@ -1506,7 +1506,7 @@ export default { Fischl: { name: "Fischl", - nameLocale: 1449, + nameLocale: 1456, element: "Electro", weapon: "Bow", star: 4, @@ -1514,9 +1514,9 @@ export default { // avatar: Fischl_avatar, avatar: getName("Fischl"), splash: Fischl_splash, - skillName1: 868, - skillName2: 469, - skillName3: 1398, + skillName1: 874, + skillName2: 473, + skillName3: 1405, skillMap1: [ { index: 0, text: 50 }, @@ -1525,31 +1525,31 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 413 }, + { index: 3, text: 415 }, { index: 4, text: 140 }, - { index: 5, text: 1277 }, + { index: 5, text: 1284 }, - { index: 6, text: 1120 }, + { index: 6, text: 1127 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1790 }, + { index: 9, text: 1799 }, ], skillMap2: [ - { index: 10, text: 512 }, + { index: 10, text: 516 }, - { index: 11, text: 360 }, + { index: 11, text: 363 }, ], skillMap3: [ - { index: 12, text: 1453 }, + { index: 12, text: 1460 }, ], config: [ @@ -1562,7 +1562,7 @@ export default { Freminet: { name: "Freminet", - nameLocale: 1447, + nameLocale: 1454, element: "Cryo", weapon: "Claymore", star: 4, @@ -1570,9 +1570,9 @@ export default { // avatar: Freminet_avatar, avatar: getName("Freminet"), splash: Freminet_splash, - skillName1: 846, - skillName2: 1085, - skillName3: 1181, + skillName1: 852, + skillName2: 1092, + skillName3: 1188, skillMap1: [ { index: 0, text: 50 }, @@ -1581,26 +1581,26 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 413 }, + { index: 3, text: 415 }, - { index: 4, text: 1634 }, + { index: 4, text: 1642 }, - { index: 5, text: 1637 }, + { index: 5, text: 1645 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1790 }, + { index: 8, text: 1799 }, ], skillMap2: [ { index: 9, text: 82 }, - { index: 10, text: 1736 }, + { index: 10, text: 1745 }, - { index: 11, text: 1709 }, + { index: 11, text: 1718 }, { index: 12, text: 62 }, @@ -1614,35 +1614,35 @@ export default { { index: 17, text: 81 }, - { index: 18, text: 420 }, + { index: 18, text: 423 }, - { index: 19, text: 1135 }, + { index: 19, text: 1142 }, - { index: 21, text: 1737 }, + { index: 21, text: 1746 }, ], skillMap3: [ - { index: 20, text: 655 }, + { index: 20, text: 661 }, ], config: [ - {"default":0.0,"max":2.0,"min":0.0,"name":"c4_stack","title":400,"type":"float"}, + {"default":0.0,"max":2.0,"min":0.0,"name":"c4_stack","title":403,"type":"float"}, - {"default":0.0,"max":3.0,"min":0.0,"name":"c6_stack","title":401,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"c6_stack","title":404,"type":"float"}, ], configSkill: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":496,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":500,"type":"float"}, ], }, Ganyu: { name: "Ganyu", - nameLocale: 1217, + nameLocale: 1224, element: "Cryo", weapon: "Bow", star: 5, @@ -1650,9 +1650,9 @@ export default { // avatar: Ganyu_avatar, avatar: getName("Ganyu"), splash: Ganyu_splash, - skillName1: 847, - skillName2: 573, - skillName3: 1703, + skillName1: 853, + skillName2: 577, + skillName3: 1712, skillMap1: [ { index: 0, text: 50 }, @@ -1661,45 +1661,45 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 413 }, + { index: 3, text: 415 }, { index: 4, text: 140 }, - { index: 5, text: 245 }, + { index: 5, text: 246 }, - { index: 6, text: 1277 }, + { index: 6, text: 1284 }, - { index: 7, text: 60 }, + { index: 7, text: 61 }, - { index: 8, text: 1735 }, + { index: 8, text: 1744 }, - { index: 9, text: 1734 }, + { index: 9, text: 1743 }, { index: 10, text: 83 }, { index: 11, text: 171 }, - { index: 12, text: 1790 }, + { index: 12, text: 1799 }, ], skillMap2: [ - { index: 13, text: 655 }, + { index: 13, text: 661 }, ], skillMap3: [ - { index: 14, text: 266 }, + { index: 14, text: 267 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":490,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":494,"type":"float"}, ], configSkill: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"talent1_rate","title":488,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent1_rate","title":492,"type":"float"}, ], }, @@ -1714,9 +1714,9 @@ export default { // avatar: Gorou_avatar, avatar: getName("Gorou"), splash: Gorou_splash, - skillName1: 884, - skillName2: 1167, - skillName3: 251, + skillName1: 890, + skillName2: 1174, + skillName3: 252, skillMap1: [ { index: 0, text: 50 }, @@ -1725,29 +1725,29 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 413 }, + { index: 3, text: 415 }, - { index: 4, text: 1277 }, + { index: 4, text: 1284 }, - { index: 5, text: 1120 }, + { index: 5, text: 1127 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1790 }, + { index: 8, text: 1799 }, ], skillMap2: [ - { index: 9, text: 655 }, + { index: 9, text: 661 }, ], skillMap3: [ - { index: 10, text: 655 }, + { index: 10, text: 661 }, - { index: 11, text: 576 }, + { index: 11, text: 580 }, ], config: [ @@ -1760,7 +1760,7 @@ export default { HuTao: { name: "HuTao", - nameLocale: 1393, + nameLocale: 1400, element: "Pyro", weapon: "Polearm", star: 5, @@ -1768,9 +1768,9 @@ export default { // avatar: HuTao_avatar, avatar: getName("Hutao"), splash: HuTao_splash, - skillName1: 833, - skillName2: 1463, - skillName3: 536, + skillName1: 839, + skillName2: 1470, + skillName3: 540, skillMap1: [ { index: 0, text: 50 }, @@ -1779,50 +1779,50 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 413 }, + { index: 3, text: 415 }, { index: 4, text: 141 }, { index: 5, text: 142 }, - { index: 6, text: 245 }, + { index: 6, text: 246 }, - { index: 7, text: 1620 }, + { index: 7, text: 1628 }, { index: 8, text: 83 }, { index: 9, text: 171 }, - { index: 10, text: 1790 }, + { index: 10, text: 1799 }, ], skillMap2: [ - { index: 11, text: 1466 }, + { index: 11, text: 1473 }, ], skillMap3: [ - { index: 12, text: 655 }, + { index: 12, text: 661 }, { index: 13, text: 172 }, ], config: [ - {"default":true,"name":"le_50","title":1229,"type":"bool"}, + {"default":true,"name":"le_50","title":1236,"type":"bool"}, ], configSkill: [ - {"default":true,"name":"after_e","title":616,"type":"bool"}, + {"default":true,"name":"after_e","title":622,"type":"bool"}, ], }, Jean: { name: "Jean", - nameLocale: 1210, + nameLocale: 1217, element: "Anemo", weapon: "Sword", star: 5, @@ -1830,9 +1830,9 @@ export default { // avatar: Jean_avatar, avatar: getName("Qin"), splash: Jean_splash, - skillName1: 872, - skillName2: 1750, - skillName3: 1455, + skillName1: 878, + skillName2: 1759, + skillName3: 1462, skillMap1: [ { index: 0, text: 50 }, @@ -1841,33 +1841,33 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 413 }, + { index: 3, text: 415 }, { index: 4, text: 140 }, - { index: 5, text: 1620 }, + { index: 5, text: 1628 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1790 }, + { index: 8, text: 1799 }, ], skillMap2: [ - { index: 9, text: 655 }, + { index: 9, text: 661 }, ], skillMap3: [ - { index: 10, text: 1160 }, + { index: 10, text: 1167 }, - { index: 11, text: 287 }, + { index: 11, text: 288 }, - { index: 12, text: 1743 }, + { index: 12, text: 1752 }, - { index: 13, text: 683 }, + { index: 13, text: 689 }, ], config: [ @@ -1880,7 +1880,7 @@ export default { KaedeharaKazuha: { name: "KaedeharaKazuha", - nameLocale: 1006, + nameLocale: 1012, element: "Anemo", weapon: "Sword", star: 5, @@ -1888,8 +1888,8 @@ export default { // avatar: KaedeharaKazuha_avatar, avatar: getName("Kazuha"), splash: KaedeharaKazuha_splash, - skillName1: 838, - skillName2: 330, + skillName1: 844, + skillName2: 331, skillName3: 67, skillMap1: [ @@ -1901,19 +1901,19 @@ export default { { index: 3, text: 74 }, - { index: 4, text: 413 }, + { index: 4, text: 415 }, { index: 5, text: 143 }, - { index: 6, text: 1622 }, + { index: 6, text: 1630 }, - { index: 6, text: 1628 }, + { index: 6, text: 1636 }, { index: 8, text: 83 }, { index: 9, text: 171 }, - { index: 10, text: 1790 }, + { index: 10, text: 1799 }, ], skillMap2: [ @@ -1932,24 +1932,24 @@ export default { { index: 17, text: 115 }, - { index: 18, text: 1141 }, + { index: 18, text: 1149 }, - { index: 19, text: 1659 }, + { index: 19, text: 1667 }, ], skillMap3: [ - { index: 20, text: 740 }, + { index: 20, text: 746 }, - { index: 21, text: 682 }, + { index: 21, text: 688 }, - { index: 22, text: 1700 }, + { index: 22, text: 1709 }, - { index: 23, text: 1699 }, + { index: 23, text: 1708 }, - { index: 24, text: 1698 }, + { index: 24, text: 1707 }, - { index: 25, text: 1701 }, + { index: 25, text: 1710 }, ], config: [ @@ -1957,14 +1957,14 @@ export default { ], configSkill: [ - {"default":false,"name":"after_e_or_q","title":244,"type":"bool"}, + {"default":false,"name":"after_e_or_q","title":245,"type":"bool"}, ], }, Kaeya: { name: "Kaeya", - nameLocale: 285, + nameLocale: 286, element: "Cryo", weapon: "Sword", star: 4, @@ -1972,9 +1972,9 @@ export default { // avatar: Kaeya_avatar, avatar: getName("Kaeya"), splash: Kaeya_splash, - skillName1: 823, - skillName2: 1739, - skillName3: 277, + skillName1: 829, + skillName2: 1748, + skillName3: 278, skillMap1: [ { index: 0, text: 50 }, @@ -1983,29 +1983,29 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 413 }, + { index: 3, text: 415 }, { index: 4, text: 140 }, - { index: 5, text: 1621 }, + { index: 5, text: 1631 }, - { index: 6, text: 1626 }, + { index: 6, text: 1635 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1790 }, + { index: 9, text: 1799 }, ], skillMap2: [ - { index: 10, text: 655 }, + { index: 10, text: 661 }, ], skillMap3: [ - { index: 11, text: 655 }, + { index: 11, text: 661 }, ], config: [ @@ -2018,7 +2018,7 @@ export default { KamisatoAyaka: { name: "KamisatoAyaka", - nameLocale: 1311, + nameLocale: 1318, element: "Cryo", weapon: "Sword", star: 5, @@ -2026,9 +2026,9 @@ export default { // avatar: KamisatoAyaka_avatar, avatar: getName("Ayaka"), splash: KamisatoAyaka_splash, - skillName1: 864, - skillName2: 1301, - skillName3: 1304, + skillName1: 870, + skillName2: 1308, + skillName3: 1311, skillMap1: [ { index: 0, text: 50 }, @@ -2037,50 +2037,50 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 418 }, + { index: 3, text: 421 }, { index: 5, text: 140 }, - { index: 6, text: 1630 }, + { index: 6, text: 1638 }, { index: 8, text: 83 }, { index: 9, text: 171 }, - { index: 10, text: 1790 }, + { index: 10, text: 1799 }, ], skillMap2: [ - { index: 11, text: 655 }, + { index: 11, text: 661 }, ], skillMap3: [ - { index: 12, text: 294 }, + { index: 12, text: 295 }, - { index: 13, text: 1366 }, + { index: 13, text: 1373 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"talent1_rate","title":491,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent1_rate","title":495,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":492,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":496,"type":"float"}, ], configSkill: [ - {"default":true,"name":"after_dash","title":1305,"type":"bool"}, + {"default":true,"name":"after_dash","title":1312,"type":"bool"}, - {"default":false,"name":"use_c6","title":241,"type":"bool"}, + {"default":false,"name":"use_c6","title":242,"type":"bool"}, ], }, KamisatoAyato: { name: "KamisatoAyato", - nameLocale: 1306, + nameLocale: 1313, element: "Hydro", weapon: "Sword", star: 5, @@ -2088,9 +2088,9 @@ export default { // avatar: KamisatoAyato_avatar, avatar: getName("Ayato"), splash: KamisatoAyato_splash, - skillName1: 865, - skillName2: 1303, - skillName3: 1302, + skillName1: 871, + skillName2: 1310, + skillName3: 1309, skillMap1: [ { index: 0, text: 50 }, @@ -2099,17 +2099,17 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 412 }, + { index: 3, text: 416 }, { index: 4, text: 140 }, - { index: 5, text: 1620 }, + { index: 5, text: 1628 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1790 }, + { index: 8, text: 1799 }, ], skillMap2: [ @@ -2120,12 +2120,12 @@ export default { { index: 11, text: 79 }, - { index: 12, text: 1047 }, + { index: 12, text: 1053 }, ], skillMap3: [ - { index: 13, text: 1051 }, + { index: 13, text: 1057 }, ], config: [ @@ -2135,14 +2135,14 @@ export default { {"default":4,"max":5,"min":0,"name":"e_stack","title":32,"type":"int"}, - {"default":true,"name":"in_q","title":449,"type":"bool"}, + {"default":true,"name":"in_q","title":452,"type":"bool"}, ], }, Kaveh: { name: "Kaveh", - nameLocale: 337, + nameLocale: 338, element: "Dendro", weapon: "Claymore", star: 4, @@ -2150,9 +2150,9 @@ export default { // avatar: Kaveh_avatar, avatar: getName("Kaveh"), splash: Kaveh_splash, - skillName1: 844, - skillName2: 1260, - skillName3: 1349, + skillName1: 850, + skillName2: 1267, + skillName3: 1356, skillMap1: [ { index: 0, text: 50 }, @@ -2161,34 +2161,34 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 413 }, + { index: 3, text: 415 }, - { index: 4, text: 1634 }, + { index: 4, text: 1642 }, - { index: 5, text: 1637 }, + { index: 5, text: 1645 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1790 }, + { index: 8, text: 1799 }, ], skillMap2: [ - { index: 9, text: 655 }, + { index: 9, text: 661 }, ], skillMap3: [ - { index: 10, text: 655 }, + { index: 10, text: 661 }, ], config: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"talent2_stack","title":493,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"talent2_stack","title":497,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"c2_rate","title":397,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"c2_rate","title":400,"type":"float"}, ], configSkill: [ @@ -2200,7 +2200,7 @@ export default { Keqing: { name: "Keqing", - nameLocale: 301, + nameLocale: 302, element: "Electro", weapon: "Sword", star: 5, @@ -2208,9 +2208,9 @@ export default { // avatar: Keqing_avatar, avatar: getName("Keqing"), splash: Keqing_splash, - skillName1: 821, - skillName2: 794, - skillName3: 485, + skillName1: 827, + skillName2: 800, + skillName3: 489, skillMap1: [ { index: 0, text: 50 }, @@ -2219,44 +2219,44 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 414 }, + { index: 3, text: 417 }, - { index: 4, text: 415 }, + { index: 4, text: 418 }, { index: 5, text: 140 }, - { index: 6, text: 1621 }, + { index: 6, text: 1631 }, - { index: 7, text: 1626 }, + { index: 7, text: 1635 }, { index: 8, text: 83 }, { index: 9, text: 171 }, - { index: 10, text: 1790 }, + { index: 10, text: 1799 }, ], skillMap2: [ - { index: 11, text: 1717 }, + { index: 11, text: 1726 }, - { index: 12, text: 740 }, + { index: 12, text: 746 }, - { index: 13, text: 1716 }, + { index: 13, text: 1725 }, ], skillMap3: [ - { index: 15, text: 655 }, + { index: 15, text: 661 }, - { index: 16, text: 1586 }, + { index: 16, text: 1593 }, - { index: 18, text: 973 }, + { index: 18, text: 979 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":497,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":501,"type":"float"}, ], configSkill: [ @@ -2268,7 +2268,7 @@ export default { Klee: { name: "Klee", - nameLocale: 361, + nameLocale: 364, element: "Pyro", weapon: "Catalyst", star: 5, @@ -2276,9 +2276,9 @@ export default { // avatar: Klee_avatar, avatar: getName("Klee"), splash: Klee_splash, - skillName1: 860, - skillName2: 1563, - skillName3: 1568, + skillName1: 866, + skillName2: 1570, + skillName3: 1575, skillMap1: [ { index: 0, text: 50 }, @@ -2287,27 +2287,27 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 1620 }, + { index: 3, text: 1628 }, - { index: 4, text: 1631 }, + { index: 4, text: 1639 }, { index: 5, text: 83 }, { index: 6, text: 171 }, - { index: 7, text: 1790 }, + { index: 7, text: 1799 }, ], skillMap2: [ - { index: 8, text: 1564 }, + { index: 8, text: 1571 }, - { index: 9, text: 1528 }, + { index: 9, text: 1535 }, ], skillMap3: [ - { index: 10, text: 1569 }, + { index: 10, text: 1576 }, ], config: [ @@ -2328,9 +2328,9 @@ export default { // avatar: KujouSara_avatar, avatar: getName("Sara"), splash: KujouSara_splash, - skillName1: 886, - skillName2: 1802, - skillName3: 1156, + skillName1: 892, + skillName2: 1811, + skillName3: 1163, skillMap1: [ { index: 0, text: 50 }, @@ -2339,31 +2339,31 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 413 }, + { index: 3, text: 415 }, { index: 4, text: 140 }, - { index: 5, text: 1277 }, + { index: 5, text: 1284 }, - { index: 6, text: 1120 }, + { index: 6, text: 1127 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1790 }, + { index: 9, text: 1799 }, ], skillMap2: [ - { index: 10, text: 476 }, + { index: 10, text: 480 }, ], skillMap3: [ - { index: 11, text: 477 }, + { index: 11, text: 481 }, - { index: 12, text: 478 }, + { index: 12, text: 482 }, ], config: [ @@ -2384,9 +2384,9 @@ export default { // avatar: KukiShinobu_avatar, avatar: getName("Shinobu"), splash: KukiShinobu_splash, - skillName1: 836, - skillName2: 1560, - skillName3: 617, + skillName1: 842, + skillName2: 1567, + skillName3: 623, skillMap1: [ { index: 0, text: 50 }, @@ -2395,44 +2395,44 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 413 }, + { index: 3, text: 415 }, - { index: 4, text: 1621 }, + { index: 4, text: 1631 }, - { index: 5, text: 1626 }, + { index: 5, text: 1635 }, - { index: 6, text: 1620 }, + { index: 6, text: 1628 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1790 }, + { index: 9, text: 1799 }, ], skillMap2: [ - { index: 10, text: 655 }, + { index: 10, text: 661 }, - { index: 11, text: 1559 }, + { index: 11, text: 1566 }, - { index: 12, text: 1558 }, + { index: 12, text: 1565 }, ], skillMap3: [ - { index: 13, text: 335 }, + { index: 13, text: 336 }, - { index: 14, text: 621 }, + { index: 14, text: 627 }, - { index: 15, text: 622 }, + { index: 15, text: 628 }, ], config: [ - {"default":true,"name":"hp_le_50","title":1228,"type":"bool"}, + {"default":true,"name":"hp_le_50","title":1235,"type":"bool"}, - {"default":false,"name":"use_c6","title":372,"type":"bool"}, + {"default":false,"name":"use_c6","title":375,"type":"bool"}, ], configSkill: [ @@ -2442,7 +2442,7 @@ export default { Layla: { name: "Layla", - nameLocale: 1429, + nameLocale: 1436, element: "Cryo", weapon: "Sword", star: 4, @@ -2450,9 +2450,9 @@ export default { // avatar: Layla_avatar, avatar: getName("Layla"), splash: Layla_splash, - skillName1: 856, - skillName2: 437, - skillName3: 795, + skillName1: 862, + skillName2: 440, + skillName3: 801, skillMap1: [ { index: 0, text: 50 }, @@ -2461,27 +2461,27 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 1621 }, + { index: 3, text: 1631 }, - { index: 4, text: 1626 }, + { index: 4, text: 1635 }, { index: 5, text: 83 }, { index: 6, text: 171 }, - { index: 7, text: 1790 }, + { index: 7, text: 1799 }, ], skillMap2: [ - { index: 8, text: 655 }, + { index: 8, text: 661 }, - { index: 9, text: 1775 }, + { index: 9, text: 1784 }, ], skillMap3: [ - { index: 10, text: 792 }, + { index: 10, text: 798 }, ], config: [ @@ -2502,9 +2502,9 @@ export default { // avatar: Lisa_avatar, avatar: getName("Lisa"), splash: Lisa_splash, - skillName1: 841, - skillName2: 1411, - skillName3: 1459, + skillName1: 847, + skillName2: 1418, + skillName3: 1466, skillMap1: [ { index: 0, text: 50 }, @@ -2513,22 +2513,22 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 413 }, + { index: 3, text: 415 }, - { index: 4, text: 1620 }, + { index: 4, text: 1628 }, { index: 5, text: 83 }, { index: 6, text: 171 }, - { index: 7, text: 1790 }, + { index: 7, text: 1799 }, ], skillMap2: [ - { index: 8, text: 1140 }, + { index: 8, text: 1147 }, - { index: 9, text: 783 }, + { index: 9, text: 789 }, { index: 10, text: 48 }, @@ -2539,7 +2539,7 @@ export default { ], skillMap3: [ - { index: 13, text: 1715 }, + { index: 13, text: 1724 }, ], config: [ @@ -2552,7 +2552,7 @@ export default { Lynette: { name: "Lynette", - nameLocale: 1209, + nameLocale: 1216, element: "Anemo", weapon: "Sword", star: 4, @@ -2560,9 +2560,9 @@ export default { // avatar: Lynette_avatar, avatar: getName("Lynette"), splash: Lynette_splash, - skillName1: 877, - skillName2: 1533, - skillName3: 1799, + skillName1: 883, + skillName2: 1540, + skillName3: 1808, skillMap1: [ { index: 0, text: 50 }, @@ -2573,52 +2573,52 @@ export default { { index: 3, text: 74 }, - { index: 4, text: 413 }, + { index: 4, text: 415 }, - { index: 5, text: 1621 }, + { index: 5, text: 1631 }, - { index: 6, text: 1626 }, + { index: 6, text: 1635 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1790 }, + { index: 9, text: 1799 }, ], skillMap2: [ - { index: 10, text: 1532 }, + { index: 10, text: 1539 }, - { index: 11, text: 1084 }, + { index: 11, text: 1090 }, - { index: 12, text: 391 }, + { index: 12, text: 394 }, ], skillMap3: [ - { index: 13, text: 655 }, + { index: 13, text: 661 }, - { index: 14, text: 628 }, + { index: 14, text: 634 }, - { index: 15, text: 611 }, + { index: 15, text: 617 }, - { index: 16, text: 613 }, + { index: 16, text: 619 }, - { index: 17, text: 614 }, + { index: 17, text: 620 }, - { index: 18, text: 615 }, + { index: 18, text: 621 }, - { index: 19, text: 612 }, + { index: 19, text: 618 }, ], config: [ - {"default":0.5,"max":1.0,"min":0.0,"name":"talent1_rate","title":495,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"talent1_rate","title":499,"type":"float"}, - {"default":4,"max":4,"min":1,"name":"talent1_count","title":494,"type":"int"}, + {"default":4,"max":4,"min":1,"name":"talent1_count","title":498,"type":"int"}, - {"default":0.5,"max":1.0,"min":0.0,"name":"talent2_rate","title":500,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"talent2_rate","title":504,"type":"float"}, ], configSkill: [ @@ -2628,7 +2628,7 @@ export default { Lyney: { name: "Lyney", - nameLocale: 1004, + nameLocale: 1010, element: "Pyro", weapon: "Bow", star: 5, @@ -2636,46 +2636,46 @@ export default { // avatar: Lyney_avatar, avatar: getName("Lyney"), splash: Lyney_splash, - skillName1: 879, - skillName2: 1276, - skillName3: 472, + skillName1: 885, + skillName2: 1283, + skillName3: 476, skillMap1: [ { index: 0, text: 50 }, { index: 1, text: 121 }, - { index: 2, text: 75 }, + { index: 2, text: 76 }, - { index: 3, text: 413 }, + { index: 3, text: 415 }, - { index: 4, text: 1277 }, + { index: 4, text: 1284 }, - { index: 5, text: 60 }, + { index: 5, text: 61 }, - { index: 6, text: 1706 }, + { index: 6, text: 1715 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1790 }, + { index: 9, text: 1799 }, - { index: 10, text: 1294 }, + { index: 10, text: 1301 }, - { index: 11, text: 1135 }, + { index: 11, text: 1142 }, ], skillMap2: [ - { index: 12, text: 655 }, + { index: 12, text: 661 }, ], skillMap3: [ - { index: 13, text: 655 }, + { index: 13, text: 661 }, - { index: 14, text: 607 }, + { index: 14, text: 613 }, ], config: [ @@ -2687,18 +2687,18 @@ export default { ], configSkill: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"prop_stack","title":1705,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"prop_stack","title":1714,"type":"float"}, - {"default":false,"name":"under_pyro","title":730,"type":"bool"}, + {"default":false,"name":"under_pyro","title":736,"type":"bool"}, - {"default":1,"max":3,"min":0,"name":"pyro_count","title":1674,"type":"int"}, + {"default":1,"max":3,"min":0,"name":"pyro_count","title":1683,"type":"int"}, ], }, Mona: { name: "Mona", - nameLocale: 1423, + nameLocale: 1430, element: "Hydro", weapon: "Catalyst", star: 5, @@ -2706,9 +2706,9 @@ export default { // avatar: Mona_avatar, avatar: getName("Mona"), splash: Mona_splash, - skillName1: 827, - skillName2: 1042, - skillName3: 793, + skillName1: 833, + skillName2: 1048, + skillName3: 799, skillMap1: [ { index: 0, text: 50 }, @@ -2717,27 +2717,27 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 413 }, + { index: 3, text: 415 }, - { index: 4, text: 1620 }, + { index: 4, text: 1628 }, { index: 5, text: 83 }, { index: 6, text: 171 }, - { index: 7, text: 1790 }, + { index: 7, text: 1799 }, ], skillMap2: [ - { index: 8, text: 682 }, + { index: 8, text: 688 }, - { index: 9, text: 1164 }, + { index: 9, text: 1171 }, ], skillMap3: [ - { index: 10, text: 1068 }, + { index: 10, text: 1074 }, ], config: [ @@ -2750,7 +2750,7 @@ export default { Nahida: { name: "Nahida", - nameLocale: 1350, + nameLocale: 1357, element: "Dendro", weapon: "Catalyst", star: 5, @@ -2758,9 +2758,9 @@ export default { // avatar: Nahida_avatar, avatar: getName("Nahida"), splash: Nahida_splash, - skillName1: 871, - skillName2: 639, - skillName3: 618, + skillName1: 877, + skillName2: 645, + skillName3: 624, skillMap1: [ { index: 0, text: 50 }, @@ -2769,24 +2769,24 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 413 }, + { index: 3, text: 415 }, - { index: 4, text: 1620 }, + { index: 4, text: 1628 }, { index: 5, text: 83 }, { index: 6, text: 171 }, - { index: 7, text: 1790 }, + { index: 7, text: 1799 }, ], skillMap2: [ - { index: 8, text: 1140 }, + { index: 8, text: 1147 }, - { index: 9, text: 1658 }, + { index: 9, text: 1666 }, - { index: 10, text: 1129 }, + { index: 10, text: 1136 }, ], skillMap3: [ @@ -2794,7 +2794,7 @@ export default { ], config: [ - {"default":4,"max":4,"min":0,"name":"c4_e_count","title":1822,"type":"int"}, + {"default":4,"max":4,"min":0,"name":"c4_e_count","title":1831,"type":"int"}, ], configSkill: [ @@ -2808,7 +2808,7 @@ export default { Nilou: { name: "Nilou", - nameLocale: 515, + nameLocale: 519, element: "Hydro", weapon: "Sword", star: 5, @@ -2816,9 +2816,9 @@ export default { // avatar: Nilou_avatar, avatar: getName("Nilou"), splash: Nilou_splash, - skillName1: 832, + skillName1: 838, skillName2: 66, - skillName3: 1087, + skillName3: 1094, skillMap1: [ { index: 0, text: 50 }, @@ -2827,39 +2827,39 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 1621 }, + { index: 3, text: 1631 }, - { index: 4, text: 1626 }, + { index: 4, text: 1635 }, { index: 5, text: 83 }, { index: 6, text: 171 }, - { index: 7, text: 1790 }, + { index: 7, text: 1799 }, ], skillMap2: [ - { index: 8, text: 655 }, + { index: 8, text: 661 }, - { index: 9, text: 304 }, + { index: 9, text: 305 }, - { index: 10, text: 778 }, + { index: 10, text: 784 }, - { index: 11, text: 305 }, + { index: 11, text: 306 }, - { index: 12, text: 779 }, + { index: 12, text: 785 }, - { index: 13, text: 1048 }, + { index: 13, text: 1054 }, - { index: 14, text: 1052 }, + { index: 14, text: 1058 }, ], skillMap3: [ - { index: 15, text: 655 }, + { index: 15, text: 661 }, - { index: 16, text: 1053 }, + { index: 16, text: 1059 }, ], config: [ @@ -2874,7 +2874,7 @@ export default { Ningguang: { name: "Ningguang", - nameLocale: 278, + nameLocale: 279, element: "Geo", weapon: "Catalyst", star: 4, @@ -2882,37 +2882,37 @@ export default { // avatar: Ningguang_avatar, avatar: getName("Ningguang"), splash: Ningguang_splash, - skillName1: 824, - skillName2: 1216, - skillName3: 474, + skillName1: 830, + skillName2: 1223, + skillName3: 478, skillMap1: [ - { index: 0, text: 900 }, + { index: 0, text: 906 }, - { index: 1, text: 1620 }, + { index: 1, text: 1628 }, - { index: 2, text: 796 }, + { index: 2, text: 802 }, { index: 3, text: 83 }, { index: 4, text: 171 }, - { index: 5, text: 1790 }, + { index: 5, text: 1799 }, ], skillMap2: [ - { index: 6, text: 655 }, + { index: 6, text: 661 }, ], skillMap3: [ - { index: 7, text: 1040 }, + { index: 7, text: 1046 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":487,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":491,"type":"float"}, ], configSkill: [ @@ -2922,7 +2922,7 @@ export default { Noelle: { name: "Noelle", - nameLocale: 1530, + nameLocale: 1537, element: "Geo", weapon: "Claymore", star: 4, @@ -2930,9 +2930,9 @@ export default { // avatar: Noelle_avatar, avatar: getName("Noel"), splash: Noelle_splash, - skillName1: 873, - skillName2: 671, - skillName3: 471, + skillName1: 879, + skillName2: 677, + skillName3: 475, skillMap1: [ { index: 0, text: 50 }, @@ -2941,31 +2941,31 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 413 }, + { index: 3, text: 415 }, - { index: 4, text: 1634 }, + { index: 4, text: 1642 }, - { index: 5, text: 1637 }, + { index: 5, text: 1645 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1790 }, + { index: 8, text: 1799 }, ], skillMap2: [ - { index: 9, text: 655 }, + { index: 9, text: 661 }, - { index: 10, text: 1064 }, + { index: 10, text: 1071 }, ], skillMap3: [ - { index: 11, text: 1160 }, + { index: 11, text: 1167 }, - { index: 12, text: 655 }, + { index: 12, text: 661 }, ], config: [ @@ -2980,7 +2980,7 @@ export default { Mika: { name: "Mika", - nameLocale: 1342, + nameLocale: 1349, element: "Cryo", weapon: "Polearm", star: 4, @@ -2988,9 +2988,9 @@ export default { // avatar: Mika_avatar, avatar: getName("Mika"), splash: Mika_splash, - skillName1: 876, - skillName2: 798, - skillName3: 1409, + skillName1: 882, + skillName2: 804, + skillName3: 1416, skillMap1: [ { index: 0, text: 50 }, @@ -2999,33 +2999,33 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 417 }, + { index: 3, text: 420 }, { index: 4, text: 140 }, - { index: 5, text: 1620 }, + { index: 5, text: 1628 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1790 }, + { index: 8, text: 1799 }, ], skillMap2: [ - { index: 9, text: 1738 }, + { index: 9, text: 1747 }, - { index: 10, text: 263 }, + { index: 10, text: 264 }, - { index: 11, text: 264 }, + { index: 11, text: 265 }, ], skillMap3: [ - { index: 12, text: 770 }, + { index: 12, text: 776 }, - { index: 13, text: 1805 }, + { index: 13, text: 1814 }, ], config: [ @@ -3046,7 +3046,7 @@ export default { // avatar: Qiqi_avatar, avatar: getName("Qiqi"), splash: Qiqi_splash, - skillName1: 822, + skillName1: 828, skillName2: 157, skillName3: 158, skillMap1: [ @@ -3059,39 +3059,39 @@ export default { { index: 3, text: 74 }, - { index: 4, text: 414 }, + { index: 4, text: 417 }, - { index: 5, text: 415 }, + { index: 5, text: 418 }, { index: 6, text: 140 }, - { index: 7, text: 1621 }, + { index: 7, text: 1631 }, - { index: 8, text: 1626 }, + { index: 8, text: 1635 }, { index: 9, text: 83 }, { index: 10, text: 171 }, - { index: 11, text: 1790 }, + { index: 11, text: 1799 }, ], skillMap2: [ - { index: 12, text: 655 }, + { index: 12, text: 661 }, - { index: 15, text: 552 }, + { index: 15, text: 556 }, - { index: 13, text: 390 }, + { index: 13, text: 395 }, - { index: 14, text: 686 }, + { index: 14, text: 691 }, ], skillMap3: [ - { index: 16, text: 655 }, + { index: 16, text: 661 }, - { index: 17, text: 1064 }, + { index: 17, text: 1071 }, ], config: [ @@ -3104,7 +3104,7 @@ export default { RaidenShogun: { name: "RaidenShogun", - nameLocale: 1724, + nameLocale: 1733, element: "Electro", weapon: "Polearm", star: 5, @@ -3112,9 +3112,9 @@ export default { // avatar: RaidenShogun_avatar, avatar: getName("Shougun"), splash: RaidenShogun_splash, - skillName1: 888, - skillName2: 1298, - skillName3: 511, + skillName1: 894, + skillName2: 1305, + skillName3: 515, skillMap1: [ { index: 0, text: 50 }, @@ -3123,31 +3123,31 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 414 }, + { index: 3, text: 417 }, - { index: 4, text: 415 }, + { index: 4, text: 418 }, { index: 5, text: 140 }, - { index: 6, text: 1620 }, + { index: 6, text: 1628 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1790 }, + { index: 9, text: 1799 }, ], skillMap2: [ - { index: 10, text: 655 }, + { index: 10, text: 661 }, - { index: 11, text: 334 }, + { index: 11, text: 335 }, ], skillMap3: [ - { index: 12, text: 1025 }, + { index: 12, text: 1031 }, { index: 13, text: 50 }, @@ -3155,21 +3155,21 @@ export default { { index: 15, text: 72 }, - { index: 16, text: 414 }, + { index: 16, text: 417 }, - { index: 17, text: 415 }, + { index: 17, text: 418 }, { index: 18, text: 140 }, - { index: 19, text: 1621 }, + { index: 19, text: 1631 }, - { index: 20, text: 1626 }, + { index: 20, text: 1635 }, { index: 21, text: 83 }, { index: 22, text: 171 }, - { index: 23, text: 1790 }, + { index: 23, text: 1799 }, ], config: [ @@ -3177,16 +3177,16 @@ export default { ], configSkill: [ - {"default":true,"name":"under_e","title":454,"type":"bool"}, + {"default":true,"name":"under_e","title":458,"type":"bool"}, - {"default":60,"max":60,"min":0,"name":"resolve_stack","title":1529,"type":"int"}, + {"default":60,"max":60,"min":0,"name":"resolve_stack","title":1536,"type":"int"}, ], }, Razor: { name: "Razor", - nameLocale: 1718, + nameLocale: 1727, element: "Electro", weapon: "Claymore", star: 4, @@ -3194,9 +3194,9 @@ export default { // avatar: Razor_avatar, avatar: getName("Razor"), splash: Razor_splash, - skillName1: 882, - skillName2: 299, - skillName3: 1723, + skillName1: 888, + skillName2: 300, + skillName3: 1732, skillMap1: [ { index: 0, text: 50 }, @@ -3205,44 +3205,44 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 413 }, + { index: 3, text: 415 }, - { index: 4, text: 1634 }, + { index: 4, text: 1642 }, - { index: 5, text: 1637 }, + { index: 5, text: 1645 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1790 }, + { index: 8, text: 1799 }, ], skillMap2: [ - { index: 9, text: 1143 }, + { index: 9, text: 1148 }, - { index: 10, text: 1659 }, + { index: 10, text: 1667 }, ], skillMap3: [ - { index: 11, text: 1160 }, + { index: 11, text: 1167 }, - { index: 12, text: 1174 }, + { index: 12, text: 1181 }, - { index: 13, text: 1176 }, + { index: 13, text: 1183 }, - { index: 14, text: 1175 }, + { index: 14, text: 1182 }, - { index: 15, text: 1177 }, + { index: 15, text: 1184 }, ], config: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"e_stack","title":1710,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"e_stack","title":1719,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_ratio","title":502,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_ratio","title":506,"type":"float"}, ], configSkill: [ @@ -3252,7 +3252,7 @@ export default { Rosaria: { name: "Rosaria", - nameLocale: 1369, + nameLocale: 1376, element: "Cryo", weapon: "Polearm", star: 4, @@ -3260,51 +3260,51 @@ export default { // avatar: Rosaria_avatar, avatar: getName("Rosaria"), splash: Rosaria_splash, - skillName1: 842, - skillName2: 411, - skillName3: 1354, + skillName1: 848, + skillName2: 414, + skillName3: 1361, skillMap1: [ { index: 0, text: 50 }, { index: 1, text: 121 }, - { index: 2, text: 75 }, + { index: 2, text: 76 }, - { index: 3, text: 413 }, + { index: 3, text: 415 }, { index: 4, text: 141 }, { index: 5, text: 142 }, - { index: 6, text: 1620 }, + { index: 6, text: 1628 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1790 }, + { index: 9, text: 1799 }, ], skillMap2: [ - { index: 10, text: 657 }, + { index: 10, text: 663 }, - { index: 11, text: 659 }, + { index: 11, text: 665 }, ], skillMap3: [ - { index: 12, text: 657 }, + { index: 12, text: 663 }, - { index: 13, text: 659 }, + { index: 13, text: 665 }, - { index: 14, text: 265 }, + { index: 14, text: 266 }, ], config: [ - {"default":true,"name":"e_from_behind","title":598,"type":"bool"}, + {"default":true,"name":"e_from_behind","title":603,"type":"bool"}, ], configSkill: [ @@ -3314,7 +3314,7 @@ export default { SangonomiyaKokomi: { name: "SangonomiyaKokomi", - nameLocale: 1192, + nameLocale: 1199, element: "Hydro", weapon: "Catalyst", star: 5, @@ -3322,9 +3322,9 @@ export default { // avatar: SangonomiyaKokomi_avatar, avatar: getName("Kokomi"), splash: SangonomiyaKokomi_splash, - skillName1: 887, - skillName2: 1089, - skillName3: 1088, + skillName1: 893, + skillName2: 1096, + skillName3: 1095, skillMap1: [ { index: 0, text: 50 }, @@ -3333,27 +3333,27 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 1620 }, + { index: 3, text: 1628 }, { index: 4, text: 83 }, { index: 5, text: 171 }, - { index: 6, text: 1790 }, + { index: 6, text: 1799 }, ], skillMap2: [ - { index: 8, text: 1070 }, + { index: 8, text: 1076 }, - { index: 7, text: 1065 }, + { index: 7, text: 1070 }, ], skillMap3: [ - { index: 9, text: 655 }, + { index: 9, text: 661 }, - { index: 10, text: 392 }, + { index: 10, text: 393 }, ], config: [ @@ -3368,7 +3368,7 @@ export default { Sayu: { name: "Sayu", - nameLocale: 787, + nameLocale: 793, element: "Anemo", weapon: "Claymore", star: 4, @@ -3376,9 +3376,9 @@ export default { // avatar: Sayu_avatar, avatar: getName("Sayu"), splash: Sayu_splash, - skillName1: 835, - skillName2: 386, - skillName3: 385, + skillName1: 841, + skillName2: 389, + skillName3: 388, skillMap1: [ { index: 0, text: 50 }, @@ -3389,49 +3389,49 @@ export default { { index: 3, text: 74 }, - { index: 4, text: 413 }, + { index: 4, text: 415 }, - { index: 5, text: 1634 }, + { index: 5, text: 1642 }, - { index: 6, text: 1637 }, + { index: 6, text: 1645 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1790 }, + { index: 9, text: 1799 }, ], skillMap2: [ - { index: 10, text: 1758 }, + { index: 10, text: 1767 }, - { index: 11, text: 1759 }, + { index: 11, text: 1768 }, - { index: 12, text: 1760 }, + { index: 12, text: 1769 }, - { index: 13, text: 1767 }, + { index: 13, text: 1776 }, - { index: 16, text: 1766 }, + { index: 16, text: 1775 }, - { index: 15, text: 1765 }, + { index: 15, text: 1774 }, - { index: 14, text: 1768 }, + { index: 14, text: 1777 }, - { index: 17, text: 1763 }, + { index: 17, text: 1772 }, - { index: 20, text: 1762 }, + { index: 20, text: 1771 }, - { index: 19, text: 1761 }, + { index: 19, text: 1770 }, - { index: 18, text: 1764 }, + { index: 18, text: 1773 }, ], skillMap3: [ - { index: 21, text: 666 }, + { index: 21, text: 672 }, - { index: 22, text: 667 }, + { index: 22, text: 673 }, { index: 23, text: 84 }, @@ -3448,7 +3448,7 @@ export default { Shenhe: { name: "Shenhe", - nameLocale: 1247, + nameLocale: 1254, element: "Cryo", weapon: "Polearm", star: 5, @@ -3456,9 +3456,9 @@ export default { // avatar: Shenhe_avatar, avatar: getName("Shenhe"), splash: Shenhe_splash, - skillName1: 889, + skillName1: 895, skillName2: 161, - skillName3: 1299, + skillName3: 1306, skillMap1: [ { index: 0, text: 50 }, @@ -3467,33 +3467,33 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 414 }, + { index: 3, text: 417 }, - { index: 4, text: 415 }, + { index: 4, text: 418 }, { index: 5, text: 140 }, - { index: 6, text: 1620 }, + { index: 6, text: 1628 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1790 }, + { index: 9, text: 1799 }, ], skillMap2: [ - { index: 10, text: 1142 }, + { index: 10, text: 1150 }, - { index: 11, text: 1659 }, + { index: 11, text: 1667 }, ], skillMap3: [ - { index: 12, text: 655 }, + { index: 12, text: 661 }, - { index: 13, text: 682 }, + { index: 13, text: 688 }, ], config: [ @@ -3506,7 +3506,7 @@ export default { ShikanoinHeizou: { name: "ShikanoinHeizou", - nameLocale: 1806, + nameLocale: 1815, element: "Anemo", weapon: "Catalyst", star: 4, @@ -3514,9 +3514,9 @@ export default { // avatar: ShikanoinHeizou_avatar, avatar: getName("Heizo"), splash: ShikanoinHeizou_splash, - skillName1: 820, - skillName2: 316, - skillName3: 1392, + skillName1: 826, + skillName2: 317, + skillName3: 1399, skillMap1: [ { index: 0, text: 50 }, @@ -3525,49 +3525,49 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 414 }, + { index: 3, text: 417 }, - { index: 4, text: 415 }, + { index: 4, text: 418 }, - { index: 5, text: 416 }, + { index: 5, text: 419 }, - { index: 6, text: 413 }, + { index: 6, text: 415 }, { index: 7, text: 140 }, - { index: 8, text: 1620 }, + { index: 8, text: 1628 }, { index: 9, text: 83 }, { index: 10, text: 171 }, - { index: 11, text: 1790 }, + { index: 11, text: 1799 }, ], skillMap2: [ - { index: 12, text: 656 }, + { index: 12, text: 662 }, - { index: 13, text: 658 }, + { index: 13, text: 664 }, - { index: 14, text: 660 }, + { index: 14, text: 666 }, - { index: 15, text: 661 }, + { index: 15, text: 667 }, - { index: 16, text: 662 }, + { index: 16, text: 668 }, ], skillMap3: [ { index: 17, text: 86 }, - { index: 18, text: 1390 }, + { index: 18, text: 1397 }, - { index: 20, text: 1388 }, + { index: 20, text: 1395 }, - { index: 21, text: 1391 }, + { index: 21, text: 1398 }, - { index: 19, text: 1389 }, + { index: 19, text: 1396 }, ], config: [ @@ -3580,7 +3580,7 @@ export default { Sucrose: { name: "Sucrose", - nameLocale: 1278, + nameLocale: 1285, element: "Anemo", weapon: "Catalyst", star: 4, @@ -3588,9 +3588,9 @@ export default { // avatar: Sucrose_avatar, avatar: getName("Sucrose"), splash: Sucrose_splash, - skillName1: 866, - skillName2: 1754, - skillName3: 1327, + skillName1: 872, + skillName2: 1763, + skillName3: 1334, skillMap1: [ { index: 0, text: 50 }, @@ -3599,33 +3599,33 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 413 }, + { index: 3, text: 415 }, - { index: 4, text: 1620 }, + { index: 4, text: 1628 }, { index: 5, text: 83 }, { index: 6, text: 171 }, - { index: 7, text: 1790 }, + { index: 7, text: 1799 }, ], skillMap2: [ - { index: 8, text: 655 }, + { index: 8, text: 661 }, ], skillMap3: [ - { index: 9, text: 682 }, + { index: 9, text: 688 }, - { index: 10, text: 1700 }, + { index: 10, text: 1709 }, - { index: 11, text: 1699 }, + { index: 11, text: 1708 }, - { index: 13, text: 1698 }, + { index: 13, text: 1707 }, - { index: 12, text: 1701 }, + { index: 12, text: 1710 }, ], config: [ @@ -3638,7 +3638,7 @@ export default { Tartaglia: { name: "Tartaglia", - nameLocale: 1581, + nameLocale: 1588, element: "Hydro", weapon: "Bow", star: 5, @@ -3646,9 +3646,9 @@ export default { // avatar: Tartaglia_avatar, avatar: getName("Tartaglia"), splash: Tartaglia_splash, - skillName1: 843, - skillName2: 1801, - skillName3: 1003, + skillName1: 849, + skillName2: 1810, + skillName3: 1009, skillMap1: [ { index: 0, text: 50 }, @@ -3657,30 +3657,30 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 413 }, + { index: 3, text: 415 }, { index: 4, text: 140 }, - { index: 5, text: 245 }, + { index: 5, text: 246 }, - { index: 6, text: 1277 }, + { index: 6, text: 1284 }, - { index: 7, text: 1120 }, + { index: 7, text: 1127 }, - { index: 8, text: 746 }, + { index: 8, text: 752 }, - { index: 9, text: 745 }, + { index: 9, text: 751 }, { index: 10, text: 83 }, { index: 11, text: 171 }, - { index: 12, text: 1790 }, + { index: 12, text: 1799 }, ], skillMap2: [ - { index: 13, text: 1169 }, + { index: 13, text: 1176 }, { index: 14, text: 50 }, @@ -3688,28 +3688,28 @@ export default { { index: 16, text: 72 }, - { index: 17, text: 413 }, + { index: 17, text: 415 }, { index: 18, text: 140 }, - { index: 19, text: 246 }, + { index: 19, text: 247 }, - { index: 20, text: 247 }, + { index: 20, text: 248 }, - { index: 21, text: 1621 }, + { index: 21, text: 1631 }, - { index: 22, text: 1626 }, + { index: 22, text: 1635 }, - { index: 23, text: 743 }, + { index: 23, text: 749 }, ], skillMap3: [ - { index: 24, text: 664 }, + { index: 24, text: 670 }, - { index: 25, text: 665 }, + { index: 25, text: 671 }, - { index: 26, text: 744 }, + { index: 26, text: 750 }, ], config: [ @@ -3722,7 +3722,7 @@ export default { Thoma: { name: "Thoma", - nameLocale: 641, + nameLocale: 647, element: "Pyro", weapon: "Polearm", star: 4, @@ -3730,38 +3730,38 @@ export default { // avatar: Thoma_avatar, avatar: getName("Tohma"), splash: Thoma_splash, - skillName1: 878, - skillName2: 1147, - skillName3: 1275, + skillName1: 884, + skillName2: 1154, + skillName3: 1282, skillMap1: [ { index: 0, text: 50 }, { index: 1, text: 121 }, - { index: 2, text: 75 }, + { index: 2, text: 76 }, - { index: 4, text: 413 }, + { index: 4, text: 415 }, - { index: 5, text: 1620 }, + { index: 5, text: 1628 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1790 }, + { index: 8, text: 1799 }, ], skillMap2: [ - { index: 9, text: 655 }, + { index: 9, text: 661 }, ], skillMap3: [ - { index: 10, text: 655 }, + { index: 10, text: 661 }, - { index: 11, text: 1144 }, + { index: 11, text: 1151 }, ], config: [ @@ -3774,7 +3774,7 @@ export default { Tighnari: { name: "Tighnari", - nameLocale: 693, + nameLocale: 699, element: "Dendro", weapon: "Bow", star: 5, @@ -3782,9 +3782,9 @@ export default { // avatar: Tighnari_avatar, avatar: getName("Tighnari"), splash: Tighnari_splash, - skillName1: 869, - skillName2: 1521, - skillName3: 1607, + skillName1: 875, + skillName2: 1528, + skillName3: 1614, skillMap1: [ { index: 0, text: 50 }, @@ -3793,40 +3793,40 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 413 }, + { index: 3, text: 415 }, - { index: 4, text: 1277 }, + { index: 4, text: 1284 }, - { index: 5, text: 61 }, + { index: 5, text: 60 }, - { index: 6, text: 1404 }, + { index: 6, text: 1411 }, - { index: 7, text: 1461 }, + { index: 7, text: 1468 }, { index: 8, text: 83 }, { index: 9, text: 171 }, - { index: 10, text: 1790 }, + { index: 10, text: 1799 }, ], skillMap2: [ - { index: 11, text: 655 }, + { index: 11, text: 661 }, ], skillMap3: [ - { index: 12, text: 1368 }, + { index: 12, text: 1375 }, - { index: 13, text: 1029 }, + { index: 13, text: 1035 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"talent1_ratio","title":498,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent1_ratio","title":502,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"c2_ratio","title":394,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"c2_ratio","title":397,"type":"float"}, ], configSkill: [ @@ -3836,7 +3836,7 @@ export default { Venti: { name: "Venti", - nameLocale: 1105, + nameLocale: 1112, element: "Anemo", weapon: "Bow", star: 5, @@ -3844,9 +3844,9 @@ export default { // avatar: Venti_avatar, avatar: getName("Venti"), splash: Venti_splash, - skillName1: 862, - skillName2: 1789, - skillName3: 1755, + skillName1: 868, + skillName2: 1798, + skillName3: 1764, skillMap1: [ { index: 0, text: 51 }, @@ -3857,43 +3857,43 @@ export default { { index: 4, text: 72 }, - { index: 5, text: 414 }, + { index: 5, text: 417 }, - { index: 6, text: 415 }, + { index: 6, text: 418 }, { index: 8, text: 140 }, - { index: 9, text: 245 }, + { index: 9, text: 246 }, - { index: 10, text: 1277 }, + { index: 10, text: 1284 }, - { index: 11, text: 1120 }, + { index: 11, text: 1127 }, { index: 12, text: 83 }, { index: 13, text: 171 }, - { index: 14, text: 1790 }, + { index: 14, text: 1799 }, ], skillMap2: [ - { index: 15, text: 1140 }, + { index: 15, text: 1147 }, - { index: 16, text: 1658 }, + { index: 16, text: 1666 }, ], skillMap3: [ - { index: 17, text: 682 }, + { index: 17, text: 688 }, - { index: 18, text: 1700 }, + { index: 18, text: 1709 }, - { index: 20, text: 1699 }, + { index: 20, text: 1708 }, - { index: 21, text: 1698 }, + { index: 21, text: 1707 }, - { index: 19, text: 1701 }, + { index: 19, text: 1710 }, ], config: [ @@ -3906,7 +3906,7 @@ export default { Wanderer: { name: "Wanderer", - nameLocale: 1082, + nameLocale: 1088, element: "Anemo", weapon: "Catalyst", star: 5, @@ -3914,16 +3914,16 @@ export default { // avatar: Wanderer_avatar, avatar: getName("Wanderer"), splash: Wanderer_splash, - skillName1: 870, - skillName2: 1378, - skillName3: 1170, + skillName1: 876, + skillName2: 1385, + skillName3: 1177, skillMap1: [ { index: 0, text: 50 }, { index: 1, text: 121 }, - { index: 2, text: 76 }, + { index: 2, text: 75 }, { index: 3, text: 54 }, @@ -3931,7 +3931,7 @@ export default { { index: 5, text: 77 }, - { index: 6, text: 1620 }, + { index: 6, text: 1628 }, { index: 7, text: 28 }, @@ -3939,17 +3939,17 @@ export default { { index: 9, text: 171 }, - { index: 10, text: 1790 }, + { index: 10, text: 1799 }, ], skillMap2: [ - { index: 11, text: 655 }, + { index: 11, text: 661 }, ], skillMap3: [ - { index: 12, text: 663 }, + { index: 12, text: 669 }, ], config: [ @@ -3961,18 +3961,18 @@ export default { ], configSkill: [ - {"default":true,"name":"e_enabled","title":447,"type":"bool"}, + {"default":true,"name":"e_enabled","title":450,"type":"bool"}, {"default":false,"name":"e_hydro","title":26,"type":"bool"}, - {"default":50.0,"max":120.0,"min":0.0,"name":"sdpoints","title":1337,"type":"float"}, + {"default":50.0,"max":120.0,"min":0.0,"name":"sdpoints","title":1344,"type":"float"}, ], }, Xiangling: { name: "Xiangling", - nameLocale: 1780, + nameLocale: 1789, element: "Pyro", weapon: "Polearm", star: 4, @@ -3980,9 +3980,9 @@ export default { // avatar: Xiangling_avatar, avatar: getName("Xiangling"), splash: Xiangling_splash, - skillName1: 859, - skillName2: 1656, - skillName3: 776, + skillName1: 865, + skillName2: 1664, + skillName3: 782, skillMap1: [ { index: 0, text: 50 }, @@ -3993,22 +3993,22 @@ export default { { index: 3, text: 74 }, - { index: 5, text: 419 }, + { index: 5, text: 422 }, { index: 7, text: 140 }, - { index: 8, text: 1620 }, + { index: 8, text: 1628 }, { index: 9, text: 83 }, { index: 10, text: 171 }, - { index: 11, text: 1790 }, + { index: 11, text: 1799 }, ], skillMap2: [ - { index: 12, text: 408 }, + { index: 12, text: 411 }, ], skillMap3: [ @@ -4019,7 +4019,7 @@ export default { { index: 15, text: 78 }, - { index: 16, text: 777 }, + { index: 16, text: 783 }, ], config: [ @@ -4032,7 +4032,7 @@ export default { Xiao: { name: "Xiao", - nameLocale: 1792, + nameLocale: 1801, element: "Anemo", weapon: "Polearm", star: 5, @@ -4040,9 +4040,9 @@ export default { // avatar: Xiao_avatar, avatar: getName("Xiao"), splash: Xiao_splash, - skillName1: 825, - skillName2: 1757, - skillName3: 1740, + skillName1: 831, + skillName2: 1766, + skillName3: 1749, skillMap1: [ { index: 0, text: 51 }, @@ -4053,26 +4053,26 @@ export default { { index: 4, text: 72 }, - { index: 5, text: 414 }, + { index: 5, text: 417 }, - { index: 6, text: 415 }, + { index: 6, text: 418 }, { index: 8, text: 140 }, - { index: 9, text: 245 }, + { index: 9, text: 246 }, - { index: 10, text: 1620 }, + { index: 10, text: 1628 }, { index: 11, text: 83 }, { index: 12, text: 171 }, - { index: 13, text: 1790 }, + { index: 13, text: 1799 }, ], skillMap2: [ - { index: 14, text: 655 }, + { index: 14, text: 661 }, ], skillMap3: [ @@ -4083,18 +4083,18 @@ export default { ], configSkill: [ - {"default":true,"name":"after_q","title":1740,"type":"bool"}, + {"default":true,"name":"after_q","title":1749,"type":"bool"}, - {"default":4.0,"max":4.0,"min":0.0,"name":"talent1_stack","title":501,"type":"float"}, + {"default":4.0,"max":4.0,"min":0.0,"name":"talent1_stack","title":505,"type":"float"}, - {"default":0.0,"max":3.0,"min":0.0,"name":"talent2_stack","title":489,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"talent2_stack","title":493,"type":"float"}, ], }, Xingqiu: { name: "Xingqiu", - nameLocale: 1467, + nameLocale: 1474, element: "Hydro", weapon: "Sword", star: 4, @@ -4102,9 +4102,9 @@ export default { // avatar: Xingqiu_avatar, avatar: getName("Xingqiu"), splash: Xingqiu_splash, - skillName1: 826, - skillName2: 358, - skillName3: 359, + skillName1: 832, + skillName2: 361, + skillName3: 362, skillMap1: [ { index: 0, text: 50 }, @@ -4115,33 +4115,33 @@ export default { { index: 3, text: 74 }, - { index: 5, text: 413 }, + { index: 5, text: 415 }, { index: 6, text: 141 }, { index: 7, text: 142 }, - { index: 9, text: 1621 }, + { index: 9, text: 1631 }, - { index: 10, text: 1626 }, + { index: 10, text: 1635 }, { index: 12, text: 83 }, { index: 13, text: 171 }, - { index: 14, text: 1790 }, + { index: 14, text: 1799 }, ], skillMap2: [ - { index: 15, text: 657 }, + { index: 15, text: 663 }, - { index: 16, text: 659 }, + { index: 16, text: 665 }, ], skillMap3: [ - { index: 17, text: 306 }, + { index: 17, text: 307 }, ], config: [ @@ -4149,14 +4149,14 @@ export default { ], configSkill: [ - {"default":false,"name":"c4","title":597,"type":"bool"}, + {"default":false,"name":"c4","title":602,"type":"bool"}, ], }, Xinyan: { name: "Xinyan", - nameLocale: 1572, + nameLocale: 1579, element: "Pyro", weapon: "Claymore", star: 4, @@ -4164,9 +4164,9 @@ export default { // avatar: Xinyan_avatar, avatar: getName("Xinyan"), splash: Xinyan_splash, - skillName1: 854, - skillName2: 1150, - skillName3: 355, + skillName1: 860, + skillName2: 1157, + skillName3: 358, skillMap1: [ { index: 0, text: 50 }, @@ -4175,31 +4175,31 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 413 }, + { index: 3, text: 415 }, - { index: 4, text: 1634 }, + { index: 4, text: 1642 }, - { index: 5, text: 1637 }, + { index: 5, text: 1645 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1790 }, + { index: 8, text: 1799 }, ], skillMap2: [ - { index: 9, text: 690 }, + { index: 9, text: 696 }, - { index: 10, text: 682 }, + { index: 10, text: 688 }, ], skillMap3: [ - { index: 11, text: 655 }, + { index: 11, text: 661 }, - { index: 12, text: 1126 }, + { index: 12, text: 1133 }, ], config: [ @@ -4222,9 +4222,9 @@ export default { // avatar: YaeMiko_avatar, avatar: getName("Yae"), splash: YaeMiko_splash, - skillName1: 857, - skillName2: 1641, - skillName3: 470, + skillName1: 863, + skillName2: 1649, + skillName3: 474, skillMap1: [ { index: 0, text: 50 }, @@ -4233,31 +4233,31 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 1620 }, + { index: 3, text: 1628 }, { index: 4, text: 83 }, { index: 5, text: 171 }, - { index: 6, text: 1790 }, + { index: 6, text: 1799 }, ], skillMap2: [ - { index: 7, text: 997 }, + { index: 7, text: 1003 }, - { index: 8, text: 999 }, + { index: 8, text: 1005 }, - { index: 9, text: 996 }, + { index: 9, text: 1002 }, - { index: 10, text: 998 }, + { index: 10, text: 1004 }, ], skillMap3: [ - { index: 11, text: 655 }, + { index: 11, text: 661 }, - { index: 12, text: 475 }, + { index: 12, text: 479 }, ], config: [ @@ -4270,7 +4270,7 @@ export default { Yanfei: { name: "Yanfei", - nameLocale: 1148, + nameLocale: 1155, element: "Pyro", weapon: "Catalyst", star: 4, @@ -4278,9 +4278,9 @@ export default { // avatar: Yanfei_avatar, avatar: getName("Feiyan"), splash: Yanfei_splash, - skillName1: 852, + skillName1: 858, skillName2: 93, - skillName3: 284, + skillName3: 285, skillMap1: [ { index: 0, text: 50 }, @@ -4289,33 +4289,33 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 1619 }, + { index: 3, text: 1627 }, - { index: 4, text: 1615 }, + { index: 4, text: 1623 }, - { index: 5, text: 1616 }, + { index: 5, text: 1624 }, - { index: 6, text: 1617 }, + { index: 6, text: 1625 }, - { index: 7, text: 1618 }, + { index: 7, text: 1626 }, - { index: 8, text: 486 }, + { index: 8, text: 490 }, { index: 9, text: 83 }, { index: 10, text: 171 }, - { index: 11, text: 1790 }, + { index: 11, text: 1799 }, ], skillMap2: [ - { index: 12, text: 655 }, + { index: 12, text: 661 }, ], skillMap3: [ - { index: 13, text: 655 }, + { index: 13, text: 661 }, ], config: [ @@ -4323,14 +4323,14 @@ export default { ], configSkill: [ - {"default":true,"name":"after_q","title":1137,"type":"bool"}, + {"default":true,"name":"after_q","title":1144,"type":"bool"}, ], }, Yaoyao: { name: "Yaoyao", - nameLocale: 1215, + nameLocale: 1222, element: "Dendro", weapon: "Polearm", star: 4, @@ -4338,9 +4338,9 @@ export default { // avatar: Yaoyao_avatar, avatar: getName("Yaoyao"), splash: Yaoyao_splash, - skillName1: 883, + skillName1: 889, skillName2: 132, - skillName3: 1188, + skillName3: 1195, skillMap1: [ { index: 0, text: 50 }, @@ -4351,36 +4351,36 @@ export default { { index: 3, text: 74 }, - { index: 4, text: 413 }, + { index: 4, text: 415 }, - { index: 5, text: 1620 }, + { index: 5, text: 1628 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1790 }, + { index: 8, text: 1799 }, ], skillMap2: [ - { index: 9, text: 1266 }, + { index: 9, text: 1273 }, - { index: 10, text: 1267 }, + { index: 10, text: 1274 }, ], skillMap3: [ - { index: 11, text: 655 }, + { index: 11, text: 661 }, - { index: 12, text: 1021 }, + { index: 12, text: 1027 }, - { index: 13, text: 1022 }, + { index: 13, text: 1028 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"c4_rate","title":399,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"c4_rate","title":402,"type":"float"}, ], configSkill: [ @@ -4390,7 +4390,7 @@ export default { Yelan: { name: "Yelan", - nameLocale: 463, + nameLocale: 467, element: "Hydro", weapon: "Bow", star: 5, @@ -4398,9 +4398,9 @@ export default { // avatar: Yelan_avatar, avatar: getName("Yelan"), splash: Yelan_splash, - skillName1: 851, - skillName2: 1451, - skillName3: 1097, + skillName1: 857, + skillName2: 1458, + skillName3: 1104, skillMap1: [ { index: 0, text: 50 }, @@ -4409,36 +4409,36 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 417 }, + { index: 3, text: 420 }, - { index: 4, text: 1277 }, + { index: 4, text: 1284 }, - { index: 5, text: 1120 }, + { index: 5, text: 1127 }, - { index: 6, text: 1288 }, + { index: 6, text: 1295 }, { index: 8, text: 83 }, { index: 9, text: 171 }, - { index: 10, text: 1790 }, + { index: 10, text: 1799 }, ], skillMap2: [ - { index: 11, text: 655 }, + { index: 11, text: 661 }, ], skillMap3: [ - { index: 12, text: 655 }, + { index: 12, text: 661 }, - { index: 13, text: 1187 }, + { index: 13, text: 1194 }, ], config: [ - {"default":4,"max":4,"min":1,"name":"team_element_count","title":1663,"type":"int"}, + {"default":4,"max":4,"min":1,"name":"team_element_count","title":1671,"type":"int"}, ], configSkill: [ @@ -4448,7 +4448,7 @@ export default { Yoimiya: { name: "Yoimiya", - nameLocale: 548, + nameLocale: 552, element: "Pyro", weapon: "Bow", star: 5, @@ -4456,9 +4456,9 @@ export default { // avatar: Yoimiya_avatar, avatar: getName("Yoimiya"), splash: Yoimiya_splash, - skillName1: 855, - skillName2: 1154, - skillName3: 1205, + skillName1: 861, + skillName2: 1161, + skillName3: 1212, skillMap1: [ { index: 0, text: 53 }, @@ -4467,21 +4467,21 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 417 }, + { index: 3, text: 420 }, { index: 4, text: 140 }, - { index: 5, text: 1277 }, + { index: 5, text: 1284 }, - { index: 6, text: 1120 }, + { index: 6, text: 1127 }, - { index: 7, text: 1155 }, + { index: 7, text: 1162 }, { index: 8, text: 83 }, { index: 9, text: 171 }, - { index: 10, text: 1790 }, + { index: 10, text: 1799 }, ], skillMap2: [ @@ -4489,19 +4489,19 @@ export default { ], skillMap3: [ - { index: 11, text: 655 }, + { index: 11, text: 661 }, - { index: 12, text: 1206 }, + { index: 12, text: 1213 }, ], config: [ - {"default":8.0,"max":10.0,"min":0.0,"name":"talent1_level","title":499,"type":"float"}, + {"default":8.0,"max":10.0,"min":0.0,"name":"talent1_level","title":503,"type":"float"}, ], configSkill: [ - {"default":true,"name":"after_e","title":602,"type":"bool"}, + {"default":true,"name":"after_e","title":607,"type":"bool"}, ], }, @@ -4516,9 +4516,9 @@ export default { // avatar: Yunjin_avatar, avatar: getName("Yunjin"), splash: Yunjin_splash, - skillName1: 839, - skillName2: 775, - skillName3: 1289, + skillName1: 845, + skillName2: 781, + skillName3: 1296, skillMap1: [ { index: 0, text: 50 }, @@ -4529,24 +4529,24 @@ export default { { index: 3, text: 74 }, - { index: 4, text: 414 }, + { index: 4, text: 417 }, - { index: 5, text: 415 }, + { index: 5, text: 418 }, { index: 6, text: 140 }, - { index: 7, text: 1620 }, + { index: 7, text: 1628 }, { index: 8, text: 83 }, { index: 9, text: 171 }, - { index: 10, text: 1790 }, + { index: 10, text: 1799 }, ], skillMap2: [ - { index: 11, text: 1139 }, + { index: 11, text: 1146 }, { index: 12, text: 57 }, @@ -4555,7 +4555,7 @@ export default { ], skillMap3: [ - { index: 14, text: 655 }, + { index: 14, text: 661 }, ], config: [ @@ -4568,7 +4568,7 @@ export default { Zhongli: { name: "Zhongli", - nameLocale: 1646, + nameLocale: 1654, element: "Geo", weapon: "Polearm", star: 5, @@ -4576,9 +4576,9 @@ export default { // avatar: Zhongli_avatar, avatar: getName("Zhongli"), splash: Zhongli_splash, - skillName1: 830, - skillName2: 428, - skillName3: 473, + skillName1: 836, + skillName2: 431, + skillName3: 477, skillMap1: [ { index: 0, text: 50 }, @@ -4587,33 +4587,33 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 413 }, + { index: 3, text: 415 }, { index: 4, text: 144 }, - { index: 5, text: 245 }, + { index: 5, text: 246 }, - { index: 6, text: 1620 }, + { index: 6, text: 1628 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1790 }, + { index: 9, text: 1799 }, ], skillMap2: [ - { index: 10, text: 577 }, + { index: 10, text: 581 }, - { index: 11, text: 249 }, + { index: 11, text: 250 }, - { index: 12, text: 1658 }, + { index: 12, text: 1666 }, ], skillMap3: [ - { index: 13, text: 655 }, + { index: 13, text: 661 }, ], config: [ @@ -4626,7 +4626,7 @@ export default { Kirara: { name: "Kirara", - nameLocale: 1364, + nameLocale: 1371, element: "Dendro", weapon: "Sword", star: 4, @@ -4634,9 +4634,9 @@ export default { // avatar: Kirara_avatar, avatar: getName("Momoka"), splash: Kirara_splash, - skillName1: 867, - skillName2: 387, - skillName3: 1330, + skillName1: 873, + skillName2: 390, + skillName3: 1337, skillMap1: [ { index: 0, text: 50 }, @@ -4647,35 +4647,35 @@ export default { { index: 3, text: 74 }, - { index: 4, text: 413 }, + { index: 4, text: 415 }, - { index: 5, text: 1623 }, + { index: 5, text: 1629 }, - { index: 6, text: 1625 }, + { index: 6, text: 1633 }, - { index: 7, text: 1629 }, + { index: 7, text: 1637 }, { index: 8, text: 83 }, { index: 9, text: 171 }, - { index: 10, text: 1790 }, + { index: 10, text: 1799 }, ], skillMap2: [ - { index: 11, text: 1245 }, + { index: 11, text: 1252 }, - { index: 12, text: 1185 }, + { index: 12, text: 1192 }, - { index: 13, text: 1386 }, + { index: 13, text: 1393 }, ], skillMap3: [ - { index: 14, text: 655 }, + { index: 14, text: 661 }, - { index: 15, text: 1186 }, + { index: 15, text: 1193 }, ], config: [ diff --git a/src/assets/_gen_pf.js b/src/assets/_gen_pf.js index d943fd1a..aa058dcf 100644 --- a/src/assets/_gen_pf.js +++ b/src/assets/_gen_pf.js @@ -12,37 +12,37 @@ export default { badge: ArtifactEff_image, config: [ - {"default":false,"name":"atk_use","title":708,"type":"bool"}, + {"default":false,"name":"atk_use","title":714,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"atk_weight","title":709,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"atk_weight","title":715,"type":"float"}, - {"default":true,"name":"atk_p_use","title":701,"type":"bool"}, + {"default":true,"name":"atk_p_use","title":707,"type":"bool"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"atk_p_weight","title":702,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"atk_p_weight","title":708,"type":"float"}, - {"default":false,"name":"hp_use","title":1239,"type":"bool"}, + {"default":false,"name":"hp_use","title":1246,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"hp_weight","title":1240,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"hp_weight","title":1247,"type":"float"}, - {"default":false,"name":"hp_p_use","title":1225,"type":"bool"}, + {"default":false,"name":"hp_p_use","title":1232,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"hp_p_weight","title":1226,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"hp_p_weight","title":1233,"type":"float"}, - {"default":false,"name":"def_use","title":1686,"type":"bool"}, + {"default":false,"name":"def_use","title":1695,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"def_weight","title":1687,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"def_weight","title":1696,"type":"float"}, - {"default":false,"name":"def_p_use","title":1681,"type":"bool"}, + {"default":false,"name":"def_p_use","title":1690,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"def_p_weight","title":1682,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"def_p_weight","title":1691,"type":"float"}, - {"default":true,"name":"critical_use","title":967,"type":"bool"}, + {"default":true,"name":"critical_use","title":973,"type":"bool"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"critical_weight","title":968,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"critical_weight","title":974,"type":"float"}, - {"default":true,"name":"critical_damage_use","title":961,"type":"bool"}, + {"default":true,"name":"critical_damage_use","title":967,"type":"bool"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"critical_damage_weight","title":962,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"critical_damage_weight","title":968,"type":"float"}, {"default":false,"name":"elemental_mastery_use","title":229,"type":"bool"}, diff --git a/src/assets/_gen_tf.js b/src/assets/_gen_tf.js index e030c501..5a2e4c5a 100644 --- a/src/assets/_gen_tf.js +++ b/src/assets/_gen_tf.js @@ -208,8 +208,8 @@ export default { "MaxATK": { name: "MaxATK", - nameLocale: 982, - description: 979, + nameLocale: 988, + description: 985, tags: [ "攻击", @@ -226,8 +226,8 @@ export default { "MaxDEF": { name: "MaxDEF", - nameLocale: 987, - description: 981, + nameLocale: 993, + description: 987, tags: [ "防御", @@ -244,8 +244,8 @@ export default { "MaxHP": { name: "MaxHP", - nameLocale: 984, - description: 980, + nameLocale: 990, + description: 986, tags: [ "生命", @@ -262,8 +262,8 @@ export default { "MaxEM": { name: "MaxEM", - nameLocale: 974, - description: 978, + nameLocale: 980, + description: 984, tags: [ "元素精通", @@ -280,8 +280,8 @@ export default { "MaxRecharge": { name: "MaxRecharge", - nameLocale: 975, - description: 977, + nameLocale: 981, + description: 983, tags: [ "", @@ -298,8 +298,8 @@ export default { "PyroDamage": { name: "PyroDamage", - nameLocale: 1123, - description: 1124, + nameLocale: 1130, + description: 1131, tags: [ "输出", @@ -311,15 +311,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1345,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1352,"type":"option"}, ], }, "CryoDamage": { name: "CryoDamage", - nameLocale: 259, - description: 260, + nameLocale: 260, + description: 261, tags: [ "输出", @@ -331,15 +331,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1345,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1352,"type":"option"}, ], }, "HydroDamage": { name: "HydroDamage", - nameLocale: 1045, - description: 1046, + nameLocale: 1051, + description: 1052, tags: [ "输出", @@ -351,15 +351,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1345,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1352,"type":"option"}, ], }, "ElectroDamage": { name: "ElectroDamage", - nameLocale: 1712, - description: 1713, + nameLocale: 1721, + description: 1722, tags: [ "输出", @@ -371,15 +371,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1345,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1352,"type":"option"}, ], }, "AnemoDamage": { name: "AnemoDamage", - nameLocale: 1747, - description: 1749, + nameLocale: 1756, + description: 1758, tags: [ "输出", @@ -391,15 +391,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1345,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1352,"type":"option"}, ], }, "DendroDamage": { name: "DendroDamage", - nameLocale: 1413, - description: 1414, + nameLocale: 1420, + description: 1421, tags: [ "", @@ -411,15 +411,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1345,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1352,"type":"option"}, ], }, "GeoDamage": { name: "GeoDamage", - nameLocale: 574, - description: 575, + nameLocale: 578, + description: 579, tags: [ "输出", @@ -431,15 +431,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1345,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1352,"type":"option"}, ], }, "PhysicalDamage": { name: "PhysicalDamage", - nameLocale: 1165, - description: 1166, + nameLocale: 1172, + description: 1173, tags: [ "输出", @@ -451,14 +451,14 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1345,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1352,"type":"option"}, ], }, "MaxVaporize": { name: "MaxVaporize", - nameLocale: 985, + nameLocale: 991, description: 177, tags: [ @@ -471,16 +471,16 @@ export default { config: [ - {"default":0,"name":"t","options":["火","水"],"title":1508,"type":"option"}, + {"default":0,"name":"t","options":["火","水"],"title":1515,"type":"option"}, - {"default":"NormalAttack","name":"skill","title":654,"type":"skill4"}, + {"default":"NormalAttack","name":"skill","title":660,"type":"skill4"}, ], }, "MaxMelt": { name: "MaxMelt", - nameLocale: 986, + nameLocale: 992, description: 179, tags: [ @@ -493,16 +493,16 @@ export default { config: [ - {"default":0,"name":"t","options":["火","冰"],"title":1508,"type":"option"}, + {"default":0,"name":"t","options":["火","冰"],"title":1515,"type":"option"}, - {"default":"NormalAttack","name":"skill","title":654,"type":"skill4"}, + {"default":"NormalAttack","name":"skill","title":660,"type":"skill4"}, ], }, "ExpectVaporize": { name: "ExpectVaporize", - nameLocale: 994, + nameLocale: 1000, description: 178, tags: [ @@ -515,16 +515,16 @@ export default { config: [ - {"default":0,"name":"t","options":["火","水"],"title":1508,"type":"option"}, + {"default":0,"name":"t","options":["火","水"],"title":1515,"type":"option"}, - {"default":"NormalAttack","name":"skill","title":654,"type":"skill4"}, + {"default":"NormalAttack","name":"skill","title":660,"type":"skill4"}, ], }, "ExpectMelt": { name: "ExpectMelt", - nameLocale: 995, + nameLocale: 1001, description: 180, tags: [ @@ -537,17 +537,17 @@ export default { config: [ - {"default":0,"name":"t","options":["火","冰"],"title":1508,"type":"option"}, + {"default":0,"name":"t","options":["火","冰"],"title":1515,"type":"option"}, - {"default":"NormalAttack","name":"skill","title":654,"type":"skill4"}, + {"default":"NormalAttack","name":"skill","title":660,"type":"skill4"}, ], }, "AlbedoDefault": { name: "AlbedoDefault", - nameLocale: 1694, - description: 815, + nameLocale: 1703, + description: 821, tags: [ "输出", @@ -564,8 +564,8 @@ export default { "AloyDefault": { name: "AloyDefault", - nameLocale: 439, - description: 932, + nameLocale: 442, + description: 938, tags: [ "输出", @@ -582,8 +582,8 @@ export default { "AmberDefault": { name: "AmberDefault", - nameLocale: 535, - description: 935, + nameLocale: 539, + description: 941, tags: [ "输出", @@ -600,8 +600,8 @@ export default { "AratakiIttoDefault": { name: "AratakiIttoDefault", - nameLocale: 1417, - description: 1419, + nameLocale: 1424, + description: 1426, tags: [ "输出", @@ -618,7 +618,7 @@ export default { "BarbaraDefault": { name: "BarbaraDefault", - nameLocale: 1402, + nameLocale: 1409, description: 176, tags: [ @@ -638,8 +638,8 @@ export default { "BeidouDefault": { name: "BeidouDefault", - nameLocale: 319, - description: 816, + nameLocale: 320, + description: 822, tags: [ "输出", @@ -656,8 +656,8 @@ export default { "BennettDamage": { name: "BennettDamage", - nameLocale: 1200, - description: 812, + nameLocale: 1207, + description: 818, tags: [ "辅助", @@ -682,8 +682,8 @@ export default { "BennettDefault": { name: "BennettDefault", - nameLocale: 1201, - description: 923, + nameLocale: 1208, + description: 929, tags: [ "辅助", @@ -702,8 +702,8 @@ export default { "ChongyunDefault": { name: "ChongyunDefault", - nameLocale: 1613, - description: 814, + nameLocale: 1621, + description: 820, tags: [ "副C", @@ -722,8 +722,8 @@ export default { "DilucDefault": { name: "DilucDefault", - nameLocale: 1588, - description: 949, + nameLocale: 1595, + description: 955, tags: [ "输出", @@ -735,17 +735,17 @@ export default { config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1464,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1471,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1456,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1463,"type":"float"}, ], }, "DionaDefault": { name: "DionaDefault", - nameLocale: 1591, - description: 916, + nameLocale: 1598, + description: 922, tags: [ "治疗", @@ -767,7 +767,7 @@ export default { "EulaDefault": { name: "EulaDefault", nameLocale: 166, - description: 808, + description: 814, tags: [ "输出", @@ -784,8 +784,8 @@ export default { "FischlDefault": { name: "FischlDefault", - nameLocale: 1450, - description: 809, + nameLocale: 1457, + description: 815, tags: [ "输出", @@ -802,8 +802,8 @@ export default { "GanyuDefault": { name: "GanyuDefault", - nameLocale: 1220, - description: 944, + nameLocale: 1227, + description: 950, tags: [ "输出", @@ -815,7 +815,7 @@ export default { config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1464,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1471,"type":"float"}, ], }, @@ -823,7 +823,7 @@ export default { "GorouDefault": { name: "GorouDefault", nameLocale: 150, - description: 818, + description: 824, tags: [ "辅助", @@ -842,8 +842,8 @@ export default { "HuTaoDefault": { name: "HuTaoDefault", - nameLocale: 1395, - description: 928, + nameLocale: 1402, + description: 934, tags: [ "输出", @@ -855,17 +855,17 @@ export default { config: [ - {"default":0.5,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1456,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1463,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1464,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1471,"type":"float"}, ], }, "JeanDefault": { name: "JeanDefault", - nameLocale: 1212, - description: 810, + nameLocale: 1219, + description: 816, tags: [ "副C", @@ -879,7 +879,7 @@ export default { config: [ - {"default":0.5,"max":1.0,"min":0.0,"name":"damage_weight","title":1060,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"damage_weight","title":1066,"type":"float"}, {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":232,"type":"float"}, @@ -888,8 +888,8 @@ export default { "KaedeharaKazuhaDamage": { name: "KaedeharaKazuhaDamage", - nameLocale: 1010, - description: 939, + nameLocale: 1016, + description: 945, tags: [ "输出", @@ -905,7 +905,7 @@ export default { {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, - {"default":0.5,"max":1.0,"min":0.0,"name":"swirl_rate","title":651,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"swirl_rate","title":657,"type":"float"}, {"default":0.9,"max":1.0,"min":0.0,"name":"other_dmg_ratio","title":156,"type":"float"}, @@ -914,8 +914,8 @@ export default { "KaedeharaKazuhaDefault": { name: "KaedeharaKazuhaDefault", - nameLocale: 1009, - description: 922, + nameLocale: 1015, + description: 928, tags: [ "辅助", @@ -934,8 +934,8 @@ export default { "KaeyaDefault": { name: "KaeyaDefault", - nameLocale: 286, - description: 811, + nameLocale: 287, + description: 817, tags: [ "输出", @@ -952,8 +952,8 @@ export default { "KamisatoAyakaDefault": { name: "KamisatoAyakaDefault", - nameLocale: 1314, - description: 807, + nameLocale: 1321, + description: 813, tags: [ "输出", @@ -972,8 +972,8 @@ export default { "KamisatoAyakaDps": { name: "KamisatoAyakaDps", - nameLocale: 1312, - description: 993, + nameLocale: 1319, + description: 999, tags: [ "输出", @@ -990,8 +990,8 @@ export default { "KamisatoAyatoDefault": { name: "KamisatoAyatoDefault", - nameLocale: 1308, - description: 915, + nameLocale: 1315, + description: 921, tags: [ "输出", @@ -1008,8 +1008,8 @@ export default { "KeqingDefault": { name: "KeqingDefault", - nameLocale: 302, - description: 953, + nameLocale: 303, + description: 959, tags: [ "输出", @@ -1021,15 +1021,15 @@ export default { config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"aggravate_rate","title":1551,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"aggravate_rate","title":1558,"type":"float"}, ], }, "KleeDefault": { name: "KleeDefault", - nameLocale: 364, - description: 367, + nameLocale: 367, + description: 370, tags: [ "输出", @@ -1049,7 +1049,7 @@ export default { "KujouSaraDamage": { name: "KujouSaraDamage", nameLocale: 106, - description: 307, + description: 308, tags: [ "输出", @@ -1071,7 +1071,7 @@ export default { "KujouSaraDefault": { name: "KujouSaraDefault", nameLocale: 107, - description: 954, + description: 960, tags: [ "辅助", @@ -1089,7 +1089,7 @@ export default { "LisaDefault": { name: "LisaDefault", nameLocale: 97, - description: 929, + description: 935, tags: [ "输出", @@ -1108,8 +1108,8 @@ export default { "MonaDefault": { name: "MonaDefault", - nameLocale: 1426, - description: 945, + nameLocale: 1433, + description: 951, tags: [ "输出", @@ -1130,8 +1130,8 @@ export default { "NingguangDefault": { name: "NingguangDefault", - nameLocale: 280, - description: 930, + nameLocale: 281, + description: 936, tags: [ "输出", @@ -1148,8 +1148,8 @@ export default { "NoelleDefault": { name: "NoelleDefault", - nameLocale: 1531, - description: 947, + nameLocale: 1538, + description: 953, tags: [ "输出", @@ -1167,7 +1167,7 @@ export default { "QiqiDefault": { name: "QiqiDefault", nameLocale: 65, - description: 918, + description: 924, tags: [ "治疗", @@ -1186,8 +1186,8 @@ export default { "RaidenShogunDefault": { name: "RaidenShogunDefault", - nameLocale: 1727, - description: 951, + nameLocale: 1736, + description: 957, tags: [ "输出", @@ -1206,8 +1206,8 @@ export default { "RazorDefault": { name: "RazorDefault", - nameLocale: 1720, - description: 943, + nameLocale: 1729, + description: 949, tags: [ "输出", @@ -1224,8 +1224,8 @@ export default { "RosariaDefault": { name: "RosariaDefault", - nameLocale: 1372, - description: 926, + nameLocale: 1379, + description: 932, tags: [ "辅助", @@ -1244,8 +1244,8 @@ export default { "SangonomiyaKokomiDefault": { name: "SangonomiyaKokomiDefault", - nameLocale: 1193, - description: 937, + nameLocale: 1200, + description: 943, tags: [ "输出", @@ -1264,8 +1264,8 @@ export default { "SayuDefault": { name: "SayuDefault", - nameLocale: 788, - description: 931, + nameLocale: 794, + description: 937, tags: [ "输出", @@ -1286,8 +1286,8 @@ export default { "ShenheDefault": { name: "ShenheDefault", - nameLocale: 1252, - description: 924, + nameLocale: 1259, + description: 930, tags: [ "辅助", @@ -1306,8 +1306,8 @@ export default { "SucroseDefault": { name: "SucroseDefault", - nameLocale: 1282, - description: 925, + nameLocale: 1289, + description: 931, tags: [ "辅助", @@ -1326,8 +1326,8 @@ export default { "TartagliaDefault": { name: "TartagliaDefault", - nameLocale: 1582, - description: 948, + nameLocale: 1589, + description: 954, tags: [ "输出", @@ -1344,8 +1344,8 @@ export default { "ThomaDefault": { name: "ThomaDefault", - nameLocale: 644, - description: 921, + nameLocale: 650, + description: 927, tags: [ "辅助", @@ -1364,8 +1364,8 @@ export default { "VentiDefault": { name: "VentiDefault", - nameLocale: 1108, - description: 940, + nameLocale: 1115, + description: 946, tags: [ "输出", @@ -1377,15 +1377,15 @@ export default { config: [ - {"default":0.7,"max":1.0,"min":0.0,"name":"swirl_rate","title":648,"type":"float"}, + {"default":0.7,"max":1.0,"min":0.0,"name":"swirl_rate","title":654,"type":"float"}, ], }, "XianglingDefault": { name: "XianglingDefault", - nameLocale: 1784, - description: 941, + nameLocale: 1793, + description: 947, tags: [ "输出", @@ -1399,19 +1399,19 @@ export default { {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":232,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1464,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1471,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1456,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1463,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"overload_rate","title":1557,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"overload_rate","title":1564,"type":"float"}, ], }, "XiaoDefault": { name: "XiaoDefault", - nameLocale: 1793, - description: 952, + nameLocale: 1802, + description: 958, tags: [ "输出", @@ -1428,8 +1428,8 @@ export default { "XingqiuDefault": { name: "XingqiuDefault", - nameLocale: 1469, - description: 813, + nameLocale: 1476, + description: 819, tags: [ "输出", @@ -1448,8 +1448,8 @@ export default { "XinyanDamage": { name: "XinyanDamage", - nameLocale: 1576, - description: 920, + nameLocale: 1583, + description: 926, tags: [ "输出", @@ -1466,8 +1466,8 @@ export default { "XinyanDefault": { name: "XinyanDefault", - nameLocale: 1575, - description: 927, + nameLocale: 1582, + description: 933, tags: [ "辅助", @@ -1489,7 +1489,7 @@ export default { "YaeMikoDefault": { name: "YaeMikoDefault", nameLocale: 238, - description: 689, + description: 695, tags: [ "输出", @@ -1503,19 +1503,19 @@ export default { {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_requirement","title":232,"type":"float"}, - {"default":0,"name":"combo","options":["不站场平A","站场平A"],"title":1584,"type":"option"}, + {"default":0,"name":"combo","options":["不站场平A","站场平A"],"title":1591,"type":"option"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"aggravate_rate","title":1551,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"aggravate_rate","title":1558,"type":"float"}, - {"default":0.0,"max":4.0,"min":0.0,"name":"hyperbloom_rate","title":1552,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"hyperbloom_rate","title":1559,"type":"float"}, ], }, "YanfeiDefault": { name: "YanfeiDefault", - nameLocale: 1149, - description: 942, + nameLocale: 1156, + description: 948, tags: [ "输出", @@ -1532,8 +1532,8 @@ export default { "YelanDefault": { name: "YelanDefault", - nameLocale: 466, - description: 933, + nameLocale: 470, + description: 939, tags: [ "输出", @@ -1547,15 +1547,15 @@ export default { {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1456,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1463,"type":"float"}, ], }, "YoimiyaDefault": { name: "YoimiyaDefault", - nameLocale: 550, - description: 936, + nameLocale: 554, + description: 942, tags: [ "输出", @@ -1567,9 +1567,9 @@ export default { config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1456,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1463,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1464,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1471,"type":"float"}, ], }, @@ -1577,7 +1577,7 @@ export default { "YunjinDefault": { name: "YunjinDefault", nameLocale: 136, - description: 817, + description: 823, tags: [ "辅助", @@ -1596,8 +1596,8 @@ export default { "ZhongliDefault": { name: "ZhongliDefault", - nameLocale: 1648, - description: 919, + nameLocale: 1656, + description: 925, tags: [ "爆发", @@ -1617,7 +1617,7 @@ export default { "KukiShinobuDefault": { name: "KukiShinobuDefault", nameLocale: 100, - description: 1570, + description: 1577, tags: [ "辅助", @@ -1636,8 +1636,8 @@ export default { "ShikanoinHeizouDefault": { name: "ShikanoinHeizouDefault", - nameLocale: 1808, - description: 1571, + nameLocale: 1817, + description: 1578, tags: [ "输出", @@ -1654,7 +1654,7 @@ export default { "TighnariDefault": { name: "TighnariDefault", - nameLocale: 695, + nameLocale: 701, description: 174, tags: [ @@ -1667,15 +1667,15 @@ export default { config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"spread_rate","title":1458,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"spread_rate","title":1465,"type":"float"}, ], }, "CynoDefault": { name: "CynoDefault", - nameLocale: 1547, - description: 640, + nameLocale: 1554, + description: 646, tags: [ "输出", @@ -1689,25 +1689,25 @@ export default { {"default":1.3,"max":3.0,"min":1.0,"name":"recharge_requirement","title":232,"type":"float"}, - {"default":0,"name":"combo","options":["乱a不取消","取消第五段"],"title":1584,"type":"option"}, + {"default":0,"name":"combo","options":["乱a不取消","取消第五段"],"title":1591,"type":"option"}, {"default":false,"name":"until_expire","title":19,"type":"bool"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"aggravate_rate","title":1551,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"aggravate_rate","title":1558,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"elecharged_rate","title":631,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"elecharged_rate","title":637,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"overload_rate","title":1556,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"overload_rate","title":1563,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"hyperbloom_rate","title":1552,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"hyperbloom_rate","title":1559,"type":"float"}, ], }, "NilouDefault": { name: "NilouDefault", - nameLocale: 518, - description: 934, + nameLocale: 522, + description: 940, tags: [ "", @@ -1723,18 +1723,18 @@ export default { {"default":1.0,"max":10.0,"min":0.0,"name":"q_ratio","title":216,"type":"float"}, - {"default":3.0,"max":10.0,"min":0.0,"name":"bloom_ratio","title":1367,"type":"float"}, + {"default":3.0,"max":10.0,"min":0.0,"name":"bloom_ratio","title":1374,"type":"float"}, - {"default":1000.0,"max":3000.0,"min":0.0,"name":"other_em","title":1677,"type":"float"}, + {"default":1000.0,"max":3000.0,"min":0.0,"name":"other_em","title":1686,"type":"float"}, - {"default":7.0,"max":10.0,"min":0.0,"name":"other_bloom_ratio","title":1678,"type":"float"}, + {"default":7.0,"max":10.0,"min":0.0,"name":"other_bloom_ratio","title":1687,"type":"float"}, ], }, "NahidaDefault": { name: "NahidaDefault", - nameLocale: 1352, + nameLocale: 1359, description: 181, tags: [ @@ -1747,23 +1747,23 @@ export default { config: [ - {"default":0,"max":1500,"min":0,"name":"em_requirement","title":1347,"type":"int"}, + {"default":0,"max":1500,"min":0,"name":"em_requirement","title":1354,"type":"int"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"spread_rate","title":1458,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"spread_rate","title":1465,"type":"float"}, - {"default":0.0,"max":4.0,"min":0.0,"name":"bloom_count","title":1367,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"bloom_count","title":1374,"type":"float"}, - {"default":0.0,"max":3.0,"min":0.0,"name":"burn_duration","title":1158,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"burn_duration","title":1165,"type":"float"}, - {"default":0,"max":2,"min":0,"name":"pryo_teammate_count","title":1128,"type":"int"}, + {"default":0,"max":2,"min":0,"name":"pryo_teammate_count","title":1135,"type":"int"}, ], }, "WandererDefault": { name: "WandererDefault", - nameLocale: 1083, - description: 1516, + nameLocale: 1089, + description: 1523, tags: [ "输出", @@ -1781,22 +1781,22 @@ export default { {"default":false,"name":"e_cryo","title":25,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"spd_extra","title":1746,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"spd_extra","title":1755,"type":"float"}, - {"default":1.0,"max":1.5,"min":0.5,"name":"spd_comp","title":718,"type":"float"}, + {"default":1.0,"max":1.5,"min":0.5,"name":"spd_comp","title":724,"type":"float"}, {"default":3,"max":12,"min":0,"name":"dash_count","title":29,"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":650,"type":"int"}, + {"default":12,"max":24,"min":0,"name":"swirl_count","title":656,"type":"int"}, ], }, "FaruzanDamage": { name: "FaruzanDamage", - nameLocale: 1195, + nameLocale: 1202, description: 175, tags: [ @@ -1816,7 +1816,7 @@ export default { "AlhaithamDefault": { name: "AlhaithamDefault", - nameLocale: 1400, + nameLocale: 1407, description: 160, tags: [ @@ -1829,21 +1829,21 @@ export default { config: [ - {"default":5.0,"max":10.0,"min":0.0,"name":"charged_ratio","title":1635,"type":"float"}, + {"default":5.0,"max":10.0,"min":0.0,"name":"charged_ratio","title":1643,"type":"float"}, {"default":5.0,"max":10.0,"min":0.0,"name":"e_ratio","title":210,"type":"float"}, {"default":1.0,"max":10.0,"min":0.0,"name":"q_ratio","title":218,"type":"float"}, - {"default":0.3,"max":1.0,"min":0.0,"name":"spread_ratio","title":1458,"type":"float"}, + {"default":0.3,"max":1.0,"min":0.0,"name":"spread_ratio","title":1465,"type":"float"}, ], }, "DehyaDefault": { name: "DehyaDefault", - nameLocale: 1594, - description: 950, + nameLocale: 1601, + description: 956, tags: [ "输出", @@ -1855,9 +1855,9 @@ export default { config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1464,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1471,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1456,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1463,"type":"float"}, {"default":6,"max":20,"min":0,"name":"e_count","title":92,"type":"int"}, @@ -1866,8 +1866,8 @@ export default { "MikaDefault": { name: "MikaDefault", - nameLocale: 1344, - description: 917, + nameLocale: 1351, + description: 923, tags: [ "治疗", @@ -1883,15 +1883,15 @@ export default { {"default":2.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, - {"default":0.6,"max":1.0,"min":0.0,"name":"crit_demand","title":969,"type":"float"}, + {"default":0.6,"max":1.0,"min":0.0,"name":"crit_demand","title":975,"type":"float"}, ], }, "FreminetDefault": { name: "FreminetDefault", - nameLocale: 1448, - description: 946, + nameLocale: 1455, + description: 952, tags: [ "", @@ -1908,8 +1908,8 @@ export default { "LyneyDefault": { name: "LyneyDefault", - nameLocale: 1005, - description: 938, + nameLocale: 1011, + description: 944, tags: [ "", diff --git a/src/assets/_gen_weapon.js b/src/assets/_gen_weapon.js index 194dac71..2466f641 100644 --- a/src/assets/_gen_weapon.js +++ b/src/assets/_gen_weapon.js @@ -138,6 +138,8 @@ // // import TalkingStick_tn from "@image/weapons/TalkingStick_tn" // +// import TidalShadow_tn from "@image/weapons/TidalShadow_tn" +// // import EngulfingLightning_tn from "@image/weapons/EngulfingLightning_tn" // // import SkywardSpine_tn from "@image/weapons/SkywardSpine_tn" @@ -190,6 +192,10 @@ // // import StaffOfTheScarletSands_tn from "@image/weapons/StaffOfTheScarletSands_tn" // +// import BalladOfTheFjords_tn from "@image/weapons/BalladOfTheFjords_tn" +// +// import RightfulReward_tn from "@image/weapons/RightfulReward_tn" +// // import LostPrayerToTheSacredWinds_tn from "@image/weapons/LostPrayerToTheSacredWinds_tn" // // import SkywardAtlas_tn from "@image/weapons/SkywardAtlas_tn" @@ -252,6 +258,8 @@ // // import JadeFallsSplendor_tn from "@image/weapons/JadeFallsSplendor_tn" // +// import SacrificialJade_tn from "@image/weapons/SacrificialJade_tn" +// // import PolarStar_tn from "@image/weapons/PolarStar_tn" // // import ThunderingPulse_tn from "@image/weapons/ThunderingPulse_tn" @@ -330,13 +338,13 @@ export default { MistsplitterReforged: { name: "MistsplitterReforged", internalName: "Sword_Narukami", - nameLocale: 1733, + nameLocale: 1742, star: 5, url: imageUrl("Sword_Narukami"), type: "Sword", - effect: 1438, + effect: 1445, configs: [ @@ -350,13 +358,13 @@ export default { AquilaFavonia: { name: "AquilaFavonia", internalName: "Sword_Falcon", - nameLocale: 1769, + nameLocale: 1778, star: 5, url: imageUrl("Sword_Falcon"), type: "Sword", - effect: 706, + effect: 712, configs: null, @@ -366,20 +374,20 @@ export default { SummitShaper: { name: "SummitShaper", internalName: "Sword_Kunwu", - nameLocale: 741, + nameLocale: 747, star: 5, url: imageUrl("Sword_Kunwu"), type: "Sword", - effect: 674, + effect: 680, configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1477,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1484,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":676,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":682,"type":"float"}, ], @@ -388,13 +396,13 @@ export default { SkywardBlade: { name: "SkywardBlade", internalName: "Sword_Dvalin", - nameLocale: 481, + nameLocale: 485, star: 5, url: imageUrl("Sword_Dvalin"), type: "Sword", - effect: 964, + effect: 970, configs: null, @@ -404,18 +412,18 @@ export default { FreedomSworn: { name: "FreedomSworn", internalName: "Sword_Widsith", - nameLocale: 1406, + nameLocale: 1413, star: 5, url: imageUrl("Sword_Widsith"), type: "Sword", - effect: 1772, + effect: 1781, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, ], @@ -424,13 +432,13 @@ export default { PrimordialJadeCutter: { name: "PrimordialJadeCutter", internalName: "Sword_Morax", - nameLocale: 1292, + nameLocale: 1299, star: 5, url: imageUrl("Sword_Morax"), type: "Sword", - effect: 1238, + effect: 1245, configs: null, @@ -440,13 +448,13 @@ export default { TheFlute: { name: "TheFlute", internalName: "Sword_Troupe", - nameLocale: 1335, + nameLocale: 1342, star: 4, url: imageUrl("Sword_Troupe"), type: "Sword", - effect: 909, + effect: 915, configs: null, @@ -456,13 +464,13 @@ export default { TheBlackSword: { name: "TheBlackSword", internalName: "Sword_Bloodstained", - nameLocale: 1813, + nameLocale: 1822, star: 4, url: imageUrl("Sword_Bloodstained"), type: "Sword", - effect: 897, + effect: 903, configs: null, @@ -472,18 +480,18 @@ export default { TheAlleyFlash: { name: "TheAlleyFlash", internalName: "Sword_Outlaw", - nameLocale: 957, + nameLocale: 963, star: 4, url: imageUrl("Sword_Outlaw"), type: "Sword", - effect: 1505, + effect: 1512, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, ], @@ -492,7 +500,7 @@ export default { SwordOfDescension: { name: "SwordOfDescension", internalName: "Sword_Psalmus", - nameLocale: 1702, + nameLocale: 1711, star: 4, url: imageUrl("Sword_Psalmus"), type: "Sword", @@ -508,7 +516,7 @@ export default { SacrificialSword: { name: "SacrificialSword", internalName: "Sword_Fossil", - nameLocale: 1321, + nameLocale: 1328, star: 4, url: imageUrl("Sword_Fossil"), type: "Sword", @@ -524,13 +532,13 @@ export default { RoyalLongsword: { name: "RoyalLongsword", internalName: "Sword_Theocrat", - nameLocale: 544, + nameLocale: 548, star: 4, url: imageUrl("Sword_Theocrat"), type: "Sword", - effect: 716, + effect: 722, configs: null, @@ -540,18 +548,18 @@ export default { PrototypeRancour: { name: "PrototypeRancour", internalName: "Sword_Proto", - nameLocale: 1523, + nameLocale: 1530, star: 4, url: imageUrl("Sword_Proto"), type: "Sword", - effect: 910, + effect: 916, configs: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1477,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1484,"type":"float"}, ], @@ -560,13 +568,13 @@ export default { AmenomaKageuchi: { name: "AmenomaKageuchi", internalName: "Sword_Bakufu", - nameLocale: 479, + nameLocale: 483, star: 4, url: imageUrl("Sword_Bakufu"), type: "Sword", - effect: 756, + effect: 762, configs: null, @@ -576,18 +584,18 @@ export default { LionsRoar: { name: "LionsRoar", internalName: "Sword_Rockkiller", - nameLocale: 323, + nameLocale: 324, star: 4, url: imageUrl("Sword_Rockkiller"), type: "Sword", - effect: 561, + effect: 565, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, ], @@ -596,18 +604,18 @@ export default { IronSting: { name: "IronSting", internalName: "Sword_Exotic", - nameLocale: 1654, + nameLocale: 1662, star: 4, url: imageUrl("Sword_Exotic"), type: "Sword", - effect: 1603, + effect: 1610, configs: [ - {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1477,"type":"float"}, + {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1484,"type":"float"}, ], @@ -616,7 +624,7 @@ export default { FesteringDesire: { name: "FesteringDesire", internalName: "Sword_Magnum", - nameLocale: 1397, + nameLocale: 1404, star: 4, url: imageUrl("Sword_Magnum"), type: "Sword", @@ -632,13 +640,13 @@ export default { FavoniusSword: { name: "FavoniusSword", internalName: "Sword_Zephyrus", - nameLocale: 1490, + nameLocale: 1497, star: 4, url: imageUrl("Sword_Zephyrus"), type: "Sword", - effect: 717, + effect: 723, configs: null, @@ -648,7 +656,7 @@ export default { CinnabarSpindle: { name: "CinnabarSpindle", internalName: "Sword_Opus", - nameLocale: 1579, + nameLocale: 1586, star: 4, url: imageUrl("Sword_Opus"), type: "Sword", @@ -659,7 +667,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, ], @@ -668,18 +676,18 @@ export default { BlackcliffLongsword: { name: "BlackcliffLongsword", internalName: "Sword_Blackrock", - nameLocale: 1818, + nameLocale: 1827, star: 4, url: imageUrl("Sword_Blackrock"), type: "Sword", - effect: 291, + effect: 292, configs: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1477,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1484,"type":"float"}, ], @@ -688,18 +696,18 @@ export default { HarbingerOfDawn: { name: "HarbingerOfDawn", internalName: "Sword_Dawn", - nameLocale: 1812, + nameLocale: 1821, star: 3, url: imageUrl("Sword_Dawn"), type: "Sword", - effect: 1241, + effect: 1248, configs: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, ], @@ -708,13 +716,13 @@ export default { FilletBlade: { name: "FilletBlade", internalName: "Sword_Sashimi", - nameLocale: 368, + nameLocale: 371, star: 3, url: imageUrl("Sword_Sashimi"), type: "Sword", - effect: 712, + effect: 718, configs: null, @@ -724,18 +732,18 @@ export default { SkyriderSword: { name: "SkyriderSword", internalName: "Sword_Mitsurugi", - nameLocale: 1774, + nameLocale: 1783, star: 3, url: imageUrl("Sword_Mitsurugi"), type: "Sword", - effect: 764, + effect: 770, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, ], @@ -744,18 +752,18 @@ export default { DarkIronSword: { name: "DarkIronSword", internalName: "Sword_Darker", - nameLocale: 958, + nameLocale: 964, star: 3, url: imageUrl("Sword_Darker"), type: "Sword", - effect: 1515, + effect: 1522, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, ], @@ -764,18 +772,18 @@ export default { CoolSteel: { name: "CoolSteel", internalName: "Sword_Steel", - nameLocale: 273, + nameLocale: 274, star: 3, url: imageUrl("Sword_Steel"), type: "Sword", - effect: 554, + effect: 558, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, ], @@ -784,13 +792,13 @@ export default { TravelersHandySword: { name: "TravelersHandySword", internalName: "Sword_Traveler", - nameLocale: 773, + nameLocale: 779, star: 3, url: imageUrl("Sword_Traveler"), type: "Sword", - effect: 1444, + effect: 1451, configs: null, @@ -800,7 +808,7 @@ export default { SilverSword: { name: "SilverSword", internalName: "Sword_Silver", - nameLocale: 1655, + nameLocale: 1663, star: 2, url: imageUrl("Sword_Silver"), type: "Sword", @@ -814,7 +822,7 @@ export default { DullBlade: { name: "DullBlade", internalName: "Sword_Blunt", - nameLocale: 786, + nameLocale: 792, star: 1, url: imageUrl("Sword_Blunt"), type: "Sword", @@ -828,13 +836,13 @@ export default { HaranGeppakuFutsu: { name: "HaranGeppakuFutsu", internalName: "Sword_Amenoma", - nameLocale: 1069, + nameLocale: 1075, star: 5, url: imageUrl("Sword_Amenoma"), type: "Sword", - effect: 1440, + effect: 1447, configs: [ @@ -848,18 +856,18 @@ export default { CursedBlade: { name: "CursedBlade", internalName: "Sword_Youtou", - nameLocale: 1336, + nameLocale: 1343, star: 4, url: imageUrl("Sword_Youtou"), type: "Sword", - effect: 891, + effect: 897, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, ], @@ -868,7 +876,7 @@ export default { SapwoodBlade: { name: "SapwoodBlade", internalName: "Sword_Arakalari", - nameLocale: 343, + nameLocale: 344, star: 4, url: imageUrl("Sword_Arakalari"), type: "Sword", @@ -877,7 +885,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, ], @@ -886,18 +894,18 @@ export default { XiphosMoonlight: { name: "XiphosMoonlight", internalName: "Sword_Pleroma", - nameLocale: 1488, + nameLocale: 1495, star: 4, url: imageUrl("Sword_Pleroma"), type: "Sword", - effect: 1039, + effect: 1045, configs: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, ], @@ -906,18 +914,18 @@ export default { KeyOfKhajNisut: { name: "KeyOfKhajNisut", internalName: "Sword_Deshret", - nameLocale: 426, + nameLocale: 429, star: 5, url: imageUrl("Sword_Deshret"), type: "Sword", - effect: 1236, + effect: 1243, configs: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1477,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1484,"type":"float"}, ], @@ -932,12 +940,12 @@ export default { type: "Sword", - effect: 711, + effect: 717, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, ], @@ -946,7 +954,7 @@ export default { LightOfFoliarIncision: { name: "LightOfFoliarIncision", internalName: "Sword_Ayus", - nameLocale: 1479, + nameLocale: 1486, star: 5, url: imageUrl("Sword_Ayus"), type: "Sword", @@ -955,7 +963,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, ], @@ -964,7 +972,7 @@ export default { WolfFang: { name: "WolfFang", internalName: "Sword_Boreas", - nameLocale: 1171, + nameLocale: 1178, star: 4, url: imageUrl("Sword_Boreas"), type: "Sword", @@ -986,20 +994,20 @@ export default { FinaleOfTheDeep: { name: "FinaleOfTheDeep", internalName: "Sword_Vorpal", - nameLocale: 1092, + nameLocale: 1099, star: 4, url: imageUrl("Sword_Vorpal"), type: "Sword", - effect: 760, + effect: 766, configs: [ - {"default":0.5,"max":1.0,"min":0.0,"name":"rate1","title":723,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"rate1","title":729,"type":"float"}, - {"default":0.5,"max":1.0,"min":0.0,"name":"rate2","title":726,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"rate2","title":731,"type":"float"}, ], @@ -1008,7 +1016,7 @@ export default { FleuveCendreFerryman: { name: "FleuveCendreFerryman", internalName: "Sword_Machination", - nameLocale: 1130, + nameLocale: 1137, star: 4, url: imageUrl("Sword_Machination"), type: "Sword", @@ -1019,7 +1027,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, ], @@ -1028,18 +1036,18 @@ export default { WolfsGravestone: { name: "WolfsGravestone", internalName: "Claymore_Wolfmound", - nameLocale: 1172, + nameLocale: 1179, star: 5, url: imageUrl("Claymore_Wolfmound"), type: "Claymore", - effect: 707, + effect: 713, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, ], @@ -1048,13 +1056,13 @@ export default { SkywardPride: { name: "SkywardPride", internalName: "Claymore_Dvalin", - nameLocale: 480, + nameLocale: 484, star: 5, url: imageUrl("Claymore_Dvalin"), type: "Claymore", - effect: 1604, + effect: 1611, configs: null, @@ -1064,20 +1072,20 @@ export default { TheUnforged: { name: "TheUnforged", internalName: "Claymore_Kunwu", - nameLocale: 781, + nameLocale: 787, star: 5, url: imageUrl("Claymore_Kunwu"), type: "Claymore", - effect: 674, + effect: 680, configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1477,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1484,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":676,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":682,"type":"float"}, ], @@ -1086,18 +1094,18 @@ export default { SongOfBrokenPines: { name: "SongOfBrokenPines", internalName: "Claymore_Widsith", - nameLocale: 1001, + nameLocale: 1007, star: 5, url: imageUrl("Claymore_Widsith"), type: "Claymore", - effect: 1771, + effect: 1780, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, ], @@ -1106,13 +1114,13 @@ export default { RedhornStonethresher: { name: "RedhornStonethresher", internalName: "Claymore_Itadorimaru", - nameLocale: 1550, + nameLocale: 1557, star: 5, url: imageUrl("Claymore_Itadorimaru"), type: "Claymore", - effect: 1685, + effect: 1694, configs: null, @@ -1122,18 +1130,18 @@ export default { Akuoumaru: { name: "Akuoumaru", internalName: "Claymore_Maria", - nameLocale: 624, + nameLocale: 630, star: 4, url: imageUrl("Claymore_Maria"), type: "Claymore", - effect: 1666, + effect: 1675, configs: [ - {"default":40,"max":400,"min":40,"name":"energy","title":1671,"type":"int"}, + {"default":40,"max":400,"min":40,"name":"energy","title":1680,"type":"int"}, ], @@ -1142,13 +1150,13 @@ export default { RoyalGreatsword: { name: "RoyalGreatsword", internalName: "Claymore_Theocrat", - nameLocale: 539, + nameLocale: 543, star: 4, url: imageUrl("Claymore_Theocrat"), type: "Claymore", - effect: 716, + effect: 722, configs: null, @@ -1158,18 +1166,18 @@ export default { Whiteblind: { name: "Whiteblind", internalName: "Claymore_Exotic", - nameLocale: 1261, + nameLocale: 1268, star: 4, url: imageUrl("Claymore_Exotic"), type: "Claymore", - effect: 906, + effect: 912, configs: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1477,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1484,"type":"float"}, ], @@ -1178,18 +1186,18 @@ export default { TheBell: { name: "TheBell", internalName: "Claymore_Troupe", - nameLocale: 1645, + nameLocale: 1653, star: 4, url: imageUrl("Claymore_Troupe"), type: "Claymore", - effect: 348, + effect: 349, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, ], @@ -1198,13 +1206,13 @@ export default { SnowTombedStarsilver: { name: "SnowTombedStarsilver", internalName: "Claymore_Dragonfell", - nameLocale: 1708, + nameLocale: 1717, star: 4, url: imageUrl("Claymore_Dragonfell"), type: "Claymore", - effect: 892, + effect: 898, configs: null, @@ -1214,13 +1222,13 @@ export default { FavoniusGreatsword: { name: "FavoniusGreatsword", internalName: "Claymore_Zephyrus", - nameLocale: 1491, + nameLocale: 1498, star: 4, url: imageUrl("Claymore_Zephyrus"), type: "Claymore", - effect: 717, + effect: 723, configs: null, @@ -1230,7 +1238,7 @@ export default { KatsuragikiriNagamasa: { name: "KatsuragikiriNagamasa", internalName: "Claymore_Bakufu", - nameLocale: 1023, + nameLocale: 1029, star: 4, url: imageUrl("Claymore_Bakufu"), type: "Claymore", @@ -1246,7 +1254,7 @@ export default { SacrificialGreatsword: { name: "SacrificialGreatsword", internalName: "Claymore_Fossil", - nameLocale: 1322, + nameLocale: 1329, star: 4, url: imageUrl("Claymore_Fossil"), type: "Claymore", @@ -1262,18 +1270,18 @@ export default { SerpentSpine: { name: "SerpentSpine", internalName: "Claymore_Kione", - nameLocale: 1465, + nameLocale: 1472, star: 4, url: imageUrl("Claymore_Kione"), type: "Claymore", - effect: 1502, + effect: 1509, configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1477,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1484,"type":"float"}, ], @@ -1282,18 +1290,18 @@ export default { BlackcliffSlasher: { name: "BlackcliffSlasher", internalName: "Claymore_Blackrock", - nameLocale: 1816, + nameLocale: 1825, star: 4, url: imageUrl("Claymore_Blackrock"), type: "Claymore", - effect: 291, + effect: 292, configs: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1477,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1484,"type":"float"}, ], @@ -1302,18 +1310,18 @@ export default { Rainslasher: { name: "Rainslasher", internalName: "Claymore_Perdue", - nameLocale: 1707, + nameLocale: 1716, star: 4, url: imageUrl("Claymore_Perdue"), type: "Claymore", - effect: 558, + effect: 562, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, ], @@ -1322,13 +1330,13 @@ export default { PrototypeArchaic: { name: "PrototypeArchaic", internalName: "Claymore_Proto", - nameLocale: 1522, + nameLocale: 1529, star: 4, url: imageUrl("Claymore_Proto"), type: "Claymore", - effect: 908, + effect: 914, configs: null, @@ -1338,7 +1346,7 @@ export default { LuxuriousSeaLord: { name: "LuxuriousSeaLord", internalName: "Claymore_MillenniaTuna", - nameLocale: 1472, + nameLocale: 1479, star: 4, url: imageUrl("Claymore_MillenniaTuna"), type: "Claymore", @@ -1354,18 +1362,18 @@ export default { LithicBlade: { name: "LithicBlade", internalName: "Claymore_Lapis", - nameLocale: 325, + nameLocale: 326, star: 4, url: imageUrl("Claymore_Lapis"), type: "Claymore", - effect: 1669, + effect: 1678, configs: [ - {"default":0,"max":4,"min":0,"name":"liyue_count","title":1675,"type":"int"}, + {"default":0,"max":4,"min":0,"name":"liyue_count","title":1684,"type":"int"}, ], @@ -1374,18 +1382,18 @@ export default { SkyriderGreatsword: { name: "SkyriderGreatsword", internalName: "Claymore_Mitsurugi", - nameLocale: 1773, + nameLocale: 1782, star: 3, url: imageUrl("Claymore_Mitsurugi"), type: "Claymore", - effect: 907, + effect: 913, configs: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1477,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1484,"type":"float"}, ], @@ -1400,7 +1408,7 @@ export default { type: "Claymore", - effect: 754, + effect: 760, configs: null, @@ -1410,18 +1418,18 @@ export default { BloodstainedGreatsword: { name: "BloodstainedGreatsword", internalName: "Claymore_Siegfry", - nameLocale: 1057, + nameLocale: 1063, star: 3, url: imageUrl("Claymore_Siegfry"), type: "Claymore", - effect: 560, + effect: 564, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, ], @@ -1430,13 +1438,13 @@ export default { WhiteIronGreatsword: { name: "WhiteIronGreatsword", internalName: "Claymore_Tin", - nameLocale: 1271, + nameLocale: 1278, star: 3, url: imageUrl("Claymore_Tin"), type: "Claymore", - effect: 292, + effect: 293, configs: null, @@ -1446,18 +1454,18 @@ export default { FerrousShadow: { name: "FerrousShadow", internalName: "Claymore_Glaive", - nameLocale: 1653, + nameLocale: 1661, star: 3, url: imageUrl("Claymore_Glaive"), type: "Claymore", - effect: 1232, + effect: 1239, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, ], @@ -1480,7 +1488,7 @@ export default { WasterGreatsword: { name: "WasterGreatsword", internalName: "Claymore_Aniki", - nameLocale: 1519, + nameLocale: 1526, star: 1, url: imageUrl("Claymore_Aniki"), type: "Claymore", @@ -1494,7 +1502,7 @@ export default { ForestRegalia: { name: "ForestRegalia", internalName: "Claymore_Arakalari", - nameLocale: 1027, + nameLocale: 1033, star: 4, url: imageUrl("Claymore_Arakalari"), type: "Claymore", @@ -1503,7 +1511,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, ], @@ -1512,18 +1520,18 @@ export default { MakhairaAquamarine: { name: "MakhairaAquamarine", internalName: "Claymore_Pleroma", - nameLocale: 1190, + nameLocale: 1197, star: 4, url: imageUrl("Claymore_Pleroma"), type: "Claymore", - effect: 1038, + effect: 1044, configs: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, ], @@ -1532,7 +1540,7 @@ export default { BeaconOfTheReedSea: { name: "BeaconOfTheReedSea", internalName: "Claymore_Deshret", - nameLocale: 1405, + nameLocale: 1412, star: 5, url: imageUrl("Claymore_Deshret"), type: "Claymore", @@ -1543,9 +1551,9 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate_atk","title":715,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate_atk","title":721,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate_hp","title":1242,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate_hp","title":1249,"type":"float"}, ], @@ -1554,7 +1562,7 @@ export default { MailedFlower: { name: "MailedFlower", internalName: "Claymore_Fleurfair", - nameLocale: 1779, + nameLocale: 1788, star: 4, url: imageUrl("Claymore_Fleurfair"), type: "Claymore", @@ -1565,7 +1573,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":600,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":605,"type":"float"}, ], @@ -1573,21 +1581,41 @@ export default { TalkingStick: { name: "TalkingStick", - internalName: "", - nameLocale: 1387, + internalName: "Claymore_BeastTamer", + nameLocale: 1394, star: 4, - url: imageUrl(""), + url: imageUrl("Claymore_BeastTamer"), type: "Claymore", - effect: 653, + effect: 659, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":1474,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":1481,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":1475,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":1482,"type":"float"}, + + ], + + }, + + TidalShadow: { + name: "TidalShadow", + internalName: "Claymore_Vorpal", + nameLocale: 1091, + star: 4, + url: imageUrl("Claymore_Vorpal"), + type: "Claymore", + + + effect: 352, + + + configs: [ + + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, ], @@ -1596,18 +1624,18 @@ export default { EngulfingLightning: { name: "EngulfingLightning", internalName: "Pole_Narukami", - nameLocale: 1460, + nameLocale: 1467, star: 5, url: imageUrl("Pole_Narukami"), type: "Polearm", - effect: 710, + effect: 716, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, ], @@ -1616,13 +1644,13 @@ export default { SkywardSpine: { name: "SkywardSpine", internalName: "Pole_Dvalin", - nameLocale: 484, + nameLocale: 488, star: 5, url: imageUrl("Pole_Dvalin"), type: "Polearm", - effect: 965, + effect: 971, configs: null, @@ -1632,20 +1660,20 @@ export default { PrimordialJadeWingedSpear: { name: "PrimordialJadeWingedSpear", internalName: "Pole_Morax", - nameLocale: 403, + nameLocale: 406, star: 5, url: imageUrl("Pole_Morax"), type: "Polearm", - effect: 389, + effect: 392, configs: [ - {"default":0.0,"max":7.0,"min":0.0,"name":"stack","title":1477,"type":"float"}, + {"default":0.0,"max":7.0,"min":0.0,"name":"stack","title":1484,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"full_rate","title":1119,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"full_rate","title":1126,"type":"float"}, ], @@ -1654,20 +1682,20 @@ export default { CalamityQueller: { name: "CalamityQueller", internalName: "Pole_Santika", - nameLocale: 623, + nameLocale: 629, star: 5, url: imageUrl("Pole_Santika"), type: "Polearm", - effect: 1439, + effect: 1446, 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":370,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"backend_rate","title":373,"type":"float"}, ], @@ -1676,18 +1704,18 @@ export default { StaffOfHoma: { name: "StaffOfHoma", internalName: "Pole_Homa", - nameLocale: 672, + nameLocale: 678, star: 5, url: imageUrl("Pole_Homa"), type: "Polearm", - effect: 1237, + effect: 1244, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"be50_rate","title":1230,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"be50_rate","title":1237,"type":"float"}, ], @@ -1696,20 +1724,20 @@ export default { VortexVanquisher: { name: "VortexVanquisher", internalName: "Pole_Kunwu", - nameLocale: 1539, + nameLocale: 1546, star: 5, url: imageUrl("Pole_Kunwu"), type: "Polearm", - effect: 674, + effect: 680, configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1477,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1484,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":676,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":682,"type":"float"}, ], @@ -1718,18 +1746,18 @@ export default { PrototypeStarglitter: { name: "PrototypeStarglitter", internalName: "Pole_Proto", - nameLocale: 1524, + nameLocale: 1531, star: 4, url: imageUrl("Pole_Proto"), type: "Polearm", - effect: 755, + effect: 761, configs: [ - {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1477,"type":"float"}, + {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1484,"type":"float"}, ], @@ -1738,18 +1766,18 @@ export default { LithicSpear: { name: "LithicSpear", internalName: "Pole_Lapis", - nameLocale: 328, + nameLocale: 329, star: 4, url: imageUrl("Pole_Lapis"), type: "Polearm", - effect: 1668, + effect: 1677, configs: [ - {"default":0,"max":4,"min":0,"name":"liyue_count","title":1675,"type":"int"}, + {"default":0,"max":4,"min":0,"name":"liyue_count","title":1684,"type":"int"}, ], @@ -1758,7 +1786,7 @@ export default { KitainCrossSpear: { name: "KitainCrossSpear", internalName: "Pole_Bakufu", - nameLocale: 407, + nameLocale: 410, star: 4, url: imageUrl("Pole_Bakufu"), type: "Polearm", @@ -1790,13 +1818,13 @@ export default { FavoniusLance: { name: "FavoniusLance", internalName: "Pole_Zephyrus", - nameLocale: 1494, + nameLocale: 1501, star: 4, url: imageUrl("Pole_Zephyrus"), type: "Polearm", - effect: 717, + effect: 723, configs: null, @@ -1806,13 +1834,13 @@ export default { DragonspineSpear: { name: "DragonspineSpear", internalName: "Pole_Everfrost", - nameLocale: 1821, + nameLocale: 1830, star: 4, url: imageUrl("Pole_Everfrost"), type: "Polearm", - effect: 892, + effect: 898, configs: null, @@ -1822,18 +1850,18 @@ export default { DragonsBane: { name: "DragonsBane", internalName: "Pole_Stardust", - nameLocale: 322, + nameLocale: 323, star: 4, url: imageUrl("Pole_Stardust"), type: "Polearm", - effect: 556, + effect: 560, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, ], @@ -1842,18 +1870,18 @@ export default { Deathmatch: { name: "Deathmatch", internalName: "Pole_Gladiator", - nameLocale: 271, + nameLocale: 272, star: 4, url: imageUrl("Pole_Gladiator"), type: "Polearm", - effect: 1566, + effect: 1573, configs: [ - {"default":true,"name":"ge2","title":1565,"type":"bool"}, + {"default":true,"name":"ge2","title":1572,"type":"bool"}, ], @@ -1862,13 +1890,13 @@ export default { CrescentPike: { name: "CrescentPike", internalName: "Pole_Exotic", - nameLocale: 1077, + nameLocale: 1083, star: 4, url: imageUrl("Pole_Exotic"), type: "Polearm", - effect: 1441, + effect: 1448, configs: null, @@ -1878,18 +1906,18 @@ export default { BlackcliffPole: { name: "BlackcliffPole", internalName: "Pole_Blackrock", - nameLocale: 1814, + nameLocale: 1823, star: 4, url: imageUrl("Pole_Blackrock"), type: "Polearm", - effect: 290, + effect: 291, configs: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1477,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1484,"type":"float"}, ], @@ -1898,18 +1926,18 @@ export default { WavebreakersFin: { name: "WavebreakersFin", internalName: "Pole_Maria", - nameLocale: 747, + nameLocale: 753, star: 4, url: imageUrl("Pole_Maria"), type: "Polearm", - effect: 1666, + effect: 1675, configs: [ - {"default":40,"max":400,"min":40,"name":"energy","title":1671,"type":"int"}, + {"default":40,"max":400,"min":40,"name":"energy","title":1680,"type":"int"}, ], @@ -1918,13 +1946,13 @@ export default { RoyalSpear: { name: "RoyalSpear", internalName: "Pole_Theocrat", - nameLocale: 541, + nameLocale: 545, star: 4, url: imageUrl("Pole_Theocrat"), type: "Polearm", - effect: 716, + effect: 722, configs: null, @@ -1934,13 +1962,13 @@ export default { Halberd: { name: "Halberd", internalName: "Pole_Halberd", - nameLocale: 1651, + nameLocale: 1659, star: 3, url: imageUrl("Pole_Halberd"), type: "Polearm", - effect: 563, + effect: 567, configs: null, @@ -1950,18 +1978,18 @@ export default { BlackTassel: { name: "BlackTassel", internalName: "Pole_Noire", - nameLocale: 1819, + nameLocale: 1828, star: 3, url: imageUrl("Pole_Noire"), type: "Polearm", - effect: 553, + effect: 557, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, ], @@ -1970,13 +1998,13 @@ export default { WhiteTassel: { name: "WhiteTassel", internalName: "Pole_Ruby", - nameLocale: 1268, + nameLocale: 1275, star: 3, url: imageUrl("Pole_Ruby"), type: "Polearm", - effect: 913, + effect: 919, configs: null, @@ -1986,7 +2014,7 @@ export default { IronPoint: { name: "IronPoint", internalName: "Pole_Rod", - nameLocale: 1652, + nameLocale: 1660, star: 2, url: imageUrl("Pole_Rod"), type: "Polearm", @@ -2000,7 +2028,7 @@ export default { BeginnersProtector: { name: "BeginnersProtector", internalName: "Pole_Gewalt", - nameLocale: 749, + nameLocale: 755, star: 1, url: imageUrl("Pole_Gewalt"), type: "Polearm", @@ -2014,7 +2042,7 @@ export default { Moonpiercer: { name: "Moonpiercer", internalName: "Pole_Arakalari", - nameLocale: 1537, + nameLocale: 1544, star: 4, url: imageUrl("Pole_Arakalari"), type: "Polearm", @@ -2023,7 +2051,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, ], @@ -2032,18 +2060,18 @@ export default { MissiveWindspear: { name: "MissiveWindspear", internalName: "Pole_Windvane", - nameLocale: 1748, + nameLocale: 1757, star: 4, url: imageUrl("Pole_Windvane"), type: "Polearm", - effect: 1510, + effect: 1517, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, ], @@ -2052,38 +2080,74 @@ export default { StaffOfTheScarletSands: { name: "StaffOfTheScarletSands", internalName: "Pole_Deshret", - nameLocale: 1549, + nameLocale: 1556, star: 5, url: imageUrl("Pole_Deshret"), type: "Polearm", - effect: 444, + effect: 447, configs: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1477,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1484,"type":"float"}, ], }, + BalladOfTheFjords: { + name: "BalladOfTheFjords", + internalName: "Pole_Shanty", + nameLocale: 582, + star: 4, + url: imageUrl("Pole_Shanty"), + type: "Polearm", + + + effect: 1674, + + + configs: [ + + {"default":true,"name":"use_effect","title":609,"type":"bool"}, + + ], + + }, + + RightfulReward: { + name: "RightfulReward", + internalName: "Pole_Vorpal", + nameLocale: 240, + star: 4, + url: imageUrl("Pole_Vorpal"), + type: "Polearm", + + + effect: 353, + + + configs: null, + + }, + LostPrayerToTheSacredWinds: { name: "LostPrayerToTheSacredWinds", internalName: "Catalyst_Fourwinds", - nameLocale: 421, + nameLocale: 424, star: 5, url: imageUrl("Catalyst_Fourwinds"), type: "Catalyst", - effect: 1331, + effect: 1338, configs: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1477,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1484,"type":"float"}, ], @@ -2092,7 +2156,7 @@ export default { SkywardAtlas: { name: "SkywardAtlas", internalName: "Catalyst_Dvalin", - nameLocale: 482, + nameLocale: 486, star: 5, url: imageUrl("Catalyst_Dvalin"), type: "Catalyst", @@ -2114,7 +2178,7 @@ export default { type: "Catalyst", - effect: 1062, + effect: 1068, configs: null, @@ -2124,20 +2188,20 @@ export default { MemoryOfDust: { name: "MemoryOfDust", internalName: "Catalyst_Kunwu", - nameLocale: 571, + nameLocale: 575, star: 5, url: imageUrl("Catalyst_Kunwu"), type: "Catalyst", - effect: 674, + effect: 680, configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1477,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1484,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":676,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":682,"type":"float"}, ], @@ -2146,18 +2210,18 @@ export default { WindAndSong: { name: "WindAndSong", internalName: "Catalyst_Outlaw", - nameLocale: 956, + nameLocale: 962, star: 4, url: imageUrl("Catalyst_Outlaw"), type: "Catalyst", - effect: 904, + effect: 910, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, ], @@ -2166,22 +2230,22 @@ export default { TheWidsith: { name: "TheWidsith", internalName: "Catalyst_Troupe", - nameLocale: 1079, + nameLocale: 1085, star: 4, url: imageUrl("Catalyst_Troupe"), type: "Catalyst", - effect: 1503, + effect: 1510, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"t1_rate","title":547,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"t1_rate","title":551,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"t2_rate","title":404,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"t2_rate","title":407,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"t3_rate","title":1662,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"t3_rate","title":1670,"type":"float"}, ], @@ -2190,20 +2254,20 @@ export default { SolarPearl: { name: "SolarPearl", internalName: "Catalyst_Resurrection", - nameLocale: 321, + nameLocale: 322, star: 4, url: imageUrl("Catalyst_Resurrection"), type: "Catalyst", - effect: 901, + effect: 907, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":720,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":726,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":722,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":728,"type":"float"}, ], @@ -2212,7 +2276,7 @@ export default { SacrificialFragments: { name: "SacrificialFragments", internalName: "Catalyst_Fossil", - nameLocale: 1324, + nameLocale: 1331, star: 4, url: imageUrl("Catalyst_Fossil"), type: "Catalyst", @@ -2228,13 +2292,13 @@ export default { RoyalGrimoire: { name: "RoyalGrimoire", internalName: "Catalyst_Theocrat", - nameLocale: 542, + nameLocale: 546, star: 4, url: imageUrl("Catalyst_Theocrat"), type: "Catalyst", - effect: 716, + effect: 722, configs: null, @@ -2244,13 +2308,13 @@ export default { PrototypeAmber: { name: "PrototypeAmber", internalName: "Catalyst_Proto", - nameLocale: 1526, + nameLocale: 1533, star: 4, url: imageUrl("Catalyst_Proto"), type: "Catalyst", - effect: 762, + effect: 768, configs: null, @@ -2266,12 +2330,12 @@ export default { type: "Catalyst", - effect: 1511, + effect: 1518, configs: [ - {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1477,"type":"float"}, + {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1484,"type":"float"}, ], @@ -2280,13 +2344,13 @@ export default { HakushinRing: { name: "HakushinRing", internalName: "Catalyst_Bakufu", - nameLocale: 1269, + nameLocale: 1276, star: 4, url: imageUrl("Catalyst_Bakufu"), type: "Catalyst", - effect: 1487, + effect: 1494, configs: null, @@ -2296,13 +2360,13 @@ export default { Frostbearer: { name: "Frostbearer", internalName: "Catalyst_Everfrost", - nameLocale: 619, + nameLocale: 625, star: 4, url: imageUrl("Catalyst_Everfrost"), type: "Catalyst", - effect: 892, + effect: 898, configs: null, @@ -2312,13 +2376,13 @@ export default { FavoniusCodex: { name: "FavoniusCodex", internalName: "Catalyst_Zephyrus", - nameLocale: 1493, + nameLocale: 1500, star: 4, url: imageUrl("Catalyst_Zephyrus"), type: "Catalyst", - effect: 717, + effect: 723, configs: null, @@ -2328,13 +2392,13 @@ export default { EyeOfPerception: { name: "EyeOfPerception", internalName: "Catalyst_Truelens", - nameLocale: 800, + nameLocale: 806, star: 4, url: imageUrl("Catalyst_Truelens"), type: "Catalyst", - effect: 894, + effect: 900, configs: null, @@ -2344,20 +2408,20 @@ export default { DodocoTales: { name: "DodocoTales", internalName: "Catalyst_Ludiharpastum", - nameLocale: 410, + nameLocale: 413, star: 4, url: imageUrl("Catalyst_Ludiharpastum"), type: "Catalyst", - effect: 903, + effect: 909, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":720,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":726,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":722,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":728,"type":"float"}, ], @@ -2366,18 +2430,18 @@ export default { BlackcliffAgate: { name: "BlackcliffAgate", internalName: "Catalyst_Blackrock", - nameLocale: 1817, + nameLocale: 1826, star: 4, url: imageUrl("Catalyst_Blackrock"), type: "Catalyst", - effect: 290, + effect: 291, configs: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1477,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1484,"type":"float"}, ], @@ -2386,20 +2450,20 @@ export default { KagurasVerity: { name: "KagurasVerity", internalName: "Catalyst_Narukami", - nameLocale: 1297, + nameLocale: 1304, star: 5, url: imageUrl("Catalyst_Narukami"), type: "Catalyst", - effect: 759, + effect: 765, configs: [ - {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1477,"type":"float"}, + {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1484,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"full_rate","title":1118,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"full_rate","title":1125,"type":"float"}, ], @@ -2408,18 +2472,18 @@ export default { OathswornEye: { name: "OathswornEye", internalName: "Catalyst_Jyanome", - nameLocale: 1520, + nameLocale: 1527, star: 4, url: imageUrl("Catalyst_Jyanome"), type: "Catalyst", - effect: 752, + effect: 758, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, ], @@ -2428,18 +2492,18 @@ export default { MagicGuide: { name: "MagicGuide", internalName: "Catalyst_Intro", - nameLocale: 1798, + nameLocale: 1807, star: 3, url: imageUrl("Catalyst_Intro"), type: "Catalyst", - effect: 557, + effect: 561, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, ], @@ -2448,13 +2512,13 @@ export default { OtherworldlyStory: { name: "OtherworldlyStory", internalName: "Catalyst_Lightnov", - nameLocale: 604, + nameLocale: 610, star: 3, url: imageUrl("Catalyst_Lightnov"), type: "Catalyst", - effect: 1442, + effect: 1449, configs: null, @@ -2464,18 +2528,18 @@ export default { EmeraldOrb: { name: "EmeraldOrb", internalName: "Catalyst_Jade", - nameLocale: 1385, + nameLocale: 1392, star: 3, url: imageUrl("Catalyst_Jade"), type: "Catalyst", - effect: 1514, + effect: 1521, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, ], @@ -2484,7 +2548,7 @@ export default { ThrillingTalesOfDragonSlayers: { name: "ThrillingTalesOfDragonSlayers", internalName: "Catalyst_Pulpfic", - nameLocale: 1517, + nameLocale: 1524, star: 3, url: imageUrl("Catalyst_Pulpfic"), type: "Catalyst", @@ -2500,18 +2564,18 @@ export default { TwinNephrite: { name: "TwinNephrite", internalName: "Catalyst_Phoney", - nameLocale: 1246, + nameLocale: 1253, star: 3, url: imageUrl("Catalyst_Phoney"), type: "Catalyst", - effect: 289, + effect: 290, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, ], @@ -2520,7 +2584,7 @@ export default { PocketGrimoire: { name: "PocketGrimoire", internalName: "Catalyst_Pocket", - nameLocale: 357, + nameLocale: 360, star: 2, url: imageUrl("Catalyst_Pocket"), type: "Catalyst", @@ -2534,7 +2598,7 @@ export default { ApprenticesNotes: { name: "ApprenticesNotes", internalName: "Catalyst_Apprentice", - nameLocale: 526, + nameLocale: 530, star: 1, url: imageUrl("Catalyst_Apprentice"), type: "Catalyst", @@ -2548,7 +2612,7 @@ export default { FruitOfFulfillment: { name: "FruitOfFulfillment", internalName: "Catalyst_Arakalari", - nameLocale: 1272, + nameLocale: 1279, star: 4, url: imageUrl("Catalyst_Arakalari"), type: "Catalyst", @@ -2557,7 +2621,7 @@ export default { configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1477,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1484,"type":"float"}, ], @@ -2566,18 +2630,18 @@ export default { WanderingEvenstar: { name: "WanderingEvenstar", internalName: "Catalyst_Pleroma", - nameLocale: 1081, + nameLocale: 1087, star: 4, url: imageUrl("Catalyst_Pleroma"), type: "Catalyst", - effect: 1038, + effect: 1044, configs: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, ], @@ -2586,18 +2650,18 @@ export default { AThousandFloatingDreams: { name: "AThousandFloatingDreams", internalName: "Catalyst_Ayus", - nameLocale: 324, + nameLocale: 325, star: 5, url: imageUrl("Catalyst_Ayus"), type: "Catalyst", - effect: 1667, + effect: 1676, configs: [ - {"default":1,"max":3,"min":0,"name":"same_count","title":369,"type":"int"}, + {"default":1,"max":3,"min":0,"name":"same_count","title":372,"type":"int"}, {"default":2,"max":3,"min":0,"name":"diff_count","title":88,"type":"int"}, @@ -2608,18 +2672,18 @@ export default { TulaytullahsRemembrance: { name: "TulaytullahsRemembrance", internalName: "Catalyst_Alaya", - nameLocale: 422, + nameLocale: 425, star: 5, url: imageUrl("Catalyst_Alaya"), type: "Catalyst", - effect: 911, + effect: 917, configs: [ - {"default":7.0,"max":10.0,"min":0.0,"name":"stack","title":1477,"type":"float"}, + {"default":7.0,"max":10.0,"min":0.0,"name":"stack","title":1484,"type":"float"}, ], @@ -2628,18 +2692,38 @@ export default { JadeFallsSplendor: { name: "JadeFallsSplendor", internalName: "Catalyst_Morax", - nameLocale: 1291, + nameLocale: 1298, star: 5, url: imageUrl("Catalyst_Morax"), type: "Catalyst", - effect: 768, + effect: 774, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, + + ], + + }, + + SacrificialJade: { + name: "SacrificialJade", + internalName: "", + nameLocale: 1617, + star: 4, + url: imageUrl(""), + type: "Catalyst", + + + effect: 457, + + + configs: [ + + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, ], @@ -2648,7 +2732,7 @@ export default { PolarStar: { name: "PolarStar", internalName: "Bow_Worldbane", - nameLocale: 258, + nameLocale: 259, star: 5, url: imageUrl("Bow_Worldbane"), type: "Bow", @@ -2668,13 +2752,13 @@ export default { ThunderingPulse: { name: "ThunderingPulse", internalName: "Bow_Narukami", - nameLocale: 1776, + nameLocale: 1785, star: 5, url: imageUrl("Bow_Narukami"), type: "Bow", - effect: 705, + effect: 711, configs: [ @@ -2688,18 +2772,18 @@ export default { ElegyOfTheEnd: { name: "ElegyOfTheEnd", internalName: "Bow_Widsith", - nameLocale: 1356, + nameLocale: 1363, star: 5, url: imageUrl("Bow_Widsith"), type: "Bow", - effect: 1770, + effect: 1779, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, ], @@ -2708,13 +2792,13 @@ export default { SkywardHarp: { name: "SkywardHarp", internalName: "Bow_Dvalin", - nameLocale: 483, + nameLocale: 487, star: 5, url: imageUrl("Bow_Dvalin"), type: "Bow", - effect: 960, + effect: 966, configs: null, @@ -2724,18 +2808,18 @@ export default { AmosBow: { name: "AmosBow", internalName: "Bow_Amos", - nameLocale: 1689, + nameLocale: 1698, star: 5, url: imageUrl("Bow_Amos"), type: "Bow", - effect: 898, + effect: 904, configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1477,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1484,"type":"float"}, ], @@ -2744,18 +2828,18 @@ export default { AlleyHunter: { name: "AlleyHunter", internalName: "Bow_Outlaw", - nameLocale: 955, + nameLocale: 961, star: 4, url: imageUrl("Bow_Outlaw"), type: "Bow", - effect: 1473, + effect: 1480, configs: [ - {"default":0.0,"max":10.0,"min":0.0,"name":"stack","title":1477,"type":"float"}, + {"default":0.0,"max":10.0,"min":0.0,"name":"stack","title":1484,"type":"float"}, ], @@ -2764,13 +2848,13 @@ export default { TheViridescentHunt: { name: "TheViridescentHunt", internalName: "Bow_Viridescent", - nameLocale: 1410, + nameLocale: 1417, star: 4, url: imageUrl("Bow_Viridescent"), type: "Bow", - effect: 895, + effect: 901, configs: null, @@ -2780,7 +2864,7 @@ export default { TheStringless: { name: "TheStringless", internalName: "Bow_Troupe", - nameLocale: 1361, + nameLocale: 1368, star: 4, url: imageUrl("Bow_Troupe"), type: "Bow", @@ -2796,7 +2880,7 @@ export default { SacrificialBow: { name: "SacrificialBow", internalName: "Bow_Fossil", - nameLocale: 1323, + nameLocale: 1330, star: 4, url: imageUrl("Bow_Fossil"), type: "Bow", @@ -2812,13 +2896,13 @@ export default { Rust: { name: "Rust", internalName: "Bow_Recluse", - nameLocale: 606, + nameLocale: 612, star: 4, url: imageUrl("Bow_Recluse"), type: "Bow", - effect: 914, + effect: 920, configs: null, @@ -2828,13 +2912,13 @@ export default { RoyalBow: { name: "RoyalBow", internalName: "Bow_Theocrat", - nameLocale: 545, + nameLocale: 549, star: 4, url: imageUrl("Bow_Theocrat"), type: "Bow", - effect: 716, + effect: 722, configs: null, @@ -2844,7 +2928,7 @@ export default { Predator: { name: "Predator", internalName: "Bow_Predator", - nameLocale: 692, + nameLocale: 698, star: 4, url: imageUrl("Bow_Predator"), type: "Bow", @@ -2855,7 +2939,7 @@ export default { configs: [ - {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1477,"type":"float"}, + {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1484,"type":"float"}, ], @@ -2864,18 +2948,18 @@ export default { PrototypeCrescent: { name: "PrototypeCrescent", internalName: "Bow_Proto", - nameLocale: 1525, + nameLocale: 1532, star: 4, url: imageUrl("Bow_Proto"), type: "Bow", - effect: 1638, + effect: 1646, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, ], @@ -2884,18 +2968,18 @@ export default { MouunsMoon: { name: "MouunsMoon", internalName: "Bow_Maria", - nameLocale: 971, + nameLocale: 977, star: 4, url: imageUrl("Bow_Maria"), type: "Bow", - effect: 1666, + effect: 1675, configs: [ - {"default":40,"max":400,"min":40,"name":"energy","title":1671,"type":"int"}, + {"default":40,"max":400,"min":40,"name":"energy","title":1680,"type":"int"}, ], @@ -2904,20 +2988,20 @@ export default { MitternachtsWaltz: { name: "MitternachtsWaltz", internalName: "Bow_Nachtblind", - nameLocale: 596, + nameLocale: 601, star: 4, url: imageUrl("Bow_Nachtblind"), type: "Bow", - effect: 902, + effect: 908, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":720,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":726,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":722,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":728,"type":"float"}, ], @@ -2926,18 +3010,18 @@ export default { Hamayumi: { name: "Hamayumi", internalName: "Bow_Bakufu", - nameLocale: 1290, + nameLocale: 1297, star: 4, url: imageUrl("Bow_Bakufu"), type: "Bow", - effect: 912, + effect: 918, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, ], @@ -2946,13 +3030,13 @@ export default { FavoniusWarbow: { name: "FavoniusWarbow", internalName: "Bow_Zephyrus", - nameLocale: 1492, + nameLocale: 1499, star: 4, url: imageUrl("Bow_Zephyrus"), type: "Bow", - effect: 717, + effect: 723, configs: null, @@ -2962,18 +3046,18 @@ export default { CompoundBow: { name: "CompoundBow", internalName: "Bow_Exotic", - nameLocale: 1650, + nameLocale: 1658, star: 4, url: imageUrl("Bow_Exotic"), type: "Bow", - effect: 893, + effect: 899, configs: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1477,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1484,"type":"float"}, ], @@ -2982,18 +3066,18 @@ export default { BlackcliffWarbow: { name: "BlackcliffWarbow", internalName: "Bow_Blackrock", - nameLocale: 1815, + nameLocale: 1824, star: 4, url: imageUrl("Bow_Blackrock"), type: "Bow", - effect: 290, + effect: 291, configs: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1477,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1484,"type":"float"}, ], @@ -3002,18 +3086,18 @@ export default { WindblumeOde: { name: "WindblumeOde", internalName: "Bow_Fleurfair", - nameLocale: 1756, + nameLocale: 1765, star: 4, url: imageUrl("Bow_Fleurfair"), type: "Bow", - effect: 761, + effect: 767, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, ], @@ -3022,18 +3106,18 @@ export default { RavenBow: { name: "RavenBow", internalName: "Bow_Crowfeather", - nameLocale: 1803, + nameLocale: 1812, star: 3, url: imageUrl("Bow_Crowfeather"), type: "Bow", - effect: 555, + effect: 559, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, ], @@ -3042,13 +3126,13 @@ export default { RecurveBow: { name: "RecurveBow", internalName: "Bow_Curve", - nameLocale: 345, + nameLocale: 346, star: 3, url: imageUrl("Bow_Curve"), type: "Bow", - effect: 292, + effect: 293, configs: null, @@ -3064,7 +3148,7 @@ export default { type: "Bow", - effect: 1639, + effect: 1647, configs: null, @@ -3074,18 +3158,18 @@ export default { SharpshootersOath: { name: "SharpshootersOath", internalName: "Bow_Arjuna", - nameLocale: 1300, + nameLocale: 1307, star: 3, url: imageUrl("Bow_Arjuna"), type: "Bow", - effect: 1644, + effect: 1652, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, ], @@ -3094,20 +3178,20 @@ export default { Slingshot: { name: "Slingshot", internalName: "Bow_Sling", - nameLocale: 608, + nameLocale: 614, star: 3, url: imageUrl("Bow_Sling"), type: "Bow", - effect: 896, + effect: 902, configs: [ {"default":true,"name":"is_effect","title":1,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, ], @@ -3116,7 +3200,7 @@ export default { SeasonedHuntersBow: { name: "SeasonedHuntersBow", internalName: "Bow_Old", - nameLocale: 341, + nameLocale: 342, star: 2, url: imageUrl("Bow_Old"), type: "Bow", @@ -3130,7 +3214,7 @@ export default { HuntersBow: { name: "HuntersBow", internalName: "Bow_Hunters", - nameLocale: 1180, + nameLocale: 1187, star: 1, url: imageUrl("Bow_Hunters"), type: "Bow", @@ -3144,18 +3228,18 @@ export default { AquaSimulacra: { name: "AquaSimulacra", internalName: "Bow_Kirin", - nameLocale: 1412, + nameLocale: 1419, star: 5, url: imageUrl("Bow_Kirin"), type: "Bow", - effect: 1235, + effect: 1242, configs: [ - {"default":true,"name":"is_enemy_around","title":388,"type":"bool"}, + {"default":true,"name":"is_enemy_around","title":391,"type":"bool"}, ], @@ -3164,18 +3248,18 @@ export default { FadingTwilight: { name: "FadingTwilight", internalName: "Bow_Fallensun", - nameLocale: 1454, + nameLocale: 1461, star: 4, url: imageUrl("Bow_Fallensun"), type: "Bow", - effect: 250, + effect: 251, configs: [ - {"default":2,"name":"state","options":["夕暮","流霞","朝晖"],"title":1168,"type":"option"}, + {"default":2,"name":"state","options":["夕暮","流霞","朝晖"],"title":1175,"type":"option"}, ], @@ -3184,18 +3268,18 @@ export default { HuntersPath: { name: "HuntersPath", internalName: "Bow_Ayus", - nameLocale: 1178, + nameLocale: 1185, star: 5, url: imageUrl("Bow_Ayus"), type: "Bow", - effect: 1437, + effect: 1444, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, ], @@ -3204,13 +3288,13 @@ export default { Trawler: { name: "Trawler", internalName: "Bow_Fin", - nameLocale: 1334, + nameLocale: 1341, star: 4, url: imageUrl("Bow_Fin"), type: "Bow", - effect: 753, + effect: 759, configs: null, @@ -3220,7 +3304,7 @@ export default { KingsSquire: { name: "KingsSquire", internalName: "Bow_Arakalari", - nameLocale: 1189, + nameLocale: 1196, star: 4, url: imageUrl("Bow_Arakalari"), type: "Bow", @@ -3229,7 +3313,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1476,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, ], @@ -3238,18 +3322,18 @@ export default { IbisPiercer: { name: "IbisPiercer", internalName: "Bow_Ibis", - nameLocale: 1804, + nameLocale: 1813, star: 4, url: imageUrl("Bow_Ibis"), type: "Bow", - effect: 1632, + effect: 1640, configs: [ - {"default":2.0,"max":2.0,"min":0.0,"name":"stack","title":572,"type":"float"}, + {"default":2.0,"max":2.0,"min":0.0,"name":"stack","title":576,"type":"float"}, ], @@ -3258,20 +3342,20 @@ export default { TheFirstGreatMagic: { name: "TheFirstGreatMagic", internalName: "Bow_Pledge", - nameLocale: 972, + nameLocale: 978, star: 5, url: imageUrl("Bow_Pledge"), type: "Bow", - effect: 1640, + effect: 1648, configs: [ - {"default":1.0,"max":3.0,"min":0.0,"name":"same_count","title":1672,"type":"float"}, + {"default":1.0,"max":3.0,"min":0.0,"name":"same_count","title":1681,"type":"float"}, - {"default":0.0,"max":3.0,"min":0.0,"name":"diff_count","title":1664,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"diff_count","title":1672,"type":"float"}, ], diff --git a/src/i18n/generated/en.json b/src/i18n/generated/en.json index fcab715e..bf8c4916 100644 --- a/src/i18n/generated/en.json +++ b/src/i18n/generated/en.json @@ -59,8 +59,8 @@ "Charge Level 1 DMG", "Charge Level 1 DMG-1", "Charge Level 1 DMG-2", - "Aimed Shot Charge Level 1", "Level 1 Aimed Shot", + "Aimed Shot Charge Level 1", "Level 1 Shattering Pressure DMG (Cryo)", "Level 1 Shattering Pressure DMG (Physical)", "Qiqi", @@ -74,8 +74,8 @@ "3-Hit DMG", "3-Hit DMG-1", "3-Hit DMG-2", - "3-Hit DMG/2", "2-Hit DMG/2", + "3-Hit DMG/2", "C6 Additional 3", "3-Hit Swing DMG", "Shunsuiken 3-Hit DMG", @@ -225,9 +225,9 @@ "Elemental Mastery", "EM", "元素精通提升50点。触发燃烧、原激化、绽放反应后,队伍中附近的所有角色元素精通提升30点,持续6秒。触发超激化、蔓激化、超绽放、烈绽放反应后,队伍中附近的所有角色元素精通提升20点,持续6秒。以上效果的持续时间独立计算。", - "Elemental Mastery +80", - "Elemental Mastery +80.", "Increases Elemental Mastery by 80.", + "Elemental Mastery +80.", + "Elemental Mastery +80", "EM Valid", "EM Weight", "Energy Below 50%", @@ -239,6 +239,7 @@ "Yae-「Sakura Channeling」", "Yae-Astute Amusement", "八重神子命座4:杀生樱的落雷命中敌人后,队伍中附近的所有角色获得20%雷元素伤害加成,持续5秒。", + "Rightful Reward", "C6", "C6 Effect", "C6 Rate", @@ -350,6 +351,8 @@ "Taking DMG generates a shield which absorbs DMG up to 20%-23%-26%-29%-32% of Max HP. This shield lasts for 10s or until broken, and can only be triggered once every 45-45-45-45-45s. While protected by a shield, the character gains 12%-15%-18%-21%-24% increased DMG.", "Characters who are healed by Seamless Shields will gain the Year of Verdant Favor effect: Each 1,000 Max HP that Baizhu possesses that does not exceed 50,000 will increase the Burning, Bloom, Hyperbloom, and Burgeon reaction DMG dealt by these characters by 2%, while the Aggravate and Spread reaction DMG dealt by these characters will be increased by 0.8%. This effect lasts 6s.", "Incoming elemental DMG increases corresponding Elemental RES by 30% for 10s. Can only occur once every 10s.", + "After the wielder is healed, ATK will be increased by 24%-30%-36%-42%-48% for 8s. This can be triggered even when the character is not on the field.", + "When the wielder is healed, restore 8-10-12-14-16 Energy. This effect can be triggered once every 10s, and can occur even when the character is not on the field.", "Affected by Cryo for 40% less time.", "Affected by Hydro for 40% less time.", "Affected by Pyro for 40% less time.", @@ -389,9 +392,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", "HP Regeneration Per Hit", + "HP Regeneration", + "Regeneration on Hit", "C2「Ceremony: Homecoming of Spirits」Stacks", "C2「Origins Known From the Stem」Ratio", "C2 Ratio", @@ -411,8 +414,8 @@ "Mocking Mask", "Dodoco Tales", "Ravaging Confession", - "4-Hit DMG/2", "4-Hit DMG", + "4-Hit DMG/2", "4-Hit DMG-1", "4-Hit DMG-2", "4-Hit DMG-3", @@ -444,8 +447,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」", @@ -453,6 +456,7 @@ "Characters affected by the Prayer of the Crimson Crown caused by Sacred Rite: Wagtail’s Tide will deal 0.5% increased DMG to opponents for every 1,000 points of Candace’s Max HP when they deal Elemental DMG with their Normal Attacks.", "While protected by a shield, gain an additional 40% Normal and Charged Attack DMG.", "Characters under the effect of Golden Chalice’s Bounty will increase the Elemental Mastery of all nearby characters by 100 for 10s whenever they are hit by Dendro attacks", + "When not on the field for more than 5s, Max HP will be increased by 32%-40%-48%-56%-64% and Elemental Mastery will be increased by 40-50-60-70-80. These effects will be canceled after the wielder has been on the field for 10s.", "Under Eye of Stormy Judgment", "Summer Night's Moment", "Summer Night's Bloom", @@ -577,6 +581,7 @@ "Maximize Crit or Avg Geo Damage", "Crystal Collapse DMG", "Stone Stele DMG", + "Ballad of the Fjords", "Feather of Jagged Peaks", "Goblet of Chiseled Crag", "Saichimonji Slash DMG", @@ -598,11 +603,12 @@ "Mitternachts Waltz", "Use C4", "Use Talent「Regina Probationum」", - "Rate", - "Equivalent Rate of Effect", "Apply Ratio", + "Equivalent Rate of Effect", + "Rate", "Niwabi Enshou", "Opening a chest regenerates 30% Max HP over 5s.", + "Use Effect", "Otherworldly Story", "Goblet of the Sojourner", "Rust", @@ -684,8 +690,8 @@ "DoT", "Continuous Regeneration", "Continuous Regeneration Per Sec", - "HP Regeneration Over Time", "Continuous Regeneration", + "HP Regeneration Over Time", "Continuous Healing", "Conductor's Top Hat", "DPS Yae Miko", @@ -724,8 +730,8 @@ "Effect2 Ratio", "Effect 1 Rate", "Effect① Ratio", - "Effect② Ratio", "Effect 2 Rate", + "Effect② Ratio", "Effect Apply Ratio", "Equivalent Stack", "Enemy Pyro Coverage", @@ -1063,8 +1069,8 @@ "Healing Bonus", "Healing Bonus increased by 10%-12.5%-15%-17.5%-20%, Normal Attack DMG is increased by 1%-1.5%-2%-2.5%-3% of the Max HP of the character equipping this weapon. For 12s after using an Elemental Burst, Normal Attacks that hit opponents will restore 0.6 Energy. Energy can be restored this way once every 0.1s.", "Healing Bonus +15%.", - "Healing", "Regeneration", + "Healing", "Faruzan-「The Wind’s Secret Ways」", "Faruzan Base ATK", "Illusory Bubble Explosion DMG", @@ -1084,6 +1090,7 @@ "Wanderer", "Wanderer-Eons Adrift", "Surging Blade DMG", + "Tidal Shadow", "Pressurized Floe", "Flowing Rings", "Dance of Abzendegi: Distant Dreams, Listening Spring", @@ -1140,9 +1147,9 @@ "Leonine Bite", "Tap DMG", "Tapping DMG", + "Tapping Skill DMG", "Press Skill DMG", "Tap Skill DMG", - "Tapping Skill DMG", "Fiery Collapse DMG", "Crimson Witch of Flames", "Flame-Mane’s Fist DMG", @@ -1161,9 +1168,9 @@ "Explosion DMG", "Burst DMG", "Explosive Puppet", - "Explosion DMG", "", "Explosion DMG", + "Explosion DMG", "Physical DMG", "Maximize Crit or Avg Physical Damage", "Inuzaka All-Round Defense", @@ -1604,11 +1611,12 @@ "Sundial of the Sojourner", "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 is increased by 25%.", "Physical DMG +25%", + "Physical DMG is increased by 25%.", "Fashioner’s Tanglevine Shaft", "Triggered Burning, Bloom, Catalyze or Spread", "Frost-Weaved Dignity", + "Sacrificial Jade", "Wine-Stained Tricorne", "Chongyun", "Chongyun-「Rimechaser Blade」", @@ -1620,13 +1628,13 @@ "Charged Attack-4 Scarlet Seals", "Charged Attack-No Scarlet Seals", "Charged Attack DMG", - "Charged Attack DMG-1", - "Charged DMG-1", "Charnged DMG-1", + "Charged DMG-1", + "Charged Attack DMG-1", "Charged Attack-1", "Charnged DMG-2", - "Charged Attack DMG-2", "Charged Attack-2", + "Charged Attack DMG-2", "Charged DMG-2", "Charnged DMG-3", "Charged Attack DMG/3", @@ -1665,6 +1673,7 @@ "Different Element Count", "Diff Element Number", "Different Element Count", + "When there are at least 3 different Elemental Types in your party, Elemental Mastery will be increased by 120-150-180-210-240.", "For every point of the entire party's combined maximum Energy capacity, the Elemental Burst DMG of the character equipping this weapon is increased by 0.12%-0.15%-0.18%-0.21%-0.24%. A maximum of 40%-50%-60%-70%-80% increased Elemental Burst DMG can be achieved this way.", "Party members other than the equipping character will provide the equipping character with buffs based on whether their Elemental Type is the same as the latter or not. If their Elemental Types are the same, increase Elemental Mastery by 32-40-48-56-64. If not, increase the equipping character’s DMG Bonus from their Elemental Type by 10%-14%-18%-22%-26%. Each of the aforementioned effects can have up to 3 stacks. Additionally, all nearby party members other than the equipping character will have their Elemental Mastery increased by 40-42-44-46-48. Multiple such effects from multiple such weapons can stack.", "For every character in the party who hails from Liyue, the character who equips this weapon gains a 7%-8%-9%-10%-11% ATK increase and a 3%-4%-5%-6%-7% CRIT Rate increase. This effect stacks up to 4 times.", diff --git a/src/i18n/generated/zh-cn.json b/src/i18n/generated/zh-cn.json index 22835498..bee6f7ba 100644 --- a/src/i18n/generated/zh-cn.json +++ b/src/i18n/generated/zh-cn.json @@ -239,6 +239,7 @@ "八重神子-「绯樱引雷章」", "八重神子-浮世笑百姿", "八重神子命座4:杀生樱的落雷命中敌人后,队伍中附近的所有角色获得20%雷元素伤害加成,持续5秒。", + "公义的酬报", "六命", "六命效果", "六命比例", @@ -350,6 +351,8 @@ "受到伤害时,生成一个伤害吸收量等同于生命值上限20%-23%-26%-29%-32%的护盾,持续10秒或直到护盾失效,每45-45-45-45-45秒只能触发一次。角色处于护盾庇护下时,造成的伤害提升12%-15%-18%-21%-24%。", "受到无郤气护盾治疗的角色,将获得「木运之岁」效果:基于白术生命值上限不超过50000点的部分,每1000点将使该角色触发的燃烧、绽放、超绽放、烈绽放反应造成的伤害提升2%,超激化、蔓激化反应带来的伤害提升0.8%,持续6秒。", "受到某个元素类型的伤害后,相应的抗性提升30%,持续10秒。该效果每10秒只能触发一次。", + "受到治疗后,攻击力提升24%-30%-36%-42%-48%,持续8秒。角色处于队伍后台也能触发。", + "受到治疗时,恢复8-10-12-14-16点能量,该效果每10秒至多触发一次,角色处于队伍后台时也能触发。", "受到的冰元素附着效果的持续时间减少40%。", "受到的水元素附着效果的持续时间减少40%。", "受到的火元素附着效果的持续时间减少40%。", @@ -453,6 +456,7 @@ "处于圣仪·灰鸰衒潮的赤冕祝祷状态下的角色,普通攻击对敌人造成元素伤害时,坎蒂丝每1000点生命值上限会使这次伤害提高0.5%。", "处于护盾庇护下时,额外获得40%普通攻击和重击伤害加成。", "处于金杯的丰馈状态下的角色受到草元素攻击会使附近的所有角色元素精通提升100点,持续10秒", + "处于队伍后台超过5秒后,生命值上限提升32%-40%-48%-56%-64%,元素精通提升40-50-60-70-80点。装备者登场并留在场上10秒后,该效果将失效。", "处于雷罚恶曜之眼", "夏祭之刻", "夏祭之花", @@ -577,6 +581,7 @@ "岩元素伤害最大化或最大化期望", "岩晶崩破伤害", "岩脊伤害", + "峡湾长歌", "嵯峨群峰之翼", "巉岩琢塑之樽", "左一文字斩伤害", @@ -603,6 +608,7 @@ "应用比例", "庭火焰硝", "开启各类宝箱后的5秒内,持续恢复30%生命值。", + "开启被动", "异世界行记", "异国之盏", "弓藏", @@ -1084,6 +1090,7 @@ "流浪者", "流浪者-久世浮倾", "流涌之刃伤害", + "浪影阔剑", "浮冰增压", "浮溯之珏", "浮莲舞步·远梦聆泉", @@ -1609,6 +1616,7 @@ "造生缠藤箭", "造生缠藤箭触发了燃烧、绽放、原激化或蔓激化反应", "遍结寒霜的傲骨", + "遗祀玉珑", "酒渍船帽", "重云", "重云-「追冰剑诀」", @@ -1665,6 +1673,7 @@ "队伍不同元素数量", "队伍不同元素数量", "队伍不同属性数量", + "队伍中存在至少三种不同元素类型的角色时,元素精通提升120-150-180-210-240点。", "队伍中所有角色的元素能量上限的总和,每1点能使装备此武器的角色的元素爆发造成的伤害提高0.12%-0.15%-0.18%-0.21%-0.24%,通过这种方式,元素爆发造成的伤害至多提高40%-50%-60%-70%-80%。", "队伍中每个其他角色,都会依据元素类型与装备者相同与否,为装备者提供提升效果。相同:元素精通提升32-40-48-56-64点;不同:装备者元素类型的元素伤害加成提升10%-14%-18%-22%-26%。上述提升效果每种至多叠加3层。此外,队伍中装备者以外的附近角色的元素精通提升40-42-44-46-48点,多件同名武器产生的此效果可以叠加。", "队伍中每有一位璃月角色,装备此武器的角色便获得7%-8%-9%-10%-11%攻击力提升与3%-4%-5%-6%-7%暴击率提升。至多获得4层提升效果。", From 2290552b769b5fecf15623fd22bd3383ad3ab1fb Mon Sep 17 00:00:00 2001 From: wormtql <584130248@qq.com> Date: Sat, 19 Aug 2023 11:28:37 +0800 Subject: [PATCH 6/7] feat(4.0): Add weapons --- mona_core/src/weapon/weapon_config.rs | 3 + mona_core/src/weapon/weapon_name.rs | 3 + mona_core/src/weapon/weapons/bows/mod.rs | 4 + .../weapons/bows/scion_of_the_blazing_sun.rs | 60 + .../weapon/weapons/bows/song_of_stillness.rs | 61 + .../weapons/catalysts/flowing_purity.rs | 105 + mona_core/src/weapon/weapons/catalysts/mod.rs | 2 + src/assets/_gen_artifact.js | 648 +++--- src/assets/_gen_buff.js | 456 ++--- src/assets/_gen_character.js | 1740 ++++++++--------- src/assets/_gen_pf.js | 32 +- src/assets/_gen_tf.js | 450 ++--- src/assets/_gen_weapon.js | 820 ++++---- src/i18n/generated/en.json | 46 +- src/i18n/generated/zh-cn.json | 6 + 15 files changed, 2377 insertions(+), 2059 deletions(-) create mode 100644 mona_core/src/weapon/weapons/bows/scion_of_the_blazing_sun.rs create mode 100644 mona_core/src/weapon/weapons/bows/song_of_stillness.rs create mode 100644 mona_core/src/weapon/weapons/catalysts/flowing_purity.rs diff --git a/mona_core/src/weapon/weapon_config.rs b/mona_core/src/weapon/weapon_config.rs index 63bc3eb8..406a896f 100644 --- a/mona_core/src/weapon/weapon_config.rs +++ b/mona_core/src/weapon/weapon_config.rs @@ -88,6 +88,7 @@ pub enum WeaponConfig { TulaytullahsRemembrance { stack: f64 }, JadeFallsSplendor { rate: f64 }, SacrificialJade { rate: f64 }, + FlowingPurity { rate1: f64, rate2: f64 }, // Bow PolarStar { stack: usize }, @@ -112,6 +113,8 @@ pub enum WeaponConfig { KingsSquire { rate: f64 }, IbisPiercer { stack: f64 }, TheFirstGreatMagic { same_count: f64, diff_count: f64 }, + ScionOfTheBlazingSun { rate: f64 }, + SongOfStillness { rate: f64 }, } impl Default for WeaponConfig { diff --git a/mona_core/src/weapon/weapon_name.rs b/mona_core/src/weapon/weapon_name.rs index 5166f9e7..c3cd5bce 100644 --- a/mona_core/src/weapon/weapon_name.rs +++ b/mona_core/src/weapon/weapon_name.rs @@ -149,6 +149,7 @@ pub enum WeaponName { TulaytullahsRemembrance, JadeFallsSplendor, SacrificialJade, + FlowingPurity, // bows PolarStar, @@ -185,4 +186,6 @@ pub enum WeaponName { KingsSquire, IbisPiercer, TheFirstGreatMagic, + ScionOfTheBlazingSun, + SongOfStillness, } diff --git a/mona_core/src/weapon/weapons/bows/mod.rs b/mona_core/src/weapon/weapons/bows/mod.rs index cd6633d8..17682643 100644 --- a/mona_core/src/weapon/weapons/bows/mod.rs +++ b/mona_core/src/weapon/weapons/bows/mod.rs @@ -32,6 +32,8 @@ pub use trawler::Trawler; pub use kings_squire::KingsSquire; pub use ibis_piercer::IbisPiercer; pub use the_first_great_magic::TheFirstGreatMagic; +pub use scion_of_the_blazing_sun::ScionOfTheBlazingSun; +pub use song_of_stillness::SongOfStillness; pub mod polar_star; pub mod thundering_pulse; @@ -67,3 +69,5 @@ pub mod trawler; pub mod kings_squire; pub mod ibis_piercer; pub mod the_first_great_magic; +pub mod scion_of_the_blazing_sun; +pub mod song_of_stillness; diff --git a/mona_core/src/weapon/weapons/bows/scion_of_the_blazing_sun.rs b/mona_core/src/weapon/weapons/bows/scion_of_the_blazing_sun.rs new file mode 100644 index 00000000..07024ccc --- /dev/null +++ b/mona_core/src/weapon/weapons/bows/scion_of_the_blazing_sun.rs @@ -0,0 +1,60 @@ +use crate::attribute::{Attribute, AttributeName}; +use crate::character::character_common_data::CharacterCommonData; +use crate::common::i18n::locale; +use crate::common::item_config_type::ItemConfig; +use crate::common::WeaponType; +use crate::weapon::weapon_common_data::WeaponCommonData; +use crate::weapon::weapon_effect::WeaponEffect; +use crate::weapon::weapon_static_data::WeaponStaticData; +use crate::weapon::weapon_trait::WeaponTrait; +use crate::weapon::{WeaponConfig, WeaponName}; +use crate::weapon::weapon_base_atk::WeaponBaseATKFamily; +use crate::weapon::weapon_sub_stat::WeaponSubStatFamily; + +pub struct ScionOfTheBlazingSunEffect { + pub rate: f64, +} + +impl WeaponEffect
for ScionOfTheBlazingSunEffect { + fn apply(&self, data: &WeaponCommonData, attribute: &mut A) { + attribute.set_value_by(AttributeName::BonusChargedAttack, "烈阳之嗣被动", self.rate * (0.07 * data.refine as f64 + 0.21)); + } +} + +pub struct ScionOfTheBlazingSun; + +impl WeaponTrait for ScionOfTheBlazingSun { + const META_DATA: WeaponStaticData = WeaponStaticData { + name: WeaponName::ScionOfTheBlazingSun, + internal_name: "Bow_Gurabad", + weapon_type: WeaponType::Bow, + weapon_sub_stat: Some(WeaponSubStatFamily::CriticalRate40), + weapon_base: WeaponBaseATKFamily::ATK565, + star: 4, + #[cfg(not(target_family = "wasm"))] + effect: Some(locale!( + zh_cn: "重击命中敌人后,会向命中的敌人降下阳炎矢,造成攻击力60%-75%-90%-105%-120%的伤害,并为受到阳炎矢伤害的敌人施加持续10秒的灼心效果。装备者的重击对处于灼心状态下的敌人造成的伤害提升28%-35%-42%-49%-56%。阳炎矢每10秒至多触发一次。", + en: "After a Charged Attack hits an opponent, a Sunfire Arrow will descend upon the opponent hit, dealing 60%-75%-90%-105%-120% ATK as DMG, and applying the Heartsearer effect to the opponent damaged by said Arrow for 10s. Opponents affected by Heartsearer take 28%-35%-42%-49%-56% more Charged Attack DMG from the wielder. A Sunfire Arrow can be triggered once every 10s." + )), + #[cfg(not(target_family = "wasm"))] + name_locale: locale!( + zh_cn: "烈阳之嗣", + en: "Scion of the Blazing Sun" + ) + }; + + #[cfg(not(target_family = "wasm"))] + const CONFIG_DATA: Option<&'static [ItemConfig]> = Some(&[ + ItemConfig::RATE01 + ]); + + fn get_effect(character: &CharacterCommonData, config: &WeaponConfig) -> Option>> { + let rate = match *config { + WeaponConfig::ScionOfTheBlazingSun { rate } => rate, + _ => 0.0 + }; + Some(Box::new(ScionOfTheBlazingSunEffect { + rate + })) + } +} diff --git a/mona_core/src/weapon/weapons/bows/song_of_stillness.rs b/mona_core/src/weapon/weapons/bows/song_of_stillness.rs new file mode 100644 index 00000000..5f3d3648 --- /dev/null +++ b/mona_core/src/weapon/weapons/bows/song_of_stillness.rs @@ -0,0 +1,61 @@ +use crate::attribute::{Attribute, AttributeName}; +use crate::character::character_common_data::CharacterCommonData; +use crate::common::i18n::locale; +use crate::common::item_config_type::ItemConfig; +use crate::common::WeaponType; +use crate::weapon::weapon_common_data::WeaponCommonData; +use crate::weapon::weapon_effect::WeaponEffect; +use crate::weapon::weapon_static_data::WeaponStaticData; +use crate::weapon::weapon_trait::WeaponTrait; +use crate::weapon::{WeaponConfig, WeaponName}; +use crate::weapon::weapon_base_atk::WeaponBaseATKFamily; +use crate::weapon::weapon_sub_stat::WeaponSubStatFamily; + +pub struct SongOfStillnessEffect { + pub rate: f64 +} + +impl WeaponEffect for SongOfStillnessEffect { + fn apply(&self, data: &WeaponCommonData, attribute: &mut A) { + let refine = data.refine as f64; + attribute.set_value_by(AttributeName::BonusBase, "静谧之曲被动", self.rate * (0.04 * refine + 0.12)); + } +} + +pub struct SongOfStillness; + +impl WeaponTrait for SongOfStillness { + const META_DATA: WeaponStaticData = WeaponStaticData { + name: WeaponName::SongOfStillness, + internal_name: "Bow_Vorpal", + weapon_type: WeaponType::Bow, + weapon_sub_stat: Some(WeaponSubStatFamily::ATK90), + weapon_base: WeaponBaseATKFamily::ATK510, + star: 4, + #[cfg(not(target_family = "wasm"))] + effect: Some(locale!( + zh_cn: "受到治疗后,造成的伤害提升16%-20%-24%-28%-32%,持续8秒。角色处于队伍后台也能触发。", + en: "After the wielder is healed, they will deal 16%-20%-24%-28%-32% more DMG for 8s. This can be triggered even when the character is not on the field." + )), + #[cfg(not(target_family = "wasm"))] + name_locale: locale!( + zh_cn: "静谧之曲", + en: "Song of Stillness" + ) + }; + + #[cfg(not(target_family = "wasm"))] + const CONFIG_DATA: Option<&'static [ItemConfig]> = Some(&[ + ItemConfig::RATE01 + ]); + + fn get_effect(character: &CharacterCommonData, config: &WeaponConfig) -> Option>> { + let rate = match *config { + WeaponConfig::SongOfStillness { rate } => rate, + _ => 0.0 + }; + Some(Box::new(SongOfStillnessEffect { + rate + })) + } +} diff --git a/mona_core/src/weapon/weapons/catalysts/flowing_purity.rs b/mona_core/src/weapon/weapons/catalysts/flowing_purity.rs new file mode 100644 index 00000000..14ffb809 --- /dev/null +++ b/mona_core/src/weapon/weapons/catalysts/flowing_purity.rs @@ -0,0 +1,105 @@ +use crate::attribute::{Attribute, AttributeCommon, AttributeName}; +use crate::attribute::AttributeName::BonusHydro; +use crate::character::character_common_data::CharacterCommonData; +use crate::common::i18n::locale; +use crate::common::item_config_type::{ItemConfig, ItemConfigType}; +use crate::common::WeaponType; +use crate::weapon::weapon_common_data::WeaponCommonData; +use crate::weapon::weapon_effect::WeaponEffect; +use crate::weapon::weapon_static_data::WeaponStaticData; +use crate::weapon::weapon_trait::WeaponTrait; +use crate::weapon::{WeaponConfig, WeaponName}; +use crate::weapon::weapon_base_atk::WeaponBaseATKFamily; +use crate::weapon::weapon_sub_stat::WeaponSubStatFamily; + +pub struct FlowingPurityEffect { + pub rate1: f64, + pub rate2: f64 +} + +impl WeaponEffect for FlowingPurityEffect { + fn apply(&self, data: &WeaponCommonData, attribute: &mut A) { + let refine = data.refine as f64; + attribute.add_elemental_bonus("纯水流华被动", self.rate1 * (0.02 * refine + 0.06)); + + let bonus_elements = [ + AttributeName::BonusHydro, + AttributeName::BonusPhysical, + AttributeName::BonusElectro, + AttributeName::BonusDendro, + AttributeName::BonusPyro, + AttributeName::BonusGeo, + AttributeName::BonusCryo, + AttributeName::BonusAnemo + ]; + + let rate2 = self.rate2; + for target in bonus_elements { + attribute.add_edge1( + AttributeName::HP, + target, + Box::new(move |hp, _| { + let max = 0.03 * refine + 0.09; + let step = 0.005 * refine + 0.015; + let value = max.min((hp / 1000.0).floor() * step); + value * rate2 + }), + Box::new(|gx, gy, gz| (0.0, 0.0)), + "纯水流华被动" + ) + } + } +} + +pub struct FlowingPurity; + +impl WeaponTrait for FlowingPurity { + const META_DATA: WeaponStaticData = WeaponStaticData { + name: WeaponName::FlowingPurity, + internal_name: "Catalyst_Vorpal", + weapon_type: WeaponType::Catalyst, + weapon_sub_stat: Some(WeaponSubStatFamily::ATK60), + weapon_base: WeaponBaseATKFamily::ATK565, + star: 4, + #[cfg(not(target_family = "wasm"))] + effect: Some(locale!( + zh_cn: "施放元素战技时,所有元素伤害加成提升8%-10%-12%-14%-16%,持续15秒,并赋予生命值上限24%的生命之契,该效果每10秒至多触发一次。生命之契清除时,每清除1000点将会提供2%-2.5%-3%-3.5%-4%所有元素伤害加成,至多通过这种方式获得12%-15%-18%-21%-24%所有元素伤害加成,持续15秒。", + en: "When using an Elemental Skill, All Elemental DMG Bonus will be increased by 8%-10%-12%-14%-16% for 15s, and a Bond of Life worth 24% of Max HP will be granted. This effect can be triggered once every 10s. When the Bond of Life is cleared, every 1,000 HP cleared in the process will provide 2%-2.5%-3%-3.5%-4% All Elemental DMG Bonus, up to a maximum of 12%-15%-18%-21%-24%. This effect lasts 15s." + )), + #[cfg(not(target_family = "wasm"))] + name_locale: locale!( + zh_cn: "纯水流华", + en: "Flowing Purity" + ) + }; + + #[cfg(not(target_family = "wasm"))] + const CONFIG_DATA: Option<&'static [ItemConfig]> = Some(&[ + ItemConfig { + name: "rate1", + title: locale!( + zh_cn: "效果①比例", + en: "Effect 1 Rate" + ), + config: ItemConfigType::Float { min: 0.0, max: 1.0, default: 0.5 }, + }, + ItemConfig { + name: "rate2", + title: locale!( + zh_cn: "效果②比例", + en: "Effect 2 Rate" + ), + config: ItemConfigType::Float { min: 0.0, max: 1.0, default: 0.5 }, + } + ]); + + fn get_effect(character: &CharacterCommonData, config: &WeaponConfig) -> Option>> { + let (rate1, rate2) = match *config { + WeaponConfig::FlowingPurity { rate1, rate2 } => (rate1, rate2), + _ => (0.0, 0.0) + }; + Some(Box::new(FlowingPurityEffect { + rate1, rate2 + })) + } +} diff --git a/mona_core/src/weapon/weapons/catalysts/mod.rs b/mona_core/src/weapon/weapons/catalysts/mod.rs index 7c118a4d..0941867e 100644 --- a/mona_core/src/weapon/weapons/catalysts/mod.rs +++ b/mona_core/src/weapon/weapons/catalysts/mod.rs @@ -30,6 +30,7 @@ pub use a_thousand_floating_dreams::AThousandFloatingDreams; pub use tulaytullah_s_remembrance::TulaytullahsRemembrance; pub use jadefalls_splendor::JadeFallsSplendor; pub use sacrificial_jade::SacrificialJade; +pub use flowing_purity::FlowingPurity; pub mod lost_prayer_to_the_sacred_winds; pub mod skyward_atlas; @@ -63,3 +64,4 @@ pub mod a_thousand_floating_dreams; pub mod tulaytullah_s_remembrance; pub mod jadefalls_splendor; pub mod sacrificial_jade; +pub mod flowing_purity; diff --git a/src/assets/_gen_artifact.js b/src/assets/_gen_artifact.js index f5ae9a1b..ad284312 100644 --- a/src/assets/_gen_artifact.js +++ b/src/assets/_gen_artifact.js @@ -12,11 +12,11 @@ export default { maxStar: 3, - effect2: 1234, + effect2: 1237, - effect4: 608, + effect4: 609, @@ -58,40 +58,40 @@ export default { "archaicPetra": { eng: "archaicPetra", name2: "ArchaicPetra", - nameLocale: 632, + nameLocale: 633, minStar: 4, maxStar: 5, - effect2: 1438, + effect2: 1442, - effect4: 1453, + effect4: 1457, flower: { - text: 1300, + text: 1303, url: getIcon("UI_RelicIcon_15014_4") }, feather: { - text: 583, + text: 584, url: getIcon("UI_RelicIcon_15014_2") }, sand: { - text: 803, + text: 805, url: getIcon("UI_RelicIcon_15014_5") }, cup: { - text: 584, + text: 585, url: getIcon("UI_RelicIcon_15014_1") }, @@ -105,7 +105,7 @@ export default { {"default":"Electro","name":"element","title":185,"type":"element4"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":733,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":734,"type":"float"}, ], }, @@ -113,52 +113,52 @@ export default { "berserker": { eng: "berserker", name2: "Berserker", - nameLocale: 638, + nameLocale: 639, minStar: 3, maxStar: 4, - effect2: 972, + effect2: 974, - effect4: 1238, + effect4: 1241, flower: { - text: 641, + text: 642, url: getIcon("UI_RelicIcon_10005_4") }, feather: { - text: 640, + text: 641, url: getIcon("UI_RelicIcon_10005_2") }, sand: { - text: 639, + text: 640, url: getIcon("UI_RelicIcon_10005_5") }, cup: { - text: 642, + text: 643, url: getIcon("UI_RelicIcon_10005_1") }, head: { - text: 643, + text: 644, url: getIcon("UI_RelicIcon_10005_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":733,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":734,"type":"float"}, ], }, @@ -171,11 +171,11 @@ export default { maxStar: 5, - effect2: 1437, + effect2: 1441, - effect4: 720, + effect4: 721, @@ -187,7 +187,7 @@ export default { feather: { - text: 703, + text: 704, url: getIcon("UI_RelicIcon_14001_2") }, @@ -199,19 +199,19 @@ export default { cup: { - text: 1616, + text: 1620, url: getIcon("UI_RelicIcon_14001_1") }, head: { - text: 1294, + text: 1297, url: getIcon("UI_RelicIcon_14001_3") }, config4: [ - {"default":0.0,"max":0.4,"min":0.0,"name":"critical_bonus","title":1345,"type":"float"}, + {"default":0.0,"max":0.4,"min":0.0,"name":"critical_bonus","title":1348,"type":"float"}, ], }, @@ -219,12 +219,12 @@ export default { "bloodstainedChivalry": { eng: "bloodstainedChivalry", name2: "BloodstainedChivalry", - nameLocale: 1021, + nameLocale: 1023, minStar: 4, maxStar: 5, - effect2: 1612, + effect2: 1616, @@ -234,37 +234,37 @@ export default { flower: { - text: 1019, + text: 1021, url: getIcon("UI_RelicIcon_15008_4") }, feather: { - text: 1022, + text: 1024, url: getIcon("UI_RelicIcon_15008_2") }, sand: { - text: 1797, + text: 1803, url: getIcon("UI_RelicIcon_15008_5") }, cup: { - text: 1023, + text: 1025, url: getIcon("UI_RelicIcon_15008_1") }, head: { - text: 1020, + text: 1022, url: getIcon("UI_RelicIcon_15008_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":733,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":734,"type":"float"}, ], }, @@ -277,11 +277,11 @@ export default { maxStar: 4, - effect2: 710, + effect2: 711, - effect4: 568, + effect4: 569, @@ -317,7 +317,7 @@ export default { config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":733,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":734,"type":"float"}, ], }, @@ -325,52 +325,52 @@ export default { "crimsonWitch": { eng: "crimsonWitch", name2: "CrimsonWitchOfFlames", - nameLocale: 1152, + nameLocale: 1154, minStar: 4, maxStar: 5, - effect2: 1440, + effect2: 1444, - effect4: 1562, + effect4: 1566, flower: { - text: 1805, + text: 1811, url: getIcon("UI_RelicIcon_15006_4") }, feather: { - text: 1803, + text: 1809, url: getIcon("UI_RelicIcon_15006_2") }, sand: { - text: 1806, + text: 1812, url: getIcon("UI_RelicIcon_15006_5") }, cup: { - text: 1804, + text: 1810, url: getIcon("UI_RelicIcon_15006_1") }, head: { - text: 1160, + text: 1163, url: getIcon("UI_RelicIcon_15006_3") }, config4: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"level","title":734,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"level","title":735,"type":"float"}, ], }, @@ -378,52 +378,52 @@ export default { "DeepwoodMemories": { eng: "DeepwoodMemories", name2: "DeepwoodMemories", - nameLocale: 1102, + nameLocale: 1104, minStar: 4, maxStar: 5, - effect2: 1441, + effect2: 1445, - effect4: 207, + effect4: 208, flower: { - text: 1602, + text: 1606, url: getIcon("UI_RelicIcon_15025_4") }, feather: { - text: 1391, + text: 1395, url: getIcon("UI_RelicIcon_15025_2") }, sand: { - text: 1543, + text: 1547, url: getIcon("UI_RelicIcon_15025_5") }, cup: { - text: 1603, + text: 1607, url: getIcon("UI_RelicIcon_15025_1") }, head: { - text: 997, + text: 999, url: getIcon("UI_RelicIcon_15025_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":733,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":734,"type":"float"}, ], }, @@ -431,46 +431,46 @@ export default { "defenderWill": { eng: "defenderWill", name2: "DefendersWill", - nameLocale: 531, + nameLocale: 532, minStar: 0, maxStar: 0, - effect2: 1693, + effect2: 1698, - effect4: 1685, + effect4: 1690, flower: { - text: 533, + text: 534, url: getIcon("UI_RelicIcon_10003_4") }, feather: { - text: 535, + text: 536, url: getIcon("UI_RelicIcon_10003_2") }, sand: { - text: 534, + text: 535, url: getIcon("UI_RelicIcon_10003_5") }, cup: { - text: 532, + text: 533, url: getIcon("UI_RelicIcon_10003_1") }, head: { - text: 536, + text: 537, url: getIcon("UI_RelicIcon_10003_3") }, @@ -482,52 +482,52 @@ export default { "EchoesOfAnOffering": { eng: "EchoesOfAnOffering", name2: "EchoesOfAnOffering", - nameLocale: 1006, + nameLocale: 1008, minStar: 4, maxStar: 5, - effect2: 710, + effect2: 711, - effect4: 911, + effect4: 913, flower: { - text: 1800, + text: 1806, url: getIcon("UI_RelicIcon_15024_4") }, feather: { - text: 439, + text: 440, url: getIcon("UI_RelicIcon_15024_2") }, sand: { - text: 1303, + text: 1306, url: getIcon("UI_RelicIcon_15024_5") }, cup: { - text: 1101, + text: 1103, url: getIcon("UI_RelicIcon_15024_1") }, head: { - text: 1093, + text: 1095, url: getIcon("UI_RelicIcon_15024_3") }, config4: [ - {"default":0.5053283764473575,"max":1.0,"min":0.0,"name":"rate","title":588,"type":"float"}, + {"default":0.5053283764473575,"max":1.0,"min":0.0,"name":"rate","title":589,"type":"float"}, ], }, @@ -535,7 +535,7 @@ export default { "emblemOfSeveredFate": { eng: "emblemOfSeveredFate", name2: "EmblemOfSeveredFate", - nameLocale: 1369, + nameLocale: 1373, minStar: 4, maxStar: 5, @@ -544,13 +544,13 @@ export default { - effect4: 445, + effect4: 446, flower: { - text: 795, + text: 797, url: getIcon("UI_RelicIcon_15020_4") }, @@ -562,13 +562,13 @@ export default { sand: { - text: 1720, + text: 1725, url: getIcon("UI_RelicIcon_15020_5") }, cup: { - text: 1372, + text: 1376, url: getIcon("UI_RelicIcon_15020_1") }, @@ -591,23 +591,23 @@ export default { maxStar: 5, - effect2: 228, + effect2: 226, - effect4: 1491, + effect4: 1495, flower: { - text: 996, + text: 998, url: getIcon("UI_RelicIcon_15028_4") }, feather: { - text: 1541, + text: 1545, url: getIcon("UI_RelicIcon_15028_2") }, @@ -619,19 +619,19 @@ export default { cup: { - text: 537, + text: 538, url: getIcon("UI_RelicIcon_15028_1") }, head: { - text: 1355, + text: 1358, url: getIcon("UI_RelicIcon_15028_3") }, config4: [ - {"default":4.0,"max":4.0,"min":0.0,"name":"stack","title":734,"type":"float"}, + {"default":4.0,"max":4.0,"min":0.0,"name":"stack","title":735,"type":"float"}, ], }, @@ -639,7 +639,7 @@ export default { "gambler": { eng: "gambler", name2: "Gambler", - nameLocale: 1547, + nameLocale: 1551, minStar: 3, maxStar: 4, @@ -654,31 +654,31 @@ export default { flower: { - text: 1551, + text: 1555, url: getIcon("UI_RelicIcon_10008_4") }, feather: { - text: 1549, + text: 1553, url: getIcon("UI_RelicIcon_10008_2") }, sand: { - text: 1548, + text: 1552, url: getIcon("UI_RelicIcon_10008_5") }, cup: { - text: 1552, + text: 1556, url: getIcon("UI_RelicIcon_10008_1") }, head: { - text: 1550, + text: 1554, url: getIcon("UI_RelicIcon_10008_3") }, @@ -690,16 +690,16 @@ export default { "DesertPavilionChronicle": { eng: "DesertPavilionChronicle", name2: "DesertPavilionChronicle", - nameLocale: 1064, + nameLocale: 1066, minStar: 4, maxStar: 5, - effect2: 1443, + effect2: 1447, - effect4: 1641, + effect4: 1646, @@ -711,31 +711,31 @@ export default { feather: { - text: 1819, + text: 1825, url: getIcon("UI_RelicIcon_15027_2") }, sand: { - text: 508, + text: 509, url: getIcon("UI_RelicIcon_15027_5") }, cup: { - text: 1604, + text: 1608, url: getIcon("UI_RelicIcon_15027_1") }, head: { - text: 1084, + text: 1086, url: getIcon("UI_RelicIcon_15027_3") }, config4: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":733,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":734,"type":"float"}, ], }, @@ -743,7 +743,7 @@ export default { "GildedDreams": { eng: "GildedDreams", name2: "GildedDreams", - nameLocale: 1786, + nameLocale: 1792, minStar: 4, maxStar: 5, @@ -752,47 +752,47 @@ export default { - effect4: 1519, + effect4: 1523, flower: { - text: 1030, + text: 1032, url: getIcon("UI_RelicIcon_15026_4") }, feather: { - text: 1487, + text: 1491, url: getIcon("UI_RelicIcon_15026_2") }, sand: { - text: 1062, + text: 1064, url: getIcon("UI_RelicIcon_15026_5") }, cup: { - text: 517, + text: 518, url: getIcon("UI_RelicIcon_15026_1") }, head: { - text: 1065, + text: 1067, url: getIcon("UI_RelicIcon_15026_3") }, config4: [ - {"default":0,"max":3,"min":0,"name":"same_count","title":372,"type":"int"}, + {"default":0,"max":3,"min":0,"name":"same_count","title":373,"type":"int"}, - {"default":0,"max":3,"min":0,"name":"diff_count","title":89,"type":"int"}, + {"default":0,"max":3,"min":0,"name":"diff_count","title":88,"type":"int"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":733,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":734,"type":"float"}, ], }, @@ -800,46 +800,46 @@ export default { "gladiatorFinale": { eng: "gladiatorFinale", name2: "GladiatorsFinale", - nameLocale: 1506, + nameLocale: 1510, minStar: 4, maxStar: 5, - effect2: 710, + effect2: 711, - effect4: 1492, + effect4: 1496, flower: { - text: 1505, + text: 1509, url: getIcon("UI_RelicIcon_15001_4") }, feather: { - text: 1504, + text: 1508, url: getIcon("UI_RelicIcon_15001_2") }, sand: { - text: 1503, + text: 1507, url: getIcon("UI_RelicIcon_15001_5") }, cup: { - text: 1507, + text: 1511, url: getIcon("UI_RelicIcon_15001_1") }, head: { - text: 1502, + text: 1506, url: getIcon("UI_RelicIcon_15001_3") }, @@ -851,52 +851,52 @@ export default { "heartOfDepth": { eng: "heartOfDepth", name2: "HeartOfDepth", - nameLocale: 1060, + nameLocale: 1062, minStar: 4, maxStar: 5, - effect2: 1439, + effect2: 1443, - effect4: 756, + effect4: 757, flower: { - text: 1787, + text: 1793, url: getIcon("UI_RelicIcon_15016_4") }, feather: { - text: 1606, + text: 1610, url: getIcon("UI_RelicIcon_15016_2") }, sand: { - text: 438, + text: 439, url: getIcon("UI_RelicIcon_15016_5") }, cup: { - text: 1061, + text: 1063, url: getIcon("UI_RelicIcon_15016_1") }, head: { - text: 1618, + text: 1622, url: getIcon("UI_RelicIcon_15016_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":733,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":734,"type":"float"}, ], }, @@ -909,17 +909,17 @@ export default { maxStar: 5, - effect2: 1693, + effect2: 1698, - effect4: 1488, + effect4: 1492, flower: { - text: 1429, + text: 1433, url: getIcon("UI_RelicIcon_15021_4") }, @@ -937,13 +937,13 @@ export default { cup: { - text: 1032, + text: 1034, url: getIcon("UI_RelicIcon_15021_1") }, head: { - text: 616, + text: 617, url: getIcon("UI_RelicIcon_15021_3") }, @@ -957,52 +957,52 @@ export default { "instructor": { eng: "instructor", name2: "Instructor", - nameLocale: 738, + nameLocale: 739, minStar: 3, maxStar: 4, - effect2: 226, + effect2: 228, - effect4: 1520, + effect4: 1524, flower: { - text: 743, + text: 744, url: getIcon("UI_RelicIcon_10007_4") }, feather: { - text: 742, + text: 743, url: getIcon("UI_RelicIcon_10007_2") }, sand: { - text: 741, + text: 742, url: getIcon("UI_RelicIcon_10007_5") }, cup: { - text: 744, + text: 745, url: getIcon("UI_RelicIcon_10007_1") }, head: { - text: 740, + text: 741, url: getIcon("UI_RelicIcon_10007_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":733,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":734,"type":"float"}, ], }, @@ -1010,52 +1010,52 @@ export default { "lavaWalker": { eng: "lavaWalker", name2: "Lavawalker", - nameLocale: 1111, + nameLocale: 1113, minStar: 4, maxStar: 5, - effect2: 1132, + effect2: 1134, - effect4: 563, + effect4: 564, flower: { - text: 1106, + text: 1108, url: getIcon("UI_RelicIcon_14003_4") }, feather: { - text: 1109, + text: 1111, url: getIcon("UI_RelicIcon_14003_2") }, sand: { - text: 1108, + text: 1110, url: getIcon("UI_RelicIcon_14003_5") }, cup: { - text: 1110, + text: 1112, url: getIcon("UI_RelicIcon_14003_1") }, head: { - text: 1107, + text: 1109, url: getIcon("UI_RelicIcon_14003_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":735,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":736,"type":"float"}, ], }, @@ -1063,46 +1063,46 @@ export default { "luckyDog": { eng: "luckyDog", name2: "LuckyDog", - nameLocale: 595, + nameLocale: 596, minStar: 1, maxStar: 3, - effect2: 1692, + effect2: 1697, - effect4: 685, + effect4: 686, flower: { - text: 598, + text: 599, url: getIcon("UI_RelicIcon_10011_4") }, feather: { - text: 600, + text: 601, url: getIcon("UI_RelicIcon_10011_2") }, sand: { - text: 597, + text: 598, url: getIcon("UI_RelicIcon_10011_5") }, cup: { - text: 596, + text: 597, url: getIcon("UI_RelicIcon_10011_1") }, head: { - text: 599, + text: 600, url: getIcon("UI_RelicIcon_10011_3") }, @@ -1114,46 +1114,46 @@ export default { "maidenBeloved": { eng: "maidenBeloved", name2: "MaidenBeloved", - nameLocale: 1485, + nameLocale: 1489, minStar: 4, maxStar: 5, - effect2: 1513, + effect2: 1517, - effect4: 763, + effect4: 764, flower: { - text: 1590, + text: 1594, url: getIcon("UI_RelicIcon_14004_4") }, feather: { - text: 574, + text: 575, url: getIcon("UI_RelicIcon_14004_2") }, sand: { - text: 573, + text: 574, url: getIcon("UI_RelicIcon_14004_5") }, cup: { - text: 572, + text: 573, url: getIcon("UI_RelicIcon_14004_1") }, head: { - text: 571, + text: 572, url: getIcon("UI_RelicIcon_14004_3") }, @@ -1165,52 +1165,52 @@ export default { "martialArtist": { eng: "martialArtist", name2: "MartialArtist", - nameLocale: 1036, + nameLocale: 1038, minStar: 3, maxStar: 4, - effect2: 905, + effect2: 907, - effect4: 757, + effect4: 758, flower: { - text: 1039, + text: 1041, url: getIcon("UI_RelicIcon_10006_4") }, feather: { - text: 1040, + text: 1042, url: getIcon("UI_RelicIcon_10006_2") }, sand: { - text: 1038, + text: 1040, url: getIcon("UI_RelicIcon_10006_5") }, cup: { - text: 1041, + text: 1043, url: getIcon("UI_RelicIcon_10006_1") }, head: { - text: 1037, + text: 1039, url: getIcon("UI_RelicIcon_10006_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":733,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":734,"type":"float"}, ], }, @@ -1218,7 +1218,7 @@ export default { "noblesseOblige": { eng: "noblesseOblige", name2: "NoblesseOblige", - nameLocale: 796, + nameLocale: 798, minStar: 4, maxStar: 5, @@ -1227,43 +1227,43 @@ export default { - effect4: 772, + effect4: 774, flower: { - text: 542, + text: 543, url: getIcon("UI_RelicIcon_15007_4") }, feather: { - text: 541, + text: 542, url: getIcon("UI_RelicIcon_15007_2") }, sand: { - text: 544, + text: 545, url: getIcon("UI_RelicIcon_15007_5") }, cup: { - text: 547, + text: 548, url: getIcon("UI_RelicIcon_15007_1") }, head: { - text: 550, + text: 551, url: getIcon("UI_RelicIcon_15007_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":733,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":734,"type":"float"}, ], }, @@ -1271,34 +1271,34 @@ export default { "NymphsDream": { eng: "NymphsDream", name2: "NymphsDream", - nameLocale: 1049, + nameLocale: 1051, minStar: 4, maxStar: 5, - effect2: 1439, + effect2: 1443, - effect4: 896, + effect4: 898, flower: { - text: 780, + text: 782, url: getIcon("UI_RelicIcon_15029_4") }, feather: { - text: 437, + text: 438, url: getIcon("UI_RelicIcon_15029_2") }, sand: { - text: 1050, + text: 1052, url: getIcon("UI_RelicIcon_15029_5") }, @@ -1310,7 +1310,7 @@ export default { head: { - text: 631, + text: 632, url: getIcon("UI_RelicIcon_15029_3") }, @@ -1322,7 +1322,7 @@ export default { {"default":1.0,"max":1.0,"min":0.0,"name":"w3","title":71,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":606,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":605,"type":"float"}, ], }, @@ -1330,46 +1330,46 @@ export default { "oceanHuedClam": { eng: "oceanHuedClam", name2: "OceanHuedClam", - nameLocale: 1098, + nameLocale: 1100, minStar: 4, maxStar: 5, - effect2: 1069, + effect2: 1071, - effect4: 1489, + effect4: 1493, flower: { - text: 1097, + text: 1099, url: getIcon("UI_RelicIcon_15022_4") }, feather: { - text: 1105, + text: 1107, url: getIcon("UI_RelicIcon_15022_2") }, sand: { - text: 1335, + text: 1338, url: getIcon("UI_RelicIcon_15022_5") }, cup: { - text: 1281, + text: 1284, url: getIcon("UI_RelicIcon_15022_1") }, head: { - text: 1100, + text: 1102, url: getIcon("UI_RelicIcon_15022_3") }, @@ -1381,12 +1381,12 @@ export default { "paleFlame": { eng: "paleFlame", name2: "PaleFlame", - nameLocale: 1415, + nameLocale: 1419, minStar: 4, maxStar: 5, - effect2: 1613, + effect2: 1617, @@ -1396,13 +1396,13 @@ export default { flower: { - text: 786, + text: 788, url: getIcon("UI_RelicIcon_15018_4") }, feather: { - text: 1542, + text: 1546, url: getIcon("UI_RelicIcon_15018_2") }, @@ -1414,21 +1414,21 @@ export default { cup: { - text: 1560, + text: 1564, url: getIcon("UI_RelicIcon_15018_1") }, head: { - text: 412, + text: 413, url: getIcon("UI_RelicIcon_15018_3") }, config4: [ - {"default":0.0,"max":2.0,"min":0.0,"name":"avg_level","title":727,"type":"float"}, + {"default":0.0,"max":2.0,"min":0.0,"name":"avg_level","title":728,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"full_rate","title":1124,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"full_rate","title":1126,"type":"float"}, ], }, @@ -1436,11 +1436,11 @@ export default { "prayersForDestiny": { eng: "prayersForDestiny", name2: "PrayersForDestiny", - nameLocale: 1324, + nameLocale: 1327, minStar: 3, maxStar: 4, - effect1: 355, + effect1: 356, @@ -1453,7 +1453,7 @@ export default { head: { - text: 1325, + text: 1328, url: getIcon("UI_RelicIcon_15010_3") }, @@ -1465,11 +1465,11 @@ export default { "prayersForIllumination": { eng: "prayersForIllumination", name2: "PrayersForIllumination", - nameLocale: 1326, + nameLocale: 1329, minStar: 3, maxStar: 4, - effect1: 356, + effect1: 357, @@ -1482,7 +1482,7 @@ export default { head: { - text: 1327, + text: 1330, url: getIcon("UI_RelicIcon_15009_3") }, @@ -1494,11 +1494,11 @@ export default { "prayersForWisdom": { eng: "prayersForWisdom", name2: "PrayersForWisdom", - nameLocale: 1332, + nameLocale: 1335, minStar: 3, maxStar: 4, - effect1: 357, + effect1: 358, @@ -1511,7 +1511,7 @@ export default { head: { - text: 1333, + text: 1336, url: getIcon("UI_RelicIcon_15011_3") }, @@ -1523,11 +1523,11 @@ export default { "prayersToSpringtime": { eng: "prayersToSpringtime", name2: "PrayersToSpringtime", - nameLocale: 1322, + nameLocale: 1325, minStar: 3, maxStar: 4, - effect1: 354, + effect1: 355, @@ -1540,7 +1540,7 @@ export default { head: { - text: 1323, + text: 1326, url: getIcon("UI_RelicIcon_15013_3") }, @@ -1552,46 +1552,46 @@ export default { "resolutionOfSojourner": { eng: "resolutionOfSojourner", name2: "ResolutionOfSojourner", - nameLocale: 1478, + nameLocale: 1482, minStar: 3, maxStar: 4, - effect2: 710, + effect2: 711, - effect4: 1644, + effect4: 1649, flower: { - text: 725, + text: 726, url: getIcon("UI_RelicIcon_10001_4") }, feather: { - text: 615, + text: 616, url: getIcon("UI_RelicIcon_10001_2") }, sand: { - text: 1609, + text: 1613, url: getIcon("UI_RelicIcon_10001_5") }, cup: { - text: 611, + text: 612, url: getIcon("UI_RelicIcon_10001_1") }, head: { - text: 636, + text: 637, url: getIcon("UI_RelicIcon_10001_3") }, @@ -1603,52 +1603,52 @@ export default { "retracingBolide": { eng: "retracingBolide", name2: "RetracingBolide", - nameLocale: 1608, + nameLocale: 1612, minStar: 4, maxStar: 5, - effect2: 681, + effect2: 682, - effect4: 455, + effect4: 456, flower: { - text: 460, + text: 461, url: getIcon("UI_RelicIcon_15015_4") }, feather: { - text: 463, + text: 464, url: getIcon("UI_RelicIcon_15015_2") }, sand: { - text: 459, + text: 460, url: getIcon("UI_RelicIcon_15015_5") }, cup: { - text: 462, + text: 463, url: getIcon("UI_RelicIcon_15015_1") }, head: { - text: 461, + text: 462, url: getIcon("UI_RelicIcon_15015_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":683,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":684,"type":"float"}, ], }, @@ -1656,7 +1656,7 @@ export default { "scholar": { eng: "scholar", name2: "Scholar", - nameLocale: 524, + nameLocale: 525, minStar: 3, maxStar: 4, @@ -1665,37 +1665,37 @@ export default { - effect4: 1450, + effect4: 1454, flower: { - text: 525, + text: 526, url: getIcon("UI_RelicIcon_10012_4") }, feather: { - text: 528, + text: 529, url: getIcon("UI_RelicIcon_10012_2") }, sand: { - text: 527, + text: 528, url: getIcon("UI_RelicIcon_10012_5") }, cup: { - text: 526, + text: 527, url: getIcon("UI_RelicIcon_10012_1") }, head: { - text: 529, + text: 530, url: getIcon("UI_RelicIcon_10012_3") }, @@ -1707,52 +1707,52 @@ export default { "shimenawaReminiscence": { eng: "shimenawaReminiscence", name2: "ShimenawasReminiscence", - nameLocale: 1605, + nameLocale: 1609, minStar: 4, maxStar: 5, - effect2: 710, + effect2: 711, - effect4: 764, + effect4: 765, flower: { - text: 1383, + text: 1387, url: getIcon("UI_RelicIcon_15019_4") }, feather: { - text: 626, + text: 627, url: getIcon("UI_RelicIcon_15019_2") }, sand: { - text: 998, + text: 1000, url: getIcon("UI_RelicIcon_15019_5") }, cup: { - text: 1302, + text: 1305, url: getIcon("UI_RelicIcon_15019_1") }, head: { - text: 788, + text: 790, url: getIcon("UI_RelicIcon_15019_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":733,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":734,"type":"float"}, ], }, @@ -1765,7 +1765,7 @@ export default { maxStar: 5, - effect2: 1240, + effect2: 1243, @@ -1781,31 +1781,31 @@ export default { feather: { - text: 807, + text: 809, url: getIcon("UI_RelicIcon_15017_2") }, sand: { - text: 1651, + text: 1656, url: getIcon("UI_RelicIcon_15017_5") }, cup: { - text: 1280, + text: 1283, url: getIcon("UI_RelicIcon_15017_1") }, head: { - text: 570, + text: 571, url: getIcon("UI_RelicIcon_15017_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":733,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":734,"type":"float"}, ], }, @@ -1813,7 +1813,7 @@ export default { "exile": { eng: "exile", name2: "TheExile", - nameLocale: 1077, + nameLocale: 1079, minStar: 3, maxStar: 4, @@ -1822,37 +1822,37 @@ export default { - effect4: 771, + effect4: 773, flower: { - text: 1080, + text: 1082, url: getIcon("UI_RelicIcon_10009_4") }, feather: { - text: 1079, + text: 1081, url: getIcon("UI_RelicIcon_10009_2") }, sand: { - text: 1082, + text: 1084, url: getIcon("UI_RelicIcon_10009_5") }, cup: { - text: 1078, + text: 1080, url: getIcon("UI_RelicIcon_10009_1") }, head: { - text: 1081, + text: 1083, url: getIcon("UI_RelicIcon_10009_3") }, @@ -1864,46 +1864,46 @@ export default { "thunderingFury": { eng: "thunderingFury", name2: "ThunderingFury", - nameLocale: 518, + nameLocale: 519, minStar: 4, maxStar: 5, - effect2: 1442, + effect2: 1446, - effect4: 1561, + effect4: 1565, flower: { - text: 1741, + text: 1746, url: getIcon("UI_RelicIcon_15005_4") }, feather: { - text: 1731, + text: 1736, url: getIcon("UI_RelicIcon_15005_2") }, sand: { - text: 1740, + text: 1745, url: getIcon("UI_RelicIcon_15005_5") }, cup: { - text: 1713, + text: 1718, url: getIcon("UI_RelicIcon_15005_1") }, head: { - text: 408, + text: 409, url: getIcon("UI_RelicIcon_15005_3") }, @@ -1915,52 +1915,52 @@ export default { "thunderSmoother": { eng: "thunderSmoother", name2: "Thundersoother", - nameLocale: 589, + nameLocale: 590, minStar: 4, maxStar: 5, - effect2: 1723, + effect2: 1728, - effect4: 566, + effect4: 567, flower: { - text: 593, + text: 594, url: getIcon("UI_RelicIcon_14002_4") }, feather: { - text: 594, + text: 595, url: getIcon("UI_RelicIcon_14002_2") }, sand: { - text: 591, + text: 592, url: getIcon("UI_RelicIcon_14002_5") }, cup: { - text: 592, + text: 593, url: getIcon("UI_RelicIcon_14002_1") }, head: { - text: 590, + text: 591, url: getIcon("UI_RelicIcon_14002_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":737,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":738,"type":"float"}, ], }, @@ -1968,12 +1968,12 @@ export default { "tinyMiracle": { eng: "tinyMiracle", name2: "TinyMiracle", - nameLocale: 509, + nameLocale: 510, minStar: 3, maxStar: 4, - effect2: 644, + effect2: 645, @@ -1983,31 +1983,31 @@ export default { flower: { - text: 513, + text: 514, url: getIcon("UI_RelicIcon_10004_4") }, feather: { - text: 512, + text: 513, url: getIcon("UI_RelicIcon_10004_2") }, sand: { - text: 511, + text: 512, url: getIcon("UI_RelicIcon_10004_5") }, cup: { - text: 510, + text: 511, url: getIcon("UI_RelicIcon_10004_1") }, head: { - text: 514, + text: 515, url: getIcon("UI_RelicIcon_10004_3") }, @@ -2019,46 +2019,46 @@ export default { "travelingDoctor": { eng: "travelingDoctor", name2: "TravelingDoctor", - nameLocale: 1118, + nameLocale: 1120, minStar: 1, maxStar: 3, - effect2: 1508, + effect2: 1512, - effect4: 775, + effect4: 777, flower: { - text: 1123, + text: 1125, url: getIcon("UI_RelicIcon_10013_4") }, feather: { - text: 1121, + text: 1123, url: getIcon("UI_RelicIcon_10013_2") }, sand: { - text: 1119, + text: 1121, url: getIcon("UI_RelicIcon_10013_5") }, cup: { - text: 1122, + text: 1124, url: getIcon("UI_RelicIcon_10013_1") }, head: { - text: 1120, + text: 1122, url: getIcon("UI_RelicIcon_10013_3") }, @@ -2070,46 +2070,46 @@ export default { "VermillionHereafter": { eng: "VermillionHereafter", name2: "VermillionHereafter", - nameLocale: 1587, + nameLocale: 1591, minStar: 4, maxStar: 5, - effect2: 710, + effect2: 711, - effect4: 769, + effect4: 771, flower: { - text: 1251, + text: 1254, url: getIcon("UI_RelicIcon_15023_4") }, feather: { - text: 1129, + text: 1131, url: getIcon("UI_RelicIcon_15023_2") }, sand: { - text: 1697, + text: 1702, url: getIcon("UI_RelicIcon_15023_5") }, cup: { - text: 1366, + text: 1370, url: getIcon("UI_RelicIcon_15023_1") }, head: { - text: 1469, + text: 1473, url: getIcon("UI_RelicIcon_15023_3") }, @@ -2125,46 +2125,46 @@ export default { "viridescentVenerer": { eng: "viridescentVenerer", name2: "ViridescentVenerer", - nameLocale: 1386, + nameLocale: 1390, minStar: 4, maxStar: 5, - effect2: 1443, + effect2: 1447, - effect4: 655, + effect4: 656, flower: { - text: 1650, + text: 1655, url: getIcon("UI_RelicIcon_15002_4") }, feather: { - text: 1186, + text: 1189, url: getIcon("UI_RelicIcon_15002_2") }, sand: { - text: 1389, + text: 1393, url: getIcon("UI_RelicIcon_15002_5") }, cup: { - text: 1388, + text: 1392, url: getIcon("UI_RelicIcon_15002_1") }, head: { - text: 1390, + text: 1394, url: getIcon("UI_RelicIcon_15002_3") }, @@ -2176,12 +2176,12 @@ export default { "VourukashasGlow": { eng: "VourukashasGlow", name2: "VourukashasGlow", - nameLocale: 1410, + nameLocale: 1414, minStar: 4, maxStar: 5, - effect2: 1241, + effect2: 1244, @@ -2191,13 +2191,13 @@ export default { flower: { - text: 1139, + text: 1141, url: getIcon("UI_RelicIcon_15030_4") }, feather: { - text: 1215, + text: 1218, url: getIcon("UI_RelicIcon_15030_2") }, @@ -2209,19 +2209,19 @@ export default { cup: { - text: 790, + text: 792, url: getIcon("UI_RelicIcon_15030_1") }, head: { - text: 1138, + text: 1140, url: getIcon("UI_RelicIcon_15030_3") }, config4: [ - {"default":4.0,"max":5.0,"min":0.0,"name":"stack","title":586,"type":"float"}, + {"default":4.0,"max":5.0,"min":0.0,"name":"stack","title":588,"type":"float"}, ], }, @@ -2229,16 +2229,16 @@ export default { "wandererTroupe": { eng: "wandererTroupe", name2: "WanderersTroupe", - nameLocale: 1086, + nameLocale: 1088, minStar: 4, maxStar: 5, - effect2: 226, + effect2: 228, - effect4: 1493, + effect4: 1497, @@ -2250,25 +2250,25 @@ export default { feather: { - text: 1221, + text: 1224, url: getIcon("UI_RelicIcon_15003_2") }, sand: { - text: 1362, + text: 1366, url: getIcon("UI_RelicIcon_15003_5") }, cup: { - text: 374, + text: 375, url: getIcon("UI_RelicIcon_15003_1") }, head: { - text: 694, + text: 695, url: getIcon("UI_RelicIcon_15003_3") }, diff --git a/src/assets/_gen_buff.js b/src/assets/_gen_buff.js index f8da5531..c3d9518d 100644 --- a/src/assets/_gen_buff.js +++ b/src/assets/_gen_buff.js @@ -270,7 +270,7 @@ export default { "ATKPercentage": { name: "ATKPercentage", - nameLocale: 706, + nameLocale: 707, description: null, @@ -280,14 +280,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":745,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":746,"type":"floatPercentageInput"}, ], }, "DEFPercentage": { name: "DEFPercentage", - nameLocale: 1689, + nameLocale: 1694, description: null, @@ -297,14 +297,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":745,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":746,"type":"floatPercentageInput"}, ], }, "HPPercentage": { name: "HPPercentage", - nameLocale: 1231, + nameLocale: 1234, description: null, @@ -314,14 +314,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":745,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":746,"type":"floatPercentageInput"}, ], }, "ATKFixed": { name: "ATKFixed", - nameLocale: 705, + nameLocale: 706, description: null, @@ -331,14 +331,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"value","title":745,"type":"floatInput"}, + {"default":0.0,"name":"value","title":746,"type":"floatInput"}, ], }, "DEFFixed": { name: "DEFFixed", - nameLocale: 1688, + nameLocale: 1693, description: null, @@ -348,14 +348,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"value","title":745,"type":"floatInput"}, + {"default":0.0,"name":"value","title":746,"type":"floatInput"}, ], }, "HPFixed": { name: "HPFixed", - nameLocale: 1230, + nameLocale: 1233, description: null, @@ -365,14 +365,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"value","title":745,"type":"floatInput"}, + {"default":0.0,"name":"value","title":746,"type":"floatInput"}, ], }, "Critical": { name: "Critical", - nameLocale: 969, + nameLocale: 971, description: null, @@ -382,14 +382,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":745,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":746,"type":"floatPercentageInput"}, ], }, "CriticalDamage": { name: "CriticalDamage", - nameLocale: 965, + nameLocale: 967, description: null, @@ -399,7 +399,7 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":745,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":746,"type":"floatPercentageInput"}, ], }, @@ -416,7 +416,7 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":745,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":746,"type":"floatPercentageInput"}, ], }, @@ -433,7 +433,7 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"value","title":745,"type":"floatInput"}, + {"default":0.0,"name":"value","title":746,"type":"floatInput"}, ], }, @@ -450,7 +450,7 @@ export default { genre: "Common", config: [ - {"default":20.0,"name":"p","title":745,"type":"floatPercentageInput"}, + {"default":20.0,"name":"p","title":746,"type":"floatPercentageInput"}, ], }, @@ -467,7 +467,7 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":745,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":746,"type":"floatPercentageInput"}, ], }, @@ -484,14 +484,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":745,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":746,"type":"floatPercentageInput"}, ], }, "HealingBonus": { name: "HealingBonus", - nameLocale: 1067, + nameLocale: 1069, description: null, @@ -501,16 +501,16 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":745,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":746,"type":"floatPercentageInput"}, ], }, "BaseDmg": { name: "BaseDmg", - nameLocale: 448, + nameLocale: 449, - description: 1569, + description: 1573, badge: BaseDmg_image, @@ -518,16 +518,16 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"value","title":745,"type":"floatInput"}, + {"default":0.0,"name":"value","title":746,"type":"floatInput"}, ], }, "AlbedoTalent2": { name: "AlbedoTalent2", - nameLocale: 1701, + nameLocale: 1706, - description: 1706, + description: 1711, badge: getImage("Albedo"), @@ -540,9 +540,9 @@ export default { "AlbedoC4": { name: "AlbedoC4", - nameLocale: 1702, + nameLocale: 1707, - description: 1704, + description: 1709, badge: getImage("Albedo"), @@ -555,9 +555,9 @@ export default { "AlbedoC6": { name: "AlbedoC6", - nameLocale: 1700, + nameLocale: 1705, - description: 1705, + description: 1710, badge: getImage("Albedo"), @@ -570,9 +570,9 @@ export default { "AloyTalent1": { name: "AloyTalent1", - nameLocale: 443, + nameLocale: 444, - description: 444, + description: 445, badge: getImage("Aloy"), @@ -585,9 +585,9 @@ export default { "AratakiIttoC4": { name: "AratakiIttoC4", - nameLocale: 1423, + nameLocale: 1427, - description: 1425, + description: 1429, badge: getImage("Itto"), @@ -615,9 +615,9 @@ export default { "BennettQ": { name: "BennettQ", - nameLocale: 1206, + nameLocale: 1209, - description: 1209, + description: 1212, badge: getImage("Bennett"), @@ -625,20 +625,20 @@ export default { genre: "Character", config: [ - {"default":800.0,"name":"base_atk","title":1211,"type":"floatInput"}, + {"default":800.0,"name":"base_atk","title":1214,"type":"floatInput"}, - {"default":true,"name":"c1","title":808,"type":"bool"}, + {"default":true,"name":"c1","title":810,"type":"bool"}, - {"default":10,"max":15,"min":1,"name":"skill3","title":674,"type":"int"}, + {"default":10,"max":15,"min":1,"name":"skill3","title":675,"type":"int"}, ], }, "BennettC6": { name: "BennettC6", - nameLocale: 1205, + nameLocale: 1208, - description: 1210, + description: 1213, badge: getImage("Bennett"), @@ -651,9 +651,9 @@ export default { "ChongyunTalent2": { name: "ChongyunTalent2", - nameLocale: 1620, + nameLocale: 1624, - description: 1622, + description: 1626, badge: getImage("Chongyun"), @@ -666,9 +666,9 @@ export default { "DionaC6G50": { name: "DionaC6G50", - nameLocale: 1597, + nameLocale: 1601, - description: 1599, + description: 1603, badge: getImage("Diona"), @@ -691,16 +691,16 @@ export default { genre: "Character", config: [ - {"default":9,"max":15,"min":1,"name":"skill2","title":674,"type":"int"}, + {"default":9,"max":15,"min":1,"name":"skill2","title":675,"type":"int"}, ], }, "GanyuTalent2": { name: "GanyuTalent2", - nameLocale: 1225, + nameLocale: 1228, - description: 1229, + description: 1232, badge: getImage("Ganyu"), @@ -713,9 +713,9 @@ export default { "GanyuC1": { name: "GanyuC1", - nameLocale: 1226, + nameLocale: 1229, - description: 1228, + description: 1231, badge: getImage("Ganyu"), @@ -785,16 +785,16 @@ export default { genre: "Character", config: [ - {"default":1,"max":3,"min":1,"name":"level","title":1754,"type":"int"}, + {"default":1,"max":3,"min":1,"name":"level","title":1760,"type":"int"}, ], }, "HuTaoTalent1": { name: "HuTaoTalent1", - nameLocale: 1401, + nameLocale: 1405, - description: 1403, + description: 1407, badge: getImage("Hutao"), @@ -807,9 +807,9 @@ export default { "JeanC4": { name: "JeanC4", - nameLocale: 1218, + nameLocale: 1221, - description: 1220, + description: 1223, badge: getImage("Qin"), @@ -822,9 +822,9 @@ export default { "KaedeharaKazuhaTalent2": { name: "KaedeharaKazuhaTalent2", - nameLocale: 1014, + nameLocale: 1016, - description: 1018, + description: 1020, badge: getImage("Kazuha"), @@ -832,7 +832,7 @@ export default { genre: "Character", config: [ - {"default":"Electro","name":"element","title":653,"type":"element4"}, + {"default":"Electro","name":"element","title":654,"type":"element4"}, {"default":800.0,"name":"em","title":68,"type":"floatInput"}, @@ -841,9 +841,9 @@ export default { "KaedeharaKazuhaC2": { name: "KaedeharaKazuhaC2", - nameLocale: 1013, + nameLocale: 1015, - description: 1017, + description: 1019, badge: getImage("Kazuha"), @@ -856,9 +856,9 @@ export default { "KamisatoAyakaC4": { name: "KamisatoAyakaC4", - nameLocale: 1320, + nameLocale: 1323, - description: 1370, + description: 1374, badge: getImage("Ayaka"), @@ -871,9 +871,9 @@ export default { "KleeC2": { name: "KleeC2", - nameLocale: 366, + nameLocale: 367, - description: 368, + description: 369, badge: getImage("Klee"), @@ -886,9 +886,9 @@ export default { "KleeC6": { name: "KleeC6", - nameLocale: 365, + nameLocale: 366, - description: 369, + description: 370, badge: getImage("Klee"), @@ -913,7 +913,7 @@ export default { {"default":700.0,"name":"base_atk","title":109,"type":"floatInput"}, - {"default":false,"name":"c6","title":811,"type":"bool"}, + {"default":false,"name":"c6","title":813,"type":"bool"}, {"default":10,"max":15,"min":1,"name":"skill2","title":12,"type":"int"}, @@ -937,9 +937,9 @@ export default { "MonaQ": { name: "MonaQ", - nameLocale: 1431, + nameLocale: 1435, - description: 1434, + description: 1438, 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":810,"type":"bool"}, + {"default":false,"name":"c4","title":812,"type":"bool"}, ], }, "MonaC1": { name: "MonaC1", - nameLocale: 1432, + nameLocale: 1436, - description: 1435, + description: 1439, badge: getImage("Mona"), @@ -986,9 +986,9 @@ export default { "RaidenShogunE": { name: "RaidenShogunE", - nameLocale: 1735, + nameLocale: 1740, - description: 1738, + description: 1743, badge: getImage("Shougun"), @@ -996,7 +996,7 @@ export default { genre: "Character", config: [ - {"default":8,"max":15,"min":1,"name":"skill2","title":1737,"type":"int"}, + {"default":8,"max":15,"min":1,"name":"skill2","title":1742,"type":"int"}, {"default":80,"max":100,"min":20,"name":"energy","title":348,"type":"int"}, @@ -1005,9 +1005,9 @@ export default { "RaidenShogunC4": { name: "RaidenShogunC4", - nameLocale: 1734, + nameLocale: 1739, - description: 1739, + description: 1744, badge: getImage("Shougun"), @@ -1020,9 +1020,9 @@ export default { "RazorC4": { name: "RazorC4", - nameLocale: 1728, + nameLocale: 1733, - description: 1730, + description: 1735, badge: getImage("Razor"), @@ -1035,9 +1035,9 @@ export default { "RosariaTalent2": { name: "RosariaTalent2", - nameLocale: 1378, + nameLocale: 1382, - description: 1381, + description: 1385, badge: getImage("Rosaria"), @@ -1045,16 +1045,16 @@ export default { genre: "Character", config: [ - {"default":70.0,"name":"crit","title":1382,"type":"floatPercentageInput"}, + {"default":70.0,"name":"crit","title":1386,"type":"floatPercentageInput"}, ], }, "RosariaC6": { name: "RosariaC6", - nameLocale: 1377, + nameLocale: 1381, - description: 1380, + description: 1384, badge: getImage("Rosaria"), @@ -1067,9 +1067,9 @@ export default { "ShenheE": { name: "ShenheE", - nameLocale: 1255, + nameLocale: 1258, - description: 1261, + description: 1264, badge: getImage("Shenhe"), @@ -1077,18 +1077,18 @@ export default { genre: "Character", config: [ - {"default":3000.0,"name":"atk","title":1266,"type":"floatInput"}, + {"default":3000.0,"name":"atk","title":1269,"type":"floatInput"}, - {"default":8,"max":15,"min":1,"name":"skill2","title":1260,"type":"int"}, + {"default":8,"max":15,"min":1,"name":"skill2","title":1263,"type":"int"}, ], }, "ShenheQ": { name: "ShenheQ", - nameLocale: 1257, + nameLocale: 1260, - description: 1263, + description: 1266, badge: getImage("Shenhe"), @@ -1096,16 +1096,16 @@ export default { genre: "Character", config: [ - {"default":8,"max":15,"min":1,"name":"skill3","title":1262,"type":"int"}, + {"default":8,"max":15,"min":1,"name":"skill3","title":1265,"type":"int"}, ], }, "ShenheTalent1": { name: "ShenheTalent1", - nameLocale: 1256, + nameLocale: 1259, - description: 1264, + description: 1267, badge: getImage("Shenhe"), @@ -1113,16 +1113,16 @@ export default { genre: "Character", config: [ - {"default":false,"name":"c2","title":809,"type":"bool"}, + {"default":false,"name":"c2","title":811,"type":"bool"}, ], }, "ShenheTalent2": { name: "ShenheTalent2", - nameLocale: 1258, + nameLocale: 1261, - description: 1265, + description: 1268, badge: getImage("Shenhe"), @@ -1130,16 +1130,16 @@ export default { genre: "Character", config: [ - {"default":0,"name":"t","options":["点按","长按"],"title":675,"type":"option"}, + {"default":0,"name":"t","options":["点按","长按"],"title":676,"type":"option"}, ], }, "SucroseTalent1": { name: "SucroseTalent1", - nameLocale: 1288, + nameLocale: 1291, - description: 1291, + description: 1294, badge: getImage("Sucrose"), @@ -1152,9 +1152,9 @@ export default { "SucroseTalent2": { name: "SucroseTalent2", - nameLocale: 1286, + nameLocale: 1289, - description: 1292, + description: 1295, badge: getImage("Sucrose"), @@ -1162,16 +1162,16 @@ export default { genre: "Character", config: [ - {"default":200.0,"name":"em","title":1293,"type":"floatInput"}, + {"default":200.0,"name":"em","title":1296,"type":"floatInput"}, ], }, "SucroseC6": { name: "SucroseC6", - nameLocale: 1287, + nameLocale: 1290, - description: 1290, + description: 1293, badge: getImage("Sucrose"), @@ -1179,16 +1179,16 @@ export default { genre: "Character", config: [ - {"default":"Electro","name":"element","title":658,"type":"element4"}, + {"default":"Electro","name":"element","title":659,"type":"element4"}, ], }, "ThomaTalent1": { name: "ThomaTalent1", - nameLocale: 649, + nameLocale: 650, - description: 652, + description: 653, badge: getImage("Tohma"), @@ -1196,16 +1196,16 @@ export default { genre: "Character", config: [ - {"default":2.0,"max":5.0,"min":0.0,"name":"stack","title":359,"type":"float"}, + {"default":2.0,"max":5.0,"min":0.0,"name":"stack","title":360,"type":"float"}, ], }, "ThomaC6": { name: "ThomaC6", - nameLocale: 648, + nameLocale: 649, - description: 651, + description: 652, badge: getImage("Tohma"), @@ -1218,9 +1218,9 @@ export default { "VentiC2": { name: "VentiC2", - nameLocale: 1114, + nameLocale: 1116, - description: 1116, + description: 1118, badge: getImage("Venti"), @@ -1228,16 +1228,16 @@ export default { genre: "Character", config: [ - {"default":false,"name":"levitating","title":1459,"type":"bool"}, + {"default":false,"name":"levitating","title":1463,"type":"bool"}, ], }, "VentiC6": { name: "VentiC6", - nameLocale: 1113, + nameLocale: 1115, - description: 1117, + description: 1119, badge: getImage("Venti"), @@ -1247,16 +1247,16 @@ export default { {"default":true,"name":"is_convert","title":347,"type":"bool"}, - {"default":"Electro","name":"element","title":1574,"type":"element4"}, + {"default":"Electro","name":"element","title":1578,"type":"element4"}, ], }, "XianglingTalent2": { name: "XianglingTalent2", - nameLocale: 1792, + nameLocale: 1798, - description: 1796, + description: 1802, badge: getImage("Xiangling"), @@ -1269,9 +1269,9 @@ export default { "XianglingC1": { name: "XianglingC1", - nameLocale: 1790, + nameLocale: 1796, - description: 1794, + description: 1800, badge: getImage("Xiangling"), @@ -1284,9 +1284,9 @@ export default { "XianglingC6": { name: "XianglingC6", - nameLocale: 1791, + nameLocale: 1797, - description: 1795, + description: 1801, badge: getImage("Xiangling"), @@ -1299,9 +1299,9 @@ export default { "XingqiuC2": { name: "XingqiuC2", - nameLocale: 1475, + nameLocale: 1479, - description: 1477, + description: 1481, badge: getImage("Xingqiu"), @@ -1314,9 +1314,9 @@ export default { "XinyanC4": { name: "XinyanC4", - nameLocale: 1580, + nameLocale: 1584, - description: 1584, + description: 1588, badge: getImage("Xinyan"), @@ -1329,9 +1329,9 @@ export default { "XinyanTalent2": { name: "XinyanTalent2", - nameLocale: 1581, + nameLocale: 1585, - description: 1585, + description: 1589, badge: getImage("Xinyan"), @@ -1359,9 +1359,9 @@ export default { "YoimiyaTalent2": { name: "YoimiyaTalent2", - nameLocale: 553, + nameLocale: 554, - description: 555, + description: 556, badge: getImage("Yoimiya"), @@ -1392,7 +1392,7 @@ export default { {"default":true,"name":"talent2","title":7,"type":"bool"}, - {"default":4,"max":4,"min":1,"name":"ele_count","title":1673,"type":"int"}, + {"default":4,"max":4,"min":1,"name":"ele_count","title":1678,"type":"int"}, ], }, @@ -1414,9 +1414,9 @@ export default { "ZhongliShield": { name: "ZhongliShield", - nameLocale: 1655, + nameLocale: 1660, - description: 1657, + description: 1662, badge: getImage("Zhongli"), @@ -1429,9 +1429,9 @@ export default { "YelanTalent2": { name: "YelanTalent2", - nameLocale: 468, + nameLocale: 469, - description: 472, + description: 473, badge: getImage("Yelan"), @@ -1439,16 +1439,16 @@ export default { genre: "Character", config: [ - {"default":14,"max":14,"min":0,"name":"secs","title":1365,"type":"int"}, + {"default":14,"max":14,"min":0,"name":"secs","title":1369,"type":"int"}, ], }, "YelanC4": { name: "YelanC4", - nameLocale: 469, + nameLocale: 470, - description: 471, + description: 472, badge: getImage("Yelan"), @@ -1456,16 +1456,16 @@ export default { genre: "Character", config: [ - {"default":4,"max":4,"min":1,"name":"count","title":1025,"type":"int"}, + {"default":4,"max":4,"min":1,"name":"count","title":1027,"type":"int"}, ], }, "KamisatoAyatoQ": { name: "KamisatoAyatoQ", - nameLocale: 1314, + nameLocale: 1317, - description: 1317, + description: 1320, badge: getImage("Ayato"), @@ -1473,16 +1473,16 @@ export default { genre: "Character", config: [ - {"default":8,"max":15,"min":1,"name":"skill_level","title":1316,"type":"int"}, + {"default":8,"max":15,"min":1,"name":"skill_level","title":1319,"type":"int"}, ], }, "ShikanoinHeizouTalent2": { name: "ShikanoinHeizouTalent2", - nameLocale: 1816, + nameLocale: 1822, - description: 1818, + description: 1824, badge: getImage("Heizo"), @@ -1495,9 +1495,9 @@ export default { "TighnariC4": { name: "TighnariC4", - nameLocale: 700, + nameLocale: 701, - description: 702, + description: 703, badge: getImage("Tighnari"), @@ -1505,16 +1505,16 @@ export default { genre: "Character", config: [ - {"default":false,"name":"after_reaction","title":1615,"type":"bool"}, + {"default":false,"name":"after_reaction","title":1619,"type":"bool"}, ], }, "DoriC4": { name: "DoriC4", - nameLocale: 465, + nameLocale: 466, - description: 466, + description: 467, badge: getImage("Dori"), @@ -1522,7 +1522,7 @@ export default { genre: "Character", config: [ - {"default":false,"name":"hp_below50","title":1236,"type":"bool"}, + {"default":false,"name":"hp_below50","title":1239,"type":"bool"}, {"default":true,"name":"energy_below50","title":231,"type":"bool"}, @@ -1531,9 +1531,9 @@ export default { "NilouTalent1": { name: "NilouTalent1", - nameLocale: 520, + nameLocale: 521, - description: 456, + description: 457, badge: getImage("Nilou"), @@ -1546,9 +1546,9 @@ export default { "NilouTalent2": { name: "NilouTalent2", - nameLocale: 521, + nameLocale: 522, - description: 446, + description: 447, badge: getImage("Nilou"), @@ -1556,16 +1556,16 @@ export default { genre: "Character", config: [ - {"default":60000.0,"name":"hp","title":523,"type":"floatInput"}, + {"default":60000.0,"name":"hp","title":524,"type":"floatInput"}, ], }, "CandaceQ": { name: "CandaceQ", - nameLocale: 435, + nameLocale: 436, - description: 1511, + description: 1515, badge: getImage("Candace"), @@ -1578,9 +1578,9 @@ export default { "CandaceTalent2": { name: "CandaceTalent2", - nameLocale: 434, + nameLocale: 435, - description: 454, + description: 455, badge: getImage("Candace"), @@ -1588,16 +1588,16 @@ export default { genre: "Character", config: [ - {"default":30000.0,"name":"hp","title":436,"type":"floatInput"}, + {"default":30000.0,"name":"hp","title":437,"type":"floatInput"}, ], }, "NahidaTalent1": { name: "NahidaTalent1", - nameLocale: 1358, + nameLocale: 1362, - description: 777, + description: 779, 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":1682,"type":"float"}, + {"default":1000.0,"max":3000.0,"min":0.0,"name":"max_em","title":1687,"type":"float"}, ], }, "FaruzanQ": { name: "FaruzanQ", - nameLocale: 1072, + nameLocale: 1074, - description: 1203, + description: 1206, badge: getImage("Faruzan"), @@ -1622,13 +1622,13 @@ export default { genre: "Character", config: [ - {"default":650,"max":1000,"min":0,"name":"base_atk","title":1073,"type":"int"}, + {"default":650,"max":1000,"min":0,"name":"base_atk","title":1075,"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":42,"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":38,"type":"float"}, {"default":0.0,"max":1.0,"min":0.0,"name":"rate_talent2","title":20,"type":"float"}, @@ -1639,9 +1639,9 @@ export default { "Mika": { name: "Mika", - nameLocale: 1350, + nameLocale: 1353, - description: 805, + description: 807, badge: getImage("Mika"), @@ -1660,7 +1660,7 @@ export default { name: "KavehQ", nameLocale: 339, - description: 1679, + description: 1684, badge: getImage("Kaveh"), @@ -1670,14 +1670,14 @@ export default { {"default":8,"max":15,"min":1,"name":"q_level","title":340,"type":"int"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1047,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1049,"type":"float"}, ], }, "BaizhuTalent2": { name: "BaizhuTalent2", - nameLocale: 1270, + nameLocale: 1273, description: 350, @@ -1687,18 +1687,18 @@ export default { genre: "Character", config: [ - {"default":50000.0,"max":50000.0,"min":0.0,"name":"hp","title":1272,"type":"float"}, + {"default":50000.0,"max":50000.0,"min":0.0,"name":"hp","title":1275,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1047,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1049,"type":"float"}, ], }, "BaizhuC4": { name: "BaizhuC4", - nameLocale: 1271, + nameLocale: 1274, - description: 778, + description: 780, badge: getImage("Baizhuer"), @@ -1706,14 +1706,14 @@ export default { genre: "Character", config: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1047,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1049,"type":"float"}, ], }, "FreedomSworn": { name: "FreedomSworn", - nameLocale: 1414, + nameLocale: 1418, description: 22, @@ -1723,14 +1723,14 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1353,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1356,"type":"intInput"}, ], }, "SongOfBrokenPines": { name: "SongOfBrokenPines", - nameLocale: 1008, + nameLocale: 1010, description: 23, @@ -1740,16 +1740,16 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1353,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1356,"type":"intInput"}, ], }, "WolfsGravestone": { name: "WolfsGravestone", - nameLocale: 1180, + nameLocale: 1183, - description: 719, + description: 720, badge: getImageW("Claymore_Wolfmound"), @@ -1757,14 +1757,14 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1353,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1356,"type":"intInput"}, ], }, "ThrillingTalesOfDragonSlayers": { name: "ThrillingTalesOfDragonSlayers", - nameLocale: 1525, + nameLocale: 1529, description: 168, @@ -1774,14 +1774,14 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1353,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1356,"type":"intInput"}, ], }, "ElegyOfTheEnd": { name: "ElegyOfTheEnd", - nameLocale: 1364, + nameLocale: 1368, description: 330, @@ -1791,16 +1791,16 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1353,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1356,"type":"intInput"}, ], }, "HakushinRing": { name: "HakushinRing", - nameLocale: 1277, + nameLocale: 1280, - description: 1034, + description: 1036, badge: getImageW("Catalyst_Bakufu"), @@ -1808,7 +1808,7 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1353,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1356,"type":"intInput"}, {"default":"Electro","name":"element","title":185,"type":"element8"}, @@ -1819,7 +1819,7 @@ export default { name: "SapwoodBlade", nameLocale: 345, - description: 686, + description: 687, badge: getImageW("Sword_Arakalari"), @@ -1827,18 +1827,18 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1353,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1356,"type":"intInput"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":604,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":606,"type":"float"}, ], }, "Moonpiercer": { name: "Moonpiercer", - nameLocale: 1545, + nameLocale: 1549, - description: 687, + description: 688, badge: getImageW("Pole_Arakalari"), @@ -1846,16 +1846,16 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1353,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1356,"type":"intInput"}, ], }, "XiphosMoonlight": { name: "XiphosMoonlight", - nameLocale: 1496, + nameLocale: 1500, - description: 1490, + description: 1494, badge: getImageW("Sword_Pleroma"), @@ -1863,7 +1863,7 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1353,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1356,"type":"intInput"}, {"default":900.0,"name":"em","title":224,"type":"floatInput"}, @@ -1872,7 +1872,7 @@ export default { "MakhairaAquamarine": { name: "MakhairaAquamarine", - nameLocale: 1198, + nameLocale: 1201, description: 31, @@ -1882,7 +1882,7 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1353,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1356,"type":"intInput"}, {"default":900.0,"name":"em","title":224,"type":"floatInput"}, @@ -1891,9 +1891,9 @@ export default { "KeyOfKhajNisut": { name: "KeyOfKhajNisut", - nameLocale: 430, + nameLocale: 431, - description: 569, + description: 570, badge: getImageW("Sword_Deshret"), @@ -1901,9 +1901,9 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1353,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1356,"type":"intInput"}, - {"default":20000.0,"name":"hp","title":1230,"type":"floatInput"}, + {"default":20000.0,"name":"hp","title":1233,"type":"floatInput"}, ], }, @@ -1912,7 +1912,7 @@ export default { name: "ResonancePyro2", nameLocale: 193, - description: 709, + description: 710, badge: ResonancePyro2_image, @@ -1927,7 +1927,7 @@ export default { name: "ResonanceCryo2", nameLocale: 194, - description: 704, + description: 705, badge: ResonanceCryo2_image, @@ -1935,7 +1935,7 @@ export default { genre: "Resonance", config: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":604,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":606,"type":"float"}, ], }, @@ -1944,7 +1944,7 @@ export default { name: "ResonanceGeo2", nameLocale: 191, - description: 679, + description: 680, badge: ResonanceGeo2_image, @@ -1954,7 +1954,7 @@ export default { {"default":1.0,"max":1.0,"min":0.0,"name":"rate1","title":730,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate2","title":732,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate2","title":733,"type":"float"}, ], }, @@ -1963,7 +1963,7 @@ export default { name: "ResonanceHydro2", nameLocale: 192, - description: 1134, + description: 1136, badge: ResonanceHydro2_image, @@ -1988,16 +1988,16 @@ export default { {"default":1.0,"max":1.0,"min":0.0,"name":"rate1","title":730,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate2","title":732,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate2","title":733,"type":"float"}, ], }, "Instructor4": { name: "Instructor4", - nameLocale: 739, + nameLocale: 740, - description: 1516, + description: 1520, badge: getImageA("UI_RelicIcon_10007_4"), @@ -2010,9 +2010,9 @@ export default { "NoblesseOblige4": { name: "NoblesseOblige4", - nameLocale: 797, + nameLocale: 799, - description: 773, + description: 775, badge: getImageA("UI_RelicIcon_15007_4"), @@ -2025,9 +2025,9 @@ export default { "ArchaicPetra4": { name: "ArchaicPetra4", - nameLocale: 633, + nameLocale: 634, - description: 1452, + description: 1456, badge: getImageA("UI_RelicIcon_15014_4"), @@ -2035,16 +2035,16 @@ export default { genre: "Artifact", config: [ - {"default":"Electro","name":"element","title":1367,"type":"element4"}, + {"default":"Electro","name":"element","title":1371,"type":"element4"}, ], }, "ViridescentVenerer4": { name: "ViridescentVenerer4", - nameLocale: 1387, + nameLocale: 1391, - description: 1026, + description: 1028, badge: getImageA("UI_RelicIcon_15002_4"), @@ -2052,7 +2052,7 @@ export default { genre: "Artifact", config: [ - {"default":"Electro","name":"element","title":653,"type":"element4"}, + {"default":"Electro","name":"element","title":654,"type":"element4"}, ], }, @@ -2074,9 +2074,9 @@ export default { "DeepwoodMemories4": { name: "DeepwoodMemories4", - nameLocale: 1103, + nameLocale: 1105, - description: 208, + description: 207, 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":604,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":606,"type":"float"}, ], }, diff --git a/src/assets/_gen_character.js b/src/assets/_gen_character.js index eb0139c5..cb004636 100644 --- a/src/assets/_gen_character.js +++ b/src/assets/_gen_character.js @@ -294,7 +294,7 @@ export default { AetherAnemo: { name: "AetherAnemo", - nameLocale: 1339, + nameLocale: 1342, element: "Anemo", weapon: "Sword", star: 5, @@ -302,9 +302,9 @@ export default { // avatar: AetherAnemo_avatar, avatar: getName("PlayerBoy"), splash: AetherAnemo_splash, - skillName1: 837, - skillName2: 1762, - skillName3: 1761, + skillName1: 839, + skillName2: 1768, + skillName3: 1767, skillMap1: [ { index: 0, text: 50 }, @@ -313,43 +313,43 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 415 }, + { index: 3, text: 416 }, { index: 4, text: 140 }, - { index: 5, text: 1632 }, + { index: 5, text: 1635 }, - { index: 6, text: 1634 }, + { index: 6, text: 1638 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1799 }, + { index: 9, text: 1805 }, ], skillMap2: [ { index: 10, text: 298 }, - { index: 11, text: 982 }, + { index: 11, text: 984 }, { index: 12, text: 299 }, - { index: 13, text: 989 }, + { index: 13, text: 991 }, ], skillMap3: [ - { index: 14, text: 1829 }, + { index: 14, text: 1835 }, - { index: 15, text: 1709 }, + { index: 15, text: 1714 }, - { index: 18, text: 1708 }, + { index: 18, text: 1713 }, - { index: 17, text: 1710 }, + { index: 17, text: 1715 }, - { index: 16, text: 1707 }, + { index: 16, text: 1712 }, ], config: [ @@ -362,7 +362,7 @@ export default { Albedo: { name: "Albedo", - nameLocale: 1699, + nameLocale: 1704, element: "Geo", weapon: "Sword", star: 5, @@ -370,9 +370,9 @@ export default { // avatar: Albedo_avatar, avatar: getName("Albedo"), splash: Albedo_splash, - skillName1: 881, + skillName1: 883, skillName2: 297, - skillName3: 1534, + skillName3: 1538, skillMap1: [ { index: 0, text: 50 }, @@ -381,33 +381,33 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 415 }, + { index: 3, text: 416 }, { index: 4, text: 140 }, - { index: 5, text: 1631 }, + { index: 5, text: 1634 }, - { index: 6, text: 1635 }, + { index: 6, text: 1637 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1799 }, + { index: 9, text: 1805 }, ], skillMap2: [ - { index: 10, text: 661 }, + { index: 10, text: 662 }, { index: 11, text: 301 }, ], skillMap3: [ - { index: 12, text: 1167 }, + { index: 12, text: 1169 }, - { index: 13, text: 1250 }, + { index: 13, text: 1253 }, ], config: [ @@ -420,7 +420,7 @@ export default { Alhaitham: { name: "Alhaitham", - nameLocale: 1406, + nameLocale: 1410, element: "Dendro", weapon: "Sword", star: 5, @@ -428,9 +428,9 @@ export default { // avatar: Alhaitham_avatar, avatar: getName("Alhatham"), splash: Alhaitham_splash, - skillName1: 856, + skillName1: 858, skillName2: 249, - skillName3: 1042, + skillName3: 1044, skillMap1: [ { index: 0, text: 50 }, @@ -441,24 +441,24 @@ export default { { index: 3, text: 74 }, - { index: 4, text: 415 }, + { index: 4, text: 416 }, { index: 5, text: 140 }, - { index: 6, text: 1631 }, + { index: 6, text: 1634 }, - { index: 7, text: 1635 }, + { index: 7, text: 1637 }, { index: 8, text: 83 }, { index: 9, text: 171 }, - { index: 10, text: 1799 }, + { index: 10, text: 1805 }, ], skillMap2: [ - { index: 11, text: 1340 }, + { index: 11, text: 1343 }, { index: 12, text: 2 }, @@ -469,28 +469,28 @@ export default { ], skillMap3: [ - { index: 15, text: 337 }, + { index: 15, text: 336 }, ], config: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"c2_stack","title":399,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"c2_stack","title":400,"type":"float"}, - {"default":0.0,"max":3.0,"min":0.0,"name":"c4_stack","title":401,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"c4_stack","title":402,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"c6_rate","title":405,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"c6_rate","title":406,"type":"float"}, ], configSkill: [ - {"default":true,"name":"under_e","title":1214,"type":"bool"}, + {"default":true,"name":"under_e","title":1217,"type":"bool"}, ], }, Aloy: { name: "Aloy", - nameLocale: 441, + nameLocale: 442, element: "Cryo", weapon: "Bow", star: 5, @@ -498,9 +498,9 @@ export default { // avatar: Aloy_avatar, avatar: getName("Aloy"), splash: Aloy_splash, - skillName1: 843, + skillName1: 845, skillName2: 263, - skillName3: 976, + skillName3: 978, skillMap1: [ { index: 0, text: 51 }, @@ -511,17 +511,17 @@ export default { { index: 3, text: 72 }, - { index: 4, text: 415 }, + { index: 4, text: 416 }, - { index: 5, text: 1284 }, + { index: 5, text: 1287 }, - { index: 6, text: 1127 }, + { index: 6, text: 1129 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1799 }, + { index: 9, text: 1805 }, ], skillMap2: [ @@ -533,7 +533,7 @@ export default { ], skillMap3: [ - { index: 12, text: 661 }, + { index: 12, text: 662 }, ], config: [ @@ -541,14 +541,14 @@ export default { ], configSkill: [ - {"default":4,"max":4,"min":0,"name":"coil_count","title":1360,"type":"int"}, + {"default":4,"max":4,"min":0,"name":"coil_count","title":1364,"type":"int"}, ], }, Amber: { name: "Amber", - nameLocale: 538, + nameLocale: 539, element: "Pyro", weapon: "Bow", star: 4, @@ -556,9 +556,9 @@ export default { // avatar: Amber_avatar, avatar: getName("Ambor"), splash: Amber_splash, - skillName1: 869, - skillName2: 1168, - skillName3: 1346, + skillName1: 871, + skillName2: 1171, + skillName3: 1349, skillMap1: [ { index: 0, text: 50 }, @@ -567,31 +567,31 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 415 }, + { index: 3, text: 416 }, { index: 4, text: 140 }, - { index: 5, text: 1284 }, + { index: 5, text: 1287 }, - { index: 6, text: 1127 }, + { index: 6, text: 1129 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1799 }, + { index: 9, text: 1805 }, ], skillMap2: [ - { index: 10, text: 1169 }, + { index: 10, text: 1173 }, ], skillMap3: [ - { index: 11, text: 1347 }, + { index: 11, text: 1350 }, - { index: 12, text: 1348 }, + { index: 12, text: 1351 }, ], config: [ @@ -604,7 +604,7 @@ export default { AratakiItto: { name: "AratakiItto", - nameLocale: 1422, + nameLocale: 1426, element: "Geo", weapon: "Claymore", star: 5, @@ -612,9 +612,9 @@ export default { // avatar: AratakiItto_avatar, avatar: getName("Itto"), splash: AratakiItto_splash, - skillName1: 891, - skillName2: 1809, - skillName3: 994, + skillName1: 893, + skillName2: 1815, + skillName3: 996, skillMap1: [ { index: 0, text: 50 }, @@ -623,24 +623,24 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 415 }, + { index: 3, text: 416 }, - { index: 4, text: 1428 }, + { index: 4, text: 1432 }, - { index: 5, text: 1427 }, + { index: 5, text: 1431 }, - { index: 6, text: 585 }, + { index: 6, text: 586 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1799 }, + { index: 9, text: 1805 }, ], skillMap2: [ - { index: 10, text: 661 }, + { index: 10, text: 662 }, ], skillMap3: [ @@ -651,14 +651,14 @@ export default { ], configSkill: [ - {"default":true,"name":"after_q","title":451,"type":"bool"}, + {"default":true,"name":"after_q","title":452,"type":"bool"}, ], }, Baizhu: { name: "Baizhu", - nameLocale: 1269, + nameLocale: 1272, element: "Dendro", weapon: "Catalyst", star: 5, @@ -666,9 +666,9 @@ export default { // avatar: Baizhu_avatar, avatar: getName("Baizhuer"), splash: Baizhu_splash, - skillName1: 887, - skillName2: 507, - skillName3: 635, + skillName1: 889, + skillName2: 508, + skillName3: 636, skillMap1: [ { index: 0, text: 50 }, @@ -679,34 +679,34 @@ export default { { index: 3, text: 74 }, - { index: 4, text: 415 }, + { index: 4, text: 416 }, - { index: 5, text: 1628 }, + { index: 5, text: 1632 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1799 }, + { index: 8, text: 1805 }, ], skillMap2: [ - { index: 9, text: 661 }, + { index: 9, text: 662 }, - { index: 10, text: 1071 }, + { index: 10, text: 1072 }, ], skillMap3: [ - { index: 12, text: 1143 }, + { index: 12, text: 1145 }, - { index: 11, text: 791 }, + { index: 11, text: 793 }, ], config: [ - {"default":false,"name":"hp_below_50","title":432,"type":"bool"}, + {"default":false,"name":"hp_below_50","title":433,"type":"bool"}, ], configSkill: [ @@ -716,7 +716,7 @@ export default { Barbara: { name: "Barbara", - nameLocale: 1408, + nameLocale: 1412, element: "Hydro", weapon: "Catalyst", star: 4, @@ -724,9 +724,9 @@ export default { // avatar: Barbara_avatar, avatar: getName("Barbara"), splash: Barbara_splash, - skillName1: 851, - skillName2: 1128, - skillName3: 1669, + skillName1: 853, + skillName2: 1130, + skillName3: 1674, skillMap1: [ { index: 0, text: 50 }, @@ -735,29 +735,29 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 415 }, + { index: 3, text: 416 }, - { index: 4, text: 1628 }, + { index: 4, text: 1632 }, { index: 5, text: 83 }, { index: 6, text: 171 }, - { index: 7, text: 1799 }, + { index: 7, text: 1805 }, ], skillMap2: [ - { index: 8, text: 393 }, + { index: 8, text: 394 }, - { index: 10, text: 691 }, + { index: 10, text: 694 }, - { index: 9, text: 1056 }, + { index: 9, text: 1058 }, ], skillMap3: [ - { index: 11, text: 1070 }, + { index: 11, text: 1073 }, ], config: [ @@ -778,9 +778,9 @@ export default { // avatar: Beidou_avatar, avatar: getName("Beidou"), splash: Beidou_splash, - skillName1: 840, - skillName2: 697, - skillName3: 748, + skillName1: 842, + skillName2: 698, + skillName3: 749, skillMap1: [ { index: 0, text: 50 }, @@ -789,24 +789,24 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 415 }, + { index: 3, text: 416 }, { index: 4, text: 140 }, - { index: 5, text: 1642 }, + { index: 5, text: 1647 }, - { index: 6, text: 1645 }, + { index: 6, text: 1650 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1799 }, + { index: 9, text: 1805 }, ], skillMap2: [ - { index: 10, text: 448 }, + { index: 10, text: 449 }, { index: 11, text: 47 }, @@ -815,9 +815,9 @@ export default { ], skillMap3: [ - { index: 13, text: 661 }, + { index: 13, text: 662 }, - { index: 14, text: 1668 }, + { index: 14, text: 1673 }, ], config: [ @@ -830,7 +830,7 @@ export default { Bennett: { name: "Bennett", - nameLocale: 1204, + nameLocale: 1207, element: "Pyro", weapon: "Sword", star: 4, @@ -838,9 +838,9 @@ export default { // avatar: Bennett_avatar, avatar: getName("Bennett"), splash: Bennett_splash, - skillName1: 834, - skillName2: 1158, - skillName3: 1384, + skillName1: 836, + skillName2: 1161, + skillName3: 1388, skillMap1: [ { index: 0, text: 50 }, @@ -849,24 +849,24 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 415 }, + { index: 3, text: 416 }, { index: 4, text: 140 }, - { index: 5, text: 1631 }, + { index: 5, text: 1634 }, - { index: 6, text: 1635 }, + { index: 6, text: 1637 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1799 }, + { index: 9, text: 1805 }, ], skillMap2: [ - { index: 10, text: 1147 }, + { index: 10, text: 1149 }, { index: 11, text: 58 }, @@ -876,14 +876,14 @@ export default { { index: 14, text: 129 }, - { index: 15, text: 1170 }, + { index: 15, text: 1172 }, ], skillMap3: [ - { index: 16, text: 661 }, + { index: 16, text: 662 }, - { index: 17, text: 690 }, + { index: 17, text: 691 }, ], config: [ @@ -896,7 +896,7 @@ export default { Candace: { name: "Candace", - nameLocale: 433, + nameLocale: 434, element: "Hydro", weapon: "Polearm", star: 4, @@ -904,9 +904,9 @@ export default { // avatar: Candace_avatar, avatar: getName("Candace"), splash: Candace_splash, - skillName1: 854, - skillName2: 428, - skillName3: 426, + skillName1: 856, + skillName2: 429, + skillName3: 427, skillMap1: [ { index: 0, text: 50 }, @@ -917,46 +917,46 @@ export default { { index: 3, text: 74 }, - { index: 4, text: 415 }, + { index: 4, text: 416 }, - { index: 5, text: 1628 }, + { index: 5, text: 1632 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1799 }, + { index: 8, text: 1805 }, ], skillMap2: [ - { index: 9, text: 449 }, + { index: 9, text: 450 }, - { index: 10, text: 1464 }, + { index: 10, text: 1468 }, ], skillMap3: [ - { index: 11, text: 661 }, + { index: 11, text: 662 }, - { index: 12, text: 1055 }, + { index: 12, text: 1057 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"c2_rate","title":398,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"c2_rate","title":399,"type":"float"}, ], configSkill: [ - {"default":true,"name":"crown","title":1555,"type":"bool"}, + {"default":true,"name":"crown","title":1559,"type":"bool"}, ], }, Chongyun: { name: "Chongyun", - nameLocale: 1619, + nameLocale: 1623, element: "Cryo", weapon: "Claymore", star: 4, @@ -964,9 +964,9 @@ export default { // avatar: Chongyun_avatar, avatar: getName("Chongyun"), splash: Chongyun_splash, - skillName1: 859, - skillName2: 1141, - skillName3: 1140, + skillName1: 861, + skillName2: 1143, + skillName3: 1142, skillMap1: [ { index: 0, text: 50 }, @@ -975,27 +975,27 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 415 }, + { index: 3, text: 416 }, - { index: 4, text: 1642 }, + { index: 4, text: 1647 }, - { index: 5, text: 1645 }, + { index: 5, text: 1650 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1799 }, + { index: 8, text: 1805 }, ], skillMap2: [ - { index: 9, text: 661 }, + { index: 9, text: 662 }, ], skillMap3: [ - { index: 10, text: 661 }, + { index: 10, text: 662 }, ], config: [ @@ -1008,7 +1008,7 @@ export default { Collei: { name: "Collei", - nameLocale: 1024, + nameLocale: 1026, element: "Dendro", weapon: "Bow", star: 4, @@ -1016,9 +1016,9 @@ export default { // avatar: Collei_avatar, avatar: getName("Collei"), splash: Collei_splash, - skillName1: 867, - skillName2: 684, - skillName3: 1191, + skillName1: 869, + skillName2: 685, + skillName3: 1194, skillMap1: [ { index: 0, text: 50 }, @@ -1027,34 +1027,34 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 415 }, + { index: 3, text: 416 }, - { index: 4, text: 1284 }, + { index: 4, text: 1287 }, - { index: 5, text: 1127 }, + { index: 5, text: 1129 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1799 }, + { index: 8, text: 1805 }, ], skillMap2: [ - { index: 9, text: 661 }, + { index: 9, text: 662 }, ], skillMap3: [ - { index: 10, text: 1166 }, + { index: 10, text: 1170 }, - { index: 11, text: 1568 }, + { index: 11, text: 1572 }, ], config: [ - {"default":false,"name":"background","title":453,"type":"bool"}, + {"default":false,"name":"background","title":454,"type":"bool"}, ], configSkill: [ @@ -1064,7 +1064,7 @@ export default { Cyno: { name: "Cyno", - nameLocale: 1553, + nameLocale: 1557, element: "Electro", weapon: "Polearm", star: 5, @@ -1072,9 +1072,9 @@ export default { // avatar: Cyno_avatar, avatar: getName("Cyno"), splash: Cyno_splash, - skillName1: 825, - skillName2: 1336, - skillName3: 427, + skillName1: 827, + skillName2: 1339, + skillName3: 428, skillMap1: [ { index: 0, text: 50 }, @@ -1083,42 +1083,42 @@ export default { { index: 2, text: 76 }, - { index: 3, text: 415 }, + { index: 3, text: 416 }, - { index: 4, text: 1628 }, + { index: 4, text: 1632 }, { index: 5, text: 83 }, { index: 6, text: 171 }, - { index: 7, text: 1799 }, + { index: 7, text: 1805 }, - { index: 11, text: 377 }, + { index: 11, text: 378 }, - { index: 12, text: 380 }, + { index: 12, text: 381 }, - { index: 13, text: 378 }, + { index: 13, text: 379 }, - { index: 14, text: 384 }, + { index: 14, text: 385 }, - { index: 15, text: 381 }, + { index: 15, text: 382 }, - { index: 16, text: 386 }, + { index: 16, text: 387 }, - { index: 17, text: 379 }, + { index: 17, text: 380 }, - { index: 18, text: 382 }, + { index: 18, text: 383 }, - { index: 19, text: 387 }, + { index: 19, text: 388 }, ], skillMap2: [ - { index: 8, text: 661 }, + { index: 8, text: 662 }, - { index: 9, text: 383 }, + { index: 9, text: 384 }, - { index: 10, text: 385 }, + { index: 10, text: 386 }, ], skillMap3: [ @@ -1126,21 +1126,21 @@ export default { ], config: [ - {"default":4.0,"max":5.0,"min":0.0,"name":"c2_stack","title":396,"type":"float"}, + {"default":4.0,"max":5.0,"min":0.0,"name":"c2_stack","title":397,"type":"float"}, - {"default":true,"name":"after_q","title":376,"type":"bool"}, + {"default":true,"name":"after_q","title":377,"type":"bool"}, ], configSkill: [ - {"default":true,"name":"under_judication","title":1514,"type":"bool"}, + {"default":true,"name":"under_judication","title":1518,"type":"bool"}, ], }, Dehya: { name: "Dehya", - nameLocale: 1600, + nameLocale: 1604, element: "Pyro", weapon: "Claymore", star: 5, @@ -1148,9 +1148,9 @@ export default { // avatar: Dehya_avatar, avatar: getName("Dehya"), splash: Dehya_splash, - skillName1: 846, - skillName2: 1164, - skillName3: 1145, + skillName1: 848, + skillName2: 1167, + skillName3: 1147, skillMap1: [ { index: 0, text: 50 }, @@ -1159,17 +1159,17 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 415 }, + { index: 3, text: 416 }, - { index: 4, text: 1642 }, + { index: 4, text: 1647 }, - { index: 5, text: 1645 }, + { index: 5, text: 1650 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1799 }, + { index: 8, text: 1805 }, ], skillMap2: [ @@ -1178,14 +1178,14 @@ export default { { index: 10, text: 304 }, - { index: 11, text: 1751 }, + { index: 11, text: 1757 }, ], skillMap3: [ - { index: 12, text: 1153 }, + { index: 12, text: 1155 }, - { index: 13, text: 1159 }, + { index: 13, text: 1162 }, ], config: [ @@ -1202,7 +1202,7 @@ export default { Diluc: { name: "Diluc", - nameLocale: 1594, + nameLocale: 1598, element: "Pyro", weapon: "Claymore", star: 5, @@ -1210,9 +1210,9 @@ export default { // avatar: Diluc_avatar, avatar: getName("Diluc"), splash: Diluc_splash, - skillName1: 855, - skillName2: 1607, - skillName3: 1820, + skillName1: 857, + skillName2: 1611, + skillName3: 1826, skillMap1: [ { index: 0, text: 50 }, @@ -1221,17 +1221,17 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 415 }, + { index: 3, text: 416 }, - { index: 4, text: 1642 }, + { index: 4, text: 1647 }, - { index: 5, text: 1645 }, + { index: 5, text: 1650 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1799 }, + { index: 8, text: 1805 }, ], skillMap2: [ @@ -1245,11 +1245,11 @@ export default { ], skillMap3: [ - { index: 12, text: 746 }, + { index: 12, text: 747 }, - { index: 13, text: 688 }, + { index: 13, text: 689 }, - { index: 14, text: 1171 }, + { index: 14, text: 1174 }, ], config: [ @@ -1257,14 +1257,14 @@ export default { ], configSkill: [ - {"default":true,"name":"pyro","title":812,"type":"bool"}, + {"default":true,"name":"pyro","title":814,"type":"bool"}, ], }, Diona: { name: "Diona", - nameLocale: 1596, + nameLocale: 1600, element: "Cryo", weapon: "Bow", star: 4, @@ -1272,9 +1272,9 @@ export default { // avatar: Diona_avatar, avatar: getName("Diona"), splash: Diona_splash, - skillName1: 864, - skillName2: 1190, - skillName3: 995, + skillName1: 866, + skillName2: 1193, + skillName3: 997, skillMap1: [ { index: 0, text: 50 }, @@ -1283,31 +1283,31 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 415 }, + { index: 3, text: 416 }, { index: 4, text: 140 }, - { index: 5, text: 1284 }, + { index: 5, text: 1287 }, - { index: 6, text: 1127 }, + { index: 6, text: 1129 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1799 }, + { index: 9, text: 1805 }, ], skillMap2: [ - { index: 10, text: 1189 }, + { index: 10, text: 1192 }, ], skillMap3: [ - { index: 11, text: 661 }, + { index: 11, text: 662 }, - { index: 12, text: 1753 }, + { index: 12, text: 1759 }, { index: 13, text: 692 }, @@ -1322,7 +1322,7 @@ export default { Dori: { name: "Dori", - nameLocale: 464, + nameLocale: 465, element: "Electro", weapon: "Claymore", star: 4, @@ -1330,8 +1330,8 @@ export default { // avatar: Dori_avatar, avatar: getName("Dori"), splash: Dori_splash, - skillName1: 835, - skillName2: 1665, + skillName1: 837, + skillName2: 1670, skillName3: 341, skillMap1: [ @@ -1343,27 +1343,27 @@ export default { { index: 3, text: 72 }, - { index: 4, text: 1642 }, + { index: 4, text: 1647 }, - { index: 5, text: 1645 }, + { index: 5, text: 1650 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1799 }, + { index: 8, text: 1805 }, ], skillMap2: [ - { index: 9, text: 754 }, + { index: 9, text: 755 }, - { index: 10, text: 409 }, + { index: 10, text: 410 }, ], skillMap3: [ - { index: 11, text: 1592 }, + { index: 11, text: 1596 }, { index: 12, text: 693 }, @@ -1388,7 +1388,7 @@ export default { // avatar: Eula_avatar, avatar: getName("Eula"), splash: Eula_splash, - skillName1: 880, + skillName1: 882, skillName2: 269, skillName3: 283, skillMap1: [ @@ -1401,37 +1401,37 @@ export default { { index: 3, text: 74 }, - { index: 4, text: 415 }, + { index: 4, text: 416 }, { index: 5, text: 141 }, { index: 6, text: 142 }, - { index: 7, text: 1642 }, + { index: 7, text: 1647 }, - { index: 8, text: 1645 }, + { index: 8, text: 1650 }, { index: 9, text: 83 }, { index: 10, text: 171 }, - { index: 11, text: 1799 }, + { index: 11, text: 1805 }, ], skillMap2: [ - { index: 12, text: 1147 }, + { index: 12, text: 1149 }, - { index: 13, text: 1666 }, + { index: 13, text: 1671 }, { index: 14, text: 268 }, - { index: 15, text: 1043 }, + { index: 15, text: 1045 }, ], skillMap3: [ - { index: 16, text: 661 }, + { index: 16, text: 662 }, { index: 17, text: 234 }, @@ -1448,7 +1448,7 @@ export default { Faruzan: { name: "Faruzan", - nameLocale: 1201, + nameLocale: 1204, element: "Anemo", weapon: "Bow", star: 4, @@ -1456,9 +1456,9 @@ export default { // avatar: Faruzan_avatar, avatar: getName("Faruzan"), splash: Faruzan_splash, - skillName1: 886, - skillName2: 1750, - skillName3: 676, + skillName1: 888, + skillName2: 1756, + skillName3: 677, skillMap1: [ { index: 0, text: 50 }, @@ -1467,34 +1467,34 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 415 }, + { index: 3, text: 416 }, - { index: 4, text: 1628 }, + { index: 4, text: 1632 }, - { index: 4, text: 1127 }, + { index: 4, text: 1129 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1799 }, + { index: 8, text: 1805 }, ], skillMap2: [ - { index: 9, text: 661 }, + { index: 9, text: 662 }, - { index: 10, text: 1760 }, + { index: 10, text: 1766 }, ], skillMap3: [ - { index: 11, text: 661 }, + { index: 11, text: 662 }, ], config: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"q_ratio","title":38,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"q_ratio","title":39,"type":"float"}, ], configSkill: [ @@ -1506,7 +1506,7 @@ export default { Fischl: { name: "Fischl", - nameLocale: 1456, + nameLocale: 1460, element: "Electro", weapon: "Bow", star: 4, @@ -1514,9 +1514,9 @@ export default { // avatar: Fischl_avatar, avatar: getName("Fischl"), splash: Fischl_splash, - skillName1: 874, - skillName2: 473, - skillName3: 1405, + skillName1: 876, + skillName2: 474, + skillName3: 1409, skillMap1: [ { index: 0, text: 50 }, @@ -1525,31 +1525,31 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 415 }, + { index: 3, text: 416 }, { index: 4, text: 140 }, - { index: 5, text: 1284 }, + { index: 5, text: 1287 }, - { index: 6, text: 1127 }, + { index: 6, text: 1129 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1799 }, + { index: 9, text: 1805 }, ], skillMap2: [ - { index: 10, text: 516 }, + { index: 10, text: 517 }, - { index: 11, text: 363 }, + { index: 11, text: 364 }, ], skillMap3: [ - { index: 12, text: 1460 }, + { index: 12, text: 1464 }, ], config: [ @@ -1562,7 +1562,7 @@ export default { Freminet: { name: "Freminet", - nameLocale: 1454, + nameLocale: 1458, element: "Cryo", weapon: "Claymore", star: 4, @@ -1570,9 +1570,9 @@ export default { // avatar: Freminet_avatar, avatar: getName("Freminet"), splash: Freminet_splash, - skillName1: 852, - skillName2: 1092, - skillName3: 1188, + skillName1: 854, + skillName2: 1094, + skillName3: 1191, skillMap1: [ { index: 0, text: 50 }, @@ -1581,26 +1581,26 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 415 }, + { index: 3, text: 416 }, - { index: 4, text: 1642 }, + { index: 4, text: 1647 }, - { index: 5, text: 1645 }, + { index: 5, text: 1650 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1799 }, + { index: 8, text: 1805 }, ], skillMap2: [ { index: 9, text: 82 }, - { index: 10, text: 1745 }, + { index: 10, text: 1750 }, - { index: 11, text: 1718 }, + { index: 11, text: 1723 }, { index: 12, text: 62 }, @@ -1614,35 +1614,35 @@ export default { { index: 17, text: 81 }, - { index: 18, text: 423 }, + { index: 18, text: 424 }, - { index: 19, text: 1142 }, + { index: 19, text: 1144 }, - { index: 21, text: 1746 }, + { index: 21, text: 1751 }, ], skillMap3: [ - { index: 20, text: 661 }, + { index: 20, text: 662 }, ], config: [ - {"default":0.0,"max":2.0,"min":0.0,"name":"c4_stack","title":403,"type":"float"}, + {"default":0.0,"max":2.0,"min":0.0,"name":"c4_stack","title":404,"type":"float"}, - {"default":0.0,"max":3.0,"min":0.0,"name":"c6_stack","title":404,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"c6_stack","title":405,"type":"float"}, ], configSkill: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":500,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":501,"type":"float"}, ], }, Ganyu: { name: "Ganyu", - nameLocale: 1224, + nameLocale: 1227, element: "Cryo", weapon: "Bow", star: 5, @@ -1650,9 +1650,9 @@ export default { // avatar: Ganyu_avatar, avatar: getName("Ganyu"), splash: Ganyu_splash, - skillName1: 853, - skillName2: 577, - skillName3: 1712, + skillName1: 855, + skillName2: 578, + skillName3: 1717, skillMap1: [ { index: 0, text: 50 }, @@ -1661,30 +1661,30 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 415 }, + { index: 3, text: 416 }, { index: 4, text: 140 }, { index: 5, text: 246 }, - { index: 6, text: 1284 }, + { index: 6, text: 1287 }, { index: 7, text: 61 }, - { index: 8, text: 1744 }, + { index: 8, text: 1749 }, - { index: 9, text: 1743 }, + { index: 9, text: 1748 }, { index: 10, text: 83 }, { index: 11, text: 171 }, - { index: 12, text: 1799 }, + { index: 12, text: 1805 }, ], skillMap2: [ - { index: 13, text: 661 }, + { index: 13, text: 662 }, ], skillMap3: [ @@ -1694,12 +1694,12 @@ export default { ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":494,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":495,"type":"float"}, ], configSkill: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"talent1_rate","title":492,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent1_rate","title":493,"type":"float"}, ], }, @@ -1714,8 +1714,8 @@ export default { // avatar: Gorou_avatar, avatar: getName("Gorou"), splash: Gorou_splash, - skillName1: 890, - skillName2: 1174, + skillName1: 892, + skillName2: 1177, skillName3: 252, skillMap1: [ @@ -1725,29 +1725,29 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 415 }, + { index: 3, text: 416 }, - { index: 4, text: 1284 }, + { index: 4, text: 1287 }, - { index: 5, text: 1127 }, + { index: 5, text: 1129 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1799 }, + { index: 8, text: 1805 }, ], skillMap2: [ - { index: 9, text: 661 }, + { index: 9, text: 662 }, ], skillMap3: [ - { index: 10, text: 661 }, + { index: 10, text: 662 }, - { index: 11, text: 580 }, + { index: 11, text: 581 }, ], config: [ @@ -1760,7 +1760,7 @@ export default { HuTao: { name: "HuTao", - nameLocale: 1400, + nameLocale: 1404, element: "Pyro", weapon: "Polearm", star: 5, @@ -1768,9 +1768,9 @@ export default { // avatar: HuTao_avatar, avatar: getName("Hutao"), splash: HuTao_splash, - skillName1: 839, - skillName2: 1470, - skillName3: 540, + skillName1: 841, + skillName2: 1474, + skillName3: 541, skillMap1: [ { index: 0, text: 50 }, @@ -1779,7 +1779,7 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 415 }, + { index: 3, text: 416 }, { index: 4, text: 141 }, @@ -1787,42 +1787,42 @@ export default { { index: 6, text: 246 }, - { index: 7, text: 1628 }, + { index: 7, text: 1632 }, { index: 8, text: 83 }, { index: 9, text: 171 }, - { index: 10, text: 1799 }, + { index: 10, text: 1805 }, ], skillMap2: [ - { index: 11, text: 1473 }, + { index: 11, text: 1477 }, ], skillMap3: [ - { index: 12, text: 661 }, + { index: 12, text: 662 }, { index: 13, text: 172 }, ], config: [ - {"default":true,"name":"le_50","title":1236,"type":"bool"}, + {"default":true,"name":"le_50","title":1239,"type":"bool"}, ], configSkill: [ - {"default":true,"name":"after_e","title":622,"type":"bool"}, + {"default":true,"name":"after_e","title":623,"type":"bool"}, ], }, Jean: { name: "Jean", - nameLocale: 1217, + nameLocale: 1220, element: "Anemo", weapon: "Sword", star: 5, @@ -1830,9 +1830,9 @@ export default { // avatar: Jean_avatar, avatar: getName("Qin"), splash: Jean_splash, - skillName1: 878, - skillName2: 1759, - skillName3: 1462, + skillName1: 880, + skillName2: 1765, + skillName3: 1466, skillMap1: [ { index: 0, text: 50 }, @@ -1841,33 +1841,33 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 415 }, + { index: 3, text: 416 }, { index: 4, text: 140 }, - { index: 5, text: 1628 }, + { index: 5, text: 1632 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1799 }, + { index: 8, text: 1805 }, ], skillMap2: [ - { index: 9, text: 661 }, + { index: 9, text: 662 }, ], skillMap3: [ - { index: 10, text: 1167 }, + { index: 10, text: 1169 }, { index: 11, text: 288 }, - { index: 12, text: 1752 }, + { index: 12, text: 1758 }, - { index: 13, text: 689 }, + { index: 13, text: 690 }, ], config: [ @@ -1880,7 +1880,7 @@ export default { KaedeharaKazuha: { name: "KaedeharaKazuha", - nameLocale: 1012, + nameLocale: 1014, element: "Anemo", weapon: "Sword", star: 5, @@ -1888,7 +1888,7 @@ export default { // avatar: KaedeharaKazuha_avatar, avatar: getName("Kazuha"), splash: KaedeharaKazuha_splash, - skillName1: 844, + skillName1: 846, skillName2: 331, skillName3: 67, skillMap1: [ @@ -1901,19 +1901,19 @@ export default { { index: 3, text: 74 }, - { index: 4, text: 415 }, + { index: 4, text: 416 }, { index: 5, text: 143 }, - { index: 6, text: 1630 }, + { index: 6, text: 1633 }, - { index: 6, text: 1636 }, + { index: 6, text: 1640 }, { index: 8, text: 83 }, { index: 9, text: 171 }, - { index: 10, text: 1799 }, + { index: 10, text: 1805 }, ], skillMap2: [ @@ -1932,24 +1932,24 @@ export default { { index: 17, text: 115 }, - { index: 18, text: 1149 }, + { index: 18, text: 1150 }, - { index: 19, text: 1667 }, + { index: 19, text: 1672 }, ], skillMap3: [ - { index: 20, text: 746 }, + { index: 20, text: 747 }, - { index: 21, text: 688 }, + { index: 21, text: 689 }, - { index: 22, text: 1709 }, + { index: 22, text: 1714 }, - { index: 23, text: 1708 }, + { index: 23, text: 1713 }, - { index: 24, text: 1707 }, + { index: 24, text: 1712 }, - { index: 25, text: 1710 }, + { index: 25, text: 1715 }, ], config: [ @@ -1972,8 +1972,8 @@ export default { // avatar: Kaeya_avatar, avatar: getName("Kaeya"), splash: Kaeya_splash, - skillName1: 829, - skillName2: 1748, + skillName1: 831, + skillName2: 1753, skillName3: 278, skillMap1: [ @@ -1983,29 +1983,29 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 415 }, + { index: 3, text: 416 }, { index: 4, text: 140 }, - { index: 5, text: 1631 }, + { index: 5, text: 1634 }, - { index: 6, text: 1635 }, + { index: 6, text: 1637 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1799 }, + { index: 9, text: 1805 }, ], skillMap2: [ - { index: 10, text: 661 }, + { index: 10, text: 662 }, ], skillMap3: [ - { index: 11, text: 661 }, + { index: 11, text: 662 }, ], config: [ @@ -2018,7 +2018,7 @@ export default { KamisatoAyaka: { name: "KamisatoAyaka", - nameLocale: 1318, + nameLocale: 1321, element: "Cryo", weapon: "Sword", star: 5, @@ -2026,9 +2026,9 @@ export default { // avatar: KamisatoAyaka_avatar, avatar: getName("Ayaka"), splash: KamisatoAyaka_splash, - skillName1: 870, - skillName2: 1308, - skillName3: 1311, + skillName1: 872, + skillName2: 1311, + skillName3: 1314, skillMap1: [ { index: 0, text: 50 }, @@ -2037,41 +2037,41 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 421 }, + { index: 3, text: 422 }, { index: 5, text: 140 }, - { index: 6, text: 1638 }, + { index: 6, text: 1642 }, { index: 8, text: 83 }, { index: 9, text: 171 }, - { index: 10, text: 1799 }, + { index: 10, text: 1805 }, ], skillMap2: [ - { index: 11, text: 661 }, + { index: 11, text: 662 }, ], skillMap3: [ { index: 12, text: 295 }, - { index: 13, text: 1373 }, + { index: 13, text: 1377 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"talent1_rate","title":495,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent1_rate","title":496,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":496,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":497,"type":"float"}, ], configSkill: [ - {"default":true,"name":"after_dash","title":1312,"type":"bool"}, + {"default":true,"name":"after_dash","title":1315,"type":"bool"}, {"default":false,"name":"use_c6","title":242,"type":"bool"}, @@ -2080,7 +2080,7 @@ export default { KamisatoAyato: { name: "KamisatoAyato", - nameLocale: 1313, + nameLocale: 1316, element: "Hydro", weapon: "Sword", star: 5, @@ -2088,9 +2088,9 @@ export default { // avatar: KamisatoAyato_avatar, avatar: getName("Ayato"), splash: KamisatoAyato_splash, - skillName1: 871, - skillName2: 1310, - skillName3: 1309, + skillName1: 873, + skillName2: 1313, + skillName3: 1312, skillMap1: [ { index: 0, text: 50 }, @@ -2099,17 +2099,17 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 416 }, + { index: 3, text: 417 }, { index: 4, text: 140 }, - { index: 5, text: 1628 }, + { index: 5, text: 1632 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1799 }, + { index: 8, text: 1805 }, ], skillMap2: [ @@ -2120,12 +2120,12 @@ export default { { index: 11, text: 79 }, - { index: 12, text: 1053 }, + { index: 12, text: 1055 }, ], skillMap3: [ - { index: 13, text: 1057 }, + { index: 13, text: 1059 }, ], config: [ @@ -2135,7 +2135,7 @@ export default { {"default":4,"max":5,"min":0,"name":"e_stack","title":32,"type":"int"}, - {"default":true,"name":"in_q","title":452,"type":"bool"}, + {"default":true,"name":"in_q","title":453,"type":"bool"}, ], }, @@ -2150,9 +2150,9 @@ export default { // avatar: Kaveh_avatar, avatar: getName("Kaveh"), splash: Kaveh_splash, - skillName1: 850, - skillName2: 1267, - skillName3: 1356, + skillName1: 852, + skillName2: 1270, + skillName3: 1359, skillMap1: [ { index: 0, text: 50 }, @@ -2161,34 +2161,34 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 415 }, + { index: 3, text: 416 }, - { index: 4, text: 1642 }, + { index: 4, text: 1647 }, - { index: 5, text: 1645 }, + { index: 5, text: 1650 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1799 }, + { index: 8, text: 1805 }, ], skillMap2: [ - { index: 9, text: 661 }, + { index: 9, text: 662 }, ], skillMap3: [ - { index: 10, text: 661 }, + { index: 10, text: 662 }, ], config: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"talent2_stack","title":497,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"talent2_stack","title":498,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"c2_rate","title":400,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"c2_rate","title":401,"type":"float"}, ], configSkill: [ @@ -2208,9 +2208,9 @@ export default { // avatar: Keqing_avatar, avatar: getName("Keqing"), splash: Keqing_splash, - skillName1: 827, - skillName2: 800, - skillName3: 489, + skillName1: 829, + skillName2: 802, + skillName3: 490, skillMap1: [ { index: 0, text: 50 }, @@ -2219,44 +2219,44 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 417 }, + { index: 3, text: 418 }, - { index: 4, text: 418 }, + { index: 4, text: 419 }, { index: 5, text: 140 }, - { index: 6, text: 1631 }, + { index: 6, text: 1634 }, - { index: 7, text: 1635 }, + { index: 7, text: 1637 }, { index: 8, text: 83 }, { index: 9, text: 171 }, - { index: 10, text: 1799 }, + { index: 10, text: 1805 }, ], skillMap2: [ - { index: 11, text: 1726 }, + { index: 11, text: 1731 }, - { index: 12, text: 746 }, + { index: 12, text: 747 }, - { index: 13, text: 1725 }, + { index: 13, text: 1730 }, ], skillMap3: [ - { index: 15, text: 661 }, + { index: 15, text: 662 }, - { index: 16, text: 1593 }, + { index: 16, text: 1597 }, - { index: 18, text: 979 }, + { index: 18, text: 981 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":501,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":502,"type":"float"}, ], configSkill: [ @@ -2268,7 +2268,7 @@ export default { Klee: { name: "Klee", - nameLocale: 364, + nameLocale: 365, element: "Pyro", weapon: "Catalyst", star: 5, @@ -2276,9 +2276,9 @@ export default { // avatar: Klee_avatar, avatar: getName("Klee"), splash: Klee_splash, - skillName1: 866, - skillName2: 1570, - skillName3: 1575, + skillName1: 868, + skillName2: 1574, + skillName3: 1579, skillMap1: [ { index: 0, text: 50 }, @@ -2287,27 +2287,27 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 1628 }, + { index: 3, text: 1632 }, - { index: 4, text: 1639 }, + { index: 4, text: 1643 }, { index: 5, text: 83 }, { index: 6, text: 171 }, - { index: 7, text: 1799 }, + { index: 7, text: 1805 }, ], skillMap2: [ - { index: 8, text: 1571 }, + { index: 8, text: 1575 }, - { index: 9, text: 1535 }, + { index: 9, text: 1539 }, ], skillMap3: [ - { index: 10, text: 1576 }, + { index: 10, text: 1580 }, ], config: [ @@ -2328,9 +2328,9 @@ export default { // avatar: KujouSara_avatar, avatar: getName("Sara"), splash: KujouSara_splash, - skillName1: 892, - skillName2: 1811, - skillName3: 1163, + skillName1: 894, + skillName2: 1817, + skillName3: 1166, skillMap1: [ { index: 0, text: 50 }, @@ -2339,31 +2339,31 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 415 }, + { index: 3, text: 416 }, { index: 4, text: 140 }, - { index: 5, text: 1284 }, + { index: 5, text: 1287 }, - { index: 6, text: 1127 }, + { index: 6, text: 1129 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1799 }, + { index: 9, text: 1805 }, ], skillMap2: [ - { index: 10, text: 480 }, + { index: 10, text: 481 }, ], skillMap3: [ - { index: 11, text: 481 }, + { index: 11, text: 482 }, - { index: 12, text: 482 }, + { index: 12, text: 483 }, ], config: [ @@ -2384,9 +2384,9 @@ export default { // avatar: KukiShinobu_avatar, avatar: getName("Shinobu"), splash: KukiShinobu_splash, - skillName1: 842, - skillName2: 1567, - skillName3: 623, + skillName1: 844, + skillName2: 1571, + skillName3: 624, skillMap1: [ { index: 0, text: 50 }, @@ -2395,44 +2395,44 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 415 }, + { index: 3, text: 416 }, - { index: 4, text: 1631 }, + { index: 4, text: 1634 }, - { index: 5, text: 1635 }, + { index: 5, text: 1637 }, - { index: 6, text: 1628 }, + { index: 6, text: 1632 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1799 }, + { index: 9, text: 1805 }, ], skillMap2: [ - { index: 10, text: 661 }, + { index: 10, text: 662 }, - { index: 11, text: 1566 }, + { index: 11, text: 1570 }, - { index: 12, text: 1565 }, + { index: 12, text: 1569 }, ], skillMap3: [ - { index: 13, text: 336 }, + { index: 13, text: 337 }, - { index: 14, text: 627 }, + { index: 14, text: 628 }, - { index: 15, text: 628 }, + { index: 15, text: 629 }, ], config: [ - {"default":true,"name":"hp_le_50","title":1235,"type":"bool"}, + {"default":true,"name":"hp_le_50","title":1238,"type":"bool"}, - {"default":false,"name":"use_c6","title":375,"type":"bool"}, + {"default":false,"name":"use_c6","title":376,"type":"bool"}, ], configSkill: [ @@ -2442,7 +2442,7 @@ export default { Layla: { name: "Layla", - nameLocale: 1436, + nameLocale: 1440, element: "Cryo", weapon: "Sword", star: 4, @@ -2450,9 +2450,9 @@ export default { // avatar: Layla_avatar, avatar: getName("Layla"), splash: Layla_splash, - skillName1: 862, - skillName2: 440, - skillName3: 801, + skillName1: 864, + skillName2: 441, + skillName3: 803, skillMap1: [ { index: 0, text: 50 }, @@ -2461,27 +2461,27 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 1631 }, + { index: 3, text: 1634 }, - { index: 4, text: 1635 }, + { index: 4, text: 1637 }, { index: 5, text: 83 }, { index: 6, text: 171 }, - { index: 7, text: 1799 }, + { index: 7, text: 1805 }, ], skillMap2: [ - { index: 8, text: 661 }, + { index: 8, text: 662 }, - { index: 9, text: 1784 }, + { index: 9, text: 1790 }, ], skillMap3: [ - { index: 10, text: 798 }, + { index: 10, text: 800 }, ], config: [ @@ -2502,9 +2502,9 @@ export default { // avatar: Lisa_avatar, avatar: getName("Lisa"), splash: Lisa_splash, - skillName1: 847, - skillName2: 1418, - skillName3: 1466, + skillName1: 849, + skillName2: 1422, + skillName3: 1470, skillMap1: [ { index: 0, text: 50 }, @@ -2513,22 +2513,22 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 415 }, + { index: 3, text: 416 }, - { index: 4, text: 1628 }, + { index: 4, text: 1632 }, { index: 5, text: 83 }, { index: 6, text: 171 }, - { index: 7, text: 1799 }, + { index: 7, text: 1805 }, ], skillMap2: [ - { index: 8, text: 1147 }, + { index: 8, text: 1149 }, - { index: 9, text: 789 }, + { index: 9, text: 791 }, { index: 10, text: 48 }, @@ -2539,7 +2539,7 @@ export default { ], skillMap3: [ - { index: 13, text: 1724 }, + { index: 13, text: 1729 }, ], config: [ @@ -2552,7 +2552,7 @@ export default { Lynette: { name: "Lynette", - nameLocale: 1216, + nameLocale: 1219, element: "Anemo", weapon: "Sword", star: 4, @@ -2560,9 +2560,9 @@ export default { // avatar: Lynette_avatar, avatar: getName("Lynette"), splash: Lynette_splash, - skillName1: 883, - skillName2: 1540, - skillName3: 1808, + skillName1: 885, + skillName2: 1544, + skillName3: 1814, skillMap1: [ { index: 0, text: 50 }, @@ -2573,52 +2573,52 @@ export default { { index: 3, text: 74 }, - { index: 4, text: 415 }, + { index: 4, text: 416 }, - { index: 5, text: 1631 }, + { index: 5, text: 1634 }, - { index: 6, text: 1635 }, + { index: 6, text: 1637 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1799 }, + { index: 9, text: 1805 }, ], skillMap2: [ - { index: 10, text: 1539 }, + { index: 10, text: 1543 }, - { index: 11, text: 1090 }, + { index: 11, text: 1092 }, - { index: 12, text: 394 }, + { index: 12, text: 395 }, ], skillMap3: [ - { index: 13, text: 661 }, + { index: 13, text: 662 }, - { index: 14, text: 634 }, + { index: 14, text: 635 }, - { index: 15, text: 617 }, + { index: 15, text: 618 }, - { index: 16, text: 619 }, + { index: 16, text: 620 }, - { index: 17, text: 620 }, + { index: 17, text: 621 }, - { index: 18, text: 621 }, + { index: 18, text: 622 }, - { index: 19, text: 618 }, + { index: 19, text: 619 }, ], config: [ - {"default":0.5,"max":1.0,"min":0.0,"name":"talent1_rate","title":499,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"talent1_rate","title":500,"type":"float"}, - {"default":4,"max":4,"min":1,"name":"talent1_count","title":498,"type":"int"}, + {"default":4,"max":4,"min":1,"name":"talent1_count","title":499,"type":"int"}, - {"default":0.5,"max":1.0,"min":0.0,"name":"talent2_rate","title":504,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"talent2_rate","title":505,"type":"float"}, ], configSkill: [ @@ -2628,7 +2628,7 @@ export default { Lyney: { name: "Lyney", - nameLocale: 1010, + nameLocale: 1012, element: "Pyro", weapon: "Bow", star: 5, @@ -2636,9 +2636,9 @@ export default { // avatar: Lyney_avatar, avatar: getName("Lyney"), splash: Lyney_splash, - skillName1: 885, - skillName2: 1283, - skillName3: 476, + skillName1: 887, + skillName2: 1286, + skillName3: 477, skillMap1: [ { index: 0, text: 50 }, @@ -2647,35 +2647,35 @@ export default { { index: 2, text: 76 }, - { index: 3, text: 415 }, + { index: 3, text: 416 }, - { index: 4, text: 1284 }, + { index: 4, text: 1287 }, { index: 5, text: 61 }, - { index: 6, text: 1715 }, + { index: 6, text: 1720 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1799 }, + { index: 9, text: 1805 }, - { index: 10, text: 1301 }, + { index: 10, text: 1304 }, - { index: 11, text: 1142 }, + { index: 11, text: 1144 }, ], skillMap2: [ - { index: 12, text: 661 }, + { index: 12, text: 662 }, ], skillMap3: [ - { index: 13, text: 661 }, + { index: 13, text: 662 }, - { index: 14, text: 613 }, + { index: 14, text: 614 }, ], config: [ @@ -2687,18 +2687,18 @@ export default { ], configSkill: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"prop_stack","title":1714,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"prop_stack","title":1719,"type":"float"}, - {"default":false,"name":"under_pyro","title":736,"type":"bool"}, + {"default":false,"name":"under_pyro","title":737,"type":"bool"}, - {"default":1,"max":3,"min":0,"name":"pyro_count","title":1683,"type":"int"}, + {"default":1,"max":3,"min":0,"name":"pyro_count","title":1688,"type":"int"}, ], }, Mona: { name: "Mona", - nameLocale: 1430, + nameLocale: 1434, element: "Hydro", weapon: "Catalyst", star: 5, @@ -2706,9 +2706,9 @@ export default { // avatar: Mona_avatar, avatar: getName("Mona"), splash: Mona_splash, - skillName1: 833, - skillName2: 1048, - skillName3: 799, + skillName1: 835, + skillName2: 1050, + skillName3: 801, skillMap1: [ { index: 0, text: 50 }, @@ -2717,27 +2717,27 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 415 }, + { index: 3, text: 416 }, - { index: 4, text: 1628 }, + { index: 4, text: 1632 }, { index: 5, text: 83 }, { index: 6, text: 171 }, - { index: 7, text: 1799 }, + { index: 7, text: 1805 }, ], skillMap2: [ - { index: 8, text: 688 }, + { index: 8, text: 689 }, - { index: 9, text: 1171 }, + { index: 9, text: 1174 }, ], skillMap3: [ - { index: 10, text: 1074 }, + { index: 10, text: 1076 }, ], config: [ @@ -2750,7 +2750,7 @@ export default { Nahida: { name: "Nahida", - nameLocale: 1357, + nameLocale: 1361, element: "Dendro", weapon: "Catalyst", star: 5, @@ -2758,9 +2758,9 @@ export default { // avatar: Nahida_avatar, avatar: getName("Nahida"), splash: Nahida_splash, - skillName1: 877, - skillName2: 645, - skillName3: 624, + skillName1: 879, + skillName2: 646, + skillName3: 625, skillMap1: [ { index: 0, text: 50 }, @@ -2769,24 +2769,24 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 415 }, + { index: 3, text: 416 }, - { index: 4, text: 1628 }, + { index: 4, text: 1632 }, { index: 5, text: 83 }, { index: 6, text: 171 }, - { index: 7, text: 1799 }, + { index: 7, text: 1805 }, ], skillMap2: [ - { index: 8, text: 1147 }, + { index: 8, text: 1149 }, - { index: 9, text: 1666 }, + { index: 9, text: 1671 }, - { index: 10, text: 1136 }, + { index: 10, text: 1138 }, ], skillMap3: [ @@ -2794,7 +2794,7 @@ export default { ], config: [ - {"default":4,"max":4,"min":0,"name":"c4_e_count","title":1831,"type":"int"}, + {"default":4,"max":4,"min":0,"name":"c4_e_count","title":1837,"type":"int"}, ], configSkill: [ @@ -2808,7 +2808,7 @@ export default { Nilou: { name: "Nilou", - nameLocale: 519, + nameLocale: 520, element: "Hydro", weapon: "Sword", star: 5, @@ -2816,9 +2816,9 @@ export default { // avatar: Nilou_avatar, avatar: getName("Nilou"), splash: Nilou_splash, - skillName1: 838, + skillName1: 840, skillName2: 66, - skillName3: 1094, + skillName3: 1096, skillMap1: [ { index: 0, text: 50 }, @@ -2827,39 +2827,39 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 1631 }, + { index: 3, text: 1634 }, - { index: 4, text: 1635 }, + { index: 4, text: 1637 }, { index: 5, text: 83 }, { index: 6, text: 171 }, - { index: 7, text: 1799 }, + { index: 7, text: 1805 }, ], skillMap2: [ - { index: 8, text: 661 }, + { index: 8, text: 662 }, { index: 9, text: 305 }, - { index: 10, text: 784 }, + { index: 10, text: 786 }, { index: 11, text: 306 }, - { index: 12, text: 785 }, + { index: 12, text: 787 }, - { index: 13, text: 1054 }, + { index: 13, text: 1056 }, - { index: 14, text: 1058 }, + { index: 14, text: 1060 }, ], skillMap3: [ - { index: 15, text: 661 }, + { index: 15, text: 662 }, - { index: 16, text: 1059 }, + { index: 16, text: 1061 }, ], config: [ @@ -2882,37 +2882,37 @@ export default { // avatar: Ningguang_avatar, avatar: getName("Ningguang"), splash: Ningguang_splash, - skillName1: 830, - skillName2: 1223, - skillName3: 478, + skillName1: 832, + skillName2: 1226, + skillName3: 479, skillMap1: [ - { index: 0, text: 906 }, + { index: 0, text: 908 }, - { index: 1, text: 1628 }, + { index: 1, text: 1632 }, - { index: 2, text: 802 }, + { index: 2, text: 804 }, { index: 3, text: 83 }, { index: 4, text: 171 }, - { index: 5, text: 1799 }, + { index: 5, text: 1805 }, ], skillMap2: [ - { index: 6, text: 661 }, + { index: 6, text: 662 }, ], skillMap3: [ - { index: 7, text: 1046 }, + { index: 7, text: 1048 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":491,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":492,"type":"float"}, ], configSkill: [ @@ -2922,7 +2922,7 @@ export default { Noelle: { name: "Noelle", - nameLocale: 1537, + nameLocale: 1541, element: "Geo", weapon: "Claymore", star: 4, @@ -2930,9 +2930,9 @@ export default { // avatar: Noelle_avatar, avatar: getName("Noel"), splash: Noelle_splash, - skillName1: 879, - skillName2: 677, - skillName3: 475, + skillName1: 881, + skillName2: 678, + skillName3: 476, skillMap1: [ { index: 0, text: 50 }, @@ -2941,31 +2941,31 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 415 }, + { index: 3, text: 416 }, - { index: 4, text: 1642 }, + { index: 4, text: 1647 }, - { index: 5, text: 1645 }, + { index: 5, text: 1650 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1799 }, + { index: 8, text: 1805 }, ], skillMap2: [ - { index: 9, text: 661 }, + { index: 9, text: 662 }, - { index: 10, text: 1071 }, + { index: 10, text: 1072 }, ], skillMap3: [ - { index: 11, text: 1167 }, + { index: 11, text: 1169 }, - { index: 12, text: 661 }, + { index: 12, text: 662 }, ], config: [ @@ -2980,7 +2980,7 @@ export default { Mika: { name: "Mika", - nameLocale: 1349, + nameLocale: 1352, element: "Cryo", weapon: "Polearm", star: 4, @@ -2988,9 +2988,9 @@ export default { // avatar: Mika_avatar, avatar: getName("Mika"), splash: Mika_splash, - skillName1: 882, - skillName2: 804, - skillName3: 1416, + skillName1: 884, + skillName2: 806, + skillName3: 1420, skillMap1: [ { index: 0, text: 50 }, @@ -2999,22 +2999,22 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 420 }, + { index: 3, text: 421 }, { index: 4, text: 140 }, - { index: 5, text: 1628 }, + { index: 5, text: 1632 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1799 }, + { index: 8, text: 1805 }, ], skillMap2: [ - { index: 9, text: 1747 }, + { index: 9, text: 1752 }, { index: 10, text: 264 }, @@ -3023,9 +3023,9 @@ export default { ], skillMap3: [ - { index: 12, text: 776 }, + { index: 12, text: 778 }, - { index: 13, text: 1814 }, + { index: 13, text: 1820 }, ], config: [ @@ -3046,7 +3046,7 @@ export default { // avatar: Qiqi_avatar, avatar: getName("Qiqi"), splash: Qiqi_splash, - skillName1: 828, + skillName1: 830, skillName2: 157, skillName3: 158, skillMap1: [ @@ -3059,39 +3059,39 @@ export default { { index: 3, text: 74 }, - { index: 4, text: 417 }, + { index: 4, text: 418 }, - { index: 5, text: 418 }, + { index: 5, text: 419 }, { index: 6, text: 140 }, - { index: 7, text: 1631 }, + { index: 7, text: 1634 }, - { index: 8, text: 1635 }, + { index: 8, text: 1637 }, { index: 9, text: 83 }, { index: 10, text: 171 }, - { index: 11, text: 1799 }, + { index: 11, text: 1805 }, ], skillMap2: [ - { index: 12, text: 661 }, + { index: 12, text: 662 }, - { index: 15, text: 556 }, + { index: 15, text: 557 }, - { index: 13, text: 395 }, + { index: 13, text: 396 }, - { index: 14, text: 691 }, + { index: 14, text: 694 }, ], skillMap3: [ - { index: 16, text: 661 }, + { index: 16, text: 662 }, - { index: 17, text: 1071 }, + { index: 17, text: 1072 }, ], config: [ @@ -3104,7 +3104,7 @@ export default { RaidenShogun: { name: "RaidenShogun", - nameLocale: 1733, + nameLocale: 1738, element: "Electro", weapon: "Polearm", star: 5, @@ -3112,9 +3112,9 @@ export default { // avatar: RaidenShogun_avatar, avatar: getName("Shougun"), splash: RaidenShogun_splash, - skillName1: 894, - skillName2: 1305, - skillName3: 515, + skillName1: 896, + skillName2: 1308, + skillName3: 516, skillMap1: [ { index: 0, text: 50 }, @@ -3123,31 +3123,31 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 417 }, + { index: 3, text: 418 }, - { index: 4, text: 418 }, + { index: 4, text: 419 }, { index: 5, text: 140 }, - { index: 6, text: 1628 }, + { index: 6, text: 1632 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1799 }, + { index: 9, text: 1805 }, ], skillMap2: [ - { index: 10, text: 661 }, + { index: 10, text: 662 }, { index: 11, text: 335 }, ], skillMap3: [ - { index: 12, text: 1031 }, + { index: 12, text: 1033 }, { index: 13, text: 50 }, @@ -3155,21 +3155,21 @@ export default { { index: 15, text: 72 }, - { index: 16, text: 417 }, + { index: 16, text: 418 }, - { index: 17, text: 418 }, + { index: 17, text: 419 }, { index: 18, text: 140 }, - { index: 19, text: 1631 }, + { index: 19, text: 1634 }, - { index: 20, text: 1635 }, + { index: 20, text: 1637 }, { index: 21, text: 83 }, { index: 22, text: 171 }, - { index: 23, text: 1799 }, + { index: 23, text: 1805 }, ], config: [ @@ -3177,16 +3177,16 @@ export default { ], configSkill: [ - {"default":true,"name":"under_e","title":458,"type":"bool"}, + {"default":true,"name":"under_e","title":459,"type":"bool"}, - {"default":60,"max":60,"min":0,"name":"resolve_stack","title":1536,"type":"int"}, + {"default":60,"max":60,"min":0,"name":"resolve_stack","title":1540,"type":"int"}, ], }, Razor: { name: "Razor", - nameLocale: 1727, + nameLocale: 1732, element: "Electro", weapon: "Claymore", star: 4, @@ -3194,9 +3194,9 @@ export default { // avatar: Razor_avatar, avatar: getName("Razor"), splash: Razor_splash, - skillName1: 888, + skillName1: 890, skillName2: 300, - skillName3: 1732, + skillName3: 1737, skillMap1: [ { index: 0, text: 50 }, @@ -3205,44 +3205,44 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 415 }, + { index: 3, text: 416 }, - { index: 4, text: 1642 }, + { index: 4, text: 1647 }, - { index: 5, text: 1645 }, + { index: 5, text: 1650 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1799 }, + { index: 8, text: 1805 }, ], skillMap2: [ - { index: 9, text: 1148 }, + { index: 9, text: 1152 }, - { index: 10, text: 1667 }, + { index: 10, text: 1672 }, ], skillMap3: [ - { index: 11, text: 1167 }, + { index: 11, text: 1169 }, - { index: 12, text: 1181 }, + { index: 12, text: 1184 }, - { index: 13, text: 1183 }, + { index: 13, text: 1186 }, - { index: 14, text: 1182 }, + { index: 14, text: 1185 }, - { index: 15, text: 1184 }, + { index: 15, text: 1187 }, ], config: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"e_stack","title":1719,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"e_stack","title":1724,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_ratio","title":506,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_ratio","title":507,"type":"float"}, ], configSkill: [ @@ -3252,7 +3252,7 @@ export default { Rosaria: { name: "Rosaria", - nameLocale: 1376, + nameLocale: 1380, element: "Cryo", weapon: "Polearm", star: 4, @@ -3260,9 +3260,9 @@ export default { // avatar: Rosaria_avatar, avatar: getName("Rosaria"), splash: Rosaria_splash, - skillName1: 848, - skillName2: 414, - skillName3: 1361, + skillName1: 850, + skillName2: 415, + skillName3: 1365, skillMap1: [ { index: 0, text: 50 }, @@ -3271,40 +3271,40 @@ export default { { index: 2, text: 76 }, - { index: 3, text: 415 }, + { index: 3, text: 416 }, { index: 4, text: 141 }, { index: 5, text: 142 }, - { index: 6, text: 1628 }, + { index: 6, text: 1632 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1799 }, + { index: 9, text: 1805 }, ], skillMap2: [ - { index: 10, text: 663 }, + { index: 10, text: 664 }, - { index: 11, text: 665 }, + { index: 11, text: 666 }, ], skillMap3: [ - { index: 12, text: 663 }, + { index: 12, text: 664 }, - { index: 13, text: 665 }, + { index: 13, text: 666 }, { index: 14, text: 266 }, ], config: [ - {"default":true,"name":"e_from_behind","title":603,"type":"bool"}, + {"default":true,"name":"e_from_behind","title":604,"type":"bool"}, ], configSkill: [ @@ -3314,7 +3314,7 @@ export default { SangonomiyaKokomi: { name: "SangonomiyaKokomi", - nameLocale: 1199, + nameLocale: 1202, element: "Hydro", weapon: "Catalyst", star: 5, @@ -3322,9 +3322,9 @@ export default { // avatar: SangonomiyaKokomi_avatar, avatar: getName("Kokomi"), splash: SangonomiyaKokomi_splash, - skillName1: 893, - skillName2: 1096, - skillName3: 1095, + skillName1: 895, + skillName2: 1098, + skillName3: 1097, skillMap1: [ { index: 0, text: 50 }, @@ -3333,27 +3333,27 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 1628 }, + { index: 3, text: 1632 }, { index: 4, text: 83 }, { index: 5, text: 171 }, - { index: 6, text: 1799 }, + { index: 6, text: 1805 }, ], skillMap2: [ - { index: 8, text: 1076 }, + { index: 8, text: 1078 }, - { index: 7, text: 1070 }, + { index: 7, text: 1073 }, ], skillMap3: [ - { index: 9, text: 661 }, + { index: 9, text: 662 }, - { index: 10, text: 393 }, + { index: 10, text: 394 }, ], config: [ @@ -3368,7 +3368,7 @@ export default { Sayu: { name: "Sayu", - nameLocale: 793, + nameLocale: 795, element: "Anemo", weapon: "Claymore", star: 4, @@ -3376,9 +3376,9 @@ export default { // avatar: Sayu_avatar, avatar: getName("Sayu"), splash: Sayu_splash, - skillName1: 841, - skillName2: 389, - skillName3: 388, + skillName1: 843, + skillName2: 390, + skillName3: 389, skillMap1: [ { index: 0, text: 50 }, @@ -3389,49 +3389,49 @@ export default { { index: 3, text: 74 }, - { index: 4, text: 415 }, + { index: 4, text: 416 }, - { index: 5, text: 1642 }, + { index: 5, text: 1647 }, - { index: 6, text: 1645 }, + { index: 6, text: 1650 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1799 }, + { index: 9, text: 1805 }, ], skillMap2: [ - { index: 10, text: 1767 }, + { index: 10, text: 1773 }, - { index: 11, text: 1768 }, + { index: 11, text: 1774 }, - { index: 12, text: 1769 }, + { index: 12, text: 1775 }, - { index: 13, text: 1776 }, + { index: 13, text: 1782 }, - { index: 16, text: 1775 }, + { index: 16, text: 1781 }, - { index: 15, text: 1774 }, + { index: 15, text: 1780 }, - { index: 14, text: 1777 }, + { index: 14, text: 1783 }, - { index: 17, text: 1772 }, + { index: 17, text: 1778 }, - { index: 20, text: 1771 }, + { index: 20, text: 1777 }, - { index: 19, text: 1770 }, + { index: 19, text: 1776 }, - { index: 18, text: 1773 }, + { index: 18, text: 1779 }, ], skillMap3: [ - { index: 21, text: 672 }, + { index: 21, text: 673 }, - { index: 22, text: 673 }, + { index: 22, text: 674 }, { index: 23, text: 84 }, @@ -3448,7 +3448,7 @@ export default { Shenhe: { name: "Shenhe", - nameLocale: 1254, + nameLocale: 1257, element: "Cryo", weapon: "Polearm", star: 5, @@ -3456,9 +3456,9 @@ export default { // avatar: Shenhe_avatar, avatar: getName("Shenhe"), splash: Shenhe_splash, - skillName1: 895, + skillName1: 897, skillName2: 161, - skillName3: 1306, + skillName3: 1309, skillMap1: [ { index: 0, text: 50 }, @@ -3467,33 +3467,33 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 417 }, + { index: 3, text: 418 }, - { index: 4, text: 418 }, + { index: 4, text: 419 }, { index: 5, text: 140 }, - { index: 6, text: 1628 }, + { index: 6, text: 1632 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1799 }, + { index: 9, text: 1805 }, ], skillMap2: [ - { index: 10, text: 1150 }, + { index: 10, text: 1151 }, - { index: 11, text: 1667 }, + { index: 11, text: 1672 }, ], skillMap3: [ - { index: 12, text: 661 }, + { index: 12, text: 662 }, - { index: 13, text: 688 }, + { index: 13, text: 689 }, ], config: [ @@ -3506,7 +3506,7 @@ export default { ShikanoinHeizou: { name: "ShikanoinHeizou", - nameLocale: 1815, + nameLocale: 1821, element: "Anemo", weapon: "Catalyst", star: 4, @@ -3514,9 +3514,9 @@ export default { // avatar: ShikanoinHeizou_avatar, avatar: getName("Heizo"), splash: ShikanoinHeizou_splash, - skillName1: 826, + skillName1: 828, skillName2: 317, - skillName3: 1399, + skillName3: 1403, skillMap1: [ { index: 0, text: 50 }, @@ -3525,49 +3525,49 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 417 }, + { index: 3, text: 418 }, - { index: 4, text: 418 }, + { index: 4, text: 419 }, - { index: 5, text: 419 }, + { index: 5, text: 420 }, - { index: 6, text: 415 }, + { index: 6, text: 416 }, { index: 7, text: 140 }, - { index: 8, text: 1628 }, + { index: 8, text: 1632 }, { index: 9, text: 83 }, { index: 10, text: 171 }, - { index: 11, text: 1799 }, + { index: 11, text: 1805 }, ], skillMap2: [ - { index: 12, text: 662 }, + { index: 12, text: 663 }, - { index: 13, text: 664 }, + { index: 13, text: 665 }, - { index: 14, text: 666 }, + { index: 14, text: 667 }, - { index: 15, text: 667 }, + { index: 15, text: 668 }, - { index: 16, text: 668 }, + { index: 16, text: 669 }, ], skillMap3: [ { index: 17, text: 86 }, - { index: 18, text: 1397 }, + { index: 18, text: 1401 }, - { index: 20, text: 1395 }, + { index: 20, text: 1399 }, - { index: 21, text: 1398 }, + { index: 21, text: 1402 }, - { index: 19, text: 1396 }, + { index: 19, text: 1400 }, ], config: [ @@ -3580,7 +3580,7 @@ export default { Sucrose: { name: "Sucrose", - nameLocale: 1285, + nameLocale: 1288, element: "Anemo", weapon: "Catalyst", star: 4, @@ -3588,9 +3588,9 @@ export default { // avatar: Sucrose_avatar, avatar: getName("Sucrose"), splash: Sucrose_splash, - skillName1: 872, - skillName2: 1763, - skillName3: 1334, + skillName1: 874, + skillName2: 1769, + skillName3: 1337, skillMap1: [ { index: 0, text: 50 }, @@ -3599,33 +3599,33 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 415 }, + { index: 3, text: 416 }, - { index: 4, text: 1628 }, + { index: 4, text: 1632 }, { index: 5, text: 83 }, { index: 6, text: 171 }, - { index: 7, text: 1799 }, + { index: 7, text: 1805 }, ], skillMap2: [ - { index: 8, text: 661 }, + { index: 8, text: 662 }, ], skillMap3: [ - { index: 9, text: 688 }, + { index: 9, text: 689 }, - { index: 10, text: 1709 }, + { index: 10, text: 1714 }, - { index: 11, text: 1708 }, + { index: 11, text: 1713 }, - { index: 13, text: 1707 }, + { index: 13, text: 1712 }, - { index: 12, text: 1710 }, + { index: 12, text: 1715 }, ], config: [ @@ -3638,7 +3638,7 @@ export default { Tartaglia: { name: "Tartaglia", - nameLocale: 1588, + nameLocale: 1592, element: "Hydro", weapon: "Bow", star: 5, @@ -3646,9 +3646,9 @@ export default { // avatar: Tartaglia_avatar, avatar: getName("Tartaglia"), splash: Tartaglia_splash, - skillName1: 849, - skillName2: 1810, - skillName3: 1009, + skillName1: 851, + skillName2: 1816, + skillName3: 1011, skillMap1: [ { index: 0, text: 50 }, @@ -3657,30 +3657,30 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 415 }, + { index: 3, text: 416 }, { index: 4, text: 140 }, { index: 5, text: 246 }, - { index: 6, text: 1284 }, + { index: 6, text: 1287 }, - { index: 7, text: 1127 }, + { index: 7, text: 1129 }, - { index: 8, text: 752 }, + { index: 8, text: 753 }, - { index: 9, text: 751 }, + { index: 9, text: 752 }, { index: 10, text: 83 }, { index: 11, text: 171 }, - { index: 12, text: 1799 }, + { index: 12, text: 1805 }, ], skillMap2: [ - { index: 13, text: 1176 }, + { index: 13, text: 1179 }, { index: 14, text: 50 }, @@ -3688,7 +3688,7 @@ export default { { index: 16, text: 72 }, - { index: 17, text: 415 }, + { index: 17, text: 416 }, { index: 18, text: 140 }, @@ -3696,20 +3696,20 @@ export default { { index: 20, text: 248 }, - { index: 21, text: 1631 }, + { index: 21, text: 1634 }, - { index: 22, text: 1635 }, + { index: 22, text: 1637 }, - { index: 23, text: 749 }, + { index: 23, text: 750 }, ], skillMap3: [ - { index: 24, text: 670 }, + { index: 24, text: 671 }, - { index: 25, text: 671 }, + { index: 25, text: 672 }, - { index: 26, text: 750 }, + { index: 26, text: 751 }, ], config: [ @@ -3722,7 +3722,7 @@ export default { Thoma: { name: "Thoma", - nameLocale: 647, + nameLocale: 648, element: "Pyro", weapon: "Polearm", star: 4, @@ -3730,9 +3730,9 @@ export default { // avatar: Thoma_avatar, avatar: getName("Tohma"), splash: Thoma_splash, - skillName1: 884, - skillName2: 1154, - skillName3: 1282, + skillName1: 886, + skillName2: 1156, + skillName3: 1285, skillMap1: [ { index: 0, text: 50 }, @@ -3741,27 +3741,27 @@ export default { { index: 2, text: 76 }, - { index: 4, text: 415 }, + { index: 4, text: 416 }, - { index: 5, text: 1628 }, + { index: 5, text: 1632 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1799 }, + { index: 8, text: 1805 }, ], skillMap2: [ - { index: 9, text: 661 }, + { index: 9, text: 662 }, ], skillMap3: [ - { index: 10, text: 661 }, + { index: 10, text: 662 }, - { index: 11, text: 1151 }, + { index: 11, text: 1153 }, ], config: [ @@ -3774,7 +3774,7 @@ export default { Tighnari: { name: "Tighnari", - nameLocale: 699, + nameLocale: 700, element: "Dendro", weapon: "Bow", star: 5, @@ -3782,9 +3782,9 @@ export default { // avatar: Tighnari_avatar, avatar: getName("Tighnari"), splash: Tighnari_splash, - skillName1: 875, - skillName2: 1528, - skillName3: 1614, + skillName1: 877, + skillName2: 1532, + skillName3: 1618, skillMap1: [ { index: 0, text: 50 }, @@ -3793,40 +3793,40 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 415 }, + { index: 3, text: 416 }, - { index: 4, text: 1284 }, + { index: 4, text: 1287 }, { index: 5, text: 60 }, - { index: 6, text: 1411 }, + { index: 6, text: 1415 }, - { index: 7, text: 1468 }, + { index: 7, text: 1472 }, { index: 8, text: 83 }, { index: 9, text: 171 }, - { index: 10, text: 1799 }, + { index: 10, text: 1805 }, ], skillMap2: [ - { index: 11, text: 661 }, + { index: 11, text: 662 }, ], skillMap3: [ - { index: 12, text: 1375 }, + { index: 12, text: 1379 }, - { index: 13, text: 1035 }, + { index: 13, text: 1037 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"talent1_ratio","title":502,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent1_ratio","title":503,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"c2_ratio","title":397,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"c2_ratio","title":398,"type":"float"}, ], configSkill: [ @@ -3836,7 +3836,7 @@ export default { Venti: { name: "Venti", - nameLocale: 1112, + nameLocale: 1114, element: "Anemo", weapon: "Bow", star: 5, @@ -3844,9 +3844,9 @@ export default { // avatar: Venti_avatar, avatar: getName("Venti"), splash: Venti_splash, - skillName1: 868, - skillName2: 1798, - skillName3: 1764, + skillName1: 870, + skillName2: 1804, + skillName3: 1770, skillMap1: [ { index: 0, text: 51 }, @@ -3857,43 +3857,43 @@ export default { { index: 4, text: 72 }, - { index: 5, text: 417 }, + { index: 5, text: 418 }, - { index: 6, text: 418 }, + { index: 6, text: 419 }, { index: 8, text: 140 }, { index: 9, text: 246 }, - { index: 10, text: 1284 }, + { index: 10, text: 1287 }, - { index: 11, text: 1127 }, + { index: 11, text: 1129 }, { index: 12, text: 83 }, { index: 13, text: 171 }, - { index: 14, text: 1799 }, + { index: 14, text: 1805 }, ], skillMap2: [ - { index: 15, text: 1147 }, + { index: 15, text: 1149 }, - { index: 16, text: 1666 }, + { index: 16, text: 1671 }, ], skillMap3: [ - { index: 17, text: 688 }, + { index: 17, text: 689 }, - { index: 18, text: 1709 }, + { index: 18, text: 1714 }, - { index: 20, text: 1708 }, + { index: 20, text: 1713 }, - { index: 21, text: 1707 }, + { index: 21, text: 1712 }, - { index: 19, text: 1710 }, + { index: 19, text: 1715 }, ], config: [ @@ -3906,7 +3906,7 @@ export default { Wanderer: { name: "Wanderer", - nameLocale: 1088, + nameLocale: 1090, element: "Anemo", weapon: "Catalyst", star: 5, @@ -3914,9 +3914,9 @@ export default { // avatar: Wanderer_avatar, avatar: getName("Wanderer"), splash: Wanderer_splash, - skillName1: 876, - skillName2: 1385, - skillName3: 1177, + skillName1: 878, + skillName2: 1389, + skillName3: 1180, skillMap1: [ { index: 0, text: 50 }, @@ -3931,7 +3931,7 @@ export default { { index: 5, text: 77 }, - { index: 6, text: 1628 }, + { index: 6, text: 1632 }, { index: 7, text: 28 }, @@ -3939,17 +3939,17 @@ export default { { index: 9, text: 171 }, - { index: 10, text: 1799 }, + { index: 10, text: 1805 }, ], skillMap2: [ - { index: 11, text: 661 }, + { index: 11, text: 662 }, ], skillMap3: [ - { index: 12, text: 669 }, + { index: 12, text: 670 }, ], config: [ @@ -3961,18 +3961,18 @@ export default { ], configSkill: [ - {"default":true,"name":"e_enabled","title":450,"type":"bool"}, + {"default":true,"name":"e_enabled","title":451,"type":"bool"}, {"default":false,"name":"e_hydro","title":26,"type":"bool"}, - {"default":50.0,"max":120.0,"min":0.0,"name":"sdpoints","title":1344,"type":"float"}, + {"default":50.0,"max":120.0,"min":0.0,"name":"sdpoints","title":1347,"type":"float"}, ], }, Xiangling: { name: "Xiangling", - nameLocale: 1789, + nameLocale: 1795, element: "Pyro", weapon: "Polearm", star: 4, @@ -3980,9 +3980,9 @@ export default { // avatar: Xiangling_avatar, avatar: getName("Xiangling"), splash: Xiangling_splash, - skillName1: 865, - skillName2: 1664, - skillName3: 782, + skillName1: 867, + skillName2: 1669, + skillName3: 784, skillMap1: [ { index: 0, text: 50 }, @@ -3993,22 +3993,22 @@ export default { { index: 3, text: 74 }, - { index: 5, text: 422 }, + { index: 5, text: 423 }, { index: 7, text: 140 }, - { index: 8, text: 1628 }, + { index: 8, text: 1632 }, { index: 9, text: 83 }, { index: 10, text: 171 }, - { index: 11, text: 1799 }, + { index: 11, text: 1805 }, ], skillMap2: [ - { index: 12, text: 411 }, + { index: 12, text: 412 }, ], skillMap3: [ @@ -4019,7 +4019,7 @@ export default { { index: 15, text: 78 }, - { index: 16, text: 783 }, + { index: 16, text: 785 }, ], config: [ @@ -4032,7 +4032,7 @@ export default { Xiao: { name: "Xiao", - nameLocale: 1801, + nameLocale: 1807, element: "Anemo", weapon: "Polearm", star: 5, @@ -4040,9 +4040,9 @@ export default { // avatar: Xiao_avatar, avatar: getName("Xiao"), splash: Xiao_splash, - skillName1: 831, - skillName2: 1766, - skillName3: 1749, + skillName1: 833, + skillName2: 1772, + skillName3: 1754, skillMap1: [ { index: 0, text: 51 }, @@ -4053,26 +4053,26 @@ export default { { index: 4, text: 72 }, - { index: 5, text: 417 }, + { index: 5, text: 418 }, - { index: 6, text: 418 }, + { index: 6, text: 419 }, { index: 8, text: 140 }, { index: 9, text: 246 }, - { index: 10, text: 1628 }, + { index: 10, text: 1632 }, { index: 11, text: 83 }, { index: 12, text: 171 }, - { index: 13, text: 1799 }, + { index: 13, text: 1805 }, ], skillMap2: [ - { index: 14, text: 661 }, + { index: 14, text: 662 }, ], skillMap3: [ @@ -4083,18 +4083,18 @@ export default { ], configSkill: [ - {"default":true,"name":"after_q","title":1749,"type":"bool"}, + {"default":true,"name":"after_q","title":1754,"type":"bool"}, - {"default":4.0,"max":4.0,"min":0.0,"name":"talent1_stack","title":505,"type":"float"}, + {"default":4.0,"max":4.0,"min":0.0,"name":"talent1_stack","title":506,"type":"float"}, - {"default":0.0,"max":3.0,"min":0.0,"name":"talent2_stack","title":493,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"talent2_stack","title":494,"type":"float"}, ], }, Xingqiu: { name: "Xingqiu", - nameLocale: 1474, + nameLocale: 1478, element: "Hydro", weapon: "Sword", star: 4, @@ -4102,9 +4102,9 @@ export default { // avatar: Xingqiu_avatar, avatar: getName("Xingqiu"), splash: Xingqiu_splash, - skillName1: 832, - skillName2: 361, - skillName3: 362, + skillName1: 834, + skillName2: 362, + skillName3: 363, skillMap1: [ { index: 0, text: 50 }, @@ -4115,28 +4115,28 @@ export default { { index: 3, text: 74 }, - { index: 5, text: 415 }, + { index: 5, text: 416 }, { index: 6, text: 141 }, { index: 7, text: 142 }, - { index: 9, text: 1631 }, + { index: 9, text: 1634 }, - { index: 10, text: 1635 }, + { index: 10, text: 1637 }, { index: 12, text: 83 }, { index: 13, text: 171 }, - { index: 14, text: 1799 }, + { index: 14, text: 1805 }, ], skillMap2: [ - { index: 15, text: 663 }, + { index: 15, text: 664 }, - { index: 16, text: 665 }, + { index: 16, text: 666 }, ], skillMap3: [ @@ -4149,14 +4149,14 @@ export default { ], configSkill: [ - {"default":false,"name":"c4","title":602,"type":"bool"}, + {"default":false,"name":"c4","title":603,"type":"bool"}, ], }, Xinyan: { name: "Xinyan", - nameLocale: 1579, + nameLocale: 1583, element: "Pyro", weapon: "Claymore", star: 4, @@ -4164,9 +4164,9 @@ export default { // avatar: Xinyan_avatar, avatar: getName("Xinyan"), splash: Xinyan_splash, - skillName1: 860, - skillName2: 1157, - skillName3: 358, + skillName1: 862, + skillName2: 1160, + skillName3: 359, skillMap1: [ { index: 0, text: 50 }, @@ -4175,31 +4175,31 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 415 }, + { index: 3, text: 416 }, - { index: 4, text: 1642 }, + { index: 4, text: 1647 }, - { index: 5, text: 1645 }, + { index: 5, text: 1650 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1799 }, + { index: 8, text: 1805 }, ], skillMap2: [ - { index: 9, text: 696 }, + { index: 9, text: 697 }, - { index: 10, text: 688 }, + { index: 10, text: 689 }, ], skillMap3: [ - { index: 11, text: 661 }, + { index: 11, text: 662 }, - { index: 12, text: 1133 }, + { index: 12, text: 1135 }, ], config: [ @@ -4222,9 +4222,9 @@ export default { // avatar: YaeMiko_avatar, avatar: getName("Yae"), splash: YaeMiko_splash, - skillName1: 863, - skillName2: 1649, - skillName3: 474, + skillName1: 865, + skillName2: 1654, + skillName3: 475, skillMap1: [ { index: 0, text: 50 }, @@ -4233,31 +4233,31 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 1628 }, + { index: 3, text: 1632 }, { index: 4, text: 83 }, { index: 5, text: 171 }, - { index: 6, text: 1799 }, + { index: 6, text: 1805 }, ], skillMap2: [ - { index: 7, text: 1003 }, + { index: 7, text: 1005 }, - { index: 8, text: 1005 }, + { index: 8, text: 1007 }, - { index: 9, text: 1002 }, + { index: 9, text: 1004 }, - { index: 10, text: 1004 }, + { index: 10, text: 1006 }, ], skillMap3: [ - { index: 11, text: 661 }, + { index: 11, text: 662 }, - { index: 12, text: 479 }, + { index: 12, text: 480 }, ], config: [ @@ -4270,7 +4270,7 @@ export default { Yanfei: { name: "Yanfei", - nameLocale: 1155, + nameLocale: 1158, element: "Pyro", weapon: "Catalyst", star: 4, @@ -4278,7 +4278,7 @@ export default { // avatar: Yanfei_avatar, avatar: getName("Feiyan"), splash: Yanfei_splash, - skillName1: 858, + skillName1: 860, skillName2: 93, skillName3: 285, skillMap1: [ @@ -4289,33 +4289,33 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 1627 }, + { index: 3, text: 1631 }, - { index: 4, text: 1623 }, + { index: 4, text: 1627 }, - { index: 5, text: 1624 }, + { index: 5, text: 1628 }, - { index: 6, text: 1625 }, + { index: 6, text: 1629 }, - { index: 7, text: 1626 }, + { index: 7, text: 1630 }, - { index: 8, text: 490 }, + { index: 8, text: 491 }, { index: 9, text: 83 }, { index: 10, text: 171 }, - { index: 11, text: 1799 }, + { index: 11, text: 1805 }, ], skillMap2: [ - { index: 12, text: 661 }, + { index: 12, text: 662 }, ], skillMap3: [ - { index: 13, text: 661 }, + { index: 13, text: 662 }, ], config: [ @@ -4323,14 +4323,14 @@ export default { ], configSkill: [ - {"default":true,"name":"after_q","title":1144,"type":"bool"}, + {"default":true,"name":"after_q","title":1146,"type":"bool"}, ], }, Yaoyao: { name: "Yaoyao", - nameLocale: 1222, + nameLocale: 1225, element: "Dendro", weapon: "Polearm", star: 4, @@ -4338,9 +4338,9 @@ export default { // avatar: Yaoyao_avatar, avatar: getName("Yaoyao"), splash: Yaoyao_splash, - skillName1: 889, + skillName1: 891, skillName2: 132, - skillName3: 1195, + skillName3: 1198, skillMap1: [ { index: 0, text: 50 }, @@ -4351,36 +4351,36 @@ export default { { index: 3, text: 74 }, - { index: 4, text: 415 }, + { index: 4, text: 416 }, - { index: 5, text: 1628 }, + { index: 5, text: 1632 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1799 }, + { index: 8, text: 1805 }, ], skillMap2: [ - { index: 9, text: 1273 }, + { index: 9, text: 1276 }, - { index: 10, text: 1274 }, + { index: 10, text: 1277 }, ], skillMap3: [ - { index: 11, text: 661 }, + { index: 11, text: 662 }, - { index: 12, text: 1027 }, + { index: 12, text: 1029 }, - { index: 13, text: 1028 }, + { index: 13, text: 1030 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"c4_rate","title":402,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"c4_rate","title":403,"type":"float"}, ], configSkill: [ @@ -4390,7 +4390,7 @@ export default { Yelan: { name: "Yelan", - nameLocale: 467, + nameLocale: 468, element: "Hydro", weapon: "Bow", star: 5, @@ -4398,9 +4398,9 @@ export default { // avatar: Yelan_avatar, avatar: getName("Yelan"), splash: Yelan_splash, - skillName1: 857, - skillName2: 1458, - skillName3: 1104, + skillName1: 859, + skillName2: 1462, + skillName3: 1106, skillMap1: [ { index: 0, text: 50 }, @@ -4409,36 +4409,36 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 420 }, + { index: 3, text: 421 }, - { index: 4, text: 1284 }, + { index: 4, text: 1287 }, - { index: 5, text: 1127 }, + { index: 5, text: 1129 }, - { index: 6, text: 1295 }, + { index: 6, text: 1298 }, { index: 8, text: 83 }, { index: 9, text: 171 }, - { index: 10, text: 1799 }, + { index: 10, text: 1805 }, ], skillMap2: [ - { index: 11, text: 661 }, + { index: 11, text: 662 }, ], skillMap3: [ - { index: 12, text: 661 }, + { index: 12, text: 662 }, - { index: 13, text: 1194 }, + { index: 13, text: 1197 }, ], config: [ - {"default":4,"max":4,"min":1,"name":"team_element_count","title":1671,"type":"int"}, + {"default":4,"max":4,"min":1,"name":"team_element_count","title":1677,"type":"int"}, ], configSkill: [ @@ -4448,7 +4448,7 @@ export default { Yoimiya: { name: "Yoimiya", - nameLocale: 552, + nameLocale: 553, element: "Pyro", weapon: "Bow", star: 5, @@ -4456,9 +4456,9 @@ export default { // avatar: Yoimiya_avatar, avatar: getName("Yoimiya"), splash: Yoimiya_splash, - skillName1: 861, - skillName2: 1161, - skillName3: 1212, + skillName1: 863, + skillName2: 1164, + skillName3: 1215, skillMap1: [ { index: 0, text: 53 }, @@ -4467,21 +4467,21 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 420 }, + { index: 3, text: 421 }, { index: 4, text: 140 }, - { index: 5, text: 1284 }, + { index: 5, text: 1287 }, - { index: 6, text: 1127 }, + { index: 6, text: 1129 }, - { index: 7, text: 1162 }, + { index: 7, text: 1165 }, { index: 8, text: 83 }, { index: 9, text: 171 }, - { index: 10, text: 1799 }, + { index: 10, text: 1805 }, ], skillMap2: [ @@ -4489,19 +4489,19 @@ export default { ], skillMap3: [ - { index: 11, text: 661 }, + { index: 11, text: 662 }, - { index: 12, text: 1213 }, + { index: 12, text: 1216 }, ], config: [ - {"default":8.0,"max":10.0,"min":0.0,"name":"talent1_level","title":503,"type":"float"}, + {"default":8.0,"max":10.0,"min":0.0,"name":"talent1_level","title":504,"type":"float"}, ], configSkill: [ - {"default":true,"name":"after_e","title":607,"type":"bool"}, + {"default":true,"name":"after_e","title":608,"type":"bool"}, ], }, @@ -4516,9 +4516,9 @@ export default { // avatar: Yunjin_avatar, avatar: getName("Yunjin"), splash: Yunjin_splash, - skillName1: 845, - skillName2: 781, - skillName3: 1296, + skillName1: 847, + skillName2: 783, + skillName3: 1299, skillMap1: [ { index: 0, text: 50 }, @@ -4529,24 +4529,24 @@ export default { { index: 3, text: 74 }, - { index: 4, text: 417 }, + { index: 4, text: 418 }, - { index: 5, text: 418 }, + { index: 5, text: 419 }, { index: 6, text: 140 }, - { index: 7, text: 1628 }, + { index: 7, text: 1632 }, { index: 8, text: 83 }, { index: 9, text: 171 }, - { index: 10, text: 1799 }, + { index: 10, text: 1805 }, ], skillMap2: [ - { index: 11, text: 1146 }, + { index: 11, text: 1148 }, { index: 12, text: 57 }, @@ -4555,7 +4555,7 @@ export default { ], skillMap3: [ - { index: 14, text: 661 }, + { index: 14, text: 662 }, ], config: [ @@ -4568,7 +4568,7 @@ export default { Zhongli: { name: "Zhongli", - nameLocale: 1654, + nameLocale: 1659, element: "Geo", weapon: "Polearm", star: 5, @@ -4576,9 +4576,9 @@ export default { // avatar: Zhongli_avatar, avatar: getName("Zhongli"), splash: Zhongli_splash, - skillName1: 836, - skillName2: 431, - skillName3: 477, + skillName1: 838, + skillName2: 432, + skillName3: 478, skillMap1: [ { index: 0, text: 50 }, @@ -4587,33 +4587,33 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 415 }, + { index: 3, text: 416 }, { index: 4, text: 144 }, { index: 5, text: 246 }, - { index: 6, text: 1628 }, + { index: 6, text: 1632 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1799 }, + { index: 9, text: 1805 }, ], skillMap2: [ - { index: 10, text: 581 }, + { index: 10, text: 582 }, { index: 11, text: 250 }, - { index: 12, text: 1666 }, + { index: 12, text: 1671 }, ], skillMap3: [ - { index: 13, text: 661 }, + { index: 13, text: 662 }, ], config: [ @@ -4626,7 +4626,7 @@ export default { Kirara: { name: "Kirara", - nameLocale: 1371, + nameLocale: 1375, element: "Dendro", weapon: "Sword", star: 4, @@ -4634,9 +4634,9 @@ export default { // avatar: Kirara_avatar, avatar: getName("Momoka"), splash: Kirara_splash, - skillName1: 873, - skillName2: 390, - skillName3: 1337, + skillName1: 875, + skillName2: 391, + skillName3: 1340, skillMap1: [ { index: 0, text: 50 }, @@ -4647,35 +4647,35 @@ export default { { index: 3, text: 74 }, - { index: 4, text: 415 }, + { index: 4, text: 416 }, - { index: 5, text: 1629 }, + { index: 5, text: 1636 }, - { index: 6, text: 1633 }, + { index: 6, text: 1639 }, - { index: 7, text: 1637 }, + { index: 7, text: 1641 }, { index: 8, text: 83 }, { index: 9, text: 171 }, - { index: 10, text: 1799 }, + { index: 10, text: 1805 }, ], skillMap2: [ - { index: 11, text: 1252 }, + { index: 11, text: 1255 }, - { index: 12, text: 1192 }, + { index: 12, text: 1195 }, - { index: 13, text: 1393 }, + { index: 13, text: 1397 }, ], skillMap3: [ - { index: 14, text: 661 }, + { index: 14, text: 662 }, - { index: 15, text: 1193 }, + { index: 15, text: 1196 }, ], config: [ diff --git a/src/assets/_gen_pf.js b/src/assets/_gen_pf.js index aa058dcf..7d3acc11 100644 --- a/src/assets/_gen_pf.js +++ b/src/assets/_gen_pf.js @@ -12,37 +12,37 @@ export default { badge: ArtifactEff_image, config: [ - {"default":false,"name":"atk_use","title":714,"type":"bool"}, + {"default":false,"name":"atk_use","title":715,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"atk_weight","title":715,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"atk_weight","title":716,"type":"float"}, - {"default":true,"name":"atk_p_use","title":707,"type":"bool"}, + {"default":true,"name":"atk_p_use","title":708,"type":"bool"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"atk_p_weight","title":708,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"atk_p_weight","title":709,"type":"float"}, - {"default":false,"name":"hp_use","title":1246,"type":"bool"}, + {"default":false,"name":"hp_use","title":1249,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"hp_weight","title":1247,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"hp_weight","title":1250,"type":"float"}, - {"default":false,"name":"hp_p_use","title":1232,"type":"bool"}, + {"default":false,"name":"hp_p_use","title":1235,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"hp_p_weight","title":1233,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"hp_p_weight","title":1236,"type":"float"}, - {"default":false,"name":"def_use","title":1695,"type":"bool"}, + {"default":false,"name":"def_use","title":1700,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"def_weight","title":1696,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"def_weight","title":1701,"type":"float"}, - {"default":false,"name":"def_p_use","title":1690,"type":"bool"}, + {"default":false,"name":"def_p_use","title":1695,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"def_p_weight","title":1691,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"def_p_weight","title":1696,"type":"float"}, - {"default":true,"name":"critical_use","title":973,"type":"bool"}, + {"default":true,"name":"critical_use","title":975,"type":"bool"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"critical_weight","title":974,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"critical_weight","title":976,"type":"float"}, - {"default":true,"name":"critical_damage_use","title":967,"type":"bool"}, + {"default":true,"name":"critical_damage_use","title":969,"type":"bool"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"critical_damage_weight","title":968,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"critical_damage_weight","title":970,"type":"float"}, {"default":false,"name":"elemental_mastery_use","title":229,"type":"bool"}, diff --git a/src/assets/_gen_tf.js b/src/assets/_gen_tf.js index 5a2e4c5a..58f2289a 100644 --- a/src/assets/_gen_tf.js +++ b/src/assets/_gen_tf.js @@ -208,8 +208,8 @@ export default { "MaxATK": { name: "MaxATK", - nameLocale: 988, - description: 985, + nameLocale: 990, + description: 987, tags: [ "攻击", @@ -226,8 +226,8 @@ export default { "MaxDEF": { name: "MaxDEF", - nameLocale: 993, - description: 987, + nameLocale: 995, + description: 989, tags: [ "防御", @@ -244,8 +244,8 @@ export default { "MaxHP": { name: "MaxHP", - nameLocale: 990, - description: 986, + nameLocale: 992, + description: 988, tags: [ "生命", @@ -262,8 +262,8 @@ export default { "MaxEM": { name: "MaxEM", - nameLocale: 980, - description: 984, + nameLocale: 982, + description: 986, tags: [ "元素精通", @@ -280,8 +280,8 @@ export default { "MaxRecharge": { name: "MaxRecharge", - nameLocale: 981, - description: 983, + nameLocale: 983, + description: 985, tags: [ "", @@ -298,8 +298,8 @@ export default { "PyroDamage": { name: "PyroDamage", - nameLocale: 1130, - description: 1131, + nameLocale: 1132, + description: 1133, tags: [ "输出", @@ -311,7 +311,7 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1352,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1355,"type":"option"}, ], }, @@ -331,15 +331,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1352,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1355,"type":"option"}, ], }, "HydroDamage": { name: "HydroDamage", - nameLocale: 1051, - description: 1052, + nameLocale: 1053, + description: 1054, tags: [ "输出", @@ -351,15 +351,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1352,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1355,"type":"option"}, ], }, "ElectroDamage": { name: "ElectroDamage", - nameLocale: 1721, - description: 1722, + nameLocale: 1726, + description: 1727, tags: [ "输出", @@ -371,15 +371,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1352,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1355,"type":"option"}, ], }, "AnemoDamage": { name: "AnemoDamage", - nameLocale: 1756, - description: 1758, + nameLocale: 1762, + description: 1764, tags: [ "输出", @@ -391,15 +391,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1352,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1355,"type":"option"}, ], }, "DendroDamage": { name: "DendroDamage", - nameLocale: 1420, - description: 1421, + nameLocale: 1424, + description: 1425, tags: [ "", @@ -411,15 +411,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1352,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1355,"type":"option"}, ], }, "GeoDamage": { name: "GeoDamage", - nameLocale: 578, - description: 579, + nameLocale: 579, + description: 580, tags: [ "输出", @@ -431,15 +431,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1352,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1355,"type":"option"}, ], }, "PhysicalDamage": { name: "PhysicalDamage", - nameLocale: 1172, - description: 1173, + nameLocale: 1175, + description: 1176, tags: [ "输出", @@ -451,14 +451,14 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1352,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1355,"type":"option"}, ], }, "MaxVaporize": { name: "MaxVaporize", - nameLocale: 991, + nameLocale: 993, description: 177, tags: [ @@ -471,16 +471,16 @@ export default { config: [ - {"default":0,"name":"t","options":["火","水"],"title":1515,"type":"option"}, + {"default":0,"name":"t","options":["火","水"],"title":1519,"type":"option"}, - {"default":"NormalAttack","name":"skill","title":660,"type":"skill4"}, + {"default":"NormalAttack","name":"skill","title":661,"type":"skill4"}, ], }, "MaxMelt": { name: "MaxMelt", - nameLocale: 992, + nameLocale: 994, description: 179, tags: [ @@ -493,16 +493,16 @@ export default { config: [ - {"default":0,"name":"t","options":["火","冰"],"title":1515,"type":"option"}, + {"default":0,"name":"t","options":["火","冰"],"title":1519,"type":"option"}, - {"default":"NormalAttack","name":"skill","title":660,"type":"skill4"}, + {"default":"NormalAttack","name":"skill","title":661,"type":"skill4"}, ], }, "ExpectVaporize": { name: "ExpectVaporize", - nameLocale: 1000, + nameLocale: 1002, description: 178, tags: [ @@ -515,16 +515,16 @@ export default { config: [ - {"default":0,"name":"t","options":["火","水"],"title":1515,"type":"option"}, + {"default":0,"name":"t","options":["火","水"],"title":1519,"type":"option"}, - {"default":"NormalAttack","name":"skill","title":660,"type":"skill4"}, + {"default":"NormalAttack","name":"skill","title":661,"type":"skill4"}, ], }, "ExpectMelt": { name: "ExpectMelt", - nameLocale: 1001, + nameLocale: 1003, description: 180, tags: [ @@ -537,17 +537,17 @@ export default { config: [ - {"default":0,"name":"t","options":["火","冰"],"title":1515,"type":"option"}, + {"default":0,"name":"t","options":["火","冰"],"title":1519,"type":"option"}, - {"default":"NormalAttack","name":"skill","title":660,"type":"skill4"}, + {"default":"NormalAttack","name":"skill","title":661,"type":"skill4"}, ], }, "AlbedoDefault": { name: "AlbedoDefault", - nameLocale: 1703, - description: 821, + nameLocale: 1708, + description: 823, tags: [ "输出", @@ -564,8 +564,8 @@ export default { "AloyDefault": { name: "AloyDefault", - nameLocale: 442, - description: 938, + nameLocale: 443, + description: 940, tags: [ "输出", @@ -582,8 +582,8 @@ export default { "AmberDefault": { name: "AmberDefault", - nameLocale: 539, - description: 941, + nameLocale: 540, + description: 943, tags: [ "输出", @@ -600,8 +600,8 @@ export default { "AratakiIttoDefault": { name: "AratakiIttoDefault", - nameLocale: 1424, - description: 1426, + nameLocale: 1428, + description: 1430, tags: [ "输出", @@ -618,7 +618,7 @@ export default { "BarbaraDefault": { name: "BarbaraDefault", - nameLocale: 1409, + nameLocale: 1413, description: 176, tags: [ @@ -639,7 +639,7 @@ export default { "BeidouDefault": { name: "BeidouDefault", nameLocale: 320, - description: 822, + description: 824, tags: [ "输出", @@ -656,8 +656,8 @@ export default { "BennettDamage": { name: "BennettDamage", - nameLocale: 1207, - description: 818, + nameLocale: 1210, + description: 820, tags: [ "辅助", @@ -673,7 +673,7 @@ export default { config: [ - {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, + {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":232,"type":"float"}, {"default":0.9,"max":1.0,"min":0.0,"name":"other_dmg_ratio","title":156,"type":"float"}, @@ -682,8 +682,8 @@ export default { "BennettDefault": { name: "BennettDefault", - nameLocale: 1208, - description: 929, + nameLocale: 1211, + description: 931, tags: [ "辅助", @@ -695,15 +695,15 @@ export default { config: [ - {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, + {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":232,"type":"float"}, ], }, "ChongyunDefault": { name: "ChongyunDefault", - nameLocale: 1621, - description: 820, + nameLocale: 1625, + description: 822, tags: [ "副C", @@ -722,8 +722,8 @@ export default { "DilucDefault": { name: "DilucDefault", - nameLocale: 1595, - description: 955, + nameLocale: 1599, + description: 957, tags: [ "输出", @@ -735,17 +735,17 @@ export default { config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1471,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1475,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1463,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1467,"type":"float"}, ], }, "DionaDefault": { name: "DionaDefault", - nameLocale: 1598, - description: 922, + nameLocale: 1602, + description: 924, tags: [ "治疗", @@ -759,7 +759,7 @@ export default { config: [ - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":232,"type":"float"}, ], }, @@ -767,7 +767,7 @@ export default { "EulaDefault": { name: "EulaDefault", nameLocale: 166, - description: 814, + description: 816, tags: [ "输出", @@ -784,8 +784,8 @@ export default { "FischlDefault": { name: "FischlDefault", - nameLocale: 1457, - description: 815, + nameLocale: 1461, + description: 817, tags: [ "输出", @@ -802,8 +802,8 @@ export default { "GanyuDefault": { name: "GanyuDefault", - nameLocale: 1227, - description: 950, + nameLocale: 1230, + description: 952, tags: [ "输出", @@ -815,7 +815,7 @@ export default { config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1471,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1475,"type":"float"}, ], }, @@ -823,7 +823,7 @@ export default { "GorouDefault": { name: "GorouDefault", nameLocale: 150, - description: 824, + description: 826, tags: [ "辅助", @@ -835,15 +835,15 @@ export default { config: [ - {"default":1.7,"max":3.0,"min":1.0,"name":"recharge_demand","title":232,"type":"float"}, + {"default":1.7,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, ], }, "HuTaoDefault": { name: "HuTaoDefault", - nameLocale: 1402, - description: 934, + nameLocale: 1406, + description: 936, tags: [ "输出", @@ -855,17 +855,17 @@ export default { config: [ - {"default":0.5,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1463,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1467,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1471,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1475,"type":"float"}, ], }, "JeanDefault": { name: "JeanDefault", - nameLocale: 1219, - description: 816, + nameLocale: 1222, + description: 818, tags: [ "副C", @@ -879,17 +879,17 @@ export default { config: [ - {"default":0.5,"max":1.0,"min":0.0,"name":"damage_weight","title":1066,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"damage_weight","title":1068,"type":"float"}, - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":232,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, ], }, "KaedeharaKazuhaDamage": { name: "KaedeharaKazuhaDamage", - nameLocale: 1016, - description: 945, + nameLocale: 1018, + description: 947, tags: [ "输出", @@ -903,9 +903,9 @@ export default { config: [ - {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, + {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":232,"type":"float"}, - {"default":0.5,"max":1.0,"min":0.0,"name":"swirl_rate","title":657,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"swirl_rate","title":658,"type":"float"}, {"default":0.9,"max":1.0,"min":0.0,"name":"other_dmg_ratio","title":156,"type":"float"}, @@ -914,8 +914,8 @@ export default { "KaedeharaKazuhaDefault": { name: "KaedeharaKazuhaDefault", - nameLocale: 1015, - description: 928, + nameLocale: 1017, + description: 930, tags: [ "辅助", @@ -927,7 +927,7 @@ export default { config: [ - {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, + {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":232,"type":"float"}, ], }, @@ -935,7 +935,7 @@ export default { "KaeyaDefault": { name: "KaeyaDefault", nameLocale: 287, - description: 817, + description: 819, tags: [ "输出", @@ -952,8 +952,8 @@ export default { "KamisatoAyakaDefault": { name: "KamisatoAyakaDefault", - nameLocale: 1321, - description: 813, + nameLocale: 1324, + description: 815, tags: [ "输出", @@ -965,15 +965,15 @@ export default { config: [ - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":232,"type":"float"}, ], }, "KamisatoAyakaDps": { name: "KamisatoAyakaDps", - nameLocale: 1319, - description: 999, + nameLocale: 1322, + description: 1001, tags: [ "输出", @@ -990,8 +990,8 @@ export default { "KamisatoAyatoDefault": { name: "KamisatoAyatoDefault", - nameLocale: 1315, - description: 921, + nameLocale: 1318, + description: 923, tags: [ "输出", @@ -1009,7 +1009,7 @@ export default { "KeqingDefault": { name: "KeqingDefault", nameLocale: 303, - description: 959, + description: 961, tags: [ "输出", @@ -1021,15 +1021,15 @@ export default { config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"aggravate_rate","title":1558,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"aggravate_rate","title":1562,"type":"float"}, ], }, "KleeDefault": { name: "KleeDefault", - nameLocale: 367, - description: 370, + nameLocale: 368, + description: 371, tags: [ "输出", @@ -1041,7 +1041,7 @@ export default { config: [ - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":232,"type":"float"}, ], }, @@ -1063,7 +1063,7 @@ export default { config: [ - {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, + {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":232,"type":"float"}, ], }, @@ -1071,7 +1071,7 @@ export default { "KujouSaraDefault": { name: "KujouSaraDefault", nameLocale: 107, - description: 960, + description: 962, tags: [ "辅助", @@ -1089,7 +1089,7 @@ export default { "LisaDefault": { name: "LisaDefault", nameLocale: 97, - description: 935, + description: 937, tags: [ "输出", @@ -1101,15 +1101,15 @@ export default { config: [ - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":232,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, ], }, "MonaDefault": { name: "MonaDefault", - nameLocale: 1433, - description: 951, + nameLocale: 1437, + description: 953, tags: [ "输出", @@ -1123,7 +1123,7 @@ export default { config: [ - {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":232,"type":"float"}, + {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, ], }, @@ -1131,7 +1131,7 @@ export default { "NingguangDefault": { name: "NingguangDefault", nameLocale: 281, - description: 936, + description: 938, tags: [ "输出", @@ -1148,8 +1148,8 @@ export default { "NoelleDefault": { name: "NoelleDefault", - nameLocale: 1538, - description: 953, + nameLocale: 1542, + description: 955, tags: [ "输出", @@ -1167,7 +1167,7 @@ export default { "QiqiDefault": { name: "QiqiDefault", nameLocale: 65, - description: 924, + description: 926, tags: [ "治疗", @@ -1179,15 +1179,15 @@ export default { config: [ - {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":232,"type":"float"}, + {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, ], }, "RaidenShogunDefault": { name: "RaidenShogunDefault", - nameLocale: 1736, - description: 957, + nameLocale: 1741, + description: 959, tags: [ "输出", @@ -1199,15 +1199,15 @@ export default { config: [ - {"default":2.6,"max":4.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, + {"default":2.6,"max":4.0,"min":1.0,"name":"recharge_demand","title":232,"type":"float"}, ], }, "RazorDefault": { name: "RazorDefault", - nameLocale: 1729, - description: 949, + nameLocale: 1734, + description: 951, tags: [ "输出", @@ -1224,8 +1224,8 @@ export default { "RosariaDefault": { name: "RosariaDefault", - nameLocale: 1379, - description: 932, + nameLocale: 1383, + description: 934, tags: [ "辅助", @@ -1244,8 +1244,8 @@ export default { "SangonomiyaKokomiDefault": { name: "SangonomiyaKokomiDefault", - nameLocale: 1200, - description: 943, + nameLocale: 1203, + description: 945, tags: [ "输出", @@ -1264,8 +1264,8 @@ export default { "SayuDefault": { name: "SayuDefault", - nameLocale: 794, - description: 937, + nameLocale: 796, + description: 939, tags: [ "输出", @@ -1279,15 +1279,15 @@ export default { config: [ - {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":232,"type":"float"}, + {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, ], }, "ShenheDefault": { name: "ShenheDefault", - nameLocale: 1259, - description: 930, + nameLocale: 1262, + description: 932, tags: [ "辅助", @@ -1299,15 +1299,15 @@ export default { config: [ - {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":232,"type":"float"}, + {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, ], }, "SucroseDefault": { name: "SucroseDefault", - nameLocale: 1289, - description: 931, + nameLocale: 1292, + description: 933, tags: [ "辅助", @@ -1319,15 +1319,15 @@ export default { config: [ - {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":232,"type":"float"}, + {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, ], }, "TartagliaDefault": { name: "TartagliaDefault", - nameLocale: 1589, - description: 954, + nameLocale: 1593, + description: 956, tags: [ "输出", @@ -1344,8 +1344,8 @@ export default { "ThomaDefault": { name: "ThomaDefault", - nameLocale: 650, - description: 927, + nameLocale: 651, + description: 929, tags: [ "辅助", @@ -1357,15 +1357,15 @@ export default { config: [ - {"default":2.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":232,"type":"float"}, + {"default":2.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, ], }, "VentiDefault": { name: "VentiDefault", - nameLocale: 1115, - description: 946, + nameLocale: 1117, + description: 948, tags: [ "输出", @@ -1377,15 +1377,15 @@ export default { config: [ - {"default":0.7,"max":1.0,"min":0.0,"name":"swirl_rate","title":654,"type":"float"}, + {"default":0.7,"max":1.0,"min":0.0,"name":"swirl_rate","title":655,"type":"float"}, ], }, "XianglingDefault": { name: "XianglingDefault", - nameLocale: 1793, - description: 947, + nameLocale: 1799, + description: 949, tags: [ "输出", @@ -1397,21 +1397,21 @@ export default { config: [ - {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":232,"type":"float"}, + {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1471,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1475,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1463,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1467,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"overload_rate","title":1564,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"overload_rate","title":1568,"type":"float"}, ], }, "XiaoDefault": { name: "XiaoDefault", - nameLocale: 1802, - description: 958, + nameLocale: 1808, + description: 960, tags: [ "输出", @@ -1428,8 +1428,8 @@ export default { "XingqiuDefault": { name: "XingqiuDefault", - nameLocale: 1476, - description: 819, + nameLocale: 1480, + description: 821, tags: [ "输出", @@ -1441,15 +1441,15 @@ export default { config: [ - {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":232,"type":"float"}, + {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, ], }, "XinyanDamage": { name: "XinyanDamage", - nameLocale: 1583, - description: 926, + nameLocale: 1587, + description: 928, tags: [ "输出", @@ -1466,8 +1466,8 @@ export default { "XinyanDefault": { name: "XinyanDefault", - nameLocale: 1582, - description: 933, + nameLocale: 1586, + description: 935, tags: [ "辅助", @@ -1479,7 +1479,7 @@ export default { config: [ - {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":232,"type":"float"}, + {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, {"default":0.5,"max":1.0,"min":0.0,"name":"damage_demand","title":170,"type":"float"}, @@ -1489,7 +1489,7 @@ export default { "YaeMikoDefault": { name: "YaeMikoDefault", nameLocale: 238, - description: 695, + description: 696, tags: [ "输出", @@ -1501,21 +1501,21 @@ export default { config: [ - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_requirement","title":232,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_requirement","title":233,"type":"float"}, - {"default":0,"name":"combo","options":["不站场平A","站场平A"],"title":1591,"type":"option"}, + {"default":0,"name":"combo","options":["不站场平A","站场平A"],"title":1595,"type":"option"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"aggravate_rate","title":1558,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"aggravate_rate","title":1562,"type":"float"}, - {"default":0.0,"max":4.0,"min":0.0,"name":"hyperbloom_rate","title":1559,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"hyperbloom_rate","title":1563,"type":"float"}, ], }, "YanfeiDefault": { name: "YanfeiDefault", - nameLocale: 1156, - description: 948, + nameLocale: 1159, + description: 950, tags: [ "输出", @@ -1532,8 +1532,8 @@ export default { "YelanDefault": { name: "YelanDefault", - nameLocale: 470, - description: 939, + nameLocale: 471, + description: 941, tags: [ "输出", @@ -1545,17 +1545,17 @@ export default { config: [ - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":232,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1463,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1467,"type":"float"}, ], }, "YoimiyaDefault": { name: "YoimiyaDefault", - nameLocale: 554, - description: 942, + nameLocale: 555, + description: 944, tags: [ "输出", @@ -1567,9 +1567,9 @@ export default { config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1463,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1467,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1471,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1475,"type":"float"}, ], }, @@ -1577,7 +1577,7 @@ export default { "YunjinDefault": { name: "YunjinDefault", nameLocale: 136, - description: 823, + description: 825, tags: [ "辅助", @@ -1589,15 +1589,15 @@ export default { config: [ - {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":232,"type":"float"}, + {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, ], }, "ZhongliDefault": { name: "ZhongliDefault", - nameLocale: 1656, - description: 925, + nameLocale: 1661, + description: 927, tags: [ "爆发", @@ -1609,7 +1609,7 @@ export default { config: [ - {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":232,"type":"float"}, + {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, ], }, @@ -1617,7 +1617,7 @@ export default { "KukiShinobuDefault": { name: "KukiShinobuDefault", nameLocale: 100, - description: 1577, + description: 1581, tags: [ "辅助", @@ -1636,8 +1636,8 @@ export default { "ShikanoinHeizouDefault": { name: "ShikanoinHeizouDefault", - nameLocale: 1817, - description: 1578, + nameLocale: 1823, + description: 1582, tags: [ "输出", @@ -1654,7 +1654,7 @@ export default { "TighnariDefault": { name: "TighnariDefault", - nameLocale: 701, + nameLocale: 702, description: 174, tags: [ @@ -1667,15 +1667,15 @@ export default { config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"spread_rate","title":1465,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"spread_rate","title":1469,"type":"float"}, ], }, "CynoDefault": { name: "CynoDefault", - nameLocale: 1554, - description: 646, + nameLocale: 1558, + description: 647, tags: [ "输出", @@ -1687,27 +1687,27 @@ export default { config: [ - {"default":1.3,"max":3.0,"min":1.0,"name":"recharge_requirement","title":232,"type":"float"}, + {"default":1.3,"max":3.0,"min":1.0,"name":"recharge_requirement","title":233,"type":"float"}, - {"default":0,"name":"combo","options":["乱a不取消","取消第五段"],"title":1591,"type":"option"}, + {"default":0,"name":"combo","options":["乱a不取消","取消第五段"],"title":1595,"type":"option"}, {"default":false,"name":"until_expire","title":19,"type":"bool"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"aggravate_rate","title":1558,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"aggravate_rate","title":1562,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"elecharged_rate","title":637,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"elecharged_rate","title":638,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"overload_rate","title":1563,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"overload_rate","title":1567,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"hyperbloom_rate","title":1559,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"hyperbloom_rate","title":1563,"type":"float"}, ], }, "NilouDefault": { name: "NilouDefault", - nameLocale: 522, - description: 940, + nameLocale: 523, + description: 942, tags: [ "", @@ -1723,18 +1723,18 @@ export default { {"default":1.0,"max":10.0,"min":0.0,"name":"q_ratio","title":216,"type":"float"}, - {"default":3.0,"max":10.0,"min":0.0,"name":"bloom_ratio","title":1374,"type":"float"}, + {"default":3.0,"max":10.0,"min":0.0,"name":"bloom_ratio","title":1378,"type":"float"}, - {"default":1000.0,"max":3000.0,"min":0.0,"name":"other_em","title":1686,"type":"float"}, + {"default":1000.0,"max":3000.0,"min":0.0,"name":"other_em","title":1691,"type":"float"}, - {"default":7.0,"max":10.0,"min":0.0,"name":"other_bloom_ratio","title":1687,"type":"float"}, + {"default":7.0,"max":10.0,"min":0.0,"name":"other_bloom_ratio","title":1692,"type":"float"}, ], }, "NahidaDefault": { name: "NahidaDefault", - nameLocale: 1359, + nameLocale: 1363, description: 181, tags: [ @@ -1747,23 +1747,23 @@ export default { config: [ - {"default":0,"max":1500,"min":0,"name":"em_requirement","title":1354,"type":"int"}, + {"default":0,"max":1500,"min":0,"name":"em_requirement","title":1357,"type":"int"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"spread_rate","title":1465,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"spread_rate","title":1469,"type":"float"}, - {"default":0.0,"max":4.0,"min":0.0,"name":"bloom_count","title":1374,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"bloom_count","title":1378,"type":"float"}, - {"default":0.0,"max":3.0,"min":0.0,"name":"burn_duration","title":1165,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"burn_duration","title":1168,"type":"float"}, - {"default":0,"max":2,"min":0,"name":"pryo_teammate_count","title":1135,"type":"int"}, + {"default":0,"max":2,"min":0,"name":"pryo_teammate_count","title":1137,"type":"int"}, ], }, "WandererDefault": { name: "WandererDefault", - nameLocale: 1089, - description: 1523, + nameLocale: 1091, + description: 1527, tags: [ "输出", @@ -1781,22 +1781,22 @@ export default { {"default":false,"name":"e_cryo","title":25,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"spd_extra","title":1755,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"spd_extra","title":1761,"type":"float"}, - {"default":1.0,"max":1.5,"min":0.5,"name":"spd_comp","title":724,"type":"float"}, + {"default":1.0,"max":1.5,"min":0.5,"name":"spd_comp","title":725,"type":"float"}, {"default":3,"max":12,"min":0,"name":"dash_count","title":29,"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":656,"type":"int"}, + {"default":12,"max":24,"min":0,"name":"swirl_count","title":657,"type":"int"}, ], }, "FaruzanDamage": { name: "FaruzanDamage", - nameLocale: 1202, + nameLocale: 1205, description: 175, tags: [ @@ -1809,14 +1809,14 @@ export default { config: [ - {"default":2.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":232,"type":"float"}, + {"default":2.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, ], }, "AlhaithamDefault": { name: "AlhaithamDefault", - nameLocale: 1407, + nameLocale: 1411, description: 160, tags: [ @@ -1829,21 +1829,21 @@ export default { config: [ - {"default":5.0,"max":10.0,"min":0.0,"name":"charged_ratio","title":1643,"type":"float"}, + {"default":5.0,"max":10.0,"min":0.0,"name":"charged_ratio","title":1648,"type":"float"}, {"default":5.0,"max":10.0,"min":0.0,"name":"e_ratio","title":210,"type":"float"}, {"default":1.0,"max":10.0,"min":0.0,"name":"q_ratio","title":218,"type":"float"}, - {"default":0.3,"max":1.0,"min":0.0,"name":"spread_ratio","title":1465,"type":"float"}, + {"default":0.3,"max":1.0,"min":0.0,"name":"spread_ratio","title":1469,"type":"float"}, ], }, "DehyaDefault": { name: "DehyaDefault", - nameLocale: 1601, - description: 956, + nameLocale: 1605, + description: 958, tags: [ "输出", @@ -1855,9 +1855,9 @@ export default { config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1471,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1475,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1463,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1467,"type":"float"}, {"default":6,"max":20,"min":0,"name":"e_count","title":92,"type":"int"}, @@ -1866,8 +1866,8 @@ export default { "MikaDefault": { name: "MikaDefault", - nameLocale: 1351, - description: 923, + nameLocale: 1354, + description: 925, tags: [ "治疗", @@ -1881,17 +1881,17 @@ export default { config: [ - {"default":2.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, + {"default":2.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":232,"type":"float"}, - {"default":0.6,"max":1.0,"min":0.0,"name":"crit_demand","title":975,"type":"float"}, + {"default":0.6,"max":1.0,"min":0.0,"name":"crit_demand","title":977,"type":"float"}, ], }, "FreminetDefault": { name: "FreminetDefault", - nameLocale: 1455, - description: 952, + nameLocale: 1459, + description: 954, tags: [ "", @@ -1908,8 +1908,8 @@ export default { "LyneyDefault": { name: "LyneyDefault", - nameLocale: 1011, - description: 944, + nameLocale: 1013, + description: 946, tags: [ "", diff --git a/src/assets/_gen_weapon.js b/src/assets/_gen_weapon.js index 2466f641..6b2b3cad 100644 --- a/src/assets/_gen_weapon.js +++ b/src/assets/_gen_weapon.js @@ -260,6 +260,8 @@ // // import SacrificialJade_tn from "@image/weapons/SacrificialJade_tn" // +// import FlowingPurity_tn from "@image/weapons/FlowingPurity_tn" +// // import PolarStar_tn from "@image/weapons/PolarStar_tn" // // import ThunderingPulse_tn from "@image/weapons/ThunderingPulse_tn" @@ -328,6 +330,10 @@ // // import TheFirstGreatMagic_tn from "@image/weapons/TheFirstGreatMagic_tn" // +// import ScionOfTheBlazingSun_tn from "@image/weapons/ScionOfTheBlazingSun_tn" +// +// import SongOfStillness_tn from "@image/weapons/SongOfStillness_tn" +// const template = "https://upload-bbs.mihoyo.com/game_record/genshin/equip/UI_EquipIcon_#.png" @@ -338,13 +344,13 @@ export default { MistsplitterReforged: { name: "MistsplitterReforged", internalName: "Sword_Narukami", - nameLocale: 1742, + nameLocale: 1747, star: 5, url: imageUrl("Sword_Narukami"), type: "Sword", - effect: 1445, + effect: 1449, configs: [ @@ -358,13 +364,13 @@ export default { AquilaFavonia: { name: "AquilaFavonia", internalName: "Sword_Falcon", - nameLocale: 1778, + nameLocale: 1784, star: 5, url: imageUrl("Sword_Falcon"), type: "Sword", - effect: 712, + effect: 713, configs: null, @@ -374,20 +380,20 @@ export default { SummitShaper: { name: "SummitShaper", internalName: "Sword_Kunwu", - nameLocale: 747, + nameLocale: 748, star: 5, url: imageUrl("Sword_Kunwu"), type: "Sword", - effect: 680, + effect: 681, configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1484,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1488,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":682,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":683,"type":"float"}, ], @@ -396,13 +402,13 @@ export default { SkywardBlade: { name: "SkywardBlade", internalName: "Sword_Dvalin", - nameLocale: 485, + nameLocale: 486, star: 5, url: imageUrl("Sword_Dvalin"), type: "Sword", - effect: 970, + effect: 972, configs: null, @@ -412,18 +418,18 @@ export default { FreedomSworn: { name: "FreedomSworn", internalName: "Sword_Widsith", - nameLocale: 1413, + nameLocale: 1417, star: 5, url: imageUrl("Sword_Widsith"), type: "Sword", - effect: 1781, + effect: 1787, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, ], @@ -432,13 +438,13 @@ export default { PrimordialJadeCutter: { name: "PrimordialJadeCutter", internalName: "Sword_Morax", - nameLocale: 1299, + nameLocale: 1302, star: 5, url: imageUrl("Sword_Morax"), type: "Sword", - effect: 1245, + effect: 1248, configs: null, @@ -448,13 +454,13 @@ export default { TheFlute: { name: "TheFlute", internalName: "Sword_Troupe", - nameLocale: 1342, + nameLocale: 1345, star: 4, url: imageUrl("Sword_Troupe"), type: "Sword", - effect: 915, + effect: 917, configs: null, @@ -464,13 +470,13 @@ export default { TheBlackSword: { name: "TheBlackSword", internalName: "Sword_Bloodstained", - nameLocale: 1822, + nameLocale: 1828, star: 4, url: imageUrl("Sword_Bloodstained"), type: "Sword", - effect: 903, + effect: 905, configs: null, @@ -480,18 +486,18 @@ export default { TheAlleyFlash: { name: "TheAlleyFlash", internalName: "Sword_Outlaw", - nameLocale: 963, + nameLocale: 965, star: 4, url: imageUrl("Sword_Outlaw"), type: "Sword", - effect: 1512, + effect: 1516, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, ], @@ -500,7 +506,7 @@ export default { SwordOfDescension: { name: "SwordOfDescension", internalName: "Sword_Psalmus", - nameLocale: 1711, + nameLocale: 1716, star: 4, url: imageUrl("Sword_Psalmus"), type: "Sword", @@ -516,7 +522,7 @@ export default { SacrificialSword: { name: "SacrificialSword", internalName: "Sword_Fossil", - nameLocale: 1328, + nameLocale: 1331, star: 4, url: imageUrl("Sword_Fossil"), type: "Sword", @@ -532,13 +538,13 @@ export default { RoyalLongsword: { name: "RoyalLongsword", internalName: "Sword_Theocrat", - nameLocale: 548, + nameLocale: 549, star: 4, url: imageUrl("Sword_Theocrat"), type: "Sword", - effect: 722, + effect: 723, configs: null, @@ -548,18 +554,18 @@ export default { PrototypeRancour: { name: "PrototypeRancour", internalName: "Sword_Proto", - nameLocale: 1530, + nameLocale: 1534, star: 4, url: imageUrl("Sword_Proto"), type: "Sword", - effect: 916, + effect: 918, configs: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1484,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1488,"type":"float"}, ], @@ -568,13 +574,13 @@ export default { AmenomaKageuchi: { name: "AmenomaKageuchi", internalName: "Sword_Bakufu", - nameLocale: 483, + nameLocale: 484, star: 4, url: imageUrl("Sword_Bakufu"), type: "Sword", - effect: 762, + effect: 763, configs: null, @@ -590,12 +596,12 @@ export default { type: "Sword", - effect: 565, + effect: 566, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, ], @@ -604,18 +610,18 @@ export default { IronSting: { name: "IronSting", internalName: "Sword_Exotic", - nameLocale: 1662, + nameLocale: 1667, star: 4, url: imageUrl("Sword_Exotic"), type: "Sword", - effect: 1610, + effect: 1614, configs: [ - {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1484,"type":"float"}, + {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1488,"type":"float"}, ], @@ -624,7 +630,7 @@ export default { FesteringDesire: { name: "FesteringDesire", internalName: "Sword_Magnum", - nameLocale: 1404, + nameLocale: 1408, star: 4, url: imageUrl("Sword_Magnum"), type: "Sword", @@ -640,13 +646,13 @@ export default { FavoniusSword: { name: "FavoniusSword", internalName: "Sword_Zephyrus", - nameLocale: 1497, + nameLocale: 1501, star: 4, url: imageUrl("Sword_Zephyrus"), type: "Sword", - effect: 723, + effect: 724, configs: null, @@ -656,7 +662,7 @@ export default { CinnabarSpindle: { name: "CinnabarSpindle", internalName: "Sword_Opus", - nameLocale: 1586, + nameLocale: 1590, star: 4, url: imageUrl("Sword_Opus"), type: "Sword", @@ -667,7 +673,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, ], @@ -676,18 +682,18 @@ export default { BlackcliffLongsword: { name: "BlackcliffLongsword", internalName: "Sword_Blackrock", - nameLocale: 1827, + nameLocale: 1833, star: 4, url: imageUrl("Sword_Blackrock"), type: "Sword", - effect: 292, + effect: 291, configs: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1484,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1488,"type":"float"}, ], @@ -696,18 +702,18 @@ export default { HarbingerOfDawn: { name: "HarbingerOfDawn", internalName: "Sword_Dawn", - nameLocale: 1821, + nameLocale: 1827, star: 3, url: imageUrl("Sword_Dawn"), type: "Sword", - effect: 1248, + effect: 1251, configs: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, ], @@ -716,13 +722,13 @@ export default { FilletBlade: { name: "FilletBlade", internalName: "Sword_Sashimi", - nameLocale: 371, + nameLocale: 372, star: 3, url: imageUrl("Sword_Sashimi"), type: "Sword", - effect: 718, + effect: 719, configs: null, @@ -732,18 +738,18 @@ export default { SkyriderSword: { name: "SkyriderSword", internalName: "Sword_Mitsurugi", - nameLocale: 1783, + nameLocale: 1789, star: 3, url: imageUrl("Sword_Mitsurugi"), type: "Sword", - effect: 770, + effect: 772, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, ], @@ -752,18 +758,18 @@ export default { DarkIronSword: { name: "DarkIronSword", internalName: "Sword_Darker", - nameLocale: 964, + nameLocale: 966, star: 3, url: imageUrl("Sword_Darker"), type: "Sword", - effect: 1522, + effect: 1526, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, ], @@ -778,12 +784,12 @@ export default { type: "Sword", - effect: 558, + effect: 559, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, ], @@ -792,13 +798,13 @@ export default { TravelersHandySword: { name: "TravelersHandySword", internalName: "Sword_Traveler", - nameLocale: 779, + nameLocale: 781, star: 3, url: imageUrl("Sword_Traveler"), type: "Sword", - effect: 1451, + effect: 1455, configs: null, @@ -808,7 +814,7 @@ export default { SilverSword: { name: "SilverSword", internalName: "Sword_Silver", - nameLocale: 1663, + nameLocale: 1668, star: 2, url: imageUrl("Sword_Silver"), type: "Sword", @@ -822,7 +828,7 @@ export default { DullBlade: { name: "DullBlade", internalName: "Sword_Blunt", - nameLocale: 792, + nameLocale: 794, star: 1, url: imageUrl("Sword_Blunt"), type: "Sword", @@ -836,13 +842,13 @@ export default { HaranGeppakuFutsu: { name: "HaranGeppakuFutsu", internalName: "Sword_Amenoma", - nameLocale: 1075, + nameLocale: 1077, star: 5, url: imageUrl("Sword_Amenoma"), type: "Sword", - effect: 1447, + effect: 1451, configs: [ @@ -856,18 +862,18 @@ export default { CursedBlade: { name: "CursedBlade", internalName: "Sword_Youtou", - nameLocale: 1343, + nameLocale: 1346, star: 4, url: imageUrl("Sword_Youtou"), type: "Sword", - effect: 897, + effect: 899, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, ], @@ -885,7 +891,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, ], @@ -894,18 +900,18 @@ export default { XiphosMoonlight: { name: "XiphosMoonlight", internalName: "Sword_Pleroma", - nameLocale: 1495, + nameLocale: 1499, star: 4, url: imageUrl("Sword_Pleroma"), type: "Sword", - effect: 1045, + effect: 1047, configs: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, ], @@ -914,18 +920,18 @@ export default { KeyOfKhajNisut: { name: "KeyOfKhajNisut", internalName: "Sword_Deshret", - nameLocale: 429, + nameLocale: 430, star: 5, url: imageUrl("Sword_Deshret"), type: "Sword", - effect: 1243, + effect: 1246, configs: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1484,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1488,"type":"float"}, ], @@ -940,12 +946,12 @@ export default { type: "Sword", - effect: 717, + effect: 718, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, ], @@ -954,7 +960,7 @@ export default { LightOfFoliarIncision: { name: "LightOfFoliarIncision", internalName: "Sword_Ayus", - nameLocale: 1486, + nameLocale: 1490, star: 5, url: imageUrl("Sword_Ayus"), type: "Sword", @@ -963,7 +969,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, ], @@ -972,7 +978,7 @@ export default { WolfFang: { name: "WolfFang", internalName: "Sword_Boreas", - nameLocale: 1178, + nameLocale: 1181, star: 4, url: imageUrl("Sword_Boreas"), type: "Sword", @@ -994,20 +1000,20 @@ export default { FinaleOfTheDeep: { name: "FinaleOfTheDeep", internalName: "Sword_Vorpal", - nameLocale: 1099, + nameLocale: 1101, star: 4, url: imageUrl("Sword_Vorpal"), type: "Sword", - effect: 766, + effect: 768, configs: [ - {"default":0.5,"max":1.0,"min":0.0,"name":"rate1","title":729,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"rate1","title":731,"type":"float"}, - {"default":0.5,"max":1.0,"min":0.0,"name":"rate2","title":731,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"rate2","title":732,"type":"float"}, ], @@ -1016,7 +1022,7 @@ export default { FleuveCendreFerryman: { name: "FleuveCendreFerryman", internalName: "Sword_Machination", - nameLocale: 1137, + nameLocale: 1139, star: 4, url: imageUrl("Sword_Machination"), type: "Sword", @@ -1027,7 +1033,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, ], @@ -1036,18 +1042,18 @@ export default { WolfsGravestone: { name: "WolfsGravestone", internalName: "Claymore_Wolfmound", - nameLocale: 1179, + nameLocale: 1182, star: 5, url: imageUrl("Claymore_Wolfmound"), type: "Claymore", - effect: 713, + effect: 714, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, ], @@ -1056,13 +1062,13 @@ export default { SkywardPride: { name: "SkywardPride", internalName: "Claymore_Dvalin", - nameLocale: 484, + nameLocale: 485, star: 5, url: imageUrl("Claymore_Dvalin"), type: "Claymore", - effect: 1611, + effect: 1615, configs: null, @@ -1072,20 +1078,20 @@ export default { TheUnforged: { name: "TheUnforged", internalName: "Claymore_Kunwu", - nameLocale: 787, + nameLocale: 789, star: 5, url: imageUrl("Claymore_Kunwu"), type: "Claymore", - effect: 680, + effect: 681, configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1484,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1488,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":682,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":683,"type":"float"}, ], @@ -1094,18 +1100,18 @@ export default { SongOfBrokenPines: { name: "SongOfBrokenPines", internalName: "Claymore_Widsith", - nameLocale: 1007, + nameLocale: 1009, star: 5, url: imageUrl("Claymore_Widsith"), type: "Claymore", - effect: 1780, + effect: 1786, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, ], @@ -1114,13 +1120,13 @@ export default { RedhornStonethresher: { name: "RedhornStonethresher", internalName: "Claymore_Itadorimaru", - nameLocale: 1557, + nameLocale: 1561, star: 5, url: imageUrl("Claymore_Itadorimaru"), type: "Claymore", - effect: 1694, + effect: 1699, configs: null, @@ -1130,18 +1136,18 @@ export default { Akuoumaru: { name: "Akuoumaru", internalName: "Claymore_Maria", - nameLocale: 630, + nameLocale: 631, star: 4, url: imageUrl("Claymore_Maria"), type: "Claymore", - effect: 1675, + effect: 1680, configs: [ - {"default":40,"max":400,"min":40,"name":"energy","title":1680,"type":"int"}, + {"default":40,"max":400,"min":40,"name":"energy","title":1685,"type":"int"}, ], @@ -1150,13 +1156,13 @@ export default { RoyalGreatsword: { name: "RoyalGreatsword", internalName: "Claymore_Theocrat", - nameLocale: 543, + nameLocale: 544, star: 4, url: imageUrl("Claymore_Theocrat"), type: "Claymore", - effect: 722, + effect: 723, configs: null, @@ -1166,18 +1172,18 @@ export default { Whiteblind: { name: "Whiteblind", internalName: "Claymore_Exotic", - nameLocale: 1268, + nameLocale: 1271, star: 4, url: imageUrl("Claymore_Exotic"), type: "Claymore", - effect: 912, + effect: 914, configs: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1484,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1488,"type":"float"}, ], @@ -1186,7 +1192,7 @@ export default { TheBell: { name: "TheBell", internalName: "Claymore_Troupe", - nameLocale: 1653, + nameLocale: 1658, star: 4, url: imageUrl("Claymore_Troupe"), type: "Claymore", @@ -1197,7 +1203,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, ], @@ -1206,13 +1212,13 @@ export default { SnowTombedStarsilver: { name: "SnowTombedStarsilver", internalName: "Claymore_Dragonfell", - nameLocale: 1717, + nameLocale: 1722, star: 4, url: imageUrl("Claymore_Dragonfell"), type: "Claymore", - effect: 898, + effect: 900, configs: null, @@ -1222,13 +1228,13 @@ export default { FavoniusGreatsword: { name: "FavoniusGreatsword", internalName: "Claymore_Zephyrus", - nameLocale: 1498, + nameLocale: 1502, star: 4, url: imageUrl("Claymore_Zephyrus"), type: "Claymore", - effect: 723, + effect: 724, configs: null, @@ -1238,7 +1244,7 @@ export default { KatsuragikiriNagamasa: { name: "KatsuragikiriNagamasa", internalName: "Claymore_Bakufu", - nameLocale: 1029, + nameLocale: 1031, star: 4, url: imageUrl("Claymore_Bakufu"), type: "Claymore", @@ -1254,7 +1260,7 @@ export default { SacrificialGreatsword: { name: "SacrificialGreatsword", internalName: "Claymore_Fossil", - nameLocale: 1329, + nameLocale: 1332, star: 4, url: imageUrl("Claymore_Fossil"), type: "Claymore", @@ -1270,18 +1276,18 @@ export default { SerpentSpine: { name: "SerpentSpine", internalName: "Claymore_Kione", - nameLocale: 1472, + nameLocale: 1476, star: 4, url: imageUrl("Claymore_Kione"), type: "Claymore", - effect: 1509, + effect: 1513, configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1484,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1488,"type":"float"}, ], @@ -1290,18 +1296,18 @@ export default { BlackcliffSlasher: { name: "BlackcliffSlasher", internalName: "Claymore_Blackrock", - nameLocale: 1825, + nameLocale: 1831, star: 4, url: imageUrl("Claymore_Blackrock"), type: "Claymore", - effect: 292, + effect: 291, configs: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1484,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1488,"type":"float"}, ], @@ -1310,18 +1316,18 @@ export default { Rainslasher: { name: "Rainslasher", internalName: "Claymore_Perdue", - nameLocale: 1716, + nameLocale: 1721, star: 4, url: imageUrl("Claymore_Perdue"), type: "Claymore", - effect: 562, + effect: 563, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, ], @@ -1330,13 +1336,13 @@ export default { PrototypeArchaic: { name: "PrototypeArchaic", internalName: "Claymore_Proto", - nameLocale: 1529, + nameLocale: 1533, star: 4, url: imageUrl("Claymore_Proto"), type: "Claymore", - effect: 914, + effect: 916, configs: null, @@ -1346,7 +1352,7 @@ export default { LuxuriousSeaLord: { name: "LuxuriousSeaLord", internalName: "Claymore_MillenniaTuna", - nameLocale: 1479, + nameLocale: 1483, star: 4, url: imageUrl("Claymore_MillenniaTuna"), type: "Claymore", @@ -1368,12 +1374,12 @@ export default { type: "Claymore", - effect: 1678, + effect: 1683, configs: [ - {"default":0,"max":4,"min":0,"name":"liyue_count","title":1684,"type":"int"}, + {"default":0,"max":4,"min":0,"name":"liyue_count","title":1689,"type":"int"}, ], @@ -1382,18 +1388,18 @@ export default { SkyriderGreatsword: { name: "SkyriderGreatsword", internalName: "Claymore_Mitsurugi", - nameLocale: 1782, + nameLocale: 1788, star: 3, url: imageUrl("Claymore_Mitsurugi"), type: "Claymore", - effect: 913, + effect: 915, configs: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1484,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1488,"type":"float"}, ], @@ -1408,7 +1414,7 @@ export default { type: "Claymore", - effect: 760, + effect: 761, configs: null, @@ -1418,18 +1424,18 @@ export default { BloodstainedGreatsword: { name: "BloodstainedGreatsword", internalName: "Claymore_Siegfry", - nameLocale: 1063, + nameLocale: 1065, star: 3, url: imageUrl("Claymore_Siegfry"), type: "Claymore", - effect: 564, + effect: 565, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, ], @@ -1438,7 +1444,7 @@ export default { WhiteIronGreatsword: { name: "WhiteIronGreatsword", internalName: "Claymore_Tin", - nameLocale: 1278, + nameLocale: 1281, star: 3, url: imageUrl("Claymore_Tin"), type: "Claymore", @@ -1454,18 +1460,18 @@ export default { FerrousShadow: { name: "FerrousShadow", internalName: "Claymore_Glaive", - nameLocale: 1661, + nameLocale: 1666, star: 3, url: imageUrl("Claymore_Glaive"), type: "Claymore", - effect: 1239, + effect: 1242, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, ], @@ -1488,7 +1494,7 @@ export default { WasterGreatsword: { name: "WasterGreatsword", internalName: "Claymore_Aniki", - nameLocale: 1526, + nameLocale: 1530, star: 1, url: imageUrl("Claymore_Aniki"), type: "Claymore", @@ -1502,7 +1508,7 @@ export default { ForestRegalia: { name: "ForestRegalia", internalName: "Claymore_Arakalari", - nameLocale: 1033, + nameLocale: 1035, star: 4, url: imageUrl("Claymore_Arakalari"), type: "Claymore", @@ -1511,7 +1517,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, ], @@ -1520,18 +1526,18 @@ export default { MakhairaAquamarine: { name: "MakhairaAquamarine", internalName: "Claymore_Pleroma", - nameLocale: 1197, + nameLocale: 1200, star: 4, url: imageUrl("Claymore_Pleroma"), type: "Claymore", - effect: 1044, + effect: 1046, configs: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, ], @@ -1540,7 +1546,7 @@ export default { BeaconOfTheReedSea: { name: "BeaconOfTheReedSea", internalName: "Claymore_Deshret", - nameLocale: 1412, + nameLocale: 1416, star: 5, url: imageUrl("Claymore_Deshret"), type: "Claymore", @@ -1551,9 +1557,9 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate_atk","title":721,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate_atk","title":722,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate_hp","title":1249,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate_hp","title":1252,"type":"float"}, ], @@ -1562,7 +1568,7 @@ export default { MailedFlower: { name: "MailedFlower", internalName: "Claymore_Fleurfair", - nameLocale: 1788, + nameLocale: 1794, star: 4, url: imageUrl("Claymore_Fleurfair"), type: "Claymore", @@ -1573,7 +1579,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":605,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":607,"type":"float"}, ], @@ -1582,20 +1588,20 @@ export default { TalkingStick: { name: "TalkingStick", internalName: "Claymore_BeastTamer", - nameLocale: 1394, + nameLocale: 1398, star: 4, url: imageUrl("Claymore_BeastTamer"), type: "Claymore", - effect: 659, + effect: 660, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":1481,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":1485,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":1482,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":1486,"type":"float"}, ], @@ -1604,7 +1610,7 @@ export default { TidalShadow: { name: "TidalShadow", internalName: "Claymore_Vorpal", - nameLocale: 1091, + nameLocale: 1093, star: 4, url: imageUrl("Claymore_Vorpal"), type: "Claymore", @@ -1615,7 +1621,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, ], @@ -1624,18 +1630,18 @@ export default { EngulfingLightning: { name: "EngulfingLightning", internalName: "Pole_Narukami", - nameLocale: 1467, + nameLocale: 1471, star: 5, url: imageUrl("Pole_Narukami"), type: "Polearm", - effect: 716, + effect: 717, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, ], @@ -1644,13 +1650,13 @@ export default { SkywardSpine: { name: "SkywardSpine", internalName: "Pole_Dvalin", - nameLocale: 488, + nameLocale: 489, star: 5, url: imageUrl("Pole_Dvalin"), type: "Polearm", - effect: 971, + effect: 973, configs: null, @@ -1660,20 +1666,20 @@ export default { PrimordialJadeWingedSpear: { name: "PrimordialJadeWingedSpear", internalName: "Pole_Morax", - nameLocale: 406, + nameLocale: 407, star: 5, url: imageUrl("Pole_Morax"), type: "Polearm", - effect: 392, + effect: 393, configs: [ - {"default":0.0,"max":7.0,"min":0.0,"name":"stack","title":1484,"type":"float"}, + {"default":0.0,"max":7.0,"min":0.0,"name":"stack","title":1488,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"full_rate","title":1126,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"full_rate","title":1128,"type":"float"}, ], @@ -1682,20 +1688,20 @@ export default { CalamityQueller: { name: "CalamityQueller", internalName: "Pole_Santika", - nameLocale: 629, + nameLocale: 630, star: 5, url: imageUrl("Pole_Santika"), type: "Polearm", - effect: 1446, + effect: 1450, 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":373,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"backend_rate","title":374,"type":"float"}, ], @@ -1704,18 +1710,18 @@ export default { StaffOfHoma: { name: "StaffOfHoma", internalName: "Pole_Homa", - nameLocale: 678, + nameLocale: 679, star: 5, url: imageUrl("Pole_Homa"), type: "Polearm", - effect: 1244, + effect: 1247, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"be50_rate","title":1237,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"be50_rate","title":1240,"type":"float"}, ], @@ -1724,20 +1730,20 @@ export default { VortexVanquisher: { name: "VortexVanquisher", internalName: "Pole_Kunwu", - nameLocale: 1546, + nameLocale: 1550, star: 5, url: imageUrl("Pole_Kunwu"), type: "Polearm", - effect: 680, + effect: 681, configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1484,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1488,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":682,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":683,"type":"float"}, ], @@ -1746,18 +1752,18 @@ export default { PrototypeStarglitter: { name: "PrototypeStarglitter", internalName: "Pole_Proto", - nameLocale: 1531, + nameLocale: 1535, star: 4, url: imageUrl("Pole_Proto"), type: "Polearm", - effect: 761, + effect: 762, configs: [ - {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1484,"type":"float"}, + {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1488,"type":"float"}, ], @@ -1772,12 +1778,12 @@ export default { type: "Polearm", - effect: 1677, + effect: 1682, configs: [ - {"default":0,"max":4,"min":0,"name":"liyue_count","title":1684,"type":"int"}, + {"default":0,"max":4,"min":0,"name":"liyue_count","title":1689,"type":"int"}, ], @@ -1786,7 +1792,7 @@ export default { KitainCrossSpear: { name: "KitainCrossSpear", internalName: "Pole_Bakufu", - nameLocale: 410, + nameLocale: 411, star: 4, url: imageUrl("Pole_Bakufu"), type: "Polearm", @@ -1818,13 +1824,13 @@ export default { FavoniusLance: { name: "FavoniusLance", internalName: "Pole_Zephyrus", - nameLocale: 1501, + nameLocale: 1505, star: 4, url: imageUrl("Pole_Zephyrus"), type: "Polearm", - effect: 723, + effect: 724, configs: null, @@ -1834,13 +1840,13 @@ export default { DragonspineSpear: { name: "DragonspineSpear", internalName: "Pole_Everfrost", - nameLocale: 1830, + nameLocale: 1836, star: 4, url: imageUrl("Pole_Everfrost"), type: "Polearm", - effect: 898, + effect: 900, configs: null, @@ -1856,12 +1862,12 @@ export default { type: "Polearm", - effect: 560, + effect: 561, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, ], @@ -1876,12 +1882,12 @@ export default { type: "Polearm", - effect: 1573, + effect: 1577, configs: [ - {"default":true,"name":"ge2","title":1572,"type":"bool"}, + {"default":true,"name":"ge2","title":1576,"type":"bool"}, ], @@ -1890,13 +1896,13 @@ export default { CrescentPike: { name: "CrescentPike", internalName: "Pole_Exotic", - nameLocale: 1083, + nameLocale: 1085, star: 4, url: imageUrl("Pole_Exotic"), type: "Polearm", - effect: 1448, + effect: 1452, configs: null, @@ -1906,18 +1912,18 @@ export default { BlackcliffPole: { name: "BlackcliffPole", internalName: "Pole_Blackrock", - nameLocale: 1823, + nameLocale: 1829, star: 4, url: imageUrl("Pole_Blackrock"), type: "Polearm", - effect: 291, + effect: 292, configs: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1484,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1488,"type":"float"}, ], @@ -1926,18 +1932,18 @@ export default { WavebreakersFin: { name: "WavebreakersFin", internalName: "Pole_Maria", - nameLocale: 753, + nameLocale: 754, star: 4, url: imageUrl("Pole_Maria"), type: "Polearm", - effect: 1675, + effect: 1680, configs: [ - {"default":40,"max":400,"min":40,"name":"energy","title":1680,"type":"int"}, + {"default":40,"max":400,"min":40,"name":"energy","title":1685,"type":"int"}, ], @@ -1946,13 +1952,13 @@ export default { RoyalSpear: { name: "RoyalSpear", internalName: "Pole_Theocrat", - nameLocale: 545, + nameLocale: 546, star: 4, url: imageUrl("Pole_Theocrat"), type: "Polearm", - effect: 722, + effect: 723, configs: null, @@ -1962,13 +1968,13 @@ export default { Halberd: { name: "Halberd", internalName: "Pole_Halberd", - nameLocale: 1659, + nameLocale: 1664, star: 3, url: imageUrl("Pole_Halberd"), type: "Polearm", - effect: 567, + effect: 568, configs: null, @@ -1978,18 +1984,18 @@ export default { BlackTassel: { name: "BlackTassel", internalName: "Pole_Noire", - nameLocale: 1828, + nameLocale: 1834, star: 3, url: imageUrl("Pole_Noire"), type: "Polearm", - effect: 557, + effect: 558, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, ], @@ -1998,13 +2004,13 @@ export default { WhiteTassel: { name: "WhiteTassel", internalName: "Pole_Ruby", - nameLocale: 1275, + nameLocale: 1278, star: 3, url: imageUrl("Pole_Ruby"), type: "Polearm", - effect: 919, + effect: 921, configs: null, @@ -2014,7 +2020,7 @@ export default { IronPoint: { name: "IronPoint", internalName: "Pole_Rod", - nameLocale: 1660, + nameLocale: 1665, star: 2, url: imageUrl("Pole_Rod"), type: "Polearm", @@ -2028,7 +2034,7 @@ export default { BeginnersProtector: { name: "BeginnersProtector", internalName: "Pole_Gewalt", - nameLocale: 755, + nameLocale: 756, star: 1, url: imageUrl("Pole_Gewalt"), type: "Polearm", @@ -2042,7 +2048,7 @@ export default { Moonpiercer: { name: "Moonpiercer", internalName: "Pole_Arakalari", - nameLocale: 1544, + nameLocale: 1548, star: 4, url: imageUrl("Pole_Arakalari"), type: "Polearm", @@ -2051,7 +2057,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, ], @@ -2060,18 +2066,18 @@ export default { MissiveWindspear: { name: "MissiveWindspear", internalName: "Pole_Windvane", - nameLocale: 1757, + nameLocale: 1763, star: 4, url: imageUrl("Pole_Windvane"), type: "Polearm", - effect: 1517, + effect: 1521, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, ], @@ -2080,18 +2086,18 @@ export default { StaffOfTheScarletSands: { name: "StaffOfTheScarletSands", internalName: "Pole_Deshret", - nameLocale: 1556, + nameLocale: 1560, star: 5, url: imageUrl("Pole_Deshret"), type: "Polearm", - effect: 447, + effect: 448, configs: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1484,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1488,"type":"float"}, ], @@ -2100,18 +2106,18 @@ export default { BalladOfTheFjords: { name: "BalladOfTheFjords", internalName: "Pole_Shanty", - nameLocale: 582, + nameLocale: 583, star: 4, url: imageUrl("Pole_Shanty"), type: "Polearm", - effect: 1674, + effect: 1679, configs: [ - {"default":true,"name":"use_effect","title":609,"type":"bool"}, + {"default":true,"name":"use_effect","title":610,"type":"bool"}, ], @@ -2126,7 +2132,7 @@ export default { type: "Polearm", - effect: 353, + effect: 354, configs: null, @@ -2136,18 +2142,18 @@ export default { LostPrayerToTheSacredWinds: { name: "LostPrayerToTheSacredWinds", internalName: "Catalyst_Fourwinds", - nameLocale: 424, + nameLocale: 425, star: 5, url: imageUrl("Catalyst_Fourwinds"), type: "Catalyst", - effect: 1338, + effect: 1341, configs: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1484,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1488,"type":"float"}, ], @@ -2156,7 +2162,7 @@ export default { SkywardAtlas: { name: "SkywardAtlas", internalName: "Catalyst_Dvalin", - nameLocale: 486, + nameLocale: 487, star: 5, url: imageUrl("Catalyst_Dvalin"), type: "Catalyst", @@ -2178,7 +2184,7 @@ export default { type: "Catalyst", - effect: 1068, + effect: 1070, configs: null, @@ -2188,20 +2194,20 @@ export default { MemoryOfDust: { name: "MemoryOfDust", internalName: "Catalyst_Kunwu", - nameLocale: 575, + nameLocale: 576, star: 5, url: imageUrl("Catalyst_Kunwu"), type: "Catalyst", - effect: 680, + effect: 681, configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1484,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1488,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":682,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":683,"type":"float"}, ], @@ -2210,18 +2216,18 @@ export default { WindAndSong: { name: "WindAndSong", internalName: "Catalyst_Outlaw", - nameLocale: 962, + nameLocale: 964, star: 4, url: imageUrl("Catalyst_Outlaw"), type: "Catalyst", - effect: 910, + effect: 912, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, ], @@ -2230,22 +2236,22 @@ export default { TheWidsith: { name: "TheWidsith", internalName: "Catalyst_Troupe", - nameLocale: 1085, + nameLocale: 1087, star: 4, url: imageUrl("Catalyst_Troupe"), type: "Catalyst", - effect: 1510, + effect: 1514, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"t1_rate","title":551,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"t1_rate","title":552,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"t2_rate","title":407,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"t2_rate","title":408,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"t3_rate","title":1670,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"t3_rate","title":1675,"type":"float"}, ], @@ -2260,14 +2266,14 @@ export default { type: "Catalyst", - effect: 907, + effect: 909, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":726,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":727,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":728,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":729,"type":"float"}, ], @@ -2276,7 +2282,7 @@ export default { SacrificialFragments: { name: "SacrificialFragments", internalName: "Catalyst_Fossil", - nameLocale: 1331, + nameLocale: 1334, star: 4, url: imageUrl("Catalyst_Fossil"), type: "Catalyst", @@ -2292,13 +2298,13 @@ export default { RoyalGrimoire: { name: "RoyalGrimoire", internalName: "Catalyst_Theocrat", - nameLocale: 546, + nameLocale: 547, star: 4, url: imageUrl("Catalyst_Theocrat"), type: "Catalyst", - effect: 722, + effect: 723, configs: null, @@ -2308,13 +2314,13 @@ export default { PrototypeAmber: { name: "PrototypeAmber", internalName: "Catalyst_Proto", - nameLocale: 1533, + nameLocale: 1537, star: 4, url: imageUrl("Catalyst_Proto"), type: "Catalyst", - effect: 768, + effect: 770, configs: null, @@ -2330,12 +2336,12 @@ export default { type: "Catalyst", - effect: 1518, + effect: 1522, configs: [ - {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1484,"type":"float"}, + {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1488,"type":"float"}, ], @@ -2344,13 +2350,13 @@ export default { HakushinRing: { name: "HakushinRing", internalName: "Catalyst_Bakufu", - nameLocale: 1276, + nameLocale: 1279, star: 4, url: imageUrl("Catalyst_Bakufu"), type: "Catalyst", - effect: 1494, + effect: 1498, configs: null, @@ -2360,13 +2366,13 @@ export default { Frostbearer: { name: "Frostbearer", internalName: "Catalyst_Everfrost", - nameLocale: 625, + nameLocale: 626, star: 4, url: imageUrl("Catalyst_Everfrost"), type: "Catalyst", - effect: 898, + effect: 900, configs: null, @@ -2376,13 +2382,13 @@ export default { FavoniusCodex: { name: "FavoniusCodex", internalName: "Catalyst_Zephyrus", - nameLocale: 1500, + nameLocale: 1504, star: 4, url: imageUrl("Catalyst_Zephyrus"), type: "Catalyst", - effect: 723, + effect: 724, configs: null, @@ -2392,13 +2398,13 @@ export default { EyeOfPerception: { name: "EyeOfPerception", internalName: "Catalyst_Truelens", - nameLocale: 806, + nameLocale: 808, star: 4, url: imageUrl("Catalyst_Truelens"), type: "Catalyst", - effect: 900, + effect: 902, configs: null, @@ -2408,20 +2414,20 @@ export default { DodocoTales: { name: "DodocoTales", internalName: "Catalyst_Ludiharpastum", - nameLocale: 413, + nameLocale: 414, star: 4, url: imageUrl("Catalyst_Ludiharpastum"), type: "Catalyst", - effect: 909, + effect: 911, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":726,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":727,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":728,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":729,"type":"float"}, ], @@ -2430,18 +2436,18 @@ export default { BlackcliffAgate: { name: "BlackcliffAgate", internalName: "Catalyst_Blackrock", - nameLocale: 1826, + nameLocale: 1832, star: 4, url: imageUrl("Catalyst_Blackrock"), type: "Catalyst", - effect: 291, + effect: 292, configs: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1484,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1488,"type":"float"}, ], @@ -2450,20 +2456,20 @@ export default { KagurasVerity: { name: "KagurasVerity", internalName: "Catalyst_Narukami", - nameLocale: 1304, + nameLocale: 1307, star: 5, url: imageUrl("Catalyst_Narukami"), type: "Catalyst", - effect: 765, + effect: 766, configs: [ - {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1484,"type":"float"}, + {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1488,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"full_rate","title":1125,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"full_rate","title":1127,"type":"float"}, ], @@ -2472,18 +2478,18 @@ export default { OathswornEye: { name: "OathswornEye", internalName: "Catalyst_Jyanome", - nameLocale: 1527, + nameLocale: 1531, star: 4, url: imageUrl("Catalyst_Jyanome"), type: "Catalyst", - effect: 758, + effect: 759, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, ], @@ -2492,18 +2498,18 @@ export default { MagicGuide: { name: "MagicGuide", internalName: "Catalyst_Intro", - nameLocale: 1807, + nameLocale: 1813, star: 3, url: imageUrl("Catalyst_Intro"), type: "Catalyst", - effect: 561, + effect: 562, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, ], @@ -2512,13 +2518,13 @@ export default { OtherworldlyStory: { name: "OtherworldlyStory", internalName: "Catalyst_Lightnov", - nameLocale: 610, + nameLocale: 611, star: 3, url: imageUrl("Catalyst_Lightnov"), type: "Catalyst", - effect: 1449, + effect: 1453, configs: null, @@ -2528,18 +2534,18 @@ export default { EmeraldOrb: { name: "EmeraldOrb", internalName: "Catalyst_Jade", - nameLocale: 1392, + nameLocale: 1396, star: 3, url: imageUrl("Catalyst_Jade"), type: "Catalyst", - effect: 1521, + effect: 1525, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, ], @@ -2548,7 +2554,7 @@ export default { ThrillingTalesOfDragonSlayers: { name: "ThrillingTalesOfDragonSlayers", internalName: "Catalyst_Pulpfic", - nameLocale: 1524, + nameLocale: 1528, star: 3, url: imageUrl("Catalyst_Pulpfic"), type: "Catalyst", @@ -2564,7 +2570,7 @@ export default { TwinNephrite: { name: "TwinNephrite", internalName: "Catalyst_Phoney", - nameLocale: 1253, + nameLocale: 1256, star: 3, url: imageUrl("Catalyst_Phoney"), type: "Catalyst", @@ -2575,7 +2581,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, ], @@ -2584,7 +2590,7 @@ export default { PocketGrimoire: { name: "PocketGrimoire", internalName: "Catalyst_Pocket", - nameLocale: 360, + nameLocale: 361, star: 2, url: imageUrl("Catalyst_Pocket"), type: "Catalyst", @@ -2598,7 +2604,7 @@ export default { ApprenticesNotes: { name: "ApprenticesNotes", internalName: "Catalyst_Apprentice", - nameLocale: 530, + nameLocale: 531, star: 1, url: imageUrl("Catalyst_Apprentice"), type: "Catalyst", @@ -2612,7 +2618,7 @@ export default { FruitOfFulfillment: { name: "FruitOfFulfillment", internalName: "Catalyst_Arakalari", - nameLocale: 1279, + nameLocale: 1282, star: 4, url: imageUrl("Catalyst_Arakalari"), type: "Catalyst", @@ -2621,7 +2627,7 @@ export default { configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1484,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1488,"type":"float"}, ], @@ -2630,18 +2636,18 @@ export default { WanderingEvenstar: { name: "WanderingEvenstar", internalName: "Catalyst_Pleroma", - nameLocale: 1087, + nameLocale: 1089, star: 4, url: imageUrl("Catalyst_Pleroma"), type: "Catalyst", - effect: 1044, + effect: 1046, configs: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, ], @@ -2656,14 +2662,14 @@ export default { type: "Catalyst", - effect: 1676, + effect: 1681, configs: [ - {"default":1,"max":3,"min":0,"name":"same_count","title":372,"type":"int"}, + {"default":1,"max":3,"min":0,"name":"same_count","title":373,"type":"int"}, - {"default":2,"max":3,"min":0,"name":"diff_count","title":88,"type":"int"}, + {"default":2,"max":3,"min":0,"name":"diff_count","title":89,"type":"int"}, ], @@ -2672,18 +2678,18 @@ export default { TulaytullahsRemembrance: { name: "TulaytullahsRemembrance", internalName: "Catalyst_Alaya", - nameLocale: 425, + nameLocale: 426, star: 5, url: imageUrl("Catalyst_Alaya"), type: "Catalyst", - effect: 917, + effect: 919, configs: [ - {"default":7.0,"max":10.0,"min":0.0,"name":"stack","title":1484,"type":"float"}, + {"default":7.0,"max":10.0,"min":0.0,"name":"stack","title":1488,"type":"float"}, ], @@ -2692,18 +2698,18 @@ export default { JadeFallsSplendor: { name: "JadeFallsSplendor", internalName: "Catalyst_Morax", - nameLocale: 1298, + nameLocale: 1301, star: 5, url: imageUrl("Catalyst_Morax"), type: "Catalyst", - effect: 774, + effect: 776, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, ], @@ -2712,18 +2718,40 @@ export default { SacrificialJade: { name: "SacrificialJade", internalName: "", - nameLocale: 1617, + nameLocale: 1621, star: 4, url: imageUrl(""), type: "Catalyst", - effect: 457, + effect: 458, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, + + ], + + }, + + FlowingPurity: { + name: "FlowingPurity", + internalName: "Catalyst_Vorpal", + nameLocale: 1360, + star: 4, + url: imageUrl("Catalyst_Vorpal"), + type: "Catalyst", + + + effect: 767, + + + configs: [ + + {"default":0.5,"max":1.0,"min":0.0,"name":"rate1","title":731,"type":"float"}, + + {"default":0.5,"max":1.0,"min":0.0,"name":"rate2","title":732,"type":"float"}, ], @@ -2752,13 +2780,13 @@ export default { ThunderingPulse: { name: "ThunderingPulse", internalName: "Bow_Narukami", - nameLocale: 1785, + nameLocale: 1791, star: 5, url: imageUrl("Bow_Narukami"), type: "Bow", - effect: 711, + effect: 712, configs: [ @@ -2772,18 +2800,18 @@ export default { ElegyOfTheEnd: { name: "ElegyOfTheEnd", internalName: "Bow_Widsith", - nameLocale: 1363, + nameLocale: 1367, star: 5, url: imageUrl("Bow_Widsith"), type: "Bow", - effect: 1779, + effect: 1785, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, ], @@ -2792,13 +2820,13 @@ export default { SkywardHarp: { name: "SkywardHarp", internalName: "Bow_Dvalin", - nameLocale: 487, + nameLocale: 488, star: 5, url: imageUrl("Bow_Dvalin"), type: "Bow", - effect: 966, + effect: 968, configs: null, @@ -2808,18 +2836,18 @@ export default { AmosBow: { name: "AmosBow", internalName: "Bow_Amos", - nameLocale: 1698, + nameLocale: 1703, star: 5, url: imageUrl("Bow_Amos"), type: "Bow", - effect: 904, + effect: 906, configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1484,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1488,"type":"float"}, ], @@ -2828,18 +2856,18 @@ export default { AlleyHunter: { name: "AlleyHunter", internalName: "Bow_Outlaw", - nameLocale: 961, + nameLocale: 963, star: 4, url: imageUrl("Bow_Outlaw"), type: "Bow", - effect: 1480, + effect: 1484, configs: [ - {"default":0.0,"max":10.0,"min":0.0,"name":"stack","title":1484,"type":"float"}, + {"default":0.0,"max":10.0,"min":0.0,"name":"stack","title":1488,"type":"float"}, ], @@ -2848,13 +2876,13 @@ export default { TheViridescentHunt: { name: "TheViridescentHunt", internalName: "Bow_Viridescent", - nameLocale: 1417, + nameLocale: 1421, star: 4, url: imageUrl("Bow_Viridescent"), type: "Bow", - effect: 901, + effect: 903, configs: null, @@ -2864,7 +2892,7 @@ export default { TheStringless: { name: "TheStringless", internalName: "Bow_Troupe", - nameLocale: 1368, + nameLocale: 1372, star: 4, url: imageUrl("Bow_Troupe"), type: "Bow", @@ -2880,7 +2908,7 @@ export default { SacrificialBow: { name: "SacrificialBow", internalName: "Bow_Fossil", - nameLocale: 1330, + nameLocale: 1333, star: 4, url: imageUrl("Bow_Fossil"), type: "Bow", @@ -2896,13 +2924,13 @@ export default { Rust: { name: "Rust", internalName: "Bow_Recluse", - nameLocale: 612, + nameLocale: 613, star: 4, url: imageUrl("Bow_Recluse"), type: "Bow", - effect: 920, + effect: 922, configs: null, @@ -2912,13 +2940,13 @@ export default { RoyalBow: { name: "RoyalBow", internalName: "Bow_Theocrat", - nameLocale: 549, + nameLocale: 550, star: 4, url: imageUrl("Bow_Theocrat"), type: "Bow", - effect: 722, + effect: 723, configs: null, @@ -2928,7 +2956,7 @@ export default { Predator: { name: "Predator", internalName: "Bow_Predator", - nameLocale: 698, + nameLocale: 699, star: 4, url: imageUrl("Bow_Predator"), type: "Bow", @@ -2939,7 +2967,7 @@ export default { configs: [ - {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1484,"type":"float"}, + {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1488,"type":"float"}, ], @@ -2948,18 +2976,18 @@ export default { PrototypeCrescent: { name: "PrototypeCrescent", internalName: "Bow_Proto", - nameLocale: 1532, + nameLocale: 1536, star: 4, url: imageUrl("Bow_Proto"), type: "Bow", - effect: 1646, + effect: 1651, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, ], @@ -2968,18 +2996,18 @@ export default { MouunsMoon: { name: "MouunsMoon", internalName: "Bow_Maria", - nameLocale: 977, + nameLocale: 979, star: 4, url: imageUrl("Bow_Maria"), type: "Bow", - effect: 1675, + effect: 1680, configs: [ - {"default":40,"max":400,"min":40,"name":"energy","title":1680,"type":"int"}, + {"default":40,"max":400,"min":40,"name":"energy","title":1685,"type":"int"}, ], @@ -2988,20 +3016,20 @@ export default { MitternachtsWaltz: { name: "MitternachtsWaltz", internalName: "Bow_Nachtblind", - nameLocale: 601, + nameLocale: 602, star: 4, url: imageUrl("Bow_Nachtblind"), type: "Bow", - effect: 908, + effect: 910, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":726,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":727,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":728,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":729,"type":"float"}, ], @@ -3010,18 +3038,18 @@ export default { Hamayumi: { name: "Hamayumi", internalName: "Bow_Bakufu", - nameLocale: 1297, + nameLocale: 1300, star: 4, url: imageUrl("Bow_Bakufu"), type: "Bow", - effect: 918, + effect: 920, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, ], @@ -3030,13 +3058,13 @@ export default { FavoniusWarbow: { name: "FavoniusWarbow", internalName: "Bow_Zephyrus", - nameLocale: 1499, + nameLocale: 1503, star: 4, url: imageUrl("Bow_Zephyrus"), type: "Bow", - effect: 723, + effect: 724, configs: null, @@ -3046,18 +3074,18 @@ export default { CompoundBow: { name: "CompoundBow", internalName: "Bow_Exotic", - nameLocale: 1658, + nameLocale: 1663, star: 4, url: imageUrl("Bow_Exotic"), type: "Bow", - effect: 899, + effect: 901, configs: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1484,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1488,"type":"float"}, ], @@ -3066,18 +3094,18 @@ export default { BlackcliffWarbow: { name: "BlackcliffWarbow", internalName: "Bow_Blackrock", - nameLocale: 1824, + nameLocale: 1830, star: 4, url: imageUrl("Bow_Blackrock"), type: "Bow", - effect: 291, + effect: 292, configs: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1484,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1488,"type":"float"}, ], @@ -3086,18 +3114,18 @@ export default { WindblumeOde: { name: "WindblumeOde", internalName: "Bow_Fleurfair", - nameLocale: 1765, + nameLocale: 1771, star: 4, url: imageUrl("Bow_Fleurfair"), type: "Bow", - effect: 767, + effect: 769, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, ], @@ -3106,18 +3134,18 @@ export default { RavenBow: { name: "RavenBow", internalName: "Bow_Crowfeather", - nameLocale: 1812, + nameLocale: 1818, star: 3, url: imageUrl("Bow_Crowfeather"), type: "Bow", - effect: 559, + effect: 560, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, ], @@ -3148,7 +3176,7 @@ export default { type: "Bow", - effect: 1647, + effect: 1652, configs: null, @@ -3158,18 +3186,18 @@ export default { SharpshootersOath: { name: "SharpshootersOath", internalName: "Bow_Arjuna", - nameLocale: 1307, + nameLocale: 1310, star: 3, url: imageUrl("Bow_Arjuna"), type: "Bow", - effect: 1652, + effect: 1657, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, ], @@ -3178,20 +3206,20 @@ export default { Slingshot: { name: "Slingshot", internalName: "Bow_Sling", - nameLocale: 614, + nameLocale: 615, star: 3, url: imageUrl("Bow_Sling"), type: "Bow", - effect: 902, + effect: 904, configs: [ {"default":true,"name":"is_effect","title":1,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, ], @@ -3214,7 +3242,7 @@ export default { HuntersBow: { name: "HuntersBow", internalName: "Bow_Hunters", - nameLocale: 1187, + nameLocale: 1190, star: 1, url: imageUrl("Bow_Hunters"), type: "Bow", @@ -3228,18 +3256,18 @@ export default { AquaSimulacra: { name: "AquaSimulacra", internalName: "Bow_Kirin", - nameLocale: 1419, + nameLocale: 1423, star: 5, url: imageUrl("Bow_Kirin"), type: "Bow", - effect: 1242, + effect: 1245, configs: [ - {"default":true,"name":"is_enemy_around","title":391,"type":"bool"}, + {"default":true,"name":"is_enemy_around","title":392,"type":"bool"}, ], @@ -3248,7 +3276,7 @@ export default { FadingTwilight: { name: "FadingTwilight", internalName: "Bow_Fallensun", - nameLocale: 1461, + nameLocale: 1465, star: 4, url: imageUrl("Bow_Fallensun"), type: "Bow", @@ -3259,7 +3287,7 @@ export default { configs: [ - {"default":2,"name":"state","options":["夕暮","流霞","朝晖"],"title":1175,"type":"option"}, + {"default":2,"name":"state","options":["夕暮","流霞","朝晖"],"title":1178,"type":"option"}, ], @@ -3268,18 +3296,18 @@ export default { HuntersPath: { name: "HuntersPath", internalName: "Bow_Ayus", - nameLocale: 1185, + nameLocale: 1188, star: 5, url: imageUrl("Bow_Ayus"), type: "Bow", - effect: 1444, + effect: 1448, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, ], @@ -3288,13 +3316,13 @@ export default { Trawler: { name: "Trawler", internalName: "Bow_Fin", - nameLocale: 1341, + nameLocale: 1344, star: 4, url: imageUrl("Bow_Fin"), type: "Bow", - effect: 759, + effect: 760, configs: null, @@ -3304,7 +3332,7 @@ export default { KingsSquire: { name: "KingsSquire", internalName: "Bow_Arakalari", - nameLocale: 1196, + nameLocale: 1199, star: 4, url: imageUrl("Bow_Arakalari"), type: "Bow", @@ -3313,7 +3341,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1483,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, ], @@ -3322,18 +3350,18 @@ export default { IbisPiercer: { name: "IbisPiercer", internalName: "Bow_Ibis", - nameLocale: 1813, + nameLocale: 1819, star: 4, url: imageUrl("Bow_Ibis"), type: "Bow", - effect: 1640, + effect: 1644, configs: [ - {"default":2.0,"max":2.0,"min":0.0,"name":"stack","title":576,"type":"float"}, + {"default":2.0,"max":2.0,"min":0.0,"name":"stack","title":577,"type":"float"}, ], @@ -3342,20 +3370,60 @@ export default { TheFirstGreatMagic: { name: "TheFirstGreatMagic", internalName: "Bow_Pledge", - nameLocale: 978, + nameLocale: 980, star: 5, url: imageUrl("Bow_Pledge"), type: "Bow", - effect: 1648, + effect: 1653, configs: [ - {"default":1.0,"max":3.0,"min":0.0,"name":"same_count","title":1681,"type":"float"}, + {"default":1.0,"max":3.0,"min":0.0,"name":"same_count","title":1686,"type":"float"}, + + {"default":0.0,"max":3.0,"min":0.0,"name":"diff_count","title":1676,"type":"float"}, + + ], + + }, + + ScionOfTheBlazingSun: { + name: "ScionOfTheBlazingSun", + internalName: "Bow_Gurabad", + nameLocale: 1157, + star: 4, + url: imageUrl("Bow_Gurabad"), + type: "Bow", + + + effect: 1645, + + + configs: [ + + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, + + ], + + }, + + SongOfStillness: { + name: "SongOfStillness", + internalName: "Bow_Vorpal", + nameLocale: 1755, + star: 4, + url: imageUrl("Bow_Vorpal"), + type: "Bow", + + + effect: 353, + + + configs: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"diff_count","title":1672,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, ], diff --git a/src/i18n/generated/en.json b/src/i18n/generated/en.json index bf8c4916..f55bfa27 100644 --- a/src/i18n/generated/en.json +++ b/src/i18n/generated/en.json @@ -37,8 +37,8 @@ "Hurricane Guard effect Ratio", "「Sweeping Fervor」Shield Coverage", "「Nightstar」Stack", - "Prayerful Wind’s Benefit Ratio", "Prayerful Wind's GiftRate", + "Prayerful Wind’s Benefit Ratio", "Painted Dome", "「Tricks of the Trouble-Maker」Stack", "Perfidious Wind's Ruin Rate", @@ -87,8 +87,8 @@ "Muji-Muji Daruma Healing", "Fudou Style Vacuum Slugger DMG", "Mask of Solitude Basalt", - "Diff Element Count", "Different Element Count", + "Diff Element Count", "Everlasting Moonglow", "Toukabou Shigure", "E Triggered Count Within a Cycle", @@ -206,8 +206,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.", @@ -225,14 +225,14 @@ "Elemental Mastery", "EM", "元素精通提升50点。触发燃烧、原激化、绽放反应后,队伍中附近的所有角色元素精通提升30点,持续6秒。触发超激化、蔓激化、超绽放、烈绽放反应后,队伍中附近的所有角色元素精通提升20点,持续6秒。以上效果的持续时间独立计算。", - "Increases Elemental Mastery by 80.", - "Elemental Mastery +80.", "Elemental Mastery +80", + "Elemental Mastery +80.", + "Increases Elemental Mastery by 80.", "EM Valid", "EM Weight", "Energy Below 50%", - "Recharge demand", "Recharge Requirement", + "Recharge demand", "Lightfall Sword DMG", "Lightfall Sword Energy Stack", "Yae Miko", @@ -290,8 +290,8 @@ "Field Entering/Exiting DMG", "After defeating an opponent, increases Charged Attack DMG by 50%, and reduces its Stamina cost to 0 for 10s.", "Defeating an opponent increases Movement SPD and ATK by 12%-14%-16%-18%-20% for 15s.", - "After defeating an enemy, ATK is increased by 12%-15%-18%-21%-24% for 30s. This effect has a maximum of 3 stacks, and the duration of each stack is independent of the others.", "After defeating an opponent, ATK is increased by 12%-15%-18%-21%-24% for 30s. This effect has a maximum of 3 stacks, and the duration of each stack is independent of the others.", + "After defeating an enemy, ATK is increased by 12%-15%-18%-21%-24% for 30s. This effect has a maximum of 3 stacks, and the duration of each stack is independent of the others.", "Defeating an opponent restores 8%-10%-12%-14%-16% HP.", "Defeating an opponent has a 100% chance to remove Elemental Skill CD. Can only occur once every 15s.", "Cutting DMG", @@ -335,8 +335,8 @@ "Plume of Luxury", "Husk of Opulent Dreams", "Coordinated ATK DMG", - "Single Instance DMG", "Single-Instance DMG", + "Single Instance DMG", "Kaveh", "Kaveh Q", "Kaveh Q Level", @@ -352,6 +352,7 @@ "Characters who are healed by Seamless Shields will gain the Year of Verdant Favor effect: Each 1,000 Max HP that Baizhu possesses that does not exceed 50,000 will increase the Burning, Bloom, Hyperbloom, and Burgeon reaction DMG dealt by these characters by 2%, while the Aggravate and Spread reaction DMG dealt by these characters will be increased by 0.8%. This effect lasts 6s.", "Incoming elemental DMG increases corresponding Elemental RES by 30% for 10s. Can only occur once every 10s.", "After the wielder is healed, ATK will be increased by 24%-30%-36%-42%-48% for 8s. This can be triggered even when the character is not on the field.", + "After the wielder is healed, they will deal 16%-20%-24%-28%-32% more DMG for 8s. This can be triggered even when the character is not on the field.", "When the wielder is healed, restore 8-10-12-14-16 Energy. This effect can be triggered once every 10s, and can occur even when the character is not on the field.", "Affected by Cryo for 40% less time.", "Affected by Hydro for 40% less time.", @@ -585,8 +586,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", @@ -603,9 +604,9 @@ "Mitternachts Waltz", "Use C4", "Use Talent「Regina Probationum」", + "Rate", "Apply Ratio", "Equivalent Rate of Effect", - "Rate", "Niwabi Enshou", "Opening a chest regenerates 30% Max HP over 5s.", "Use Effect", @@ -690,9 +691,9 @@ "DoT", "Continuous Regeneration", "Continuous Regeneration Per Sec", - "Continuous Regeneration", "HP Regeneration Over Time", "Continuous Healing", + "Continuous Regeneration", "Conductor's Top Hat", "DPS Yae Miko", "Swing DMG", @@ -728,8 +729,8 @@ "Effect1 Ratio", "Effect1 Equivalent Stack", "Effect2 Ratio", - "Effect 1 Rate", "Effect① Ratio", + "Effect 1 Rate", "Effect 2 Rate", "Effect② Ratio", "Effect Apply Ratio", @@ -765,6 +766,7 @@ "Using an Elemental Skill or Burst increases healing received by all party members by 20% for 10s.", "When casting an Elemental Skill, if the character has 15 or more Energy, they lose 15 Energy and Normal/Charged/Plunging Attack DMG is increased by 50% for 10s. This effect will not trigger again during that duration.", "Gains the Kagura Dance effect when using an Elemental Skill, causing the Elemental Skill DMG of the character wielding this weapon to increase by 12%-15%-18%-21%-24% for 16s. Max 3 stacks. This character will gain 12%-15%-18%-21%-24% All Elemental DMG Bonus when they possess 3 stacks.", + "When using an Elemental Skill, All Elemental DMG Bonus will be increased by 8%-10%-12%-14%-16% for 15s, and a Bond of Life worth 24% of Max HP will be granted. This effect can be triggered once every 10s. When the Bond of Life is cleared, every 1,000 HP cleared in the process will provide 2%-2.5%-3%-3.5%-4% All Elemental DMG Bonus, up to a maximum of 12%-15%-18%-21%-24%. This effect lasts 15s.", "When using an Elemental Skill, ATK will be increased by 12%-15%-18%-21%-24% for 15s, and a Bond of Life worth 25% of Max HP will be granted. This effect can be triggered once every 10s. When the Bond of Life is cleared, a maximum of 150-187.5-225-262.5-300 ATK will be gained based on 2.4%-3%-3.6%-4.2%-4.8% of the total amount of the Life Bond cleared, lasting for 15s.", "After using an Elemental Skill, receive a boon from the ancient wish of the Windblume, increasing ATK by 16%-20%-24%-28%-32% for 6s.", "Using an Elemental Burst regenerates 4-4.5-5-5.5-6 Energy every 2s for 6s. All party members will regenerate 4%-4.5%-5%-5.5%-6% HP every 2s for this duration.", @@ -1069,8 +1071,8 @@ "Healing Bonus", "Healing Bonus increased by 10%-12.5%-15%-17.5%-20%, Normal Attack DMG is increased by 1%-1.5%-2%-2.5%-3% of the Max HP of the character equipping this weapon. For 12s after using an Elemental Burst, Normal Attacks that hit opponents will restore 0.6 Energy. Energy can be restored this way once every 0.1s.", "Healing Bonus +15%.", - "Regeneration", "Healing", + "Regeneration", "Faruzan-「The Wind’s Secret Ways」", "Faruzan Base ATK", "Illusory Bubble Explosion DMG", @@ -1147,13 +1149,14 @@ "Leonine Bite", "Tap DMG", "Tapping DMG", - "Tapping Skill DMG", "Press Skill DMG", "Tap Skill DMG", + "Tapping Skill DMG", "Fiery Collapse DMG", "Crimson Witch of Flames", "Flame-Mane’s Fist DMG", "Blazing Blessing", + "Scion of the Blazing Sun", "Yanfei", "Yanfei-Wise Innocence", "Sweeping Fervor", @@ -1165,11 +1168,11 @@ "Subjugation: Koukou Sendou", "Molten Inferno", "Buring Duration", - "Explosion DMG", "Burst DMG", + "Explosion DMG", "Explosive Puppet", - "", "Explosion DMG", + "", "Explosion DMG", "Physical DMG", "Maximize Crit or Avg Physical Damage", @@ -1356,6 +1359,7 @@ "Elemental Mastery Requirement", "Amethyst Crown", "Painted Dome", + "Flowing Purity", "Nahida", "Nahida-「Compassion Illuminated」", "Nahida-Physic of Purity", @@ -1628,18 +1632,19 @@ "Charged Attack-4 Scarlet Seals", "Charged Attack-No Scarlet Seals", "Charged Attack DMG", - "Charnged DMG-1", "Charged DMG-1", "Charged Attack DMG-1", "Charged Attack-1", - "Charnged DMG-2", - "Charged Attack-2", + "Charnged DMG-1", "Charged Attack DMG-2", + "Charged Attack-2", + "Charnged DMG-2", "Charged DMG-2", "Charnged DMG-3", "Charged Attack DMG/3", "Charged Attack DMG(With talent)", "The character's Elemental Mastery will increase by 40-50-60-70-80 within 6s after Charged Attacks hit opponents. Max 2 stacks. This effect can be triggered once every 0.5s.", + "After a Charged Attack hits an opponent, a Sunfire Arrow will descend upon the opponent hit, dealing 60%-75%-90%-105%-120% ATK as DMG, and applying the Heartsearer effect to the opponent damaged by said Arrow for 10s. Opponents affected by Heartsearer take 28%-35%-42%-49%-56% more Charged Attack DMG from the wielder. A Sunfire Arrow can be triggered once every 10s.", "After Charged Attacks hit opponents, this character's Normal Attack SPD will increase by 10% while Normal, Charged, and Plunging Attack DMG will increase by 30% for 10s.", "Charged Attack Spinning DMG", "Charged Hit", @@ -1670,9 +1675,9 @@ "Lightning DMG", "Shining Miracle♪", "「Interlude」Ratio", - "Different Element Count", "Diff Element Number", "Different Element Count", + "Different Element Count", "When there are at least 3 different Elemental Types in your party, Elemental Mastery will be increased by 120-150-180-210-240.", "For every point of the entire party's combined maximum Energy capacity, the Elemental Burst DMG of the character equipping this weapon is increased by 0.12%-0.15%-0.18%-0.21%-0.24%. A maximum of 40%-50%-60%-70%-80% increased Elemental Burst DMG can be achieved this way.", "Party members other than the equipping character will provide the equipping character with buffs based on whether their Elemental Type is the same as the latter or not. If their Elemental Types are the same, increase Elemental Mastery by 32-40-48-56-64. If not, increase the equipping character’s DMG Bonus from their Elemental Type by 10%-14%-18%-22%-26%. Each of the aforementioned effects can have up to 3 stacks. Additionally, all nearby party members other than the equipping character will have their Elemental Mastery increased by 40-42-44-46-48. Multiple such effects from multiple such weapons can stack.", @@ -1749,6 +1754,7 @@ "Flowfrost Arrow DMG", "Frostgnaw", "Bane of All Evil", + "Song of Stillness", "Wind Realm of Nasamjnin", "Field DMG", "Field Activation Healing", diff --git a/src/i18n/generated/zh-cn.json b/src/i18n/generated/zh-cn.json index bee6f7ba..e4a432fe 100644 --- a/src/i18n/generated/zh-cn.json +++ b/src/i18n/generated/zh-cn.json @@ -352,6 +352,7 @@ "受到无郤气护盾治疗的角色,将获得「木运之岁」效果:基于白术生命值上限不超过50000点的部分,每1000点将使该角色触发的燃烧、绽放、超绽放、烈绽放反应造成的伤害提升2%,超激化、蔓激化反应带来的伤害提升0.8%,持续6秒。", "受到某个元素类型的伤害后,相应的抗性提升30%,持续10秒。该效果每10秒只能触发一次。", "受到治疗后,攻击力提升24%-30%-36%-42%-48%,持续8秒。角色处于队伍后台也能触发。", + "受到治疗后,造成的伤害提升16%-20%-24%-28%-32%,持续8秒。角色处于队伍后台也能触发。", "受到治疗时,恢复8-10-12-14-16点能量,该效果每10秒至多触发一次,角色处于队伍后台时也能触发。", "受到的冰元素附着效果的持续时间减少40%。", "受到的水元素附着效果的持续时间减少40%。", @@ -765,6 +766,7 @@ "施放元素战技或元素爆发后的10秒内,队伍中所有角色受治疗效果加成提高20%。", "施放元素战技时,如果角色的元素能量高于或等于15点,则会流失15点元素能量,使接下来的10秒内,普通攻击、重击、下落攻击造成的伤害提高50%,持续期间内该效果不会再次触发。", "施放元素战技时,将获得「神乐舞」的效果,使装备该武器的角色的元素战技造成的伤害提高12%-15%-18%-21%-24%,该效果持续16秒,至多叠加3层。持有3层时,该角色获得12%-15%-18%-21%-24%所有元素伤害加成。", + "施放元素战技时,所有元素伤害加成提升8%-10%-12%-14%-16%,持续15秒,并赋予生命值上限24%的生命之契,该效果每10秒至多触发一次。生命之契清除时,每清除1000点将会提供2%-2.5%-3%-3.5%-4%所有元素伤害加成,至多通过这种方式获得12%-15%-18%-21%-24%所有元素伤害加成,持续15秒。", "施放元素战技时,攻击力提升12%-15%-18%-21%-24%,持续15秒,并赋予生命值上限25%的生命之契,该效果每10秒至多触发一次。生命之契清除时,基于清除值的2.4%-3%-3.6%-4.2%-4.8%提升至多150-187.5-225-262.5-300点攻击力,持续15秒。", "施放元素战技时,获得风之花的悠古愿望加持,攻击力提升16%-20%-24%-28%-32%,持续6秒。", "施放元素爆发后6秒内,每2秒恢复4-4.5-5-5.5-6点元素能量,队伍中的所有角色每2秒恢复4%-4.5%-5%-5.5%-6%生命值。", @@ -1154,6 +1156,7 @@ "炽烈的炎之魔女", "炽鬃拳伤害", "烈烧佑命之侍护", + "烈阳之嗣", "烟绯", "烟绯-智明无邪", "热情拂扫", @@ -1356,6 +1359,7 @@ "精通需求", "紫晶的花冠", "繁绘隅穹", + "纯水流华", "纳西妲", "纳西妲-「净善摄受明论」", "纳西妲-白草净华", @@ -1640,6 +1644,7 @@ "重击伤害/3", "重击伤害(带天赋)", "重击命中敌人后的6秒内,角色元素精通提升40-50-60-70-80点。该效果至多叠加2层,每0.5秒至多触发一次。", + "重击命中敌人后,会向命中的敌人降下阳炎矢,造成攻击力60%-75%-90%-105%-120%的伤害,并为受到阳炎矢伤害的敌人施加持续10秒的灼心效果。装备者的重击对处于灼心状态下的敌人造成的伤害提升28%-35%-42%-49%-56%。阳炎矢每10秒至多触发一次。", "重击命中敌人后,该角色的普通攻击速度提升10%,普通攻击、重击与下落攻击造成的伤害提升40%,持续15秒。", "重击循环伤害", "重击次数", @@ -1749,6 +1754,7 @@ "霜流矢伤害", "霜袭", "靖妖傩舞", + "静谧之曲", "非想风天", "领域伤害", "领域发动治疗量", From 5c99ccd2c13f89413c1ee141a249692660071103 Mon Sep 17 00:00:00 2001 From: wormtql <584130248@qq.com> Date: Sat, 19 Aug 2023 13:12:51 +0800 Subject: [PATCH 7/7] feat(4.0): Add artifacts --- mona_core/src/artifacts/artifact.rs | 2 + mona_core/src/artifacts/effect_config.rs | 12 + .../src/artifacts/effects/defenders_will.rs | 2 +- .../src/artifacts/effects/golden_troupe.rs | 72 + .../artifacts/effects/marechaussee_hunter.rs | 73 + mona_core/src/artifacts/effects/mod.rs | 4 + package.json | 2 +- src/assets/_gen_artifact.js | 806 +++---- src/assets/_gen_buff.js | 496 ++--- src/assets/_gen_character.js | 1846 ++++++++--------- src/assets/_gen_pf.js | 36 +- src/assets/_gen_tf.js | 470 ++--- src/assets/_gen_weapon.js | 818 ++++---- src/i18n/generated/en.json | 50 +- src/i18n/generated/zh-cn.json | 16 + 15 files changed, 2503 insertions(+), 2202 deletions(-) create mode 100644 mona_core/src/artifacts/effects/golden_troupe.rs create mode 100644 mona_core/src/artifacts/effects/marechaussee_hunter.rs diff --git a/mona_core/src/artifacts/artifact.rs b/mona_core/src/artifacts/artifact.rs index 51bc6268..481c7a51 100644 --- a/mona_core/src/artifacts/artifact.rs +++ b/mona_core/src/artifacts/artifact.rs @@ -39,12 +39,14 @@ pub enum ArtifactSetName { DesertPavilionChronicle, GildedDreams, GladiatorsFinale, + GoldenTroupe, HeartOfDepth, HuskOfOpulentDreams, Instructor, Lavawalker, LuckyDog, MaidenBeloved, + MarechausseeHunter, MartialArtist, NoblesseOblige, NymphsDream, diff --git a/mona_core/src/artifacts/effect_config.rs b/mona_core/src/artifacts/effect_config.rs index 2a868e6e..f62371c0 100644 --- a/mona_core/src/artifacts/effect_config.rs +++ b/mona_core/src/artifacts/effect_config.rs @@ -158,6 +158,12 @@ pub struct ConfigVourukashasGlow { pub stack: f64, } +#[derive(Serialize, Deserialize)] +#[derive(Debug, Clone, Default)] +pub struct ConfigMarechausseeHunter { + pub stack: f64, +} + #[derive(Default, Debug, Clone)] #[derive(Serialize, Deserialize)] pub struct ArtifactEffectConfig { @@ -186,6 +192,8 @@ pub struct ArtifactEffectConfig { pub config_flower_of_paradise_lost: ConfigFlowerOfParadiseLost, pub config_nymphs_dream: ConfigNymphsDream, pub config_vourukashas_glow: ConfigVourukashasGlow, + pub config_marechaussee_hunter: ConfigMarechausseeHunter, + pub config_golden_troupe: ConfigRate, } #[derive(Serialize, Deserialize)] @@ -216,6 +224,8 @@ pub struct ArtifactConfigInterface { pub config_flower_of_paradise_lost: Option, pub config_nymphs_dream: Option, pub config_vourukashas_glow: Option, + pub config_marechaussee_hunter: Option, + pub config_golden_troupe: Option, } impl ArtifactConfigInterface { @@ -246,6 +256,8 @@ impl ArtifactConfigInterface { config_flower_of_paradise_lost: self.config_flower_of_paradise_lost.unwrap_or(Default::default()), config_nymphs_dream: self.config_nymphs_dream.unwrap_or(Default::default()), config_vourukashas_glow: self.config_vourukashas_glow.unwrap_or(Default::default()), + config_marechaussee_hunter: self.config_marechaussee_hunter.unwrap_or(Default::default()), + config_golden_troupe: self.config_golden_troupe.unwrap_or(Default::default()), } } } diff --git a/mona_core/src/artifacts/effects/defenders_will.rs b/mona_core/src/artifacts/effects/defenders_will.rs index 1dc385e0..ef689b90 100644 --- a/mona_core/src/artifacts/effects/defenders_will.rs +++ b/mona_core/src/artifacts/effects/defenders_will.rs @@ -52,7 +52,7 @@ impl ArtifactTrait for DefendersWill { zh_cn: "守护束带", en: "Guardian's Band", )), - star: (0, 0), + star: (3, 4), effect1: None, effect2: Some(crate::common::i18n::locale!( zh_cn: "防御力提高30%。", diff --git a/mona_core/src/artifacts/effects/golden_troupe.rs b/mona_core/src/artifacts/effects/golden_troupe.rs new file mode 100644 index 00000000..22388518 --- /dev/null +++ b/mona_core/src/artifacts/effects/golden_troupe.rs @@ -0,0 +1,72 @@ +use crate::artifacts::artifact_trait::{ArtifactMetaData, ArtifactTrait}; +use crate::artifacts::ArtifactSetName; +use crate::artifacts::effect::ArtifactEffect; +use crate::artifacts::effect_config::ArtifactEffectConfig; +use crate::attribute::{Attribute, AttributeName}; +use crate::character::character_common_data::CharacterCommonData; +use crate::common::i18n::locale; +use crate::common::item_config_type::{ItemConfig, ItemConfigType}; + +pub struct GoldenTroupeEffect { + pub rate: f64, +} + +impl ArtifactEffect for GoldenTroupeEffect { + fn effect2(&self, attribute: &mut A) { + attribute.set_value_by(AttributeName::BonusElementalSkill, "黄金剧团2", 0.2); + } + + fn effect4(&self, attribute: &mut A) { + attribute.set_value_by(AttributeName::BonusElementalSkill, "黄金剧团4", 0.25 + self.rate * 0.25); + } +} + +pub struct GoldenTroupe; + +impl ArtifactTrait for GoldenTroupe { + fn create_effect(config: &ArtifactEffectConfig, character_common_data: &CharacterCommonData) -> Box> { + Box::new(GoldenTroupeEffect { + rate: config.config_golden_troupe.rate + }) + } + + #[cfg(not(target_family = "wasm"))] + const META_DATA: ArtifactMetaData = ArtifactMetaData { + name: ArtifactSetName::GoldenTroupe, + name_mona: "GoldenTroupe", + name_locale: locale!( + zh_cn: "黄金剧团", + en: "Golden Troupe" + ), + flower: Some(locale!(zh_cn: "黄金乐曲的变奏", en: "Golden Song's Variation")), + feather: Some(locale!(zh_cn: "黄金飞鸟的落羽", en: "Golden Bird's Shedding")), + sand: Some(locale!(zh_cn: "黄金时代的先声", en: "Golden Era's Prelude")), + goblet: Some(locale!(zh_cn: "黄金之夜的喧嚣", en: "Golden Night's Bustle")), + head: Some(locale!(zh_cn: "黄金剧团的奖赏", en: "Golden Troupe's Reward")), + star: (4, 5), + effect1: None, + effect2: Some(locale!( + zh_cn: "元素战技造成的伤害提升20%。", + en: "Increases Elemental Skill DMG by 20%." + )), + effect3: None, + effect4: Some(locale!( + zh_cn: "元素战技造成的伤害提升25%;此外,处于队伍后台时,元素战技造成的伤害还将进一步提升25%,该效果将在登场后2秒移除。", + en: "Increases Elemental Skill DMG by 25%. Additionally, when not on the field, Elemental Skill DMG will be further increased by 25%. This effect will be cleared 2s after taking the field." + )), + effect5: None, + internal_id: 15032 + }; + + #[cfg(not(target_family = "wasm"))] + const CONFIG4: Option<&'static [ItemConfig]> = Some(&[ + ItemConfig { + name: "rate", + title: locale!( + zh_cn: "被动应用比例", + en: "Effect Rate" + ), + config: ItemConfigType::Float { min: 0.0, max: 1.0, default: 0.0 } + } + ]); +} diff --git a/mona_core/src/artifacts/effects/marechaussee_hunter.rs b/mona_core/src/artifacts/effects/marechaussee_hunter.rs new file mode 100644 index 00000000..198db6a5 --- /dev/null +++ b/mona_core/src/artifacts/effects/marechaussee_hunter.rs @@ -0,0 +1,73 @@ +use crate::artifacts::artifact_trait::{ArtifactMetaData, ArtifactTrait}; +use crate::artifacts::ArtifactSetName; +use crate::artifacts::effect::ArtifactEffect; +use crate::artifacts::effect_config::ArtifactEffectConfig; +use crate::attribute::{Attribute, AttributeName}; +use crate::character::character_common_data::CharacterCommonData; +use crate::common::i18n::locale; +use crate::common::item_config_type::{ItemConfig, ItemConfigType}; + +pub struct MarechausseeHunterEffect { + pub stack: f64 +} + +impl ArtifactEffect for MarechausseeHunterEffect { + fn effect2(&self, attribute: &mut A) { + attribute.set_value_by(AttributeName::BonusNormalAttack, "逐影猎人2", 0.15); + attribute.set_value_by(AttributeName::BonusChargedAttack, "逐影猎人2", 0.15); + } + + fn effect4(&self, attribute: &mut A) { + attribute.set_value_by(AttributeName::CriticalBase, "逐影猎人4", 0.12 * self.stack); + } +} + +pub struct MarechausseeHunter; + +impl ArtifactTrait for MarechausseeHunter { + fn create_effect(config: &ArtifactEffectConfig, character_common_data: &CharacterCommonData) -> Box> { + Box::new(MarechausseeHunterEffect { + stack: config.config_marechaussee_hunter.stack + }) + } + + #[cfg(not(target_family = "wasm"))] + const META_DATA: ArtifactMetaData = ArtifactMetaData { + name: ArtifactSetName::MarechausseeHunter, + name_mona: "MarechausseeHunter", + name_locale: locale!( + zh_cn: "逐影猎人", + en: "Marechaussee Hunter" + ), + flower: Some(locale!(zh_cn: "猎人的胸花", en: "Hunter's Brooch")), + feather: Some(locale!(zh_cn: "杰作的序曲", en: "Masterpiece's Overture")), + sand: Some(locale!(zh_cn: "裁判的时刻", en: "Moment of Judgment")), + goblet: Some(locale!(zh_cn: "遗忘的容器", en: "Forgotten Vessel")), + head: Some(locale!(zh_cn: "老兵的容颜", en: "Veteran's Visage")), + star: (4, 5), + effect1: None, + effect2: Some(locale!( + zh_cn: "普通攻击与重击造成的伤害提高15%。", + en: "Normal and Charged Attack DMG +15%" + )), + effect3: None, + effect4: Some(locale!( + zh_cn: "当前生命值提升或降低时,暴击率提升12%,该效果持续5秒,至多叠加3次。", + en: "When current HP increases or decreases, CRIT Rate will be increased by 12% for 5s. Max 3 stacks." + )), + effect5: None, + internal_id: 15031 + }; + + #[cfg(not(target_family = "wasm"))] + const CONFIG4: Option<&'static [ItemConfig]> = Some(&[ + ItemConfig { + name: "stack", + title: locale!( + zh_cn: "平均层数", + en: "Avg Stack" + ), + config: ItemConfigType::Float { min: 0.0, max: 3.0, default: 0.0 } + } + ]); +} diff --git a/mona_core/src/artifacts/effects/mod.rs b/mona_core/src/artifacts/effects/mod.rs index f85ee4fc..698706cf 100644 --- a/mona_core/src/artifacts/effects/mod.rs +++ b/mona_core/src/artifacts/effects/mod.rs @@ -50,6 +50,8 @@ pub use desert_pavilion_chronicle::DesertPavilionChronicle; pub use flower_of_paradise_lost::FlowerOfParadiseLost; pub use nymphs_dream::NymphsDream; pub use vourukashas_glow::VourukashasGlow; +pub use marechaussee_hunter::MarechausseeHunter; +pub use golden_troupe::GoldenTroupe; pub mod empty; pub mod adventurer; @@ -97,6 +99,8 @@ pub mod desert_pavilion_chronicle; pub mod flower_of_paradise_lost; pub mod nymphs_dream; pub mod vourukashas_glow; +pub mod marechaussee_hunter; +pub mod golden_troupe; pub fn get_effect(name: ArtifactSetName, config: &ArtifactEffectConfig, character: &Character) -> Box> { name.create_effect(config, &character.common_data) diff --git a/package.json b/package.json index 30f71e50..56e53ab9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "genshin_artifacts", - "version": "5.15.0", + "version": "5.16.0", "private": true, "scripts": { "serve": "cross-env ENV_FILE=.env.development.yaml vue-cli-service serve", diff --git a/src/assets/_gen_artifact.js b/src/assets/_gen_artifact.js index ad284312..4bf6c913 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: 253, + nameLocale: 254, minStar: 1, maxStar: 3, - effect2: 1237, + effect2: 1242, - effect4: 609, + effect4: 610, flower: { - text: 254, + text: 255, url: getIcon("UI_RelicIcon_10010_4") }, feather: { - text: 256, + text: 257, url: getIcon("UI_RelicIcon_10010_2") }, sand: { - text: 257, + text: 258, url: getIcon("UI_RelicIcon_10010_5") }, cup: { - text: 258, + text: 259, url: getIcon("UI_RelicIcon_10010_1") }, head: { - text: 255, + text: 256, url: getIcon("UI_RelicIcon_10010_3") }, @@ -58,40 +58,40 @@ export default { "archaicPetra": { eng: "archaicPetra", name2: "ArchaicPetra", - nameLocale: 633, + nameLocale: 635, minStar: 4, maxStar: 5, - effect2: 1442, + effect2: 1448, - effect4: 1457, + effect4: 1463, flower: { - text: 1303, + text: 1308, url: getIcon("UI_RelicIcon_15014_4") }, feather: { - text: 584, + text: 585, url: getIcon("UI_RelicIcon_15014_2") }, sand: { - text: 805, + text: 807, url: getIcon("UI_RelicIcon_15014_5") }, cup: { - text: 585, + text: 586, url: getIcon("UI_RelicIcon_15014_1") }, @@ -105,7 +105,7 @@ export default { {"default":"Electro","name":"element","title":185,"type":"element4"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":734,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":736,"type":"float"}, ], }, @@ -113,52 +113,52 @@ export default { "berserker": { eng: "berserker", name2: "Berserker", - nameLocale: 639, + nameLocale: 641, minStar: 3, maxStar: 4, - effect2: 974, + effect2: 977, - effect4: 1241, + effect4: 1246, flower: { - text: 642, + text: 644, url: getIcon("UI_RelicIcon_10005_4") }, feather: { - text: 641, + text: 643, url: getIcon("UI_RelicIcon_10005_2") }, sand: { - text: 640, + text: 642, url: getIcon("UI_RelicIcon_10005_5") }, cup: { - text: 643, + text: 645, url: getIcon("UI_RelicIcon_10005_1") }, head: { - text: 644, + text: 646, url: getIcon("UI_RelicIcon_10005_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":734,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":736,"type":"float"}, ], }, @@ -166,52 +166,52 @@ export default { "blizzardStrayer": { eng: "blizzardStrayer", name2: "BlizzardStrayer", - nameLocale: 271, + nameLocale: 272, minStar: 4, maxStar: 5, - effect2: 1441, + effect2: 1447, - effect4: 721, + effect4: 723, flower: { - text: 343, + text: 344, url: getIcon("UI_RelicIcon_14001_4") }, feather: { - text: 704, + text: 706, url: getIcon("UI_RelicIcon_14001_2") }, sand: { - text: 270, + text: 271, url: getIcon("UI_RelicIcon_14001_5") }, cup: { - text: 1620, + text: 1629, url: getIcon("UI_RelicIcon_14001_1") }, head: { - text: 1297, + text: 1302, url: getIcon("UI_RelicIcon_14001_3") }, config4: [ - {"default":0.0,"max":0.4,"min":0.0,"name":"critical_bonus","title":1348,"type":"float"}, + {"default":0.0,"max":0.4,"min":0.0,"name":"critical_bonus","title":1353,"type":"float"}, ], }, @@ -219,52 +219,52 @@ export default { "bloodstainedChivalry": { eng: "bloodstainedChivalry", name2: "BloodstainedChivalry", - nameLocale: 1023, + nameLocale: 1027, minStar: 4, maxStar: 5, - effect2: 1616, + effect2: 1625, - effect4: 289, + effect4: 290, flower: { - text: 1021, + text: 1025, url: getIcon("UI_RelicIcon_15008_4") }, feather: { - text: 1024, + text: 1028, url: getIcon("UI_RelicIcon_15008_2") }, sand: { - text: 1803, + text: 1813, url: getIcon("UI_RelicIcon_15008_5") }, cup: { - text: 1025, + text: 1029, url: getIcon("UI_RelicIcon_15008_1") }, head: { - text: 1022, + text: 1026, url: getIcon("UI_RelicIcon_15008_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":734,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":736,"type":"float"}, ], }, @@ -272,52 +272,52 @@ export default { "braveHeart": { eng: "braveHeart", name2: "BraveHeart", - nameLocale: 309, + nameLocale: 310, minStar: 3, maxStar: 4, - effect2: 711, + effect2: 713, - effect4: 569, + effect4: 570, flower: { - text: 311, + text: 312, url: getIcon("UI_RelicIcon_10002_4") }, feather: { - text: 314, + text: 315, url: getIcon("UI_RelicIcon_10002_2") }, sand: { - text: 312, + text: 313, url: getIcon("UI_RelicIcon_10002_5") }, cup: { - text: 313, + text: 314, url: getIcon("UI_RelicIcon_10002_1") }, head: { - text: 310, + text: 311, url: getIcon("UI_RelicIcon_10002_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":734,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":736,"type":"float"}, ], }, @@ -325,52 +325,52 @@ export default { "crimsonWitch": { eng: "crimsonWitch", name2: "CrimsonWitchOfFlames", - nameLocale: 1154, + nameLocale: 1158, minStar: 4, maxStar: 5, - effect2: 1444, + effect2: 1450, - effect4: 1566, + effect4: 1574, flower: { - text: 1811, + text: 1821, url: getIcon("UI_RelicIcon_15006_4") }, feather: { - text: 1809, + text: 1819, url: getIcon("UI_RelicIcon_15006_2") }, sand: { - text: 1812, + text: 1822, url: getIcon("UI_RelicIcon_15006_5") }, cup: { - text: 1810, + text: 1820, url: getIcon("UI_RelicIcon_15006_1") }, head: { - text: 1163, + text: 1167, url: getIcon("UI_RelicIcon_15006_3") }, config4: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"level","title":735,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"level","title":737,"type":"float"}, ], }, @@ -378,12 +378,12 @@ export default { "DeepwoodMemories": { eng: "DeepwoodMemories", name2: "DeepwoodMemories", - nameLocale: 1104, + nameLocale: 1108, minStar: 4, maxStar: 5, - effect2: 1445, + effect2: 1451, @@ -393,37 +393,37 @@ export default { flower: { - text: 1606, + text: 1614, url: getIcon("UI_RelicIcon_15025_4") }, feather: { - text: 1395, + text: 1400, url: getIcon("UI_RelicIcon_15025_2") }, sand: { - text: 1547, + text: 1555, url: getIcon("UI_RelicIcon_15025_5") }, cup: { - text: 1607, + text: 1615, url: getIcon("UI_RelicIcon_15025_1") }, head: { - text: 999, + text: 1002, url: getIcon("UI_RelicIcon_15025_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":734,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":736,"type":"float"}, ], }, @@ -431,46 +431,46 @@ export default { "defenderWill": { eng: "defenderWill", name2: "DefendersWill", - nameLocale: 532, - minStar: 0, - maxStar: 0, + nameLocale: 533, + minStar: 3, + maxStar: 4, - effect2: 1698, + effect2: 1708, - effect4: 1690, + effect4: 1700, flower: { - text: 534, + text: 535, url: getIcon("UI_RelicIcon_10003_4") }, feather: { - text: 536, + text: 537, url: getIcon("UI_RelicIcon_10003_2") }, sand: { - text: 535, + text: 536, url: getIcon("UI_RelicIcon_10003_5") }, cup: { - text: 533, + text: 534, url: getIcon("UI_RelicIcon_10003_1") }, head: { - text: 537, + text: 538, url: getIcon("UI_RelicIcon_10003_3") }, @@ -482,52 +482,52 @@ export default { "EchoesOfAnOffering": { eng: "EchoesOfAnOffering", name2: "EchoesOfAnOffering", - nameLocale: 1008, + nameLocale: 1011, minStar: 4, maxStar: 5, - effect2: 711, + effect2: 713, - effect4: 913, + effect4: 916, flower: { - text: 1806, + text: 1816, url: getIcon("UI_RelicIcon_15024_4") }, feather: { - text: 440, + text: 441, url: getIcon("UI_RelicIcon_15024_2") }, sand: { - text: 1306, + text: 1311, url: getIcon("UI_RelicIcon_15024_5") }, cup: { - text: 1103, + text: 1107, url: getIcon("UI_RelicIcon_15024_1") }, head: { - text: 1095, + text: 1099, url: getIcon("UI_RelicIcon_15024_3") }, config4: [ - {"default":0.5053283764473575,"max":1.0,"min":0.0,"name":"rate","title":589,"type":"float"}, + {"default":0.5053283764473575,"max":1.0,"min":0.0,"name":"rate","title":590,"type":"float"}, ], }, @@ -535,7 +535,7 @@ export default { "emblemOfSeveredFate": { eng: "emblemOfSeveredFate", name2: "EmblemOfSeveredFate", - nameLocale: 1373, + nameLocale: 1378, minStar: 4, maxStar: 5, @@ -544,37 +544,37 @@ export default { - effect4: 446, + effect4: 447, flower: { - text: 797, + text: 799, url: getIcon("UI_RelicIcon_15020_4") }, feather: { - text: 296, + text: 297, url: getIcon("UI_RelicIcon_15020_2") }, sand: { - text: 1725, + text: 1735, url: getIcon("UI_RelicIcon_15020_5") }, cup: { - text: 1376, + text: 1381, url: getIcon("UI_RelicIcon_15020_1") }, head: { - text: 332, + text: 333, url: getIcon("UI_RelicIcon_15020_3") }, @@ -591,47 +591,47 @@ export default { maxStar: 5, - effect2: 226, + effect2: 229, - effect4: 1495, + effect4: 1503, flower: { - text: 998, + text: 1001, url: getIcon("UI_RelicIcon_15028_4") }, feather: { - text: 1545, + text: 1553, url: getIcon("UI_RelicIcon_15028_2") }, sand: { - text: 284, + text: 285, url: getIcon("UI_RelicIcon_15028_5") }, cup: { - text: 538, + text: 539, url: getIcon("UI_RelicIcon_15028_1") }, head: { - text: 1358, + text: 1363, url: getIcon("UI_RelicIcon_15028_3") }, config4: [ - {"default":4.0,"max":4.0,"min":0.0,"name":"stack","title":735,"type":"float"}, + {"default":4.0,"max":4.0,"min":0.0,"name":"stack","title":737,"type":"float"}, ], }, @@ -639,7 +639,7 @@ export default { "gambler": { eng: "gambler", name2: "Gambler", - nameLocale: 1551, + nameLocale: 1559, minStar: 3, maxStar: 4, @@ -648,37 +648,37 @@ export default { - effect4: 294, + effect4: 295, flower: { - text: 1555, + text: 1563, url: getIcon("UI_RelicIcon_10008_4") }, feather: { - text: 1553, + text: 1561, url: getIcon("UI_RelicIcon_10008_2") }, sand: { - text: 1552, + text: 1560, url: getIcon("UI_RelicIcon_10008_5") }, cup: { - text: 1556, + text: 1564, url: getIcon("UI_RelicIcon_10008_1") }, head: { - text: 1554, + text: 1562, url: getIcon("UI_RelicIcon_10008_3") }, @@ -690,16 +690,16 @@ export default { "DesertPavilionChronicle": { eng: "DesertPavilionChronicle", name2: "DesertPavilionChronicle", - nameLocale: 1066, + nameLocale: 1070, minStar: 4, maxStar: 5, - effect2: 1447, + effect2: 1453, - effect4: 1646, + effect4: 1656, @@ -711,31 +711,31 @@ export default { feather: { - text: 1825, + text: 1840, url: getIcon("UI_RelicIcon_15027_2") }, sand: { - text: 509, + text: 510, url: getIcon("UI_RelicIcon_15027_5") }, cup: { - text: 1608, + text: 1616, url: getIcon("UI_RelicIcon_15027_1") }, head: { - text: 1086, + text: 1090, url: getIcon("UI_RelicIcon_15027_3") }, config4: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":734,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":736,"type":"float"}, ], }, @@ -743,7 +743,7 @@ export default { "GildedDreams": { eng: "GildedDreams", name2: "GildedDreams", - nameLocale: 1792, + nameLocale: 1802, minStar: 4, maxStar: 5, @@ -752,47 +752,47 @@ export default { - effect4: 1523, + effect4: 1531, flower: { - text: 1032, + text: 1036, url: getIcon("UI_RelicIcon_15026_4") }, feather: { - text: 1491, + text: 1499, url: getIcon("UI_RelicIcon_15026_2") }, sand: { - text: 1064, + text: 1068, url: getIcon("UI_RelicIcon_15026_5") }, cup: { - text: 518, + text: 519, url: getIcon("UI_RelicIcon_15026_1") }, head: { - text: 1067, + text: 1071, url: getIcon("UI_RelicIcon_15026_3") }, config4: [ - {"default":0,"max":3,"min":0,"name":"same_count","title":373,"type":"int"}, + {"default":0,"max":3,"min":0,"name":"same_count","title":374,"type":"int"}, {"default":0,"max":3,"min":0,"name":"diff_count","title":88,"type":"int"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":734,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":736,"type":"float"}, ], }, @@ -800,46 +800,46 @@ export default { "gladiatorFinale": { eng: "gladiatorFinale", name2: "GladiatorsFinale", - nameLocale: 1510, + nameLocale: 1518, minStar: 4, maxStar: 5, - effect2: 711, + effect2: 713, - effect4: 1496, + effect4: 1504, flower: { - text: 1509, + text: 1517, url: getIcon("UI_RelicIcon_15001_4") }, feather: { - text: 1508, + text: 1516, url: getIcon("UI_RelicIcon_15001_2") }, sand: { - text: 1507, + text: 1515, url: getIcon("UI_RelicIcon_15001_5") }, cup: { - text: 1511, + text: 1519, url: getIcon("UI_RelicIcon_15001_1") }, head: { - text: 1506, + text: 1514, url: getIcon("UI_RelicIcon_15001_3") }, @@ -848,55 +848,108 @@ export default { ], }, + "GoldenTroupe": { + eng: "GoldenTroupe", + name2: "GoldenTroupe", + nameLocale: 1837, + minStar: 4, + maxStar: 5, + + + effect2: 214, + + + + effect4: 215, + + + + + flower: { + text: 1836, + url: getIcon("UI_RelicIcon_15032_4") + }, + + + feather: { + text: 1841, + url: getIcon("UI_RelicIcon_15032_2") + }, + + + sand: { + text: 1839, + url: getIcon("UI_RelicIcon_15032_5") + }, + + + cup: { + text: 1835, + url: getIcon("UI_RelicIcon_15032_1") + }, + + + head: { + text: 1838, + url: getIcon("UI_RelicIcon_15032_3") + }, + + config4: [ + + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1493,"type":"float"}, + + ], + }, + "heartOfDepth": { eng: "heartOfDepth", name2: "HeartOfDepth", - nameLocale: 1062, + nameLocale: 1066, minStar: 4, maxStar: 5, - effect2: 1443, + effect2: 1449, - effect4: 757, + effect4: 759, flower: { - text: 1793, + text: 1803, url: getIcon("UI_RelicIcon_15016_4") }, feather: { - text: 1610, + text: 1618, url: getIcon("UI_RelicIcon_15016_2") }, sand: { - text: 439, + text: 440, url: getIcon("UI_RelicIcon_15016_5") }, cup: { - text: 1063, + text: 1067, url: getIcon("UI_RelicIcon_15016_1") }, head: { - text: 1622, + text: 1632, url: getIcon("UI_RelicIcon_15016_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":734,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":736,"type":"float"}, ], }, @@ -904,28 +957,28 @@ export default { "huskOfOpulentDreams": { eng: "huskOfOpulentDreams", name2: "HuskOfOpulentDreams", - nameLocale: 334, + nameLocale: 335, minStar: 4, maxStar: 5, - effect2: 1698, + effect2: 1708, - effect4: 1492, + effect4: 1500, flower: { - text: 1433, + text: 1439, url: getIcon("UI_RelicIcon_15021_4") }, feather: { - text: 333, + text: 334, url: getIcon("UI_RelicIcon_15021_2") }, @@ -937,13 +990,13 @@ export default { cup: { - text: 1034, + text: 1038, url: getIcon("UI_RelicIcon_15021_1") }, head: { - text: 617, + text: 619, url: getIcon("UI_RelicIcon_15021_3") }, @@ -957,7 +1010,7 @@ export default { "instructor": { eng: "instructor", name2: "Instructor", - nameLocale: 739, + nameLocale: 741, minStar: 3, maxStar: 4, @@ -966,43 +1019,43 @@ export default { - effect4: 1524, + effect4: 1532, flower: { - text: 744, + text: 746, url: getIcon("UI_RelicIcon_10007_4") }, feather: { - text: 743, + text: 745, url: getIcon("UI_RelicIcon_10007_2") }, sand: { - text: 742, + text: 744, url: getIcon("UI_RelicIcon_10007_5") }, cup: { - text: 745, + text: 747, url: getIcon("UI_RelicIcon_10007_1") }, head: { - text: 741, + text: 743, url: getIcon("UI_RelicIcon_10007_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":734,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":736,"type":"float"}, ], }, @@ -1010,52 +1063,52 @@ export default { "lavaWalker": { eng: "lavaWalker", name2: "Lavawalker", - nameLocale: 1113, + nameLocale: 1117, minStar: 4, maxStar: 5, - effect2: 1134, + effect2: 1138, - effect4: 564, + effect4: 565, flower: { - text: 1108, + text: 1112, url: getIcon("UI_RelicIcon_14003_4") }, feather: { - text: 1111, + text: 1115, url: getIcon("UI_RelicIcon_14003_2") }, sand: { - text: 1110, + text: 1114, url: getIcon("UI_RelicIcon_14003_5") }, cup: { - text: 1112, + text: 1116, url: getIcon("UI_RelicIcon_14003_1") }, head: { - text: 1109, + text: 1113, url: getIcon("UI_RelicIcon_14003_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":736,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":738,"type":"float"}, ], }, @@ -1063,46 +1116,46 @@ export default { "luckyDog": { eng: "luckyDog", name2: "LuckyDog", - nameLocale: 596, + nameLocale: 597, minStar: 1, maxStar: 3, - effect2: 1697, + effect2: 1707, - effect4: 686, + effect4: 688, flower: { - text: 599, + text: 600, url: getIcon("UI_RelicIcon_10011_4") }, feather: { - text: 601, + text: 602, url: getIcon("UI_RelicIcon_10011_2") }, sand: { - text: 598, + text: 599, url: getIcon("UI_RelicIcon_10011_5") }, cup: { - text: 597, + text: 598, url: getIcon("UI_RelicIcon_10011_1") }, head: { - text: 600, + text: 601, url: getIcon("UI_RelicIcon_10011_3") }, @@ -1114,46 +1167,46 @@ export default { "maidenBeloved": { eng: "maidenBeloved", name2: "MaidenBeloved", - nameLocale: 1489, + nameLocale: 1496, minStar: 4, maxStar: 5, - effect2: 1517, + effect2: 1525, - effect4: 764, + effect4: 766, flower: { - text: 1594, + text: 1602, url: getIcon("UI_RelicIcon_14004_4") }, feather: { - text: 575, + text: 576, url: getIcon("UI_RelicIcon_14004_2") }, sand: { - text: 574, + text: 575, url: getIcon("UI_RelicIcon_14004_5") }, cup: { - text: 573, + text: 574, url: getIcon("UI_RelicIcon_14004_1") }, head: { - text: 572, + text: 573, url: getIcon("UI_RelicIcon_14004_3") }, @@ -1162,55 +1215,108 @@ export default { ], }, + "MarechausseeHunter": { + eng: "MarechausseeHunter", + name2: "MarechausseeHunter", + nameLocale: 1622, + minStar: 4, + maxStar: 5, + + + effect2: 909, + + + + effect4: 618, + + + + + flower: { + text: 1193, + url: getIcon("UI_RelicIcon_15031_4") + }, + + + feather: { + text: 1012, + url: getIcon("UI_RelicIcon_15031_2") + }, + + + sand: { + text: 1497, + url: getIcon("UI_RelicIcon_15031_5") + }, + + + cup: { + text: 1630, + url: getIcon("UI_RelicIcon_15031_1") + }, + + + head: { + text: 1403, + url: getIcon("UI_RelicIcon_15031_3") + }, + + config4: [ + + {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":589,"type":"float"}, + + ], + }, + "martialArtist": { eng: "martialArtist", name2: "MartialArtist", - nameLocale: 1038, + nameLocale: 1042, minStar: 3, maxStar: 4, - effect2: 907, + effect2: 910, - effect4: 758, + effect4: 760, flower: { - text: 1041, + text: 1045, url: getIcon("UI_RelicIcon_10006_4") }, feather: { - text: 1042, + text: 1046, url: getIcon("UI_RelicIcon_10006_2") }, sand: { - text: 1040, + text: 1044, url: getIcon("UI_RelicIcon_10006_5") }, cup: { - text: 1043, + text: 1047, url: getIcon("UI_RelicIcon_10006_1") }, head: { - text: 1039, + text: 1043, url: getIcon("UI_RelicIcon_10006_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":734,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":736,"type":"float"}, ], }, @@ -1218,52 +1324,52 @@ export default { "noblesseOblige": { eng: "noblesseOblige", name2: "NoblesseOblige", - nameLocale: 798, + nameLocale: 800, minStar: 4, maxStar: 5, - effect2: 219, + effect2: 220, - effect4: 774, + effect4: 776, flower: { - text: 543, + text: 544, url: getIcon("UI_RelicIcon_15007_4") }, feather: { - text: 542, + text: 543, url: getIcon("UI_RelicIcon_15007_2") }, sand: { - text: 545, + text: 546, url: getIcon("UI_RelicIcon_15007_5") }, cup: { - text: 548, + text: 549, url: getIcon("UI_RelicIcon_15007_1") }, head: { - text: 551, + text: 552, url: getIcon("UI_RelicIcon_15007_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":734,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":736,"type":"float"}, ], }, @@ -1271,46 +1377,46 @@ export default { "NymphsDream": { eng: "NymphsDream", name2: "NymphsDream", - nameLocale: 1051, + nameLocale: 1055, minStar: 4, maxStar: 5, - effect2: 1443, + effect2: 1449, - effect4: 898, + effect4: 900, flower: { - text: 782, + text: 784, url: getIcon("UI_RelicIcon_15029_4") }, feather: { - text: 438, + text: 439, url: getIcon("UI_RelicIcon_15029_2") }, sand: { - text: 1052, + text: 1056, url: getIcon("UI_RelicIcon_15029_5") }, cup: { - text: 315, + text: 316, url: getIcon("UI_RelicIcon_15029_1") }, head: { - text: 632, + text: 634, url: getIcon("UI_RelicIcon_15029_3") }, @@ -1322,7 +1428,7 @@ export default { {"default":1.0,"max":1.0,"min":0.0,"name":"w3","title":71,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":605,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":607,"type":"float"}, ], }, @@ -1330,46 +1436,46 @@ export default { "oceanHuedClam": { eng: "oceanHuedClam", name2: "OceanHuedClam", - nameLocale: 1100, + nameLocale: 1104, minStar: 4, maxStar: 5, - effect2: 1071, + effect2: 1075, - effect4: 1493, + effect4: 1501, flower: { - text: 1099, + text: 1103, url: getIcon("UI_RelicIcon_15022_4") }, feather: { - text: 1107, + text: 1111, url: getIcon("UI_RelicIcon_15022_2") }, sand: { - text: 1338, + text: 1343, url: getIcon("UI_RelicIcon_15022_5") }, cup: { - text: 1284, + text: 1289, url: getIcon("UI_RelicIcon_15022_1") }, head: { - text: 1102, + text: 1106, url: getIcon("UI_RelicIcon_15022_3") }, @@ -1381,12 +1487,12 @@ export default { "paleFlame": { eng: "paleFlame", name2: "PaleFlame", - nameLocale: 1419, + nameLocale: 1425, minStar: 4, maxStar: 5, - effect2: 1617, + effect2: 1626, @@ -1396,13 +1502,13 @@ export default { flower: { - text: 788, + text: 790, url: getIcon("UI_RelicIcon_15018_4") }, feather: { - text: 1546, + text: 1554, url: getIcon("UI_RelicIcon_15018_2") }, @@ -1414,21 +1520,21 @@ export default { cup: { - text: 1564, + text: 1572, url: getIcon("UI_RelicIcon_15018_1") }, head: { - text: 413, + text: 414, url: getIcon("UI_RelicIcon_15018_3") }, config4: [ - {"default":0.0,"max":2.0,"min":0.0,"name":"avg_level","title":728,"type":"float"}, + {"default":0.0,"max":2.0,"min":0.0,"name":"avg_level","title":730,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"full_rate","title":1126,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"full_rate","title":1130,"type":"float"}, ], }, @@ -1436,11 +1542,11 @@ export default { "prayersForDestiny": { eng: "prayersForDestiny", name2: "PrayersForDestiny", - nameLocale: 1327, + nameLocale: 1332, minStar: 3, maxStar: 4, - effect1: 356, + effect1: 357, @@ -1453,7 +1559,7 @@ export default { head: { - text: 1328, + text: 1333, url: getIcon("UI_RelicIcon_15010_3") }, @@ -1465,11 +1571,11 @@ export default { "prayersForIllumination": { eng: "prayersForIllumination", name2: "PrayersForIllumination", - nameLocale: 1329, + nameLocale: 1334, minStar: 3, maxStar: 4, - effect1: 357, + effect1: 358, @@ -1482,7 +1588,7 @@ export default { head: { - text: 1330, + text: 1335, url: getIcon("UI_RelicIcon_15009_3") }, @@ -1494,11 +1600,11 @@ export default { "prayersForWisdom": { eng: "prayersForWisdom", name2: "PrayersForWisdom", - nameLocale: 1335, + nameLocale: 1340, minStar: 3, maxStar: 4, - effect1: 358, + effect1: 359, @@ -1511,7 +1617,7 @@ export default { head: { - text: 1336, + text: 1341, url: getIcon("UI_RelicIcon_15011_3") }, @@ -1523,11 +1629,11 @@ export default { "prayersToSpringtime": { eng: "prayersToSpringtime", name2: "PrayersToSpringtime", - nameLocale: 1325, + nameLocale: 1330, minStar: 3, maxStar: 4, - effect1: 355, + effect1: 356, @@ -1540,7 +1646,7 @@ export default { head: { - text: 1326, + text: 1331, url: getIcon("UI_RelicIcon_15013_3") }, @@ -1552,46 +1658,46 @@ export default { "resolutionOfSojourner": { eng: "resolutionOfSojourner", name2: "ResolutionOfSojourner", - nameLocale: 1482, + nameLocale: 1488, minStar: 3, maxStar: 4, - effect2: 711, + effect2: 713, - effect4: 1649, + effect4: 1659, flower: { - text: 726, + text: 728, url: getIcon("UI_RelicIcon_10001_4") }, feather: { - text: 616, + text: 617, url: getIcon("UI_RelicIcon_10001_2") }, sand: { - text: 1613, + text: 1621, url: getIcon("UI_RelicIcon_10001_5") }, cup: { - text: 612, + text: 613, url: getIcon("UI_RelicIcon_10001_1") }, head: { - text: 637, + text: 639, url: getIcon("UI_RelicIcon_10001_3") }, @@ -1603,52 +1709,52 @@ export default { "retracingBolide": { eng: "retracingBolide", name2: "RetracingBolide", - nameLocale: 1612, + nameLocale: 1620, minStar: 4, maxStar: 5, - effect2: 682, + effect2: 684, - effect4: 456, + effect4: 457, flower: { - text: 461, + text: 462, url: getIcon("UI_RelicIcon_15015_4") }, feather: { - text: 464, + text: 465, url: getIcon("UI_RelicIcon_15015_2") }, sand: { - text: 460, + text: 461, url: getIcon("UI_RelicIcon_15015_5") }, cup: { - text: 463, + text: 464, url: getIcon("UI_RelicIcon_15015_1") }, head: { - text: 462, + text: 463, url: getIcon("UI_RelicIcon_15015_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":684,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":685,"type":"float"}, ], }, @@ -1656,7 +1762,7 @@ export default { "scholar": { eng: "scholar", name2: "Scholar", - nameLocale: 525, + nameLocale: 526, minStar: 3, maxStar: 4, @@ -1665,37 +1771,37 @@ export default { - effect4: 1454, + effect4: 1460, flower: { - text: 526, + text: 527, url: getIcon("UI_RelicIcon_10012_4") }, feather: { - text: 529, + text: 530, url: getIcon("UI_RelicIcon_10012_2") }, sand: { - text: 528, + text: 529, url: getIcon("UI_RelicIcon_10012_5") }, cup: { - text: 527, + text: 528, url: getIcon("UI_RelicIcon_10012_1") }, head: { - text: 530, + text: 531, url: getIcon("UI_RelicIcon_10012_3") }, @@ -1707,52 +1813,52 @@ export default { "shimenawaReminiscence": { eng: "shimenawaReminiscence", name2: "ShimenawasReminiscence", - nameLocale: 1609, + nameLocale: 1617, minStar: 4, maxStar: 5, - effect2: 711, + effect2: 713, - effect4: 765, + effect4: 767, flower: { - text: 1387, + text: 1392, url: getIcon("UI_RelicIcon_15019_4") }, feather: { - text: 627, + text: 629, url: getIcon("UI_RelicIcon_15019_2") }, sand: { - text: 1000, + text: 1003, url: getIcon("UI_RelicIcon_15019_5") }, cup: { - text: 1305, + text: 1310, url: getIcon("UI_RelicIcon_15019_1") }, head: { - text: 790, + text: 792, url: getIcon("UI_RelicIcon_15019_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":734,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":736,"type":"float"}, ], }, @@ -1760,12 +1866,12 @@ export default { "tenacityOfTheMillelith": { eng: "tenacityOfTheMillelith", name2: "TenacityOfTheMillelith", - nameLocale: 327, + nameLocale: 328, minStar: 4, maxStar: 5, - effect2: 1243, + effect2: 1248, @@ -1775,37 +1881,37 @@ export default { flower: { - text: 316, + text: 317, url: getIcon("UI_RelicIcon_15017_4") }, feather: { - text: 809, + text: 811, url: getIcon("UI_RelicIcon_15017_2") }, sand: { - text: 1656, + text: 1666, url: getIcon("UI_RelicIcon_15017_5") }, cup: { - text: 1283, + text: 1288, url: getIcon("UI_RelicIcon_15017_1") }, head: { - text: 571, + text: 572, url: getIcon("UI_RelicIcon_15017_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":734,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":736,"type":"float"}, ], }, @@ -1813,7 +1919,7 @@ export default { "exile": { eng: "exile", name2: "TheExile", - nameLocale: 1079, + nameLocale: 1083, minStar: 3, maxStar: 4, @@ -1822,37 +1928,37 @@ export default { - effect4: 773, + effect4: 775, flower: { - text: 1082, + text: 1086, url: getIcon("UI_RelicIcon_10009_4") }, feather: { - text: 1081, + text: 1085, url: getIcon("UI_RelicIcon_10009_2") }, sand: { - text: 1084, + text: 1088, url: getIcon("UI_RelicIcon_10009_5") }, cup: { - text: 1080, + text: 1084, url: getIcon("UI_RelicIcon_10009_1") }, head: { - text: 1083, + text: 1087, url: getIcon("UI_RelicIcon_10009_3") }, @@ -1864,46 +1970,46 @@ export default { "thunderingFury": { eng: "thunderingFury", name2: "ThunderingFury", - nameLocale: 519, + nameLocale: 520, minStar: 4, maxStar: 5, - effect2: 1446, + effect2: 1452, - effect4: 1565, + effect4: 1573, flower: { - text: 1746, + text: 1756, url: getIcon("UI_RelicIcon_15005_4") }, feather: { - text: 1736, + text: 1746, url: getIcon("UI_RelicIcon_15005_2") }, sand: { - text: 1745, + text: 1755, url: getIcon("UI_RelicIcon_15005_5") }, cup: { - text: 1718, + text: 1728, url: getIcon("UI_RelicIcon_15005_1") }, head: { - text: 409, + text: 410, url: getIcon("UI_RelicIcon_15005_3") }, @@ -1915,52 +2021,52 @@ export default { "thunderSmoother": { eng: "thunderSmoother", name2: "Thundersoother", - nameLocale: 590, + nameLocale: 591, minStar: 4, maxStar: 5, - effect2: 1728, + effect2: 1738, - effect4: 567, + effect4: 568, flower: { - text: 594, + text: 595, url: getIcon("UI_RelicIcon_14002_4") }, feather: { - text: 595, + text: 596, url: getIcon("UI_RelicIcon_14002_2") }, sand: { - text: 592, + text: 593, url: getIcon("UI_RelicIcon_14002_5") }, cup: { - text: 593, + text: 594, url: getIcon("UI_RelicIcon_14002_1") }, head: { - text: 591, + text: 592, url: getIcon("UI_RelicIcon_14002_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":738,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":740,"type":"float"}, ], }, @@ -1968,46 +2074,46 @@ export default { "tinyMiracle": { eng: "tinyMiracle", name2: "TinyMiracle", - nameLocale: 510, + nameLocale: 511, minStar: 3, maxStar: 4, - effect2: 645, + effect2: 647, - effect4: 351, + effect4: 352, flower: { - text: 514, + text: 515, url: getIcon("UI_RelicIcon_10004_4") }, feather: { - text: 513, + text: 514, url: getIcon("UI_RelicIcon_10004_2") }, sand: { - text: 512, + text: 513, url: getIcon("UI_RelicIcon_10004_5") }, cup: { - text: 511, + text: 512, url: getIcon("UI_RelicIcon_10004_1") }, head: { - text: 515, + text: 516, url: getIcon("UI_RelicIcon_10004_3") }, @@ -2019,46 +2125,46 @@ export default { "travelingDoctor": { eng: "travelingDoctor", name2: "TravelingDoctor", - nameLocale: 1120, + nameLocale: 1124, minStar: 1, maxStar: 3, - effect2: 1512, + effect2: 1520, - effect4: 777, + effect4: 779, flower: { - text: 1125, + text: 1129, url: getIcon("UI_RelicIcon_10013_4") }, feather: { - text: 1123, + text: 1127, url: getIcon("UI_RelicIcon_10013_2") }, sand: { - text: 1121, + text: 1125, url: getIcon("UI_RelicIcon_10013_5") }, cup: { - text: 1124, + text: 1128, url: getIcon("UI_RelicIcon_10013_1") }, head: { - text: 1122, + text: 1126, url: getIcon("UI_RelicIcon_10013_3") }, @@ -2070,54 +2176,54 @@ export default { "VermillionHereafter": { eng: "VermillionHereafter", name2: "VermillionHereafter", - nameLocale: 1591, + nameLocale: 1599, minStar: 4, maxStar: 5, - effect2: 711, + effect2: 713, - effect4: 771, + effect4: 773, flower: { - text: 1254, + text: 1259, url: getIcon("UI_RelicIcon_15023_4") }, feather: { - text: 1131, + text: 1135, url: getIcon("UI_RelicIcon_15023_2") }, sand: { - text: 1702, + text: 1712, url: getIcon("UI_RelicIcon_15023_5") }, cup: { - text: 1370, + text: 1375, url: getIcon("UI_RelicIcon_15023_1") }, head: { - text: 1473, + text: 1479, url: getIcon("UI_RelicIcon_15023_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate_q","title":222,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate_q","title":223,"type":"float"}, - {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":587,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":589,"type":"float"}, ], }, @@ -2125,46 +2231,46 @@ export default { "viridescentVenerer": { eng: "viridescentVenerer", name2: "ViridescentVenerer", - nameLocale: 1390, + nameLocale: 1395, minStar: 4, maxStar: 5, - effect2: 1447, + effect2: 1453, - effect4: 656, + effect4: 658, flower: { - text: 1655, + text: 1665, url: getIcon("UI_RelicIcon_15002_4") }, feather: { - text: 1189, + text: 1194, url: getIcon("UI_RelicIcon_15002_2") }, sand: { - text: 1393, + text: 1398, url: getIcon("UI_RelicIcon_15002_5") }, cup: { - text: 1392, + text: 1397, url: getIcon("UI_RelicIcon_15002_1") }, head: { - text: 1394, + text: 1399, url: getIcon("UI_RelicIcon_15002_3") }, @@ -2176,12 +2282,12 @@ export default { "VourukashasGlow": { eng: "VourukashasGlow", name2: "VourukashasGlow", - nameLocale: 1414, + nameLocale: 1420, minStar: 4, maxStar: 5, - effect2: 1244, + effect2: 1249, @@ -2191,13 +2297,13 @@ export default { flower: { - text: 1141, + text: 1145, url: getIcon("UI_RelicIcon_15030_4") }, feather: { - text: 1218, + text: 1223, url: getIcon("UI_RelicIcon_15030_2") }, @@ -2209,13 +2315,13 @@ export default { cup: { - text: 792, + text: 794, url: getIcon("UI_RelicIcon_15030_1") }, head: { - text: 1140, + text: 1144, url: getIcon("UI_RelicIcon_15030_3") }, @@ -2229,7 +2335,7 @@ export default { "wandererTroupe": { eng: "wandererTroupe", name2: "WanderersTroupe", - nameLocale: 1088, + nameLocale: 1092, minStar: 4, maxStar: 5, @@ -2238,7 +2344,7 @@ export default { - effect4: 1497, + effect4: 1505, @@ -2250,25 +2356,25 @@ export default { feather: { - text: 1224, + text: 1229, url: getIcon("UI_RelicIcon_15003_2") }, sand: { - text: 1366, + text: 1371, url: getIcon("UI_RelicIcon_15003_5") }, cup: { - text: 375, + text: 376, url: getIcon("UI_RelicIcon_15003_1") }, head: { - text: 695, + text: 697, url: getIcon("UI_RelicIcon_15003_3") }, diff --git a/src/assets/_gen_buff.js b/src/assets/_gen_buff.js index c3d9518d..33225098 100644 --- a/src/assets/_gen_buff.js +++ b/src/assets/_gen_buff.js @@ -270,7 +270,7 @@ export default { "ATKPercentage": { name: "ATKPercentage", - nameLocale: 707, + nameLocale: 709, description: null, @@ -280,14 +280,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":746,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":748,"type":"floatPercentageInput"}, ], }, "DEFPercentage": { name: "DEFPercentage", - nameLocale: 1694, + nameLocale: 1704, description: null, @@ -297,14 +297,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":746,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":748,"type":"floatPercentageInput"}, ], }, "HPPercentage": { name: "HPPercentage", - nameLocale: 1234, + nameLocale: 1239, description: null, @@ -314,14 +314,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":746,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":748,"type":"floatPercentageInput"}, ], }, "ATKFixed": { name: "ATKFixed", - nameLocale: 706, + nameLocale: 708, description: null, @@ -331,14 +331,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"value","title":746,"type":"floatInput"}, + {"default":0.0,"name":"value","title":748,"type":"floatInput"}, ], }, "DEFFixed": { name: "DEFFixed", - nameLocale: 1693, + nameLocale: 1703, description: null, @@ -348,14 +348,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"value","title":746,"type":"floatInput"}, + {"default":0.0,"name":"value","title":748,"type":"floatInput"}, ], }, "HPFixed": { name: "HPFixed", - nameLocale: 1233, + nameLocale: 1238, description: null, @@ -365,14 +365,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"value","title":746,"type":"floatInput"}, + {"default":0.0,"name":"value","title":748,"type":"floatInput"}, ], }, "Critical": { name: "Critical", - nameLocale: 971, + nameLocale: 974, description: null, @@ -382,14 +382,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":746,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":748,"type":"floatPercentageInput"}, ], }, "CriticalDamage": { name: "CriticalDamage", - nameLocale: 967, + nameLocale: 970, description: null, @@ -399,7 +399,7 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":746,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":748,"type":"floatPercentageInput"}, ], }, @@ -416,14 +416,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":746,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":748,"type":"floatPercentageInput"}, ], }, "ElementalMastery": { name: "ElementalMastery", - nameLocale: 223, + nameLocale: 224, description: null, @@ -433,7 +433,7 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"value","title":746,"type":"floatInput"}, + {"default":0.0,"name":"value","title":748,"type":"floatInput"}, ], }, @@ -450,14 +450,14 @@ export default { genre: "Common", config: [ - {"default":20.0,"name":"p","title":746,"type":"floatPercentageInput"}, + {"default":20.0,"name":"p","title":748,"type":"floatPercentageInput"}, ], }, "DEFMinus": { name: "DEFMinus", - nameLocale: 277, + nameLocale: 278, description: 0, @@ -467,14 +467,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":746,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":748,"type":"floatPercentageInput"}, ], }, "ResMinus": { name: "ResMinus", - nameLocale: 276, + nameLocale: 277, description: null, @@ -484,14 +484,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":746,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":748,"type":"floatPercentageInput"}, ], }, "HealingBonus": { name: "HealingBonus", - nameLocale: 1069, + nameLocale: 1073, description: null, @@ -501,16 +501,16 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":746,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":748,"type":"floatPercentageInput"}, ], }, "BaseDmg": { name: "BaseDmg", - nameLocale: 449, + nameLocale: 451, - description: 1573, + description: 1581, badge: BaseDmg_image, @@ -518,16 +518,16 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"value","title":746,"type":"floatInput"}, + {"default":0.0,"name":"value","title":748,"type":"floatInput"}, ], }, "AlbedoTalent2": { name: "AlbedoTalent2", - nameLocale: 1706, + nameLocale: 1716, - description: 1711, + description: 1721, badge: getImage("Albedo"), @@ -540,9 +540,9 @@ export default { "AlbedoC4": { name: "AlbedoC4", - nameLocale: 1707, + nameLocale: 1717, - description: 1709, + description: 1719, badge: getImage("Albedo"), @@ -555,9 +555,9 @@ export default { "AlbedoC6": { name: "AlbedoC6", - nameLocale: 1705, + nameLocale: 1715, - description: 1710, + description: 1720, badge: getImage("Albedo"), @@ -570,9 +570,9 @@ export default { "AloyTalent1": { name: "AloyTalent1", - nameLocale: 444, + nameLocale: 445, - description: 445, + description: 446, badge: getImage("Aloy"), @@ -585,9 +585,9 @@ export default { "AratakiIttoC4": { name: "AratakiIttoC4", - nameLocale: 1427, + nameLocale: 1433, - description: 1429, + description: 1435, badge: getImage("Itto"), @@ -600,9 +600,9 @@ export default { "BeidouC6": { name: "BeidouC6", - nameLocale: 319, + nameLocale: 320, - description: 321, + description: 322, badge: getImage("Beidou"), @@ -615,9 +615,9 @@ export default { "BennettQ": { name: "BennettQ", - nameLocale: 1209, + nameLocale: 1214, - description: 1212, + description: 1217, badge: getImage("Bennett"), @@ -625,20 +625,20 @@ export default { genre: "Character", config: [ - {"default":800.0,"name":"base_atk","title":1214,"type":"floatInput"}, + {"default":800.0,"name":"base_atk","title":1219,"type":"floatInput"}, - {"default":true,"name":"c1","title":810,"type":"bool"}, + {"default":true,"name":"c1","title":812,"type":"bool"}, - {"default":10,"max":15,"min":1,"name":"skill3","title":675,"type":"int"}, + {"default":10,"max":15,"min":1,"name":"skill3","title":677,"type":"int"}, ], }, "BennettC6": { name: "BennettC6", - nameLocale: 1208, + nameLocale: 1213, - description: 1213, + description: 1218, badge: getImage("Bennett"), @@ -651,9 +651,9 @@ export default { "ChongyunTalent2": { name: "ChongyunTalent2", - nameLocale: 1624, + nameLocale: 1634, - description: 1626, + description: 1636, badge: getImage("Chongyun"), @@ -666,9 +666,9 @@ export default { "DionaC6G50": { name: "DionaC6G50", - nameLocale: 1601, + nameLocale: 1609, - description: 1603, + description: 1611, badge: getImage("Diona"), @@ -691,16 +691,16 @@ export default { genre: "Character", config: [ - {"default":9,"max":15,"min":1,"name":"skill2","title":675,"type":"int"}, + {"default":9,"max":15,"min":1,"name":"skill2","title":677,"type":"int"}, ], }, "GanyuTalent2": { name: "GanyuTalent2", - nameLocale: 1228, + nameLocale: 1233, - description: 1232, + description: 1237, badge: getImage("Ganyu"), @@ -713,9 +713,9 @@ export default { "GanyuC1": { name: "GanyuC1", - nameLocale: 1229, + nameLocale: 1234, - description: 1231, + description: 1236, badge: getImage("Ganyu"), @@ -785,16 +785,16 @@ export default { genre: "Character", config: [ - {"default":1,"max":3,"min":1,"name":"level","title":1760,"type":"int"}, + {"default":1,"max":3,"min":1,"name":"level","title":1770,"type":"int"}, ], }, "HuTaoTalent1": { name: "HuTaoTalent1", - nameLocale: 1405, + nameLocale: 1411, - description: 1407, + description: 1413, badge: getImage("Hutao"), @@ -807,9 +807,9 @@ export default { "JeanC4": { name: "JeanC4", - nameLocale: 1221, + nameLocale: 1226, - description: 1223, + description: 1228, badge: getImage("Qin"), @@ -822,9 +822,9 @@ export default { "KaedeharaKazuhaTalent2": { name: "KaedeharaKazuhaTalent2", - nameLocale: 1016, + nameLocale: 1020, - description: 1020, + description: 1024, badge: getImage("Kazuha"), @@ -832,7 +832,7 @@ export default { genre: "Character", config: [ - {"default":"Electro","name":"element","title":654,"type":"element4"}, + {"default":"Electro","name":"element","title":656,"type":"element4"}, {"default":800.0,"name":"em","title":68,"type":"floatInput"}, @@ -841,9 +841,9 @@ export default { "KaedeharaKazuhaC2": { name: "KaedeharaKazuhaC2", - nameLocale: 1015, + nameLocale: 1019, - description: 1019, + description: 1023, badge: getImage("Kazuha"), @@ -856,9 +856,9 @@ export default { "KamisatoAyakaC4": { name: "KamisatoAyakaC4", - nameLocale: 1323, + nameLocale: 1328, - description: 1374, + description: 1379, badge: getImage("Ayaka"), @@ -871,9 +871,9 @@ export default { "KleeC2": { name: "KleeC2", - nameLocale: 367, + nameLocale: 368, - description: 369, + description: 370, badge: getImage("Klee"), @@ -886,9 +886,9 @@ export default { "KleeC6": { name: "KleeC6", - nameLocale: 366, + nameLocale: 367, - description: 370, + description: 371, badge: getImage("Klee"), @@ -913,7 +913,7 @@ export default { {"default":700.0,"name":"base_atk","title":109,"type":"floatInput"}, - {"default":false,"name":"c6","title":813,"type":"bool"}, + {"default":false,"name":"c6","title":815,"type":"bool"}, {"default":10,"max":15,"min":1,"name":"skill2","title":12,"type":"int"}, @@ -937,9 +937,9 @@ export default { "MonaQ": { name: "MonaQ", - nameLocale: 1435, + nameLocale: 1441, - description: 1438, + description: 1444, 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":812,"type":"bool"}, + {"default":false,"name":"c4","title":814,"type":"bool"}, ], }, "MonaC1": { name: "MonaC1", - nameLocale: 1436, + nameLocale: 1442, - description: 1439, + description: 1445, badge: getImage("Mona"), @@ -971,9 +971,9 @@ export default { "NingguangTalent2": { name: "NingguangTalent2", - nameLocale: 280, + nameLocale: 281, - description: 282, + description: 283, badge: getImage("Ningguang"), @@ -986,9 +986,9 @@ export default { "RaidenShogunE": { name: "RaidenShogunE", - nameLocale: 1740, + nameLocale: 1750, - description: 1743, + description: 1753, badge: getImage("Shougun"), @@ -996,18 +996,18 @@ export default { genre: "Character", config: [ - {"default":8,"max":15,"min":1,"name":"skill2","title":1742,"type":"int"}, + {"default":8,"max":15,"min":1,"name":"skill2","title":1752,"type":"int"}, - {"default":80,"max":100,"min":20,"name":"energy","title":348,"type":"int"}, + {"default":80,"max":100,"min":20,"name":"energy","title":349,"type":"int"}, ], }, "RaidenShogunC4": { name: "RaidenShogunC4", - nameLocale: 1739, + nameLocale: 1749, - description: 1744, + description: 1754, badge: getImage("Shougun"), @@ -1020,9 +1020,9 @@ export default { "RazorC4": { name: "RazorC4", - nameLocale: 1733, + nameLocale: 1743, - description: 1735, + description: 1745, badge: getImage("Razor"), @@ -1035,9 +1035,9 @@ export default { "RosariaTalent2": { name: "RosariaTalent2", - nameLocale: 1382, + nameLocale: 1387, - description: 1385, + description: 1390, badge: getImage("Rosaria"), @@ -1045,16 +1045,16 @@ export default { genre: "Character", config: [ - {"default":70.0,"name":"crit","title":1386,"type":"floatPercentageInput"}, + {"default":70.0,"name":"crit","title":1391,"type":"floatPercentageInput"}, ], }, "RosariaC6": { name: "RosariaC6", - nameLocale: 1381, + nameLocale: 1386, - description: 1384, + description: 1389, badge: getImage("Rosaria"), @@ -1067,9 +1067,9 @@ export default { "ShenheE": { name: "ShenheE", - nameLocale: 1258, + nameLocale: 1263, - description: 1264, + description: 1269, badge: getImage("Shenhe"), @@ -1077,18 +1077,18 @@ export default { genre: "Character", config: [ - {"default":3000.0,"name":"atk","title":1269,"type":"floatInput"}, + {"default":3000.0,"name":"atk","title":1274,"type":"floatInput"}, - {"default":8,"max":15,"min":1,"name":"skill2","title":1263,"type":"int"}, + {"default":8,"max":15,"min":1,"name":"skill2","title":1268,"type":"int"}, ], }, "ShenheQ": { name: "ShenheQ", - nameLocale: 1260, + nameLocale: 1265, - description: 1266, + description: 1271, badge: getImage("Shenhe"), @@ -1096,16 +1096,16 @@ export default { genre: "Character", config: [ - {"default":8,"max":15,"min":1,"name":"skill3","title":1265,"type":"int"}, + {"default":8,"max":15,"min":1,"name":"skill3","title":1270,"type":"int"}, ], }, "ShenheTalent1": { name: "ShenheTalent1", - nameLocale: 1259, + nameLocale: 1264, - description: 1267, + description: 1272, badge: getImage("Shenhe"), @@ -1113,16 +1113,16 @@ export default { genre: "Character", config: [ - {"default":false,"name":"c2","title":811,"type":"bool"}, + {"default":false,"name":"c2","title":813,"type":"bool"}, ], }, "ShenheTalent2": { name: "ShenheTalent2", - nameLocale: 1261, + nameLocale: 1266, - description: 1268, + description: 1273, badge: getImage("Shenhe"), @@ -1130,16 +1130,16 @@ export default { genre: "Character", config: [ - {"default":0,"name":"t","options":["点按","长按"],"title":676,"type":"option"}, + {"default":0,"name":"t","options":["点按","长按"],"title":678,"type":"option"}, ], }, "SucroseTalent1": { name: "SucroseTalent1", - nameLocale: 1291, + nameLocale: 1296, - description: 1294, + description: 1299, badge: getImage("Sucrose"), @@ -1152,9 +1152,9 @@ export default { "SucroseTalent2": { name: "SucroseTalent2", - nameLocale: 1289, + nameLocale: 1294, - description: 1295, + description: 1300, badge: getImage("Sucrose"), @@ -1162,16 +1162,16 @@ export default { genre: "Character", config: [ - {"default":200.0,"name":"em","title":1296,"type":"floatInput"}, + {"default":200.0,"name":"em","title":1301,"type":"floatInput"}, ], }, "SucroseC6": { name: "SucroseC6", - nameLocale: 1290, + nameLocale: 1295, - description: 1293, + description: 1298, badge: getImage("Sucrose"), @@ -1179,16 +1179,16 @@ export default { genre: "Character", config: [ - {"default":"Electro","name":"element","title":659,"type":"element4"}, + {"default":"Electro","name":"element","title":661,"type":"element4"}, ], }, "ThomaTalent1": { name: "ThomaTalent1", - nameLocale: 650, + nameLocale: 652, - description: 653, + description: 655, badge: getImage("Tohma"), @@ -1196,16 +1196,16 @@ export default { genre: "Character", config: [ - {"default":2.0,"max":5.0,"min":0.0,"name":"stack","title":360,"type":"float"}, + {"default":2.0,"max":5.0,"min":0.0,"name":"stack","title":361,"type":"float"}, ], }, "ThomaC6": { name: "ThomaC6", - nameLocale: 649, + nameLocale: 651, - description: 652, + description: 654, badge: getImage("Tohma"), @@ -1218,9 +1218,9 @@ export default { "VentiC2": { name: "VentiC2", - nameLocale: 1116, + nameLocale: 1120, - description: 1118, + description: 1122, badge: getImage("Venti"), @@ -1228,16 +1228,16 @@ export default { genre: "Character", config: [ - {"default":false,"name":"levitating","title":1463,"type":"bool"}, + {"default":false,"name":"levitating","title":1469,"type":"bool"}, ], }, "VentiC6": { name: "VentiC6", - nameLocale: 1115, + nameLocale: 1119, - description: 1119, + description: 1123, badge: getImage("Venti"), @@ -1245,18 +1245,18 @@ export default { genre: "Character", config: [ - {"default":true,"name":"is_convert","title":347,"type":"bool"}, + {"default":true,"name":"is_convert","title":348,"type":"bool"}, - {"default":"Electro","name":"element","title":1578,"type":"element4"}, + {"default":"Electro","name":"element","title":1586,"type":"element4"}, ], }, "XianglingTalent2": { name: "XianglingTalent2", - nameLocale: 1798, + nameLocale: 1808, - description: 1802, + description: 1812, badge: getImage("Xiangling"), @@ -1269,9 +1269,9 @@ export default { "XianglingC1": { name: "XianglingC1", - nameLocale: 1796, + nameLocale: 1806, - description: 1800, + description: 1810, badge: getImage("Xiangling"), @@ -1284,9 +1284,9 @@ export default { "XianglingC6": { name: "XianglingC6", - nameLocale: 1797, + nameLocale: 1807, - description: 1801, + description: 1811, badge: getImage("Xiangling"), @@ -1299,9 +1299,9 @@ export default { "XingqiuC2": { name: "XingqiuC2", - nameLocale: 1479, + nameLocale: 1485, - description: 1481, + description: 1487, badge: getImage("Xingqiu"), @@ -1314,9 +1314,9 @@ export default { "XinyanC4": { name: "XinyanC4", - nameLocale: 1584, + nameLocale: 1592, - description: 1588, + description: 1596, badge: getImage("Xinyan"), @@ -1329,9 +1329,9 @@ export default { "XinyanTalent2": { name: "XinyanTalent2", - nameLocale: 1585, + nameLocale: 1593, - description: 1589, + description: 1597, badge: getImage("Xinyan"), @@ -1344,9 +1344,9 @@ export default { "YaeMikoC4": { name: "YaeMikoC4", - nameLocale: 237, + nameLocale: 238, - description: 239, + description: 240, badge: getImage("Yae"), @@ -1359,9 +1359,9 @@ export default { "YoimiyaTalent2": { name: "YoimiyaTalent2", - nameLocale: 554, + nameLocale: 555, - description: 556, + description: 557, badge: getImage("Yoimiya"), @@ -1392,7 +1392,7 @@ export default { {"default":true,"name":"talent2","title":7,"type":"bool"}, - {"default":4,"max":4,"min":1,"name":"ele_count","title":1678,"type":"int"}, + {"default":4,"max":4,"min":1,"name":"ele_count","title":1688,"type":"int"}, ], }, @@ -1414,9 +1414,9 @@ export default { "ZhongliShield": { name: "ZhongliShield", - nameLocale: 1660, + nameLocale: 1670, - description: 1662, + description: 1672, badge: getImage("Zhongli"), @@ -1429,9 +1429,9 @@ export default { "YelanTalent2": { name: "YelanTalent2", - nameLocale: 469, + nameLocale: 470, - description: 473, + description: 474, badge: getImage("Yelan"), @@ -1439,16 +1439,16 @@ export default { genre: "Character", config: [ - {"default":14,"max":14,"min":0,"name":"secs","title":1369,"type":"int"}, + {"default":14,"max":14,"min":0,"name":"secs","title":1374,"type":"int"}, ], }, "YelanC4": { name: "YelanC4", - nameLocale: 470, + nameLocale: 471, - description: 472, + description: 473, badge: getImage("Yelan"), @@ -1456,16 +1456,16 @@ export default { genre: "Character", config: [ - {"default":4,"max":4,"min":1,"name":"count","title":1027,"type":"int"}, + {"default":4,"max":4,"min":1,"name":"count","title":1031,"type":"int"}, ], }, "KamisatoAyatoQ": { name: "KamisatoAyatoQ", - nameLocale: 1317, + nameLocale: 1322, - description: 1320, + description: 1325, badge: getImage("Ayato"), @@ -1473,16 +1473,16 @@ export default { genre: "Character", config: [ - {"default":8,"max":15,"min":1,"name":"skill_level","title":1319,"type":"int"}, + {"default":8,"max":15,"min":1,"name":"skill_level","title":1324,"type":"int"}, ], }, "ShikanoinHeizouTalent2": { name: "ShikanoinHeizouTalent2", - nameLocale: 1822, + nameLocale: 1832, - description: 1824, + description: 1834, badge: getImage("Heizo"), @@ -1495,9 +1495,9 @@ export default { "TighnariC4": { name: "TighnariC4", - nameLocale: 701, + nameLocale: 703, - description: 703, + description: 705, badge: getImage("Tighnari"), @@ -1505,16 +1505,16 @@ export default { genre: "Character", config: [ - {"default":false,"name":"after_reaction","title":1619,"type":"bool"}, + {"default":false,"name":"after_reaction","title":1628,"type":"bool"}, ], }, "DoriC4": { name: "DoriC4", - nameLocale: 466, + nameLocale: 467, - description: 467, + description: 468, badge: getImage("Dori"), @@ -1522,18 +1522,18 @@ export default { genre: "Character", config: [ - {"default":false,"name":"hp_below50","title":1239,"type":"bool"}, + {"default":false,"name":"hp_below50","title":1244,"type":"bool"}, - {"default":true,"name":"energy_below50","title":231,"type":"bool"}, + {"default":true,"name":"energy_below50","title":232,"type":"bool"}, ], }, "NilouTalent1": { name: "NilouTalent1", - nameLocale: 521, + nameLocale: 522, - description: 457, + description: 458, badge: getImage("Nilou"), @@ -1546,9 +1546,9 @@ export default { "NilouTalent2": { name: "NilouTalent2", - nameLocale: 522, + nameLocale: 523, - description: 447, + description: 448, badge: getImage("Nilou"), @@ -1556,16 +1556,16 @@ export default { genre: "Character", config: [ - {"default":60000.0,"name":"hp","title":524,"type":"floatInput"}, + {"default":60000.0,"name":"hp","title":525,"type":"floatInput"}, ], }, "CandaceQ": { name: "CandaceQ", - nameLocale: 436, + nameLocale: 437, - description: 1515, + description: 1523, badge: getImage("Candace"), @@ -1578,9 +1578,9 @@ export default { "CandaceTalent2": { name: "CandaceTalent2", - nameLocale: 435, + nameLocale: 436, - description: 455, + description: 456, badge: getImage("Candace"), @@ -1588,16 +1588,16 @@ export default { genre: "Character", config: [ - {"default":30000.0,"name":"hp","title":437,"type":"floatInput"}, + {"default":30000.0,"name":"hp","title":438,"type":"floatInput"}, ], }, "NahidaTalent1": { name: "NahidaTalent1", - nameLocale: 1362, + nameLocale: 1367, - description: 779, + description: 781, 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":1687,"type":"float"}, + {"default":1000.0,"max":3000.0,"min":0.0,"name":"max_em","title":1697,"type":"float"}, ], }, "FaruzanQ": { name: "FaruzanQ", - nameLocale: 1074, + nameLocale: 1078, - description: 1206, + description: 1211, badge: getImage("Faruzan"), @@ -1622,7 +1622,7 @@ export default { genre: "Character", config: [ - {"default":650,"max":1000,"min":0,"name":"base_atk","title":1075,"type":"int"}, + {"default":650,"max":1000,"min":0,"name":"base_atk","title":1079,"type":"int"}, {"default":10,"max":15,"min":1,"name":"q_level","title":18,"type":"int"}, @@ -1632,16 +1632,16 @@ export default { {"default":0.0,"max":1.0,"min":0.0,"name":"rate_talent2","title":20,"type":"float"}, - {"default":false,"name":"enable_c6","title":241,"type":"bool"}, + {"default":false,"name":"enable_c6","title":242,"type":"bool"}, ], }, "Mika": { name: "Mika", - nameLocale: 1353, + nameLocale: 1358, - description: 807, + description: 809, badge: getImage("Mika"), @@ -1651,16 +1651,16 @@ export default { {"default":3.0,"max":5.0,"min":0.0,"name":"stack_talent2","title":182,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate_c6","title":243,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate_c6","title":244,"type":"float"}, ], }, "KavehQ": { name: "KavehQ", - nameLocale: 339, + nameLocale: 340, - description: 1684, + description: 1694, badge: getImage("Kaveh"), @@ -1668,18 +1668,18 @@ export default { genre: "Character", config: [ - {"default":8,"max":15,"min":1,"name":"q_level","title":340,"type":"int"}, + {"default":8,"max":15,"min":1,"name":"q_level","title":341,"type":"int"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1049,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1053,"type":"float"}, ], }, "BaizhuTalent2": { name: "BaizhuTalent2", - nameLocale: 1273, + nameLocale: 1278, - description: 350, + description: 351, badge: getImage("Baizhuer"), @@ -1687,18 +1687,18 @@ export default { genre: "Character", config: [ - {"default":50000.0,"max":50000.0,"min":0.0,"name":"hp","title":1275,"type":"float"}, + {"default":50000.0,"max":50000.0,"min":0.0,"name":"hp","title":1280,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1049,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1053,"type":"float"}, ], }, "BaizhuC4": { name: "BaizhuC4", - nameLocale: 1274, + nameLocale: 1279, - description: 780, + description: 782, badge: getImage("Baizhuer"), @@ -1706,14 +1706,14 @@ export default { genre: "Character", config: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1049,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1053,"type":"float"}, ], }, "FreedomSworn": { name: "FreedomSworn", - nameLocale: 1418, + nameLocale: 1424, description: 22, @@ -1723,14 +1723,14 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1356,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1361,"type":"intInput"}, ], }, "SongOfBrokenPines": { name: "SongOfBrokenPines", - nameLocale: 1010, + nameLocale: 1014, description: 23, @@ -1740,16 +1740,16 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1356,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1361,"type":"intInput"}, ], }, "WolfsGravestone": { name: "WolfsGravestone", - nameLocale: 1183, + nameLocale: 1187, - description: 720, + description: 722, badge: getImageW("Claymore_Wolfmound"), @@ -1757,14 +1757,14 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1356,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1361,"type":"intInput"}, ], }, "ThrillingTalesOfDragonSlayers": { name: "ThrillingTalesOfDragonSlayers", - nameLocale: 1529, + nameLocale: 1537, description: 168, @@ -1774,16 +1774,16 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1356,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1361,"type":"intInput"}, ], }, "ElegyOfTheEnd": { name: "ElegyOfTheEnd", - nameLocale: 1368, + nameLocale: 1373, - description: 330, + description: 331, badge: getImageW("Bow_Widsith"), @@ -1791,16 +1791,16 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1356,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1361,"type":"intInput"}, ], }, "HakushinRing": { name: "HakushinRing", - nameLocale: 1280, + nameLocale: 1285, - description: 1036, + description: 1040, badge: getImageW("Catalyst_Bakufu"), @@ -1808,7 +1808,7 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1356,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1361,"type":"intInput"}, {"default":"Electro","name":"element","title":185,"type":"element8"}, @@ -1817,9 +1817,9 @@ export default { "SapwoodBlade": { name: "SapwoodBlade", - nameLocale: 345, + nameLocale: 346, - description: 687, + description: 689, badge: getImageW("Sword_Arakalari"), @@ -1827,7 +1827,7 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1356,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1361,"type":"intInput"}, {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":606,"type":"float"}, @@ -1836,9 +1836,9 @@ export default { "Moonpiercer": { name: "Moonpiercer", - nameLocale: 1549, + nameLocale: 1557, - description: 688, + description: 690, badge: getImageW("Pole_Arakalari"), @@ -1846,16 +1846,16 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1356,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1361,"type":"intInput"}, ], }, "XiphosMoonlight": { name: "XiphosMoonlight", - nameLocale: 1500, + nameLocale: 1508, - description: 1494, + description: 1502, badge: getImageW("Sword_Pleroma"), @@ -1863,16 +1863,16 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1356,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1361,"type":"intInput"}, - {"default":900.0,"name":"em","title":224,"type":"floatInput"}, + {"default":900.0,"name":"em","title":225,"type":"floatInput"}, ], }, "MakhairaAquamarine": { name: "MakhairaAquamarine", - nameLocale: 1201, + nameLocale: 1206, description: 31, @@ -1882,18 +1882,18 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1356,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1361,"type":"intInput"}, - {"default":900.0,"name":"em","title":224,"type":"floatInput"}, + {"default":900.0,"name":"em","title":225,"type":"floatInput"}, ], }, "KeyOfKhajNisut": { name: "KeyOfKhajNisut", - nameLocale: 431, + nameLocale: 432, - description: 570, + description: 571, badge: getImageW("Sword_Deshret"), @@ -1901,9 +1901,9 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1356,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1361,"type":"intInput"}, - {"default":20000.0,"name":"hp","title":1233,"type":"floatInput"}, + {"default":20000.0,"name":"hp","title":1238,"type":"floatInput"}, ], }, @@ -1912,7 +1912,7 @@ export default { name: "ResonancePyro2", nameLocale: 193, - description: 710, + description: 712, badge: ResonancePyro2_image, @@ -1927,7 +1927,7 @@ export default { name: "ResonanceCryo2", nameLocale: 194, - description: 705, + description: 707, badge: ResonanceCryo2_image, @@ -1944,7 +1944,7 @@ export default { name: "ResonanceGeo2", nameLocale: 191, - description: 680, + description: 682, badge: ResonanceGeo2_image, @@ -1952,9 +1952,9 @@ export default { genre: "Resonance", config: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate1","title":730,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate1","title":733,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate2","title":733,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate2","title":735,"type":"float"}, ], }, @@ -1963,7 +1963,7 @@ export default { name: "ResonanceHydro2", nameLocale: 192, - description: 1136, + description: 1140, badge: ResonanceHydro2_image, @@ -1978,7 +1978,7 @@ export default { name: "ResonanceDendro2", nameLocale: 195, - description: 225, + description: 226, badge: ResonanceDendro2_image, @@ -1986,18 +1986,18 @@ export default { genre: "Resonance", config: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate1","title":730,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate1","title":733,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate2","title":733,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate2","title":735,"type":"float"}, ], }, "Instructor4": { name: "Instructor4", - nameLocale: 740, + nameLocale: 742, - description: 1520, + description: 1528, badge: getImageA("UI_RelicIcon_10007_4"), @@ -2010,9 +2010,9 @@ export default { "NoblesseOblige4": { name: "NoblesseOblige4", - nameLocale: 799, + nameLocale: 801, - description: 775, + description: 777, badge: getImageA("UI_RelicIcon_15007_4"), @@ -2025,9 +2025,9 @@ export default { "ArchaicPetra4": { name: "ArchaicPetra4", - nameLocale: 634, + nameLocale: 636, - description: 1456, + description: 1462, badge: getImageA("UI_RelicIcon_15014_4"), @@ -2035,16 +2035,16 @@ export default { genre: "Artifact", config: [ - {"default":"Electro","name":"element","title":1371,"type":"element4"}, + {"default":"Electro","name":"element","title":1376,"type":"element4"}, ], }, "ViridescentVenerer4": { name: "ViridescentVenerer4", - nameLocale: 1391, + nameLocale: 1396, - description: 1028, + description: 1032, badge: getImageA("UI_RelicIcon_15002_4"), @@ -2052,14 +2052,14 @@ export default { genre: "Artifact", config: [ - {"default":"Electro","name":"element","title":654,"type":"element4"}, + {"default":"Electro","name":"element","title":656,"type":"element4"}, ], }, "TenacityOfTheMillelith4": { name: "TenacityOfTheMillelith4", - nameLocale: 328, + nameLocale: 329, description: 201, @@ -2074,7 +2074,7 @@ export default { "DeepwoodMemories4": { name: "DeepwoodMemories4", - nameLocale: 1105, + nameLocale: 1109, description: 207, diff --git a/src/assets/_gen_character.js b/src/assets/_gen_character.js index cb004636..cede1df2 100644 --- a/src/assets/_gen_character.js +++ b/src/assets/_gen_character.js @@ -294,7 +294,7 @@ export default { AetherAnemo: { name: "AetherAnemo", - nameLocale: 1342, + nameLocale: 1347, element: "Anemo", weapon: "Sword", star: 5, @@ -302,9 +302,9 @@ export default { // avatar: AetherAnemo_avatar, avatar: getName("PlayerBoy"), splash: AetherAnemo_splash, - skillName1: 839, - skillName2: 1768, - skillName3: 1767, + skillName1: 841, + skillName2: 1778, + skillName3: 1777, skillMap1: [ { index: 0, text: 50 }, @@ -313,43 +313,43 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 416 }, + { index: 3, text: 417 }, { index: 4, text: 140 }, - { index: 5, text: 1635 }, + { index: 5, text: 1645 }, - { index: 6, text: 1638 }, + { index: 6, text: 1648 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1805 }, + { index: 9, text: 1815 }, ], skillMap2: [ - { index: 10, text: 298 }, + { index: 10, text: 299 }, - { index: 11, text: 984 }, + { index: 11, text: 987 }, - { index: 12, text: 299 }, + { index: 12, text: 300 }, - { index: 13, text: 991 }, + { index: 13, text: 994 }, ], skillMap3: [ - { index: 14, text: 1835 }, + { index: 14, text: 1851 }, - { index: 15, text: 1714 }, + { index: 15, text: 1724 }, - { index: 18, text: 1713 }, + { index: 18, text: 1723 }, - { index: 17, text: 1715 }, + { index: 17, text: 1725 }, - { index: 16, text: 1712 }, + { index: 16, text: 1722 }, ], config: [ @@ -362,7 +362,7 @@ export default { Albedo: { name: "Albedo", - nameLocale: 1704, + nameLocale: 1714, element: "Geo", weapon: "Sword", star: 5, @@ -370,9 +370,9 @@ export default { // avatar: Albedo_avatar, avatar: getName("Albedo"), splash: Albedo_splash, - skillName1: 883, - skillName2: 297, - skillName3: 1538, + skillName1: 885, + skillName2: 298, + skillName3: 1546, skillMap1: [ { index: 0, text: 50 }, @@ -381,33 +381,33 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 416 }, + { index: 3, text: 417 }, { index: 4, text: 140 }, - { index: 5, text: 1634 }, + { index: 5, text: 1643 }, - { index: 6, text: 1637 }, + { index: 6, text: 1649 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1805 }, + { index: 9, text: 1815 }, ], skillMap2: [ - { index: 10, text: 662 }, + { index: 10, text: 664 }, - { index: 11, text: 301 }, + { index: 11, text: 302 }, ], skillMap3: [ - { index: 12, text: 1169 }, + { index: 12, text: 1174 }, - { index: 13, text: 1253 }, + { index: 13, text: 1258 }, ], config: [ @@ -420,7 +420,7 @@ export default { Alhaitham: { name: "Alhaitham", - nameLocale: 1410, + nameLocale: 1416, element: "Dendro", weapon: "Sword", star: 5, @@ -428,9 +428,9 @@ export default { // avatar: Alhaitham_avatar, avatar: getName("Alhatham"), splash: Alhaitham_splash, - skillName1: 858, - skillName2: 249, - skillName3: 1044, + skillName1: 860, + skillName2: 250, + skillName3: 1048, skillMap1: [ { index: 0, text: 50 }, @@ -441,24 +441,24 @@ export default { { index: 3, text: 74 }, - { index: 4, text: 416 }, + { index: 4, text: 417 }, { index: 5, text: 140 }, - { index: 6, text: 1634 }, + { index: 6, text: 1643 }, - { index: 7, text: 1637 }, + { index: 7, text: 1649 }, { index: 8, text: 83 }, { index: 9, text: 171 }, - { index: 10, text: 1805 }, + { index: 10, text: 1815 }, ], skillMap2: [ - { index: 11, text: 1343 }, + { index: 11, text: 1348 }, { index: 12, text: 2 }, @@ -469,28 +469,28 @@ export default { ], skillMap3: [ - { index: 15, text: 336 }, + { index: 15, text: 337 }, ], config: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"c2_stack","title":400,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"c2_stack","title":401,"type":"float"}, - {"default":0.0,"max":3.0,"min":0.0,"name":"c4_stack","title":402,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"c4_stack","title":403,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"c6_rate","title":406,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"c6_rate","title":407,"type":"float"}, ], configSkill: [ - {"default":true,"name":"under_e","title":1217,"type":"bool"}, + {"default":true,"name":"under_e","title":1222,"type":"bool"}, ], }, Aloy: { name: "Aloy", - nameLocale: 442, + nameLocale: 443, element: "Cryo", weapon: "Bow", star: 5, @@ -498,9 +498,9 @@ export default { // avatar: Aloy_avatar, avatar: getName("Aloy"), splash: Aloy_splash, - skillName1: 845, - skillName2: 263, - skillName3: 978, + skillName1: 847, + skillName2: 264, + skillName3: 981, skillMap1: [ { index: 0, text: 51 }, @@ -511,29 +511,29 @@ export default { { index: 3, text: 72 }, - { index: 4, text: 416 }, + { index: 4, text: 417 }, - { index: 5, text: 1287 }, + { index: 5, text: 1292 }, - { index: 6, text: 1129 }, + { index: 6, text: 1133 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1805 }, + { index: 9, text: 1815 }, ], skillMap2: [ - { index: 10, text: 262 }, + { index: 10, text: 263 }, - { index: 11, text: 273 }, + { index: 11, text: 274 }, ], skillMap3: [ - { index: 12, text: 662 }, + { index: 12, text: 664 }, ], config: [ @@ -541,14 +541,14 @@ export default { ], configSkill: [ - {"default":4,"max":4,"min":0,"name":"coil_count","title":1364,"type":"int"}, + {"default":4,"max":4,"min":0,"name":"coil_count","title":1369,"type":"int"}, ], }, Amber: { name: "Amber", - nameLocale: 539, + nameLocale: 540, element: "Pyro", weapon: "Bow", star: 4, @@ -556,9 +556,9 @@ export default { // avatar: Amber_avatar, avatar: getName("Ambor"), splash: Amber_splash, - skillName1: 871, - skillName2: 1171, - skillName3: 1349, + skillName1: 873, + skillName2: 1175, + skillName3: 1354, skillMap1: [ { index: 0, text: 50 }, @@ -567,31 +567,31 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 416 }, + { index: 3, text: 417 }, { index: 4, text: 140 }, - { index: 5, text: 1287 }, + { index: 5, text: 1292 }, - { index: 6, text: 1129 }, + { index: 6, text: 1133 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1805 }, + { index: 9, text: 1815 }, ], skillMap2: [ - { index: 10, text: 1173 }, + { index: 10, text: 1176 }, ], skillMap3: [ - { index: 11, text: 1350 }, + { index: 11, text: 1355 }, - { index: 12, text: 1351 }, + { index: 12, text: 1356 }, ], config: [ @@ -604,7 +604,7 @@ export default { AratakiItto: { name: "AratakiItto", - nameLocale: 1426, + nameLocale: 1432, element: "Geo", weapon: "Claymore", star: 5, @@ -612,9 +612,9 @@ export default { // avatar: AratakiItto_avatar, avatar: getName("Itto"), splash: AratakiItto_splash, - skillName1: 893, - skillName2: 1815, - skillName3: 996, + skillName1: 895, + skillName2: 1825, + skillName3: 999, skillMap1: [ { index: 0, text: 50 }, @@ -623,24 +623,24 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 416 }, + { index: 3, text: 417 }, - { index: 4, text: 1432 }, + { index: 4, text: 1438 }, - { index: 5, text: 1431 }, + { index: 5, text: 1437 }, - { index: 6, text: 586 }, + { index: 6, text: 587 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1805 }, + { index: 9, text: 1815 }, ], skillMap2: [ - { index: 10, text: 662 }, + { index: 10, text: 664 }, ], skillMap3: [ @@ -651,14 +651,14 @@ export default { ], configSkill: [ - {"default":true,"name":"after_q","title":452,"type":"bool"}, + {"default":true,"name":"after_q","title":453,"type":"bool"}, ], }, Baizhu: { name: "Baizhu", - nameLocale: 1272, + nameLocale: 1277, element: "Dendro", weapon: "Catalyst", star: 5, @@ -666,9 +666,9 @@ export default { // avatar: Baizhu_avatar, avatar: getName("Baizhuer"), splash: Baizhu_splash, - skillName1: 889, - skillName2: 508, - skillName3: 636, + skillName1: 891, + skillName2: 509, + skillName3: 638, skillMap1: [ { index: 0, text: 50 }, @@ -679,34 +679,34 @@ export default { { index: 3, text: 74 }, - { index: 4, text: 416 }, + { index: 4, text: 417 }, - { index: 5, text: 1632 }, + { index: 5, text: 1642 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1805 }, + { index: 8, text: 1815 }, ], skillMap2: [ - { index: 9, text: 662 }, + { index: 9, text: 664 }, - { index: 10, text: 1072 }, + { index: 10, text: 1077 }, ], skillMap3: [ - { index: 12, text: 1145 }, + { index: 12, text: 1149 }, - { index: 11, text: 793 }, + { index: 11, text: 795 }, ], config: [ - {"default":false,"name":"hp_below_50","title":433,"type":"bool"}, + {"default":false,"name":"hp_below_50","title":434,"type":"bool"}, ], configSkill: [ @@ -716,7 +716,7 @@ export default { Barbara: { name: "Barbara", - nameLocale: 1412, + nameLocale: 1418, element: "Hydro", weapon: "Catalyst", star: 4, @@ -724,9 +724,9 @@ export default { // avatar: Barbara_avatar, avatar: getName("Barbara"), splash: Barbara_splash, - skillName1: 853, - skillName2: 1130, - skillName3: 1674, + skillName1: 855, + skillName2: 1134, + skillName3: 1684, skillMap1: [ { index: 0, text: 50 }, @@ -735,29 +735,29 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 416 }, + { index: 3, text: 417 }, - { index: 4, text: 1632 }, + { index: 4, text: 1642 }, { index: 5, text: 83 }, { index: 6, text: 171 }, - { index: 7, text: 1805 }, + { index: 7, text: 1815 }, ], skillMap2: [ - { index: 8, text: 394 }, + { index: 8, text: 396 }, - { index: 10, text: 694 }, + { index: 10, text: 695 }, - { index: 9, text: 1058 }, + { index: 9, text: 1062 }, ], skillMap3: [ - { index: 11, text: 1073 }, + { index: 11, text: 1076 }, ], config: [ @@ -770,7 +770,7 @@ export default { Beidou: { name: "Beidou", - nameLocale: 318, + nameLocale: 319, element: "Electro", weapon: "Claymore", star: 4, @@ -778,9 +778,9 @@ export default { // avatar: Beidou_avatar, avatar: getName("Beidou"), splash: Beidou_splash, - skillName1: 842, - skillName2: 698, - skillName3: 749, + skillName1: 844, + skillName2: 700, + skillName3: 751, skillMap1: [ { index: 0, text: 50 }, @@ -789,24 +789,24 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 416 }, + { index: 3, text: 417 }, { index: 4, text: 140 }, - { index: 5, text: 1647 }, + { index: 5, text: 1657 }, - { index: 6, text: 1650 }, + { index: 6, text: 1660 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1805 }, + { index: 9, text: 1815 }, ], skillMap2: [ - { index: 10, text: 449 }, + { index: 10, text: 451 }, { index: 11, text: 47 }, @@ -815,9 +815,9 @@ export default { ], skillMap3: [ - { index: 13, text: 662 }, + { index: 13, text: 664 }, - { index: 14, text: 1673 }, + { index: 14, text: 1683 }, ], config: [ @@ -830,7 +830,7 @@ export default { Bennett: { name: "Bennett", - nameLocale: 1207, + nameLocale: 1212, element: "Pyro", weapon: "Sword", star: 4, @@ -838,9 +838,9 @@ export default { // avatar: Bennett_avatar, avatar: getName("Bennett"), splash: Bennett_splash, - skillName1: 836, - skillName2: 1161, - skillName3: 1388, + skillName1: 838, + skillName2: 1165, + skillName3: 1393, skillMap1: [ { index: 0, text: 50 }, @@ -849,24 +849,24 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 416 }, + { index: 3, text: 417 }, { index: 4, text: 140 }, - { index: 5, text: 1634 }, + { index: 5, text: 1643 }, - { index: 6, text: 1637 }, + { index: 6, text: 1649 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1805 }, + { index: 9, text: 1815 }, ], skillMap2: [ - { index: 10, text: 1149 }, + { index: 10, text: 1153 }, { index: 11, text: 58 }, @@ -876,14 +876,14 @@ export default { { index: 14, text: 129 }, - { index: 15, text: 1172 }, + { index: 15, text: 1177 }, ], skillMap3: [ - { index: 16, text: 662 }, + { index: 16, text: 664 }, - { index: 17, text: 691 }, + { index: 17, text: 693 }, ], config: [ @@ -896,7 +896,7 @@ export default { Candace: { name: "Candace", - nameLocale: 434, + nameLocale: 435, element: "Hydro", weapon: "Polearm", star: 4, @@ -904,9 +904,9 @@ export default { // avatar: Candace_avatar, avatar: getName("Candace"), splash: Candace_splash, - skillName1: 856, - skillName2: 429, - skillName3: 427, + skillName1: 858, + skillName2: 430, + skillName3: 428, skillMap1: [ { index: 0, text: 50 }, @@ -917,46 +917,46 @@ export default { { index: 3, text: 74 }, - { index: 4, text: 416 }, + { index: 4, text: 417 }, - { index: 5, text: 1632 }, + { index: 5, text: 1642 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1805 }, + { index: 8, text: 1815 }, ], skillMap2: [ { index: 9, text: 450 }, - { index: 10, text: 1468 }, + { index: 10, text: 1474 }, ], skillMap3: [ - { index: 11, text: 662 }, + { index: 11, text: 664 }, - { index: 12, text: 1057 }, + { index: 12, text: 1061 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"c2_rate","title":399,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"c2_rate","title":400,"type":"float"}, ], configSkill: [ - {"default":true,"name":"crown","title":1559,"type":"bool"}, + {"default":true,"name":"crown","title":1567,"type":"bool"}, ], }, Chongyun: { name: "Chongyun", - nameLocale: 1623, + nameLocale: 1633, element: "Cryo", weapon: "Claymore", star: 4, @@ -964,9 +964,9 @@ export default { // avatar: Chongyun_avatar, avatar: getName("Chongyun"), splash: Chongyun_splash, - skillName1: 861, - skillName2: 1143, - skillName3: 1142, + skillName1: 863, + skillName2: 1147, + skillName3: 1146, skillMap1: [ { index: 0, text: 50 }, @@ -975,27 +975,27 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 416 }, + { index: 3, text: 417 }, - { index: 4, text: 1647 }, + { index: 4, text: 1657 }, - { index: 5, text: 1650 }, + { index: 5, text: 1660 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1805 }, + { index: 8, text: 1815 }, ], skillMap2: [ - { index: 9, text: 662 }, + { index: 9, text: 664 }, ], skillMap3: [ - { index: 10, text: 662 }, + { index: 10, text: 664 }, ], config: [ @@ -1008,7 +1008,7 @@ export default { Collei: { name: "Collei", - nameLocale: 1026, + nameLocale: 1030, element: "Dendro", weapon: "Bow", star: 4, @@ -1016,9 +1016,9 @@ export default { // avatar: Collei_avatar, avatar: getName("Collei"), splash: Collei_splash, - skillName1: 869, - skillName2: 685, - skillName3: 1194, + skillName1: 871, + skillName2: 687, + skillName3: 1199, skillMap1: [ { index: 0, text: 50 }, @@ -1027,34 +1027,34 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 416 }, + { index: 3, text: 417 }, - { index: 4, text: 1287 }, + { index: 4, text: 1292 }, - { index: 5, text: 1129 }, + { index: 5, text: 1133 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1805 }, + { index: 8, text: 1815 }, ], skillMap2: [ - { index: 9, text: 662 }, + { index: 9, text: 664 }, ], skillMap3: [ - { index: 10, text: 1170 }, + { index: 10, text: 1173 }, - { index: 11, text: 1572 }, + { index: 11, text: 1580 }, ], config: [ - {"default":false,"name":"background","title":454,"type":"bool"}, + {"default":false,"name":"background","title":455,"type":"bool"}, ], configSkill: [ @@ -1064,7 +1064,7 @@ export default { Cyno: { name: "Cyno", - nameLocale: 1557, + nameLocale: 1565, element: "Electro", weapon: "Polearm", star: 5, @@ -1072,9 +1072,9 @@ export default { // avatar: Cyno_avatar, avatar: getName("Cyno"), splash: Cyno_splash, - skillName1: 827, - skillName2: 1339, - skillName3: 428, + skillName1: 829, + skillName2: 1344, + skillName3: 429, skillMap1: [ { index: 0, text: 50 }, @@ -1083,42 +1083,42 @@ export default { { index: 2, text: 76 }, - { index: 3, text: 416 }, + { index: 3, text: 417 }, - { index: 4, text: 1632 }, + { index: 4, text: 1642 }, { index: 5, text: 83 }, { index: 6, text: 171 }, - { index: 7, text: 1805 }, + { index: 7, text: 1815 }, - { index: 11, text: 378 }, + { index: 11, text: 379 }, - { index: 12, text: 381 }, + { index: 12, text: 382 }, - { index: 13, text: 379 }, + { index: 13, text: 380 }, - { index: 14, text: 385 }, + { index: 14, text: 386 }, - { index: 15, text: 382 }, + { index: 15, text: 383 }, - { index: 16, text: 387 }, + { index: 16, text: 388 }, - { index: 17, text: 380 }, + { index: 17, text: 381 }, - { index: 18, text: 383 }, + { index: 18, text: 384 }, - { index: 19, text: 388 }, + { index: 19, text: 389 }, ], skillMap2: [ - { index: 8, text: 662 }, + { index: 8, text: 664 }, - { index: 9, text: 384 }, + { index: 9, text: 385 }, - { index: 10, text: 386 }, + { index: 10, text: 387 }, ], skillMap3: [ @@ -1126,21 +1126,21 @@ export default { ], config: [ - {"default":4.0,"max":5.0,"min":0.0,"name":"c2_stack","title":397,"type":"float"}, + {"default":4.0,"max":5.0,"min":0.0,"name":"c2_stack","title":398,"type":"float"}, - {"default":true,"name":"after_q","title":377,"type":"bool"}, + {"default":true,"name":"after_q","title":378,"type":"bool"}, ], configSkill: [ - {"default":true,"name":"under_judication","title":1518,"type":"bool"}, + {"default":true,"name":"under_judication","title":1526,"type":"bool"}, ], }, Dehya: { name: "Dehya", - nameLocale: 1604, + nameLocale: 1612, element: "Pyro", weapon: "Claymore", star: 5, @@ -1148,9 +1148,9 @@ export default { // avatar: Dehya_avatar, avatar: getName("Dehya"), splash: Dehya_splash, - skillName1: 848, - skillName2: 1167, - skillName3: 1147, + skillName1: 850, + skillName2: 1171, + skillName3: 1151, skillMap1: [ { index: 0, text: 50 }, @@ -1159,33 +1159,33 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 416 }, + { index: 3, text: 417 }, - { index: 4, text: 1647 }, + { index: 4, text: 1657 }, - { index: 5, text: 1650 }, + { index: 5, text: 1660 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1805 }, + { index: 8, text: 1815 }, ], skillMap2: [ - { index: 9, text: 275 }, + { index: 9, text: 276 }, - { index: 10, text: 304 }, + { index: 10, text: 305 }, - { index: 11, text: 1757 }, + { index: 11, text: 1767 }, ], skillMap3: [ - { index: 12, text: 1155 }, + { index: 12, text: 1159 }, - { index: 13, text: 1162 }, + { index: 13, text: 1166 }, ], config: [ @@ -1195,14 +1195,14 @@ export default { {"default":0.0,"max":1.0,"min":0.0,"name":"c2_rate","title":117,"type":"float"}, - {"default":3.5,"max":4.0,"min":0.0,"name":"c6_stack","title":244,"type":"float"}, + {"default":3.5,"max":4.0,"min":0.0,"name":"c6_stack","title":245,"type":"float"}, ], }, Diluc: { name: "Diluc", - nameLocale: 1598, + nameLocale: 1606, element: "Pyro", weapon: "Claymore", star: 5, @@ -1210,9 +1210,9 @@ export default { // avatar: Diluc_avatar, avatar: getName("Diluc"), splash: Diluc_splash, - skillName1: 857, - skillName2: 1611, - skillName3: 1826, + skillName1: 859, + skillName2: 1619, + skillName3: 1842, skillMap1: [ { index: 0, text: 50 }, @@ -1221,17 +1221,17 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 416 }, + { index: 3, text: 417 }, - { index: 4, text: 1647 }, + { index: 4, text: 1657 }, - { index: 5, text: 1650 }, + { index: 5, text: 1660 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1805 }, + { index: 8, text: 1815 }, ], skillMap2: [ @@ -1245,11 +1245,11 @@ export default { ], skillMap3: [ - { index: 12, text: 747 }, + { index: 12, text: 749 }, - { index: 13, text: 689 }, + { index: 13, text: 691 }, - { index: 14, text: 1174 }, + { index: 14, text: 1178 }, ], config: [ @@ -1257,14 +1257,14 @@ export default { ], configSkill: [ - {"default":true,"name":"pyro","title":814,"type":"bool"}, + {"default":true,"name":"pyro","title":816,"type":"bool"}, ], }, Diona: { name: "Diona", - nameLocale: 1600, + nameLocale: 1608, element: "Cryo", weapon: "Bow", star: 4, @@ -1272,9 +1272,9 @@ export default { // avatar: Diona_avatar, avatar: getName("Diona"), splash: Diona_splash, - skillName1: 866, - skillName2: 1193, - skillName3: 997, + skillName1: 868, + skillName2: 1198, + skillName3: 1000, skillMap1: [ { index: 0, text: 50 }, @@ -1283,33 +1283,33 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 416 }, + { index: 3, text: 417 }, { index: 4, text: 140 }, - { index: 5, text: 1287 }, + { index: 5, text: 1292 }, - { index: 6, text: 1129 }, + { index: 6, text: 1133 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1805 }, + { index: 9, text: 1815 }, ], skillMap2: [ - { index: 10, text: 1192 }, + { index: 10, text: 1197 }, ], skillMap3: [ - { index: 11, text: 662 }, + { index: 11, text: 664 }, - { index: 12, text: 1759 }, + { index: 12, text: 1769 }, - { index: 13, text: 692 }, + { index: 13, text: 696 }, ], config: [ @@ -1322,7 +1322,7 @@ export default { Dori: { name: "Dori", - nameLocale: 465, + nameLocale: 466, element: "Electro", weapon: "Claymore", star: 4, @@ -1330,9 +1330,9 @@ export default { // avatar: Dori_avatar, avatar: getName("Dori"), splash: Dori_splash, - skillName1: 837, - skillName2: 1670, - skillName3: 341, + skillName1: 839, + skillName2: 1680, + skillName3: 342, skillMap1: [ { index: 0, text: 50 }, @@ -1343,29 +1343,29 @@ export default { { index: 3, text: 72 }, - { index: 4, text: 1647 }, + { index: 4, text: 1657 }, - { index: 5, text: 1650 }, + { index: 5, text: 1660 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1805 }, + { index: 8, text: 1815 }, ], skillMap2: [ - { index: 9, text: 755 }, + { index: 9, text: 757 }, - { index: 10, text: 410 }, + { index: 10, text: 411 }, ], skillMap3: [ - { index: 11, text: 1596 }, + { index: 11, text: 1604 }, - { index: 12, text: 693 }, + { index: 12, text: 694 }, ], config: [ @@ -1388,9 +1388,9 @@ export default { // avatar: Eula_avatar, avatar: getName("Eula"), splash: Eula_splash, - skillName1: 882, - skillName2: 269, - skillName3: 283, + skillName1: 884, + skillName2: 270, + skillName3: 284, skillMap1: [ { index: 0, text: 50 }, @@ -1401,39 +1401,39 @@ export default { { index: 3, text: 74 }, - { index: 4, text: 416 }, + { index: 4, text: 417 }, { index: 5, text: 141 }, { index: 6, text: 142 }, - { index: 7, text: 1647 }, + { index: 7, text: 1657 }, - { index: 8, text: 1650 }, + { index: 8, text: 1660 }, { index: 9, text: 83 }, { index: 10, text: 171 }, - { index: 11, text: 1805 }, + { index: 11, text: 1815 }, ], skillMap2: [ - { index: 12, text: 1149 }, + { index: 12, text: 1153 }, - { index: 13, text: 1671 }, + { index: 13, text: 1681 }, - { index: 14, text: 268 }, + { index: 14, text: 269 }, - { index: 15, text: 1045 }, + { index: 15, text: 1049 }, ], skillMap3: [ - { index: 16, text: 662 }, + { index: 16, text: 664 }, - { index: 17, text: 234 }, + { index: 17, text: 235 }, ], config: [ @@ -1441,14 +1441,14 @@ export default { ], configSkill: [ - {"default":0,"max":30,"min":0,"name":"lightfall_stack","title":235,"type":"int"}, + {"default":0,"max":30,"min":0,"name":"lightfall_stack","title":236,"type":"int"}, ], }, Faruzan: { name: "Faruzan", - nameLocale: 1204, + nameLocale: 1209, element: "Anemo", weapon: "Bow", star: 4, @@ -1456,9 +1456,9 @@ export default { // avatar: Faruzan_avatar, avatar: getName("Faruzan"), splash: Faruzan_splash, - skillName1: 888, - skillName2: 1756, - skillName3: 677, + skillName1: 890, + skillName2: 1766, + skillName3: 679, skillMap1: [ { index: 0, text: 50 }, @@ -1467,29 +1467,29 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 416 }, + { index: 3, text: 417 }, - { index: 4, text: 1632 }, + { index: 4, text: 1642 }, - { index: 4, text: 1129 }, + { index: 4, text: 1133 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1805 }, + { index: 8, text: 1815 }, ], skillMap2: [ - { index: 9, text: 662 }, + { index: 9, text: 664 }, - { index: 10, text: 1766 }, + { index: 10, text: 1776 }, ], skillMap3: [ - { index: 11, text: 662 }, + { index: 11, text: 664 }, ], config: [ @@ -1506,7 +1506,7 @@ export default { Fischl: { name: "Fischl", - nameLocale: 1460, + nameLocale: 1466, element: "Electro", weapon: "Bow", star: 4, @@ -1514,9 +1514,9 @@ export default { // avatar: Fischl_avatar, avatar: getName("Fischl"), splash: Fischl_splash, - skillName1: 876, - skillName2: 474, - skillName3: 1409, + skillName1: 878, + skillName2: 475, + skillName3: 1415, skillMap1: [ { index: 0, text: 50 }, @@ -1525,31 +1525,31 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 416 }, + { index: 3, text: 417 }, { index: 4, text: 140 }, - { index: 5, text: 1287 }, + { index: 5, text: 1292 }, - { index: 6, text: 1129 }, + { index: 6, text: 1133 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1805 }, + { index: 9, text: 1815 }, ], skillMap2: [ - { index: 10, text: 517 }, + { index: 10, text: 518 }, - { index: 11, text: 364 }, + { index: 11, text: 365 }, ], skillMap3: [ - { index: 12, text: 1464 }, + { index: 12, text: 1470 }, ], config: [ @@ -1562,7 +1562,7 @@ export default { Freminet: { name: "Freminet", - nameLocale: 1458, + nameLocale: 1464, element: "Cryo", weapon: "Claymore", star: 4, @@ -1570,9 +1570,9 @@ export default { // avatar: Freminet_avatar, avatar: getName("Freminet"), splash: Freminet_splash, - skillName1: 854, - skillName2: 1094, - skillName3: 1191, + skillName1: 856, + skillName2: 1098, + skillName3: 1196, skillMap1: [ { index: 0, text: 50 }, @@ -1581,26 +1581,26 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 416 }, + { index: 3, text: 417 }, - { index: 4, text: 1647 }, + { index: 4, text: 1657 }, - { index: 5, text: 1650 }, + { index: 5, text: 1660 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1805 }, + { index: 8, text: 1815 }, ], skillMap2: [ { index: 9, text: 82 }, - { index: 10, text: 1750 }, + { index: 10, text: 1760 }, - { index: 11, text: 1723 }, + { index: 11, text: 1733 }, { index: 12, text: 62 }, @@ -1614,35 +1614,35 @@ export default { { index: 17, text: 81 }, - { index: 18, text: 424 }, + { index: 18, text: 425 }, - { index: 19, text: 1144 }, + { index: 19, text: 1148 }, - { index: 21, text: 1751 }, + { index: 21, text: 1761 }, ], skillMap3: [ - { index: 20, text: 662 }, + { index: 20, text: 664 }, ], config: [ - {"default":0.0,"max":2.0,"min":0.0,"name":"c4_stack","title":404,"type":"float"}, + {"default":0.0,"max":2.0,"min":0.0,"name":"c4_stack","title":405,"type":"float"}, - {"default":0.0,"max":3.0,"min":0.0,"name":"c6_stack","title":405,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"c6_stack","title":406,"type":"float"}, ], configSkill: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":501,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":502,"type":"float"}, ], }, Ganyu: { name: "Ganyu", - nameLocale: 1227, + nameLocale: 1232, element: "Cryo", weapon: "Bow", star: 5, @@ -1650,9 +1650,9 @@ export default { // avatar: Ganyu_avatar, avatar: getName("Ganyu"), splash: Ganyu_splash, - skillName1: 855, - skillName2: 578, - skillName3: 1717, + skillName1: 857, + skillName2: 579, + skillName3: 1727, skillMap1: [ { index: 0, text: 50 }, @@ -1661,45 +1661,45 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 416 }, + { index: 3, text: 417 }, { index: 4, text: 140 }, - { index: 5, text: 246 }, + { index: 5, text: 247 }, - { index: 6, text: 1287 }, + { index: 6, text: 1292 }, - { index: 7, text: 61 }, + { index: 7, text: 60 }, - { index: 8, text: 1749 }, + { index: 8, text: 1759 }, - { index: 9, text: 1748 }, + { index: 9, text: 1758 }, { index: 10, text: 83 }, { index: 11, text: 171 }, - { index: 12, text: 1805 }, + { index: 12, text: 1815 }, ], skillMap2: [ - { index: 13, text: 662 }, + { index: 13, text: 664 }, ], skillMap3: [ - { index: 14, text: 267 }, + { index: 14, text: 268 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":495,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":496,"type":"float"}, ], configSkill: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"talent1_rate","title":493,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent1_rate","title":494,"type":"float"}, ], }, @@ -1714,9 +1714,9 @@ export default { // avatar: Gorou_avatar, avatar: getName("Gorou"), splash: Gorou_splash, - skillName1: 892, - skillName2: 1177, - skillName3: 252, + skillName1: 894, + skillName2: 1181, + skillName3: 253, skillMap1: [ { index: 0, text: 50 }, @@ -1725,29 +1725,29 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 416 }, + { index: 3, text: 417 }, - { index: 4, text: 1287 }, + { index: 4, text: 1292 }, - { index: 5, text: 1129 }, + { index: 5, text: 1133 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1805 }, + { index: 8, text: 1815 }, ], skillMap2: [ - { index: 9, text: 662 }, + { index: 9, text: 664 }, ], skillMap3: [ - { index: 10, text: 662 }, + { index: 10, text: 664 }, - { index: 11, text: 581 }, + { index: 11, text: 582 }, ], config: [ @@ -1760,7 +1760,7 @@ export default { HuTao: { name: "HuTao", - nameLocale: 1404, + nameLocale: 1410, element: "Pyro", weapon: "Polearm", star: 5, @@ -1768,9 +1768,9 @@ export default { // avatar: HuTao_avatar, avatar: getName("Hutao"), splash: HuTao_splash, - skillName1: 841, - skillName2: 1474, - skillName3: 541, + skillName1: 843, + skillName2: 1480, + skillName3: 542, skillMap1: [ { index: 0, text: 50 }, @@ -1779,50 +1779,50 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 416 }, + { index: 3, text: 417 }, { index: 4, text: 141 }, { index: 5, text: 142 }, - { index: 6, text: 246 }, + { index: 6, text: 247 }, - { index: 7, text: 1632 }, + { index: 7, text: 1642 }, { index: 8, text: 83 }, { index: 9, text: 171 }, - { index: 10, text: 1805 }, + { index: 10, text: 1815 }, ], skillMap2: [ - { index: 11, text: 1477 }, + { index: 11, text: 1483 }, ], skillMap3: [ - { index: 12, text: 662 }, + { index: 12, text: 664 }, { index: 13, text: 172 }, ], config: [ - {"default":true,"name":"le_50","title":1239,"type":"bool"}, + {"default":true,"name":"le_50","title":1244,"type":"bool"}, ], configSkill: [ - {"default":true,"name":"after_e","title":623,"type":"bool"}, + {"default":true,"name":"after_e","title":625,"type":"bool"}, ], }, Jean: { name: "Jean", - nameLocale: 1220, + nameLocale: 1225, element: "Anemo", weapon: "Sword", star: 5, @@ -1830,9 +1830,9 @@ export default { // avatar: Jean_avatar, avatar: getName("Qin"), splash: Jean_splash, - skillName1: 880, - skillName2: 1765, - skillName3: 1466, + skillName1: 882, + skillName2: 1775, + skillName3: 1472, skillMap1: [ { index: 0, text: 50 }, @@ -1841,33 +1841,33 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 416 }, + { index: 3, text: 417 }, { index: 4, text: 140 }, - { index: 5, text: 1632 }, + { index: 5, text: 1642 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1805 }, + { index: 8, text: 1815 }, ], skillMap2: [ - { index: 9, text: 662 }, + { index: 9, text: 664 }, ], skillMap3: [ - { index: 10, text: 1169 }, + { index: 10, text: 1174 }, - { index: 11, text: 288 }, + { index: 11, text: 289 }, - { index: 12, text: 1758 }, + { index: 12, text: 1768 }, - { index: 13, text: 690 }, + { index: 13, text: 692 }, ], config: [ @@ -1880,7 +1880,7 @@ export default { KaedeharaKazuha: { name: "KaedeharaKazuha", - nameLocale: 1014, + nameLocale: 1018, element: "Anemo", weapon: "Sword", star: 5, @@ -1888,8 +1888,8 @@ export default { // avatar: KaedeharaKazuha_avatar, avatar: getName("Kazuha"), splash: KaedeharaKazuha_splash, - skillName1: 846, - skillName2: 331, + skillName1: 848, + skillName2: 332, skillName3: 67, skillMap1: [ @@ -1901,19 +1901,19 @@ export default { { index: 3, text: 74 }, - { index: 4, text: 416 }, + { index: 4, text: 417 }, { index: 5, text: 143 }, - { index: 6, text: 1633 }, + { index: 6, text: 1644 }, - { index: 6, text: 1640 }, + { index: 6, text: 1647 }, { index: 8, text: 83 }, { index: 9, text: 171 }, - { index: 10, text: 1805 }, + { index: 10, text: 1815 }, ], skillMap2: [ @@ -1932,24 +1932,24 @@ export default { { index: 17, text: 115 }, - { index: 18, text: 1150 }, + { index: 18, text: 1154 }, - { index: 19, text: 1672 }, + { index: 19, text: 1682 }, ], skillMap3: [ - { index: 20, text: 747 }, + { index: 20, text: 749 }, - { index: 21, text: 689 }, + { index: 21, text: 691 }, - { index: 22, text: 1714 }, + { index: 22, text: 1724 }, - { index: 23, text: 1713 }, + { index: 23, text: 1723 }, - { index: 24, text: 1712 }, + { index: 24, text: 1722 }, - { index: 25, text: 1715 }, + { index: 25, text: 1725 }, ], config: [ @@ -1957,14 +1957,14 @@ export default { ], configSkill: [ - {"default":false,"name":"after_e_or_q","title":245,"type":"bool"}, + {"default":false,"name":"after_e_or_q","title":246,"type":"bool"}, ], }, Kaeya: { name: "Kaeya", - nameLocale: 286, + nameLocale: 287, element: "Cryo", weapon: "Sword", star: 4, @@ -1972,9 +1972,9 @@ export default { // avatar: Kaeya_avatar, avatar: getName("Kaeya"), splash: Kaeya_splash, - skillName1: 831, - skillName2: 1753, - skillName3: 278, + skillName1: 833, + skillName2: 1763, + skillName3: 279, skillMap1: [ { index: 0, text: 50 }, @@ -1983,29 +1983,29 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 416 }, + { index: 3, text: 417 }, { index: 4, text: 140 }, - { index: 5, text: 1634 }, + { index: 5, text: 1643 }, - { index: 6, text: 1637 }, + { index: 6, text: 1649 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1805 }, + { index: 9, text: 1815 }, ], skillMap2: [ - { index: 10, text: 662 }, + { index: 10, text: 664 }, ], skillMap3: [ - { index: 11, text: 662 }, + { index: 11, text: 664 }, ], config: [ @@ -2018,7 +2018,7 @@ export default { KamisatoAyaka: { name: "KamisatoAyaka", - nameLocale: 1321, + nameLocale: 1326, element: "Cryo", weapon: "Sword", star: 5, @@ -2026,9 +2026,9 @@ export default { // avatar: KamisatoAyaka_avatar, avatar: getName("Ayaka"), splash: KamisatoAyaka_splash, - skillName1: 872, - skillName2: 1311, - skillName3: 1314, + skillName1: 874, + skillName2: 1316, + skillName3: 1319, skillMap1: [ { index: 0, text: 50 }, @@ -2037,50 +2037,50 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 422 }, + { index: 3, text: 423 }, { index: 5, text: 140 }, - { index: 6, text: 1642 }, + { index: 6, text: 1652 }, { index: 8, text: 83 }, { index: 9, text: 171 }, - { index: 10, text: 1805 }, + { index: 10, text: 1815 }, ], skillMap2: [ - { index: 11, text: 662 }, + { index: 11, text: 664 }, ], skillMap3: [ - { index: 12, text: 295 }, + { index: 12, text: 296 }, - { index: 13, text: 1377 }, + { index: 13, text: 1382 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"talent1_rate","title":496,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent1_rate","title":497,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":497,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":498,"type":"float"}, ], configSkill: [ - {"default":true,"name":"after_dash","title":1315,"type":"bool"}, + {"default":true,"name":"after_dash","title":1320,"type":"bool"}, - {"default":false,"name":"use_c6","title":242,"type":"bool"}, + {"default":false,"name":"use_c6","title":243,"type":"bool"}, ], }, KamisatoAyato: { name: "KamisatoAyato", - nameLocale: 1316, + nameLocale: 1321, element: "Hydro", weapon: "Sword", star: 5, @@ -2088,9 +2088,9 @@ export default { // avatar: KamisatoAyato_avatar, avatar: getName("Ayato"), splash: KamisatoAyato_splash, - skillName1: 873, - skillName2: 1313, - skillName3: 1312, + skillName1: 875, + skillName2: 1318, + skillName3: 1317, skillMap1: [ { index: 0, text: 50 }, @@ -2099,17 +2099,17 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 417 }, + { index: 3, text: 418 }, { index: 4, text: 140 }, - { index: 5, text: 1632 }, + { index: 5, text: 1642 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1805 }, + { index: 8, text: 1815 }, ], skillMap2: [ @@ -2120,12 +2120,12 @@ export default { { index: 11, text: 79 }, - { index: 12, text: 1055 }, + { index: 12, text: 1059 }, ], skillMap3: [ - { index: 13, text: 1059 }, + { index: 13, text: 1063 }, ], config: [ @@ -2135,14 +2135,14 @@ export default { {"default":4,"max":5,"min":0,"name":"e_stack","title":32,"type":"int"}, - {"default":true,"name":"in_q","title":453,"type":"bool"}, + {"default":true,"name":"in_q","title":454,"type":"bool"}, ], }, Kaveh: { name: "Kaveh", - nameLocale: 338, + nameLocale: 339, element: "Dendro", weapon: "Claymore", star: 4, @@ -2150,9 +2150,9 @@ export default { // avatar: Kaveh_avatar, avatar: getName("Kaveh"), splash: Kaveh_splash, - skillName1: 852, - skillName2: 1270, - skillName3: 1359, + skillName1: 854, + skillName2: 1275, + skillName3: 1364, skillMap1: [ { index: 0, text: 50 }, @@ -2161,34 +2161,34 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 416 }, + { index: 3, text: 417 }, - { index: 4, text: 1647 }, + { index: 4, text: 1657 }, - { index: 5, text: 1650 }, + { index: 5, text: 1660 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1805 }, + { index: 8, text: 1815 }, ], skillMap2: [ - { index: 9, text: 662 }, + { index: 9, text: 664 }, ], skillMap3: [ - { index: 10, text: 662 }, + { index: 10, text: 664 }, ], config: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"talent2_stack","title":498,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"talent2_stack","title":499,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"c2_rate","title":401,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"c2_rate","title":402,"type":"float"}, ], configSkill: [ @@ -2200,7 +2200,7 @@ export default { Keqing: { name: "Keqing", - nameLocale: 302, + nameLocale: 303, element: "Electro", weapon: "Sword", star: 5, @@ -2208,9 +2208,9 @@ export default { // avatar: Keqing_avatar, avatar: getName("Keqing"), splash: Keqing_splash, - skillName1: 829, - skillName2: 802, - skillName3: 490, + skillName1: 831, + skillName2: 804, + skillName3: 491, skillMap1: [ { index: 0, text: 50 }, @@ -2219,44 +2219,44 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 418 }, + { index: 3, text: 419 }, - { index: 4, text: 419 }, + { index: 4, text: 420 }, { index: 5, text: 140 }, - { index: 6, text: 1634 }, + { index: 6, text: 1643 }, - { index: 7, text: 1637 }, + { index: 7, text: 1649 }, { index: 8, text: 83 }, { index: 9, text: 171 }, - { index: 10, text: 1805 }, + { index: 10, text: 1815 }, ], skillMap2: [ - { index: 11, text: 1731 }, + { index: 11, text: 1741 }, - { index: 12, text: 747 }, + { index: 12, text: 749 }, - { index: 13, text: 1730 }, + { index: 13, text: 1740 }, ], skillMap3: [ - { index: 15, text: 662 }, + { index: 15, text: 664 }, - { index: 16, text: 1597 }, + { index: 16, text: 1605 }, - { index: 18, text: 981 }, + { index: 18, text: 984 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":502,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":503,"type":"float"}, ], configSkill: [ @@ -2268,7 +2268,7 @@ export default { Klee: { name: "Klee", - nameLocale: 365, + nameLocale: 366, element: "Pyro", weapon: "Catalyst", star: 5, @@ -2276,9 +2276,9 @@ export default { // avatar: Klee_avatar, avatar: getName("Klee"), splash: Klee_splash, - skillName1: 868, - skillName2: 1574, - skillName3: 1579, + skillName1: 870, + skillName2: 1582, + skillName3: 1587, skillMap1: [ { index: 0, text: 50 }, @@ -2287,27 +2287,27 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 1632 }, + { index: 3, text: 1642 }, - { index: 4, text: 1643 }, + { index: 4, text: 1653 }, { index: 5, text: 83 }, { index: 6, text: 171 }, - { index: 7, text: 1805 }, + { index: 7, text: 1815 }, ], skillMap2: [ - { index: 8, text: 1575 }, + { index: 8, text: 1583 }, - { index: 9, text: 1539 }, + { index: 9, text: 1547 }, ], skillMap3: [ - { index: 10, text: 1580 }, + { index: 10, text: 1588 }, ], config: [ @@ -2328,9 +2328,9 @@ export default { // avatar: KujouSara_avatar, avatar: getName("Sara"), splash: KujouSara_splash, - skillName1: 894, - skillName2: 1817, - skillName3: 1166, + skillName1: 896, + skillName2: 1827, + skillName3: 1170, skillMap1: [ { index: 0, text: 50 }, @@ -2339,31 +2339,31 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 416 }, + { index: 3, text: 417 }, { index: 4, text: 140 }, - { index: 5, text: 1287 }, + { index: 5, text: 1292 }, - { index: 6, text: 1129 }, + { index: 6, text: 1133 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1805 }, + { index: 9, text: 1815 }, ], skillMap2: [ - { index: 10, text: 481 }, + { index: 10, text: 482 }, ], skillMap3: [ - { index: 11, text: 482 }, + { index: 11, text: 483 }, - { index: 12, text: 483 }, + { index: 12, text: 484 }, ], config: [ @@ -2384,9 +2384,9 @@ export default { // avatar: KukiShinobu_avatar, avatar: getName("Shinobu"), splash: KukiShinobu_splash, - skillName1: 844, - skillName2: 1571, - skillName3: 624, + skillName1: 846, + skillName2: 1579, + skillName3: 626, skillMap1: [ { index: 0, text: 50 }, @@ -2395,44 +2395,44 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 416 }, + { index: 3, text: 417 }, - { index: 4, text: 1634 }, + { index: 4, text: 1643 }, - { index: 5, text: 1637 }, + { index: 5, text: 1649 }, - { index: 6, text: 1632 }, + { index: 6, text: 1642 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1805 }, + { index: 9, text: 1815 }, ], skillMap2: [ - { index: 10, text: 662 }, + { index: 10, text: 664 }, - { index: 11, text: 1570 }, + { index: 11, text: 1578 }, - { index: 12, text: 1569 }, + { index: 12, text: 1577 }, ], skillMap3: [ - { index: 13, text: 337 }, + { index: 13, text: 338 }, - { index: 14, text: 628 }, + { index: 14, text: 630 }, - { index: 15, text: 629 }, + { index: 15, text: 631 }, ], config: [ - {"default":true,"name":"hp_le_50","title":1238,"type":"bool"}, + {"default":true,"name":"hp_le_50","title":1243,"type":"bool"}, - {"default":false,"name":"use_c6","title":376,"type":"bool"}, + {"default":false,"name":"use_c6","title":377,"type":"bool"}, ], configSkill: [ @@ -2442,7 +2442,7 @@ export default { Layla: { name: "Layla", - nameLocale: 1440, + nameLocale: 1446, element: "Cryo", weapon: "Sword", star: 4, @@ -2450,9 +2450,9 @@ export default { // avatar: Layla_avatar, avatar: getName("Layla"), splash: Layla_splash, - skillName1: 864, - skillName2: 441, - skillName3: 803, + skillName1: 866, + skillName2: 442, + skillName3: 805, skillMap1: [ { index: 0, text: 50 }, @@ -2461,27 +2461,27 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 1634 }, + { index: 3, text: 1643 }, - { index: 4, text: 1637 }, + { index: 4, text: 1649 }, { index: 5, text: 83 }, { index: 6, text: 171 }, - { index: 7, text: 1805 }, + { index: 7, text: 1815 }, ], skillMap2: [ - { index: 8, text: 662 }, + { index: 8, text: 664 }, - { index: 9, text: 1790 }, + { index: 9, text: 1800 }, ], skillMap3: [ - { index: 10, text: 800 }, + { index: 10, text: 802 }, ], config: [ @@ -2502,9 +2502,9 @@ export default { // avatar: Lisa_avatar, avatar: getName("Lisa"), splash: Lisa_splash, - skillName1: 849, - skillName2: 1422, - skillName3: 1470, + skillName1: 851, + skillName2: 1428, + skillName3: 1476, skillMap1: [ { index: 0, text: 50 }, @@ -2513,22 +2513,22 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 416 }, + { index: 3, text: 417 }, - { index: 4, text: 1632 }, + { index: 4, text: 1642 }, { index: 5, text: 83 }, { index: 6, text: 171 }, - { index: 7, text: 1805 }, + { index: 7, text: 1815 }, ], skillMap2: [ - { index: 8, text: 1149 }, + { index: 8, text: 1153 }, - { index: 9, text: 791 }, + { index: 9, text: 793 }, { index: 10, text: 48 }, @@ -2539,7 +2539,7 @@ export default { ], skillMap3: [ - { index: 13, text: 1729 }, + { index: 13, text: 1739 }, ], config: [ @@ -2552,7 +2552,7 @@ export default { Lynette: { name: "Lynette", - nameLocale: 1219, + nameLocale: 1224, element: "Anemo", weapon: "Sword", star: 4, @@ -2560,9 +2560,9 @@ export default { // avatar: Lynette_avatar, avatar: getName("Lynette"), splash: Lynette_splash, - skillName1: 885, - skillName2: 1544, - skillName3: 1814, + skillName1: 887, + skillName2: 1552, + skillName3: 1824, skillMap1: [ { index: 0, text: 50 }, @@ -2573,52 +2573,52 @@ export default { { index: 3, text: 74 }, - { index: 4, text: 416 }, + { index: 4, text: 417 }, - { index: 5, text: 1634 }, + { index: 5, text: 1643 }, - { index: 6, text: 1637 }, + { index: 6, text: 1649 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1805 }, + { index: 9, text: 1815 }, ], skillMap2: [ - { index: 10, text: 1543 }, + { index: 10, text: 1551 }, - { index: 11, text: 1092 }, + { index: 11, text: 1096 }, - { index: 12, text: 395 }, + { index: 12, text: 397 }, ], skillMap3: [ - { index: 13, text: 662 }, + { index: 13, text: 664 }, - { index: 14, text: 635 }, + { index: 14, text: 637 }, - { index: 15, text: 618 }, + { index: 15, text: 620 }, - { index: 16, text: 620 }, + { index: 16, text: 622 }, - { index: 17, text: 621 }, + { index: 17, text: 623 }, - { index: 18, text: 622 }, + { index: 18, text: 624 }, - { index: 19, text: 619 }, + { index: 19, text: 621 }, ], config: [ - {"default":0.5,"max":1.0,"min":0.0,"name":"talent1_rate","title":500,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"talent1_rate","title":501,"type":"float"}, - {"default":4,"max":4,"min":1,"name":"talent1_count","title":499,"type":"int"}, + {"default":4,"max":4,"min":1,"name":"talent1_count","title":500,"type":"int"}, - {"default":0.5,"max":1.0,"min":0.0,"name":"talent2_rate","title":505,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"talent2_rate","title":506,"type":"float"}, ], configSkill: [ @@ -2628,7 +2628,7 @@ export default { Lyney: { name: "Lyney", - nameLocale: 1012, + nameLocale: 1016, element: "Pyro", weapon: "Bow", star: 5, @@ -2636,9 +2636,9 @@ export default { // avatar: Lyney_avatar, avatar: getName("Lyney"), splash: Lyney_splash, - skillName1: 887, - skillName2: 1286, - skillName3: 477, + skillName1: 889, + skillName2: 1291, + skillName3: 478, skillMap1: [ { index: 0, text: 50 }, @@ -2647,35 +2647,35 @@ export default { { index: 2, text: 76 }, - { index: 3, text: 416 }, + { index: 3, text: 417 }, - { index: 4, text: 1287 }, + { index: 4, text: 1292 }, - { index: 5, text: 61 }, + { index: 5, text: 60 }, - { index: 6, text: 1720 }, + { index: 6, text: 1730 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1805 }, + { index: 9, text: 1815 }, - { index: 10, text: 1304 }, + { index: 10, text: 1309 }, - { index: 11, text: 1144 }, + { index: 11, text: 1148 }, ], skillMap2: [ - { index: 12, text: 662 }, + { index: 12, text: 664 }, ], skillMap3: [ - { index: 13, text: 662 }, + { index: 13, text: 664 }, - { index: 14, text: 614 }, + { index: 14, text: 615 }, ], config: [ @@ -2687,18 +2687,18 @@ export default { ], configSkill: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"prop_stack","title":1719,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"prop_stack","title":1729,"type":"float"}, - {"default":false,"name":"under_pyro","title":737,"type":"bool"}, + {"default":false,"name":"under_pyro","title":739,"type":"bool"}, - {"default":1,"max":3,"min":0,"name":"pyro_count","title":1688,"type":"int"}, + {"default":1,"max":3,"min":0,"name":"pyro_count","title":1698,"type":"int"}, ], }, Mona: { name: "Mona", - nameLocale: 1434, + nameLocale: 1440, element: "Hydro", weapon: "Catalyst", star: 5, @@ -2706,9 +2706,9 @@ export default { // avatar: Mona_avatar, avatar: getName("Mona"), splash: Mona_splash, - skillName1: 835, - skillName2: 1050, - skillName3: 801, + skillName1: 837, + skillName2: 1054, + skillName3: 803, skillMap1: [ { index: 0, text: 50 }, @@ -2717,27 +2717,27 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 416 }, + { index: 3, text: 417 }, - { index: 4, text: 1632 }, + { index: 4, text: 1642 }, { index: 5, text: 83 }, { index: 6, text: 171 }, - { index: 7, text: 1805 }, + { index: 7, text: 1815 }, ], skillMap2: [ - { index: 8, text: 689 }, + { index: 8, text: 691 }, - { index: 9, text: 1174 }, + { index: 9, text: 1178 }, ], skillMap3: [ - { index: 10, text: 1076 }, + { index: 10, text: 1080 }, ], config: [ @@ -2750,7 +2750,7 @@ export default { Nahida: { name: "Nahida", - nameLocale: 1361, + nameLocale: 1366, element: "Dendro", weapon: "Catalyst", star: 5, @@ -2758,9 +2758,9 @@ export default { // avatar: Nahida_avatar, avatar: getName("Nahida"), splash: Nahida_splash, - skillName1: 879, - skillName2: 646, - skillName3: 625, + skillName1: 881, + skillName2: 648, + skillName3: 627, skillMap1: [ { index: 0, text: 50 }, @@ -2769,24 +2769,24 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 416 }, + { index: 3, text: 417 }, - { index: 4, text: 1632 }, + { index: 4, text: 1642 }, { index: 5, text: 83 }, { index: 6, text: 171 }, - { index: 7, text: 1805 }, + { index: 7, text: 1815 }, ], skillMap2: [ - { index: 8, text: 1149 }, + { index: 8, text: 1153 }, - { index: 9, text: 1671 }, + { index: 9, text: 1681 }, - { index: 10, text: 1138 }, + { index: 10, text: 1142 }, ], skillMap3: [ @@ -2794,7 +2794,7 @@ export default { ], config: [ - {"default":4,"max":4,"min":0,"name":"c4_e_count","title":1837,"type":"int"}, + {"default":4,"max":4,"min":0,"name":"c4_e_count","title":1853,"type":"int"}, ], configSkill: [ @@ -2808,7 +2808,7 @@ export default { Nilou: { name: "Nilou", - nameLocale: 520, + nameLocale: 521, element: "Hydro", weapon: "Sword", star: 5, @@ -2816,9 +2816,9 @@ export default { // avatar: Nilou_avatar, avatar: getName("Nilou"), splash: Nilou_splash, - skillName1: 840, + skillName1: 842, skillName2: 66, - skillName3: 1096, + skillName3: 1100, skillMap1: [ { index: 0, text: 50 }, @@ -2827,39 +2827,39 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 1634 }, + { index: 3, text: 1643 }, - { index: 4, text: 1637 }, + { index: 4, text: 1649 }, { index: 5, text: 83 }, { index: 6, text: 171 }, - { index: 7, text: 1805 }, + { index: 7, text: 1815 }, ], skillMap2: [ - { index: 8, text: 662 }, + { index: 8, text: 664 }, - { index: 9, text: 305 }, + { index: 9, text: 306 }, - { index: 10, text: 786 }, + { index: 10, text: 788 }, - { index: 11, text: 306 }, + { index: 11, text: 307 }, - { index: 12, text: 787 }, + { index: 12, text: 789 }, - { index: 13, text: 1056 }, + { index: 13, text: 1060 }, - { index: 14, text: 1060 }, + { index: 14, text: 1064 }, ], skillMap3: [ - { index: 15, text: 662 }, + { index: 15, text: 664 }, - { index: 16, text: 1061 }, + { index: 16, text: 1065 }, ], config: [ @@ -2874,7 +2874,7 @@ export default { Ningguang: { name: "Ningguang", - nameLocale: 279, + nameLocale: 280, element: "Geo", weapon: "Catalyst", star: 4, @@ -2882,37 +2882,37 @@ export default { // avatar: Ningguang_avatar, avatar: getName("Ningguang"), splash: Ningguang_splash, - skillName1: 832, - skillName2: 1226, - skillName3: 479, + skillName1: 834, + skillName2: 1231, + skillName3: 480, skillMap1: [ - { index: 0, text: 908 }, + { index: 0, text: 911 }, - { index: 1, text: 1632 }, + { index: 1, text: 1642 }, - { index: 2, text: 804 }, + { index: 2, text: 806 }, { index: 3, text: 83 }, { index: 4, text: 171 }, - { index: 5, text: 1805 }, + { index: 5, text: 1815 }, ], skillMap2: [ - { index: 6, text: 662 }, + { index: 6, text: 664 }, ], skillMap3: [ - { index: 7, text: 1048 }, + { index: 7, text: 1052 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":492,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":493,"type":"float"}, ], configSkill: [ @@ -2922,7 +2922,7 @@ export default { Noelle: { name: "Noelle", - nameLocale: 1541, + nameLocale: 1549, element: "Geo", weapon: "Claymore", star: 4, @@ -2930,9 +2930,9 @@ export default { // avatar: Noelle_avatar, avatar: getName("Noel"), splash: Noelle_splash, - skillName1: 881, - skillName2: 678, - skillName3: 476, + skillName1: 883, + skillName2: 680, + skillName3: 477, skillMap1: [ { index: 0, text: 50 }, @@ -2941,31 +2941,31 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 416 }, + { index: 3, text: 417 }, - { index: 4, text: 1647 }, + { index: 4, text: 1657 }, - { index: 5, text: 1650 }, + { index: 5, text: 1660 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1805 }, + { index: 8, text: 1815 }, ], skillMap2: [ - { index: 9, text: 662 }, + { index: 9, text: 664 }, - { index: 10, text: 1072 }, + { index: 10, text: 1077 }, ], skillMap3: [ - { index: 11, text: 1169 }, + { index: 11, text: 1174 }, - { index: 12, text: 662 }, + { index: 12, text: 664 }, ], config: [ @@ -2980,7 +2980,7 @@ export default { Mika: { name: "Mika", - nameLocale: 1352, + nameLocale: 1357, element: "Cryo", weapon: "Polearm", star: 4, @@ -2988,9 +2988,9 @@ export default { // avatar: Mika_avatar, avatar: getName("Mika"), splash: Mika_splash, - skillName1: 884, - skillName2: 806, - skillName3: 1420, + skillName1: 886, + skillName2: 808, + skillName3: 1426, skillMap1: [ { index: 0, text: 50 }, @@ -2999,33 +2999,33 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 421 }, + { index: 3, text: 422 }, { index: 4, text: 140 }, - { index: 5, text: 1632 }, + { index: 5, text: 1642 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1805 }, + { index: 8, text: 1815 }, ], skillMap2: [ - { index: 9, text: 1752 }, + { index: 9, text: 1762 }, - { index: 10, text: 264 }, + { index: 10, text: 265 }, - { index: 11, text: 265 }, + { index: 11, text: 266 }, ], skillMap3: [ - { index: 12, text: 778 }, + { index: 12, text: 780 }, - { index: 13, text: 1820 }, + { index: 13, text: 1830 }, ], config: [ @@ -3046,7 +3046,7 @@ export default { // avatar: Qiqi_avatar, avatar: getName("Qiqi"), splash: Qiqi_splash, - skillName1: 830, + skillName1: 832, skillName2: 157, skillName3: 158, skillMap1: [ @@ -3059,39 +3059,39 @@ export default { { index: 3, text: 74 }, - { index: 4, text: 418 }, + { index: 4, text: 419 }, - { index: 5, text: 419 }, + { index: 5, text: 420 }, { index: 6, text: 140 }, - { index: 7, text: 1634 }, + { index: 7, text: 1643 }, - { index: 8, text: 1637 }, + { index: 8, text: 1649 }, { index: 9, text: 83 }, { index: 10, text: 171 }, - { index: 11, text: 1805 }, + { index: 11, text: 1815 }, ], skillMap2: [ - { index: 12, text: 662 }, + { index: 12, text: 664 }, - { index: 15, text: 557 }, + { index: 15, text: 558 }, - { index: 13, text: 396 }, + { index: 13, text: 395 }, - { index: 14, text: 694 }, + { index: 14, text: 695 }, ], skillMap3: [ - { index: 16, text: 662 }, + { index: 16, text: 664 }, - { index: 17, text: 1072 }, + { index: 17, text: 1077 }, ], config: [ @@ -3104,7 +3104,7 @@ export default { RaidenShogun: { name: "RaidenShogun", - nameLocale: 1738, + nameLocale: 1748, element: "Electro", weapon: "Polearm", star: 5, @@ -3112,9 +3112,9 @@ export default { // avatar: RaidenShogun_avatar, avatar: getName("Shougun"), splash: RaidenShogun_splash, - skillName1: 896, - skillName2: 1308, - skillName3: 516, + skillName1: 898, + skillName2: 1313, + skillName3: 517, skillMap1: [ { index: 0, text: 50 }, @@ -3123,31 +3123,31 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 418 }, + { index: 3, text: 419 }, - { index: 4, text: 419 }, + { index: 4, text: 420 }, { index: 5, text: 140 }, - { index: 6, text: 1632 }, + { index: 6, text: 1642 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1805 }, + { index: 9, text: 1815 }, ], skillMap2: [ - { index: 10, text: 662 }, + { index: 10, text: 664 }, - { index: 11, text: 335 }, + { index: 11, text: 336 }, ], skillMap3: [ - { index: 12, text: 1033 }, + { index: 12, text: 1037 }, { index: 13, text: 50 }, @@ -3155,21 +3155,21 @@ export default { { index: 15, text: 72 }, - { index: 16, text: 418 }, + { index: 16, text: 419 }, - { index: 17, text: 419 }, + { index: 17, text: 420 }, { index: 18, text: 140 }, - { index: 19, text: 1634 }, + { index: 19, text: 1643 }, - { index: 20, text: 1637 }, + { index: 20, text: 1649 }, { index: 21, text: 83 }, { index: 22, text: 171 }, - { index: 23, text: 1805 }, + { index: 23, text: 1815 }, ], config: [ @@ -3177,16 +3177,16 @@ export default { ], configSkill: [ - {"default":true,"name":"under_e","title":459,"type":"bool"}, + {"default":true,"name":"under_e","title":460,"type":"bool"}, - {"default":60,"max":60,"min":0,"name":"resolve_stack","title":1540,"type":"int"}, + {"default":60,"max":60,"min":0,"name":"resolve_stack","title":1548,"type":"int"}, ], }, Razor: { name: "Razor", - nameLocale: 1732, + nameLocale: 1742, element: "Electro", weapon: "Claymore", star: 4, @@ -3194,9 +3194,9 @@ export default { // avatar: Razor_avatar, avatar: getName("Razor"), splash: Razor_splash, - skillName1: 890, - skillName2: 300, - skillName3: 1737, + skillName1: 892, + skillName2: 301, + skillName3: 1747, skillMap1: [ { index: 0, text: 50 }, @@ -3205,44 +3205,44 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 416 }, + { index: 3, text: 417 }, - { index: 4, text: 1647 }, + { index: 4, text: 1657 }, - { index: 5, text: 1650 }, + { index: 5, text: 1660 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1805 }, + { index: 8, text: 1815 }, ], skillMap2: [ - { index: 9, text: 1152 }, + { index: 9, text: 1155 }, - { index: 10, text: 1672 }, + { index: 10, text: 1682 }, ], skillMap3: [ - { index: 11, text: 1169 }, + { index: 11, text: 1174 }, - { index: 12, text: 1184 }, + { index: 12, text: 1188 }, - { index: 13, text: 1186 }, + { index: 13, text: 1190 }, - { index: 14, text: 1185 }, + { index: 14, text: 1189 }, - { index: 15, text: 1187 }, + { index: 15, text: 1191 }, ], config: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"e_stack","title":1724,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"e_stack","title":1734,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_ratio","title":507,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_ratio","title":508,"type":"float"}, ], configSkill: [ @@ -3252,7 +3252,7 @@ export default { Rosaria: { name: "Rosaria", - nameLocale: 1380, + nameLocale: 1385, element: "Cryo", weapon: "Polearm", star: 4, @@ -3260,9 +3260,9 @@ export default { // avatar: Rosaria_avatar, avatar: getName("Rosaria"), splash: Rosaria_splash, - skillName1: 850, - skillName2: 415, - skillName3: 1365, + skillName1: 852, + skillName2: 416, + skillName3: 1370, skillMap1: [ { index: 0, text: 50 }, @@ -3271,40 +3271,40 @@ export default { { index: 2, text: 76 }, - { index: 3, text: 416 }, + { index: 3, text: 417 }, { index: 4, text: 141 }, { index: 5, text: 142 }, - { index: 6, text: 1632 }, + { index: 6, text: 1642 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1805 }, + { index: 9, text: 1815 }, ], skillMap2: [ - { index: 10, text: 664 }, + { index: 10, text: 666 }, - { index: 11, text: 666 }, + { index: 11, text: 668 }, ], skillMap3: [ - { index: 12, text: 664 }, + { index: 12, text: 666 }, - { index: 13, text: 666 }, + { index: 13, text: 668 }, - { index: 14, text: 266 }, + { index: 14, text: 267 }, ], config: [ - {"default":true,"name":"e_from_behind","title":604,"type":"bool"}, + {"default":true,"name":"e_from_behind","title":605,"type":"bool"}, ], configSkill: [ @@ -3314,7 +3314,7 @@ export default { SangonomiyaKokomi: { name: "SangonomiyaKokomi", - nameLocale: 1202, + nameLocale: 1207, element: "Hydro", weapon: "Catalyst", star: 5, @@ -3322,9 +3322,9 @@ export default { // avatar: SangonomiyaKokomi_avatar, avatar: getName("Kokomi"), splash: SangonomiyaKokomi_splash, - skillName1: 895, - skillName2: 1098, - skillName3: 1097, + skillName1: 897, + skillName2: 1102, + skillName3: 1101, skillMap1: [ { index: 0, text: 50 }, @@ -3333,27 +3333,27 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 1632 }, + { index: 3, text: 1642 }, { index: 4, text: 83 }, { index: 5, text: 171 }, - { index: 6, text: 1805 }, + { index: 6, text: 1815 }, ], skillMap2: [ - { index: 8, text: 1078 }, + { index: 8, text: 1082 }, - { index: 7, text: 1073 }, + { index: 7, text: 1076 }, ], skillMap3: [ - { index: 9, text: 662 }, + { index: 9, text: 664 }, - { index: 10, text: 394 }, + { index: 10, text: 396 }, ], config: [ @@ -3368,7 +3368,7 @@ export default { Sayu: { name: "Sayu", - nameLocale: 795, + nameLocale: 797, element: "Anemo", weapon: "Claymore", star: 4, @@ -3376,9 +3376,9 @@ export default { // avatar: Sayu_avatar, avatar: getName("Sayu"), splash: Sayu_splash, - skillName1: 843, - skillName2: 390, - skillName3: 389, + skillName1: 845, + skillName2: 391, + skillName3: 390, skillMap1: [ { index: 0, text: 50 }, @@ -3389,49 +3389,49 @@ export default { { index: 3, text: 74 }, - { index: 4, text: 416 }, + { index: 4, text: 417 }, - { index: 5, text: 1647 }, + { index: 5, text: 1657 }, - { index: 6, text: 1650 }, + { index: 6, text: 1660 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1805 }, + { index: 9, text: 1815 }, ], skillMap2: [ - { index: 10, text: 1773 }, + { index: 10, text: 1783 }, - { index: 11, text: 1774 }, + { index: 11, text: 1784 }, - { index: 12, text: 1775 }, + { index: 12, text: 1785 }, - { index: 13, text: 1782 }, + { index: 13, text: 1792 }, - { index: 16, text: 1781 }, + { index: 16, text: 1791 }, - { index: 15, text: 1780 }, + { index: 15, text: 1790 }, - { index: 14, text: 1783 }, + { index: 14, text: 1793 }, - { index: 17, text: 1778 }, + { index: 17, text: 1788 }, - { index: 20, text: 1777 }, + { index: 20, text: 1787 }, - { index: 19, text: 1776 }, + { index: 19, text: 1786 }, - { index: 18, text: 1779 }, + { index: 18, text: 1789 }, ], skillMap3: [ - { index: 21, text: 673 }, + { index: 21, text: 675 }, - { index: 22, text: 674 }, + { index: 22, text: 676 }, { index: 23, text: 84 }, @@ -3448,7 +3448,7 @@ export default { Shenhe: { name: "Shenhe", - nameLocale: 1257, + nameLocale: 1262, element: "Cryo", weapon: "Polearm", star: 5, @@ -3456,9 +3456,9 @@ export default { // avatar: Shenhe_avatar, avatar: getName("Shenhe"), splash: Shenhe_splash, - skillName1: 897, + skillName1: 899, skillName2: 161, - skillName3: 1309, + skillName3: 1314, skillMap1: [ { index: 0, text: 50 }, @@ -3467,33 +3467,33 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 418 }, + { index: 3, text: 419 }, - { index: 4, text: 419 }, + { index: 4, text: 420 }, { index: 5, text: 140 }, - { index: 6, text: 1632 }, + { index: 6, text: 1642 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1805 }, + { index: 9, text: 1815 }, ], skillMap2: [ - { index: 10, text: 1151 }, + { index: 10, text: 1156 }, - { index: 11, text: 1672 }, + { index: 11, text: 1682 }, ], skillMap3: [ - { index: 12, text: 662 }, + { index: 12, text: 664 }, - { index: 13, text: 689 }, + { index: 13, text: 691 }, ], config: [ @@ -3506,7 +3506,7 @@ export default { ShikanoinHeizou: { name: "ShikanoinHeizou", - nameLocale: 1821, + nameLocale: 1831, element: "Anemo", weapon: "Catalyst", star: 4, @@ -3514,9 +3514,9 @@ export default { // avatar: ShikanoinHeizou_avatar, avatar: getName("Heizo"), splash: ShikanoinHeizou_splash, - skillName1: 828, - skillName2: 317, - skillName3: 1403, + skillName1: 830, + skillName2: 318, + skillName3: 1409, skillMap1: [ { index: 0, text: 50 }, @@ -3525,49 +3525,49 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 418 }, + { index: 3, text: 419 }, - { index: 4, text: 419 }, + { index: 4, text: 420 }, - { index: 5, text: 420 }, + { index: 5, text: 421 }, - { index: 6, text: 416 }, + { index: 6, text: 417 }, { index: 7, text: 140 }, - { index: 8, text: 1632 }, + { index: 8, text: 1642 }, { index: 9, text: 83 }, { index: 10, text: 171 }, - { index: 11, text: 1805 }, + { index: 11, text: 1815 }, ], skillMap2: [ - { index: 12, text: 663 }, + { index: 12, text: 665 }, - { index: 13, text: 665 }, + { index: 13, text: 667 }, - { index: 14, text: 667 }, + { index: 14, text: 669 }, - { index: 15, text: 668 }, + { index: 15, text: 670 }, - { index: 16, text: 669 }, + { index: 16, text: 671 }, ], skillMap3: [ { index: 17, text: 86 }, - { index: 18, text: 1401 }, + { index: 18, text: 1407 }, - { index: 20, text: 1399 }, + { index: 20, text: 1405 }, - { index: 21, text: 1402 }, + { index: 21, text: 1408 }, - { index: 19, text: 1400 }, + { index: 19, text: 1406 }, ], config: [ @@ -3580,7 +3580,7 @@ export default { Sucrose: { name: "Sucrose", - nameLocale: 1288, + nameLocale: 1293, element: "Anemo", weapon: "Catalyst", star: 4, @@ -3588,9 +3588,9 @@ export default { // avatar: Sucrose_avatar, avatar: getName("Sucrose"), splash: Sucrose_splash, - skillName1: 874, - skillName2: 1769, - skillName3: 1337, + skillName1: 876, + skillName2: 1779, + skillName3: 1342, skillMap1: [ { index: 0, text: 50 }, @@ -3599,33 +3599,33 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 416 }, + { index: 3, text: 417 }, - { index: 4, text: 1632 }, + { index: 4, text: 1642 }, { index: 5, text: 83 }, { index: 6, text: 171 }, - { index: 7, text: 1805 }, + { index: 7, text: 1815 }, ], skillMap2: [ - { index: 8, text: 662 }, + { index: 8, text: 664 }, ], skillMap3: [ - { index: 9, text: 689 }, + { index: 9, text: 691 }, - { index: 10, text: 1714 }, + { index: 10, text: 1724 }, - { index: 11, text: 1713 }, + { index: 11, text: 1723 }, - { index: 13, text: 1712 }, + { index: 13, text: 1722 }, - { index: 12, text: 1715 }, + { index: 12, text: 1725 }, ], config: [ @@ -3638,7 +3638,7 @@ export default { Tartaglia: { name: "Tartaglia", - nameLocale: 1592, + nameLocale: 1600, element: "Hydro", weapon: "Bow", star: 5, @@ -3646,9 +3646,9 @@ export default { // avatar: Tartaglia_avatar, avatar: getName("Tartaglia"), splash: Tartaglia_splash, - skillName1: 851, - skillName2: 1816, - skillName3: 1011, + skillName1: 853, + skillName2: 1826, + skillName3: 1015, skillMap1: [ { index: 0, text: 50 }, @@ -3657,30 +3657,30 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 416 }, + { index: 3, text: 417 }, { index: 4, text: 140 }, - { index: 5, text: 246 }, + { index: 5, text: 247 }, - { index: 6, text: 1287 }, + { index: 6, text: 1292 }, - { index: 7, text: 1129 }, + { index: 7, text: 1133 }, - { index: 8, text: 753 }, + { index: 8, text: 755 }, - { index: 9, text: 752 }, + { index: 9, text: 754 }, { index: 10, text: 83 }, { index: 11, text: 171 }, - { index: 12, text: 1805 }, + { index: 12, text: 1815 }, ], skillMap2: [ - { index: 13, text: 1179 }, + { index: 13, text: 1183 }, { index: 14, text: 50 }, @@ -3688,28 +3688,28 @@ export default { { index: 16, text: 72 }, - { index: 17, text: 416 }, + { index: 17, text: 417 }, { index: 18, text: 140 }, - { index: 19, text: 247 }, + { index: 19, text: 248 }, - { index: 20, text: 248 }, + { index: 20, text: 249 }, - { index: 21, text: 1634 }, + { index: 21, text: 1643 }, - { index: 22, text: 1637 }, + { index: 22, text: 1649 }, - { index: 23, text: 750 }, + { index: 23, text: 752 }, ], skillMap3: [ - { index: 24, text: 671 }, + { index: 24, text: 673 }, - { index: 25, text: 672 }, + { index: 25, text: 674 }, - { index: 26, text: 751 }, + { index: 26, text: 753 }, ], config: [ @@ -3722,7 +3722,7 @@ export default { Thoma: { name: "Thoma", - nameLocale: 648, + nameLocale: 650, element: "Pyro", weapon: "Polearm", star: 4, @@ -3730,9 +3730,9 @@ export default { // avatar: Thoma_avatar, avatar: getName("Tohma"), splash: Thoma_splash, - skillName1: 886, - skillName2: 1156, - skillName3: 1285, + skillName1: 888, + skillName2: 1160, + skillName3: 1290, skillMap1: [ { index: 0, text: 50 }, @@ -3741,27 +3741,27 @@ export default { { index: 2, text: 76 }, - { index: 4, text: 416 }, + { index: 4, text: 417 }, - { index: 5, text: 1632 }, + { index: 5, text: 1642 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1805 }, + { index: 8, text: 1815 }, ], skillMap2: [ - { index: 9, text: 662 }, + { index: 9, text: 664 }, ], skillMap3: [ - { index: 10, text: 662 }, + { index: 10, text: 664 }, - { index: 11, text: 1153 }, + { index: 11, text: 1157 }, ], config: [ @@ -3774,7 +3774,7 @@ export default { Tighnari: { name: "Tighnari", - nameLocale: 700, + nameLocale: 702, element: "Dendro", weapon: "Bow", star: 5, @@ -3782,9 +3782,9 @@ export default { // avatar: Tighnari_avatar, avatar: getName("Tighnari"), splash: Tighnari_splash, - skillName1: 877, - skillName2: 1532, - skillName3: 1618, + skillName1: 879, + skillName2: 1540, + skillName3: 1627, skillMap1: [ { index: 0, text: 50 }, @@ -3793,40 +3793,40 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 416 }, + { index: 3, text: 417 }, - { index: 4, text: 1287 }, + { index: 4, text: 1292 }, - { index: 5, text: 60 }, + { index: 5, text: 61 }, - { index: 6, text: 1415 }, + { index: 6, text: 1421 }, - { index: 7, text: 1472 }, + { index: 7, text: 1478 }, { index: 8, text: 83 }, { index: 9, text: 171 }, - { index: 10, text: 1805 }, + { index: 10, text: 1815 }, ], skillMap2: [ - { index: 11, text: 662 }, + { index: 11, text: 664 }, ], skillMap3: [ - { index: 12, text: 1379 }, + { index: 12, text: 1384 }, - { index: 13, text: 1037 }, + { index: 13, text: 1041 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"talent1_ratio","title":503,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent1_ratio","title":504,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"c2_ratio","title":398,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"c2_ratio","title":399,"type":"float"}, ], configSkill: [ @@ -3836,7 +3836,7 @@ export default { Venti: { name: "Venti", - nameLocale: 1114, + nameLocale: 1118, element: "Anemo", weapon: "Bow", star: 5, @@ -3844,9 +3844,9 @@ export default { // avatar: Venti_avatar, avatar: getName("Venti"), splash: Venti_splash, - skillName1: 870, - skillName2: 1804, - skillName3: 1770, + skillName1: 872, + skillName2: 1814, + skillName3: 1780, skillMap1: [ { index: 0, text: 51 }, @@ -3857,43 +3857,43 @@ export default { { index: 4, text: 72 }, - { index: 5, text: 418 }, + { index: 5, text: 419 }, - { index: 6, text: 419 }, + { index: 6, text: 420 }, { index: 8, text: 140 }, - { index: 9, text: 246 }, + { index: 9, text: 247 }, - { index: 10, text: 1287 }, + { index: 10, text: 1292 }, - { index: 11, text: 1129 }, + { index: 11, text: 1133 }, { index: 12, text: 83 }, { index: 13, text: 171 }, - { index: 14, text: 1805 }, + { index: 14, text: 1815 }, ], skillMap2: [ - { index: 15, text: 1149 }, + { index: 15, text: 1153 }, - { index: 16, text: 1671 }, + { index: 16, text: 1681 }, ], skillMap3: [ - { index: 17, text: 689 }, + { index: 17, text: 691 }, - { index: 18, text: 1714 }, + { index: 18, text: 1724 }, - { index: 20, text: 1713 }, + { index: 20, text: 1723 }, - { index: 21, text: 1712 }, + { index: 21, text: 1722 }, - { index: 19, text: 1715 }, + { index: 19, text: 1725 }, ], config: [ @@ -3906,7 +3906,7 @@ export default { Wanderer: { name: "Wanderer", - nameLocale: 1090, + nameLocale: 1094, element: "Anemo", weapon: "Catalyst", star: 5, @@ -3914,9 +3914,9 @@ export default { // avatar: Wanderer_avatar, avatar: getName("Wanderer"), splash: Wanderer_splash, - skillName1: 878, - skillName2: 1389, - skillName3: 1180, + skillName1: 880, + skillName2: 1394, + skillName3: 1184, skillMap1: [ { index: 0, text: 50 }, @@ -3931,7 +3931,7 @@ export default { { index: 5, text: 77 }, - { index: 6, text: 1632 }, + { index: 6, text: 1642 }, { index: 7, text: 28 }, @@ -3939,17 +3939,17 @@ export default { { index: 9, text: 171 }, - { index: 10, text: 1805 }, + { index: 10, text: 1815 }, ], skillMap2: [ - { index: 11, text: 662 }, + { index: 11, text: 664 }, ], skillMap3: [ - { index: 12, text: 670 }, + { index: 12, text: 672 }, ], config: [ @@ -3961,18 +3961,18 @@ export default { ], configSkill: [ - {"default":true,"name":"e_enabled","title":451,"type":"bool"}, + {"default":true,"name":"e_enabled","title":452,"type":"bool"}, {"default":false,"name":"e_hydro","title":26,"type":"bool"}, - {"default":50.0,"max":120.0,"min":0.0,"name":"sdpoints","title":1347,"type":"float"}, + {"default":50.0,"max":120.0,"min":0.0,"name":"sdpoints","title":1352,"type":"float"}, ], }, Xiangling: { name: "Xiangling", - nameLocale: 1795, + nameLocale: 1805, element: "Pyro", weapon: "Polearm", star: 4, @@ -3980,9 +3980,9 @@ export default { // avatar: Xiangling_avatar, avatar: getName("Xiangling"), splash: Xiangling_splash, - skillName1: 867, - skillName2: 1669, - skillName3: 784, + skillName1: 869, + skillName2: 1679, + skillName3: 786, skillMap1: [ { index: 0, text: 50 }, @@ -3993,22 +3993,22 @@ export default { { index: 3, text: 74 }, - { index: 5, text: 423 }, + { index: 5, text: 424 }, { index: 7, text: 140 }, - { index: 8, text: 1632 }, + { index: 8, text: 1642 }, { index: 9, text: 83 }, { index: 10, text: 171 }, - { index: 11, text: 1805 }, + { index: 11, text: 1815 }, ], skillMap2: [ - { index: 12, text: 412 }, + { index: 12, text: 413 }, ], skillMap3: [ @@ -4019,7 +4019,7 @@ export default { { index: 15, text: 78 }, - { index: 16, text: 785 }, + { index: 16, text: 787 }, ], config: [ @@ -4032,7 +4032,7 @@ export default { Xiao: { name: "Xiao", - nameLocale: 1807, + nameLocale: 1817, element: "Anemo", weapon: "Polearm", star: 5, @@ -4040,9 +4040,9 @@ export default { // avatar: Xiao_avatar, avatar: getName("Xiao"), splash: Xiao_splash, - skillName1: 833, - skillName2: 1772, - skillName3: 1754, + skillName1: 835, + skillName2: 1782, + skillName3: 1764, skillMap1: [ { index: 0, text: 51 }, @@ -4053,26 +4053,26 @@ export default { { index: 4, text: 72 }, - { index: 5, text: 418 }, + { index: 5, text: 419 }, - { index: 6, text: 419 }, + { index: 6, text: 420 }, { index: 8, text: 140 }, - { index: 9, text: 246 }, + { index: 9, text: 247 }, - { index: 10, text: 1632 }, + { index: 10, text: 1642 }, { index: 11, text: 83 }, { index: 12, text: 171 }, - { index: 13, text: 1805 }, + { index: 13, text: 1815 }, ], skillMap2: [ - { index: 14, text: 662 }, + { index: 14, text: 664 }, ], skillMap3: [ @@ -4083,18 +4083,18 @@ export default { ], configSkill: [ - {"default":true,"name":"after_q","title":1754,"type":"bool"}, + {"default":true,"name":"after_q","title":1764,"type":"bool"}, - {"default":4.0,"max":4.0,"min":0.0,"name":"talent1_stack","title":506,"type":"float"}, + {"default":4.0,"max":4.0,"min":0.0,"name":"talent1_stack","title":507,"type":"float"}, - {"default":0.0,"max":3.0,"min":0.0,"name":"talent2_stack","title":494,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"talent2_stack","title":495,"type":"float"}, ], }, Xingqiu: { name: "Xingqiu", - nameLocale: 1478, + nameLocale: 1484, element: "Hydro", weapon: "Sword", star: 4, @@ -4102,9 +4102,9 @@ export default { // avatar: Xingqiu_avatar, avatar: getName("Xingqiu"), splash: Xingqiu_splash, - skillName1: 834, - skillName2: 362, - skillName3: 363, + skillName1: 836, + skillName2: 363, + skillName3: 364, skillMap1: [ { index: 0, text: 50 }, @@ -4115,33 +4115,33 @@ export default { { index: 3, text: 74 }, - { index: 5, text: 416 }, + { index: 5, text: 417 }, { index: 6, text: 141 }, { index: 7, text: 142 }, - { index: 9, text: 1634 }, + { index: 9, text: 1643 }, - { index: 10, text: 1637 }, + { index: 10, text: 1649 }, { index: 12, text: 83 }, { index: 13, text: 171 }, - { index: 14, text: 1805 }, + { index: 14, text: 1815 }, ], skillMap2: [ - { index: 15, text: 664 }, + { index: 15, text: 666 }, - { index: 16, text: 666 }, + { index: 16, text: 668 }, ], skillMap3: [ - { index: 17, text: 307 }, + { index: 17, text: 308 }, ], config: [ @@ -4149,14 +4149,14 @@ export default { ], configSkill: [ - {"default":false,"name":"c4","title":603,"type":"bool"}, + {"default":false,"name":"c4","title":604,"type":"bool"}, ], }, Xinyan: { name: "Xinyan", - nameLocale: 1583, + nameLocale: 1591, element: "Pyro", weapon: "Claymore", star: 4, @@ -4164,9 +4164,9 @@ export default { // avatar: Xinyan_avatar, avatar: getName("Xinyan"), splash: Xinyan_splash, - skillName1: 862, - skillName2: 1160, - skillName3: 359, + skillName1: 864, + skillName2: 1164, + skillName3: 360, skillMap1: [ { index: 0, text: 50 }, @@ -4175,31 +4175,31 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 416 }, + { index: 3, text: 417 }, - { index: 4, text: 1647 }, + { index: 4, text: 1657 }, - { index: 5, text: 1650 }, + { index: 5, text: 1660 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1805 }, + { index: 8, text: 1815 }, ], skillMap2: [ - { index: 9, text: 697 }, + { index: 9, text: 699 }, - { index: 10, text: 689 }, + { index: 10, text: 691 }, ], skillMap3: [ - { index: 11, text: 662 }, + { index: 11, text: 664 }, - { index: 12, text: 1135 }, + { index: 12, text: 1139 }, ], config: [ @@ -4214,7 +4214,7 @@ export default { YaeMiko: { name: "YaeMiko", - nameLocale: 236, + nameLocale: 237, element: "Electro", weapon: "Catalyst", star: 5, @@ -4222,9 +4222,9 @@ export default { // avatar: YaeMiko_avatar, avatar: getName("Yae"), splash: YaeMiko_splash, - skillName1: 865, - skillName2: 1654, - skillName3: 475, + skillName1: 867, + skillName2: 1664, + skillName3: 476, skillMap1: [ { index: 0, text: 50 }, @@ -4233,31 +4233,31 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 1632 }, + { index: 3, text: 1642 }, { index: 4, text: 83 }, { index: 5, text: 171 }, - { index: 6, text: 1805 }, + { index: 6, text: 1815 }, ], skillMap2: [ - { index: 7, text: 1005 }, + { index: 7, text: 1008 }, - { index: 8, text: 1007 }, + { index: 8, text: 1010 }, - { index: 9, text: 1004 }, + { index: 9, text: 1007 }, - { index: 10, text: 1006 }, + { index: 10, text: 1009 }, ], skillMap3: [ - { index: 11, text: 662 }, + { index: 11, text: 664 }, - { index: 12, text: 480 }, + { index: 12, text: 481 }, ], config: [ @@ -4270,7 +4270,7 @@ export default { Yanfei: { name: "Yanfei", - nameLocale: 1158, + nameLocale: 1162, element: "Pyro", weapon: "Catalyst", star: 4, @@ -4278,9 +4278,9 @@ export default { // avatar: Yanfei_avatar, avatar: getName("Feiyan"), splash: Yanfei_splash, - skillName1: 860, + skillName1: 862, skillName2: 93, - skillName3: 285, + skillName3: 286, skillMap1: [ { index: 0, text: 50 }, @@ -4289,33 +4289,33 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 1631 }, + { index: 3, text: 1641 }, - { index: 4, text: 1627 }, + { index: 4, text: 1637 }, - { index: 5, text: 1628 }, + { index: 5, text: 1638 }, - { index: 6, text: 1629 }, + { index: 6, text: 1639 }, - { index: 7, text: 1630 }, + { index: 7, text: 1640 }, - { index: 8, text: 491 }, + { index: 8, text: 492 }, { index: 9, text: 83 }, { index: 10, text: 171 }, - { index: 11, text: 1805 }, + { index: 11, text: 1815 }, ], skillMap2: [ - { index: 12, text: 662 }, + { index: 12, text: 664 }, ], skillMap3: [ - { index: 13, text: 662 }, + { index: 13, text: 664 }, ], config: [ @@ -4323,14 +4323,14 @@ export default { ], configSkill: [ - {"default":true,"name":"after_q","title":1146,"type":"bool"}, + {"default":true,"name":"after_q","title":1150,"type":"bool"}, ], }, Yaoyao: { name: "Yaoyao", - nameLocale: 1225, + nameLocale: 1230, element: "Dendro", weapon: "Polearm", star: 4, @@ -4338,9 +4338,9 @@ export default { // avatar: Yaoyao_avatar, avatar: getName("Yaoyao"), splash: Yaoyao_splash, - skillName1: 891, + skillName1: 893, skillName2: 132, - skillName3: 1198, + skillName3: 1203, skillMap1: [ { index: 0, text: 50 }, @@ -4351,36 +4351,36 @@ export default { { index: 3, text: 74 }, - { index: 4, text: 416 }, + { index: 4, text: 417 }, - { index: 5, text: 1632 }, + { index: 5, text: 1642 }, { index: 6, text: 83 }, { index: 7, text: 171 }, - { index: 8, text: 1805 }, + { index: 8, text: 1815 }, ], skillMap2: [ - { index: 9, text: 1276 }, + { index: 9, text: 1281 }, - { index: 10, text: 1277 }, + { index: 10, text: 1282 }, ], skillMap3: [ - { index: 11, text: 662 }, + { index: 11, text: 664 }, - { index: 12, text: 1029 }, + { index: 12, text: 1033 }, - { index: 13, text: 1030 }, + { index: 13, text: 1034 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"c4_rate","title":403,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"c4_rate","title":404,"type":"float"}, ], configSkill: [ @@ -4390,7 +4390,7 @@ export default { Yelan: { name: "Yelan", - nameLocale: 468, + nameLocale: 469, element: "Hydro", weapon: "Bow", star: 5, @@ -4398,9 +4398,9 @@ export default { // avatar: Yelan_avatar, avatar: getName("Yelan"), splash: Yelan_splash, - skillName1: 859, - skillName2: 1462, - skillName3: 1106, + skillName1: 861, + skillName2: 1468, + skillName3: 1110, skillMap1: [ { index: 0, text: 50 }, @@ -4409,36 +4409,36 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 421 }, + { index: 3, text: 422 }, - { index: 4, text: 1287 }, + { index: 4, text: 1292 }, - { index: 5, text: 1129 }, + { index: 5, text: 1133 }, - { index: 6, text: 1298 }, + { index: 6, text: 1303 }, { index: 8, text: 83 }, { index: 9, text: 171 }, - { index: 10, text: 1805 }, + { index: 10, text: 1815 }, ], skillMap2: [ - { index: 11, text: 662 }, + { index: 11, text: 664 }, ], skillMap3: [ - { index: 12, text: 662 }, + { index: 12, text: 664 }, - { index: 13, text: 1197 }, + { index: 13, text: 1202 }, ], config: [ - {"default":4,"max":4,"min":1,"name":"team_element_count","title":1677,"type":"int"}, + {"default":4,"max":4,"min":1,"name":"team_element_count","title":1686,"type":"int"}, ], configSkill: [ @@ -4448,7 +4448,7 @@ export default { Yoimiya: { name: "Yoimiya", - nameLocale: 553, + nameLocale: 554, element: "Pyro", weapon: "Bow", star: 5, @@ -4456,9 +4456,9 @@ export default { // avatar: Yoimiya_avatar, avatar: getName("Yoimiya"), splash: Yoimiya_splash, - skillName1: 863, - skillName2: 1164, - skillName3: 1215, + skillName1: 865, + skillName2: 1168, + skillName3: 1220, skillMap1: [ { index: 0, text: 53 }, @@ -4467,21 +4467,21 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 421 }, + { index: 3, text: 422 }, { index: 4, text: 140 }, - { index: 5, text: 1287 }, + { index: 5, text: 1292 }, - { index: 6, text: 1129 }, + { index: 6, text: 1133 }, - { index: 7, text: 1165 }, + { index: 7, text: 1169 }, { index: 8, text: 83 }, { index: 9, text: 171 }, - { index: 10, text: 1805 }, + { index: 10, text: 1815 }, ], skillMap2: [ @@ -4489,19 +4489,19 @@ export default { ], skillMap3: [ - { index: 11, text: 662 }, + { index: 11, text: 664 }, - { index: 12, text: 1216 }, + { index: 12, text: 1221 }, ], config: [ - {"default":8.0,"max":10.0,"min":0.0,"name":"talent1_level","title":504,"type":"float"}, + {"default":8.0,"max":10.0,"min":0.0,"name":"talent1_level","title":505,"type":"float"}, ], configSkill: [ - {"default":true,"name":"after_e","title":608,"type":"bool"}, + {"default":true,"name":"after_e","title":609,"type":"bool"}, ], }, @@ -4516,9 +4516,9 @@ export default { // avatar: Yunjin_avatar, avatar: getName("Yunjin"), splash: Yunjin_splash, - skillName1: 847, - skillName2: 783, - skillName3: 1299, + skillName1: 849, + skillName2: 785, + skillName3: 1304, skillMap1: [ { index: 0, text: 50 }, @@ -4529,24 +4529,24 @@ export default { { index: 3, text: 74 }, - { index: 4, text: 418 }, + { index: 4, text: 419 }, - { index: 5, text: 419 }, + { index: 5, text: 420 }, { index: 6, text: 140 }, - { index: 7, text: 1632 }, + { index: 7, text: 1642 }, { index: 8, text: 83 }, { index: 9, text: 171 }, - { index: 10, text: 1805 }, + { index: 10, text: 1815 }, ], skillMap2: [ - { index: 11, text: 1148 }, + { index: 11, text: 1152 }, { index: 12, text: 57 }, @@ -4555,7 +4555,7 @@ export default { ], skillMap3: [ - { index: 14, text: 662 }, + { index: 14, text: 664 }, ], config: [ @@ -4568,7 +4568,7 @@ export default { Zhongli: { name: "Zhongli", - nameLocale: 1659, + nameLocale: 1669, element: "Geo", weapon: "Polearm", star: 5, @@ -4576,9 +4576,9 @@ export default { // avatar: Zhongli_avatar, avatar: getName("Zhongli"), splash: Zhongli_splash, - skillName1: 838, - skillName2: 432, - skillName3: 478, + skillName1: 840, + skillName2: 433, + skillName3: 479, skillMap1: [ { index: 0, text: 50 }, @@ -4587,33 +4587,33 @@ export default { { index: 2, text: 72 }, - { index: 3, text: 416 }, + { index: 3, text: 417 }, { index: 4, text: 144 }, - { index: 5, text: 246 }, + { index: 5, text: 247 }, - { index: 6, text: 1632 }, + { index: 6, text: 1642 }, { index: 7, text: 83 }, { index: 8, text: 171 }, - { index: 9, text: 1805 }, + { index: 9, text: 1815 }, ], skillMap2: [ - { index: 10, text: 582 }, + { index: 10, text: 583 }, - { index: 11, text: 250 }, + { index: 11, text: 251 }, - { index: 12, text: 1671 }, + { index: 12, text: 1681 }, ], skillMap3: [ - { index: 13, text: 662 }, + { index: 13, text: 664 }, ], config: [ @@ -4626,7 +4626,7 @@ export default { Kirara: { name: "Kirara", - nameLocale: 1375, + nameLocale: 1380, element: "Dendro", weapon: "Sword", star: 4, @@ -4634,9 +4634,9 @@ export default { // avatar: Kirara_avatar, avatar: getName("Momoka"), splash: Kirara_splash, - skillName1: 875, - skillName2: 391, - skillName3: 1340, + skillName1: 877, + skillName2: 392, + skillName3: 1345, skillMap1: [ { index: 0, text: 50 }, @@ -4647,35 +4647,35 @@ export default { { index: 3, text: 74 }, - { index: 4, text: 416 }, + { index: 4, text: 417 }, - { index: 5, text: 1636 }, + { index: 5, text: 1646 }, - { index: 6, text: 1639 }, + { index: 6, text: 1650 }, - { index: 7, text: 1641 }, + { index: 7, text: 1651 }, { index: 8, text: 83 }, { index: 9, text: 171 }, - { index: 10, text: 1805 }, + { index: 10, text: 1815 }, ], skillMap2: [ - { index: 11, text: 1255 }, + { index: 11, text: 1260 }, - { index: 12, text: 1195 }, + { index: 12, text: 1200 }, - { index: 13, text: 1397 }, + { index: 13, text: 1402 }, ], skillMap3: [ - { index: 14, text: 662 }, + { index: 14, text: 664 }, - { index: 15, text: 1196 }, + { index: 15, text: 1201 }, ], config: [ diff --git a/src/assets/_gen_pf.js b/src/assets/_gen_pf.js index 7d3acc11..126de05d 100644 --- a/src/assets/_gen_pf.js +++ b/src/assets/_gen_pf.js @@ -12,41 +12,41 @@ export default { badge: ArtifactEff_image, config: [ - {"default":false,"name":"atk_use","title":715,"type":"bool"}, + {"default":false,"name":"atk_use","title":717,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"atk_weight","title":716,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"atk_weight","title":718,"type":"float"}, - {"default":true,"name":"atk_p_use","title":708,"type":"bool"}, + {"default":true,"name":"atk_p_use","title":710,"type":"bool"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"atk_p_weight","title":709,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"atk_p_weight","title":711,"type":"float"}, - {"default":false,"name":"hp_use","title":1249,"type":"bool"}, + {"default":false,"name":"hp_use","title":1254,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"hp_weight","title":1250,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"hp_weight","title":1255,"type":"float"}, - {"default":false,"name":"hp_p_use","title":1235,"type":"bool"}, + {"default":false,"name":"hp_p_use","title":1240,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"hp_p_weight","title":1236,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"hp_p_weight","title":1241,"type":"float"}, - {"default":false,"name":"def_use","title":1700,"type":"bool"}, + {"default":false,"name":"def_use","title":1710,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"def_weight","title":1701,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"def_weight","title":1711,"type":"float"}, - {"default":false,"name":"def_p_use","title":1695,"type":"bool"}, + {"default":false,"name":"def_p_use","title":1705,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"def_p_weight","title":1696,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"def_p_weight","title":1706,"type":"float"}, - {"default":true,"name":"critical_use","title":975,"type":"bool"}, + {"default":true,"name":"critical_use","title":978,"type":"bool"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"critical_weight","title":976,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"critical_weight","title":979,"type":"float"}, - {"default":true,"name":"critical_damage_use","title":969,"type":"bool"}, + {"default":true,"name":"critical_damage_use","title":972,"type":"bool"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"critical_damage_weight","title":970,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"critical_damage_weight","title":973,"type":"float"}, - {"default":false,"name":"elemental_mastery_use","title":229,"type":"bool"}, + {"default":false,"name":"elemental_mastery_use","title":230,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"elemental_mastery_weight","title":230,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"elemental_mastery_weight","title":231,"type":"float"}, {"default":false,"name":"recharge_use","title":189,"type":"bool"}, diff --git a/src/assets/_gen_tf.js b/src/assets/_gen_tf.js index 58f2289a..1870dad0 100644 --- a/src/assets/_gen_tf.js +++ b/src/assets/_gen_tf.js @@ -208,8 +208,8 @@ export default { "MaxATK": { name: "MaxATK", - nameLocale: 990, - description: 987, + nameLocale: 993, + description: 990, tags: [ "攻击", @@ -226,8 +226,8 @@ export default { "MaxDEF": { name: "MaxDEF", - nameLocale: 995, - description: 989, + nameLocale: 998, + description: 992, tags: [ "防御", @@ -244,8 +244,8 @@ export default { "MaxHP": { name: "MaxHP", - nameLocale: 992, - description: 988, + nameLocale: 995, + description: 991, tags: [ "生命", @@ -262,8 +262,8 @@ export default { "MaxEM": { name: "MaxEM", - nameLocale: 982, - description: 986, + nameLocale: 985, + description: 989, tags: [ "元素精通", @@ -280,8 +280,8 @@ export default { "MaxRecharge": { name: "MaxRecharge", - nameLocale: 983, - description: 985, + nameLocale: 986, + description: 988, tags: [ "", @@ -298,8 +298,8 @@ export default { "PyroDamage": { name: "PyroDamage", - nameLocale: 1132, - description: 1133, + nameLocale: 1136, + description: 1137, tags: [ "输出", @@ -311,15 +311,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1355,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1360,"type":"option"}, ], }, "CryoDamage": { name: "CryoDamage", - nameLocale: 260, - description: 261, + nameLocale: 261, + description: 262, tags: [ "输出", @@ -331,15 +331,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1355,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1360,"type":"option"}, ], }, "HydroDamage": { name: "HydroDamage", - nameLocale: 1053, - description: 1054, + nameLocale: 1057, + description: 1058, tags: [ "输出", @@ -351,15 +351,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1355,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1360,"type":"option"}, ], }, "ElectroDamage": { name: "ElectroDamage", - nameLocale: 1726, - description: 1727, + nameLocale: 1736, + description: 1737, tags: [ "输出", @@ -371,15 +371,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1355,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1360,"type":"option"}, ], }, "AnemoDamage": { name: "AnemoDamage", - nameLocale: 1762, - description: 1764, + nameLocale: 1772, + description: 1774, tags: [ "输出", @@ -391,15 +391,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1355,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1360,"type":"option"}, ], }, "DendroDamage": { name: "DendroDamage", - nameLocale: 1424, - description: 1425, + nameLocale: 1430, + description: 1431, tags: [ "", @@ -411,15 +411,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1355,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1360,"type":"option"}, ], }, "GeoDamage": { name: "GeoDamage", - nameLocale: 579, - description: 580, + nameLocale: 580, + description: 581, tags: [ "输出", @@ -431,15 +431,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1355,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1360,"type":"option"}, ], }, "PhysicalDamage": { name: "PhysicalDamage", - nameLocale: 1175, - description: 1176, + nameLocale: 1179, + description: 1180, tags: [ "输出", @@ -451,14 +451,14 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1355,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1360,"type":"option"}, ], }, "MaxVaporize": { name: "MaxVaporize", - nameLocale: 993, + nameLocale: 996, description: 177, tags: [ @@ -471,16 +471,16 @@ export default { config: [ - {"default":0,"name":"t","options":["火","水"],"title":1519,"type":"option"}, + {"default":0,"name":"t","options":["火","水"],"title":1527,"type":"option"}, - {"default":"NormalAttack","name":"skill","title":661,"type":"skill4"}, + {"default":"NormalAttack","name":"skill","title":663,"type":"skill4"}, ], }, "MaxMelt": { name: "MaxMelt", - nameLocale: 994, + nameLocale: 997, description: 179, tags: [ @@ -493,16 +493,16 @@ export default { config: [ - {"default":0,"name":"t","options":["火","冰"],"title":1519,"type":"option"}, + {"default":0,"name":"t","options":["火","冰"],"title":1527,"type":"option"}, - {"default":"NormalAttack","name":"skill","title":661,"type":"skill4"}, + {"default":"NormalAttack","name":"skill","title":663,"type":"skill4"}, ], }, "ExpectVaporize": { name: "ExpectVaporize", - nameLocale: 1002, + nameLocale: 1005, description: 178, tags: [ @@ -515,16 +515,16 @@ export default { config: [ - {"default":0,"name":"t","options":["火","水"],"title":1519,"type":"option"}, + {"default":0,"name":"t","options":["火","水"],"title":1527,"type":"option"}, - {"default":"NormalAttack","name":"skill","title":661,"type":"skill4"}, + {"default":"NormalAttack","name":"skill","title":663,"type":"skill4"}, ], }, "ExpectMelt": { name: "ExpectMelt", - nameLocale: 1003, + nameLocale: 1006, description: 180, tags: [ @@ -537,17 +537,17 @@ export default { config: [ - {"default":0,"name":"t","options":["火","冰"],"title":1519,"type":"option"}, + {"default":0,"name":"t","options":["火","冰"],"title":1527,"type":"option"}, - {"default":"NormalAttack","name":"skill","title":661,"type":"skill4"}, + {"default":"NormalAttack","name":"skill","title":663,"type":"skill4"}, ], }, "AlbedoDefault": { name: "AlbedoDefault", - nameLocale: 1708, - description: 823, + nameLocale: 1718, + description: 825, tags: [ "输出", @@ -564,8 +564,8 @@ export default { "AloyDefault": { name: "AloyDefault", - nameLocale: 443, - description: 940, + nameLocale: 444, + description: 943, tags: [ "输出", @@ -582,8 +582,8 @@ export default { "AmberDefault": { name: "AmberDefault", - nameLocale: 540, - description: 943, + nameLocale: 541, + description: 946, tags: [ "输出", @@ -600,8 +600,8 @@ export default { "AratakiIttoDefault": { name: "AratakiIttoDefault", - nameLocale: 1428, - description: 1430, + nameLocale: 1434, + description: 1436, tags: [ "输出", @@ -618,7 +618,7 @@ export default { "BarbaraDefault": { name: "BarbaraDefault", - nameLocale: 1413, + nameLocale: 1419, description: 176, tags: [ @@ -638,8 +638,8 @@ export default { "BeidouDefault": { name: "BeidouDefault", - nameLocale: 320, - description: 824, + nameLocale: 321, + description: 826, tags: [ "输出", @@ -656,8 +656,8 @@ export default { "BennettDamage": { name: "BennettDamage", - nameLocale: 1210, - description: 820, + nameLocale: 1215, + description: 822, tags: [ "辅助", @@ -673,7 +673,7 @@ export default { config: [ - {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":232,"type":"float"}, + {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, {"default":0.9,"max":1.0,"min":0.0,"name":"other_dmg_ratio","title":156,"type":"float"}, @@ -682,8 +682,8 @@ export default { "BennettDefault": { name: "BennettDefault", - nameLocale: 1211, - description: 931, + nameLocale: 1216, + description: 934, tags: [ "辅助", @@ -695,15 +695,15 @@ export default { config: [ - {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":232,"type":"float"}, + {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, ], }, "ChongyunDefault": { name: "ChongyunDefault", - nameLocale: 1625, - description: 822, + nameLocale: 1635, + description: 824, tags: [ "副C", @@ -722,8 +722,8 @@ export default { "DilucDefault": { name: "DilucDefault", - nameLocale: 1599, - description: 957, + nameLocale: 1607, + description: 960, tags: [ "输出", @@ -735,17 +735,17 @@ export default { config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1475,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1481,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1467,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1473,"type":"float"}, ], }, "DionaDefault": { name: "DionaDefault", - nameLocale: 1602, - description: 924, + nameLocale: 1610, + description: 927, tags: [ "治疗", @@ -759,7 +759,7 @@ export default { config: [ - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":232,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, ], }, @@ -767,7 +767,7 @@ export default { "EulaDefault": { name: "EulaDefault", nameLocale: 166, - description: 816, + description: 818, tags: [ "输出", @@ -784,8 +784,8 @@ export default { "FischlDefault": { name: "FischlDefault", - nameLocale: 1461, - description: 817, + nameLocale: 1467, + description: 819, tags: [ "输出", @@ -802,8 +802,8 @@ export default { "GanyuDefault": { name: "GanyuDefault", - nameLocale: 1230, - description: 952, + nameLocale: 1235, + description: 955, tags: [ "输出", @@ -815,7 +815,7 @@ export default { config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1475,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1481,"type":"float"}, ], }, @@ -823,7 +823,7 @@ export default { "GorouDefault": { name: "GorouDefault", nameLocale: 150, - description: 826, + description: 828, tags: [ "辅助", @@ -835,15 +835,15 @@ export default { config: [ - {"default":1.7,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, + {"default":1.7,"max":3.0,"min":1.0,"name":"recharge_demand","title":234,"type":"float"}, ], }, "HuTaoDefault": { name: "HuTaoDefault", - nameLocale: 1406, - description: 936, + nameLocale: 1412, + description: 939, tags: [ "输出", @@ -855,17 +855,17 @@ export default { config: [ - {"default":0.5,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1467,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1473,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1475,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1481,"type":"float"}, ], }, "JeanDefault": { name: "JeanDefault", - nameLocale: 1222, - description: 818, + nameLocale: 1227, + description: 820, tags: [ "副C", @@ -879,17 +879,17 @@ export default { config: [ - {"default":0.5,"max":1.0,"min":0.0,"name":"damage_weight","title":1068,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"damage_weight","title":1072,"type":"float"}, - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":234,"type":"float"}, ], }, "KaedeharaKazuhaDamage": { name: "KaedeharaKazuhaDamage", - nameLocale: 1018, - description: 947, + nameLocale: 1022, + description: 950, tags: [ "输出", @@ -903,9 +903,9 @@ export default { config: [ - {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":232,"type":"float"}, + {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, - {"default":0.5,"max":1.0,"min":0.0,"name":"swirl_rate","title":658,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"swirl_rate","title":660,"type":"float"}, {"default":0.9,"max":1.0,"min":0.0,"name":"other_dmg_ratio","title":156,"type":"float"}, @@ -914,8 +914,8 @@ export default { "KaedeharaKazuhaDefault": { name: "KaedeharaKazuhaDefault", - nameLocale: 1017, - description: 930, + nameLocale: 1021, + description: 933, tags: [ "辅助", @@ -927,15 +927,15 @@ export default { config: [ - {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":232,"type":"float"}, + {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, ], }, "KaeyaDefault": { name: "KaeyaDefault", - nameLocale: 287, - description: 819, + nameLocale: 288, + description: 821, tags: [ "输出", @@ -952,8 +952,8 @@ export default { "KamisatoAyakaDefault": { name: "KamisatoAyakaDefault", - nameLocale: 1324, - description: 815, + nameLocale: 1329, + description: 817, tags: [ "输出", @@ -965,15 +965,15 @@ export default { config: [ - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":232,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, ], }, "KamisatoAyakaDps": { name: "KamisatoAyakaDps", - nameLocale: 1322, - description: 1001, + nameLocale: 1327, + description: 1004, tags: [ "输出", @@ -990,8 +990,8 @@ export default { "KamisatoAyatoDefault": { name: "KamisatoAyatoDefault", - nameLocale: 1318, - description: 923, + nameLocale: 1323, + description: 926, tags: [ "输出", @@ -1008,8 +1008,8 @@ export default { "KeqingDefault": { name: "KeqingDefault", - nameLocale: 303, - description: 961, + nameLocale: 304, + description: 964, tags: [ "输出", @@ -1021,15 +1021,15 @@ export default { config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"aggravate_rate","title":1562,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"aggravate_rate","title":1570,"type":"float"}, ], }, "KleeDefault": { name: "KleeDefault", - nameLocale: 368, - description: 371, + nameLocale: 369, + description: 372, tags: [ "输出", @@ -1041,7 +1041,7 @@ export default { config: [ - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":232,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, ], }, @@ -1049,7 +1049,7 @@ export default { "KujouSaraDamage": { name: "KujouSaraDamage", nameLocale: 106, - description: 308, + description: 309, tags: [ "输出", @@ -1063,7 +1063,7 @@ export default { config: [ - {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":232,"type":"float"}, + {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, ], }, @@ -1071,7 +1071,7 @@ export default { "KujouSaraDefault": { name: "KujouSaraDefault", nameLocale: 107, - description: 962, + description: 965, tags: [ "辅助", @@ -1089,7 +1089,7 @@ export default { "LisaDefault": { name: "LisaDefault", nameLocale: 97, - description: 937, + description: 940, tags: [ "输出", @@ -1101,15 +1101,15 @@ export default { config: [ - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":234,"type":"float"}, ], }, "MonaDefault": { name: "MonaDefault", - nameLocale: 1437, - description: 953, + nameLocale: 1443, + description: 956, tags: [ "输出", @@ -1123,15 +1123,15 @@ export default { config: [ - {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, + {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":234,"type":"float"}, ], }, "NingguangDefault": { name: "NingguangDefault", - nameLocale: 281, - description: 938, + nameLocale: 282, + description: 941, tags: [ "输出", @@ -1148,8 +1148,8 @@ export default { "NoelleDefault": { name: "NoelleDefault", - nameLocale: 1542, - description: 955, + nameLocale: 1550, + description: 958, tags: [ "输出", @@ -1167,7 +1167,7 @@ export default { "QiqiDefault": { name: "QiqiDefault", nameLocale: 65, - description: 926, + description: 929, tags: [ "治疗", @@ -1179,15 +1179,15 @@ export default { config: [ - {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, + {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":234,"type":"float"}, ], }, "RaidenShogunDefault": { name: "RaidenShogunDefault", - nameLocale: 1741, - description: 959, + nameLocale: 1751, + description: 962, tags: [ "输出", @@ -1199,15 +1199,15 @@ export default { config: [ - {"default":2.6,"max":4.0,"min":1.0,"name":"recharge_demand","title":232,"type":"float"}, + {"default":2.6,"max":4.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, ], }, "RazorDefault": { name: "RazorDefault", - nameLocale: 1734, - description: 951, + nameLocale: 1744, + description: 954, tags: [ "输出", @@ -1224,8 +1224,8 @@ export default { "RosariaDefault": { name: "RosariaDefault", - nameLocale: 1383, - description: 934, + nameLocale: 1388, + description: 937, tags: [ "辅助", @@ -1244,8 +1244,8 @@ export default { "SangonomiyaKokomiDefault": { name: "SangonomiyaKokomiDefault", - nameLocale: 1203, - description: 945, + nameLocale: 1208, + description: 948, tags: [ "输出", @@ -1264,8 +1264,8 @@ export default { "SayuDefault": { name: "SayuDefault", - nameLocale: 796, - description: 939, + nameLocale: 798, + description: 942, tags: [ "输出", @@ -1279,15 +1279,15 @@ export default { config: [ - {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, + {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":234,"type":"float"}, ], }, "ShenheDefault": { name: "ShenheDefault", - nameLocale: 1262, - description: 932, + nameLocale: 1267, + description: 935, tags: [ "辅助", @@ -1299,15 +1299,15 @@ export default { config: [ - {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, + {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":234,"type":"float"}, ], }, "SucroseDefault": { name: "SucroseDefault", - nameLocale: 1292, - description: 933, + nameLocale: 1297, + description: 936, tags: [ "辅助", @@ -1319,15 +1319,15 @@ export default { config: [ - {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, + {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":234,"type":"float"}, ], }, "TartagliaDefault": { name: "TartagliaDefault", - nameLocale: 1593, - description: 956, + nameLocale: 1601, + description: 959, tags: [ "输出", @@ -1344,8 +1344,8 @@ export default { "ThomaDefault": { name: "ThomaDefault", - nameLocale: 651, - description: 929, + nameLocale: 653, + description: 932, tags: [ "辅助", @@ -1357,15 +1357,15 @@ export default { config: [ - {"default":2.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, + {"default":2.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":234,"type":"float"}, ], }, "VentiDefault": { name: "VentiDefault", - nameLocale: 1117, - description: 948, + nameLocale: 1121, + description: 951, tags: [ "输出", @@ -1377,15 +1377,15 @@ export default { config: [ - {"default":0.7,"max":1.0,"min":0.0,"name":"swirl_rate","title":655,"type":"float"}, + {"default":0.7,"max":1.0,"min":0.0,"name":"swirl_rate","title":657,"type":"float"}, ], }, "XianglingDefault": { name: "XianglingDefault", - nameLocale: 1799, - description: 949, + nameLocale: 1809, + description: 952, tags: [ "输出", @@ -1397,21 +1397,21 @@ export default { config: [ - {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, + {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":234,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1475,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1481,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1467,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1473,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"overload_rate","title":1568,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"overload_rate","title":1576,"type":"float"}, ], }, "XiaoDefault": { name: "XiaoDefault", - nameLocale: 1808, - description: 960, + nameLocale: 1818, + description: 963, tags: [ "输出", @@ -1428,8 +1428,8 @@ export default { "XingqiuDefault": { name: "XingqiuDefault", - nameLocale: 1480, - description: 821, + nameLocale: 1486, + description: 823, tags: [ "输出", @@ -1441,15 +1441,15 @@ export default { config: [ - {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, + {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":234,"type":"float"}, ], }, "XinyanDamage": { name: "XinyanDamage", - nameLocale: 1587, - description: 928, + nameLocale: 1595, + description: 931, tags: [ "输出", @@ -1466,8 +1466,8 @@ export default { "XinyanDefault": { name: "XinyanDefault", - nameLocale: 1586, - description: 935, + nameLocale: 1594, + description: 938, tags: [ "辅助", @@ -1479,7 +1479,7 @@ export default { config: [ - {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, + {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":234,"type":"float"}, {"default":0.5,"max":1.0,"min":0.0,"name":"damage_demand","title":170,"type":"float"}, @@ -1488,8 +1488,8 @@ export default { "YaeMikoDefault": { name: "YaeMikoDefault", - nameLocale: 238, - description: 696, + nameLocale: 239, + description: 698, tags: [ "输出", @@ -1501,21 +1501,21 @@ export default { config: [ - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_requirement","title":233,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_requirement","title":234,"type":"float"}, - {"default":0,"name":"combo","options":["不站场平A","站场平A"],"title":1595,"type":"option"}, + {"default":0,"name":"combo","options":["不站场平A","站场平A"],"title":1603,"type":"option"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"aggravate_rate","title":1562,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"aggravate_rate","title":1570,"type":"float"}, - {"default":0.0,"max":4.0,"min":0.0,"name":"hyperbloom_rate","title":1563,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"hyperbloom_rate","title":1571,"type":"float"}, ], }, "YanfeiDefault": { name: "YanfeiDefault", - nameLocale: 1159, - description: 950, + nameLocale: 1163, + description: 953, tags: [ "输出", @@ -1532,8 +1532,8 @@ export default { "YelanDefault": { name: "YelanDefault", - nameLocale: 471, - description: 941, + nameLocale: 472, + description: 944, tags: [ "输出", @@ -1545,17 +1545,17 @@ export default { config: [ - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":232,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1467,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1473,"type":"float"}, ], }, "YoimiyaDefault": { name: "YoimiyaDefault", - nameLocale: 555, - description: 944, + nameLocale: 556, + description: 947, tags: [ "输出", @@ -1567,9 +1567,9 @@ export default { config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1467,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1473,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1475,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1481,"type":"float"}, ], }, @@ -1577,7 +1577,7 @@ export default { "YunjinDefault": { name: "YunjinDefault", nameLocale: 136, - description: 825, + description: 827, tags: [ "辅助", @@ -1589,15 +1589,15 @@ export default { config: [ - {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, + {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":234,"type":"float"}, ], }, "ZhongliDefault": { name: "ZhongliDefault", - nameLocale: 1661, - description: 927, + nameLocale: 1671, + description: 930, tags: [ "爆发", @@ -1609,7 +1609,7 @@ export default { config: [ - {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, + {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":234,"type":"float"}, ], }, @@ -1617,7 +1617,7 @@ export default { "KukiShinobuDefault": { name: "KukiShinobuDefault", nameLocale: 100, - description: 1581, + description: 1589, tags: [ "辅助", @@ -1636,8 +1636,8 @@ export default { "ShikanoinHeizouDefault": { name: "ShikanoinHeizouDefault", - nameLocale: 1823, - description: 1582, + nameLocale: 1833, + description: 1590, tags: [ "输出", @@ -1654,7 +1654,7 @@ export default { "TighnariDefault": { name: "TighnariDefault", - nameLocale: 702, + nameLocale: 704, description: 174, tags: [ @@ -1667,15 +1667,15 @@ export default { config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"spread_rate","title":1469,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"spread_rate","title":1475,"type":"float"}, ], }, "CynoDefault": { name: "CynoDefault", - nameLocale: 1558, - description: 647, + nameLocale: 1566, + description: 649, tags: [ "输出", @@ -1687,27 +1687,27 @@ export default { config: [ - {"default":1.3,"max":3.0,"min":1.0,"name":"recharge_requirement","title":233,"type":"float"}, + {"default":1.3,"max":3.0,"min":1.0,"name":"recharge_requirement","title":234,"type":"float"}, - {"default":0,"name":"combo","options":["乱a不取消","取消第五段"],"title":1595,"type":"option"}, + {"default":0,"name":"combo","options":["乱a不取消","取消第五段"],"title":1603,"type":"option"}, {"default":false,"name":"until_expire","title":19,"type":"bool"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"aggravate_rate","title":1562,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"aggravate_rate","title":1570,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"elecharged_rate","title":638,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"elecharged_rate","title":640,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"overload_rate","title":1567,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"overload_rate","title":1575,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"hyperbloom_rate","title":1563,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"hyperbloom_rate","title":1571,"type":"float"}, ], }, "NilouDefault": { name: "NilouDefault", - nameLocale: 523, - description: 942, + nameLocale: 524, + description: 945, tags: [ "", @@ -1721,20 +1721,20 @@ export default { {"default":5.0,"max":10.0,"min":0.0,"name":"e_ratio","title":199,"type":"float"}, - {"default":1.0,"max":10.0,"min":0.0,"name":"q_ratio","title":216,"type":"float"}, + {"default":1.0,"max":10.0,"min":0.0,"name":"q_ratio","title":217,"type":"float"}, - {"default":3.0,"max":10.0,"min":0.0,"name":"bloom_ratio","title":1378,"type":"float"}, + {"default":3.0,"max":10.0,"min":0.0,"name":"bloom_ratio","title":1383,"type":"float"}, - {"default":1000.0,"max":3000.0,"min":0.0,"name":"other_em","title":1691,"type":"float"}, + {"default":1000.0,"max":3000.0,"min":0.0,"name":"other_em","title":1701,"type":"float"}, - {"default":7.0,"max":10.0,"min":0.0,"name":"other_bloom_ratio","title":1692,"type":"float"}, + {"default":7.0,"max":10.0,"min":0.0,"name":"other_bloom_ratio","title":1702,"type":"float"}, ], }, "NahidaDefault": { name: "NahidaDefault", - nameLocale: 1363, + nameLocale: 1368, description: 181, tags: [ @@ -1747,23 +1747,23 @@ export default { config: [ - {"default":0,"max":1500,"min":0,"name":"em_requirement","title":1357,"type":"int"}, + {"default":0,"max":1500,"min":0,"name":"em_requirement","title":1362,"type":"int"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"spread_rate","title":1469,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"spread_rate","title":1475,"type":"float"}, - {"default":0.0,"max":4.0,"min":0.0,"name":"bloom_count","title":1378,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"bloom_count","title":1383,"type":"float"}, - {"default":0.0,"max":3.0,"min":0.0,"name":"burn_duration","title":1168,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"burn_duration","title":1172,"type":"float"}, - {"default":0,"max":2,"min":0,"name":"pryo_teammate_count","title":1137,"type":"int"}, + {"default":0,"max":2,"min":0,"name":"pryo_teammate_count","title":1141,"type":"int"}, ], }, "WandererDefault": { name: "WandererDefault", - nameLocale: 1091, - description: 1527, + nameLocale: 1095, + description: 1535, tags: [ "输出", @@ -1781,22 +1781,22 @@ export default { {"default":false,"name":"e_cryo","title":25,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"spd_extra","title":1761,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"spd_extra","title":1771,"type":"float"}, - {"default":1.0,"max":1.5,"min":0.5,"name":"spd_comp","title":725,"type":"float"}, + {"default":1.0,"max":1.5,"min":0.5,"name":"spd_comp","title":727,"type":"float"}, {"default":3,"max":12,"min":0,"name":"dash_count","title":29,"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":657,"type":"int"}, + {"default":12,"max":24,"min":0,"name":"swirl_count","title":659,"type":"int"}, ], }, "FaruzanDamage": { name: "FaruzanDamage", - nameLocale: 1205, + nameLocale: 1210, description: 175, tags: [ @@ -1809,14 +1809,14 @@ export default { config: [ - {"default":2.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, + {"default":2.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":234,"type":"float"}, ], }, "AlhaithamDefault": { name: "AlhaithamDefault", - nameLocale: 1411, + nameLocale: 1417, description: 160, tags: [ @@ -1829,21 +1829,21 @@ export default { config: [ - {"default":5.0,"max":10.0,"min":0.0,"name":"charged_ratio","title":1648,"type":"float"}, + {"default":5.0,"max":10.0,"min":0.0,"name":"charged_ratio","title":1658,"type":"float"}, {"default":5.0,"max":10.0,"min":0.0,"name":"e_ratio","title":210,"type":"float"}, - {"default":1.0,"max":10.0,"min":0.0,"name":"q_ratio","title":218,"type":"float"}, + {"default":1.0,"max":10.0,"min":0.0,"name":"q_ratio","title":219,"type":"float"}, - {"default":0.3,"max":1.0,"min":0.0,"name":"spread_ratio","title":1469,"type":"float"}, + {"default":0.3,"max":1.0,"min":0.0,"name":"spread_ratio","title":1475,"type":"float"}, ], }, "DehyaDefault": { name: "DehyaDefault", - nameLocale: 1605, - description: 958, + nameLocale: 1613, + description: 961, tags: [ "输出", @@ -1855,9 +1855,9 @@ export default { config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1475,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1481,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1467,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1473,"type":"float"}, {"default":6,"max":20,"min":0,"name":"e_count","title":92,"type":"int"}, @@ -1866,8 +1866,8 @@ export default { "MikaDefault": { name: "MikaDefault", - nameLocale: 1354, - description: 925, + nameLocale: 1359, + description: 928, tags: [ "治疗", @@ -1881,17 +1881,17 @@ export default { config: [ - {"default":2.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":232,"type":"float"}, + {"default":2.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":233,"type":"float"}, - {"default":0.6,"max":1.0,"min":0.0,"name":"crit_demand","title":977,"type":"float"}, + {"default":0.6,"max":1.0,"min":0.0,"name":"crit_demand","title":980,"type":"float"}, ], }, "FreminetDefault": { name: "FreminetDefault", - nameLocale: 1459, - description: 954, + nameLocale: 1465, + description: 957, tags: [ "", @@ -1908,8 +1908,8 @@ export default { "LyneyDefault": { name: "LyneyDefault", - nameLocale: 1013, - description: 946, + nameLocale: 1017, + description: 949, tags: [ "", diff --git a/src/assets/_gen_weapon.js b/src/assets/_gen_weapon.js index 6b2b3cad..6d9ea5c9 100644 --- a/src/assets/_gen_weapon.js +++ b/src/assets/_gen_weapon.js @@ -344,13 +344,13 @@ export default { MistsplitterReforged: { name: "MistsplitterReforged", internalName: "Sword_Narukami", - nameLocale: 1747, + nameLocale: 1757, star: 5, url: imageUrl("Sword_Narukami"), type: "Sword", - effect: 1449, + effect: 1455, configs: [ @@ -364,13 +364,13 @@ export default { AquilaFavonia: { name: "AquilaFavonia", internalName: "Sword_Falcon", - nameLocale: 1784, + nameLocale: 1794, star: 5, url: imageUrl("Sword_Falcon"), type: "Sword", - effect: 713, + effect: 715, configs: null, @@ -380,20 +380,20 @@ export default { SummitShaper: { name: "SummitShaper", internalName: "Sword_Kunwu", - nameLocale: 748, + nameLocale: 750, star: 5, url: imageUrl("Sword_Kunwu"), type: "Sword", - effect: 681, + effect: 683, configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1488,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1495,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":683,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":686,"type":"float"}, ], @@ -402,13 +402,13 @@ export default { SkywardBlade: { name: "SkywardBlade", internalName: "Sword_Dvalin", - nameLocale: 486, + nameLocale: 487, star: 5, url: imageUrl("Sword_Dvalin"), type: "Sword", - effect: 972, + effect: 975, configs: null, @@ -418,18 +418,18 @@ export default { FreedomSworn: { name: "FreedomSworn", internalName: "Sword_Widsith", - nameLocale: 1417, + nameLocale: 1423, star: 5, url: imageUrl("Sword_Widsith"), type: "Sword", - effect: 1787, + effect: 1797, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1494,"type":"float"}, ], @@ -438,13 +438,13 @@ export default { PrimordialJadeCutter: { name: "PrimordialJadeCutter", internalName: "Sword_Morax", - nameLocale: 1302, + nameLocale: 1307, star: 5, url: imageUrl("Sword_Morax"), type: "Sword", - effect: 1248, + effect: 1253, configs: null, @@ -454,13 +454,13 @@ export default { TheFlute: { name: "TheFlute", internalName: "Sword_Troupe", - nameLocale: 1345, + nameLocale: 1350, star: 4, url: imageUrl("Sword_Troupe"), type: "Sword", - effect: 917, + effect: 920, configs: null, @@ -470,13 +470,13 @@ export default { TheBlackSword: { name: "TheBlackSword", internalName: "Sword_Bloodstained", - nameLocale: 1828, + nameLocale: 1844, star: 4, url: imageUrl("Sword_Bloodstained"), type: "Sword", - effect: 905, + effect: 907, configs: null, @@ -486,18 +486,18 @@ export default { TheAlleyFlash: { name: "TheAlleyFlash", internalName: "Sword_Outlaw", - nameLocale: 965, + nameLocale: 968, star: 4, url: imageUrl("Sword_Outlaw"), type: "Sword", - effect: 1516, + effect: 1524, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1494,"type":"float"}, ], @@ -506,7 +506,7 @@ export default { SwordOfDescension: { name: "SwordOfDescension", internalName: "Sword_Psalmus", - nameLocale: 1716, + nameLocale: 1726, star: 4, url: imageUrl("Sword_Psalmus"), type: "Sword", @@ -522,7 +522,7 @@ export default { SacrificialSword: { name: "SacrificialSword", internalName: "Sword_Fossil", - nameLocale: 1331, + nameLocale: 1336, star: 4, url: imageUrl("Sword_Fossil"), type: "Sword", @@ -538,13 +538,13 @@ export default { RoyalLongsword: { name: "RoyalLongsword", internalName: "Sword_Theocrat", - nameLocale: 549, + nameLocale: 550, star: 4, url: imageUrl("Sword_Theocrat"), type: "Sword", - effect: 723, + effect: 725, configs: null, @@ -554,18 +554,18 @@ export default { PrototypeRancour: { name: "PrototypeRancour", internalName: "Sword_Proto", - nameLocale: 1534, + nameLocale: 1542, star: 4, url: imageUrl("Sword_Proto"), type: "Sword", - effect: 918, + effect: 921, configs: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1488,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1495,"type":"float"}, ], @@ -574,13 +574,13 @@ export default { AmenomaKageuchi: { name: "AmenomaKageuchi", internalName: "Sword_Bakufu", - nameLocale: 484, + nameLocale: 485, star: 4, url: imageUrl("Sword_Bakufu"), type: "Sword", - effect: 763, + effect: 765, configs: null, @@ -590,18 +590,18 @@ export default { LionsRoar: { name: "LionsRoar", internalName: "Sword_Rockkiller", - nameLocale: 324, + nameLocale: 325, star: 4, url: imageUrl("Sword_Rockkiller"), type: "Sword", - effect: 566, + effect: 567, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1494,"type":"float"}, ], @@ -610,18 +610,18 @@ export default { IronSting: { name: "IronSting", internalName: "Sword_Exotic", - nameLocale: 1667, + nameLocale: 1677, star: 4, url: imageUrl("Sword_Exotic"), type: "Sword", - effect: 1614, + effect: 1623, configs: [ - {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1488,"type":"float"}, + {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1495,"type":"float"}, ], @@ -630,7 +630,7 @@ export default { FesteringDesire: { name: "FesteringDesire", internalName: "Sword_Magnum", - nameLocale: 1408, + nameLocale: 1414, star: 4, url: imageUrl("Sword_Magnum"), type: "Sword", @@ -646,13 +646,13 @@ export default { FavoniusSword: { name: "FavoniusSword", internalName: "Sword_Zephyrus", - nameLocale: 1501, + nameLocale: 1509, star: 4, url: imageUrl("Sword_Zephyrus"), type: "Sword", - effect: 724, + effect: 726, configs: null, @@ -662,7 +662,7 @@ export default { CinnabarSpindle: { name: "CinnabarSpindle", internalName: "Sword_Opus", - nameLocale: 1590, + nameLocale: 1598, star: 4, url: imageUrl("Sword_Opus"), type: "Sword", @@ -673,7 +673,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1494,"type":"float"}, ], @@ -682,18 +682,18 @@ export default { BlackcliffLongsword: { name: "BlackcliffLongsword", internalName: "Sword_Blackrock", - nameLocale: 1833, + nameLocale: 1849, star: 4, url: imageUrl("Sword_Blackrock"), type: "Sword", - effect: 291, + effect: 292, configs: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1488,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1495,"type":"float"}, ], @@ -702,18 +702,18 @@ export default { HarbingerOfDawn: { name: "HarbingerOfDawn", internalName: "Sword_Dawn", - nameLocale: 1827, + nameLocale: 1843, star: 3, url: imageUrl("Sword_Dawn"), type: "Sword", - effect: 1251, + effect: 1256, configs: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1494,"type":"float"}, ], @@ -722,13 +722,13 @@ export default { FilletBlade: { name: "FilletBlade", internalName: "Sword_Sashimi", - nameLocale: 372, + nameLocale: 373, star: 3, url: imageUrl("Sword_Sashimi"), type: "Sword", - effect: 719, + effect: 721, configs: null, @@ -738,18 +738,18 @@ export default { SkyriderSword: { name: "SkyriderSword", internalName: "Sword_Mitsurugi", - nameLocale: 1789, + nameLocale: 1799, star: 3, url: imageUrl("Sword_Mitsurugi"), type: "Sword", - effect: 772, + effect: 774, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1494,"type":"float"}, ], @@ -758,18 +758,18 @@ export default { DarkIronSword: { name: "DarkIronSword", internalName: "Sword_Darker", - nameLocale: 966, + nameLocale: 969, star: 3, url: imageUrl("Sword_Darker"), type: "Sword", - effect: 1526, + effect: 1534, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1494,"type":"float"}, ], @@ -778,18 +778,18 @@ export default { CoolSteel: { name: "CoolSteel", internalName: "Sword_Steel", - nameLocale: 274, + nameLocale: 275, star: 3, url: imageUrl("Sword_Steel"), type: "Sword", - effect: 559, + effect: 560, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1494,"type":"float"}, ], @@ -798,13 +798,13 @@ export default { TravelersHandySword: { name: "TravelersHandySword", internalName: "Sword_Traveler", - nameLocale: 781, + nameLocale: 783, star: 3, url: imageUrl("Sword_Traveler"), type: "Sword", - effect: 1455, + effect: 1461, configs: null, @@ -814,7 +814,7 @@ export default { SilverSword: { name: "SilverSword", internalName: "Sword_Silver", - nameLocale: 1668, + nameLocale: 1678, star: 2, url: imageUrl("Sword_Silver"), type: "Sword", @@ -828,7 +828,7 @@ export default { DullBlade: { name: "DullBlade", internalName: "Sword_Blunt", - nameLocale: 794, + nameLocale: 796, star: 1, url: imageUrl("Sword_Blunt"), type: "Sword", @@ -842,13 +842,13 @@ export default { HaranGeppakuFutsu: { name: "HaranGeppakuFutsu", internalName: "Sword_Amenoma", - nameLocale: 1077, + nameLocale: 1081, star: 5, url: imageUrl("Sword_Amenoma"), type: "Sword", - effect: 1451, + effect: 1457, configs: [ @@ -862,18 +862,18 @@ export default { CursedBlade: { name: "CursedBlade", internalName: "Sword_Youtou", - nameLocale: 1346, + nameLocale: 1351, star: 4, url: imageUrl("Sword_Youtou"), type: "Sword", - effect: 899, + effect: 901, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1494,"type":"float"}, ], @@ -882,7 +882,7 @@ export default { SapwoodBlade: { name: "SapwoodBlade", internalName: "Sword_Arakalari", - nameLocale: 344, + nameLocale: 345, star: 4, url: imageUrl("Sword_Arakalari"), type: "Sword", @@ -891,7 +891,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1494,"type":"float"}, ], @@ -900,18 +900,18 @@ export default { XiphosMoonlight: { name: "XiphosMoonlight", internalName: "Sword_Pleroma", - nameLocale: 1499, + nameLocale: 1507, star: 4, url: imageUrl("Sword_Pleroma"), type: "Sword", - effect: 1047, + effect: 1051, configs: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1494,"type":"float"}, ], @@ -920,18 +920,18 @@ export default { KeyOfKhajNisut: { name: "KeyOfKhajNisut", internalName: "Sword_Deshret", - nameLocale: 430, + nameLocale: 431, star: 5, url: imageUrl("Sword_Deshret"), type: "Sword", - effect: 1246, + effect: 1251, configs: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1488,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1495,"type":"float"}, ], @@ -946,12 +946,12 @@ export default { type: "Sword", - effect: 718, + effect: 720, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1494,"type":"float"}, ], @@ -960,7 +960,7 @@ export default { LightOfFoliarIncision: { name: "LightOfFoliarIncision", internalName: "Sword_Ayus", - nameLocale: 1490, + nameLocale: 1498, star: 5, url: imageUrl("Sword_Ayus"), type: "Sword", @@ -969,7 +969,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1494,"type":"float"}, ], @@ -978,7 +978,7 @@ export default { WolfFang: { name: "WolfFang", internalName: "Sword_Boreas", - nameLocale: 1181, + nameLocale: 1185, star: 4, url: imageUrl("Sword_Boreas"), type: "Sword", @@ -991,7 +991,7 @@ export default { {"default":0.0,"max":4.0,"min":0.0,"name":"e_stack","title":200,"type":"float"}, - {"default":0.0,"max":4.0,"min":0.0,"name":"q_stack","title":217,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"q_stack","title":218,"type":"float"}, ], @@ -1000,20 +1000,20 @@ export default { FinaleOfTheDeep: { name: "FinaleOfTheDeep", internalName: "Sword_Vorpal", - nameLocale: 1101, + nameLocale: 1105, star: 4, url: imageUrl("Sword_Vorpal"), type: "Sword", - effect: 768, + effect: 770, configs: [ - {"default":0.5,"max":1.0,"min":0.0,"name":"rate1","title":731,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"rate1","title":732,"type":"float"}, - {"default":0.5,"max":1.0,"min":0.0,"name":"rate2","title":732,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"rate2","title":734,"type":"float"}, ], @@ -1022,7 +1022,7 @@ export default { FleuveCendreFerryman: { name: "FleuveCendreFerryman", internalName: "Sword_Machination", - nameLocale: 1139, + nameLocale: 1143, star: 4, url: imageUrl("Sword_Machination"), type: "Sword", @@ -1033,7 +1033,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1494,"type":"float"}, ], @@ -1042,18 +1042,18 @@ export default { WolfsGravestone: { name: "WolfsGravestone", internalName: "Claymore_Wolfmound", - nameLocale: 1182, + nameLocale: 1186, star: 5, url: imageUrl("Claymore_Wolfmound"), type: "Claymore", - effect: 714, + effect: 716, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1494,"type":"float"}, ], @@ -1062,13 +1062,13 @@ export default { SkywardPride: { name: "SkywardPride", internalName: "Claymore_Dvalin", - nameLocale: 485, + nameLocale: 486, star: 5, url: imageUrl("Claymore_Dvalin"), type: "Claymore", - effect: 1615, + effect: 1624, configs: null, @@ -1078,20 +1078,20 @@ export default { TheUnforged: { name: "TheUnforged", internalName: "Claymore_Kunwu", - nameLocale: 789, + nameLocale: 791, star: 5, url: imageUrl("Claymore_Kunwu"), type: "Claymore", - effect: 681, + effect: 683, configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1488,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1495,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":683,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":686,"type":"float"}, ], @@ -1100,18 +1100,18 @@ export default { SongOfBrokenPines: { name: "SongOfBrokenPines", internalName: "Claymore_Widsith", - nameLocale: 1009, + nameLocale: 1013, star: 5, url: imageUrl("Claymore_Widsith"), type: "Claymore", - effect: 1786, + effect: 1796, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1494,"type":"float"}, ], @@ -1120,13 +1120,13 @@ export default { RedhornStonethresher: { name: "RedhornStonethresher", internalName: "Claymore_Itadorimaru", - nameLocale: 1561, + nameLocale: 1569, star: 5, url: imageUrl("Claymore_Itadorimaru"), type: "Claymore", - effect: 1699, + effect: 1709, configs: null, @@ -1136,18 +1136,18 @@ export default { Akuoumaru: { name: "Akuoumaru", internalName: "Claymore_Maria", - nameLocale: 631, + nameLocale: 633, star: 4, url: imageUrl("Claymore_Maria"), type: "Claymore", - effect: 1680, + effect: 1690, configs: [ - {"default":40,"max":400,"min":40,"name":"energy","title":1685,"type":"int"}, + {"default":40,"max":400,"min":40,"name":"energy","title":1695,"type":"int"}, ], @@ -1156,13 +1156,13 @@ export default { RoyalGreatsword: { name: "RoyalGreatsword", internalName: "Claymore_Theocrat", - nameLocale: 544, + nameLocale: 545, star: 4, url: imageUrl("Claymore_Theocrat"), type: "Claymore", - effect: 723, + effect: 725, configs: null, @@ -1172,18 +1172,18 @@ export default { Whiteblind: { name: "Whiteblind", internalName: "Claymore_Exotic", - nameLocale: 1271, + nameLocale: 1276, star: 4, url: imageUrl("Claymore_Exotic"), type: "Claymore", - effect: 914, + effect: 917, configs: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1488,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1495,"type":"float"}, ], @@ -1192,18 +1192,18 @@ export default { TheBell: { name: "TheBell", internalName: "Claymore_Troupe", - nameLocale: 1658, + nameLocale: 1668, star: 4, url: imageUrl("Claymore_Troupe"), type: "Claymore", - effect: 349, + effect: 350, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1494,"type":"float"}, ], @@ -1212,13 +1212,13 @@ export default { SnowTombedStarsilver: { name: "SnowTombedStarsilver", internalName: "Claymore_Dragonfell", - nameLocale: 1722, + nameLocale: 1732, star: 4, url: imageUrl("Claymore_Dragonfell"), type: "Claymore", - effect: 900, + effect: 902, configs: null, @@ -1228,13 +1228,13 @@ export default { FavoniusGreatsword: { name: "FavoniusGreatsword", internalName: "Claymore_Zephyrus", - nameLocale: 1502, + nameLocale: 1510, star: 4, url: imageUrl("Claymore_Zephyrus"), type: "Claymore", - effect: 724, + effect: 726, configs: null, @@ -1244,13 +1244,13 @@ export default { KatsuragikiriNagamasa: { name: "KatsuragikiriNagamasa", internalName: "Claymore_Bakufu", - nameLocale: 1031, + nameLocale: 1035, star: 4, url: imageUrl("Claymore_Bakufu"), type: "Claymore", - effect: 215, + effect: 216, configs: null, @@ -1260,7 +1260,7 @@ export default { SacrificialGreatsword: { name: "SacrificialGreatsword", internalName: "Claymore_Fossil", - nameLocale: 1332, + nameLocale: 1337, star: 4, url: imageUrl("Claymore_Fossil"), type: "Claymore", @@ -1276,18 +1276,18 @@ export default { SerpentSpine: { name: "SerpentSpine", internalName: "Claymore_Kione", - nameLocale: 1476, + nameLocale: 1482, star: 4, url: imageUrl("Claymore_Kione"), type: "Claymore", - effect: 1513, + effect: 1521, configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1488,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1495,"type":"float"}, ], @@ -1296,18 +1296,18 @@ export default { BlackcliffSlasher: { name: "BlackcliffSlasher", internalName: "Claymore_Blackrock", - nameLocale: 1831, + nameLocale: 1847, star: 4, url: imageUrl("Claymore_Blackrock"), type: "Claymore", - effect: 291, + effect: 292, configs: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1488,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1495,"type":"float"}, ], @@ -1316,18 +1316,18 @@ export default { Rainslasher: { name: "Rainslasher", internalName: "Claymore_Perdue", - nameLocale: 1721, + nameLocale: 1731, star: 4, url: imageUrl("Claymore_Perdue"), type: "Claymore", - effect: 563, + effect: 564, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1494,"type":"float"}, ], @@ -1336,13 +1336,13 @@ export default { PrototypeArchaic: { name: "PrototypeArchaic", internalName: "Claymore_Proto", - nameLocale: 1533, + nameLocale: 1541, star: 4, url: imageUrl("Claymore_Proto"), type: "Claymore", - effect: 916, + effect: 919, configs: null, @@ -1352,13 +1352,13 @@ export default { LuxuriousSeaLord: { name: "LuxuriousSeaLord", internalName: "Claymore_MillenniaTuna", - nameLocale: 1483, + nameLocale: 1489, star: 4, url: imageUrl("Claymore_MillenniaTuna"), type: "Claymore", - effect: 220, + effect: 221, configs: null, @@ -1368,18 +1368,18 @@ export default { LithicBlade: { name: "LithicBlade", internalName: "Claymore_Lapis", - nameLocale: 326, + nameLocale: 327, star: 4, url: imageUrl("Claymore_Lapis"), type: "Claymore", - effect: 1683, + effect: 1693, configs: [ - {"default":0,"max":4,"min":0,"name":"liyue_count","title":1689,"type":"int"}, + {"default":0,"max":4,"min":0,"name":"liyue_count","title":1699,"type":"int"}, ], @@ -1388,18 +1388,18 @@ export default { SkyriderGreatsword: { name: "SkyriderGreatsword", internalName: "Claymore_Mitsurugi", - nameLocale: 1788, + nameLocale: 1798, star: 3, url: imageUrl("Claymore_Mitsurugi"), type: "Claymore", - effect: 915, + effect: 918, configs: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1488,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1495,"type":"float"}, ], @@ -1414,7 +1414,7 @@ export default { type: "Claymore", - effect: 761, + effect: 763, configs: null, @@ -1424,18 +1424,18 @@ export default { BloodstainedGreatsword: { name: "BloodstainedGreatsword", internalName: "Claymore_Siegfry", - nameLocale: 1065, + nameLocale: 1069, star: 3, url: imageUrl("Claymore_Siegfry"), type: "Claymore", - effect: 565, + effect: 566, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1494,"type":"float"}, ], @@ -1444,13 +1444,13 @@ export default { WhiteIronGreatsword: { name: "WhiteIronGreatsword", internalName: "Claymore_Tin", - nameLocale: 1281, + nameLocale: 1286, star: 3, url: imageUrl("Claymore_Tin"), type: "Claymore", - effect: 293, + effect: 294, configs: null, @@ -1460,18 +1460,18 @@ export default { FerrousShadow: { name: "FerrousShadow", internalName: "Claymore_Glaive", - nameLocale: 1666, + nameLocale: 1676, star: 3, url: imageUrl("Claymore_Glaive"), type: "Claymore", - effect: 1242, + effect: 1247, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1494,"type":"float"}, ], @@ -1494,7 +1494,7 @@ export default { WasterGreatsword: { name: "WasterGreatsword", internalName: "Claymore_Aniki", - nameLocale: 1530, + nameLocale: 1538, star: 1, url: imageUrl("Claymore_Aniki"), type: "Claymore", @@ -1508,7 +1508,7 @@ export default { ForestRegalia: { name: "ForestRegalia", internalName: "Claymore_Arakalari", - nameLocale: 1035, + nameLocale: 1039, star: 4, url: imageUrl("Claymore_Arakalari"), type: "Claymore", @@ -1517,7 +1517,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1494,"type":"float"}, ], @@ -1526,18 +1526,18 @@ export default { MakhairaAquamarine: { name: "MakhairaAquamarine", internalName: "Claymore_Pleroma", - nameLocale: 1200, + nameLocale: 1205, star: 4, url: imageUrl("Claymore_Pleroma"), type: "Claymore", - effect: 1046, + effect: 1050, configs: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1494,"type":"float"}, ], @@ -1546,7 +1546,7 @@ export default { BeaconOfTheReedSea: { name: "BeaconOfTheReedSea", internalName: "Claymore_Deshret", - nameLocale: 1416, + nameLocale: 1422, star: 5, url: imageUrl("Claymore_Deshret"), type: "Claymore", @@ -1557,9 +1557,9 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate_atk","title":722,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate_atk","title":724,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate_hp","title":1252,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate_hp","title":1257,"type":"float"}, ], @@ -1568,7 +1568,7 @@ export default { MailedFlower: { name: "MailedFlower", internalName: "Claymore_Fleurfair", - nameLocale: 1794, + nameLocale: 1804, star: 4, url: imageUrl("Claymore_Fleurfair"), type: "Claymore", @@ -1579,7 +1579,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":607,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":608,"type":"float"}, ], @@ -1588,20 +1588,20 @@ export default { TalkingStick: { name: "TalkingStick", internalName: "Claymore_BeastTamer", - nameLocale: 1398, + nameLocale: 1404, star: 4, url: imageUrl("Claymore_BeastTamer"), type: "Claymore", - effect: 660, + effect: 662, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":1485,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":1491,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":1486,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":1492,"type":"float"}, ], @@ -1610,18 +1610,18 @@ export default { TidalShadow: { name: "TidalShadow", internalName: "Claymore_Vorpal", - nameLocale: 1093, + nameLocale: 1097, star: 4, url: imageUrl("Claymore_Vorpal"), type: "Claymore", - effect: 352, + effect: 353, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1494,"type":"float"}, ], @@ -1630,18 +1630,18 @@ export default { EngulfingLightning: { name: "EngulfingLightning", internalName: "Pole_Narukami", - nameLocale: 1471, + nameLocale: 1477, star: 5, url: imageUrl("Pole_Narukami"), type: "Polearm", - effect: 717, + effect: 719, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1494,"type":"float"}, ], @@ -1650,13 +1650,13 @@ export default { SkywardSpine: { name: "SkywardSpine", internalName: "Pole_Dvalin", - nameLocale: 489, + nameLocale: 490, star: 5, url: imageUrl("Pole_Dvalin"), type: "Polearm", - effect: 973, + effect: 976, configs: null, @@ -1666,20 +1666,20 @@ export default { PrimordialJadeWingedSpear: { name: "PrimordialJadeWingedSpear", internalName: "Pole_Morax", - nameLocale: 407, + nameLocale: 408, star: 5, url: imageUrl("Pole_Morax"), type: "Polearm", - effect: 393, + effect: 394, configs: [ - {"default":0.0,"max":7.0,"min":0.0,"name":"stack","title":1488,"type":"float"}, + {"default":0.0,"max":7.0,"min":0.0,"name":"stack","title":1495,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"full_rate","title":1128,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"full_rate","title":1132,"type":"float"}, ], @@ -1688,20 +1688,20 @@ export default { CalamityQueller: { name: "CalamityQueller", internalName: "Pole_Santika", - nameLocale: 630, + nameLocale: 632, star: 5, url: imageUrl("Pole_Santika"), type: "Polearm", - effect: 1450, + effect: 1456, 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":374,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"backend_rate","title":375,"type":"float"}, ], @@ -1710,18 +1710,18 @@ export default { StaffOfHoma: { name: "StaffOfHoma", internalName: "Pole_Homa", - nameLocale: 679, + nameLocale: 681, star: 5, url: imageUrl("Pole_Homa"), type: "Polearm", - effect: 1247, + effect: 1252, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"be50_rate","title":1240,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"be50_rate","title":1245,"type":"float"}, ], @@ -1730,20 +1730,20 @@ export default { VortexVanquisher: { name: "VortexVanquisher", internalName: "Pole_Kunwu", - nameLocale: 1550, + nameLocale: 1558, star: 5, url: imageUrl("Pole_Kunwu"), type: "Polearm", - effect: 681, + effect: 683, configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1488,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1495,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":683,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":686,"type":"float"}, ], @@ -1752,18 +1752,18 @@ export default { PrototypeStarglitter: { name: "PrototypeStarglitter", internalName: "Pole_Proto", - nameLocale: 1535, + nameLocale: 1543, star: 4, url: imageUrl("Pole_Proto"), type: "Polearm", - effect: 762, + effect: 764, configs: [ - {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1488,"type":"float"}, + {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1495,"type":"float"}, ], @@ -1772,18 +1772,18 @@ export default { LithicSpear: { name: "LithicSpear", internalName: "Pole_Lapis", - nameLocale: 329, + nameLocale: 330, star: 4, url: imageUrl("Pole_Lapis"), type: "Polearm", - effect: 1682, + effect: 1692, configs: [ - {"default":0,"max":4,"min":0,"name":"liyue_count","title":1689,"type":"int"}, + {"default":0,"max":4,"min":0,"name":"liyue_count","title":1699,"type":"int"}, ], @@ -1792,13 +1792,13 @@ export default { KitainCrossSpear: { name: "KitainCrossSpear", internalName: "Pole_Bakufu", - nameLocale: 411, + nameLocale: 412, star: 4, url: imageUrl("Pole_Bakufu"), type: "Polearm", - effect: 215, + effect: 216, configs: null, @@ -1814,7 +1814,7 @@ export default { type: "Polearm", - effect: 221, + effect: 222, configs: null, @@ -1824,13 +1824,13 @@ export default { FavoniusLance: { name: "FavoniusLance", internalName: "Pole_Zephyrus", - nameLocale: 1505, + nameLocale: 1513, star: 4, url: imageUrl("Pole_Zephyrus"), type: "Polearm", - effect: 724, + effect: 726, configs: null, @@ -1840,13 +1840,13 @@ export default { DragonspineSpear: { name: "DragonspineSpear", internalName: "Pole_Everfrost", - nameLocale: 1836, + nameLocale: 1852, star: 4, url: imageUrl("Pole_Everfrost"), type: "Polearm", - effect: 900, + effect: 902, configs: null, @@ -1856,18 +1856,18 @@ export default { DragonsBane: { name: "DragonsBane", internalName: "Pole_Stardust", - nameLocale: 323, + nameLocale: 324, star: 4, url: imageUrl("Pole_Stardust"), type: "Polearm", - effect: 561, + effect: 562, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1494,"type":"float"}, ], @@ -1876,18 +1876,18 @@ export default { Deathmatch: { name: "Deathmatch", internalName: "Pole_Gladiator", - nameLocale: 272, + nameLocale: 273, star: 4, url: imageUrl("Pole_Gladiator"), type: "Polearm", - effect: 1577, + effect: 1585, configs: [ - {"default":true,"name":"ge2","title":1576,"type":"bool"}, + {"default":true,"name":"ge2","title":1584,"type":"bool"}, ], @@ -1896,13 +1896,13 @@ export default { CrescentPike: { name: "CrescentPike", internalName: "Pole_Exotic", - nameLocale: 1085, + nameLocale: 1089, star: 4, url: imageUrl("Pole_Exotic"), type: "Polearm", - effect: 1452, + effect: 1458, configs: null, @@ -1912,18 +1912,18 @@ export default { BlackcliffPole: { name: "BlackcliffPole", internalName: "Pole_Blackrock", - nameLocale: 1829, + nameLocale: 1845, star: 4, url: imageUrl("Pole_Blackrock"), type: "Polearm", - effect: 292, + effect: 293, configs: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1488,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1495,"type":"float"}, ], @@ -1932,18 +1932,18 @@ export default { WavebreakersFin: { name: "WavebreakersFin", internalName: "Pole_Maria", - nameLocale: 754, + nameLocale: 756, star: 4, url: imageUrl("Pole_Maria"), type: "Polearm", - effect: 1680, + effect: 1690, configs: [ - {"default":40,"max":400,"min":40,"name":"energy","title":1685,"type":"int"}, + {"default":40,"max":400,"min":40,"name":"energy","title":1695,"type":"int"}, ], @@ -1952,13 +1952,13 @@ export default { RoyalSpear: { name: "RoyalSpear", internalName: "Pole_Theocrat", - nameLocale: 546, + nameLocale: 547, star: 4, url: imageUrl("Pole_Theocrat"), type: "Polearm", - effect: 723, + effect: 725, configs: null, @@ -1968,13 +1968,13 @@ export default { Halberd: { name: "Halberd", internalName: "Pole_Halberd", - nameLocale: 1664, + nameLocale: 1674, star: 3, url: imageUrl("Pole_Halberd"), type: "Polearm", - effect: 568, + effect: 569, configs: null, @@ -1984,18 +1984,18 @@ export default { BlackTassel: { name: "BlackTassel", internalName: "Pole_Noire", - nameLocale: 1834, + nameLocale: 1850, star: 3, url: imageUrl("Pole_Noire"), type: "Polearm", - effect: 558, + effect: 559, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1494,"type":"float"}, ], @@ -2004,13 +2004,13 @@ export default { WhiteTassel: { name: "WhiteTassel", internalName: "Pole_Ruby", - nameLocale: 1278, + nameLocale: 1283, star: 3, url: imageUrl("Pole_Ruby"), type: "Polearm", - effect: 921, + effect: 924, configs: null, @@ -2020,7 +2020,7 @@ export default { IronPoint: { name: "IronPoint", internalName: "Pole_Rod", - nameLocale: 1665, + nameLocale: 1675, star: 2, url: imageUrl("Pole_Rod"), type: "Polearm", @@ -2034,7 +2034,7 @@ export default { BeginnersProtector: { name: "BeginnersProtector", internalName: "Pole_Gewalt", - nameLocale: 756, + nameLocale: 758, star: 1, url: imageUrl("Pole_Gewalt"), type: "Polearm", @@ -2048,7 +2048,7 @@ export default { Moonpiercer: { name: "Moonpiercer", internalName: "Pole_Arakalari", - nameLocale: 1548, + nameLocale: 1556, star: 4, url: imageUrl("Pole_Arakalari"), type: "Polearm", @@ -2057,7 +2057,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1494,"type":"float"}, ], @@ -2066,18 +2066,18 @@ export default { MissiveWindspear: { name: "MissiveWindspear", internalName: "Pole_Windvane", - nameLocale: 1763, + nameLocale: 1773, star: 4, url: imageUrl("Pole_Windvane"), type: "Polearm", - effect: 1521, + effect: 1529, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1494,"type":"float"}, ], @@ -2086,18 +2086,18 @@ export default { StaffOfTheScarletSands: { name: "StaffOfTheScarletSands", internalName: "Pole_Deshret", - nameLocale: 1560, + nameLocale: 1568, star: 5, url: imageUrl("Pole_Deshret"), type: "Polearm", - effect: 448, + effect: 449, configs: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1488,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1495,"type":"float"}, ], @@ -2106,18 +2106,18 @@ export default { BalladOfTheFjords: { name: "BalladOfTheFjords", internalName: "Pole_Shanty", - nameLocale: 583, + nameLocale: 584, star: 4, url: imageUrl("Pole_Shanty"), type: "Polearm", - effect: 1679, + effect: 1689, configs: [ - {"default":true,"name":"use_effect","title":610,"type":"bool"}, + {"default":true,"name":"use_effect","title":611,"type":"bool"}, ], @@ -2126,13 +2126,13 @@ export default { RightfulReward: { name: "RightfulReward", internalName: "Pole_Vorpal", - nameLocale: 240, + nameLocale: 241, star: 4, url: imageUrl("Pole_Vorpal"), type: "Polearm", - effect: 354, + effect: 355, configs: null, @@ -2142,18 +2142,18 @@ export default { LostPrayerToTheSacredWinds: { name: "LostPrayerToTheSacredWinds", internalName: "Catalyst_Fourwinds", - nameLocale: 425, + nameLocale: 426, star: 5, url: imageUrl("Catalyst_Fourwinds"), type: "Catalyst", - effect: 1341, + effect: 1346, configs: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1488,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1495,"type":"float"}, ], @@ -2162,7 +2162,7 @@ export default { SkywardAtlas: { name: "SkywardAtlas", internalName: "Catalyst_Dvalin", - nameLocale: 487, + nameLocale: 488, star: 5, url: imageUrl("Catalyst_Dvalin"), type: "Catalyst", @@ -2184,7 +2184,7 @@ export default { type: "Catalyst", - effect: 1070, + effect: 1074, configs: null, @@ -2194,20 +2194,20 @@ export default { MemoryOfDust: { name: "MemoryOfDust", internalName: "Catalyst_Kunwu", - nameLocale: 576, + nameLocale: 577, star: 5, url: imageUrl("Catalyst_Kunwu"), type: "Catalyst", - effect: 681, + effect: 683, configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1488,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1495,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":683,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":686,"type":"float"}, ], @@ -2216,18 +2216,18 @@ export default { WindAndSong: { name: "WindAndSong", internalName: "Catalyst_Outlaw", - nameLocale: 964, + nameLocale: 967, star: 4, url: imageUrl("Catalyst_Outlaw"), type: "Catalyst", - effect: 912, + effect: 915, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1494,"type":"float"}, ], @@ -2236,22 +2236,22 @@ export default { TheWidsith: { name: "TheWidsith", internalName: "Catalyst_Troupe", - nameLocale: 1087, + nameLocale: 1091, star: 4, url: imageUrl("Catalyst_Troupe"), type: "Catalyst", - effect: 1514, + effect: 1522, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"t1_rate","title":552,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"t1_rate","title":553,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"t2_rate","title":408,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"t2_rate","title":409,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"t3_rate","title":1675,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"t3_rate","title":1685,"type":"float"}, ], @@ -2260,20 +2260,20 @@ export default { SolarPearl: { name: "SolarPearl", internalName: "Catalyst_Resurrection", - nameLocale: 322, + nameLocale: 323, star: 4, url: imageUrl("Catalyst_Resurrection"), type: "Catalyst", - effect: 909, + effect: 912, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":727,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":729,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":729,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":731,"type":"float"}, ], @@ -2282,7 +2282,7 @@ export default { SacrificialFragments: { name: "SacrificialFragments", internalName: "Catalyst_Fossil", - nameLocale: 1334, + nameLocale: 1339, star: 4, url: imageUrl("Catalyst_Fossil"), type: "Catalyst", @@ -2298,13 +2298,13 @@ export default { RoyalGrimoire: { name: "RoyalGrimoire", internalName: "Catalyst_Theocrat", - nameLocale: 547, + nameLocale: 548, star: 4, url: imageUrl("Catalyst_Theocrat"), type: "Catalyst", - effect: 723, + effect: 725, configs: null, @@ -2314,13 +2314,13 @@ export default { PrototypeAmber: { name: "PrototypeAmber", internalName: "Catalyst_Proto", - nameLocale: 1537, + nameLocale: 1545, star: 4, url: imageUrl("Catalyst_Proto"), type: "Catalyst", - effect: 770, + effect: 772, configs: null, @@ -2336,12 +2336,12 @@ export default { type: "Catalyst", - effect: 1522, + effect: 1530, configs: [ - {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1488,"type":"float"}, + {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1495,"type":"float"}, ], @@ -2350,13 +2350,13 @@ export default { HakushinRing: { name: "HakushinRing", internalName: "Catalyst_Bakufu", - nameLocale: 1279, + nameLocale: 1284, star: 4, url: imageUrl("Catalyst_Bakufu"), type: "Catalyst", - effect: 1498, + effect: 1506, configs: null, @@ -2366,13 +2366,13 @@ export default { Frostbearer: { name: "Frostbearer", internalName: "Catalyst_Everfrost", - nameLocale: 626, + nameLocale: 628, star: 4, url: imageUrl("Catalyst_Everfrost"), type: "Catalyst", - effect: 900, + effect: 902, configs: null, @@ -2382,13 +2382,13 @@ export default { FavoniusCodex: { name: "FavoniusCodex", internalName: "Catalyst_Zephyrus", - nameLocale: 1504, + nameLocale: 1512, star: 4, url: imageUrl("Catalyst_Zephyrus"), type: "Catalyst", - effect: 724, + effect: 726, configs: null, @@ -2398,13 +2398,13 @@ export default { EyeOfPerception: { name: "EyeOfPerception", internalName: "Catalyst_Truelens", - nameLocale: 808, + nameLocale: 810, star: 4, url: imageUrl("Catalyst_Truelens"), type: "Catalyst", - effect: 902, + effect: 904, configs: null, @@ -2414,20 +2414,20 @@ export default { DodocoTales: { name: "DodocoTales", internalName: "Catalyst_Ludiharpastum", - nameLocale: 414, + nameLocale: 415, star: 4, url: imageUrl("Catalyst_Ludiharpastum"), type: "Catalyst", - effect: 911, + effect: 914, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":727,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":729,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":729,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":731,"type":"float"}, ], @@ -2436,18 +2436,18 @@ export default { BlackcliffAgate: { name: "BlackcliffAgate", internalName: "Catalyst_Blackrock", - nameLocale: 1832, + nameLocale: 1848, star: 4, url: imageUrl("Catalyst_Blackrock"), type: "Catalyst", - effect: 292, + effect: 293, configs: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1488,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1495,"type":"float"}, ], @@ -2456,20 +2456,20 @@ export default { KagurasVerity: { name: "KagurasVerity", internalName: "Catalyst_Narukami", - nameLocale: 1307, + nameLocale: 1312, star: 5, url: imageUrl("Catalyst_Narukami"), type: "Catalyst", - effect: 766, + effect: 768, configs: [ - {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1488,"type":"float"}, + {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1495,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"full_rate","title":1127,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"full_rate","title":1131,"type":"float"}, ], @@ -2478,18 +2478,18 @@ export default { OathswornEye: { name: "OathswornEye", internalName: "Catalyst_Jyanome", - nameLocale: 1531, + nameLocale: 1539, star: 4, url: imageUrl("Catalyst_Jyanome"), type: "Catalyst", - effect: 759, + effect: 761, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1494,"type":"float"}, ], @@ -2498,18 +2498,18 @@ export default { MagicGuide: { name: "MagicGuide", internalName: "Catalyst_Intro", - nameLocale: 1813, + nameLocale: 1823, star: 3, url: imageUrl("Catalyst_Intro"), type: "Catalyst", - effect: 562, + effect: 563, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1494,"type":"float"}, ], @@ -2518,13 +2518,13 @@ export default { OtherworldlyStory: { name: "OtherworldlyStory", internalName: "Catalyst_Lightnov", - nameLocale: 611, + nameLocale: 612, star: 3, url: imageUrl("Catalyst_Lightnov"), type: "Catalyst", - effect: 1453, + effect: 1459, configs: null, @@ -2534,18 +2534,18 @@ export default { EmeraldOrb: { name: "EmeraldOrb", internalName: "Catalyst_Jade", - nameLocale: 1396, + nameLocale: 1401, star: 3, url: imageUrl("Catalyst_Jade"), type: "Catalyst", - effect: 1525, + effect: 1533, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1494,"type":"float"}, ], @@ -2554,7 +2554,7 @@ export default { ThrillingTalesOfDragonSlayers: { name: "ThrillingTalesOfDragonSlayers", internalName: "Catalyst_Pulpfic", - nameLocale: 1528, + nameLocale: 1536, star: 3, url: imageUrl("Catalyst_Pulpfic"), type: "Catalyst", @@ -2570,18 +2570,18 @@ export default { TwinNephrite: { name: "TwinNephrite", internalName: "Catalyst_Phoney", - nameLocale: 1256, + nameLocale: 1261, star: 3, url: imageUrl("Catalyst_Phoney"), type: "Catalyst", - effect: 290, + effect: 291, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1494,"type":"float"}, ], @@ -2590,7 +2590,7 @@ export default { PocketGrimoire: { name: "PocketGrimoire", internalName: "Catalyst_Pocket", - nameLocale: 361, + nameLocale: 362, star: 2, url: imageUrl("Catalyst_Pocket"), type: "Catalyst", @@ -2604,7 +2604,7 @@ export default { ApprenticesNotes: { name: "ApprenticesNotes", internalName: "Catalyst_Apprentice", - nameLocale: 531, + nameLocale: 532, star: 1, url: imageUrl("Catalyst_Apprentice"), type: "Catalyst", @@ -2618,7 +2618,7 @@ export default { FruitOfFulfillment: { name: "FruitOfFulfillment", internalName: "Catalyst_Arakalari", - nameLocale: 1282, + nameLocale: 1287, star: 4, url: imageUrl("Catalyst_Arakalari"), type: "Catalyst", @@ -2627,7 +2627,7 @@ export default { configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1488,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1495,"type":"float"}, ], @@ -2636,18 +2636,18 @@ export default { WanderingEvenstar: { name: "WanderingEvenstar", internalName: "Catalyst_Pleroma", - nameLocale: 1089, + nameLocale: 1093, star: 4, url: imageUrl("Catalyst_Pleroma"), type: "Catalyst", - effect: 1046, + effect: 1050, configs: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1494,"type":"float"}, ], @@ -2656,18 +2656,18 @@ export default { AThousandFloatingDreams: { name: "AThousandFloatingDreams", internalName: "Catalyst_Ayus", - nameLocale: 325, + nameLocale: 326, star: 5, url: imageUrl("Catalyst_Ayus"), type: "Catalyst", - effect: 1681, + effect: 1691, configs: [ - {"default":1,"max":3,"min":0,"name":"same_count","title":373,"type":"int"}, + {"default":1,"max":3,"min":0,"name":"same_count","title":374,"type":"int"}, {"default":2,"max":3,"min":0,"name":"diff_count","title":89,"type":"int"}, @@ -2678,18 +2678,18 @@ export default { TulaytullahsRemembrance: { name: "TulaytullahsRemembrance", internalName: "Catalyst_Alaya", - nameLocale: 426, + nameLocale: 427, star: 5, url: imageUrl("Catalyst_Alaya"), type: "Catalyst", - effect: 919, + effect: 922, configs: [ - {"default":7.0,"max":10.0,"min":0.0,"name":"stack","title":1488,"type":"float"}, + {"default":7.0,"max":10.0,"min":0.0,"name":"stack","title":1495,"type":"float"}, ], @@ -2698,18 +2698,18 @@ export default { JadeFallsSplendor: { name: "JadeFallsSplendor", internalName: "Catalyst_Morax", - nameLocale: 1301, + nameLocale: 1306, star: 5, url: imageUrl("Catalyst_Morax"), type: "Catalyst", - effect: 776, + effect: 778, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1494,"type":"float"}, ], @@ -2718,18 +2718,18 @@ export default { SacrificialJade: { name: "SacrificialJade", internalName: "", - nameLocale: 1621, + nameLocale: 1631, star: 4, url: imageUrl(""), type: "Catalyst", - effect: 458, + effect: 459, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1494,"type":"float"}, ], @@ -2738,20 +2738,20 @@ export default { FlowingPurity: { name: "FlowingPurity", internalName: "Catalyst_Vorpal", - nameLocale: 1360, + nameLocale: 1365, star: 4, url: imageUrl("Catalyst_Vorpal"), type: "Catalyst", - effect: 767, + effect: 769, configs: [ - {"default":0.5,"max":1.0,"min":0.0,"name":"rate1","title":731,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"rate1","title":732,"type":"float"}, - {"default":0.5,"max":1.0,"min":0.0,"name":"rate2","title":732,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"rate2","title":734,"type":"float"}, ], @@ -2760,7 +2760,7 @@ export default { PolarStar: { name: "PolarStar", internalName: "Bow_Worldbane", - nameLocale: 259, + nameLocale: 260, star: 5, url: imageUrl("Bow_Worldbane"), type: "Bow", @@ -2780,13 +2780,13 @@ export default { ThunderingPulse: { name: "ThunderingPulse", internalName: "Bow_Narukami", - nameLocale: 1791, + nameLocale: 1801, star: 5, url: imageUrl("Bow_Narukami"), type: "Bow", - effect: 712, + effect: 714, configs: [ @@ -2800,18 +2800,18 @@ export default { ElegyOfTheEnd: { name: "ElegyOfTheEnd", internalName: "Bow_Widsith", - nameLocale: 1367, + nameLocale: 1372, star: 5, url: imageUrl("Bow_Widsith"), type: "Bow", - effect: 1785, + effect: 1795, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1494,"type":"float"}, ], @@ -2820,13 +2820,13 @@ export default { SkywardHarp: { name: "SkywardHarp", internalName: "Bow_Dvalin", - nameLocale: 488, + nameLocale: 489, star: 5, url: imageUrl("Bow_Dvalin"), type: "Bow", - effect: 968, + effect: 971, configs: null, @@ -2836,18 +2836,18 @@ export default { AmosBow: { name: "AmosBow", internalName: "Bow_Amos", - nameLocale: 1703, + nameLocale: 1713, star: 5, url: imageUrl("Bow_Amos"), type: "Bow", - effect: 906, + effect: 908, configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1488,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1495,"type":"float"}, ], @@ -2856,18 +2856,18 @@ export default { AlleyHunter: { name: "AlleyHunter", internalName: "Bow_Outlaw", - nameLocale: 963, + nameLocale: 966, star: 4, url: imageUrl("Bow_Outlaw"), type: "Bow", - effect: 1484, + effect: 1490, configs: [ - {"default":0.0,"max":10.0,"min":0.0,"name":"stack","title":1488,"type":"float"}, + {"default":0.0,"max":10.0,"min":0.0,"name":"stack","title":1495,"type":"float"}, ], @@ -2876,13 +2876,13 @@ export default { TheViridescentHunt: { name: "TheViridescentHunt", internalName: "Bow_Viridescent", - nameLocale: 1421, + nameLocale: 1427, star: 4, url: imageUrl("Bow_Viridescent"), type: "Bow", - effect: 903, + effect: 905, configs: null, @@ -2892,7 +2892,7 @@ export default { TheStringless: { name: "TheStringless", internalName: "Bow_Troupe", - nameLocale: 1372, + nameLocale: 1377, star: 4, url: imageUrl("Bow_Troupe"), type: "Bow", @@ -2908,7 +2908,7 @@ export default { SacrificialBow: { name: "SacrificialBow", internalName: "Bow_Fossil", - nameLocale: 1333, + nameLocale: 1338, star: 4, url: imageUrl("Bow_Fossil"), type: "Bow", @@ -2924,13 +2924,13 @@ export default { Rust: { name: "Rust", internalName: "Bow_Recluse", - nameLocale: 613, + nameLocale: 614, star: 4, url: imageUrl("Bow_Recluse"), type: "Bow", - effect: 922, + effect: 925, configs: null, @@ -2940,13 +2940,13 @@ export default { RoyalBow: { name: "RoyalBow", internalName: "Bow_Theocrat", - nameLocale: 550, + nameLocale: 551, star: 4, url: imageUrl("Bow_Theocrat"), type: "Bow", - effect: 723, + effect: 725, configs: null, @@ -2956,7 +2956,7 @@ export default { Predator: { name: "Predator", internalName: "Bow_Predator", - nameLocale: 699, + nameLocale: 701, star: 4, url: imageUrl("Bow_Predator"), type: "Bow", @@ -2967,7 +2967,7 @@ export default { configs: [ - {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1488,"type":"float"}, + {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1495,"type":"float"}, ], @@ -2976,18 +2976,18 @@ export default { PrototypeCrescent: { name: "PrototypeCrescent", internalName: "Bow_Proto", - nameLocale: 1536, + nameLocale: 1544, star: 4, url: imageUrl("Bow_Proto"), type: "Bow", - effect: 1651, + effect: 1661, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1494,"type":"float"}, ], @@ -2996,18 +2996,18 @@ export default { MouunsMoon: { name: "MouunsMoon", internalName: "Bow_Maria", - nameLocale: 979, + nameLocale: 982, star: 4, url: imageUrl("Bow_Maria"), type: "Bow", - effect: 1680, + effect: 1690, configs: [ - {"default":40,"max":400,"min":40,"name":"energy","title":1685,"type":"int"}, + {"default":40,"max":400,"min":40,"name":"energy","title":1695,"type":"int"}, ], @@ -3016,20 +3016,20 @@ export default { MitternachtsWaltz: { name: "MitternachtsWaltz", internalName: "Bow_Nachtblind", - nameLocale: 602, + nameLocale: 603, star: 4, url: imageUrl("Bow_Nachtblind"), type: "Bow", - effect: 910, + effect: 913, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":727,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":729,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":729,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":731,"type":"float"}, ], @@ -3038,18 +3038,18 @@ export default { Hamayumi: { name: "Hamayumi", internalName: "Bow_Bakufu", - nameLocale: 1300, + nameLocale: 1305, star: 4, url: imageUrl("Bow_Bakufu"), type: "Bow", - effect: 920, + effect: 923, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1494,"type":"float"}, ], @@ -3058,13 +3058,13 @@ export default { FavoniusWarbow: { name: "FavoniusWarbow", internalName: "Bow_Zephyrus", - nameLocale: 1503, + nameLocale: 1511, star: 4, url: imageUrl("Bow_Zephyrus"), type: "Bow", - effect: 724, + effect: 726, configs: null, @@ -3074,18 +3074,18 @@ export default { CompoundBow: { name: "CompoundBow", internalName: "Bow_Exotic", - nameLocale: 1663, + nameLocale: 1673, star: 4, url: imageUrl("Bow_Exotic"), type: "Bow", - effect: 901, + effect: 903, configs: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1488,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1495,"type":"float"}, ], @@ -3094,18 +3094,18 @@ export default { BlackcliffWarbow: { name: "BlackcliffWarbow", internalName: "Bow_Blackrock", - nameLocale: 1830, + nameLocale: 1846, star: 4, url: imageUrl("Bow_Blackrock"), type: "Bow", - effect: 292, + effect: 293, configs: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1488,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1495,"type":"float"}, ], @@ -3114,18 +3114,18 @@ export default { WindblumeOde: { name: "WindblumeOde", internalName: "Bow_Fleurfair", - nameLocale: 1771, + nameLocale: 1781, star: 4, url: imageUrl("Bow_Fleurfair"), type: "Bow", - effect: 769, + effect: 771, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1494,"type":"float"}, ], @@ -3134,18 +3134,18 @@ export default { RavenBow: { name: "RavenBow", internalName: "Bow_Crowfeather", - nameLocale: 1818, + nameLocale: 1828, star: 3, url: imageUrl("Bow_Crowfeather"), type: "Bow", - effect: 560, + effect: 561, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1494,"type":"float"}, ], @@ -3154,13 +3154,13 @@ export default { RecurveBow: { name: "RecurveBow", internalName: "Bow_Curve", - nameLocale: 346, + nameLocale: 347, star: 3, url: imageUrl("Bow_Curve"), type: "Bow", - effect: 293, + effect: 294, configs: null, @@ -3176,7 +3176,7 @@ export default { type: "Bow", - effect: 1652, + effect: 1662, configs: null, @@ -3186,18 +3186,18 @@ export default { SharpshootersOath: { name: "SharpshootersOath", internalName: "Bow_Arjuna", - nameLocale: 1310, + nameLocale: 1315, star: 3, url: imageUrl("Bow_Arjuna"), type: "Bow", - effect: 1657, + effect: 1667, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1494,"type":"float"}, ], @@ -3206,20 +3206,20 @@ export default { Slingshot: { name: "Slingshot", internalName: "Bow_Sling", - nameLocale: 615, + nameLocale: 616, star: 3, url: imageUrl("Bow_Sling"), type: "Bow", - effect: 904, + effect: 906, configs: [ {"default":true,"name":"is_effect","title":1,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1494,"type":"float"}, ], @@ -3228,7 +3228,7 @@ export default { SeasonedHuntersBow: { name: "SeasonedHuntersBow", internalName: "Bow_Old", - nameLocale: 342, + nameLocale: 343, star: 2, url: imageUrl("Bow_Old"), type: "Bow", @@ -3242,7 +3242,7 @@ export default { HuntersBow: { name: "HuntersBow", internalName: "Bow_Hunters", - nameLocale: 1190, + nameLocale: 1195, star: 1, url: imageUrl("Bow_Hunters"), type: "Bow", @@ -3256,18 +3256,18 @@ export default { AquaSimulacra: { name: "AquaSimulacra", internalName: "Bow_Kirin", - nameLocale: 1423, + nameLocale: 1429, star: 5, url: imageUrl("Bow_Kirin"), type: "Bow", - effect: 1245, + effect: 1250, configs: [ - {"default":true,"name":"is_enemy_around","title":392,"type":"bool"}, + {"default":true,"name":"is_enemy_around","title":393,"type":"bool"}, ], @@ -3276,18 +3276,18 @@ export default { FadingTwilight: { name: "FadingTwilight", internalName: "Bow_Fallensun", - nameLocale: 1465, + nameLocale: 1471, star: 4, url: imageUrl("Bow_Fallensun"), type: "Bow", - effect: 251, + effect: 252, configs: [ - {"default":2,"name":"state","options":["夕暮","流霞","朝晖"],"title":1178,"type":"option"}, + {"default":2,"name":"state","options":["夕暮","流霞","朝晖"],"title":1182,"type":"option"}, ], @@ -3296,18 +3296,18 @@ export default { HuntersPath: { name: "HuntersPath", internalName: "Bow_Ayus", - nameLocale: 1188, + nameLocale: 1192, star: 5, url: imageUrl("Bow_Ayus"), type: "Bow", - effect: 1448, + effect: 1454, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1494,"type":"float"}, ], @@ -3316,13 +3316,13 @@ export default { Trawler: { name: "Trawler", internalName: "Bow_Fin", - nameLocale: 1344, + nameLocale: 1349, star: 4, url: imageUrl("Bow_Fin"), type: "Bow", - effect: 760, + effect: 762, configs: null, @@ -3332,7 +3332,7 @@ export default { KingsSquire: { name: "KingsSquire", internalName: "Bow_Arakalari", - nameLocale: 1199, + nameLocale: 1204, star: 4, url: imageUrl("Bow_Arakalari"), type: "Bow", @@ -3341,7 +3341,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1494,"type":"float"}, ], @@ -3350,18 +3350,18 @@ export default { IbisPiercer: { name: "IbisPiercer", internalName: "Bow_Ibis", - nameLocale: 1819, + nameLocale: 1829, star: 4, url: imageUrl("Bow_Ibis"), type: "Bow", - effect: 1644, + effect: 1654, configs: [ - {"default":2.0,"max":2.0,"min":0.0,"name":"stack","title":577,"type":"float"}, + {"default":2.0,"max":2.0,"min":0.0,"name":"stack","title":578,"type":"float"}, ], @@ -3370,20 +3370,20 @@ export default { TheFirstGreatMagic: { name: "TheFirstGreatMagic", internalName: "Bow_Pledge", - nameLocale: 980, + nameLocale: 983, star: 5, url: imageUrl("Bow_Pledge"), type: "Bow", - effect: 1653, + effect: 1663, configs: [ - {"default":1.0,"max":3.0,"min":0.0,"name":"same_count","title":1686,"type":"float"}, + {"default":1.0,"max":3.0,"min":0.0,"name":"same_count","title":1696,"type":"float"}, - {"default":0.0,"max":3.0,"min":0.0,"name":"diff_count","title":1676,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"diff_count","title":1687,"type":"float"}, ], @@ -3392,18 +3392,18 @@ export default { ScionOfTheBlazingSun: { name: "ScionOfTheBlazingSun", internalName: "Bow_Gurabad", - nameLocale: 1157, + nameLocale: 1161, star: 4, url: imageUrl("Bow_Gurabad"), type: "Bow", - effect: 1645, + effect: 1655, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1494,"type":"float"}, ], @@ -3412,18 +3412,18 @@ export default { SongOfStillness: { name: "SongOfStillness", internalName: "Bow_Vorpal", - nameLocale: 1755, + nameLocale: 1765, star: 4, url: imageUrl("Bow_Vorpal"), type: "Bow", - effect: 353, + effect: 354, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1487,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1494,"type":"float"}, ], diff --git a/src/i18n/generated/en.json b/src/i18n/generated/en.json index f55bfa27..d88c03ba 100644 --- a/src/i18n/generated/en.json +++ b/src/i18n/generated/en.json @@ -59,8 +59,8 @@ "Charge Level 1 DMG", "Charge Level 1 DMG-1", "Charge Level 1 DMG-2", - "Level 1 Aimed Shot", "Aimed Shot Charge Level 1", + "Level 1 Aimed Shot", "Level 1 Shattering Pressure DMG (Cryo)", "Level 1 Shattering Pressure DMG (Physical)", "Qiqi", @@ -214,6 +214,7 @@ "Elemental Skill DMG is increased by 40%-50%-60%-70%-80% of DEF. The effect will be triggered no more than once every 1.5s and will be cleared 0.1s after the Elemental Skill deals DMG.", "Increases Elemental Skill DMG by 16%-20%-24%-28%-32% and Elemental Skill CRIT Rate by 6%-7.5%-9%-10.5%-12%.", "Increases Elemental Skill DMG by 20%.", + "Increases Elemental Skill DMG by 25%. Additionally, when not on the field, Elemental Skill DMG will be further increased by 25%. This effect will be cleared 2s after taking the field.", "Increases Elemental Skill DMG by 6%-7.5%-9%-10.5%-12%. After Elemental Skill hits an opponent, the character loses 3 Energy but regenerates 3-3.5-4-4.5-5 Energy every 2s for the next 6s. This effect can occur once every 10s. Can be triggered even when the character is not on the field.", "Elemental Burst Times", "Q Hit Stack", @@ -225,9 +226,9 @@ "Elemental Mastery", "EM", "元素精通提升50点。触发燃烧、原激化、绽放反应后,队伍中附近的所有角色元素精通提升30点,持续6秒。触发超激化、蔓激化、超绽放、烈绽放反应后,队伍中附近的所有角色元素精通提升20点,持续6秒。以上效果的持续时间独立计算。", - "Elemental Mastery +80", "Elemental Mastery +80.", "Increases Elemental Mastery by 80.", + "Elemental Mastery +80", "EM Valid", "EM Weight", "Energy Below 50%", @@ -393,9 +394,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", @@ -448,8 +449,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.", - "Base DMG", "Basic DMG", + "Base DMG", "Under Windfavored State", "Under「Raging Oni King」", "Under「Suiyuu」", @@ -586,8 +587,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", @@ -604,8 +605,8 @@ "Mitternachts Waltz", "Use C4", "Use Talent「Regina Probationum」", - "Rate", "Apply Ratio", + "Rate", "Equivalent Rate of Effect", "Niwabi Enshou", "Opening a chest regenerates 30% Max HP over 5s.", @@ -616,6 +617,7 @@ "Explosive Firework DMG", "Slingshot", "Feather of Homecoming", + "When current HP increases or decreases, CRIT Rate will be increased by 12% for 5s. Max 3 stacks.", "Skeletal Hat", "Vivid Shot DMG", "Vivid Shot DMG(Cryo)", @@ -682,8 +684,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", @@ -691,9 +693,9 @@ "DoT", "Continuous Regeneration", "Continuous Regeneration Per Sec", - "HP Regeneration Over Time", "Continuous Healing", "Continuous Regeneration", + "HP Regeneration Over Time", "Conductor's Top Hat", "DPS Yae Miko", "Swing DMG", @@ -729,8 +731,8 @@ "Effect1 Ratio", "Effect1 Equivalent Stack", "Effect2 Ratio", - "Effect① Ratio", "Effect 1 Rate", + "Effect① Ratio", "Effect 2 Rate", "Effect② Ratio", "Effect Apply Ratio", @@ -906,6 +908,7 @@ "If a Normal or Charged Attack hits a target within 0.3s of being fired, increases DMG by 36%-42%-48%-54%-60%. Otherwise, decreases DMG by 10%.", "Increases DMG dealt by Normal and Charged Attacks by 20%-25%-30%-35%-40%. Additionally, regenerates 60%-70%-80%-90%-100% of ATK as HP when Normal and Charged Attacks score a CRIT Hit. This effect can occur once every 5s.", "Increases Normal and Charged Attack DMG by 12%-15%-18%-21%-24%. After a Normal or Charged Attack is fired, DMG dealt increases by a further 8%-10%-12%-14%-16% every 0.1s the arrow is in the air for up to 5 times.", + "Normal and Charged Attack DMG +15%", "Increases Normal Attack and Charged Attack DMG by 15%.", "Normal Attack DMG", "Normal Attack hits increase Elemental Skill and Elemental Burst DMG by 20%-25%-30%-35%-40% for 6s. Likewise, Elemental Skill or Elemental Burst hits increase Normal Attack DMG by 20%-25%-30%-35%-40% for 6s.", @@ -1008,6 +1011,7 @@ "Sesshou Sakura DMG: Level 4", "Sesshou Sakura DMG: Level 2", "Echoes of an Offering", + "Masterpiece's Overture", "Song of Broken Pines", "Song of Broken Pines-「Millennial Movement: Banner-Hymn」", "Havoc: Obliteration", @@ -1071,8 +1075,8 @@ "Healing Bonus", "Healing Bonus increased by 10%-12.5%-15%-17.5%-20%, Normal Attack DMG is increased by 1%-1.5%-2%-2.5%-3% of the Max HP of the character equipping this weapon. For 12s after using an Elemental Burst, Normal Attacks that hit opponents will restore 0.6 Energy. Energy can be restored this way once every 0.1s.", "Healing Bonus +15%.", - "Healing", "Regeneration", + "Healing", "Faruzan-「The Wind’s Secret Ways」", "Faruzan Base ATK", "Illusory Bubble Explosion DMG", @@ -1150,8 +1154,8 @@ "Tap DMG", "Tapping DMG", "Press Skill DMG", - "Tap Skill DMG", "Tapping Skill DMG", + "Tap Skill DMG", "Fiery Collapse DMG", "Crimson Witch of Flames", "Flame-Mane’s Fist DMG", @@ -1168,12 +1172,12 @@ "Subjugation: Koukou Sendou", "Molten Inferno", "Buring Duration", - "Burst DMG", "Explosion DMG", + "Burst DMG", "Explosive Puppet", - "Explosion DMG", "", "Explosion DMG", + "Explosion DMG", "Physical DMG", "Maximize Crit or Avg Physical Damage", "Inuzaka All-Round Defense", @@ -1188,6 +1192,7 @@ "Soul Companion 2-Hit DMG", "Soul Companion 4-Hit DMG", "Hunter's Path", + "Hunter's Brooch", "Viridescent Arrow Feather", "Hunter's Bow", "Shadowhunter's Ambush", @@ -1397,6 +1402,7 @@ "Scholar of Vines", "Emerald Orb", "Flipclaw Strike DMG", + "Veteran's Visage", "Talking Stick", "Windmuster Iris DMG-Cryo", "Windmuster Iris DMG-Hydro", @@ -1486,9 +1492,11 @@ "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", "Avg Effect Stack", "Maiden Beloved", + "Moment of Judgment", "Light of Foliar Incision", "Feather of Judgment", "A character equipped with this Artifact set will obtain the Curiosity effect in the following conditions: When on the field, the character gains 1 stack after hitting an opponent with a Geo attack, triggering a maximum of once every 0.3s. When off the field, the character gains 1 stack every 3s. Curiosity can stack up to 4 times, each providing 6% DEF and a 6% Geo DMG Bonus. When 6 seconds pass without gaining a Curiosity stack, 1 stack is lost.", @@ -1613,6 +1621,7 @@ "Searing Onslaught", "Retracing Bolide", "Sundial of the Sojourner", + "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%", @@ -1620,6 +1629,7 @@ "Fashioner’s Tanglevine Shaft", "Triggered Burning, Bloom, Catalyze or Spread", "Frost-Weaved Dignity", + "Forgotten Vessel", "Sacrificial Jade", "Wine-Stained Tricorne", "Chongyun", @@ -1632,14 +1642,14 @@ "Charged Attack-4 Scarlet Seals", "Charged Attack-No Scarlet Seals", "Charged Attack DMG", - "Charged DMG-1", "Charged Attack DMG-1", + "Charged DMG-1", "Charged Attack-1", "Charnged DMG-1", - "Charged Attack DMG-2", + "Charged DMG-2", "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)", @@ -1675,8 +1685,8 @@ "Lightning DMG", "Shining Miracle♪", "「Interlude」Ratio", - "Diff Element Number", "Different Element Count", + "Diff Element Number", "Different Element Count", "When there are at least 3 different Elemental Types in your party, Elemental Mastery will be increased by 120-150-180-210-240.", "For every point of the entire party's combined maximum Energy capacity, the Elemental Burst DMG of the character equipping this weapon is increased by 0.12%-0.15%-0.18%-0.21%-0.24%. A maximum of 40%-50%-60%-70%-80% increased Elemental Burst DMG can be achieved this way.", @@ -1824,7 +1834,13 @@ "Shikanoin Heizou-Penetrative Reasoning", "Shikanoin Heizou-Analytical Harmony", "Shikanoin Heizou Talent: After Shikanoin Heizou's Heartstopper Strike hits an opponent, increases all party members' (excluding Shikanoin Heizou) Elemental Mastery by 80 for 10s.", + "Golden Night's Bustle", + "Golden Song's Variation", + "Golden Troupe", + "Golden Troupe's Reward", + "Golden Era's Prelude", "End of the Golden Realm", + "Golden Bird's Shedding", "Dawn", "Harbinger of Dawn", "The Black Sword", diff --git a/src/i18n/generated/zh-cn.json b/src/i18n/generated/zh-cn.json index e4a432fe..0b24dba1 100644 --- a/src/i18n/generated/zh-cn.json +++ b/src/i18n/generated/zh-cn.json @@ -214,6 +214,7 @@ "元素战技造成的伤害值提高,提高数值相当于防御力的40%-50%-60%-70%-80%。该效果每1.5秒最多触发一次,并将在元素战技造成伤害后的0.1秒后清除效果。", "元素战技造成的伤害增加16%-20%-24%-28%-32%,元素战技的暴击率提升6%-7.5%-9%-10.5%-12%。", "元素战技造成的伤害提升20%。", + "元素战技造成的伤害提升25%;此外,处于队伍后台时,元素战技造成的伤害还将进一步提升25%,该效果将在登场后2秒移除。", "元素战技造成的伤害提升6%-7.5%-9%-10.5%-12%。元素战技命中后,角色流失3点元素能量,并在此后的6秒内,每2秒恢复3-3.5-4-4.5-5点元素能量。该效果每10秒至多触发一次,角色处于队伍后台也能触发。", "元素爆发倍数", "元素爆发命中层数", @@ -616,6 +617,7 @@ "引爆礼花伤害", "弹弓", "归乡之羽", + "当前生命值提升或降低时,暴击率提升12%,该效果持续5秒,至多叠加3次。", "形骸之笠", "彩练术弹伤害", "彩练术弹伤害(冰)", @@ -906,6 +908,7 @@ "普通攻击与重击的箭矢若在发射后的0.3秒内击中敌人,则造成的伤害增加36%-42%-48%-54%-60%;否则,造成的伤害下降10%。", "普通攻击与重击的造成的伤害提升20%-25%-30%-35%-40%;此外,普通攻击与重击暴击时,回复等同于攻击力60%-70%-80%-90%-100%的生命值。该效果每5秒至多发动一次。", "普通攻击与重击造成的伤害提升12%-15%-18%-21%-24%;普通攻击与重击的箭矢发射后每经过0.1秒,伤害还会提升8%-10%-12%-14%-16%,至多提升5次。", + "普通攻击与重击造成的伤害提高15%。", "普通攻击与重击造成的伤害提高15%;", "普通攻击伤害", "普通攻击命中后的6秒内,元素战技与元素爆发的伤害提高20%-25%-30%-35%-40%;元素战技与元素爆发命中后的6秒内,普通攻击的伤害提高20%-25%-30%-35%-40%。", @@ -1008,6 +1011,7 @@ "杀生樱伤害·肆阶", "杀生樱伤害·贰阶", "来歆余响", + "杰作的序曲", "松籁响起之时", "松籁响起之时-「千年的大乐章·揭旗之歌」", "极恶技·尽灭闪", @@ -1188,6 +1192,7 @@ "狼魂-二段伤害", "狼魂-四段伤害", "猎人之径", + "猎人的胸花", "猎人青翠的箭羽", "猎弓", "猎影潜袭", @@ -1397,6 +1402,7 @@ "翠蔓的智者", "翡玉法球", "翻正爪击伤害", + "老兵的容颜", "聊聊棒", "聚风真眼伤害-冰", "聚风真眼伤害-水", @@ -1487,8 +1493,10 @@ "被动①比例", "被动②比例", "被动应用比例", + "被动应用比例", "被动等效层数", "被怜爱的少女", + "裁判的时刻", "裁叶萃光", "裁断的翎羽", "装备此圣遗物套装的角色在以下情况下,将获得「问答」效果:在场上用岩元素攻击命中敌人后获得一层,每0.3秒至多触发一次;在队伍后台中,每3秒获得一层。问答至多叠加4层,每层能提供6%防御力与6%岩元素伤害加成。每6秒,若未获得问答效果,将损失一层。", @@ -1613,6 +1621,7 @@ "逆焰之刃", "逆飞的流星", "逐光之石", + "逐影猎人", "造成元素伤害后的6秒内,角色造成的伤害提高6%-7.5%-9%-10.5%-12%,该效果最多叠加2层。该效果每1秒可以触发一次。", "造成的伤害提高8%-10%-12%-14%-16%;施放元素爆发后:普通攻击和重击命中时会发出真空刃,对路径上的敌人造成80%-100%-120%-140%-160%攻击力的伤害,持续20秒或直至发出8次真空刃。", "造成的物理伤害提高25%。", @@ -1620,6 +1629,7 @@ "造生缠藤箭", "造生缠藤箭触发了燃烧、绽放、原激化或蔓激化反应", "遍结寒霜的傲骨", + "遗忘的容器", "遗祀玉珑", "酒渍船帽", "重云", @@ -1824,7 +1834,13 @@ "鹿野院平藏-因由勘破", "鹿野院平藏-心朝乂安", "鹿野院平藏天赋2:勠心拳命中敌人后,队伍中所有角色(不包括鹿野院平藏自己)的元素精通提升80点,持续10秒。", + "黄金之夜的喧嚣", + "黄金乐曲的变奏", + "黄金剧团", + "黄金剧团的奖赏", + "黄金时代的先声", "黄金邦国的结末", + "黄金飞鸟的落羽", "黎明", "黎明神剑", "黑剑",

6Wyc-W|-j?Nn|xbl;gsIEbez}cc1d`&&t}z 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 M07*qoM6N<$g5a)ZZ~y=R literal 0 HcmV?d00001 From ead37f5ea32e75560b80bae9cd01174f124577e1 Mon Sep 17 00:00:00 2001 From: wormtql <584130248@qq.com> Date: Thu, 10 Aug 2023 21:24:38 +0800 Subject: [PATCH 2/7] feat(4.0): Add Freminet --- mona_core/src/character/character_config.rs | 1 + mona_core/src/character/character_name.rs | 1 + .../src/character/characters/anemo/lynette.rs | 2 +- .../src/character/characters/cryo/freminet.rs | 319 ++ .../src/character/characters/cryo/mod.rs | 2 + mona_core/src/character/skill_config.rs | 1 + .../target_functions/target_function_name.rs | 1 + .../target_functions/cryo/freminet_default.rs | 68 + .../target_functions/cryo/mod.rs | 2 + src/assets/_gen_artifact.js | 742 ++--- src/assets/_gen_buff.js | 570 ++-- src/assets/_gen_character.js | 2608 +++++++++-------- src/assets/_gen_pf.js | 40 +- src/assets/_gen_tf.js | 528 ++-- src/assets/_gen_weapon.js | 782 ++--- src/i18n/generated/en.json | 45 +- src/i18n/generated/zh-cn.json | 21 + src/images/characters/Freminet_splash.png | Bin 0 -> 55182 bytes 18 files changed, 3137 insertions(+), 2596 deletions(-) create mode 100644 mona_core/src/character/characters/cryo/freminet.rs create mode 100644 mona_core/src/target_functions/target_functions/cryo/freminet_default.rs create mode 100644 src/images/characters/Freminet_splash.png diff --git a/mona_core/src/character/character_config.rs b/mona_core/src/character/character_config.rs index 809d24dd..56374397 100644 --- a/mona_core/src/character/character_config.rs +++ b/mona_core/src/character/character_config.rs @@ -25,5 +25,6 @@ pub enum CharacterConfig { Kaveh { talent2_stack: f64, c2_rate: f64 }, Baizhu { hp_below_50: bool }, Lynette { talent1_rate: f64, talent1_count: usize, talent2_rate: f64 }, + Freminet { c4_stack: f64, c6_stack: f64 }, NoConfig, } \ No newline at end of file diff --git a/mona_core/src/character/character_name.rs b/mona_core/src/character/character_name.rs index 0a6435ec..230b0054 100644 --- a/mona_core/src/character/character_name.rs +++ b/mona_core/src/character/character_name.rs @@ -47,6 +47,7 @@ pub enum CharacterName { Eula, Faruzan, Fischl, + Freminet, Ganyu, Gorou, HuTao, diff --git a/mona_core/src/character/characters/anemo/lynette.rs b/mona_core/src/character/characters/anemo/lynette.rs index 7ce8e537..0941e942 100644 --- a/mona_core/src/character/characters/anemo/lynette.rs +++ b/mona_core/src/character/characters/anemo/lynette.rs @@ -285,6 +285,6 @@ impl CharacterTrait for Lynette { } fn get_target_function_by_role(role_index: usize, team: &TeamQuantization, c: &CharacterCommonData, w: &WeaponCommonData) -> Box { - unimplemented!(); + unimplemented!() } } \ No newline at end of file diff --git a/mona_core/src/character/characters/cryo/freminet.rs b/mona_core/src/character/characters/cryo/freminet.rs new file mode 100644 index 00000000..3478f57f --- /dev/null +++ b/mona_core/src/character/characters/cryo/freminet.rs @@ -0,0 +1,319 @@ +use crate::attribute::{Attribute, AttributeName, AttributeCommon}; +use crate::character::{CharacterConfig, CharacterName, CharacterStaticData}; +use crate::character::character_common_data::CharacterCommonData; +use crate::character::character_sub_stat::CharacterSubStatFamily; +use crate::character::macros::{damage_enum, damage_ratio, skill_map, skill_type}; +use crate::character::skill_config::CharacterSkillConfig; +use crate::character::traits::{CharacterSkillMap, CharacterSkillMapItem, CharacterTrait}; +use crate::common::{ChangeAttribute, Element, SkillType, StatName, WeaponType}; +use crate::common::i18n::{locale, hit_n_dmg, plunging_dmg, charged_dmg}; +use crate::common::item_config_type::{ItemConfig, ItemConfigType}; +use crate::damage::damage_builder::DamageBuilder; +use crate::damage::DamageContext; +use crate::target_functions::TargetFunction; +use crate::team::TeamQuantization; +use crate::weapon::weapon_common_data::WeaponCommonData; + +pub struct FreminetSkillType { + pub normal_dmg1: [f64; 15], + pub normal_dmg2: [f64; 15], + pub normal_dmg3: [f64; 15], + pub normal_dmg4: [f64; 15], + pub charged_dmg1: [f64; 15], + pub charged_dmg2: [f64; 15], + pub plunging_dmg1: [f64; 15], + pub plunging_dmg2: [f64; 15], + pub plunging_dmg3: [f64; 15], + + pub e_dmg1: [f64; 15], + pub e_dmg2: [f64; 15], + pub e_dmg_shatter0: [f64; 15], + pub e_dmg_shatter1_cryo: [f64; 15], + pub e_dmg_shatter1_physical: [f64; 15], + pub e_dmg_shatter2_cryo: [f64; 15], + pub e_dmg_shatter2_physical: [f64; 15], + pub e_dmg_shatter3_cryo: [f64; 15], + pub e_dmg_shatter3_physical: [f64; 15], + pub e_dmg_shatter4: [f64; 15], + pub e_dmg3: [f64; 15], + + pub q_dmg1: [f64; 15], +} + +pub const FREMINET_SKILL: FreminetSkillType = FreminetSkillType { + normal_dmg1: [0.8424, 0.9109, 0.9795, 1.0775, 1.146, 1.2244, 1.3321, 1.4399, 1.5476, 1.6652, 1.7827, 1.9002, 2.0178, 2.1353, 2.2529], + normal_dmg2: [0.8068, 0.8724, 0.9381, 1.0319, 1.0976, 1.1726, 1.2758, 1.379, 1.4822, 1.5948, 1.7073, 1.8199, 1.9325, 2.045, 2.1576], + normal_dmg3: [1.019, 1.102, 1.1849, 1.3034, 1.3864, 1.4812, 1.6115, 1.7418, 1.8722, 2.0144, 2.1566, 2.2988, 2.441, 2.5831, 2.7253], + normal_dmg4: [1.238, 1.3388, 1.4396, 1.5835, 1.6843, 1.7995, 1.9578, 2.1162, 2.2746, 2.4473, 2.6201, 2.7928, 2.9656, 3.1383, 3.3111], + charged_dmg1: [0.6252, 0.6761, 0.727, 0.7997, 0.8506, 0.9087, 0.9887, 1.0687, 1.1487, 1.2359, 1.3231, 1.4104, 1.4976, 1.5849, 1.6721], + charged_dmg2: [1.1309, 1.2229, 1.315, 1.4465, 1.5386, 1.6437, 1.7884, 1.9331, 2.0777, 2.2355, 2.3933, 2.5511, 2.7089, 2.8667, 3.0245], + plunging_dmg1: [0.7459, 0.8066, 0.8673, 0.954, 1.0147, 1.0841, 1.1795, 1.2749, 1.3703, 1.4744, 1.5785, 1.6826, 1.7866, 1.8907, 1.9948], + plunging_dmg2: [1.4914, 1.6128, 1.7342, 1.9077, 2.0291, 2.1678, 2.3586, 2.5493, 2.7401, 2.9482, 3.1563, 3.3644, 3.5725, 3.7806, 3.9887], + plunging_dmg3: [1.8629, 2.0145, 2.1662, 2.3828, 2.5344, 2.7077, 2.946, 3.1842, 3.4225, 3.6825, 3.9424, 4.2023, 4.4623, 4.7222, 4.9821], + e_dmg1: [0.8304, 0.8927, 0.955, 1.038, 1.1003, 1.1626, 1.2456, 1.3286, 1.4117, 1.4947, 1.5778, 1.6608, 1.7646, 1.8684, 1.9722], + e_dmg2: [0.0716, 0.077, 0.0823, 0.0895, 0.0949, 0.1002, 0.1074, 0.1146, 0.1217, 0.1289, 0.136, 0.1432, 0.1522, 0.1611, 0.17], + e_dmg_shatter0: [2.0048, 2.1552, 2.3055, 2.506, 2.6564, 2.8067, 3.0072, 3.2077, 3.4082, 3.6086, 3.8091, 4.0096, 4.2602, 4.5108, 4.7614], + e_dmg_shatter1_cryo: [1.0024, 1.0776, 1.1528, 1.253, 1.3282, 1.4034, 1.5036, 1.6038, 1.7041, 1.8043, 1.9046, 2.0048, 2.1301, 2.2554, 2.3807], + e_dmg_shatter1_physical: [0.4869, 0.5234, 0.5599, 0.6086, 0.6451, 0.6816, 0.7303, 0.779, 0.8277, 0.8764, 0.9251, 0.9738, 1.0346, 1.0955, 1.1563], + e_dmg_shatter2_cryo: [0.7017, 0.7543, 0.8069, 0.8771, 0.9297, 0.9824, 1.0525, 1.1227, 1.1929, 1.263, 1.3332, 1.4034, 1.4911, 1.5788, 1.6665], + e_dmg_shatter2_physical: [0.852, 0.9159, 0.9798, 1.0651, 1.129, 1.1929, 1.2781, 1.3633, 1.4485, 1.5337, 1.6189, 1.7041, 1.8106, 1.9171, 2.0236], + e_dmg_shatter3_cryo: [0.401, 0.431, 0.4611, 0.5012, 0.5313, 0.5613, 0.6014, 0.6415, 0.6816, 0.7217, 0.7618, 0.8019, 0.852, 0.9022, 0.9523], + e_dmg_shatter3_physical: [1.2172, 1.3085, 1.3998, 1.5215, 1.6128, 1.7041, 1.8258, 1.9475, 2.0692, 2.191, 2.3127, 2.4344, 2.5865, 2.7387, 2.8909], + e_dmg_shatter4: [2.4344, 2.617, 2.7996, 3.043, 3.2256, 3.4082, 3.6516, 3.895, 4.1385, 4.3819, 4.6254, 4.8688, 5.1731, 5.4774, 5.7817], + e_dmg3: [0.144, 0.1548, 0.1656, 0.18, 0.1908, 0.2016, 0.216, 0.2304, 0.2448, 0.2592, 0.2736, 0.288, 0.306, 0.324, 0.342], + q_dmg1: [3.184, 3.4228, 3.6616, 3.98, 4.2188, 4.4576, 4.776, 5.0944, 5.4128, 5.7312, 6.0496, 6.368, 6.766, 7.164, 7.562], +}; + +damage_enum!( + FreminetDamageEnum + Normal1 + Normal2 + Normal3 + Normal4 + Charged1 + Charged2 + Plunging1 + Plunging2 + Plunging3 + E1 + E2 + EShatter0 + EShatter1Cryo + EShatter1Physical + EShatter2Cryo + EShatter2Physical + EShatter3Cryo + EShatter3Physical + EShatter4 + E3 + Q1 + E2Mul2 +); + +impl FreminetDamageEnum { + pub fn get_skill_type(&self) -> SkillType { + use FreminetDamageEnum::*; + match *self { + Normal1 | Normal2 | Normal3 | Normal4 => SkillType::NormalAttack, + Charged1 | Charged2 => SkillType::ChargedAttack, + Plunging1 | Plunging2 | Plunging3 => SkillType::PlungingAttack, + E1 | E2 | EShatter0 | EShatter1Cryo | EShatter1Physical | EShatter2Cryo | EShatter2Physical + | EShatter3Cryo | EShatter3Physical | EShatter4 | E2Mul2 | E3 => SkillType::ElementalSkill, + Q1 => SkillType::ElementalBurst, + } + } + + pub fn get_element(&self) -> Element { + use FreminetDamageEnum::*; + match *self { + Normal1 | Normal2 | Normal3 | Normal4 | Charged1 | Charged2 | Plunging1 | Plunging2 | Plunging3 + | EShatter1Physical | EShatter2Physical | EShatter3Physical | EShatter4 => Element::Physical, + E1 | E2 | EShatter0 | EShatter1Cryo | EShatter2Cryo | EShatter3Cryo | E2Mul2 | Q1 | E3 => Element::Cryo + } + } + + pub fn is_shatter(&self) -> bool { + use FreminetDamageEnum::*; + match *self { + EShatter0 | EShatter1Cryo | EShatter1Physical | EShatter2Cryo | EShatter2Physical + | EShatter3Cryo | EShatter3Physical | EShatter4 => true, + _ => false, + } + } +} + +pub struct FreminetEffect { + pub c4_stack: f64, + pub c6_stack: f64, + pub constellation: usize, +} + +impl ChangeAttribute for FreminetEffect { + fn change_attribute(&self, attribute: &mut A) { + if self.constellation >= 4 { + let rate = self.c4_stack * 0.09; + attribute.add_atk_percentage("命座4「雪月与芦笛之舞」", rate); + } + if self.constellation >= 6 { + let rate = self.c6_stack * 0.12; + attribute.set_value_by(AttributeName::CriticalDamageBase, "命座6「梦晓与决意之刻」", rate); + } + } +} + +pub struct Freminet; + +impl CharacterTrait for Freminet { + const STATIC_DATA: CharacterStaticData = CharacterStaticData { + name: CharacterName::Freminet, + internal_name: "Freminet", + name_locale: locale!( + zh_cn: "菲米尼", + en: "Freminet", + ), + element: Element::Cryo, + hp: [1012, 2600, 3356, 5027, 5564, 6400, 7117, 7953, 8490, 9325, 9862, 10698, 11235, 12071], + atk: [21, 55, 71, 106, 117, 135, 150, 168, 179, 197, 208, 226, 237, 255], + def: [59, 153, 197, 295, 327, 376, 418, 467, 498, 547, 579, 628, 659, 708], + sub_stat: CharacterSubStatFamily::ATK240, + weapon_type: WeaponType::Claymore, + star: 4, + skill_name1: locale!( + zh_cn: "普通攻击·洑流剑", + en: "Normal Attack: Flowing Eddies" + ), + skill_name2: locale!( + zh_cn: "浮冰增压", + en: "Pressurized Floe" + ), + skill_name3: locale!( + zh_cn: "猎影潜袭", + en: "Shadowhunter's Ambush" + ) + }; + type SkillType = FreminetSkillType; + const SKILL: Self::SkillType = FREMINET_SKILL; + type DamageEnumType = FreminetDamageEnum; + type RoleEnum = (); + + #[cfg(not(target_family = "wasm"))] + const SKILL_MAP: CharacterSkillMap = CharacterSkillMap { + skill1: skill_map!( + FreminetDamageEnum + Normal1 hit_n_dmg!(1) + Normal2 hit_n_dmg!(2) + Normal3 hit_n_dmg!(3) + Normal4 hit_n_dmg!(4) + Charged1 charged_dmg!("loop1") + Charged2 charged_dmg!("loop2") + Plunging1 plunging_dmg!(1) + Plunging2 plunging_dmg!(2) + Plunging3 plunging_dmg!(3) + ), + skill2: skill_map!( + FreminetDamageEnum + E1 locale!(zh_cn: "上挑攻击伤害", en: "Upward Thrust DMG") + E2 locale!(zh_cn: "霜寒伤害", en: "Frost DMG") + EShatter0 locale!(zh_cn: "零阶高压粉碎伤害", en: "Level 0 Shattering Pressure DMG") + EShatter1Cryo locale!(zh_cn: "一阶高压粉碎伤害(冰)", en: "Level 1 Shattering Pressure DMG (Cryo)") + EShatter1Physical locale!(zh_cn: "一阶高压粉碎伤害(物理)", en: "Level 1 Shattering Pressure DMG (Physical)") + EShatter2Cryo locale!(zh_cn: "二阶高压粉碎伤害(冰)", en: "Level 2 Shattering Pressure DMG (Cryo)") + EShatter2Physical locale!(zh_cn: "二阶高压粉碎伤害(物理)", en: "Level 2 Shattering Pressure DMG (Physical)") + EShatter3Cryo locale!(zh_cn: "三阶高压粉碎伤害(冰)", en: "Level 3 Shattering Pressure DMG (Cryo)") + EShatter3Physical locale!(zh_cn: "三阶高压粉碎伤害(物理)", en: "Level 3 Shattering Pressure DMG (Physical)") + EShatter4 locale!(zh_cn: "四阶高压粉碎伤害", en: "Level 4 Shattering Pressure DMG") + E3 locale!(zh_cn: "灵息之刺伤害", en: "Spiritbreath Thorn DMG") + E2Mul2 locale!(zh_cn: "霜寒伤害(x2)", en: "Frost DMG (x2)") + ), + skill3: skill_map!( + FreminetDamageEnum + Q1 locale!(zh_cn: "技能伤害", en: "Skill DMG") + ) + }; + + #[cfg(not(target_family = "wasm"))] + const CONFIG_DATA: Option<&'static [ItemConfig]> = Some(&[ + ItemConfig { + name: "c4_stack", + title: locale!( + zh_cn: "命座4「雪月与芦笛之舞」层数", + en: "C4「Dance of the Snowy Moon and Flute」Stack", + ), + config: ItemConfigType::Float { min: 0.0, max: 2.0, default: 0.0 } + }, + ItemConfig { + name: "c6_stack", + title: locale!( + zh_cn: "命座6「梦晓与决意之刻」层数", + en: "C6「Moment of Waking and Resolve」Stack" + ), + config: ItemConfigType::Float { min: 0.0, max: 3.0, default: 0.0 } + } + ]); + + #[cfg(not(target_family = "wasm"))] + const CONFIG_SKILL: Option<&'static [ItemConfig]> = Some(&[ + ItemConfig { + name: "talent2_rate", + title: locale!( + zh_cn: "天赋「并流式冷凝机关」比例", + en: "Talent「Parallel Condensers」Rate" + ), + config: ItemConfigType::Float { min: 0.0, max: 1.0, default: 1.0 } + } + ]); + + fn damage_internal(context: &DamageContext<'_, D::AttributeType>, s: usize, config: &CharacterSkillConfig, fumo: Option) -> D::Result { + let s: FreminetDamageEnum = num::FromPrimitive::from_usize(s).unwrap(); + let (s1, s2, s3) = context.character_common_data.get_3_skill(); + + use FreminetDamageEnum::*; + + let mut builder = D::new(); + let ratio = match s { + Normal1 => FREMINET_SKILL.normal_dmg1[s1], + Normal2 => FREMINET_SKILL.normal_dmg2[s1], + Normal3 => FREMINET_SKILL.normal_dmg3[s1], + Normal4 => FREMINET_SKILL.normal_dmg4[s1], + Charged1 => FREMINET_SKILL.charged_dmg1[s1], + Charged2 => FREMINET_SKILL.charged_dmg2[s1], + Plunging1 => FREMINET_SKILL.plunging_dmg1[s1], + Plunging2 => FREMINET_SKILL.plunging_dmg2[s1], + Plunging3 => FREMINET_SKILL.plunging_dmg3[s1], + E1 => FREMINET_SKILL.e_dmg1[s2], + E2 => FREMINET_SKILL.e_dmg2[s2], + EShatter0 => FREMINET_SKILL.e_dmg_shatter0[s2], + EShatter1Cryo => FREMINET_SKILL.e_dmg_shatter1_cryo[s2], + EShatter1Physical => FREMINET_SKILL.e_dmg_shatter1_physical[s2], + EShatter2Cryo => FREMINET_SKILL.e_dmg_shatter2_cryo[s2], + EShatter2Physical => FREMINET_SKILL.e_dmg_shatter2_physical[s2], + EShatter3Cryo => FREMINET_SKILL.e_dmg_shatter3_cryo[s2], + EShatter3Physical => FREMINET_SKILL.e_dmg_shatter3_physical[s2], + EShatter4 => FREMINET_SKILL.e_dmg_shatter4[s2], + E3 => FREMINET_SKILL.e_dmg3[s2], + Q1 => FREMINET_SKILL.q_dmg1[s3], + E2Mul2 => FREMINET_SKILL.e_dmg2[s2] * 2.0 + }; + + let is_shatter = s.is_shatter(); + let talent2_rate = match *config { + CharacterSkillConfig::Freminet { talent2_rate } => talent2_rate, + _ => 0.0 + }; + if context.character_common_data.has_talent2 && is_shatter { + builder.add_extra_bonus("天赋「并流式冷凝机关」", talent2_rate * 0.4); + } + + // c1 + if is_shatter && context.character_common_data.constellation >= 1 { + builder.add_extra_critical("1命「深水与泡沫之梦」", 0.15); + } + + builder.add_atk_ratio("技能倍率", ratio); + + builder.damage( + &context.attribute, + &context.enemy, + s.get_element(), + s.get_skill_type(), + context.character_common_data.level, + fumo + ) + } + + fn new_effect(common_data: &CharacterCommonData, config: &CharacterConfig) -> Option>> { + let (a, b) = match *config { + CharacterConfig::Freminet { c4_stack, c6_stack } => (c4_stack, c6_stack), + _ => (0.0, 0.0) + }; + Some(Box::new(FreminetEffect { + c4_stack: a, + c6_stack: b, + constellation: common_data.constellation as usize, + })) + } + + fn get_target_function_by_role(role_index: usize, team: &TeamQuantization, c: &CharacterCommonData, w: &WeaponCommonData) -> Box { + unimplemented!() + } +} \ No newline at end of file diff --git a/mona_core/src/character/characters/cryo/mod.rs b/mona_core/src/character/characters/cryo/mod.rs index bd65ca95..91b03eea 100644 --- a/mona_core/src/character/characters/cryo/mod.rs +++ b/mona_core/src/character/characters/cryo/mod.rs @@ -10,6 +10,7 @@ pub mod rosaria; pub mod shenhe; pub mod layla; pub mod mika; +pub mod freminet; pub use aloy::Aloy; pub use chongyun::Chongyun; @@ -23,3 +24,4 @@ pub use rosaria::Rosaria; pub use shenhe::Shenhe; pub use layla::Layla; pub use mika::Mika; +pub use freminet::Freminet; diff --git a/mona_core/src/character/skill_config.rs b/mona_core/src/character/skill_config.rs index 21660c20..cb25e4c0 100644 --- a/mona_core/src/character/skill_config.rs +++ b/mona_core/src/character/skill_config.rs @@ -39,5 +39,6 @@ pub enum CharacterSkillConfig { Alhaitham { under_e: bool }, Dehya { c2_rate: f64, c6_stack: f64 }, Kaveh { after_q: bool }, + Freminet { talent2_rate: f64 }, NoConfig, } diff --git a/mona_core/src/target_functions/target_function_name.rs b/mona_core/src/target_functions/target_function_name.rs index 967100e4..57840b44 100644 --- a/mona_core/src/target_functions/target_function_name.rs +++ b/mona_core/src/target_functions/target_function_name.rs @@ -89,4 +89,5 @@ pub enum TargetFunctionName { AlhaithamDefault, DehyaDefault, MikaDefault, + FreminetDefault, } diff --git a/mona_core/src/target_functions/target_functions/cryo/freminet_default.rs b/mona_core/src/target_functions/target_functions/cryo/freminet_default.rs new file mode 100644 index 00000000..11f6c467 --- /dev/null +++ b/mona_core/src/target_functions/target_functions/cryo/freminet_default.rs @@ -0,0 +1,68 @@ +use crate::artifacts::Artifact; +use crate::artifacts::effect_config::ArtifactEffectConfig; +use crate::attribute::SimpleAttributeGraph2; +use crate::character::{Character, CharacterName}; +use crate::character::character_common_data::CharacterCommonData; +use crate::character::characters::Freminet; +use crate::character::skill_config::CharacterSkillConfig; +use crate::character::traits::CharacterTrait; +use crate::common::i18n::locale; +use crate::damage::{DamageContext, SimpleDamageBuilder}; +use crate::enemies::Enemy; +use crate::target_functions::target_function::TargetFunctionMetaTrait; +use crate::target_functions::target_function_meta::{TargetFunctionFor, TargetFunctionMeta, TargetFunctionMetaImage}; +use crate::target_functions::{TargetFunction, TargetFunctionConfig, TargetFunctionName}; +use crate::target_functions::target_function_opt_config::TargetFunctionOptConfig; +use crate::team::TeamQuantization; +use crate::weapon::Weapon; +use crate::weapon::weapon_common_data::WeaponCommonData; + +pub struct FreminetDefaultTargetFunction; + +impl TargetFunction for FreminetDefaultTargetFunction { + fn get_target_function_opt_config(&self) -> TargetFunctionOptConfig { + unimplemented!() + } + + fn get_default_artifact_config(&self, team_config: &TeamQuantization) -> ArtifactEffectConfig { + Default::default() + } + + fn target(&self, attribute: &SimpleAttributeGraph2, character: &Character, weapon: &Weapon, artifacts: &[&Artifact], enemy: &Enemy) -> f64 { + let context: DamageContext<'_, SimpleAttributeGraph2> = DamageContext { + character_common_data: &character.common_data, + attribute, + enemy, + }; + + type S = ::DamageEnumType; + let e_shatter3_cryo = Freminet::damage::(&context, S::EShatter3Cryo, &CharacterSkillConfig::Freminet { talent2_rate: 1.0 }, None); + let e_shatter3_physical = Freminet::damage::(&context, S::EShatter3Physical, &CharacterSkillConfig::Freminet { talent2_rate: 1.0 }, None); + + let dmg = e_shatter3_cryo.normal.expectation + e_shatter3_physical.normal.expectation; + dmg + } +} + +impl TargetFunctionMetaTrait for FreminetDefaultTargetFunction { + #[cfg(not(target_family = "wasm"))] + const META_DATA: TargetFunctionMeta = TargetFunctionMeta { + name: TargetFunctionName::FreminetDefault, + name_locale: locale!( + zh_cn: "菲米尼-潜怀遐梦", + en: "Freminet-Yearning for Unseen Depths", + ), + description: locale!( + zh_cn: "普通输出菲米尼,考虑物伤和冰伤", + en: "Normal DPS Freminet" + ), + tags: "", + four: TargetFunctionFor::SomeWho(CharacterName::Freminet), + image: TargetFunctionMetaImage::Avatar + }; + + + fn create(character: &CharacterCommonData, weapon: &WeaponCommonData, config: &TargetFunctionConfig) -> Box { + Box::new(FreminetDefaultTargetFunction) + } +} \ No newline at end of file diff --git a/mona_core/src/target_functions/target_functions/cryo/mod.rs b/mona_core/src/target_functions/target_functions/cryo/mod.rs index dd2ccbb5..2435595b 100644 --- a/mona_core/src/target_functions/target_functions/cryo/mod.rs +++ b/mona_core/src/target_functions/target_functions/cryo/mod.rs @@ -10,6 +10,7 @@ pub mod qiqi_default; pub mod rosaria_default; pub mod shenhe_default; pub mod mika_default; +pub mod freminet_default; pub use aloy_default::AloyDefaultTargetFunction; pub use chongyun_default::ChongyunDefaultTargetFunction; @@ -23,3 +24,4 @@ pub use qiqi_default::QiqiDefaultTargetFunction; pub use rosaria_default::RosariaDefaultTargetFunction; pub use shenhe_default::ShenheDefaultTargetFunction; pub use mika_default::MikaDefaultTargetFunction; +pub use freminet_default::FreminetDefaultTargetFunction; diff --git a/src/assets/_gen_artifact.js b/src/assets/_gen_artifact.js index 1316e7a9..cc5e613b 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: 239, + nameLocale: 246, minStar: 1, maxStar: 3, - effect2: 1190, + effect2: 1206, - effect4: 585, + effect4: 596, flower: { - text: 240, + text: 247, url: getIcon("UI_RelicIcon_10010_4") }, feather: { - text: 242, + text: 249, url: getIcon("UI_RelicIcon_10010_2") }, sand: { - text: 243, + text: 250, url: getIcon("UI_RelicIcon_10010_5") }, cup: { - text: 244, + text: 251, url: getIcon("UI_RelicIcon_10010_1") }, head: { - text: 241, + text: 248, url: getIcon("UI_RelicIcon_10010_3") }, @@ -58,54 +58,54 @@ export default { "archaicPetra": { eng: "archaicPetra", name2: "ArchaicPetra", - nameLocale: 607, + nameLocale: 618, minStar: 4, maxStar: 5, - effect2: 1391, + effect2: 1407, - effect4: 1406, + effect4: 1422, flower: { - text: 1255, + text: 1271, url: getIcon("UI_RelicIcon_15014_4") }, feather: { - text: 560, + text: 571, url: getIcon("UI_RelicIcon_15014_2") }, sand: { - text: 773, + text: 784, url: getIcon("UI_RelicIcon_15014_5") }, cup: { - text: 561, + text: 572, url: getIcon("UI_RelicIcon_15014_1") }, head: { - text: 80, + text: 85, url: getIcon("UI_RelicIcon_15014_3") }, config4: [ - {"default":"Electro","name":"element","title":176,"type":"element4"}, + {"default":"Electro","name":"element","title":183,"type":"element4"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":705,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":716,"type":"float"}, ], }, @@ -113,52 +113,52 @@ export default { "berserker": { eng: "berserker", name2: "Berserker", - nameLocale: 613, + nameLocale: 624, minStar: 3, maxStar: 4, - effect2: 938, + effect2: 951, - effect4: 1194, + effect4: 1210, flower: { - text: 616, + text: 627, url: getIcon("UI_RelicIcon_10005_4") }, feather: { - text: 615, + text: 626, url: getIcon("UI_RelicIcon_10005_2") }, sand: { - text: 614, + text: 625, url: getIcon("UI_RelicIcon_10005_5") }, cup: { - text: 617, + text: 628, url: getIcon("UI_RelicIcon_10005_1") }, head: { - text: 618, + text: 629, url: getIcon("UI_RelicIcon_10005_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":705,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":716,"type":"float"}, ], }, @@ -166,52 +166,52 @@ export default { "blizzardStrayer": { eng: "blizzardStrayer", name2: "BlizzardStrayer", - nameLocale: 257, + nameLocale: 264, minStar: 4, maxStar: 5, - effect2: 1390, + effect2: 1406, - effect4: 694, + effect4: 705, flower: { - text: 329, + text: 336, url: getIcon("UI_RelicIcon_14001_4") }, feather: { - text: 677, + text: 688, url: getIcon("UI_RelicIcon_14001_2") }, sand: { - text: 256, + text: 263, url: getIcon("UI_RelicIcon_14001_5") }, cup: { - text: 1565, + text: 1583, url: getIcon("UI_RelicIcon_14001_1") }, head: { - text: 1249, + text: 1265, url: getIcon("UI_RelicIcon_14001_3") }, config4: [ - {"default":0.0,"max":0.4,"min":0.0,"name":"critical_bonus","title":1299,"type":"float"}, + {"default":0.0,"max":0.4,"min":0.0,"name":"critical_bonus","title":1315,"type":"float"}, ], }, @@ -219,52 +219,52 @@ export default { "bloodstainedChivalry": { eng: "bloodstainedChivalry", name2: "BloodstainedChivalry", - nameLocale: 984, + nameLocale: 997, minStar: 4, maxStar: 5, - effect2: 1561, + effect2: 1579, - effect4: 275, + effect4: 282, flower: { - text: 982, + text: 995, url: getIcon("UI_RelicIcon_15008_4") }, feather: { - text: 985, + text: 998, url: getIcon("UI_RelicIcon_15008_2") }, sand: { - text: 1735, + text: 1756, url: getIcon("UI_RelicIcon_15008_5") }, cup: { - text: 986, + text: 999, url: getIcon("UI_RelicIcon_15008_1") }, head: { - text: 983, + text: 996, url: getIcon("UI_RelicIcon_15008_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":705,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":716,"type":"float"}, ], }, @@ -272,52 +272,52 @@ export default { "braveHeart": { eng: "braveHeart", name2: "BraveHeart", - nameLocale: 295, + nameLocale: 302, minStar: 3, maxStar: 4, - effect2: 684, + effect2: 695, - effect4: 546, + effect4: 557, flower: { - text: 297, + text: 304, url: getIcon("UI_RelicIcon_10002_4") }, feather: { - text: 300, + text: 307, url: getIcon("UI_RelicIcon_10002_2") }, sand: { - text: 298, + text: 305, url: getIcon("UI_RelicIcon_10002_5") }, cup: { - text: 299, + text: 306, url: getIcon("UI_RelicIcon_10002_1") }, head: { - text: 296, + text: 303, url: getIcon("UI_RelicIcon_10002_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":705,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":716,"type":"float"}, ], }, @@ -325,52 +325,52 @@ export default { "crimsonWitch": { eng: "crimsonWitch", name2: "CrimsonWitchOfFlames", - nameLocale: 1110, + nameLocale: 1125, minStar: 4, maxStar: 5, - effect2: 1393, + effect2: 1409, - effect4: 1511, + effect4: 1529, flower: { - text: 1743, + text: 1764, url: getIcon("UI_RelicIcon_15006_4") }, feather: { - text: 1741, + text: 1762, url: getIcon("UI_RelicIcon_15006_2") }, sand: { - text: 1744, + text: 1765, url: getIcon("UI_RelicIcon_15006_5") }, cup: { - text: 1742, + text: 1763, url: getIcon("UI_RelicIcon_15006_1") }, head: { - text: 1118, + text: 1133, url: getIcon("UI_RelicIcon_15006_3") }, config4: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"level","title":706,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"level","title":717,"type":"float"}, ], }, @@ -378,52 +378,52 @@ export default { "DeepwoodMemories": { eng: "DeepwoodMemories", name2: "DeepwoodMemories", - nameLocale: 1062, + nameLocale: 1076, minStar: 4, maxStar: 5, - effect2: 1394, + effect2: 1410, - effect4: 197, + effect4: 204, flower: { - text: 1551, + text: 1569, url: getIcon("UI_RelicIcon_15025_4") }, feather: { - text: 1345, + text: 1361, url: getIcon("UI_RelicIcon_15025_2") }, sand: { - text: 1492, + text: 1510, url: getIcon("UI_RelicIcon_15025_5") }, cup: { - text: 1552, + text: 1570, url: getIcon("UI_RelicIcon_15025_1") }, head: { - text: 962, + text: 975, url: getIcon("UI_RelicIcon_15025_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":705,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":716,"type":"float"}, ], }, @@ -431,46 +431,46 @@ export default { "defenderWill": { eng: "defenderWill", name2: "DefendersWill", - nameLocale: 509, + nameLocale: 520, minStar: 0, maxStar: 0, - effect2: 1636, + effect2: 1654, - effect4: 1628, + effect4: 1646, flower: { - text: 511, + text: 522, url: getIcon("UI_RelicIcon_10003_4") }, feather: { - text: 513, + text: 524, url: getIcon("UI_RelicIcon_10003_2") }, sand: { - text: 512, + text: 523, url: getIcon("UI_RelicIcon_10003_5") }, cup: { - text: 510, + text: 521, url: getIcon("UI_RelicIcon_10003_1") }, head: { - text: 514, + text: 525, url: getIcon("UI_RelicIcon_10003_3") }, @@ -482,52 +482,52 @@ export default { "EchoesOfAnOffering": { eng: "EchoesOfAnOffering", name2: "EchoesOfAnOffering", - nameLocale: 971, + nameLocale: 984, minStar: 4, maxStar: 5, - effect2: 684, + effect2: 695, - effect4: 879, + effect4: 891, flower: { - text: 1738, + text: 1759, url: getIcon("UI_RelicIcon_15024_4") }, feather: { - text: 420, + text: 430, url: getIcon("UI_RelicIcon_15024_2") }, sand: { - text: 1257, + text: 1273, url: getIcon("UI_RelicIcon_15024_5") }, cup: { - text: 1061, + text: 1075, url: getIcon("UI_RelicIcon_15024_1") }, head: { - text: 1054, + text: 1068, url: getIcon("UI_RelicIcon_15024_3") }, config4: [ - {"default":0.5053283764473575,"max":1.0,"min":0.0,"name":"rate","title":565,"type":"float"}, + {"default":0.5053283764473575,"max":1.0,"min":0.0,"name":"rate","title":576,"type":"float"}, ], }, @@ -535,46 +535,46 @@ export default { "emblemOfSeveredFate": { eng: "emblemOfSeveredFate", name2: "EmblemOfSeveredFate", - nameLocale: 1323, + nameLocale: 1339, minStar: 4, maxStar: 5, - effect2: 179, + effect2: 186, - effect4: 426, + effect4: 436, flower: { - text: 765, + text: 776, url: getIcon("UI_RelicIcon_15020_4") }, feather: { - text: 282, + text: 289, url: getIcon("UI_RelicIcon_15020_2") }, sand: { - text: 1660, + text: 1679, url: getIcon("UI_RelicIcon_15020_5") }, cup: { - text: 1326, + text: 1342, url: getIcon("UI_RelicIcon_15020_1") }, head: { - text: 318, + text: 325, url: getIcon("UI_RelicIcon_15020_3") }, @@ -586,52 +586,52 @@ export default { "FlowerOfParadiseLost": { eng: "FlowerOfParadiseLost", name2: "FlowerOfParadiseLost", - nameLocale: 96, + nameLocale: 101, minStar: 4, maxStar: 5, - effect2: 215, + effect2: 222, - effect4: 1440, + effect4: 1458, flower: { - text: 961, + text: 974, url: getIcon("UI_RelicIcon_15028_4") }, feather: { - text: 1490, + text: 1508, url: getIcon("UI_RelicIcon_15028_2") }, sand: { - text: 270, + text: 277, url: getIcon("UI_RelicIcon_15028_5") }, cup: { - text: 515, + text: 526, url: getIcon("UI_RelicIcon_15028_1") }, head: { - text: 1309, + text: 1325, url: getIcon("UI_RelicIcon_15028_3") }, config4: [ - {"default":4.0,"max":4.0,"min":0.0,"name":"stack","title":706,"type":"float"}, + {"default":4.0,"max":4.0,"min":0.0,"name":"stack","title":717,"type":"float"}, ], }, @@ -639,46 +639,46 @@ export default { "gambler": { eng: "gambler", name2: "Gambler", - nameLocale: 1496, + nameLocale: 1514, minStar: 3, maxStar: 4, - effect2: 202, + effect2: 209, - effect4: 280, + effect4: 287, flower: { - text: 1500, + text: 1518, url: getIcon("UI_RelicIcon_10008_4") }, feather: { - text: 1498, + text: 1516, url: getIcon("UI_RelicIcon_10008_2") }, sand: { - text: 1497, + text: 1515, url: getIcon("UI_RelicIcon_10008_5") }, cup: { - text: 1501, + text: 1519, url: getIcon("UI_RelicIcon_10008_1") }, head: { - text: 1499, + text: 1517, url: getIcon("UI_RelicIcon_10008_3") }, @@ -690,52 +690,52 @@ export default { "DesertPavilionChronicle": { eng: "DesertPavilionChronicle", name2: "DesertPavilionChronicle", - nameLocale: 1027, + nameLocale: 1040, minStar: 4, maxStar: 5, - effect2: 1396, + effect2: 1412, - effect4: 1589, + effect4: 1607, flower: { - text: 153, + text: 160, url: getIcon("UI_RelicIcon_15027_4") }, feather: { - text: 1757, + text: 1778, url: getIcon("UI_RelicIcon_15027_2") }, sand: { - text: 486, + text: 497, url: getIcon("UI_RelicIcon_15027_5") }, cup: { - text: 1553, + text: 1571, url: getIcon("UI_RelicIcon_15027_1") }, head: { - text: 1047, + text: 1060, url: getIcon("UI_RelicIcon_15027_3") }, config4: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":705,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":716,"type":"float"}, ], }, @@ -743,56 +743,56 @@ export default { "GildedDreams": { eng: "GildedDreams", name2: "GildedDreams", - nameLocale: 1724, + nameLocale: 1745, minStar: 4, maxStar: 5, - effect2: 213, + effect2: 220, - effect4: 1468, + effect4: 1486, flower: { - text: 993, + text: 1006, url: getIcon("UI_RelicIcon_15026_4") }, feather: { - text: 1436, + text: 1454, url: getIcon("UI_RelicIcon_15026_2") }, sand: { - text: 1025, + text: 1038, url: getIcon("UI_RelicIcon_15026_5") }, cup: { - text: 495, + text: 506, url: getIcon("UI_RelicIcon_15026_1") }, head: { - text: 1028, + text: 1041, url: getIcon("UI_RelicIcon_15026_3") }, config4: [ - {"default":0,"max":3,"min":0,"name":"same_count","title":356,"type":"int"}, + {"default":0,"max":3,"min":0,"name":"same_count","title":363,"type":"int"}, - {"default":0,"max":3,"min":0,"name":"diff_count","title":81,"type":"int"}, + {"default":0,"max":3,"min":0,"name":"diff_count","title":87,"type":"int"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":705,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":716,"type":"float"}, ], }, @@ -800,46 +800,46 @@ export default { "gladiatorFinale": { eng: "gladiatorFinale", name2: "GladiatorsFinale", - nameLocale: 1455, + nameLocale: 1473, minStar: 4, maxStar: 5, - effect2: 684, + effect2: 695, - effect4: 1441, + effect4: 1459, flower: { - text: 1454, + text: 1472, url: getIcon("UI_RelicIcon_15001_4") }, feather: { - text: 1453, + text: 1471, url: getIcon("UI_RelicIcon_15001_2") }, sand: { - text: 1452, + text: 1470, url: getIcon("UI_RelicIcon_15001_5") }, cup: { - text: 1456, + text: 1474, url: getIcon("UI_RelicIcon_15001_1") }, head: { - text: 1451, + text: 1469, url: getIcon("UI_RelicIcon_15001_3") }, @@ -851,52 +851,52 @@ export default { "heartOfDepth": { eng: "heartOfDepth", name2: "HeartOfDepth", - nameLocale: 1023, + nameLocale: 1036, minStar: 4, maxStar: 5, - effect2: 1392, + effect2: 1408, - effect4: 727, + effect4: 738, flower: { - text: 1725, + text: 1746, url: getIcon("UI_RelicIcon_15016_4") }, feather: { - text: 1555, + text: 1573, url: getIcon("UI_RelicIcon_15016_2") }, sand: { - text: 419, + text: 429, url: getIcon("UI_RelicIcon_15016_5") }, cup: { - text: 1024, + text: 1037, url: getIcon("UI_RelicIcon_15016_1") }, head: { - text: 1566, + text: 1584, url: getIcon("UI_RelicIcon_15016_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":705,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":716,"type":"float"}, ], }, @@ -904,46 +904,46 @@ export default { "huskOfOpulentDreams": { eng: "huskOfOpulentDreams", name2: "HuskOfOpulentDreams", - nameLocale: 320, + nameLocale: 327, minStar: 4, maxStar: 5, - effect2: 1636, + effect2: 1654, - effect4: 1437, + effect4: 1455, flower: { - text: 1382, + text: 1398, url: getIcon("UI_RelicIcon_15021_4") }, feather: { - text: 319, + text: 326, url: getIcon("UI_RelicIcon_15021_2") }, sand: { - text: 154, + text: 161, url: getIcon("UI_RelicIcon_15021_5") }, cup: { - text: 995, + text: 1008, url: getIcon("UI_RelicIcon_15021_1") }, head: { - text: 591, + text: 602, url: getIcon("UI_RelicIcon_15021_3") }, @@ -957,52 +957,52 @@ export default { "instructor": { eng: "instructor", name2: "Instructor", - nameLocale: 709, + nameLocale: 720, minStar: 3, maxStar: 4, - effect2: 214, + effect2: 221, - effect4: 1469, + effect4: 1487, flower: { - text: 714, + text: 725, url: getIcon("UI_RelicIcon_10007_4") }, feather: { - text: 713, + text: 724, url: getIcon("UI_RelicIcon_10007_2") }, sand: { - text: 712, + text: 723, url: getIcon("UI_RelicIcon_10007_5") }, cup: { - text: 715, + text: 726, url: getIcon("UI_RelicIcon_10007_1") }, head: { - text: 711, + text: 722, url: getIcon("UI_RelicIcon_10007_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":705,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":716,"type":"float"}, ], }, @@ -1010,52 +1010,52 @@ export default { "lavaWalker": { eng: "lavaWalker", name2: "Lavawalker", - nameLocale: 1071, + nameLocale: 1085, minStar: 4, maxStar: 5, - effect2: 1092, + effect2: 1106, - effect4: 541, + effect4: 552, flower: { - text: 1066, + text: 1080, url: getIcon("UI_RelicIcon_14003_4") }, feather: { - text: 1069, + text: 1083, url: getIcon("UI_RelicIcon_14003_2") }, sand: { - text: 1068, + text: 1082, url: getIcon("UI_RelicIcon_14003_5") }, cup: { - text: 1070, + text: 1084, url: getIcon("UI_RelicIcon_14003_1") }, head: { - text: 1067, + text: 1081, url: getIcon("UI_RelicIcon_14003_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":707,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":718,"type":"float"}, ], }, @@ -1063,46 +1063,46 @@ export default { "luckyDog": { eng: "luckyDog", name2: "LuckyDog", - nameLocale: 572, + nameLocale: 583, minStar: 1, maxStar: 3, - effect2: 1635, + effect2: 1653, - effect4: 659, + effect4: 670, flower: { - text: 575, + text: 586, url: getIcon("UI_RelicIcon_10011_4") }, feather: { - text: 577, + text: 588, url: getIcon("UI_RelicIcon_10011_2") }, sand: { - text: 574, + text: 585, url: getIcon("UI_RelicIcon_10011_5") }, cup: { - text: 573, + text: 584, url: getIcon("UI_RelicIcon_10011_1") }, head: { - text: 576, + text: 587, url: getIcon("UI_RelicIcon_10011_3") }, @@ -1114,46 +1114,46 @@ export default { "maidenBeloved": { eng: "maidenBeloved", name2: "MaidenBeloved", - nameLocale: 1434, + nameLocale: 1452, minStar: 4, maxStar: 5, - effect2: 1462, + effect2: 1480, - effect4: 734, + effect4: 745, flower: { - text: 1539, + text: 1557, url: getIcon("UI_RelicIcon_14004_4") }, feather: { - text: 552, + text: 563, url: getIcon("UI_RelicIcon_14004_2") }, sand: { - text: 551, + text: 562, url: getIcon("UI_RelicIcon_14004_5") }, cup: { - text: 550, + text: 561, url: getIcon("UI_RelicIcon_14004_1") }, head: { - text: 549, + text: 560, url: getIcon("UI_RelicIcon_14004_3") }, @@ -1165,52 +1165,52 @@ export default { "martialArtist": { eng: "martialArtist", name2: "MartialArtist", - nameLocale: 999, + nameLocale: 1012, minStar: 3, maxStar: 4, - effect2: 873, + effect2: 885, - effect4: 728, + effect4: 739, flower: { - text: 1002, + text: 1015, url: getIcon("UI_RelicIcon_10006_4") }, feather: { - text: 1003, + text: 1016, url: getIcon("UI_RelicIcon_10006_2") }, sand: { - text: 1001, + text: 1014, url: getIcon("UI_RelicIcon_10006_5") }, cup: { - text: 1004, + text: 1017, url: getIcon("UI_RelicIcon_10006_1") }, head: { - text: 1000, + text: 1013, url: getIcon("UI_RelicIcon_10006_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":705,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":716,"type":"float"}, ], }, @@ -1218,52 +1218,52 @@ export default { "noblesseOblige": { eng: "noblesseOblige", name2: "NoblesseOblige", - nameLocale: 766, + nameLocale: 777, minStar: 4, maxStar: 5, - effect2: 206, + effect2: 213, - effect4: 742, + effect4: 753, flower: { - text: 520, + text: 531, url: getIcon("UI_RelicIcon_15007_4") }, feather: { - text: 519, + text: 530, url: getIcon("UI_RelicIcon_15007_2") }, sand: { - text: 522, + text: 533, url: getIcon("UI_RelicIcon_15007_5") }, cup: { - text: 525, + text: 536, url: getIcon("UI_RelicIcon_15007_1") }, head: { - text: 528, + text: 539, url: getIcon("UI_RelicIcon_15007_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":705,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":716,"type":"float"}, ], }, @@ -1271,46 +1271,46 @@ export default { "NymphsDream": { eng: "NymphsDream", name2: "NymphsDream", - nameLocale: 1012, + nameLocale: 1025, minStar: 4, maxStar: 5, - effect2: 1392, + effect2: 1408, - effect4: 864, + effect4: 876, flower: { - text: 750, + text: 761, url: getIcon("UI_RelicIcon_15029_4") }, feather: { - text: 418, + text: 428, url: getIcon("UI_RelicIcon_15029_2") }, sand: { - text: 1013, + text: 1026, url: getIcon("UI_RelicIcon_15029_5") }, cup: { - text: 301, + text: 308, url: getIcon("UI_RelicIcon_15029_1") }, head: { - text: 606, + text: 617, url: getIcon("UI_RelicIcon_15029_3") }, @@ -1318,11 +1318,11 @@ export default { {"default":0.0,"max":1.0,"min":0.0,"name":"w1","title":47,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"w2","title":113,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"w2","title":118,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"w3","title":67,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"w3","title":69,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":583,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":593,"type":"float"}, ], }, @@ -1330,46 +1330,46 @@ export default { "oceanHuedClam": { eng: "oceanHuedClam", name2: "OceanHuedClam", - nameLocale: 1059, + nameLocale: 1073, minStar: 4, maxStar: 5, - effect2: 1032, + effect2: 1045, - effect4: 1438, + effect4: 1456, flower: { - text: 1058, + text: 1072, url: getIcon("UI_RelicIcon_15022_4") }, feather: { - text: 1065, + text: 1079, url: getIcon("UI_RelicIcon_15022_2") }, sand: { - text: 1289, + text: 1305, url: getIcon("UI_RelicIcon_15022_5") }, cup: { - text: 1237, + text: 1253, url: getIcon("UI_RelicIcon_15022_1") }, head: { - text: 1060, + text: 1074, url: getIcon("UI_RelicIcon_15022_3") }, @@ -1381,54 +1381,54 @@ export default { "paleFlame": { eng: "paleFlame", name2: "PaleFlame", - nameLocale: 1368, + nameLocale: 1384, minStar: 4, maxStar: 5, - effect2: 1562, + effect2: 1580, - effect4: 192, + effect4: 199, flower: { - text: 756, + text: 767, url: getIcon("UI_RelicIcon_15018_4") }, feather: { - text: 1491, + text: 1509, url: getIcon("UI_RelicIcon_15018_2") }, sand: { - text: 175, + text: 182, url: getIcon("UI_RelicIcon_15018_5") }, cup: { - text: 1509, + text: 1527, url: getIcon("UI_RelicIcon_15018_1") }, head: { - text: 394, + text: 403, url: getIcon("UI_RelicIcon_15018_3") }, config4: [ - {"default":0.0,"max":2.0,"min":0.0,"name":"avg_level","title":701,"type":"float"}, + {"default":0.0,"max":2.0,"min":0.0,"name":"avg_level","title":712,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"full_rate","title":1084,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"full_rate","title":1098,"type":"float"}, ], }, @@ -1436,11 +1436,11 @@ export default { "prayersForDestiny": { eng: "prayersForDestiny", name2: "PrayersForDestiny", - nameLocale: 1278, + nameLocale: 1294, minStar: 3, maxStar: 4, - effect1: 339, + effect1: 346, @@ -1453,7 +1453,7 @@ export default { head: { - text: 1279, + text: 1295, url: getIcon("UI_RelicIcon_15010_3") }, @@ -1465,11 +1465,11 @@ export default { "prayersForIllumination": { eng: "prayersForIllumination", name2: "PrayersForIllumination", - nameLocale: 1280, + nameLocale: 1296, minStar: 3, maxStar: 4, - effect1: 340, + effect1: 347, @@ -1482,7 +1482,7 @@ export default { head: { - text: 1281, + text: 1297, url: getIcon("UI_RelicIcon_15009_3") }, @@ -1494,11 +1494,11 @@ export default { "prayersForWisdom": { eng: "prayersForWisdom", name2: "PrayersForWisdom", - nameLocale: 1286, + nameLocale: 1302, minStar: 3, maxStar: 4, - effect1: 341, + effect1: 348, @@ -1511,7 +1511,7 @@ export default { head: { - text: 1287, + text: 1303, url: getIcon("UI_RelicIcon_15011_3") }, @@ -1523,11 +1523,11 @@ export default { "prayersToSpringtime": { eng: "prayersToSpringtime", name2: "PrayersToSpringtime", - nameLocale: 1276, + nameLocale: 1292, minStar: 3, maxStar: 4, - effect1: 338, + effect1: 345, @@ -1540,7 +1540,7 @@ export default { head: { - text: 1277, + text: 1293, url: getIcon("UI_RelicIcon_15013_3") }, @@ -1552,46 +1552,46 @@ export default { "resolutionOfSojourner": { eng: "resolutionOfSojourner", name2: "ResolutionOfSojourner", - nameLocale: 1429, + nameLocale: 1447, minStar: 3, maxStar: 4, - effect2: 684, + effect2: 695, - effect4: 1592, + effect4: 1610, flower: { - text: 699, + text: 710, url: getIcon("UI_RelicIcon_10001_4") }, feather: { - text: 590, + text: 601, url: getIcon("UI_RelicIcon_10001_2") }, sand: { - text: 1558, + text: 1576, url: getIcon("UI_RelicIcon_10001_5") }, cup: { - text: 587, + text: 598, url: getIcon("UI_RelicIcon_10001_1") }, head: { - text: 611, + text: 622, url: getIcon("UI_RelicIcon_10001_3") }, @@ -1603,52 +1603,52 @@ export default { "retracingBolide": { eng: "retracingBolide", name2: "RetracingBolide", - nameLocale: 1557, + nameLocale: 1575, minStar: 4, maxStar: 5, - effect2: 655, + effect2: 666, - effect4: 436, + effect4: 446, flower: { - text: 440, + text: 450, url: getIcon("UI_RelicIcon_15015_4") }, feather: { - text: 443, + text: 453, url: getIcon("UI_RelicIcon_15015_2") }, sand: { - text: 439, + text: 449, url: getIcon("UI_RelicIcon_15015_5") }, cup: { - text: 442, + text: 452, url: getIcon("UI_RelicIcon_15015_1") }, head: { - text: 441, + text: 451, url: getIcon("UI_RelicIcon_15015_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":657,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":668,"type":"float"}, ], }, @@ -1656,46 +1656,46 @@ export default { "scholar": { eng: "scholar", name2: "Scholar", - nameLocale: 502, + nameLocale: 513, minStar: 3, maxStar: 4, - effect2: 179, + effect2: 186, - effect4: 1403, + effect4: 1419, flower: { - text: 503, + text: 514, url: getIcon("UI_RelicIcon_10012_4") }, feather: { - text: 506, + text: 517, url: getIcon("UI_RelicIcon_10012_2") }, sand: { - text: 505, + text: 516, url: getIcon("UI_RelicIcon_10012_5") }, cup: { - text: 504, + text: 515, url: getIcon("UI_RelicIcon_10012_1") }, head: { - text: 507, + text: 518, url: getIcon("UI_RelicIcon_10012_3") }, @@ -1707,52 +1707,52 @@ export default { "shimenawaReminiscence": { eng: "shimenawaReminiscence", name2: "ShimenawasReminiscence", - nameLocale: 1554, + nameLocale: 1572, minStar: 4, maxStar: 5, - effect2: 684, + effect2: 695, - effect4: 735, + effect4: 746, flower: { - text: 1337, + text: 1353, url: getIcon("UI_RelicIcon_15019_4") }, feather: { - text: 601, + text: 612, url: getIcon("UI_RelicIcon_15019_2") }, sand: { - text: 963, + text: 976, url: getIcon("UI_RelicIcon_15019_5") }, cup: { - text: 1256, + text: 1272, url: getIcon("UI_RelicIcon_15019_1") }, head: { - text: 758, + text: 769, url: getIcon("UI_RelicIcon_15019_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":705,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":716,"type":"float"}, ], }, @@ -1760,52 +1760,52 @@ export default { "tenacityOfTheMillelith": { eng: "tenacityOfTheMillelith", name2: "TenacityOfTheMillelith", - nameLocale: 313, + nameLocale: 320, minStar: 4, maxStar: 5, - effect2: 1196, + effect2: 1212, - effect4: 191, + effect4: 198, flower: { - text: 302, + text: 309, url: getIcon("UI_RelicIcon_15017_4") }, feather: { - text: 777, + text: 788, url: getIcon("UI_RelicIcon_15017_2") }, sand: { - text: 1598, + text: 1616, url: getIcon("UI_RelicIcon_15017_5") }, cup: { - text: 1236, + text: 1252, url: getIcon("UI_RelicIcon_15017_1") }, head: { - text: 548, + text: 559, url: getIcon("UI_RelicIcon_15017_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":705,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":716,"type":"float"}, ], }, @@ -1813,46 +1813,46 @@ export default { "exile": { eng: "exile", name2: "TheExile", - nameLocale: 1040, + nameLocale: 1053, minStar: 3, maxStar: 4, - effect2: 179, + effect2: 186, - effect4: 741, + effect4: 752, flower: { - text: 1043, + text: 1056, url: getIcon("UI_RelicIcon_10009_4") }, feather: { - text: 1042, + text: 1055, url: getIcon("UI_RelicIcon_10009_2") }, sand: { - text: 1045, + text: 1058, url: getIcon("UI_RelicIcon_10009_5") }, cup: { - text: 1041, + text: 1054, url: getIcon("UI_RelicIcon_10009_1") }, head: { - text: 1044, + text: 1057, url: getIcon("UI_RelicIcon_10009_3") }, @@ -1864,46 +1864,46 @@ export default { "thunderingFury": { eng: "thunderingFury", name2: "ThunderingFury", - nameLocale: 496, + nameLocale: 507, minStar: 4, maxStar: 5, - effect2: 1395, + effect2: 1411, - effect4: 1510, + effect4: 1528, flower: { - text: 1681, + text: 1700, url: getIcon("UI_RelicIcon_15005_4") }, feather: { - text: 1671, + text: 1690, url: getIcon("UI_RelicIcon_15005_2") }, sand: { - text: 1680, + text: 1699, url: getIcon("UI_RelicIcon_15005_5") }, cup: { - text: 1656, + text: 1674, url: getIcon("UI_RelicIcon_15005_1") }, head: { - text: 390, + text: 399, url: getIcon("UI_RelicIcon_15005_3") }, @@ -1915,52 +1915,52 @@ export default { "thunderSmoother": { eng: "thunderSmoother", name2: "Thundersoother", - nameLocale: 566, + nameLocale: 577, minStar: 4, maxStar: 5, - effect2: 1663, + effect2: 1682, - effect4: 544, + effect4: 555, flower: { - text: 570, + text: 581, url: getIcon("UI_RelicIcon_14002_4") }, feather: { - text: 571, + text: 582, url: getIcon("UI_RelicIcon_14002_2") }, sand: { - text: 568, + text: 579, url: getIcon("UI_RelicIcon_14002_5") }, cup: { - text: 569, + text: 580, url: getIcon("UI_RelicIcon_14002_1") }, head: { - text: 567, + text: 578, url: getIcon("UI_RelicIcon_14002_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":708,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":719,"type":"float"}, ], }, @@ -1968,46 +1968,46 @@ export default { "tinyMiracle": { eng: "tinyMiracle", name2: "TinyMiracle", - nameLocale: 487, + nameLocale: 498, minStar: 3, maxStar: 4, - effect2: 619, + effect2: 630, - effect4: 337, + effect4: 344, flower: { - text: 491, + text: 502, url: getIcon("UI_RelicIcon_10004_4") }, feather: { - text: 490, + text: 501, url: getIcon("UI_RelicIcon_10004_2") }, sand: { - text: 489, + text: 500, url: getIcon("UI_RelicIcon_10004_5") }, cup: { - text: 488, + text: 499, url: getIcon("UI_RelicIcon_10004_1") }, head: { - text: 492, + text: 503, url: getIcon("UI_RelicIcon_10004_3") }, @@ -2019,46 +2019,46 @@ export default { "travelingDoctor": { eng: "travelingDoctor", name2: "TravelingDoctor", - nameLocale: 1078, + nameLocale: 1092, minStar: 1, maxStar: 3, - effect2: 1457, + effect2: 1475, - effect4: 745, + effect4: 756, flower: { - text: 1083, + text: 1097, url: getIcon("UI_RelicIcon_10013_4") }, feather: { - text: 1081, + text: 1095, url: getIcon("UI_RelicIcon_10013_2") }, sand: { - text: 1079, + text: 1093, url: getIcon("UI_RelicIcon_10013_5") }, cup: { - text: 1082, + text: 1096, url: getIcon("UI_RelicIcon_10013_1") }, head: { - text: 1080, + text: 1094, url: getIcon("UI_RelicIcon_10013_3") }, @@ -2070,54 +2070,54 @@ export default { "VermillionHereafter": { eng: "VermillionHereafter", name2: "VermillionHereafter", - nameLocale: 1536, + nameLocale: 1554, minStar: 4, maxStar: 5, - effect2: 684, + effect2: 695, - effect4: 739, + effect4: 750, flower: { - text: 1207, + text: 1223, url: getIcon("UI_RelicIcon_15023_4") }, feather: { - text: 1089, + text: 1103, url: getIcon("UI_RelicIcon_15023_2") }, sand: { - text: 1640, + text: 1658, url: getIcon("UI_RelicIcon_15023_5") }, cup: { - text: 1320, + text: 1336, url: getIcon("UI_RelicIcon_15023_1") }, head: { - text: 1420, + text: 1438, url: getIcon("UI_RelicIcon_15023_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate_q","title":209,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate_q","title":216,"type":"float"}, - {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":563,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":574,"type":"float"}, ], }, @@ -2125,46 +2125,46 @@ export default { "viridescentVenerer": { eng: "viridescentVenerer", name2: "ViridescentVenerer", - nameLocale: 1340, + nameLocale: 1356, minStar: 4, maxStar: 5, - effect2: 1396, + effect2: 1412, - effect4: 630, + effect4: 641, flower: { - text: 1597, + text: 1615, url: getIcon("UI_RelicIcon_15002_4") }, feather: { - text: 1143, + text: 1158, url: getIcon("UI_RelicIcon_15002_2") }, sand: { - text: 1343, + text: 1359, url: getIcon("UI_RelicIcon_15002_5") }, cup: { - text: 1342, + text: 1358, url: getIcon("UI_RelicIcon_15002_1") }, head: { - text: 1344, + text: 1360, url: getIcon("UI_RelicIcon_15002_3") }, @@ -2176,52 +2176,52 @@ export default { "VourukashasGlow": { eng: "VourukashasGlow", name2: "VourukashasGlow", - nameLocale: 1363, + nameLocale: 1379, minStar: 4, maxStar: 5, - effect2: 1197, + effect2: 1213, - effect4: 188, + effect4: 195, flower: { - text: 1098, + text: 1112, url: getIcon("UI_RelicIcon_15030_4") }, feather: { - text: 1171, + text: 1187, url: getIcon("UI_RelicIcon_15030_2") }, sand: { - text: 94, + text: 99, url: getIcon("UI_RelicIcon_15030_5") }, cup: { - text: 760, + text: 771, url: getIcon("UI_RelicIcon_15030_1") }, head: { - text: 1097, + text: 1111, url: getIcon("UI_RelicIcon_15030_3") }, config4: [ - {"default":4.0,"max":5.0,"min":0.0,"name":"stack","title":564,"type":"float"}, + {"default":4.0,"max":5.0,"min":0.0,"name":"stack","title":575,"type":"float"}, ], }, @@ -2229,46 +2229,46 @@ export default { "wandererTroupe": { eng: "wandererTroupe", name2: "WanderersTroupe", - nameLocale: 1049, + nameLocale: 1062, minStar: 4, maxStar: 5, - effect2: 214, + effect2: 221, - effect4: 1442, + effect4: 1460, flower: { - text: 95, + text: 100, url: getIcon("UI_RelicIcon_15003_4") }, feather: { - text: 1177, + text: 1193, url: getIcon("UI_RelicIcon_15003_2") }, sand: { - text: 1316, + text: 1332, url: getIcon("UI_RelicIcon_15003_5") }, cup: { - text: 358, + text: 365, url: getIcon("UI_RelicIcon_15003_1") }, head: { - text: 668, + text: 679, url: getIcon("UI_RelicIcon_15003_3") }, diff --git a/src/assets/_gen_buff.js b/src/assets/_gen_buff.js index b2890cf2..1b688e85 100644 --- a/src/assets/_gen_buff.js +++ b/src/assets/_gen_buff.js @@ -270,7 +270,7 @@ export default { "ATKPercentage": { name: "ATKPercentage", - nameLocale: 680, + nameLocale: 691, description: null, @@ -280,14 +280,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":716,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":727,"type":"floatPercentageInput"}, ], }, "DEFPercentage": { name: "DEFPercentage", - nameLocale: 1632, + nameLocale: 1650, description: null, @@ -297,14 +297,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":716,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":727,"type":"floatPercentageInput"}, ], }, "HPPercentage": { name: "HPPercentage", - nameLocale: 1187, + nameLocale: 1203, description: null, @@ -314,14 +314,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":716,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":727,"type":"floatPercentageInput"}, ], }, "ATKFixed": { name: "ATKFixed", - nameLocale: 679, + nameLocale: 690, description: null, @@ -331,14 +331,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"value","title":716,"type":"floatInput"}, + {"default":0.0,"name":"value","title":727,"type":"floatInput"}, ], }, "DEFFixed": { name: "DEFFixed", - nameLocale: 1631, + nameLocale: 1649, description: null, @@ -348,14 +348,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"value","title":716,"type":"floatInput"}, + {"default":0.0,"name":"value","title":727,"type":"floatInput"}, ], }, "HPFixed": { name: "HPFixed", - nameLocale: 1186, + nameLocale: 1202, description: null, @@ -365,14 +365,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"value","title":716,"type":"floatInput"}, + {"default":0.0,"name":"value","title":727,"type":"floatInput"}, ], }, "Critical": { name: "Critical", - nameLocale: 935, + nameLocale: 948, description: null, @@ -382,14 +382,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":716,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":727,"type":"floatPercentageInput"}, ], }, "CriticalDamage": { name: "CriticalDamage", - nameLocale: 931, + nameLocale: 944, description: null, @@ -399,14 +399,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":716,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":727,"type":"floatPercentageInput"}, ], }, "CustomBonus": { name: "CustomBonus", - nameLocale: 160, + nameLocale: 167, description: null, @@ -416,14 +416,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":716,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":727,"type":"floatPercentageInput"}, ], }, "ElementalMastery": { name: "ElementalMastery", - nameLocale: 211, + nameLocale: 217, description: null, @@ -433,14 +433,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"value","title":716,"type":"floatInput"}, + {"default":0.0,"name":"value","title":727,"type":"floatInput"}, ], }, "Recharge": { name: "Recharge", - nameLocale: 178, + nameLocale: 185, description: null, @@ -450,14 +450,14 @@ export default { genre: "Common", config: [ - {"default":20.0,"name":"p","title":716,"type":"floatPercentageInput"}, + {"default":20.0,"name":"p","title":727,"type":"floatPercentageInput"}, ], }, "DEFMinus": { name: "DEFMinus", - nameLocale: 263, + nameLocale: 270, description: 0, @@ -467,14 +467,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":716,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":727,"type":"floatPercentageInput"}, ], }, "ResMinus": { name: "ResMinus", - nameLocale: 262, + nameLocale: 269, description: null, @@ -484,14 +484,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":716,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":727,"type":"floatPercentageInput"}, ], }, "HealingBonus": { name: "HealingBonus", - nameLocale: 1030, + nameLocale: 1043, description: null, @@ -501,16 +501,16 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":716,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":727,"type":"floatPercentageInput"}, ], }, "BaseDmg": { name: "BaseDmg", - nameLocale: 430, + nameLocale: 439, - description: 1518, + description: 1536, badge: BaseDmg_image, @@ -518,16 +518,16 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"value","title":716,"type":"floatInput"}, + {"default":0.0,"name":"value","title":727,"type":"floatInput"}, ], }, "AlbedoTalent2": { name: "AlbedoTalent2", - nameLocale: 1644, + nameLocale: 1662, - description: 1649, + description: 1667, badge: getImage("Albedo"), @@ -540,9 +540,9 @@ export default { "AlbedoC4": { name: "AlbedoC4", - nameLocale: 1645, + nameLocale: 1663, - description: 1647, + description: 1665, badge: getImage("Albedo"), @@ -555,9 +555,9 @@ export default { "AlbedoC6": { name: "AlbedoC6", - nameLocale: 1643, + nameLocale: 1661, - description: 1648, + description: 1666, badge: getImage("Albedo"), @@ -570,9 +570,9 @@ export default { "AloyTalent1": { name: "AloyTalent1", - nameLocale: 424, + nameLocale: 434, - description: 425, + description: 435, badge: getImage("Aloy"), @@ -585,9 +585,9 @@ export default { "AratakiIttoC4": { name: "AratakiIttoC4", - nameLocale: 1376, + nameLocale: 1392, - description: 1378, + description: 1394, badge: getImage("Itto"), @@ -600,9 +600,9 @@ export default { "BeidouC6": { name: "BeidouC6", - nameLocale: 305, + nameLocale: 312, - description: 307, + description: 314, badge: getImage("Beidou"), @@ -615,9 +615,9 @@ export default { "BennettQ": { name: "BennettQ", - nameLocale: 1162, + nameLocale: 1178, - description: 1165, + description: 1181, badge: getImage("Bennett"), @@ -625,20 +625,20 @@ export default { genre: "Character", config: [ - {"default":800.0,"name":"base_atk","title":1167,"type":"floatInput"}, + {"default":800.0,"name":"base_atk","title":1183,"type":"floatInput"}, - {"default":true,"name":"c1","title":778,"type":"bool"}, + {"default":true,"name":"c1","title":789,"type":"bool"}, - {"default":10,"max":15,"min":1,"name":"skill3","title":648,"type":"int"}, + {"default":10,"max":15,"min":1,"name":"skill3","title":659,"type":"int"}, ], }, "BennettC6": { name: "BennettC6", - nameLocale: 1161, + nameLocale: 1177, - description: 1166, + description: 1182, badge: getImage("Bennett"), @@ -651,9 +651,9 @@ export default { "ChongyunTalent2": { name: "ChongyunTalent2", - nameLocale: 1568, + nameLocale: 1586, - description: 1570, + description: 1588, badge: getImage("Chongyun"), @@ -666,9 +666,9 @@ export default { "DionaC6G50": { name: "DionaC6G50", - nameLocale: 1546, + nameLocale: 1564, - description: 1548, + description: 1566, badge: getImage("Diona"), @@ -681,9 +681,9 @@ export default { "EulaE": { name: "EulaE", - nameLocale: 156, + nameLocale: 163, - description: 158, + description: 165, badge: getImage("Eula"), @@ -691,16 +691,16 @@ export default { genre: "Character", config: [ - {"default":9,"max":15,"min":1,"name":"skill2","title":648,"type":"int"}, + {"default":9,"max":15,"min":1,"name":"skill2","title":659,"type":"int"}, ], }, "GanyuTalent2": { name: "GanyuTalent2", - nameLocale: 1181, + nameLocale: 1197, - description: 1185, + description: 1201, badge: getImage("Ganyu"), @@ -713,9 +713,9 @@ export default { "GanyuC1": { name: "GanyuC1", - nameLocale: 1182, + nameLocale: 1198, - description: 1184, + description: 1200, badge: getImage("Ganyu"), @@ -728,9 +728,9 @@ export default { "GorouE1": { name: "GorouE1", - nameLocale: 138, + nameLocale: 145, - description: 143, + description: 150, badge: getImage("Gorou"), @@ -738,16 +738,16 @@ export default { genre: "Character", config: [ - {"default":10,"max":15,"min":1,"name":"skill2","title":142,"type":"int"}, + {"default":10,"max":15,"min":1,"name":"skill2","title":149,"type":"int"}, ], }, "GorouE3": { name: "GorouE3", - nameLocale: 139, + nameLocale: 146, - description: 144, + description: 151, badge: getImage("Gorou"), @@ -760,9 +760,9 @@ export default { "GorouTalent1": { name: "GorouTalent1", - nameLocale: 137, + nameLocale: 144, - description: 146, + description: 153, badge: getImage("Gorou"), @@ -775,9 +775,9 @@ export default { "GorouC6": { name: "GorouC6", - nameLocale: 140, + nameLocale: 147, - description: 145, + description: 152, badge: getImage("Gorou"), @@ -785,16 +785,16 @@ export default { genre: "Character", config: [ - {"default":1,"max":3,"min":1,"name":"level","title":1692,"type":"int"}, + {"default":1,"max":3,"min":1,"name":"level","title":1713,"type":"int"}, ], }, "HuTaoTalent1": { name: "HuTaoTalent1", - nameLocale: 1354, + nameLocale: 1370, - description: 1356, + description: 1372, badge: getImage("Hutao"), @@ -807,9 +807,9 @@ export default { "JeanC4": { name: "JeanC4", - nameLocale: 1174, + nameLocale: 1190, - description: 1176, + description: 1192, badge: getImage("Qin"), @@ -822,9 +822,9 @@ export default { "KaedeharaKazuhaTalent2": { name: "KaedeharaKazuhaTalent2", - nameLocale: 977, + nameLocale: 990, - description: 981, + description: 994, badge: getImage("Kazuha"), @@ -832,18 +832,18 @@ export default { genre: "Character", config: [ - {"default":"Electro","name":"element","title":628,"type":"element4"}, + {"default":"Electro","name":"element","title":639,"type":"element4"}, - {"default":800.0,"name":"em","title":64,"type":"floatInput"}, + {"default":800.0,"name":"em","title":66,"type":"floatInput"}, ], }, "KaedeharaKazuhaC2": { name: "KaedeharaKazuhaC2", - nameLocale: 976, + nameLocale: 989, - description: 980, + description: 993, badge: getImage("Kazuha"), @@ -856,9 +856,9 @@ export default { "KamisatoAyakaC4": { name: "KamisatoAyakaC4", - nameLocale: 1274, + nameLocale: 1290, - description: 1324, + description: 1340, badge: getImage("Ayaka"), @@ -871,9 +871,9 @@ export default { "KleeC2": { name: "KleeC2", - nameLocale: 350, + nameLocale: 357, - description: 352, + description: 359, badge: getImage("Klee"), @@ -886,9 +886,9 @@ export default { "KleeC6": { name: "KleeC6", - nameLocale: 349, + nameLocale: 356, - description: 353, + description: 360, badge: getImage("Klee"), @@ -901,9 +901,9 @@ export default { "KujouSaraEOrQ": { name: "KujouSaraEOrQ", - nameLocale: 98, + nameLocale: 103, - description: 101, + description: 106, badge: getImage("Sara"), @@ -911,9 +911,9 @@ export default { genre: "Character", config: [ - {"default":700.0,"name":"base_atk","title":102,"type":"floatInput"}, + {"default":700.0,"name":"base_atk","title":107,"type":"floatInput"}, - {"default":false,"name":"c6","title":781,"type":"bool"}, + {"default":false,"name":"c6","title":792,"type":"bool"}, {"default":10,"max":15,"min":1,"name":"skill2","title":10,"type":"int"}, @@ -922,9 +922,9 @@ export default { "LisaTalent2": { name: "LisaTalent2", - nameLocale: 89, + nameLocale: 94, - description: 91, + description: 96, badge: getImage("Lisa"), @@ -937,9 +937,9 @@ export default { "MonaQ": { name: "MonaQ", - nameLocale: 1384, + nameLocale: 1400, - description: 1387, + description: 1403, badge: getImage("Mona"), @@ -949,16 +949,16 @@ export default { {"default":9,"max":15,"min":1,"name":"skill3","title":16,"type":"int"}, - {"default":false,"name":"c4","title":780,"type":"bool"}, + {"default":false,"name":"c4","title":791,"type":"bool"}, ], }, "MonaC1": { name: "MonaC1", - nameLocale: 1385, + nameLocale: 1401, - description: 1388, + description: 1404, badge: getImage("Mona"), @@ -971,9 +971,9 @@ export default { "NingguangTalent2": { name: "NingguangTalent2", - nameLocale: 266, + nameLocale: 273, - description: 268, + description: 275, badge: getImage("Ningguang"), @@ -986,9 +986,9 @@ export default { "RaidenShogunE": { name: "RaidenShogunE", - nameLocale: 1675, + nameLocale: 1694, - description: 1678, + description: 1697, badge: getImage("Shougun"), @@ -996,18 +996,18 @@ export default { genre: "Character", config: [ - {"default":8,"max":15,"min":1,"name":"skill2","title":1677,"type":"int"}, + {"default":8,"max":15,"min":1,"name":"skill2","title":1696,"type":"int"}, - {"default":80,"max":100,"min":20,"name":"energy","title":334,"type":"int"}, + {"default":80,"max":100,"min":20,"name":"energy","title":341,"type":"int"}, ], }, "RaidenShogunC4": { name: "RaidenShogunC4", - nameLocale: 1674, + nameLocale: 1693, - description: 1679, + description: 1698, badge: getImage("Shougun"), @@ -1020,9 +1020,9 @@ export default { "RazorC4": { name: "RazorC4", - nameLocale: 1668, + nameLocale: 1687, - description: 1670, + description: 1689, badge: getImage("Razor"), @@ -1035,9 +1035,9 @@ export default { "RosariaTalent2": { name: "RosariaTalent2", - nameLocale: 1332, + nameLocale: 1348, - description: 1335, + description: 1351, badge: getImage("Rosaria"), @@ -1045,16 +1045,16 @@ export default { genre: "Character", config: [ - {"default":70.0,"name":"crit","title":1336,"type":"floatPercentageInput"}, + {"default":70.0,"name":"crit","title":1352,"type":"floatPercentageInput"}, ], }, "RosariaC6": { name: "RosariaC6", - nameLocale: 1331, + nameLocale: 1347, - description: 1334, + description: 1350, badge: getImage("Rosaria"), @@ -1067,9 +1067,9 @@ export default { "ShenheE": { name: "ShenheE", - nameLocale: 1211, + nameLocale: 1227, - description: 1217, + description: 1233, badge: getImage("Shenhe"), @@ -1077,18 +1077,18 @@ export default { genre: "Character", config: [ - {"default":3000.0,"name":"atk","title":1222,"type":"floatInput"}, + {"default":3000.0,"name":"atk","title":1238,"type":"floatInput"}, - {"default":8,"max":15,"min":1,"name":"skill2","title":1216,"type":"int"}, + {"default":8,"max":15,"min":1,"name":"skill2","title":1232,"type":"int"}, ], }, "ShenheQ": { name: "ShenheQ", - nameLocale: 1213, + nameLocale: 1229, - description: 1219, + description: 1235, badge: getImage("Shenhe"), @@ -1096,16 +1096,16 @@ export default { genre: "Character", config: [ - {"default":8,"max":15,"min":1,"name":"skill3","title":1218,"type":"int"}, + {"default":8,"max":15,"min":1,"name":"skill3","title":1234,"type":"int"}, ], }, "ShenheTalent1": { name: "ShenheTalent1", - nameLocale: 1212, + nameLocale: 1228, - description: 1220, + description: 1236, badge: getImage("Shenhe"), @@ -1113,16 +1113,16 @@ export default { genre: "Character", config: [ - {"default":false,"name":"c2","title":779,"type":"bool"}, + {"default":false,"name":"c2","title":790,"type":"bool"}, ], }, "ShenheTalent2": { name: "ShenheTalent2", - nameLocale: 1214, + nameLocale: 1230, - description: 1221, + description: 1237, badge: getImage("Shenhe"), @@ -1130,16 +1130,16 @@ export default { genre: "Character", config: [ - {"default":0,"name":"t","options":["点按","长按"],"title":649,"type":"option"}, + {"default":0,"name":"t","options":["点按","长按"],"title":660,"type":"option"}, ], }, "SucroseTalent1": { name: "SucroseTalent1", - nameLocale: 1243, + nameLocale: 1259, - description: 1246, + description: 1262, badge: getImage("Sucrose"), @@ -1152,9 +1152,9 @@ export default { "SucroseTalent2": { name: "SucroseTalent2", - nameLocale: 1241, + nameLocale: 1257, - description: 1247, + description: 1263, badge: getImage("Sucrose"), @@ -1162,16 +1162,16 @@ export default { genre: "Character", config: [ - {"default":200.0,"name":"em","title":1248,"type":"floatInput"}, + {"default":200.0,"name":"em","title":1264,"type":"floatInput"}, ], }, "SucroseC6": { name: "SucroseC6", - nameLocale: 1242, + nameLocale: 1258, - description: 1245, + description: 1261, badge: getImage("Sucrose"), @@ -1179,16 +1179,16 @@ export default { genre: "Character", config: [ - {"default":"Electro","name":"element","title":633,"type":"element4"}, + {"default":"Electro","name":"element","title":644,"type":"element4"}, ], }, "ThomaTalent1": { name: "ThomaTalent1", - nameLocale: 624, + nameLocale: 635, - description: 627, + description: 638, badge: getImage("Tohma"), @@ -1196,16 +1196,16 @@ export default { genre: "Character", config: [ - {"default":2.0,"max":5.0,"min":0.0,"name":"stack","title":343,"type":"float"}, + {"default":2.0,"max":5.0,"min":0.0,"name":"stack","title":350,"type":"float"}, ], }, "ThomaC6": { name: "ThomaC6", - nameLocale: 623, + nameLocale: 634, - description: 626, + description: 637, badge: getImage("Tohma"), @@ -1218,9 +1218,9 @@ export default { "VentiC2": { name: "VentiC2", - nameLocale: 1074, + nameLocale: 1088, - description: 1076, + description: 1090, badge: getImage("Venti"), @@ -1228,16 +1228,16 @@ export default { genre: "Character", config: [ - {"default":false,"name":"levitating","title":1410,"type":"bool"}, + {"default":false,"name":"levitating","title":1428,"type":"bool"}, ], }, "VentiC6": { name: "VentiC6", - nameLocale: 1073, + nameLocale: 1087, - description: 1077, + description: 1091, badge: getImage("Venti"), @@ -1245,18 +1245,18 @@ export default { genre: "Character", config: [ - {"default":true,"name":"is_convert","title":333,"type":"bool"}, + {"default":true,"name":"is_convert","title":340,"type":"bool"}, - {"default":"Electro","name":"element","title":1523,"type":"element4"}, + {"default":"Electro","name":"element","title":1541,"type":"element4"}, ], }, "XianglingTalent2": { name: "XianglingTalent2", - nameLocale: 1730, + nameLocale: 1751, - description: 1734, + description: 1755, badge: getImage("Xiangling"), @@ -1269,9 +1269,9 @@ export default { "XianglingC1": { name: "XianglingC1", - nameLocale: 1728, + nameLocale: 1749, - description: 1732, + description: 1753, badge: getImage("Xiangling"), @@ -1284,9 +1284,9 @@ export default { "XianglingC6": { name: "XianglingC6", - nameLocale: 1729, + nameLocale: 1750, - description: 1733, + description: 1754, badge: getImage("Xiangling"), @@ -1299,9 +1299,9 @@ export default { "XingqiuC2": { name: "XingqiuC2", - nameLocale: 1426, + nameLocale: 1444, - description: 1428, + description: 1446, badge: getImage("Xingqiu"), @@ -1314,9 +1314,9 @@ export default { "XinyanC4": { name: "XinyanC4", - nameLocale: 1529, + nameLocale: 1547, - description: 1533, + description: 1551, badge: getImage("Xinyan"), @@ -1329,9 +1329,9 @@ export default { "XinyanTalent2": { name: "XinyanTalent2", - nameLocale: 1530, + nameLocale: 1548, - description: 1534, + description: 1552, badge: getImage("Xinyan"), @@ -1344,9 +1344,9 @@ export default { "YaeMikoC4": { name: "YaeMikoC4", - nameLocale: 224, + nameLocale: 231, - description: 226, + description: 233, badge: getImage("Yae"), @@ -1359,9 +1359,9 @@ export default { "YoimiyaTalent2": { name: "YoimiyaTalent2", - nameLocale: 531, + nameLocale: 542, - description: 533, + description: 544, badge: getImage("Yoimiya"), @@ -1376,9 +1376,9 @@ export default { "YunjinQ": { name: "YunjinQ", - nameLocale: 126, + nameLocale: 133, - description: 128, + description: 135, badge: getImage("Yunjin"), @@ -1388,20 +1388,20 @@ export default { {"default":10,"max":15,"min":1,"name":"skill3","title":16,"type":"int"}, - {"default":2000.0,"name":"def","title":130,"type":"floatInput"}, + {"default":2000.0,"name":"def","title":137,"type":"floatInput"}, {"default":true,"name":"talent2","title":5,"type":"bool"}, - {"default":4,"max":4,"min":1,"name":"ele_count","title":1619,"type":"int"}, + {"default":4,"max":4,"min":1,"name":"ele_count","title":1637,"type":"int"}, ], }, "YunjinC2": { name: "YunjinC2", - nameLocale: 125, + nameLocale: 132, - description: 129, + description: 136, badge: getImage("Yunjin"), @@ -1414,9 +1414,9 @@ export default { "ZhongliShield": { name: "ZhongliShield", - nameLocale: 1602, + nameLocale: 1620, - description: 1604, + description: 1622, badge: getImage("Zhongli"), @@ -1429,9 +1429,9 @@ export default { "YelanTalent2": { name: "YelanTalent2", - nameLocale: 448, + nameLocale: 458, - description: 452, + description: 462, badge: getImage("Yelan"), @@ -1439,16 +1439,16 @@ export default { genre: "Character", config: [ - {"default":14,"max":14,"min":0,"name":"secs","title":1319,"type":"int"}, + {"default":14,"max":14,"min":0,"name":"secs","title":1335,"type":"int"}, ], }, "YelanC4": { name: "YelanC4", - nameLocale: 449, + nameLocale: 459, - description: 451, + description: 461, badge: getImage("Yelan"), @@ -1456,16 +1456,16 @@ export default { genre: "Character", config: [ - {"default":4,"max":4,"min":1,"name":"count","title":988,"type":"int"}, + {"default":4,"max":4,"min":1,"name":"count","title":1001,"type":"int"}, ], }, "KamisatoAyatoQ": { name: "KamisatoAyatoQ", - nameLocale: 1268, + nameLocale: 1284, - description: 1271, + description: 1287, badge: getImage("Ayato"), @@ -1473,16 +1473,16 @@ export default { genre: "Character", config: [ - {"default":8,"max":15,"min":1,"name":"skill_level","title":1270,"type":"int"}, + {"default":8,"max":15,"min":1,"name":"skill_level","title":1286,"type":"int"}, ], }, "ShikanoinHeizouTalent2": { name: "ShikanoinHeizouTalent2", - nameLocale: 1754, + nameLocale: 1775, - description: 1756, + description: 1777, badge: getImage("Heizo"), @@ -1495,9 +1495,9 @@ export default { "TighnariC4": { name: "TighnariC4", - nameLocale: 674, + nameLocale: 685, - description: 676, + description: 687, badge: getImage("Tighnari"), @@ -1505,16 +1505,16 @@ export default { genre: "Character", config: [ - {"default":false,"name":"after_reaction","title":1564,"type":"bool"}, + {"default":false,"name":"after_reaction","title":1582,"type":"bool"}, ], }, "DoriC4": { name: "DoriC4", - nameLocale: 445, + nameLocale: 455, - description: 446, + description: 456, badge: getImage("Dori"), @@ -1522,18 +1522,18 @@ export default { genre: "Character", config: [ - {"default":false,"name":"hp_below50","title":1192,"type":"bool"}, + {"default":false,"name":"hp_below50","title":1208,"type":"bool"}, - {"default":true,"name":"energy_below50","title":218,"type":"bool"}, + {"default":true,"name":"energy_below50","title":225,"type":"bool"}, ], }, "NilouTalent1": { name: "NilouTalent1", - nameLocale: 498, + nameLocale: 509, - description: 437, + description: 447, badge: getImage("Nilou"), @@ -1546,9 +1546,9 @@ export default { "NilouTalent2": { name: "NilouTalent2", - nameLocale: 499, + nameLocale: 510, - description: 427, + description: 437, badge: getImage("Nilou"), @@ -1556,16 +1556,16 @@ export default { genre: "Character", config: [ - {"default":60000.0,"name":"hp","title":501,"type":"floatInput"}, + {"default":60000.0,"name":"hp","title":512,"type":"floatInput"}, ], }, "CandaceQ": { name: "CandaceQ", - nameLocale: 416, + nameLocale: 426, - description: 1460, + description: 1478, badge: getImage("Candace"), @@ -1578,9 +1578,9 @@ export default { "CandaceTalent2": { name: "CandaceTalent2", - nameLocale: 415, + nameLocale: 425, - description: 435, + description: 445, badge: getImage("Candace"), @@ -1588,16 +1588,16 @@ export default { genre: "Character", config: [ - {"default":30000.0,"name":"hp","title":417,"type":"floatInput"}, + {"default":30000.0,"name":"hp","title":427,"type":"floatInput"}, ], }, "NahidaTalent1": { name: "NahidaTalent1", - nameLocale: 1312, + nameLocale: 1328, - description: 747, + description: 758, 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":1626,"type":"float"}, + {"default":1000.0,"max":3000.0,"min":0.0,"name":"max_em","title":1644,"type":"float"}, ], }, "FaruzanQ": { name: "FaruzanQ", - nameLocale: 1035, + nameLocale: 1048, - description: 1159, + description: 1175, badge: getImage("Faruzan"), @@ -1622,7 +1622,7 @@ export default { genre: "Character", config: [ - {"default":650,"max":1000,"min":0,"name":"base_atk","title":1036,"type":"int"}, + {"default":650,"max":1000,"min":0,"name":"base_atk","title":1049,"type":"int"}, {"default":10,"max":15,"min":1,"name":"q_level","title":16,"type":"int"}, @@ -1632,16 +1632,16 @@ export default { {"default":0.0,"max":1.0,"min":0.0,"name":"rate_talent2","title":18,"type":"float"}, - {"default":false,"name":"enable_c6","title":227,"type":"bool"}, + {"default":false,"name":"enable_c6","title":234,"type":"bool"}, ], }, "Mika": { name: "Mika", - nameLocale: 1304, + nameLocale: 1320, - description: 775, + description: 786, 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":173,"type":"float"}, + {"default":3.0,"max":5.0,"min":0.0,"name":"stack_talent2","title":180,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate_c6","title":229,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate_c6","title":236,"type":"float"}, ], }, "KavehQ": { name: "KavehQ", - nameLocale: 325, + nameLocale: 332, - description: 1624, + description: 1642, badge: getImage("Kaveh"), @@ -1668,18 +1668,18 @@ export default { genre: "Character", config: [ - {"default":8,"max":15,"min":1,"name":"q_level","title":326,"type":"int"}, + {"default":8,"max":15,"min":1,"name":"q_level","title":333,"type":"int"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1010,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1023,"type":"float"}, ], }, "BaizhuTalent2": { name: "BaizhuTalent2", - nameLocale: 1226, + nameLocale: 1242, - description: 336, + description: 343, badge: getImage("Baizhuer"), @@ -1687,18 +1687,18 @@ export default { genre: "Character", config: [ - {"default":50000.0,"max":50000.0,"min":0.0,"name":"hp","title":1228,"type":"float"}, + {"default":50000.0,"max":50000.0,"min":0.0,"name":"hp","title":1244,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1010,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1023,"type":"float"}, ], }, "BaizhuC4": { name: "BaizhuC4", - nameLocale: 1227, + nameLocale: 1243, - description: 748, + description: 759, badge: getImage("Baizhuer"), @@ -1706,14 +1706,14 @@ export default { genre: "Character", config: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1010,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1023,"type":"float"}, ], }, "FreedomSworn": { name: "FreedomSworn", - nameLocale: 1367, + nameLocale: 1383, description: 20, @@ -1723,14 +1723,14 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1307,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1323,"type":"intInput"}, ], }, "SongOfBrokenPines": { name: "SongOfBrokenPines", - nameLocale: 973, + nameLocale: 986, description: 21, @@ -1740,16 +1740,16 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1307,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1323,"type":"intInput"}, ], }, "WolfsGravestone": { name: "WolfsGravestone", - nameLocale: 1137, + nameLocale: 1152, - description: 693, + description: 704, badge: getImageW("Claymore_Wolfmound"), @@ -1757,16 +1757,16 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1307,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1323,"type":"intInput"}, ], }, "ThrillingTalesOfDragonSlayers": { name: "ThrillingTalesOfDragonSlayers", - nameLocale: 1474, + nameLocale: 1492, - description: 159, + description: 166, badge: getImageW("Catalyst_Pulpfic"), @@ -1774,16 +1774,16 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1307,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1323,"type":"intInput"}, ], }, "ElegyOfTheEnd": { name: "ElegyOfTheEnd", - nameLocale: 1318, + nameLocale: 1334, - description: 316, + description: 323, badge: getImageW("Bow_Widsith"), @@ -1791,16 +1791,16 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1307,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1323,"type":"intInput"}, ], }, "HakushinRing": { name: "HakushinRing", - nameLocale: 1233, + nameLocale: 1249, - description: 997, + description: 1010, badge: getImageW("Catalyst_Bakufu"), @@ -1808,18 +1808,18 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1307,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1323,"type":"intInput"}, - {"default":"Electro","name":"element","title":176,"type":"element8"}, + {"default":"Electro","name":"element","title":183,"type":"element8"}, ], }, "SapwoodBlade": { name: "SapwoodBlade", - nameLocale: 331, + nameLocale: 338, - description: 660, + description: 671, badge: getImageW("Sword_Arakalari"), @@ -1827,18 +1827,18 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1307,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1323,"type":"intInput"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":581,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":594,"type":"float"}, ], }, "Moonpiercer": { name: "Moonpiercer", - nameLocale: 1494, + nameLocale: 1512, - description: 661, + description: 672, badge: getImageW("Pole_Arakalari"), @@ -1846,16 +1846,16 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1307,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1323,"type":"intInput"}, ], }, "XiphosMoonlight": { name: "XiphosMoonlight", - nameLocale: 1445, + nameLocale: 1463, - description: 1439, + description: 1457, badge: getImageW("Sword_Pleroma"), @@ -1863,16 +1863,16 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1307,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1323,"type":"intInput"}, - {"default":900.0,"name":"em","title":210,"type":"floatInput"}, + {"default":900.0,"name":"em","title":218,"type":"floatInput"}, ], }, "MakhairaAquamarine": { name: "MakhairaAquamarine", - nameLocale: 1154, + nameLocale: 1170, description: 29, @@ -1882,18 +1882,18 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1307,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1323,"type":"intInput"}, - {"default":900.0,"name":"em","title":210,"type":"floatInput"}, + {"default":900.0,"name":"em","title":218,"type":"floatInput"}, ], }, "KeyOfKhajNisut": { name: "KeyOfKhajNisut", - nameLocale: 411, + nameLocale: 421, - description: 547, + description: 558, badge: getImageW("Sword_Deshret"), @@ -1901,18 +1901,18 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1307,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1323,"type":"intInput"}, - {"default":20000.0,"name":"hp","title":1186,"type":"floatInput"}, + {"default":20000.0,"name":"hp","title":1202,"type":"floatInput"}, ], }, "ResonancePyro2": { name: "ResonancePyro2", - nameLocale: 184, + nameLocale: 191, - description: 683, + description: 694, badge: ResonancePyro2_image, @@ -1925,9 +1925,9 @@ export default { "ResonanceCryo2": { name: "ResonanceCryo2", - nameLocale: 185, + nameLocale: 192, - description: 678, + description: 689, badge: ResonanceCryo2_image, @@ -1935,16 +1935,16 @@ export default { genre: "Resonance", config: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":581,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":594,"type":"float"}, ], }, "ResonanceGeo2": { name: "ResonanceGeo2", - nameLocale: 182, + nameLocale: 189, - description: 653, + description: 664, badge: ResonanceGeo2_image, @@ -1952,18 +1952,18 @@ export default { genre: "Resonance", config: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate1","title":703,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate1","title":714,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate2","title":704,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate2","title":715,"type":"float"}, ], }, "ResonanceHydro2": { name: "ResonanceHydro2", - nameLocale: 183, + nameLocale: 190, - description: 1094, + description: 1108, badge: ResonanceHydro2_image, @@ -1976,9 +1976,9 @@ export default { "ResonanceDendro2": { name: "ResonanceDendro2", - nameLocale: 186, + nameLocale: 193, - description: 212, + description: 219, badge: ResonanceDendro2_image, @@ -1986,18 +1986,18 @@ export default { genre: "Resonance", config: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate1","title":703,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate1","title":714,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate2","title":704,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate2","title":715,"type":"float"}, ], }, "Instructor4": { name: "Instructor4", - nameLocale: 710, + nameLocale: 721, - description: 1465, + description: 1483, badge: getImageA("UI_RelicIcon_10007_4"), @@ -2010,9 +2010,9 @@ export default { "NoblesseOblige4": { name: "NoblesseOblige4", - nameLocale: 767, + nameLocale: 778, - description: 743, + description: 754, badge: getImageA("UI_RelicIcon_15007_4"), @@ -2025,9 +2025,9 @@ export default { "ArchaicPetra4": { name: "ArchaicPetra4", - nameLocale: 608, + nameLocale: 619, - description: 1405, + description: 1421, badge: getImageA("UI_RelicIcon_15014_4"), @@ -2035,16 +2035,16 @@ export default { genre: "Artifact", config: [ - {"default":"Electro","name":"element","title":1321,"type":"element4"}, + {"default":"Electro","name":"element","title":1337,"type":"element4"}, ], }, "ViridescentVenerer4": { name: "ViridescentVenerer4", - nameLocale: 1341, + nameLocale: 1357, - description: 989, + description: 1002, badge: getImageA("UI_RelicIcon_15002_4"), @@ -2052,16 +2052,16 @@ export default { genre: "Artifact", config: [ - {"default":"Electro","name":"element","title":628,"type":"element4"}, + {"default":"Electro","name":"element","title":639,"type":"element4"}, ], }, "TenacityOfTheMillelith4": { name: "TenacityOfTheMillelith4", - nameLocale: 314, + nameLocale: 321, - description: 190, + description: 197, badge: getImageA("UI_RelicIcon_15017_4"), @@ -2074,9 +2074,9 @@ export default { "DeepwoodMemories4": { name: "DeepwoodMemories4", - nameLocale: 1063, + nameLocale: 1077, - description: 196, + description: 203, 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":581,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":594,"type":"float"}, ], }, diff --git a/src/assets/_gen_character.js b/src/assets/_gen_character.js index a94d74e4..4d213545 100644 --- a/src/assets/_gen_character.js +++ b/src/assets/_gen_character.js @@ -84,6 +84,10 @@ import Faruzan_splash from "@image/characters/Faruzan_splash" // import Fischl_avatar from "@image/characters/Fischl_avatar" import Fischl_splash from "@image/characters/Fischl_splash" +// import Freminet_card from "@image/characters/Freminet_card" +// import Freminet_avatar from "@image/characters/Freminet_avatar" +import Freminet_splash from "@image/characters/Freminet_splash" + // import Ganyu_card from "@image/characters/Ganyu_card" // import Ganyu_avatar from "@image/characters/Ganyu_avatar" import Ganyu_splash from "@image/characters/Ganyu_splash" @@ -286,7 +290,7 @@ export default { AetherAnemo: { name: "AetherAnemo", - nameLocale: 1293, + nameLocale: 1309, element: "Anemo", weapon: "Sword", star: 5, @@ -294,54 +298,54 @@ export default { // avatar: AetherAnemo_avatar, avatar: getName("PlayerBoy"), splash: AetherAnemo_splash, - skillName1: 807, - skillName2: 1700, - skillName3: 1699, + skillName1: 818, + skillName2: 1721, + skillName3: 1720, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 68 }, + { index: 2, text: 70 }, - { index: 3, text: 397 }, + { index: 3, text: 406 }, - { index: 4, text: 131 }, + { index: 4, text: 138 }, - { index: 5, text: 1578 }, + { index: 5, text: 1598 }, - { index: 6, text: 1581 }, + { index: 6, text: 1600 }, - { index: 7, text: 76 }, + { index: 7, text: 81 }, - { index: 8, text: 162 }, + { index: 8, text: 169 }, - { index: 9, text: 1737 }, + { index: 9, text: 1758 }, ], skillMap2: [ - { index: 10, text: 284 }, + { index: 10, text: 291 }, - { index: 11, text: 947 }, + { index: 11, text: 960 }, - { index: 12, text: 285 }, + { index: 12, text: 292 }, - { index: 13, text: 954 }, + { index: 13, text: 967 }, ], skillMap3: [ - { index: 14, text: 1767 }, + { index: 14, text: 1788 }, - { index: 15, text: 1652 }, + { index: 15, text: 1670 }, - { index: 18, text: 1651 }, + { index: 18, text: 1669 }, - { index: 17, text: 1653 }, + { index: 17, text: 1671 }, - { index: 16, text: 1650 }, + { index: 16, text: 1668 }, ], config: [ @@ -354,7 +358,7 @@ export default { Albedo: { name: "Albedo", - nameLocale: 1642, + nameLocale: 1660, element: "Geo", weapon: "Sword", star: 5, @@ -362,44 +366,44 @@ export default { // avatar: Albedo_avatar, avatar: getName("Albedo"), splash: Albedo_splash, - skillName1: 850, - skillName2: 283, - skillName3: 1483, + skillName1: 862, + skillName2: 290, + skillName3: 1501, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 68 }, + { index: 2, text: 70 }, - { index: 3, text: 397 }, + { index: 3, text: 406 }, - { index: 4, text: 131 }, + { index: 4, text: 138 }, - { index: 5, text: 1579 }, + { index: 5, text: 1596 }, - { index: 6, text: 1582 }, + { index: 6, text: 1602 }, - { index: 7, text: 76 }, + { index: 7, text: 81 }, - { index: 8, text: 162 }, + { index: 8, text: 169 }, - { index: 9, text: 1737 }, + { index: 9, text: 1758 }, ], skillMap2: [ - { index: 10, text: 635 }, + { index: 10, text: 646 }, - { index: 11, text: 287 }, + { index: 11, text: 294 }, ], skillMap3: [ - { index: 12, text: 1124 }, + { index: 12, text: 1139 }, - { index: 13, text: 1206 }, + { index: 13, text: 1222 }, ], config: [ @@ -412,7 +416,7 @@ export default { Alhaitham: { name: "Alhaitham", - nameLocale: 1359, + nameLocale: 1375, element: "Dendro", weapon: "Sword", star: 5, @@ -420,37 +424,37 @@ export default { // avatar: Alhaitham_avatar, avatar: getName("Alhatham"), splash: Alhaitham_splash, - skillName1: 825, - skillName2: 235, - skillName3: 1005, + skillName1: 837, + skillName2: 242, + skillName3: 1018, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 69 }, + { index: 2, text: 71 }, - { index: 3, text: 70 }, + { index: 3, text: 72 }, - { index: 4, text: 397 }, + { index: 4, text: 406 }, - { index: 5, text: 131 }, + { index: 5, text: 138 }, - { index: 6, text: 1579 }, + { index: 6, text: 1596 }, - { index: 7, text: 1582 }, + { index: 7, text: 1602 }, - { index: 8, text: 76 }, + { index: 8, text: 81 }, - { index: 9, text: 162 }, + { index: 9, text: 169 }, - { index: 10, text: 1737 }, + { index: 10, text: 1758 }, ], skillMap2: [ - { index: 11, text: 1294 }, + { index: 11, text: 1310 }, { index: 12, text: 2 }, @@ -461,28 +465,28 @@ export default { ], skillMap3: [ - { index: 15, text: 322 }, + { index: 15, text: 329 }, ], config: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"c2_stack","title":383,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"c2_stack","title":390,"type":"float"}, - {"default":0.0,"max":3.0,"min":0.0,"name":"c4_stack","title":385,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"c4_stack","title":392,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"c6_rate","title":387,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"c6_rate","title":396,"type":"float"}, ], configSkill: [ - {"default":true,"name":"under_e","title":1170,"type":"bool"}, + {"default":true,"name":"under_e","title":1186,"type":"bool"}, ], }, Aloy: { name: "Aloy", - nameLocale: 422, + nameLocale: 432, element: "Cryo", weapon: "Bow", star: 5, @@ -490,42 +494,42 @@ export default { // avatar: Aloy_avatar, avatar: getName("Aloy"), splash: Aloy_splash, - skillName1: 813, - skillName2: 249, - skillName3: 942, + skillName1: 824, + skillName2: 256, + skillName3: 955, skillMap1: [ { index: 0, text: 49 }, { index: 1, text: 50 }, - { index: 2, text: 114 }, + { index: 2, text: 119 }, - { index: 3, text: 68 }, + { index: 3, text: 70 }, - { index: 4, text: 397 }, + { index: 4, text: 406 }, - { index: 5, text: 1239 }, + { index: 5, text: 1255 }, - { index: 6, text: 1087 }, + { index: 6, text: 1101 }, - { index: 7, text: 76 }, + { index: 7, text: 81 }, - { index: 8, text: 162 }, + { index: 8, text: 169 }, - { index: 9, text: 1737 }, + { index: 9, text: 1758 }, ], skillMap2: [ - { index: 10, text: 248 }, + { index: 10, text: 255 }, - { index: 11, text: 259 }, + { index: 11, text: 266 }, ], skillMap3: [ - { index: 12, text: 635 }, + { index: 12, text: 646 }, ], config: [ @@ -533,14 +537,14 @@ export default { ], configSkill: [ - {"default":4,"max":4,"min":0,"name":"coil_count","title":1314,"type":"int"}, + {"default":4,"max":4,"min":0,"name":"coil_count","title":1330,"type":"int"}, ], }, Amber: { name: "Amber", - nameLocale: 516, + nameLocale: 527, element: "Pyro", weapon: "Bow", star: 4, @@ -548,42 +552,42 @@ export default { // avatar: Amber_avatar, avatar: getName("Ambor"), splash: Amber_splash, - skillName1: 838, - skillName2: 1126, - skillName3: 1300, + skillName1: 850, + skillName2: 1141, + skillName3: 1316, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 68 }, + { index: 2, text: 70 }, - { index: 3, text: 397 }, + { index: 3, text: 406 }, - { index: 4, text: 131 }, + { index: 4, text: 138 }, - { index: 5, text: 1239 }, + { index: 5, text: 1255 }, - { index: 6, text: 1087 }, + { index: 6, text: 1101 }, - { index: 7, text: 76 }, + { index: 7, text: 81 }, - { index: 8, text: 162 }, + { index: 8, text: 169 }, - { index: 9, text: 1737 }, + { index: 9, text: 1758 }, ], skillMap2: [ - { index: 10, text: 1127 }, + { index: 10, text: 1142 }, ], skillMap3: [ - { index: 11, text: 1301 }, + { index: 11, text: 1317 }, - { index: 12, text: 1302 }, + { index: 12, text: 1318 }, ], config: [ @@ -596,7 +600,7 @@ export default { AratakiItto: { name: "AratakiItto", - nameLocale: 1375, + nameLocale: 1391, element: "Geo", weapon: "Claymore", star: 5, @@ -604,35 +608,35 @@ export default { // avatar: AratakiItto_avatar, avatar: getName("Itto"), splash: AratakiItto_splash, - skillName1: 859, - skillName2: 1747, - skillName3: 959, + skillName1: 871, + skillName2: 1768, + skillName3: 972, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 68 }, + { index: 2, text: 70 }, - { index: 3, text: 397 }, + { index: 3, text: 406 }, - { index: 4, text: 1381 }, + { index: 4, text: 1397 }, - { index: 5, text: 1380 }, + { index: 5, text: 1396 }, - { index: 6, text: 562 }, + { index: 6, text: 573 }, - { index: 7, text: 76 }, + { index: 7, text: 81 }, - { index: 8, text: 162 }, + { index: 8, text: 169 }, - { index: 9, text: 1737 }, + { index: 9, text: 1758 }, ], skillMap2: [ - { index: 10, text: 635 }, + { index: 10, text: 646 }, ], skillMap3: [ @@ -643,14 +647,14 @@ export default { ], configSkill: [ - {"default":true,"name":"after_q","title":432,"type":"bool"}, + {"default":true,"name":"after_q","title":442,"type":"bool"}, ], }, Baizhu: { name: "Baizhu", - nameLocale: 1225, + nameLocale: 1241, element: "Dendro", weapon: "Catalyst", star: 5, @@ -658,47 +662,47 @@ export default { // avatar: Baizhu_avatar, avatar: getName("Baizhuer"), splash: Baizhu_splash, - skillName1: 855, - skillName2: 485, - skillName3: 610, + skillName1: 867, + skillName2: 496, + skillName3: 621, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 69 }, + { index: 2, text: 71 }, - { index: 3, text: 70 }, + { index: 3, text: 72 }, - { index: 4, text: 397 }, + { index: 4, text: 406 }, - { index: 5, text: 1576 }, + { index: 5, text: 1594 }, - { index: 6, text: 76 }, + { index: 6, text: 81 }, - { index: 7, text: 162 }, + { index: 7, text: 169 }, - { index: 8, text: 1737 }, + { index: 8, text: 1758 }, ], skillMap2: [ - { index: 9, text: 635 }, + { index: 9, text: 646 }, - { index: 10, text: 1034 }, + { index: 10, text: 1047 }, ], skillMap3: [ - { index: 12, text: 1101 }, + { index: 12, text: 1116 }, - { index: 11, text: 761 }, + { index: 11, text: 772 }, ], config: [ - {"default":false,"name":"hp_below_50","title":413,"type":"bool"}, + {"default":false,"name":"hp_below_50","title":423,"type":"bool"}, ], configSkill: [ @@ -708,7 +712,7 @@ export default { Barbara: { name: "Barbara", - nameLocale: 1361, + nameLocale: 1377, element: "Hydro", weapon: "Catalyst", star: 4, @@ -716,40 +720,40 @@ export default { // avatar: Barbara_avatar, avatar: getName("Barbara"), splash: Barbara_splash, - skillName1: 821, - skillName2: 1088, - skillName3: 1616, + skillName1: 832, + skillName2: 1102, + skillName3: 1634, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 68 }, + { index: 2, text: 70 }, - { index: 3, text: 397 }, + { index: 3, text: 406 }, - { index: 4, text: 1576 }, + { index: 4, text: 1594 }, - { index: 5, text: 76 }, + { index: 5, text: 81 }, - { index: 6, text: 162 }, + { index: 6, text: 169 }, - { index: 7, text: 1737 }, + { index: 7, text: 1758 }, ], skillMap2: [ - { index: 8, text: 378 }, + { index: 8, text: 385 }, - { index: 10, text: 667 }, + { index: 10, text: 677 }, - { index: 9, text: 1019 }, + { index: 9, text: 1032 }, ], skillMap3: [ - { index: 11, text: 1033 }, + { index: 11, text: 1046 }, ], config: [ @@ -762,7 +766,7 @@ export default { Beidou: { name: "Beidou", - nameLocale: 304, + nameLocale: 311, element: "Electro", weapon: "Claymore", star: 4, @@ -770,46 +774,46 @@ export default { // avatar: Beidou_avatar, avatar: getName("Beidou"), splash: Beidou_splash, - skillName1: 810, - skillName2: 671, - skillName3: 719, + skillName1: 821, + skillName2: 682, + skillName3: 730, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 68 }, + { index: 2, text: 70 }, - { index: 3, text: 397 }, + { index: 3, text: 406 }, - { index: 4, text: 131 }, + { index: 4, text: 138 }, - { index: 5, text: 1590 }, + { index: 5, text: 1608 }, - { index: 6, text: 1593 }, + { index: 6, text: 1611 }, - { index: 7, text: 76 }, + { index: 7, text: 81 }, - { index: 8, text: 162 }, + { index: 8, text: 169 }, - { index: 9, text: 1737 }, + { index: 9, text: 1758 }, ], skillMap2: [ - { index: 10, text: 430 }, + { index: 10, text: 439 }, { index: 11, text: 45 }, - { index: 12, text: 111 }, + { index: 12, text: 116 }, ], skillMap3: [ - { index: 13, text: 635 }, + { index: 13, text: 646 }, - { index: 14, text: 1615 }, + { index: 14, text: 1633 }, ], config: [ @@ -822,7 +826,7 @@ export default { Bennett: { name: "Bennett", - nameLocale: 1160, + nameLocale: 1176, element: "Pyro", weapon: "Sword", star: 4, @@ -830,52 +834,52 @@ export default { // avatar: Bennett_avatar, avatar: getName("Bennett"), splash: Bennett_splash, - skillName1: 804, - skillName2: 1116, - skillName3: 1338, + skillName1: 815, + skillName2: 1131, + skillName3: 1354, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 68 }, + { index: 2, text: 70 }, - { index: 3, text: 397 }, + { index: 3, text: 406 }, - { index: 4, text: 131 }, + { index: 4, text: 138 }, - { index: 5, text: 1579 }, + { index: 5, text: 1596 }, - { index: 6, text: 1582 }, + { index: 6, text: 1602 }, - { index: 7, text: 76 }, + { index: 7, text: 81 }, - { index: 8, text: 162 }, + { index: 8, text: 169 }, - { index: 9, text: 1737 }, + { index: 9, text: 1758 }, ], skillMap2: [ - { index: 10, text: 1105 }, + { index: 10, text: 1120 }, { index: 11, text: 56 }, { index: 12, text: 57 }, - { index: 13, text: 121 }, + { index: 13, text: 126 }, - { index: 14, text: 122 }, + { index: 14, text: 127 }, - { index: 15, text: 1128 }, + { index: 15, text: 1143 }, ], skillMap3: [ - { index: 16, text: 635 }, + { index: 16, text: 646 }, - { index: 17, text: 663 }, + { index: 17, text: 675 }, ], config: [ @@ -888,7 +892,7 @@ export default { Candace: { name: "Candace", - nameLocale: 414, + nameLocale: 424, element: "Hydro", weapon: "Polearm", star: 4, @@ -896,59 +900,59 @@ export default { // avatar: Candace_avatar, avatar: getName("Candace"), splash: Candace_splash, - skillName1: 823, - skillName2: 409, - skillName3: 407, + skillName1: 835, + skillName2: 419, + skillName3: 417, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 69 }, + { index: 2, text: 71 }, - { index: 3, text: 70 }, + { index: 3, text: 72 }, - { index: 4, text: 397 }, + { index: 4, text: 406 }, - { index: 5, text: 1576 }, + { index: 5, text: 1594 }, - { index: 6, text: 76 }, + { index: 6, text: 81 }, - { index: 7, text: 162 }, + { index: 7, text: 169 }, - { index: 8, text: 1737 }, + { index: 8, text: 1758 }, ], skillMap2: [ - { index: 9, text: 429 }, + { index: 9, text: 440 }, - { index: 10, text: 1415 }, + { index: 10, text: 1433 }, ], skillMap3: [ - { index: 11, text: 635 }, + { index: 11, text: 646 }, - { index: 12, text: 1018 }, + { index: 12, text: 1031 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"c2_rate","title":382,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"c2_rate","title":389,"type":"float"}, ], configSkill: [ - {"default":true,"name":"crown","title":1504,"type":"bool"}, + {"default":true,"name":"crown","title":1522,"type":"bool"}, ], }, Chongyun: { name: "Chongyun", - nameLocale: 1567, + nameLocale: 1585, element: "Cryo", weapon: "Claymore", star: 4, @@ -956,38 +960,38 @@ export default { // avatar: Chongyun_avatar, avatar: getName("Chongyun"), splash: Chongyun_splash, - skillName1: 828, - skillName2: 1100, - skillName3: 1099, + skillName1: 840, + skillName2: 1114, + skillName3: 1113, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 68 }, + { index: 2, text: 70 }, - { index: 3, text: 397 }, + { index: 3, text: 406 }, - { index: 4, text: 1590 }, + { index: 4, text: 1608 }, - { index: 5, text: 1593 }, + { index: 5, text: 1611 }, - { index: 6, text: 76 }, + { index: 6, text: 81 }, - { index: 7, text: 162 }, + { index: 7, text: 169 }, - { index: 8, text: 1737 }, + { index: 8, text: 1758 }, ], skillMap2: [ - { index: 9, text: 635 }, + { index: 9, text: 646 }, ], skillMap3: [ - { index: 10, text: 635 }, + { index: 10, text: 646 }, ], config: [ @@ -1000,7 +1004,7 @@ export default { Collei: { name: "Collei", - nameLocale: 987, + nameLocale: 1000, element: "Dendro", weapon: "Bow", star: 4, @@ -1008,45 +1012,45 @@ export default { // avatar: Collei_avatar, avatar: getName("Collei"), splash: Collei_splash, - skillName1: 836, - skillName2: 658, - skillName3: 1147, + skillName1: 848, + skillName2: 669, + skillName3: 1163, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 68 }, + { index: 2, text: 70 }, - { index: 3, text: 397 }, + { index: 3, text: 406 }, - { index: 4, text: 1239 }, + { index: 4, text: 1255 }, - { index: 5, text: 1087 }, + { index: 5, text: 1101 }, - { index: 6, text: 76 }, + { index: 6, text: 81 }, - { index: 7, text: 162 }, + { index: 7, text: 169 }, - { index: 8, text: 1737 }, + { index: 8, text: 1758 }, ], skillMap2: [ - { index: 9, text: 635 }, + { index: 9, text: 646 }, ], skillMap3: [ - { index: 10, text: 1125 }, + { index: 10, text: 1140 }, - { index: 11, text: 1517 }, + { index: 11, text: 1535 }, ], config: [ - {"default":false,"name":"background","title":434,"type":"bool"}, + {"default":false,"name":"background","title":444,"type":"bool"}, ], configSkill: [ @@ -1056,7 +1060,7 @@ export default { Cyno: { name: "Cyno", - nameLocale: 1502, + nameLocale: 1520, element: "Electro", weapon: "Polearm", star: 5, @@ -1064,53 +1068,53 @@ export default { // avatar: Cyno_avatar, avatar: getName("Cyno"), splash: Cyno_splash, - skillName1: 795, - skillName2: 1290, - skillName3: 408, + skillName1: 806, + skillName2: 1306, + skillName3: 418, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 72 }, + { index: 2, text: 73 }, - { index: 3, text: 397 }, + { index: 3, text: 406 }, - { index: 4, text: 1576 }, + { index: 4, text: 1594 }, - { index: 5, text: 76 }, + { index: 5, text: 81 }, - { index: 6, text: 162 }, + { index: 6, text: 169 }, - { index: 7, text: 1737 }, + { index: 7, text: 1758 }, - { index: 11, text: 361 }, + { index: 11, text: 368 }, - { index: 12, text: 364 }, + { index: 12, text: 371 }, - { index: 13, text: 362 }, + { index: 13, text: 369 }, - { index: 14, text: 368 }, + { index: 14, text: 375 }, - { index: 15, text: 365 }, + { index: 15, text: 372 }, - { index: 16, text: 370 }, + { index: 16, text: 377 }, - { index: 17, text: 363 }, + { index: 17, text: 370 }, - { index: 18, text: 366 }, + { index: 18, text: 373 }, - { index: 19, text: 371 }, + { index: 19, text: 378 }, ], skillMap2: [ - { index: 8, text: 635 }, + { index: 8, text: 646 }, - { index: 9, text: 367 }, + { index: 9, text: 374 }, - { index: 10, text: 369 }, + { index: 10, text: 376 }, ], skillMap3: [ @@ -1118,21 +1122,21 @@ export default { ], config: [ - {"default":4.0,"max":5.0,"min":0.0,"name":"c2_stack","title":380,"type":"float"}, + {"default":4.0,"max":5.0,"min":0.0,"name":"c2_stack","title":387,"type":"float"}, - {"default":true,"name":"after_q","title":360,"type":"bool"}, + {"default":true,"name":"after_q","title":367,"type":"bool"}, ], configSkill: [ - {"default":true,"name":"under_judication","title":1463,"type":"bool"}, + {"default":true,"name":"under_judication","title":1481,"type":"bool"}, ], }, Dehya: { name: "Dehya", - nameLocale: 1549, + nameLocale: 1567, element: "Pyro", weapon: "Claymore", star: 5, @@ -1140,44 +1144,44 @@ export default { // avatar: Dehya_avatar, avatar: getName("Dehya"), splash: Dehya_splash, - skillName1: 816, - skillName2: 1122, - skillName3: 1103, + skillName1: 827, + skillName2: 1137, + skillName3: 1118, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 68 }, + { index: 2, text: 70 }, - { index: 3, text: 397 }, + { index: 3, text: 406 }, - { index: 4, text: 1590 }, + { index: 4, text: 1608 }, - { index: 5, text: 1593 }, + { index: 5, text: 1611 }, - { index: 6, text: 76 }, + { index: 6, text: 81 }, - { index: 7, text: 162 }, + { index: 7, text: 169 }, - { index: 8, text: 1737 }, + { index: 8, text: 1758 }, ], skillMap2: [ - { index: 9, text: 261 }, + { index: 9, text: 268 }, - { index: 10, text: 290 }, + { index: 10, text: 297 }, - { index: 11, text: 1689 }, + { index: 11, text: 1710 }, ], skillMap3: [ - { index: 12, text: 1111 }, + { index: 12, text: 1126 }, - { index: 13, text: 1117 }, + { index: 13, text: 1132 }, ], config: [ @@ -1185,16 +1189,16 @@ export default { ], configSkill: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"c2_rate","title":110,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"c2_rate","title":115,"type":"float"}, - {"default":3.5,"max":4.0,"min":0.0,"name":"c6_stack","title":230,"type":"float"}, + {"default":3.5,"max":4.0,"min":0.0,"name":"c6_stack","title":237,"type":"float"}, ], }, Diluc: { name: "Diluc", - nameLocale: 1543, + nameLocale: 1561, element: "Pyro", weapon: "Claymore", star: 5, @@ -1202,46 +1206,46 @@ export default { // avatar: Diluc_avatar, avatar: getName("Diluc"), splash: Diluc_splash, - skillName1: 824, - skillName2: 1556, - skillName3: 1758, + skillName1: 836, + skillName2: 1574, + skillName3: 1779, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 68 }, + { index: 2, text: 70 }, - { index: 3, text: 397 }, + { index: 3, text: 406 }, - { index: 4, text: 1590 }, + { index: 4, text: 1608 }, - { index: 5, text: 1593 }, + { index: 5, text: 1611 }, - { index: 6, text: 76 }, + { index: 6, text: 81 }, - { index: 7, text: 162 }, + { index: 7, text: 169 }, - { index: 8, text: 1737 }, + { index: 8, text: 1758 }, ], skillMap2: [ { index: 9, text: 48 }, - { index: 10, text: 114 }, + { index: 10, text: 119 }, - { index: 11, text: 68 }, + { index: 11, text: 70 }, ], skillMap3: [ - { index: 12, text: 717 }, + { index: 12, text: 728 }, - { index: 13, text: 662 }, + { index: 13, text: 673 }, - { index: 14, text: 1129 }, + { index: 14, text: 1144 }, ], config: [ @@ -1249,14 +1253,14 @@ export default { ], configSkill: [ - {"default":true,"name":"pyro","title":782,"type":"bool"}, + {"default":true,"name":"pyro","title":793,"type":"bool"}, ], }, Diona: { name: "Diona", - nameLocale: 1545, + nameLocale: 1563, element: "Cryo", weapon: "Bow", star: 4, @@ -1264,44 +1268,44 @@ export default { // avatar: Diona_avatar, avatar: getName("Diona"), splash: Diona_splash, - skillName1: 833, - skillName2: 1146, - skillName3: 960, + skillName1: 845, + skillName2: 1162, + skillName3: 973, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 68 }, + { index: 2, text: 70 }, - { index: 3, text: 397 }, + { index: 3, text: 406 }, - { index: 4, text: 131 }, + { index: 4, text: 138 }, - { index: 5, text: 1239 }, + { index: 5, text: 1255 }, - { index: 6, text: 1087 }, + { index: 6, text: 1101 }, - { index: 7, text: 76 }, + { index: 7, text: 81 }, - { index: 8, text: 162 }, + { index: 8, text: 169 }, - { index: 9, text: 1737 }, + { index: 9, text: 1758 }, ], skillMap2: [ - { index: 10, text: 1145 }, + { index: 10, text: 1161 }, ], skillMap3: [ - { index: 11, text: 635 }, + { index: 11, text: 646 }, - { index: 12, text: 1691 }, + { index: 12, text: 1712 }, - { index: 13, text: 665 }, + { index: 13, text: 676 }, ], config: [ @@ -1314,7 +1318,7 @@ export default { Dori: { name: "Dori", - nameLocale: 444, + nameLocale: 454, element: "Electro", weapon: "Claymore", star: 4, @@ -1322,42 +1326,42 @@ export default { // avatar: Dori_avatar, avatar: getName("Dori"), splash: Dori_splash, - skillName1: 805, - skillName2: 1612, - skillName3: 327, + skillName1: 816, + skillName2: 1630, + skillName3: 334, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 115 }, + { index: 1, text: 120 }, - { index: 2, text: 116 }, + { index: 2, text: 121 }, - { index: 3, text: 68 }, + { index: 3, text: 70 }, - { index: 4, text: 1590 }, + { index: 4, text: 1608 }, - { index: 5, text: 1593 }, + { index: 5, text: 1611 }, - { index: 6, text: 76 }, + { index: 6, text: 81 }, - { index: 7, text: 162 }, + { index: 7, text: 169 }, - { index: 8, text: 1737 }, + { index: 8, text: 1758 }, ], skillMap2: [ - { index: 9, text: 725 }, + { index: 9, text: 736 }, - { index: 10, text: 391 }, + { index: 10, text: 400 }, ], skillMap3: [ - { index: 11, text: 1541 }, + { index: 11, text: 1559 }, - { index: 12, text: 666 }, + { index: 12, text: 678 }, ], config: [ @@ -1372,7 +1376,7 @@ export default { Eula: { name: "Eula", - nameLocale: 155, + nameLocale: 162, element: "Cryo", weapon: "Claymore", star: 5, @@ -1380,52 +1384,52 @@ export default { // avatar: Eula_avatar, avatar: getName("Eula"), splash: Eula_splash, - skillName1: 849, - skillName2: 255, - skillName3: 269, + skillName1: 861, + skillName2: 262, + skillName3: 276, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 69 }, + { index: 2, text: 71 }, - { index: 3, text: 70 }, + { index: 3, text: 72 }, - { index: 4, text: 397 }, + { index: 4, text: 406 }, - { index: 5, text: 132 }, + { index: 5, text: 139 }, - { index: 6, text: 133 }, + { index: 6, text: 140 }, - { index: 7, text: 1590 }, + { index: 7, text: 1608 }, - { index: 8, text: 1593 }, + { index: 8, text: 1611 }, - { index: 9, text: 76 }, + { index: 9, text: 81 }, - { index: 10, text: 162 }, + { index: 10, text: 169 }, - { index: 11, text: 1737 }, + { index: 11, text: 1758 }, ], skillMap2: [ - { index: 12, text: 1105 }, + { index: 12, text: 1120 }, - { index: 13, text: 1613 }, + { index: 13, text: 1631 }, - { index: 14, text: 254 }, + { index: 14, text: 261 }, - { index: 15, text: 1006 }, + { index: 15, text: 1019 }, ], skillMap3: [ - { index: 16, text: 635 }, + { index: 16, text: 646 }, - { index: 17, text: 221 }, + { index: 17, text: 228 }, ], config: [ @@ -1433,14 +1437,14 @@ export default { ], configSkill: [ - {"default":0,"max":30,"min":0,"name":"lightfall_stack","title":222,"type":"int"}, + {"default":0,"max":30,"min":0,"name":"lightfall_stack","title":229,"type":"int"}, ], }, Faruzan: { name: "Faruzan", - nameLocale: 1157, + nameLocale: 1173, element: "Anemo", weapon: "Bow", star: 4, @@ -1448,40 +1452,40 @@ export default { // avatar: Faruzan_avatar, avatar: getName("Faruzan"), splash: Faruzan_splash, - skillName1: 854, - skillName2: 1688, - skillName3: 650, + skillName1: 866, + skillName2: 1709, + skillName3: 661, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 68 }, + { index: 2, text: 70 }, - { index: 3, text: 397 }, + { index: 3, text: 406 }, - { index: 4, text: 1576 }, + { index: 4, text: 1594 }, - { index: 4, text: 1087 }, + { index: 4, text: 1101 }, - { index: 6, text: 76 }, + { index: 6, text: 81 }, - { index: 7, text: 162 }, + { index: 7, text: 169 }, - { index: 8, text: 1737 }, + { index: 8, text: 1758 }, ], skillMap2: [ - { index: 9, text: 635 }, + { index: 9, text: 646 }, - { index: 10, text: 1698 }, + { index: 10, text: 1719 }, ], skillMap3: [ - { index: 11, text: 635 }, + { index: 11, text: 646 }, ], config: [ @@ -1498,7 +1502,7 @@ export default { Fischl: { name: "Fischl", - nameLocale: 1407, + nameLocale: 1425, element: "Electro", weapon: "Bow", star: 4, @@ -1506,42 +1510,42 @@ export default { // avatar: Fischl_avatar, avatar: getName("Fischl"), splash: Fischl_splash, - skillName1: 843, - skillName2: 453, - skillName3: 1358, + skillName1: 855, + skillName2: 463, + skillName3: 1374, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 68 }, + { index: 2, text: 70 }, - { index: 3, text: 397 }, + { index: 3, text: 406 }, - { index: 4, text: 131 }, + { index: 4, text: 138 }, - { index: 5, text: 1239 }, + { index: 5, text: 1255 }, - { index: 6, text: 1087 }, + { index: 6, text: 1101 }, - { index: 7, text: 76 }, + { index: 7, text: 81 }, - { index: 8, text: 162 }, + { index: 8, text: 169 }, - { index: 9, text: 1737 }, + { index: 9, text: 1758 }, ], skillMap2: [ - { index: 10, text: 494 }, + { index: 10, text: 505 }, - { index: 11, text: 347 }, + { index: 11, text: 354 }, ], skillMap3: [ - { index: 12, text: 1411 }, + { index: 12, text: 1429 }, ], config: [ @@ -1552,9 +1556,89 @@ export default { ], }, + Freminet: { + name: "Freminet", + nameLocale: 1423, + element: "Cryo", + weapon: "Claymore", + star: 4, + // card: Freminet_card, + // avatar: Freminet_avatar, + avatar: getName("Freminet"), + splash: Freminet_splash, + skillName1: 833, + skillName2: 1067, + skillName3: 1160, + skillMap1: [ + + { index: 0, text: 48 }, + + { index: 1, text: 119 }, + + { index: 2, text: 70 }, + + { index: 3, text: 406 }, + + { index: 4, text: 1608 }, + + { index: 5, text: 1611 }, + + { index: 6, text: 81 }, + + { index: 7, text: 169 }, + + { index: 8, text: 1758 }, + + ], + skillMap2: [ + + { index: 9, text: 80 }, + + { index: 10, text: 1704 }, + + { index: 11, text: 1677 }, + + { index: 12, text: 60 }, + + { index: 13, text: 61 }, + + { index: 14, text: 128 }, + + { index: 15, text: 129 }, + + { index: 16, text: 78 }, + + { index: 17, text: 79 }, + + { index: 18, text: 414 }, + + { index: 19, text: 1115 }, + + { index: 21, text: 1705 }, + + ], + skillMap3: [ + + { index: 20, text: 646 }, + + ], + config: [ + + {"default":0.0,"max":2.0,"min":0.0,"name":"c4_stack","title":394,"type":"float"}, + + {"default":0.0,"max":3.0,"min":0.0,"name":"c6_stack","title":395,"type":"float"}, + + ], + configSkill: [ + + {"default":1.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":489,"type":"float"}, + + ], + }, + Ganyu: { name: "Ganyu", - nameLocale: 1180, + nameLocale: 1196, element: "Cryo", weapon: "Bow", star: 5, @@ -1562,63 +1646,63 @@ export default { // avatar: Ganyu_avatar, avatar: getName("Ganyu"), splash: Ganyu_splash, - skillName1: 822, - skillName2: 555, - skillName3: 1655, + skillName1: 834, + skillName2: 566, + skillName3: 1673, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 68 }, + { index: 2, text: 70 }, - { index: 3, text: 397 }, + { index: 3, text: 406 }, - { index: 4, text: 131 }, + { index: 4, text: 138 }, - { index: 5, text: 232 }, + { index: 5, text: 239 }, - { index: 6, text: 1239 }, + { index: 6, text: 1255 }, - { index: 7, text: 59 }, + { index: 7, text: 58 }, - { index: 8, text: 1684 }, + { index: 8, text: 1703 }, - { index: 9, text: 1683 }, + { index: 9, text: 1702 }, - { index: 10, text: 76 }, + { index: 10, text: 81 }, - { index: 11, text: 162 }, + { index: 11, text: 169 }, - { index: 12, text: 1737 }, + { index: 12, text: 1758 }, ], skillMap2: [ - { index: 13, text: 635 }, + { index: 13, text: 646 }, ], skillMap3: [ - { index: 14, text: 253 }, + { index: 14, text: 260 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":473,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":483,"type":"float"}, ], configSkill: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"talent1_rate","title":471,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent1_rate","title":481,"type":"float"}, ], }, Gorou: { name: "Gorou", - nameLocale: 136, + nameLocale: 143, element: "Geo", weapon: "Bow", star: 4, @@ -1626,40 +1710,40 @@ export default { // avatar: Gorou_avatar, avatar: getName("Gorou"), splash: Gorou_splash, - skillName1: 858, - skillName2: 1132, - skillName3: 238, + skillName1: 870, + skillName2: 1147, + skillName3: 245, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 68 }, + { index: 2, text: 70 }, - { index: 3, text: 397 }, + { index: 3, text: 406 }, - { index: 4, text: 1239 }, + { index: 4, text: 1255 }, - { index: 5, text: 1087 }, + { index: 5, text: 1101 }, - { index: 6, text: 76 }, + { index: 6, text: 81 }, - { index: 7, text: 162 }, + { index: 7, text: 169 }, - { index: 8, text: 1737 }, + { index: 8, text: 1758 }, ], skillMap2: [ - { index: 9, text: 635 }, + { index: 9, text: 646 }, ], skillMap3: [ - { index: 10, text: 635 }, + { index: 10, text: 646 }, - { index: 11, text: 558 }, + { index: 11, text: 569 }, ], config: [ @@ -1672,7 +1756,7 @@ export default { HuTao: { name: "HuTao", - nameLocale: 1353, + nameLocale: 1369, element: "Pyro", weapon: "Polearm", star: 5, @@ -1680,61 +1764,61 @@ export default { // avatar: HuTao_avatar, avatar: getName("Hutao"), splash: HuTao_splash, - skillName1: 809, - skillName2: 1421, - skillName3: 518, + skillName1: 820, + skillName2: 1439, + skillName3: 529, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 68 }, + { index: 2, text: 70 }, - { index: 3, text: 397 }, + { index: 3, text: 406 }, - { index: 4, text: 132 }, + { index: 4, text: 139 }, - { index: 5, text: 133 }, + { index: 5, text: 140 }, - { index: 6, text: 232 }, + { index: 6, text: 239 }, - { index: 7, text: 1576 }, + { index: 7, text: 1594 }, - { index: 8, text: 76 }, + { index: 8, text: 81 }, - { index: 9, text: 162 }, + { index: 9, text: 169 }, - { index: 10, text: 1737 }, + { index: 10, text: 1758 }, ], skillMap2: [ - { index: 11, text: 1424 }, + { index: 11, text: 1442 }, ], skillMap3: [ - { index: 12, text: 635 }, + { index: 12, text: 646 }, - { index: 13, text: 163 }, + { index: 13, text: 170 }, ], config: [ - {"default":true,"name":"le_50","title":1192,"type":"bool"}, + {"default":true,"name":"le_50","title":1208,"type":"bool"}, ], configSkill: [ - {"default":true,"name":"after_e","title":597,"type":"bool"}, + {"default":true,"name":"after_e","title":608,"type":"bool"}, ], }, Jean: { name: "Jean", - nameLocale: 1173, + nameLocale: 1189, element: "Anemo", weapon: "Sword", star: 5, @@ -1742,44 +1826,44 @@ export default { // avatar: Jean_avatar, avatar: getName("Qin"), splash: Jean_splash, - skillName1: 847, - skillName2: 1697, - skillName3: 1413, + skillName1: 859, + skillName2: 1718, + skillName3: 1431, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 68 }, + { index: 2, text: 70 }, - { index: 3, text: 397 }, + { index: 3, text: 406 }, - { index: 4, text: 131 }, + { index: 4, text: 138 }, - { index: 5, text: 1576 }, + { index: 5, text: 1594 }, - { index: 6, text: 76 }, + { index: 6, text: 81 }, - { index: 7, text: 162 }, + { index: 7, text: 169 }, - { index: 8, text: 1737 }, + { index: 8, text: 1758 }, ], skillMap2: [ - { index: 9, text: 635 }, + { index: 9, text: 646 }, ], skillMap3: [ - { index: 10, text: 1124 }, + { index: 10, text: 1139 }, - { index: 11, text: 274 }, + { index: 11, text: 281 }, - { index: 12, text: 1690 }, + { index: 12, text: 1711 }, - { index: 13, text: 664 }, + { index: 13, text: 674 }, ], config: [ @@ -1792,7 +1876,7 @@ export default { KaedeharaKazuha: { name: "KaedeharaKazuha", - nameLocale: 975, + nameLocale: 988, element: "Anemo", weapon: "Sword", star: 5, @@ -1800,68 +1884,68 @@ export default { // avatar: KaedeharaKazuha_avatar, avatar: getName("Kazuha"), splash: KaedeharaKazuha_splash, - skillName1: 814, - skillName2: 317, - skillName3: 63, + skillName1: 825, + skillName2: 324, + skillName3: 65, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 69 }, + { index: 2, text: 71 }, - { index: 3, text: 70 }, + { index: 3, text: 72 }, - { index: 4, text: 397 }, + { index: 4, text: 406 }, - { index: 5, text: 134 }, + { index: 5, text: 141 }, - { index: 6, text: 1577 }, + { index: 6, text: 1597 }, - { index: 6, text: 1584 }, + { index: 6, text: 1599 }, - { index: 8, text: 76 }, + { index: 8, text: 81 }, - { index: 9, text: 162 }, + { index: 9, text: 169 }, - { index: 10, text: 1737 }, + { index: 10, text: 1758 }, ], skillMap2: [ - { index: 11, text: 103 }, + { index: 11, text: 108 }, - { index: 12, text: 104 }, + { index: 12, text: 109 }, - { index: 13, text: 109 }, + { index: 13, text: 114 }, - { index: 14, text: 107 }, + { index: 14, text: 112 }, - { index: 15, text: 106 }, + { index: 15, text: 111 }, - { index: 16, text: 105 }, + { index: 16, text: 110 }, - { index: 17, text: 108 }, + { index: 17, text: 113 }, - { index: 18, text: 1107 }, + { index: 18, text: 1122 }, - { index: 19, text: 1614 }, + { index: 19, text: 1632 }, ], skillMap3: [ - { index: 20, text: 717 }, + { index: 20, text: 728 }, - { index: 21, text: 662 }, + { index: 21, text: 673 }, - { index: 22, text: 1652 }, + { index: 22, text: 1670 }, - { index: 23, text: 1651 }, + { index: 23, text: 1669 }, - { index: 24, text: 1650 }, + { index: 24, text: 1668 }, - { index: 25, text: 1653 }, + { index: 25, text: 1671 }, ], config: [ @@ -1869,14 +1953,14 @@ export default { ], configSkill: [ - {"default":false,"name":"after_e_or_q","title":231,"type":"bool"}, + {"default":false,"name":"after_e_or_q","title":238,"type":"bool"}, ], }, Kaeya: { name: "Kaeya", - nameLocale: 272, + nameLocale: 279, element: "Cryo", weapon: "Sword", star: 4, @@ -1884,40 +1968,40 @@ export default { // avatar: Kaeya_avatar, avatar: getName("Kaeya"), splash: Kaeya_splash, - skillName1: 799, - skillName2: 1686, - skillName3: 264, + skillName1: 810, + skillName2: 1707, + skillName3: 271, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 68 }, + { index: 2, text: 70 }, - { index: 3, text: 397 }, + { index: 3, text: 406 }, - { index: 4, text: 131 }, + { index: 4, text: 138 }, - { index: 5, text: 1579 }, + { index: 5, text: 1596 }, - { index: 6, text: 1582 }, + { index: 6, text: 1602 }, - { index: 7, text: 76 }, + { index: 7, text: 81 }, - { index: 8, text: 162 }, + { index: 8, text: 169 }, - { index: 9, text: 1737 }, + { index: 9, text: 1758 }, ], skillMap2: [ - { index: 10, text: 635 }, + { index: 10, text: 646 }, ], skillMap3: [ - { index: 11, text: 635 }, + { index: 11, text: 646 }, ], config: [ @@ -1930,7 +2014,7 @@ export default { KamisatoAyaka: { name: "KamisatoAyaka", - nameLocale: 1272, + nameLocale: 1288, element: "Cryo", weapon: "Sword", star: 5, @@ -1938,61 +2022,61 @@ export default { // avatar: KamisatoAyaka_avatar, avatar: getName("Ayaka"), splash: KamisatoAyaka_splash, - skillName1: 839, - skillName2: 1262, - skillName3: 1265, + skillName1: 851, + skillName2: 1278, + skillName3: 1281, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 68 }, + { index: 2, text: 70 }, - { index: 3, text: 403 }, + { index: 3, text: 412 }, - { index: 5, text: 131 }, + { index: 5, text: 138 }, - { index: 6, text: 1586 }, + { index: 6, text: 1604 }, - { index: 8, text: 76 }, + { index: 8, text: 81 }, - { index: 9, text: 162 }, + { index: 9, text: 169 }, - { index: 10, text: 1737 }, + { index: 10, text: 1758 }, ], skillMap2: [ - { index: 11, text: 635 }, + { index: 11, text: 646 }, ], skillMap3: [ - { index: 12, text: 281 }, + { index: 12, text: 288 }, - { index: 13, text: 1327 }, + { index: 13, text: 1343 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"talent1_rate","title":474,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent1_rate","title":484,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":475,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":485,"type":"float"}, ], configSkill: [ - {"default":true,"name":"after_dash","title":1266,"type":"bool"}, + {"default":true,"name":"after_dash","title":1282,"type":"bool"}, - {"default":false,"name":"use_c6","title":228,"type":"bool"}, + {"default":false,"name":"use_c6","title":235,"type":"bool"}, ], }, KamisatoAyato: { name: "KamisatoAyato", - nameLocale: 1267, + nameLocale: 1283, element: "Hydro", weapon: "Sword", star: 5, @@ -2000,44 +2084,44 @@ export default { // avatar: KamisatoAyato_avatar, avatar: getName("Ayato"), splash: KamisatoAyato_splash, - skillName1: 840, - skillName2: 1264, - skillName3: 1263, + skillName1: 852, + skillName2: 1280, + skillName3: 1279, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 68 }, + { index: 2, text: 70 }, - { index: 3, text: 398 }, + { index: 3, text: 407 }, - { index: 4, text: 131 }, + { index: 4, text: 138 }, - { index: 5, text: 1576 }, + { index: 5, text: 1594 }, - { index: 6, text: 76 }, + { index: 6, text: 81 }, - { index: 7, text: 162 }, + { index: 7, text: 169 }, - { index: 8, text: 1737 }, + { index: 8, text: 1758 }, ], skillMap2: [ { index: 9, text: 54 }, - { index: 10, text: 119 }, + { index: 10, text: 124 }, - { index: 11, text: 75 }, + { index: 11, text: 77 }, - { index: 12, text: 1016 }, + { index: 12, text: 1029 }, ], skillMap3: [ - { index: 13, text: 1020 }, + { index: 13, text: 1033 }, ], config: [ @@ -2047,14 +2131,14 @@ export default { {"default":4,"max":5,"min":0,"name":"e_stack","title":30,"type":"int"}, - {"default":true,"name":"in_q","title":433,"type":"bool"}, + {"default":true,"name":"in_q","title":443,"type":"bool"}, ], }, Kaveh: { name: "Kaveh", - nameLocale: 324, + nameLocale: 331, element: "Dendro", weapon: "Claymore", star: 4, @@ -2062,45 +2146,45 @@ export default { // avatar: Kaveh_avatar, avatar: getName("Kaveh"), splash: Kaveh_splash, - skillName1: 820, - skillName2: 1223, - skillName3: 1310, + skillName1: 831, + skillName2: 1239, + skillName3: 1326, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 68 }, + { index: 2, text: 70 }, - { index: 3, text: 397 }, + { index: 3, text: 406 }, - { index: 4, text: 1590 }, + { index: 4, text: 1608 }, - { index: 5, text: 1593 }, + { index: 5, text: 1611 }, - { index: 6, text: 76 }, + { index: 6, text: 81 }, - { index: 7, text: 162 }, + { index: 7, text: 169 }, - { index: 8, text: 1737 }, + { index: 8, text: 1758 }, ], skillMap2: [ - { index: 9, text: 635 }, + { index: 9, text: 646 }, ], skillMap3: [ - { index: 10, text: 635 }, + { index: 10, text: 646 }, ], config: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"talent2_stack","title":476,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"talent2_stack","title":486,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"c2_rate","title":384,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"c2_rate","title":391,"type":"float"}, ], configSkill: [ @@ -2112,7 +2196,7 @@ export default { Keqing: { name: "Keqing", - nameLocale: 288, + nameLocale: 295, element: "Electro", weapon: "Sword", star: 5, @@ -2120,55 +2204,55 @@ export default { // avatar: Keqing_avatar, avatar: getName("Keqing"), splash: Keqing_splash, - skillName1: 797, - skillName2: 770, - skillName3: 468, + skillName1: 808, + skillName2: 781, + skillName3: 478, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 68 }, + { index: 2, text: 70 }, - { index: 3, text: 399 }, + { index: 3, text: 408 }, - { index: 4, text: 400 }, + { index: 4, text: 409 }, - { index: 5, text: 131 }, + { index: 5, text: 138 }, - { index: 6, text: 1579 }, + { index: 6, text: 1596 }, - { index: 7, text: 1582 }, + { index: 7, text: 1602 }, - { index: 8, text: 76 }, + { index: 8, text: 81 }, - { index: 9, text: 162 }, + { index: 9, text: 169 }, - { index: 10, text: 1737 }, + { index: 10, text: 1758 }, ], skillMap2: [ - { index: 11, text: 1666 }, + { index: 11, text: 1685 }, - { index: 12, text: 717 }, + { index: 12, text: 728 }, - { index: 13, text: 1665 }, + { index: 13, text: 1684 }, ], skillMap3: [ - { index: 15, text: 635 }, + { index: 15, text: 646 }, - { index: 16, text: 1542 }, + { index: 16, text: 1560 }, - { index: 18, text: 944 }, + { index: 18, text: 957 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":479,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":490,"type":"float"}, ], configSkill: [ @@ -2180,7 +2264,7 @@ export default { Klee: { name: "Klee", - nameLocale: 348, + nameLocale: 355, element: "Pyro", weapon: "Catalyst", star: 5, @@ -2188,38 +2272,38 @@ export default { // avatar: Klee_avatar, avatar: getName("Klee"), splash: Klee_splash, - skillName1: 835, - skillName2: 1519, - skillName3: 1524, + skillName1: 847, + skillName2: 1537, + skillName3: 1542, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 68 }, + { index: 2, text: 70 }, - { index: 3, text: 1576 }, + { index: 3, text: 1594 }, - { index: 4, text: 1587 }, + { index: 4, text: 1605 }, - { index: 5, text: 76 }, + { index: 5, text: 81 }, - { index: 6, text: 162 }, + { index: 6, text: 169 }, - { index: 7, text: 1737 }, + { index: 7, text: 1758 }, ], skillMap2: [ - { index: 8, text: 1520 }, + { index: 8, text: 1538 }, - { index: 9, text: 1484 }, + { index: 9, text: 1502 }, ], skillMap3: [ - { index: 10, text: 1525 }, + { index: 10, text: 1543 }, ], config: [ @@ -2232,7 +2316,7 @@ export default { KujouSara: { name: "KujouSara", - nameLocale: 97, + nameLocale: 102, element: "Electro", weapon: "Bow", star: 4, @@ -2240,42 +2324,42 @@ export default { // avatar: KujouSara_avatar, avatar: getName("Sara"), splash: KujouSara_splash, - skillName1: 860, - skillName2: 1749, - skillName3: 1121, + skillName1: 872, + skillName2: 1770, + skillName3: 1136, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 68 }, + { index: 2, text: 70 }, - { index: 3, text: 397 }, + { index: 3, text: 406 }, - { index: 4, text: 131 }, + { index: 4, text: 138 }, - { index: 5, text: 1239 }, + { index: 5, text: 1255 }, - { index: 6, text: 1087 }, + { index: 6, text: 1101 }, - { index: 7, text: 76 }, + { index: 7, text: 81 }, - { index: 8, text: 162 }, + { index: 8, text: 169 }, - { index: 9, text: 1737 }, + { index: 9, text: 1758 }, ], skillMap2: [ - { index: 10, text: 459 }, + { index: 10, text: 469 }, ], skillMap3: [ - { index: 11, text: 460 }, + { index: 11, text: 470 }, - { index: 12, text: 461 }, + { index: 12, text: 471 }, ], config: [ @@ -2288,7 +2372,7 @@ export default { KukiShinobu: { name: "KukiShinobu", - nameLocale: 92, + nameLocale: 97, element: "Electro", weapon: "Sword", star: 4, @@ -2296,55 +2380,55 @@ export default { // avatar: KukiShinobu_avatar, avatar: getName("Shinobu"), splash: KukiShinobu_splash, - skillName1: 812, - skillName2: 1516, - skillName3: 598, + skillName1: 823, + skillName2: 1534, + skillName3: 609, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 68 }, + { index: 2, text: 70 }, - { index: 3, text: 397 }, + { index: 3, text: 406 }, - { index: 4, text: 1579 }, + { index: 4, text: 1596 }, - { index: 5, text: 1582 }, + { index: 5, text: 1602 }, - { index: 6, text: 1576 }, + { index: 6, text: 1594 }, - { index: 7, text: 76 }, + { index: 7, text: 81 }, - { index: 8, text: 162 }, + { index: 8, text: 169 }, - { index: 9, text: 1737 }, + { index: 9, text: 1758 }, ], skillMap2: [ - { index: 10, text: 635 }, + { index: 10, text: 646 }, - { index: 11, text: 1515 }, + { index: 11, text: 1533 }, - { index: 12, text: 1514 }, + { index: 12, text: 1532 }, ], skillMap3: [ - { index: 13, text: 323 }, + { index: 13, text: 330 }, - { index: 14, text: 602 }, + { index: 14, text: 613 }, - { index: 15, text: 603 }, + { index: 15, text: 614 }, ], config: [ - {"default":true,"name":"hp_le_50","title":1191,"type":"bool"}, + {"default":true,"name":"hp_le_50","title":1207,"type":"bool"}, - {"default":false,"name":"use_c6","title":359,"type":"bool"}, + {"default":false,"name":"use_c6","title":366,"type":"bool"}, ], configSkill: [ @@ -2354,7 +2438,7 @@ export default { Layla: { name: "Layla", - nameLocale: 1389, + nameLocale: 1405, element: "Cryo", weapon: "Sword", star: 4, @@ -2362,38 +2446,38 @@ export default { // avatar: Layla_avatar, avatar: getName("Layla"), splash: Layla_splash, - skillName1: 831, - skillName2: 421, - skillName3: 771, + skillName1: 843, + skillName2: 431, + skillName3: 782, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 68 }, + { index: 2, text: 70 }, - { index: 3, text: 1579 }, + { index: 3, text: 1596 }, - { index: 4, text: 1582 }, + { index: 4, text: 1602 }, - { index: 5, text: 76 }, + { index: 5, text: 81 }, - { index: 6, text: 162 }, + { index: 6, text: 169 }, - { index: 7, text: 1737 }, + { index: 7, text: 1758 }, ], skillMap2: [ - { index: 8, text: 635 }, + { index: 8, text: 646 }, - { index: 9, text: 1722 }, + { index: 9, text: 1743 }, ], skillMap3: [ - { index: 10, text: 768 }, + { index: 10, text: 779 }, ], config: [ @@ -2406,7 +2490,7 @@ export default { Lisa: { name: "Lisa", - nameLocale: 88, + nameLocale: 93, element: "Electro", weapon: "Catalyst", star: 4, @@ -2414,44 +2498,44 @@ export default { // avatar: Lisa_avatar, avatar: getName("Lisa"), splash: Lisa_splash, - skillName1: 817, - skillName2: 1371, - skillName3: 1417, + skillName1: 828, + skillName2: 1387, + skillName3: 1435, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 68 }, + { index: 2, text: 70 }, - { index: 3, text: 397 }, + { index: 3, text: 406 }, - { index: 4, text: 1576 }, + { index: 4, text: 1594 }, - { index: 5, text: 76 }, + { index: 5, text: 81 }, - { index: 6, text: 162 }, + { index: 6, text: 169 }, - { index: 7, text: 1737 }, + { index: 7, text: 1758 }, ], skillMap2: [ - { index: 8, text: 1105 }, + { index: 8, text: 1120 }, - { index: 9, text: 759 }, + { index: 9, text: 770 }, { index: 10, text: 46 }, - { index: 11, text: 112 }, + { index: 11, text: 117 }, - { index: 12, text: 66 }, + { index: 12, text: 68 }, ], skillMap3: [ - { index: 13, text: 1664 }, + { index: 13, text: 1683 }, ], config: [ @@ -2464,7 +2548,7 @@ export default { Lynette: { name: "Lynette", - nameLocale: 1172, + nameLocale: 1188, element: "Anemo", weapon: "Sword", star: 4, @@ -2472,65 +2556,65 @@ export default { // avatar: Lynette_avatar, avatar: getName("Lynette"), splash: Lynette_splash, - skillName1: 852, - skillName2: 1489, - skillName3: 1746, + skillName1: 864, + skillName2: 1507, + skillName3: 1767, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 69 }, + { index: 2, text: 71 }, - { index: 3, text: 70 }, + { index: 3, text: 72 }, - { index: 4, text: 397 }, + { index: 4, text: 406 }, - { index: 5, text: 1579 }, + { index: 5, text: 1596 }, - { index: 6, text: 1582 }, + { index: 6, text: 1602 }, - { index: 7, text: 76 }, + { index: 7, text: 81 }, - { index: 8, text: 162 }, + { index: 8, text: 169 }, - { index: 9, text: 1737 }, + { index: 9, text: 1758 }, ], skillMap2: [ - { index: 10, text: 1488 }, + { index: 10, text: 1506 }, - { index: 11, text: 1053 }, + { index: 11, text: 1066 }, - { index: 12, text: 379 }, + { index: 12, text: 386 }, ], skillMap3: [ - { index: 13, text: 635 }, + { index: 13, text: 646 }, - { index: 14, text: 609 }, + { index: 14, text: 620 }, - { index: 15, text: 592 }, + { index: 15, text: 603 }, - { index: 16, text: 594 }, + { index: 16, text: 605 }, - { index: 17, text: 595 }, + { index: 17, text: 606 }, - { index: 18, text: 596 }, + { index: 18, text: 607 }, - { index: 19, text: 593 }, + { index: 19, text: 604 }, ], config: [ - {"default":0.5,"max":1.0,"min":0.0,"name":"talent1_rate","title":478,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"talent1_rate","title":488,"type":"float"}, - {"default":4,"max":4,"min":1,"name":"talent1_count","title":477,"type":"int"}, + {"default":4,"max":4,"min":1,"name":"talent1_count","title":487,"type":"int"}, - {"default":0.5,"max":1.0,"min":0.0,"name":"talent2_rate","title":482,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"talent2_rate","title":493,"type":"float"}, ], configSkill: [ @@ -2540,7 +2624,7 @@ export default { Mona: { name: "Mona", - nameLocale: 1383, + nameLocale: 1399, element: "Hydro", weapon: "Catalyst", star: 5, @@ -2548,38 +2632,38 @@ export default { // avatar: Mona_avatar, avatar: getName("Mona"), splash: Mona_splash, - skillName1: 803, - skillName2: 1011, - skillName3: 769, + skillName1: 814, + skillName2: 1024, + skillName3: 780, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 68 }, + { index: 2, text: 70 }, - { index: 3, text: 397 }, + { index: 3, text: 406 }, - { index: 4, text: 1576 }, + { index: 4, text: 1594 }, - { index: 5, text: 76 }, + { index: 5, text: 81 }, - { index: 6, text: 162 }, + { index: 6, text: 169 }, - { index: 7, text: 1737 }, + { index: 7, text: 1758 }, ], skillMap2: [ - { index: 8, text: 662 }, + { index: 8, text: 673 }, - { index: 9, text: 1129 }, + { index: 9, text: 1144 }, ], skillMap3: [ - { index: 10, text: 1037 }, + { index: 10, text: 1050 }, ], config: [ @@ -2592,7 +2676,7 @@ export default { Nahida: { name: "Nahida", - nameLocale: 1311, + nameLocale: 1327, element: "Dendro", weapon: "Catalyst", star: 5, @@ -2600,35 +2684,35 @@ export default { // avatar: Nahida_avatar, avatar: getName("Nahida"), splash: Nahida_splash, - skillName1: 846, - skillName2: 620, - skillName3: 599, + skillName1: 858, + skillName2: 631, + skillName3: 610, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 68 }, + { index: 2, text: 70 }, - { index: 3, text: 397 }, + { index: 3, text: 406 }, - { index: 4, text: 1576 }, + { index: 4, text: 1594 }, - { index: 5, text: 76 }, + { index: 5, text: 81 }, - { index: 6, text: 162 }, + { index: 6, text: 169 }, - { index: 7, text: 1737 }, + { index: 7, text: 1758 }, ], skillMap2: [ - { index: 8, text: 1105 }, + { index: 8, text: 1120 }, - { index: 9, text: 1613 }, + { index: 9, text: 1631 }, - { index: 10, text: 1096 }, + { index: 10, text: 1110 }, ], skillMap3: [ @@ -2636,7 +2720,7 @@ export default { ], config: [ - {"default":4,"max":4,"min":0,"name":"c4_e_count","title":1769,"type":"int"}, + {"default":4,"max":4,"min":0,"name":"c4_e_count","title":1790,"type":"int"}, ], configSkill: [ @@ -2650,7 +2734,7 @@ export default { Nilou: { name: "Nilou", - nameLocale: 497, + nameLocale: 508, element: "Hydro", weapon: "Sword", star: 5, @@ -2658,50 +2742,50 @@ export default { // avatar: Nilou_avatar, avatar: getName("Nilou"), splash: Nilou_splash, - skillName1: 808, - skillName2: 62, - skillName3: 1055, + skillName1: 819, + skillName2: 64, + skillName3: 1069, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 68 }, + { index: 2, text: 70 }, - { index: 3, text: 1579 }, + { index: 3, text: 1596 }, - { index: 4, text: 1582 }, + { index: 4, text: 1602 }, - { index: 5, text: 76 }, + { index: 5, text: 81 }, - { index: 6, text: 162 }, + { index: 6, text: 169 }, - { index: 7, text: 1737 }, + { index: 7, text: 1758 }, ], skillMap2: [ - { index: 8, text: 635 }, + { index: 8, text: 646 }, - { index: 9, text: 291 }, + { index: 9, text: 298 }, - { index: 10, text: 754 }, + { index: 10, text: 765 }, - { index: 11, text: 292 }, + { index: 11, text: 299 }, - { index: 12, text: 755 }, + { index: 12, text: 766 }, - { index: 13, text: 1017 }, + { index: 13, text: 1030 }, - { index: 14, text: 1021 }, + { index: 14, text: 1034 }, ], skillMap3: [ - { index: 15, text: 635 }, + { index: 15, text: 646 }, - { index: 16, text: 1022 }, + { index: 16, text: 1035 }, ], config: [ @@ -2716,7 +2800,7 @@ export default { Ningguang: { name: "Ningguang", - nameLocale: 265, + nameLocale: 272, element: "Geo", weapon: "Catalyst", star: 4, @@ -2724,37 +2808,37 @@ export default { // avatar: Ningguang_avatar, avatar: getName("Ningguang"), splash: Ningguang_splash, - skillName1: 800, - skillName2: 1179, - skillName3: 457, + skillName1: 811, + skillName2: 1195, + skillName3: 467, skillMap1: [ - { index: 0, text: 874 }, + { index: 0, text: 886 }, - { index: 1, text: 1576 }, + { index: 1, text: 1594 }, - { index: 2, text: 772 }, + { index: 2, text: 783 }, - { index: 3, text: 76 }, + { index: 3, text: 81 }, - { index: 4, text: 162 }, + { index: 4, text: 169 }, - { index: 5, text: 1737 }, + { index: 5, text: 1758 }, ], skillMap2: [ - { index: 6, text: 635 }, + { index: 6, text: 646 }, ], skillMap3: [ - { index: 7, text: 1009 }, + { index: 7, text: 1022 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":470,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":480,"type":"float"}, ], configSkill: [ @@ -2764,7 +2848,7 @@ export default { Noelle: { name: "Noelle", - nameLocale: 1486, + nameLocale: 1504, element: "Geo", weapon: "Claymore", star: 4, @@ -2772,42 +2856,42 @@ export default { // avatar: Noelle_avatar, avatar: getName("Noel"), splash: Noelle_splash, - skillName1: 848, - skillName2: 651, - skillName3: 455, + skillName1: 860, + skillName2: 662, + skillName3: 465, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 68 }, + { index: 2, text: 70 }, - { index: 3, text: 397 }, + { index: 3, text: 406 }, - { index: 4, text: 1590 }, + { index: 4, text: 1608 }, - { index: 5, text: 1593 }, + { index: 5, text: 1611 }, - { index: 6, text: 76 }, + { index: 6, text: 81 }, - { index: 7, text: 162 }, + { index: 7, text: 169 }, - { index: 8, text: 1737 }, + { index: 8, text: 1758 }, ], skillMap2: [ - { index: 9, text: 635 }, + { index: 9, text: 646 }, - { index: 10, text: 1034 }, + { index: 10, text: 1047 }, ], skillMap3: [ - { index: 11, text: 1124 }, + { index: 11, text: 1139 }, - { index: 12, text: 635 }, + { index: 12, text: 646 }, ], config: [ @@ -2822,7 +2906,7 @@ export default { Mika: { name: "Mika", - nameLocale: 1303, + nameLocale: 1319, element: "Cryo", weapon: "Polearm", star: 4, @@ -2830,44 +2914,44 @@ export default { // avatar: Mika_avatar, avatar: getName("Mika"), splash: Mika_splash, - skillName1: 851, - skillName2: 774, - skillName3: 1369, + skillName1: 863, + skillName2: 785, + skillName3: 1385, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 68 }, + { index: 2, text: 70 }, - { index: 3, text: 402 }, + { index: 3, text: 411 }, - { index: 4, text: 131 }, + { index: 4, text: 138 }, - { index: 5, text: 1576 }, + { index: 5, text: 1594 }, - { index: 6, text: 76 }, + { index: 6, text: 81 }, - { index: 7, text: 162 }, + { index: 7, text: 169 }, - { index: 8, text: 1737 }, + { index: 8, text: 1758 }, ], skillMap2: [ - { index: 9, text: 1685 }, + { index: 9, text: 1706 }, - { index: 10, text: 250 }, + { index: 10, text: 257 }, - { index: 11, text: 251 }, + { index: 11, text: 258 }, ], skillMap3: [ - { index: 12, text: 746 }, + { index: 12, text: 757 }, - { index: 13, text: 1752 }, + { index: 13, text: 1773 }, ], config: [ @@ -2880,7 +2964,7 @@ export default { Qiqi: { name: "Qiqi", - nameLocale: 60, + nameLocale: 62, element: "Cryo", weapon: "Sword", star: 5, @@ -2888,52 +2972,52 @@ export default { // avatar: Qiqi_avatar, avatar: getName("Qiqi"), splash: Qiqi_splash, - skillName1: 798, - skillName2: 148, - skillName3: 149, + skillName1: 809, + skillName2: 155, + skillName3: 156, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 69 }, + { index: 2, text: 71 }, - { index: 3, text: 70 }, + { index: 3, text: 72 }, - { index: 4, text: 399 }, + { index: 4, text: 408 }, - { index: 5, text: 400 }, + { index: 5, text: 409 }, - { index: 6, text: 131 }, + { index: 6, text: 138 }, - { index: 7, text: 1579 }, + { index: 7, text: 1596 }, - { index: 8, text: 1582 }, + { index: 8, text: 1602 }, - { index: 9, text: 76 }, + { index: 9, text: 81 }, - { index: 10, text: 162 }, + { index: 10, text: 169 }, - { index: 11, text: 1737 }, + { index: 11, text: 1758 }, ], skillMap2: [ - { index: 12, text: 635 }, + { index: 12, text: 646 }, - { index: 15, text: 534 }, + { index: 15, text: 545 }, - { index: 13, text: 377 }, + { index: 13, text: 384 }, - { index: 14, text: 667 }, + { index: 14, text: 677 }, ], skillMap3: [ - { index: 16, text: 635 }, + { index: 16, text: 646 }, - { index: 17, text: 1034 }, + { index: 17, text: 1047 }, ], config: [ @@ -2946,7 +3030,7 @@ export default { RaidenShogun: { name: "RaidenShogun", - nameLocale: 1673, + nameLocale: 1692, element: "Electro", weapon: "Polearm", star: 5, @@ -2954,64 +3038,64 @@ export default { // avatar: RaidenShogun_avatar, avatar: getName("Shougun"), splash: RaidenShogun_splash, - skillName1: 862, - skillName2: 1259, - skillName3: 493, + skillName1: 874, + skillName2: 1275, + skillName3: 504, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 68 }, + { index: 2, text: 70 }, - { index: 3, text: 399 }, + { index: 3, text: 408 }, - { index: 4, text: 400 }, + { index: 4, text: 409 }, - { index: 5, text: 131 }, + { index: 5, text: 138 }, - { index: 6, text: 1576 }, + { index: 6, text: 1594 }, - { index: 7, text: 76 }, + { index: 7, text: 81 }, - { index: 8, text: 162 }, + { index: 8, text: 169 }, - { index: 9, text: 1737 }, + { index: 9, text: 1758 }, ], skillMap2: [ - { index: 10, text: 635 }, + { index: 10, text: 646 }, - { index: 11, text: 321 }, + { index: 11, text: 328 }, ], skillMap3: [ - { index: 12, text: 994 }, + { index: 12, text: 1007 }, { index: 13, text: 48 }, - { index: 14, text: 114 }, + { index: 14, text: 119 }, - { index: 15, text: 68 }, + { index: 15, text: 70 }, - { index: 16, text: 399 }, + { index: 16, text: 408 }, - { index: 17, text: 400 }, + { index: 17, text: 409 }, - { index: 18, text: 131 }, + { index: 18, text: 138 }, - { index: 19, text: 1579 }, + { index: 19, text: 1596 }, - { index: 20, text: 1582 }, + { index: 20, text: 1602 }, - { index: 21, text: 76 }, + { index: 21, text: 81 }, - { index: 22, text: 162 }, + { index: 22, text: 169 }, - { index: 23, text: 1737 }, + { index: 23, text: 1758 }, ], config: [ @@ -3019,16 +3103,16 @@ export default { ], configSkill: [ - {"default":true,"name":"under_e","title":438,"type":"bool"}, + {"default":true,"name":"under_e","title":448,"type":"bool"}, - {"default":60,"max":60,"min":0,"name":"resolve_stack","title":1485,"type":"int"}, + {"default":60,"max":60,"min":0,"name":"resolve_stack","title":1503,"type":"int"}, ], }, Razor: { name: "Razor", - nameLocale: 1667, + nameLocale: 1686, element: "Electro", weapon: "Claymore", star: 4, @@ -3036,55 +3120,55 @@ export default { // avatar: Razor_avatar, avatar: getName("Razor"), splash: Razor_splash, - skillName1: 856, - skillName2: 286, - skillName3: 1672, + skillName1: 868, + skillName2: 293, + skillName3: 1691, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 68 }, + { index: 2, text: 70 }, - { index: 3, text: 397 }, + { index: 3, text: 406 }, - { index: 4, text: 1590 }, + { index: 4, text: 1608 }, - { index: 5, text: 1593 }, + { index: 5, text: 1611 }, - { index: 6, text: 76 }, + { index: 6, text: 81 }, - { index: 7, text: 162 }, + { index: 7, text: 169 }, - { index: 8, text: 1737 }, + { index: 8, text: 1758 }, ], skillMap2: [ - { index: 9, text: 1106 }, + { index: 9, text: 1121 }, - { index: 10, text: 1614 }, + { index: 10, text: 1632 }, ], skillMap3: [ - { index: 11, text: 1124 }, + { index: 11, text: 1139 }, - { index: 12, text: 1138 }, + { index: 12, text: 1153 }, - { index: 13, text: 1140 }, + { index: 13, text: 1155 }, - { index: 14, text: 1139 }, + { index: 14, text: 1154 }, - { index: 15, text: 1141 }, + { index: 15, text: 1156 }, ], config: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"e_stack","title":1659,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"e_stack","title":1678,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_ratio","title":484,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_ratio","title":495,"type":"float"}, ], configSkill: [ @@ -3094,7 +3178,7 @@ export default { Rosaria: { name: "Rosaria", - nameLocale: 1330, + nameLocale: 1346, element: "Cryo", weapon: "Polearm", star: 4, @@ -3102,51 +3186,51 @@ export default { // avatar: Rosaria_avatar, avatar: getName("Rosaria"), splash: Rosaria_splash, - skillName1: 818, - skillName2: 396, - skillName3: 1315, + skillName1: 829, + skillName2: 405, + skillName3: 1331, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 72 }, + { index: 2, text: 73 }, - { index: 3, text: 397 }, + { index: 3, text: 406 }, - { index: 4, text: 132 }, + { index: 4, text: 139 }, - { index: 5, text: 133 }, + { index: 5, text: 140 }, - { index: 6, text: 1576 }, + { index: 6, text: 1594 }, - { index: 7, text: 76 }, + { index: 7, text: 81 }, - { index: 8, text: 162 }, + { index: 8, text: 169 }, - { index: 9, text: 1737 }, + { index: 9, text: 1758 }, ], skillMap2: [ - { index: 10, text: 637 }, + { index: 10, text: 648 }, - { index: 11, text: 639 }, + { index: 11, text: 650 }, ], skillMap3: [ - { index: 12, text: 637 }, + { index: 12, text: 648 }, - { index: 13, text: 639 }, + { index: 13, text: 650 }, - { index: 14, text: 252 }, + { index: 14, text: 259 }, ], config: [ - {"default":true,"name":"e_from_behind","title":580,"type":"bool"}, + {"default":true,"name":"e_from_behind","title":591,"type":"bool"}, ], configSkill: [ @@ -3156,7 +3240,7 @@ export default { SangonomiyaKokomi: { name: "SangonomiyaKokomi", - nameLocale: 1155, + nameLocale: 1171, element: "Hydro", weapon: "Catalyst", star: 5, @@ -3164,38 +3248,38 @@ export default { // avatar: SangonomiyaKokomi_avatar, avatar: getName("Kokomi"), splash: SangonomiyaKokomi_splash, - skillName1: 861, - skillName2: 1057, - skillName3: 1056, + skillName1: 873, + skillName2: 1071, + skillName3: 1070, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 68 }, + { index: 2, text: 70 }, - { index: 3, text: 1576 }, + { index: 3, text: 1594 }, - { index: 4, text: 76 }, + { index: 4, text: 81 }, - { index: 5, text: 162 }, + { index: 5, text: 169 }, - { index: 6, text: 1737 }, + { index: 6, text: 1758 }, ], skillMap2: [ - { index: 8, text: 1039 }, + { index: 8, text: 1052 }, - { index: 7, text: 1033 }, + { index: 7, text: 1046 }, ], skillMap3: [ - { index: 9, text: 635 }, + { index: 9, text: 646 }, - { index: 10, text: 378 }, + { index: 10, text: 385 }, ], config: [ @@ -3210,7 +3294,7 @@ export default { Sayu: { name: "Sayu", - nameLocale: 763, + nameLocale: 774, element: "Anemo", weapon: "Claymore", star: 4, @@ -3218,66 +3302,66 @@ export default { // avatar: Sayu_avatar, avatar: getName("Sayu"), splash: Sayu_splash, - skillName1: 811, - skillName2: 373, - skillName3: 372, + skillName1: 822, + skillName2: 380, + skillName3: 379, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 69 }, + { index: 2, text: 71 }, - { index: 3, text: 70 }, + { index: 3, text: 72 }, - { index: 4, text: 397 }, + { index: 4, text: 406 }, - { index: 5, text: 1590 }, + { index: 5, text: 1608 }, - { index: 6, text: 1593 }, + { index: 6, text: 1611 }, - { index: 7, text: 76 }, + { index: 7, text: 81 }, - { index: 8, text: 162 }, + { index: 8, text: 169 }, - { index: 9, text: 1737 }, + { index: 9, text: 1758 }, ], skillMap2: [ - { index: 10, text: 1705 }, + { index: 10, text: 1726 }, - { index: 11, text: 1706 }, + { index: 11, text: 1727 }, - { index: 12, text: 1707 }, + { index: 12, text: 1728 }, - { index: 13, text: 1714 }, + { index: 13, text: 1735 }, - { index: 16, text: 1713 }, + { index: 16, text: 1734 }, - { index: 15, text: 1712 }, + { index: 15, text: 1733 }, - { index: 14, text: 1715 }, + { index: 14, text: 1736 }, - { index: 17, text: 1710 }, + { index: 17, text: 1731 }, - { index: 20, text: 1709 }, + { index: 20, text: 1730 }, - { index: 19, text: 1708 }, + { index: 19, text: 1729 }, - { index: 18, text: 1711 }, + { index: 18, text: 1732 }, ], skillMap3: [ - { index: 21, text: 646 }, + { index: 21, text: 657 }, - { index: 22, text: 647 }, + { index: 22, text: 658 }, - { index: 23, text: 77 }, + { index: 23, text: 82 }, - { index: 24, text: 78 }, + { index: 24, text: 83 }, ], config: [ @@ -3290,7 +3374,7 @@ export default { Shenhe: { name: "Shenhe", - nameLocale: 1210, + nameLocale: 1226, element: "Cryo", weapon: "Polearm", star: 5, @@ -3298,44 +3382,44 @@ export default { // avatar: Shenhe_avatar, avatar: getName("Shenhe"), splash: Shenhe_splash, - skillName1: 863, - skillName2: 152, - skillName3: 1260, + skillName1: 875, + skillName2: 159, + skillName3: 1276, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 68 }, + { index: 2, text: 70 }, - { index: 3, text: 399 }, + { index: 3, text: 408 }, - { index: 4, text: 400 }, + { index: 4, text: 409 }, - { index: 5, text: 131 }, + { index: 5, text: 138 }, - { index: 6, text: 1576 }, + { index: 6, text: 1594 }, - { index: 7, text: 76 }, + { index: 7, text: 81 }, - { index: 8, text: 162 }, + { index: 8, text: 169 }, - { index: 9, text: 1737 }, + { index: 9, text: 1758 }, ], skillMap2: [ - { index: 10, text: 1108 }, + { index: 10, text: 1123 }, - { index: 11, text: 1614 }, + { index: 11, text: 1632 }, ], skillMap3: [ - { index: 12, text: 635 }, + { index: 12, text: 646 }, - { index: 13, text: 662 }, + { index: 13, text: 673 }, ], config: [ @@ -3348,7 +3432,7 @@ export default { ShikanoinHeizou: { name: "ShikanoinHeizou", - nameLocale: 1753, + nameLocale: 1774, element: "Anemo", weapon: "Catalyst", star: 4, @@ -3356,60 +3440,60 @@ export default { // avatar: ShikanoinHeizou_avatar, avatar: getName("Heizo"), splash: ShikanoinHeizou_splash, - skillName1: 796, - skillName2: 303, - skillName3: 1352, + skillName1: 807, + skillName2: 310, + skillName3: 1368, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 68 }, + { index: 2, text: 70 }, - { index: 3, text: 399 }, + { index: 3, text: 408 }, - { index: 4, text: 400 }, + { index: 4, text: 409 }, - { index: 5, text: 401 }, + { index: 5, text: 410 }, - { index: 6, text: 397 }, + { index: 6, text: 406 }, - { index: 7, text: 131 }, + { index: 7, text: 138 }, - { index: 8, text: 1576 }, + { index: 8, text: 1594 }, - { index: 9, text: 76 }, + { index: 9, text: 81 }, - { index: 10, text: 162 }, + { index: 10, text: 169 }, - { index: 11, text: 1737 }, + { index: 11, text: 1758 }, ], skillMap2: [ - { index: 12, text: 636 }, + { index: 12, text: 647 }, - { index: 13, text: 638 }, + { index: 13, text: 649 }, - { index: 14, text: 640 }, + { index: 14, text: 651 }, - { index: 15, text: 641 }, + { index: 15, text: 652 }, - { index: 16, text: 642 }, + { index: 16, text: 653 }, ], skillMap3: [ - { index: 17, text: 79 }, + { index: 17, text: 84 }, - { index: 18, text: 1350 }, + { index: 18, text: 1366 }, - { index: 20, text: 1348 }, + { index: 20, text: 1364 }, - { index: 21, text: 1351 }, + { index: 21, text: 1367 }, - { index: 19, text: 1349 }, + { index: 19, text: 1365 }, ], config: [ @@ -3422,7 +3506,7 @@ export default { Sucrose: { name: "Sucrose", - nameLocale: 1240, + nameLocale: 1256, element: "Anemo", weapon: "Catalyst", star: 4, @@ -3430,44 +3514,44 @@ export default { // avatar: Sucrose_avatar, avatar: getName("Sucrose"), splash: Sucrose_splash, - skillName1: 841, - skillName2: 1701, - skillName3: 1288, + skillName1: 853, + skillName2: 1722, + skillName3: 1304, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 68 }, + { index: 2, text: 70 }, - { index: 3, text: 397 }, + { index: 3, text: 406 }, - { index: 4, text: 1576 }, + { index: 4, text: 1594 }, - { index: 5, text: 76 }, + { index: 5, text: 81 }, - { index: 6, text: 162 }, + { index: 6, text: 169 }, - { index: 7, text: 1737 }, + { index: 7, text: 1758 }, ], skillMap2: [ - { index: 8, text: 635 }, + { index: 8, text: 646 }, ], skillMap3: [ - { index: 9, text: 662 }, + { index: 9, text: 673 }, - { index: 10, text: 1652 }, + { index: 10, text: 1670 }, - { index: 11, text: 1651 }, + { index: 11, text: 1669 }, - { index: 13, text: 1650 }, + { index: 13, text: 1668 }, - { index: 12, text: 1653 }, + { index: 12, text: 1671 }, ], config: [ @@ -3480,7 +3564,7 @@ export default { Tartaglia: { name: "Tartaglia", - nameLocale: 1537, + nameLocale: 1555, element: "Hydro", weapon: "Bow", star: 5, @@ -3488,70 +3572,70 @@ export default { // avatar: Tartaglia_avatar, avatar: getName("Tartaglia"), splash: Tartaglia_splash, - skillName1: 819, - skillName2: 1748, - skillName3: 974, + skillName1: 830, + skillName2: 1769, + skillName3: 987, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 68 }, + { index: 2, text: 70 }, - { index: 3, text: 397 }, + { index: 3, text: 406 }, - { index: 4, text: 131 }, + { index: 4, text: 138 }, - { index: 5, text: 232 }, + { index: 5, text: 239 }, - { index: 6, text: 1239 }, + { index: 6, text: 1255 }, - { index: 7, text: 1087 }, + { index: 7, text: 1101 }, - { index: 8, text: 723 }, + { index: 8, text: 734 }, - { index: 9, text: 722 }, + { index: 9, text: 733 }, - { index: 10, text: 76 }, + { index: 10, text: 81 }, - { index: 11, text: 162 }, + { index: 11, text: 169 }, - { index: 12, text: 1737 }, + { index: 12, text: 1758 }, ], skillMap2: [ - { index: 13, text: 1134 }, + { index: 13, text: 1149 }, { index: 14, text: 48 }, - { index: 15, text: 114 }, + { index: 15, text: 119 }, - { index: 16, text: 68 }, + { index: 16, text: 70 }, - { index: 17, text: 397 }, + { index: 17, text: 406 }, - { index: 18, text: 131 }, + { index: 18, text: 138 }, - { index: 19, text: 233 }, + { index: 19, text: 240 }, - { index: 20, text: 234 }, + { index: 20, text: 241 }, - { index: 21, text: 1579 }, + { index: 21, text: 1596 }, - { index: 22, text: 1582 }, + { index: 22, text: 1602 }, - { index: 23, text: 720 }, + { index: 23, text: 731 }, ], skillMap3: [ - { index: 24, text: 644 }, + { index: 24, text: 655 }, - { index: 25, text: 645 }, + { index: 25, text: 656 }, - { index: 26, text: 721 }, + { index: 26, text: 732 }, ], config: [ @@ -3564,7 +3648,7 @@ export default { Thoma: { name: "Thoma", - nameLocale: 622, + nameLocale: 633, element: "Pyro", weapon: "Polearm", star: 4, @@ -3572,38 +3656,38 @@ export default { // avatar: Thoma_avatar, avatar: getName("Tohma"), splash: Thoma_splash, - skillName1: 853, - skillName2: 1112, - skillName3: 1238, + skillName1: 865, + skillName2: 1127, + skillName3: 1254, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 72 }, + { index: 2, text: 73 }, - { index: 4, text: 397 }, + { index: 4, text: 406 }, - { index: 5, text: 1576 }, + { index: 5, text: 1594 }, - { index: 6, text: 76 }, + { index: 6, text: 81 }, - { index: 7, text: 162 }, + { index: 7, text: 169 }, - { index: 8, text: 1737 }, + { index: 8, text: 1758 }, ], skillMap2: [ - { index: 9, text: 635 }, + { index: 9, text: 646 }, ], skillMap3: [ - { index: 10, text: 635 }, + { index: 10, text: 646 }, - { index: 11, text: 1109 }, + { index: 11, text: 1124 }, ], config: [ @@ -3616,7 +3700,7 @@ export default { Tighnari: { name: "Tighnari", - nameLocale: 673, + nameLocale: 684, element: "Dendro", weapon: "Bow", star: 5, @@ -3624,51 +3708,51 @@ export default { // avatar: Tighnari_avatar, avatar: getName("Tighnari"), splash: Tighnari_splash, - skillName1: 844, - skillName2: 1477, - skillName3: 1563, + skillName1: 856, + skillName2: 1495, + skillName3: 1581, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 68 }, + { index: 2, text: 70 }, - { index: 3, text: 397 }, + { index: 3, text: 406 }, - { index: 4, text: 1239 }, + { index: 4, text: 1255 }, - { index: 5, text: 58 }, + { index: 5, text: 59 }, - { index: 6, text: 1364 }, + { index: 6, text: 1380 }, - { index: 7, text: 1419 }, + { index: 7, text: 1437 }, - { index: 8, text: 76 }, + { index: 8, text: 81 }, - { index: 9, text: 162 }, + { index: 9, text: 169 }, - { index: 10, text: 1737 }, + { index: 10, text: 1758 }, ], skillMap2: [ - { index: 11, text: 635 }, + { index: 11, text: 646 }, ], skillMap3: [ - { index: 12, text: 1329 }, + { index: 12, text: 1345 }, - { index: 13, text: 998 }, + { index: 13, text: 1011 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"talent1_ratio","title":480,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent1_ratio","title":491,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"c2_ratio","title":381,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"c2_ratio","title":388,"type":"float"}, ], configSkill: [ @@ -3678,7 +3762,7 @@ export default { Venti: { name: "Venti", - nameLocale: 1072, + nameLocale: 1086, element: "Anemo", weapon: "Bow", star: 5, @@ -3686,56 +3770,56 @@ export default { // avatar: Venti_avatar, avatar: getName("Venti"), splash: Venti_splash, - skillName1: 837, - skillName2: 1736, - skillName3: 1702, + skillName1: 849, + skillName2: 1757, + skillName3: 1723, skillMap1: [ { index: 0, text: 49 }, { index: 1, text: 50 }, - { index: 3, text: 114 }, + { index: 3, text: 119 }, - { index: 4, text: 68 }, + { index: 4, text: 70 }, - { index: 5, text: 399 }, + { index: 5, text: 408 }, - { index: 6, text: 400 }, + { index: 6, text: 409 }, - { index: 8, text: 131 }, + { index: 8, text: 138 }, - { index: 9, text: 232 }, + { index: 9, text: 239 }, - { index: 10, text: 1239 }, + { index: 10, text: 1255 }, - { index: 11, text: 1087 }, + { index: 11, text: 1101 }, - { index: 12, text: 76 }, + { index: 12, text: 81 }, - { index: 13, text: 162 }, + { index: 13, text: 169 }, - { index: 14, text: 1737 }, + { index: 14, text: 1758 }, ], skillMap2: [ - { index: 15, text: 1105 }, + { index: 15, text: 1120 }, - { index: 16, text: 1613 }, + { index: 16, text: 1631 }, ], skillMap3: [ - { index: 17, text: 662 }, + { index: 17, text: 673 }, - { index: 18, text: 1652 }, + { index: 18, text: 1670 }, - { index: 20, text: 1651 }, + { index: 20, text: 1669 }, - { index: 21, text: 1650 }, + { index: 21, text: 1668 }, - { index: 19, text: 1653 }, + { index: 19, text: 1671 }, ], config: [ @@ -3748,7 +3832,7 @@ export default { Wanderer: { name: "Wanderer", - nameLocale: 1051, + nameLocale: 1064, element: "Anemo", weapon: "Catalyst", star: 5, @@ -3756,42 +3840,42 @@ export default { // avatar: Wanderer_avatar, avatar: getName("Wanderer"), splash: Wanderer_splash, - skillName1: 845, - skillName2: 1339, - skillName3: 1135, + skillName1: 857, + skillName2: 1355, + skillName3: 1150, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 71 }, + { index: 2, text: 74 }, { index: 3, text: 52 }, - { index: 4, text: 117 }, + { index: 4, text: 122 }, - { index: 5, text: 73 }, + { index: 5, text: 75 }, - { index: 6, text: 1576 }, + { index: 6, text: 1594 }, { index: 7, text: 26 }, - { index: 8, text: 76 }, + { index: 8, text: 81 }, - { index: 9, text: 162 }, + { index: 9, text: 169 }, - { index: 10, text: 1737 }, + { index: 10, text: 1758 }, ], skillMap2: [ - { index: 11, text: 635 }, + { index: 11, text: 646 }, ], skillMap3: [ - { index: 12, text: 643 }, + { index: 12, text: 654 }, ], config: [ @@ -3803,18 +3887,18 @@ export default { ], configSkill: [ - {"default":true,"name":"e_enabled","title":431,"type":"bool"}, + {"default":true,"name":"e_enabled","title":441,"type":"bool"}, {"default":false,"name":"e_hydro","title":24,"type":"bool"}, - {"default":50.0,"max":120.0,"min":0.0,"name":"sdpoints","title":1298,"type":"float"}, + {"default":50.0,"max":120.0,"min":0.0,"name":"sdpoints","title":1314,"type":"float"}, ], }, Xiangling: { name: "Xiangling", - nameLocale: 1727, + nameLocale: 1748, element: "Pyro", weapon: "Polearm", star: 4, @@ -3822,46 +3906,46 @@ export default { // avatar: Xiangling_avatar, avatar: getName("Xiangling"), splash: Xiangling_splash, - skillName1: 834, - skillName2: 1611, - skillName3: 752, + skillName1: 846, + skillName2: 1629, + skillName3: 763, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 69 }, + { index: 2, text: 71 }, - { index: 3, text: 70 }, + { index: 3, text: 72 }, - { index: 5, text: 404 }, + { index: 5, text: 413 }, - { index: 7, text: 131 }, + { index: 7, text: 138 }, - { index: 8, text: 1576 }, + { index: 8, text: 1594 }, - { index: 9, text: 76 }, + { index: 9, text: 81 }, - { index: 10, text: 162 }, + { index: 10, text: 169 }, - { index: 11, text: 1737 }, + { index: 11, text: 1758 }, ], skillMap2: [ - { index: 12, text: 393 }, + { index: 12, text: 402 }, ], skillMap3: [ { index: 13, text: 53 }, - { index: 14, text: 118 }, + { index: 14, text: 123 }, - { index: 15, text: 74 }, + { index: 15, text: 76 }, - { index: 16, text: 753 }, + { index: 16, text: 764 }, ], config: [ @@ -3874,7 +3958,7 @@ export default { Xiao: { name: "Xiao", - nameLocale: 1739, + nameLocale: 1760, element: "Anemo", weapon: "Polearm", star: 5, @@ -3882,39 +3966,39 @@ export default { // avatar: Xiao_avatar, avatar: getName("Xiao"), splash: Xiao_splash, - skillName1: 801, - skillName2: 1704, - skillName3: 1687, + skillName1: 812, + skillName2: 1725, + skillName3: 1708, skillMap1: [ { index: 0, text: 49 }, { index: 1, text: 50 }, - { index: 3, text: 114 }, + { index: 3, text: 119 }, - { index: 4, text: 68 }, + { index: 4, text: 70 }, - { index: 5, text: 399 }, + { index: 5, text: 408 }, - { index: 6, text: 400 }, + { index: 6, text: 409 }, - { index: 8, text: 131 }, + { index: 8, text: 138 }, - { index: 9, text: 232 }, + { index: 9, text: 239 }, - { index: 10, text: 1576 }, + { index: 10, text: 1594 }, - { index: 11, text: 76 }, + { index: 11, text: 81 }, - { index: 12, text: 162 }, + { index: 12, text: 169 }, - { index: 13, text: 1737 }, + { index: 13, text: 1758 }, ], skillMap2: [ - { index: 14, text: 635 }, + { index: 14, text: 646 }, ], skillMap3: [ @@ -3925,18 +4009,18 @@ export default { ], configSkill: [ - {"default":true,"name":"after_q","title":1687,"type":"bool"}, + {"default":true,"name":"after_q","title":1708,"type":"bool"}, - {"default":4.0,"max":4.0,"min":0.0,"name":"talent1_stack","title":483,"type":"float"}, + {"default":4.0,"max":4.0,"min":0.0,"name":"talent1_stack","title":494,"type":"float"}, - {"default":0.0,"max":3.0,"min":0.0,"name":"talent2_stack","title":472,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"talent2_stack","title":482,"type":"float"}, ], }, Xingqiu: { name: "Xingqiu", - nameLocale: 1425, + nameLocale: 1443, element: "Hydro", weapon: "Sword", star: 4, @@ -3944,46 +4028,46 @@ export default { // avatar: Xingqiu_avatar, avatar: getName("Xingqiu"), splash: Xingqiu_splash, - skillName1: 802, - skillName2: 345, - skillName3: 346, + skillName1: 813, + skillName2: 352, + skillName3: 353, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 69 }, + { index: 2, text: 71 }, - { index: 3, text: 70 }, + { index: 3, text: 72 }, - { index: 5, text: 397 }, + { index: 5, text: 406 }, - { index: 6, text: 132 }, + { index: 6, text: 139 }, - { index: 7, text: 133 }, + { index: 7, text: 140 }, - { index: 9, text: 1579 }, + { index: 9, text: 1596 }, - { index: 10, text: 1582 }, + { index: 10, text: 1602 }, - { index: 12, text: 76 }, + { index: 12, text: 81 }, - { index: 13, text: 162 }, + { index: 13, text: 169 }, - { index: 14, text: 1737 }, + { index: 14, text: 1758 }, ], skillMap2: [ - { index: 15, text: 637 }, + { index: 15, text: 648 }, - { index: 16, text: 639 }, + { index: 16, text: 650 }, ], skillMap3: [ - { index: 17, text: 293 }, + { index: 17, text: 300 }, ], config: [ @@ -3991,14 +4075,14 @@ export default { ], configSkill: [ - {"default":false,"name":"c4","title":579,"type":"bool"}, + {"default":false,"name":"c4","title":590,"type":"bool"}, ], }, Xinyan: { name: "Xinyan", - nameLocale: 1528, + nameLocale: 1546, element: "Pyro", weapon: "Claymore", star: 4, @@ -4006,42 +4090,42 @@ export default { // avatar: Xinyan_avatar, avatar: getName("Xinyan"), splash: Xinyan_splash, - skillName1: 829, - skillName2: 1115, - skillName3: 342, + skillName1: 841, + skillName2: 1130, + skillName3: 349, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 68 }, + { index: 2, text: 70 }, - { index: 3, text: 397 }, + { index: 3, text: 406 }, - { index: 4, text: 1590 }, + { index: 4, text: 1608 }, - { index: 5, text: 1593 }, + { index: 5, text: 1611 }, - { index: 6, text: 76 }, + { index: 6, text: 81 }, - { index: 7, text: 162 }, + { index: 7, text: 169 }, - { index: 8, text: 1737 }, + { index: 8, text: 1758 }, ], skillMap2: [ - { index: 9, text: 670 }, + { index: 9, text: 681 }, - { index: 10, text: 662 }, + { index: 10, text: 673 }, ], skillMap3: [ - { index: 11, text: 635 }, + { index: 11, text: 646 }, - { index: 12, text: 1093 }, + { index: 12, text: 1107 }, ], config: [ @@ -4056,7 +4140,7 @@ export default { YaeMiko: { name: "YaeMiko", - nameLocale: 223, + nameLocale: 230, element: "Electro", weapon: "Catalyst", star: 5, @@ -4064,42 +4148,42 @@ export default { // avatar: YaeMiko_avatar, avatar: getName("Yae"), splash: YaeMiko_splash, - skillName1: 832, - skillName2: 1596, - skillName3: 454, + skillName1: 844, + skillName2: 1614, + skillName3: 464, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 68 }, + { index: 2, text: 70 }, - { index: 3, text: 1576 }, + { index: 3, text: 1594 }, - { index: 4, text: 76 }, + { index: 4, text: 81 }, - { index: 5, text: 162 }, + { index: 5, text: 169 }, - { index: 6, text: 1737 }, + { index: 6, text: 1758 }, ], skillMap2: [ - { index: 7, text: 968 }, + { index: 7, text: 981 }, - { index: 8, text: 970 }, + { index: 8, text: 983 }, - { index: 9, text: 967 }, + { index: 9, text: 980 }, - { index: 10, text: 969 }, + { index: 10, text: 982 }, ], skillMap3: [ - { index: 11, text: 635 }, + { index: 11, text: 646 }, - { index: 12, text: 458 }, + { index: 12, text: 468 }, ], config: [ @@ -4112,7 +4196,7 @@ export default { Yanfei: { name: "Yanfei", - nameLocale: 1113, + nameLocale: 1128, element: "Pyro", weapon: "Catalyst", star: 4, @@ -4120,44 +4204,44 @@ export default { // avatar: Yanfei_avatar, avatar: getName("Feiyan"), splash: Yanfei_splash, - skillName1: 827, - skillName2: 86, - skillName3: 271, + skillName1: 839, + skillName2: 91, + skillName3: 278, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 68 }, + { index: 2, text: 70 }, - { index: 3, text: 1575 }, + { index: 3, text: 1593 }, - { index: 4, text: 1571 }, + { index: 4, text: 1589 }, - { index: 5, text: 1572 }, + { index: 5, text: 1590 }, - { index: 6, text: 1573 }, + { index: 6, text: 1591 }, - { index: 7, text: 1574 }, + { index: 7, text: 1592 }, - { index: 8, text: 469 }, + { index: 8, text: 479 }, - { index: 9, text: 76 }, + { index: 9, text: 81 }, - { index: 10, text: 162 }, + { index: 10, text: 169 }, - { index: 11, text: 1737 }, + { index: 11, text: 1758 }, ], skillMap2: [ - { index: 12, text: 635 }, + { index: 12, text: 646 }, ], skillMap3: [ - { index: 13, text: 635 }, + { index: 13, text: 646 }, ], config: [ @@ -4165,14 +4249,14 @@ export default { ], configSkill: [ - {"default":true,"name":"after_q","title":1102,"type":"bool"}, + {"default":true,"name":"after_q","title":1117,"type":"bool"}, ], }, Yaoyao: { name: "Yaoyao", - nameLocale: 1178, + nameLocale: 1194, element: "Dendro", weapon: "Polearm", star: 4, @@ -4180,49 +4264,49 @@ export default { // avatar: Yaoyao_avatar, avatar: getName("Yaoyao"), splash: Yaoyao_splash, - skillName1: 857, - skillName2: 123, - skillName3: 1151, + skillName1: 869, + skillName2: 130, + skillName3: 1167, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 69 }, + { index: 2, text: 71 }, - { index: 3, text: 70 }, + { index: 3, text: 72 }, - { index: 4, text: 397 }, + { index: 4, text: 406 }, - { index: 5, text: 1576 }, + { index: 5, text: 1594 }, - { index: 6, text: 76 }, + { index: 6, text: 81 }, - { index: 7, text: 162 }, + { index: 7, text: 169 }, - { index: 8, text: 1737 }, + { index: 8, text: 1758 }, ], skillMap2: [ - { index: 9, text: 1229 }, + { index: 9, text: 1245 }, - { index: 10, text: 1230 }, + { index: 10, text: 1246 }, ], skillMap3: [ - { index: 11, text: 635 }, + { index: 11, text: 646 }, - { index: 12, text: 990 }, + { index: 12, text: 1003 }, - { index: 13, text: 991 }, + { index: 13, text: 1004 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"c4_rate","title":386,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"c4_rate","title":393,"type":"float"}, ], configSkill: [ @@ -4232,7 +4316,7 @@ export default { Yelan: { name: "Yelan", - nameLocale: 447, + nameLocale: 457, element: "Hydro", weapon: "Bow", star: 5, @@ -4240,47 +4324,47 @@ export default { // avatar: Yelan_avatar, avatar: getName("Yelan"), splash: Yelan_splash, - skillName1: 826, - skillName2: 1409, - skillName3: 1064, + skillName1: 838, + skillName2: 1427, + skillName3: 1078, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 68 }, + { index: 2, text: 70 }, - { index: 3, text: 402 }, + { index: 3, text: 411 }, - { index: 4, text: 1239 }, + { index: 4, text: 1255 }, - { index: 5, text: 1087 }, + { index: 5, text: 1101 }, - { index: 6, text: 1250 }, + { index: 6, text: 1266 }, - { index: 8, text: 76 }, + { index: 8, text: 81 }, - { index: 9, text: 162 }, + { index: 9, text: 169 }, - { index: 10, text: 1737 }, + { index: 10, text: 1758 }, ], skillMap2: [ - { index: 11, text: 635 }, + { index: 11, text: 646 }, ], skillMap3: [ - { index: 12, text: 635 }, + { index: 12, text: 646 }, - { index: 13, text: 1150 }, + { index: 13, text: 1166 }, ], config: [ - {"default":4,"max":4,"min":1,"name":"team_element_count","title":1618,"type":"int"}, + {"default":4,"max":4,"min":1,"name":"team_element_count","title":1636,"type":"int"}, ], configSkill: [ @@ -4290,7 +4374,7 @@ export default { Yoimiya: { name: "Yoimiya", - nameLocale: 530, + nameLocale: 541, element: "Pyro", weapon: "Bow", star: 5, @@ -4298,32 +4382,32 @@ export default { // avatar: Yoimiya_avatar, avatar: getName("Yoimiya"), splash: Yoimiya_splash, - skillName1: 830, - skillName2: 1119, - skillName3: 1168, + skillName1: 842, + skillName2: 1134, + skillName3: 1184, skillMap1: [ { index: 0, text: 51 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 68 }, + { index: 2, text: 70 }, - { index: 3, text: 402 }, + { index: 3, text: 411 }, - { index: 4, text: 131 }, + { index: 4, text: 138 }, - { index: 5, text: 1239 }, + { index: 5, text: 1255 }, - { index: 6, text: 1087 }, + { index: 6, text: 1101 }, - { index: 7, text: 1120 }, + { index: 7, text: 1135 }, - { index: 8, text: 76 }, + { index: 8, text: 81 }, - { index: 9, text: 162 }, + { index: 9, text: 169 }, - { index: 10, text: 1737 }, + { index: 10, text: 1758 }, ], skillMap2: [ @@ -4331,26 +4415,26 @@ export default { ], skillMap3: [ - { index: 11, text: 635 }, + { index: 11, text: 646 }, - { index: 12, text: 1169 }, + { index: 12, text: 1185 }, ], config: [ - {"default":8.0,"max":10.0,"min":0.0,"name":"talent1_level","title":481,"type":"float"}, + {"default":8.0,"max":10.0,"min":0.0,"name":"talent1_level","title":492,"type":"float"}, ], configSkill: [ - {"default":true,"name":"after_e","title":584,"type":"bool"}, + {"default":true,"name":"after_e","title":595,"type":"bool"}, ], }, Yunjin: { name: "Yunjin", - nameLocale: 124, + nameLocale: 131, element: "Geo", weapon: "Polearm", star: 4, @@ -4358,46 +4442,46 @@ export default { // avatar: Yunjin_avatar, avatar: getName("Yunjin"), splash: Yunjin_splash, - skillName1: 815, - skillName2: 751, - skillName3: 1251, + skillName1: 826, + skillName2: 762, + skillName3: 1267, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 69 }, + { index: 2, text: 71 }, - { index: 3, text: 70 }, + { index: 3, text: 72 }, - { index: 4, text: 399 }, + { index: 4, text: 408 }, - { index: 5, text: 400 }, + { index: 5, text: 409 }, - { index: 6, text: 131 }, + { index: 6, text: 138 }, - { index: 7, text: 1576 }, + { index: 7, text: 1594 }, - { index: 8, text: 76 }, + { index: 8, text: 81 }, - { index: 9, text: 162 }, + { index: 9, text: 169 }, - { index: 10, text: 1737 }, + { index: 10, text: 1758 }, ], skillMap2: [ - { index: 11, text: 1104 }, + { index: 11, text: 1119 }, { index: 12, text: 55 }, - { index: 13, text: 120 }, + { index: 13, text: 125 }, ], skillMap3: [ - { index: 14, text: 635 }, + { index: 14, text: 646 }, ], config: [ @@ -4410,7 +4494,7 @@ export default { Zhongli: { name: "Zhongli", - nameLocale: 1601, + nameLocale: 1619, element: "Geo", weapon: "Polearm", star: 5, @@ -4418,44 +4502,44 @@ export default { // avatar: Zhongli_avatar, avatar: getName("Zhongli"), splash: Zhongli_splash, - skillName1: 806, - skillName2: 412, - skillName3: 456, + skillName1: 817, + skillName2: 422, + skillName3: 466, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 68 }, + { index: 2, text: 70 }, - { index: 3, text: 397 }, + { index: 3, text: 406 }, - { index: 4, text: 135 }, + { index: 4, text: 142 }, - { index: 5, text: 232 }, + { index: 5, text: 239 }, - { index: 6, text: 1576 }, + { index: 6, text: 1594 }, - { index: 7, text: 76 }, + { index: 7, text: 81 }, - { index: 8, text: 162 }, + { index: 8, text: 169 }, - { index: 9, text: 1737 }, + { index: 9, text: 1758 }, ], skillMap2: [ - { index: 10, text: 559 }, + { index: 10, text: 570 }, - { index: 11, text: 236 }, + { index: 11, text: 243 }, - { index: 12, text: 1613 }, + { index: 12, text: 1631 }, ], skillMap3: [ - { index: 13, text: 635 }, + { index: 13, text: 646 }, ], config: [ @@ -4468,7 +4552,7 @@ export default { Kirara: { name: "Kirara", - nameLocale: 1325, + nameLocale: 1341, element: "Dendro", weapon: "Sword", star: 4, @@ -4476,48 +4560,48 @@ export default { // avatar: Kirara_avatar, avatar: getName("Momoka"), splash: Kirara_splash, - skillName1: 842, - skillName2: 374, - skillName3: 1291, + skillName1: 854, + skillName2: 381, + skillName3: 1307, skillMap1: [ { index: 0, text: 48 }, - { index: 1, text: 114 }, + { index: 1, text: 119 }, - { index: 2, text: 69 }, + { index: 2, text: 71 }, - { index: 3, text: 70 }, + { index: 3, text: 72 }, - { index: 4, text: 397 }, + { index: 4, text: 406 }, - { index: 5, text: 1580 }, + { index: 5, text: 1595 }, - { index: 6, text: 1583 }, + { index: 6, text: 1601 }, - { index: 7, text: 1585 }, + { index: 7, text: 1603 }, - { index: 8, text: 76 }, + { index: 8, text: 81 }, - { index: 9, text: 162 }, + { index: 9, text: 169 }, - { index: 10, text: 1737 }, + { index: 10, text: 1758 }, ], skillMap2: [ - { index: 11, text: 1208 }, + { index: 11, text: 1224 }, - { index: 12, text: 1148 }, + { index: 12, text: 1164 }, - { index: 13, text: 1347 }, + { index: 13, text: 1363 }, ], skillMap3: [ - { index: 14, text: 635 }, + { index: 14, text: 646 }, - { index: 15, text: 1149 }, + { index: 15, text: 1165 }, ], config: [ diff --git a/src/assets/_gen_pf.js b/src/assets/_gen_pf.js index 1df77e46..8bff8041 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":688,"type":"bool"}, + {"default":false,"name":"atk_use","title":699,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"atk_weight","title":689,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"atk_weight","title":700,"type":"float"}, - {"default":true,"name":"atk_p_use","title":681,"type":"bool"}, + {"default":true,"name":"atk_p_use","title":692,"type":"bool"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"atk_p_weight","title":682,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"atk_p_weight","title":693,"type":"float"}, - {"default":false,"name":"hp_use","title":1202,"type":"bool"}, + {"default":false,"name":"hp_use","title":1218,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"hp_weight","title":1203,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"hp_weight","title":1219,"type":"float"}, - {"default":false,"name":"hp_p_use","title":1188,"type":"bool"}, + {"default":false,"name":"hp_p_use","title":1204,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"hp_p_weight","title":1189,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"hp_p_weight","title":1205,"type":"float"}, - {"default":false,"name":"def_use","title":1638,"type":"bool"}, + {"default":false,"name":"def_use","title":1656,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"def_weight","title":1639,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"def_weight","title":1657,"type":"float"}, - {"default":false,"name":"def_p_use","title":1633,"type":"bool"}, + {"default":false,"name":"def_p_use","title":1651,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"def_p_weight","title":1634,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"def_p_weight","title":1652,"type":"float"}, - {"default":true,"name":"critical_use","title":939,"type":"bool"}, + {"default":true,"name":"critical_use","title":952,"type":"bool"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"critical_weight","title":940,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"critical_weight","title":953,"type":"float"}, - {"default":true,"name":"critical_damage_use","title":933,"type":"bool"}, + {"default":true,"name":"critical_damage_use","title":946,"type":"bool"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"critical_damage_weight","title":934,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"critical_damage_weight","title":947,"type":"float"}, - {"default":false,"name":"elemental_mastery_use","title":216,"type":"bool"}, + {"default":false,"name":"elemental_mastery_use","title":223,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"elemental_mastery_weight","title":217,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"elemental_mastery_weight","title":224,"type":"float"}, - {"default":false,"name":"recharge_use","title":180,"type":"bool"}, + {"default":false,"name":"recharge_use","title":187,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"recharge_weight","title":181,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"recharge_weight","title":188,"type":"float"}, ], }, diff --git a/src/assets/_gen_tf.js b/src/assets/_gen_tf.js index cd71d8f2..038134dc 100644 --- a/src/assets/_gen_tf.js +++ b/src/assets/_gen_tf.js @@ -194,6 +194,8 @@ import ExpectMelt_image from "@image/misc/sword" + + @@ -204,8 +206,8 @@ export default { "MaxATK": { name: "MaxATK", - nameLocale: 953, - description: 950, + nameLocale: 966, + description: 963, tags: [ "攻击", @@ -222,8 +224,8 @@ export default { "MaxDEF": { name: "MaxDEF", - nameLocale: 958, - description: 952, + nameLocale: 971, + description: 965, tags: [ "防御", @@ -240,8 +242,8 @@ export default { "MaxHP": { name: "MaxHP", - nameLocale: 955, - description: 951, + nameLocale: 968, + description: 964, tags: [ "生命", @@ -258,8 +260,8 @@ export default { "MaxEM": { name: "MaxEM", - nameLocale: 945, - description: 949, + nameLocale: 958, + description: 962, tags: [ "元素精通", @@ -276,8 +278,8 @@ export default { "MaxRecharge": { name: "MaxRecharge", - nameLocale: 946, - description: 948, + nameLocale: 959, + description: 961, tags: [ "", @@ -294,8 +296,8 @@ export default { "PyroDamage": { name: "PyroDamage", - nameLocale: 1090, - description: 1091, + nameLocale: 1104, + description: 1105, tags: [ "输出", @@ -307,15 +309,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1306,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1322,"type":"option"}, ], }, "CryoDamage": { name: "CryoDamage", - nameLocale: 246, - description: 247, + nameLocale: 253, + description: 254, tags: [ "输出", @@ -327,15 +329,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1306,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1322,"type":"option"}, ], }, "HydroDamage": { name: "HydroDamage", - nameLocale: 1014, - description: 1015, + nameLocale: 1027, + description: 1028, tags: [ "输出", @@ -347,15 +349,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1306,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1322,"type":"option"}, ], }, "ElectroDamage": { name: "ElectroDamage", - nameLocale: 1661, - description: 1662, + nameLocale: 1680, + description: 1681, tags: [ "输出", @@ -367,15 +369,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1306,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1322,"type":"option"}, ], }, "AnemoDamage": { name: "AnemoDamage", - nameLocale: 1694, - description: 1696, + nameLocale: 1715, + description: 1717, tags: [ "输出", @@ -387,15 +389,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1306,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1322,"type":"option"}, ], }, "DendroDamage": { name: "DendroDamage", - nameLocale: 1373, - description: 1374, + nameLocale: 1389, + description: 1390, tags: [ "", @@ -407,15 +409,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1306,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1322,"type":"option"}, ], }, "GeoDamage": { name: "GeoDamage", - nameLocale: 556, - description: 557, + nameLocale: 567, + description: 568, tags: [ "输出", @@ -427,15 +429,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1306,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1322,"type":"option"}, ], }, "PhysicalDamage": { name: "PhysicalDamage", - nameLocale: 1130, - description: 1131, + nameLocale: 1145, + description: 1146, tags: [ "输出", @@ -447,15 +449,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1306,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1322,"type":"option"}, ], }, "MaxVaporize": { name: "MaxVaporize", - nameLocale: 956, - description: 168, + nameLocale: 969, + description: 175, tags: [ "输出", @@ -467,17 +469,17 @@ export default { config: [ - {"default":0,"name":"t","options":["火","水"],"title":1464,"type":"option"}, + {"default":0,"name":"t","options":["火","水"],"title":1482,"type":"option"}, - {"default":"NormalAttack","name":"skill","title":634,"type":"skill4"}, + {"default":"NormalAttack","name":"skill","title":645,"type":"skill4"}, ], }, "MaxMelt": { name: "MaxMelt", - nameLocale: 957, - description: 170, + nameLocale: 970, + description: 177, tags: [ "输出", @@ -489,17 +491,17 @@ export default { config: [ - {"default":0,"name":"t","options":["火","冰"],"title":1464,"type":"option"}, + {"default":0,"name":"t","options":["火","冰"],"title":1482,"type":"option"}, - {"default":"NormalAttack","name":"skill","title":634,"type":"skill4"}, + {"default":"NormalAttack","name":"skill","title":645,"type":"skill4"}, ], }, "ExpectVaporize": { name: "ExpectVaporize", - nameLocale: 965, - description: 169, + nameLocale: 978, + description: 176, tags: [ "输出", @@ -511,17 +513,17 @@ export default { config: [ - {"default":0,"name":"t","options":["火","水"],"title":1464,"type":"option"}, + {"default":0,"name":"t","options":["火","水"],"title":1482,"type":"option"}, - {"default":"NormalAttack","name":"skill","title":634,"type":"skill4"}, + {"default":"NormalAttack","name":"skill","title":645,"type":"skill4"}, ], }, "ExpectMelt": { name: "ExpectMelt", - nameLocale: 966, - description: 171, + nameLocale: 979, + description: 178, tags: [ "输出", @@ -533,17 +535,17 @@ export default { config: [ - {"default":0,"name":"t","options":["火","冰"],"title":1464,"type":"option"}, + {"default":0,"name":"t","options":["火","冰"],"title":1482,"type":"option"}, - {"default":"NormalAttack","name":"skill","title":634,"type":"skill4"}, + {"default":"NormalAttack","name":"skill","title":645,"type":"skill4"}, ], }, "AlbedoDefault": { name: "AlbedoDefault", - nameLocale: 1646, - description: 791, + nameLocale: 1664, + description: 802, tags: [ "输出", @@ -560,8 +562,8 @@ export default { "AloyDefault": { name: "AloyDefault", - nameLocale: 423, - description: 906, + nameLocale: 433, + description: 918, tags: [ "输出", @@ -578,8 +580,8 @@ export default { "AmberDefault": { name: "AmberDefault", - nameLocale: 517, - description: 909, + nameLocale: 528, + description: 921, tags: [ "输出", @@ -596,8 +598,8 @@ export default { "AratakiIttoDefault": { name: "AratakiIttoDefault", - nameLocale: 1377, - description: 1379, + nameLocale: 1393, + description: 1395, tags: [ "输出", @@ -614,8 +616,8 @@ export default { "BarbaraDefault": { name: "BarbaraDefault", - nameLocale: 1362, - description: 167, + nameLocale: 1378, + description: 174, tags: [ "治疗", @@ -634,8 +636,8 @@ export default { "BeidouDefault": { name: "BeidouDefault", - nameLocale: 306, - description: 792, + nameLocale: 313, + description: 803, tags: [ "输出", @@ -652,8 +654,8 @@ export default { "BennettDamage": { name: "BennettDamage", - nameLocale: 1163, - description: 788, + nameLocale: 1179, + description: 799, tags: [ "辅助", @@ -669,17 +671,17 @@ export default { config: [ - {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":220,"type":"float"}, + {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":227,"type":"float"}, - {"default":0.9,"max":1.0,"min":0.0,"name":"other_dmg_ratio","title":147,"type":"float"}, + {"default":0.9,"max":1.0,"min":0.0,"name":"other_dmg_ratio","title":154,"type":"float"}, ], }, "BennettDefault": { name: "BennettDefault", - nameLocale: 1164, - description: 897, + nameLocale: 1180, + description: 909, tags: [ "辅助", @@ -691,15 +693,15 @@ export default { config: [ - {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":220,"type":"float"}, + {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":227,"type":"float"}, ], }, "ChongyunDefault": { name: "ChongyunDefault", - nameLocale: 1569, - description: 790, + nameLocale: 1587, + description: 801, tags: [ "副C", @@ -718,8 +720,8 @@ export default { "DilucDefault": { name: "DilucDefault", - nameLocale: 1544, - description: 921, + nameLocale: 1562, + description: 934, tags: [ "输出", @@ -731,17 +733,17 @@ export default { config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1422,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1440,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1414,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1432,"type":"float"}, ], }, "DionaDefault": { name: "DionaDefault", - nameLocale: 1547, - description: 890, + nameLocale: 1565, + description: 902, tags: [ "治疗", @@ -755,15 +757,15 @@ export default { config: [ - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":220,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":227,"type":"float"}, ], }, "EulaDefault": { name: "EulaDefault", - nameLocale: 157, - description: 784, + nameLocale: 164, + description: 795, tags: [ "输出", @@ -780,8 +782,8 @@ export default { "FischlDefault": { name: "FischlDefault", - nameLocale: 1408, - description: 785, + nameLocale: 1426, + description: 796, tags: [ "输出", @@ -798,8 +800,8 @@ export default { "GanyuDefault": { name: "GanyuDefault", - nameLocale: 1183, - description: 917, + nameLocale: 1199, + description: 929, tags: [ "输出", @@ -811,15 +813,15 @@ export default { config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1422,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1440,"type":"float"}, ], }, "GorouDefault": { name: "GorouDefault", - nameLocale: 141, - description: 794, + nameLocale: 148, + description: 805, tags: [ "辅助", @@ -831,15 +833,15 @@ export default { config: [ - {"default":1.7,"max":3.0,"min":1.0,"name":"recharge_demand","title":219,"type":"float"}, + {"default":1.7,"max":3.0,"min":1.0,"name":"recharge_demand","title":226,"type":"float"}, ], }, "HuTaoDefault": { name: "HuTaoDefault", - nameLocale: 1355, - description: 902, + nameLocale: 1371, + description: 914, tags: [ "输出", @@ -851,17 +853,17 @@ export default { config: [ - {"default":0.5,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1414,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1432,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1422,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1440,"type":"float"}, ], }, "JeanDefault": { name: "JeanDefault", - nameLocale: 1175, - description: 786, + nameLocale: 1191, + description: 797, tags: [ "副C", @@ -875,17 +877,17 @@ export default { config: [ - {"default":0.5,"max":1.0,"min":0.0,"name":"damage_weight","title":1029,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"damage_weight","title":1042,"type":"float"}, - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":219,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":226,"type":"float"}, ], }, "KaedeharaKazuhaDamage": { name: "KaedeharaKazuhaDamage", - nameLocale: 979, - description: 912, + nameLocale: 992, + description: 924, tags: [ "输出", @@ -899,19 +901,19 @@ export default { config: [ - {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":220,"type":"float"}, + {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":227,"type":"float"}, - {"default":0.5,"max":1.0,"min":0.0,"name":"swirl_rate","title":632,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"swirl_rate","title":643,"type":"float"}, - {"default":0.9,"max":1.0,"min":0.0,"name":"other_dmg_ratio","title":147,"type":"float"}, + {"default":0.9,"max":1.0,"min":0.0,"name":"other_dmg_ratio","title":154,"type":"float"}, ], }, "KaedeharaKazuhaDefault": { name: "KaedeharaKazuhaDefault", - nameLocale: 978, - description: 896, + nameLocale: 991, + description: 908, tags: [ "辅助", @@ -923,15 +925,15 @@ export default { config: [ - {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":220,"type":"float"}, + {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":227,"type":"float"}, ], }, "KaeyaDefault": { name: "KaeyaDefault", - nameLocale: 273, - description: 787, + nameLocale: 280, + description: 798, tags: [ "输出", @@ -948,8 +950,8 @@ export default { "KamisatoAyakaDefault": { name: "KamisatoAyakaDefault", - nameLocale: 1275, - description: 783, + nameLocale: 1291, + description: 794, tags: [ "输出", @@ -961,15 +963,15 @@ export default { config: [ - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":220,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":227,"type":"float"}, ], }, "KamisatoAyakaDps": { name: "KamisatoAyakaDps", - nameLocale: 1273, - description: 964, + nameLocale: 1289, + description: 977, tags: [ "输出", @@ -986,8 +988,8 @@ export default { "KamisatoAyatoDefault": { name: "KamisatoAyatoDefault", - nameLocale: 1269, - description: 889, + nameLocale: 1285, + description: 901, tags: [ "输出", @@ -1004,8 +1006,8 @@ export default { "KeqingDefault": { name: "KeqingDefault", - nameLocale: 289, - description: 925, + nameLocale: 296, + description: 938, tags: [ "输出", @@ -1017,15 +1019,15 @@ export default { config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"aggravate_rate","title":1507,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"aggravate_rate","title":1525,"type":"float"}, ], }, "KleeDefault": { name: "KleeDefault", - nameLocale: 351, - description: 354, + nameLocale: 358, + description: 361, tags: [ "输出", @@ -1037,15 +1039,15 @@ export default { config: [ - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":220,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":227,"type":"float"}, ], }, "KujouSaraDamage": { name: "KujouSaraDamage", - nameLocale: 99, - description: 294, + nameLocale: 104, + description: 301, tags: [ "输出", @@ -1059,15 +1061,15 @@ export default { config: [ - {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":220,"type":"float"}, + {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":227,"type":"float"}, ], }, "KujouSaraDefault": { name: "KujouSaraDefault", - nameLocale: 100, - description: 926, + nameLocale: 105, + description: 939, tags: [ "辅助", @@ -1084,8 +1086,8 @@ export default { "LisaDefault": { name: "LisaDefault", - nameLocale: 90, - description: 903, + nameLocale: 95, + description: 915, tags: [ "输出", @@ -1097,15 +1099,15 @@ export default { config: [ - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":219,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":226,"type":"float"}, ], }, "MonaDefault": { name: "MonaDefault", - nameLocale: 1386, - description: 918, + nameLocale: 1402, + description: 930, tags: [ "输出", @@ -1119,15 +1121,15 @@ export default { config: [ - {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":219,"type":"float"}, + {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":226,"type":"float"}, ], }, "NingguangDefault": { name: "NingguangDefault", - nameLocale: 267, - description: 904, + nameLocale: 274, + description: 916, tags: [ "输出", @@ -1144,8 +1146,8 @@ export default { "NoelleDefault": { name: "NoelleDefault", - nameLocale: 1487, - description: 919, + nameLocale: 1505, + description: 932, tags: [ "输出", @@ -1162,8 +1164,8 @@ export default { "QiqiDefault": { name: "QiqiDefault", - nameLocale: 61, - description: 892, + nameLocale: 63, + description: 904, tags: [ "治疗", @@ -1175,15 +1177,15 @@ export default { config: [ - {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":219,"type":"float"}, + {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":226,"type":"float"}, ], }, "RaidenShogunDefault": { name: "RaidenShogunDefault", - nameLocale: 1676, - description: 923, + nameLocale: 1695, + description: 936, tags: [ "输出", @@ -1195,15 +1197,15 @@ export default { config: [ - {"default":2.6,"max":4.0,"min":1.0,"name":"recharge_demand","title":220,"type":"float"}, + {"default":2.6,"max":4.0,"min":1.0,"name":"recharge_demand","title":227,"type":"float"}, ], }, "RazorDefault": { name: "RazorDefault", - nameLocale: 1669, - description: 916, + nameLocale: 1688, + description: 928, tags: [ "输出", @@ -1220,8 +1222,8 @@ export default { "RosariaDefault": { name: "RosariaDefault", - nameLocale: 1333, - description: 900, + nameLocale: 1349, + description: 912, tags: [ "辅助", @@ -1240,8 +1242,8 @@ export default { "SangonomiyaKokomiDefault": { name: "SangonomiyaKokomiDefault", - nameLocale: 1156, - description: 911, + nameLocale: 1172, + description: 923, tags: [ "输出", @@ -1260,8 +1262,8 @@ export default { "SayuDefault": { name: "SayuDefault", - nameLocale: 764, - description: 905, + nameLocale: 775, + description: 917, tags: [ "输出", @@ -1275,15 +1277,15 @@ export default { config: [ - {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":219,"type":"float"}, + {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":226,"type":"float"}, ], }, "ShenheDefault": { name: "ShenheDefault", - nameLocale: 1215, - description: 898, + nameLocale: 1231, + description: 910, tags: [ "辅助", @@ -1295,15 +1297,15 @@ export default { config: [ - {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":219,"type":"float"}, + {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":226,"type":"float"}, ], }, "SucroseDefault": { name: "SucroseDefault", - nameLocale: 1244, - description: 899, + nameLocale: 1260, + description: 911, tags: [ "辅助", @@ -1315,15 +1317,15 @@ export default { config: [ - {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":219,"type":"float"}, + {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":226,"type":"float"}, ], }, "TartagliaDefault": { name: "TartagliaDefault", - nameLocale: 1538, - description: 920, + nameLocale: 1556, + description: 933, tags: [ "输出", @@ -1340,8 +1342,8 @@ export default { "ThomaDefault": { name: "ThomaDefault", - nameLocale: 625, - description: 895, + nameLocale: 636, + description: 907, tags: [ "辅助", @@ -1353,15 +1355,15 @@ export default { config: [ - {"default":2.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":219,"type":"float"}, + {"default":2.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":226,"type":"float"}, ], }, "VentiDefault": { name: "VentiDefault", - nameLocale: 1075, - description: 913, + nameLocale: 1089, + description: 925, tags: [ "输出", @@ -1373,15 +1375,15 @@ export default { config: [ - {"default":0.7,"max":1.0,"min":0.0,"name":"swirl_rate","title":629,"type":"float"}, + {"default":0.7,"max":1.0,"min":0.0,"name":"swirl_rate","title":640,"type":"float"}, ], }, "XianglingDefault": { name: "XianglingDefault", - nameLocale: 1731, - description: 914, + nameLocale: 1752, + description: 926, tags: [ "输出", @@ -1393,21 +1395,21 @@ export default { config: [ - {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":219,"type":"float"}, + {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":226,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1422,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1440,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1414,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1432,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"overload_rate","title":1513,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"overload_rate","title":1531,"type":"float"}, ], }, "XiaoDefault": { name: "XiaoDefault", - nameLocale: 1740, - description: 924, + nameLocale: 1761, + description: 937, tags: [ "输出", @@ -1424,8 +1426,8 @@ export default { "XingqiuDefault": { name: "XingqiuDefault", - nameLocale: 1427, - description: 789, + nameLocale: 1445, + description: 800, tags: [ "输出", @@ -1437,15 +1439,15 @@ export default { config: [ - {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":219,"type":"float"}, + {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":226,"type":"float"}, ], }, "XinyanDamage": { name: "XinyanDamage", - nameLocale: 1532, - description: 894, + nameLocale: 1550, + description: 906, tags: [ "输出", @@ -1462,8 +1464,8 @@ export default { "XinyanDefault": { name: "XinyanDefault", - nameLocale: 1531, - description: 901, + nameLocale: 1549, + description: 913, tags: [ "辅助", @@ -1475,17 +1477,17 @@ export default { config: [ - {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":219,"type":"float"}, + {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":226,"type":"float"}, - {"default":0.5,"max":1.0,"min":0.0,"name":"damage_demand","title":161,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"damage_demand","title":168,"type":"float"}, ], }, "YaeMikoDefault": { name: "YaeMikoDefault", - nameLocale: 225, - description: 669, + nameLocale: 232, + description: 680, tags: [ "输出", @@ -1497,21 +1499,21 @@ export default { config: [ - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_requirement","title":219,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_requirement","title":226,"type":"float"}, - {"default":0,"name":"combo","options":["不站场平A","站场平A"],"title":1540,"type":"option"}, + {"default":0,"name":"combo","options":["不站场平A","站场平A"],"title":1558,"type":"option"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"aggravate_rate","title":1507,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"aggravate_rate","title":1525,"type":"float"}, - {"default":0.0,"max":4.0,"min":0.0,"name":"hyperbloom_rate","title":1508,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"hyperbloom_rate","title":1526,"type":"float"}, ], }, "YanfeiDefault": { name: "YanfeiDefault", - nameLocale: 1114, - description: 915, + nameLocale: 1129, + description: 927, tags: [ "输出", @@ -1528,8 +1530,8 @@ export default { "YelanDefault": { name: "YelanDefault", - nameLocale: 450, - description: 907, + nameLocale: 460, + description: 919, tags: [ "输出", @@ -1541,17 +1543,17 @@ export default { config: [ - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":220,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":227,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1414,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1432,"type":"float"}, ], }, "YoimiyaDefault": { name: "YoimiyaDefault", - nameLocale: 532, - description: 910, + nameLocale: 543, + description: 922, tags: [ "输出", @@ -1563,17 +1565,17 @@ export default { config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1414,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1432,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1422,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1440,"type":"float"}, ], }, "YunjinDefault": { name: "YunjinDefault", - nameLocale: 127, - description: 793, + nameLocale: 134, + description: 804, tags: [ "辅助", @@ -1585,15 +1587,15 @@ export default { config: [ - {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":219,"type":"float"}, + {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":226,"type":"float"}, ], }, "ZhongliDefault": { name: "ZhongliDefault", - nameLocale: 1603, - description: 893, + nameLocale: 1621, + description: 905, tags: [ "爆发", @@ -1605,15 +1607,15 @@ export default { config: [ - {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":219,"type":"float"}, + {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":226,"type":"float"}, ], }, "KukiShinobuDefault": { name: "KukiShinobuDefault", - nameLocale: 93, - description: 1526, + nameLocale: 98, + description: 1544, tags: [ "辅助", @@ -1632,8 +1634,8 @@ export default { "ShikanoinHeizouDefault": { name: "ShikanoinHeizouDefault", - nameLocale: 1755, - description: 1527, + nameLocale: 1776, + description: 1545, tags: [ "输出", @@ -1650,8 +1652,8 @@ export default { "TighnariDefault": { name: "TighnariDefault", - nameLocale: 675, - description: 165, + nameLocale: 686, + description: 172, tags: [ "", @@ -1663,15 +1665,15 @@ export default { config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"spread_rate","title":1416,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"spread_rate","title":1434,"type":"float"}, ], }, "CynoDefault": { name: "CynoDefault", - nameLocale: 1503, - description: 621, + nameLocale: 1521, + description: 632, tags: [ "输出", @@ -1683,27 +1685,27 @@ export default { config: [ - {"default":1.3,"max":3.0,"min":1.0,"name":"recharge_requirement","title":219,"type":"float"}, + {"default":1.3,"max":3.0,"min":1.0,"name":"recharge_requirement","title":226,"type":"float"}, - {"default":0,"name":"combo","options":["乱a不取消","取消第五段"],"title":1540,"type":"option"}, + {"default":0,"name":"combo","options":["乱a不取消","取消第五段"],"title":1558,"type":"option"}, {"default":false,"name":"until_expire","title":17,"type":"bool"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"aggravate_rate","title":1507,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"aggravate_rate","title":1525,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"elecharged_rate","title":612,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"elecharged_rate","title":623,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"overload_rate","title":1512,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"overload_rate","title":1530,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"hyperbloom_rate","title":1508,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"hyperbloom_rate","title":1526,"type":"float"}, ], }, "NilouDefault": { name: "NilouDefault", - nameLocale: 500, - description: 908, + nameLocale: 511, + description: 920, tags: [ "", @@ -1715,23 +1717,23 @@ export default { config: [ - {"default":5.0,"max":10.0,"min":0.0,"name":"e_ratio","title":189,"type":"float"}, + {"default":5.0,"max":10.0,"min":0.0,"name":"e_ratio","title":196,"type":"float"}, - {"default":1.0,"max":10.0,"min":0.0,"name":"q_ratio","title":204,"type":"float"}, + {"default":1.0,"max":10.0,"min":0.0,"name":"q_ratio","title":211,"type":"float"}, - {"default":3.0,"max":10.0,"min":0.0,"name":"bloom_ratio","title":1328,"type":"float"}, + {"default":3.0,"max":10.0,"min":0.0,"name":"bloom_ratio","title":1344,"type":"float"}, - {"default":1000.0,"max":3000.0,"min":0.0,"name":"other_em","title":1629,"type":"float"}, + {"default":1000.0,"max":3000.0,"min":0.0,"name":"other_em","title":1647,"type":"float"}, - {"default":7.0,"max":10.0,"min":0.0,"name":"other_bloom_ratio","title":1630,"type":"float"}, + {"default":7.0,"max":10.0,"min":0.0,"name":"other_bloom_ratio","title":1648,"type":"float"}, ], }, "NahidaDefault": { name: "NahidaDefault", - nameLocale: 1313, - description: 172, + nameLocale: 1329, + description: 179, tags: [ "输出", @@ -1743,23 +1745,23 @@ export default { config: [ - {"default":0,"max":1500,"min":0,"name":"em_requirement","title":1308,"type":"int"}, + {"default":0,"max":1500,"min":0,"name":"em_requirement","title":1324,"type":"int"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"spread_rate","title":1416,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"spread_rate","title":1434,"type":"float"}, - {"default":0.0,"max":4.0,"min":0.0,"name":"bloom_count","title":1328,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"bloom_count","title":1344,"type":"float"}, - {"default":0.0,"max":3.0,"min":0.0,"name":"burn_duration","title":1123,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"burn_duration","title":1138,"type":"float"}, - {"default":0,"max":2,"min":0,"name":"pryo_teammate_count","title":1095,"type":"int"}, + {"default":0,"max":2,"min":0,"name":"pryo_teammate_count","title":1109,"type":"int"}, ], }, "WandererDefault": { name: "WandererDefault", - nameLocale: 1052, - description: 1472, + nameLocale: 1065, + description: 1490, tags: [ "输出", @@ -1777,23 +1779,23 @@ export default { {"default":false,"name":"e_cryo","title":23,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"spd_extra","title":1693,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"spd_extra","title":1714,"type":"float"}, - {"default":1.0,"max":1.5,"min":0.5,"name":"spd_comp","title":698,"type":"float"}, + {"default":1.0,"max":1.5,"min":0.5,"name":"spd_comp","title":709,"type":"float"}, {"default":3,"max":12,"min":0,"name":"dash_count","title":27,"type":"int"}, {"default":5,"max":5,"min":0,"name":"q_count","title":12,"type":"int"}, - {"default":12,"max":24,"min":0,"name":"swirl_count","title":631,"type":"int"}, + {"default":12,"max":24,"min":0,"name":"swirl_count","title":642,"type":"int"}, ], }, "FaruzanDamage": { name: "FaruzanDamage", - nameLocale: 1158, - description: 166, + nameLocale: 1174, + description: 173, tags: [ "", @@ -1805,15 +1807,15 @@ export default { config: [ - {"default":2.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":219,"type":"float"}, + {"default":2.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":226,"type":"float"}, ], }, "AlhaithamDefault": { name: "AlhaithamDefault", - nameLocale: 1360, - description: 151, + nameLocale: 1376, + description: 158, tags: [ "", @@ -1825,21 +1827,21 @@ export default { config: [ - {"default":5.0,"max":10.0,"min":0.0,"name":"charged_ratio","title":1591,"type":"float"}, + {"default":5.0,"max":10.0,"min":0.0,"name":"charged_ratio","title":1609,"type":"float"}, - {"default":5.0,"max":10.0,"min":0.0,"name":"e_ratio","title":198,"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":205,"type":"float"}, + {"default":1.0,"max":10.0,"min":0.0,"name":"q_ratio","title":212,"type":"float"}, - {"default":0.3,"max":1.0,"min":0.0,"name":"spread_ratio","title":1416,"type":"float"}, + {"default":0.3,"max":1.0,"min":0.0,"name":"spread_ratio","title":1434,"type":"float"}, ], }, "DehyaDefault": { name: "DehyaDefault", - nameLocale: 1550, - description: 922, + nameLocale: 1568, + description: 935, tags: [ "输出", @@ -1851,19 +1853,19 @@ export default { config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1422,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1440,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1414,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1432,"type":"float"}, - {"default":6,"max":20,"min":0,"name":"e_count","title":85,"type":"int"}, + {"default":6,"max":20,"min":0,"name":"e_count","title":90,"type":"int"}, ], }, "MikaDefault": { name: "MikaDefault", - nameLocale: 1305, - description: 891, + nameLocale: 1321, + description: 903, tags: [ "治疗", @@ -1877,9 +1879,27 @@ export default { config: [ - {"default":2.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":220,"type":"float"}, + {"default":2.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":227,"type":"float"}, + + {"default":0.6,"max":1.0,"min":0.0,"name":"crit_demand","title":954,"type":"float"}, + + ], + }, + + "FreminetDefault": { + name: "FreminetDefault", + nameLocale: 1424, + description: 931, + tags: [ + + "", - {"default":0.6,"max":1.0,"min":0.0,"name":"crit_demand","title":941,"type":"float"}, + ], + "for": "Freminet", + + badge: getImage("UI_AvatarIcon_Freminet"), + + config: [ ], }, diff --git a/src/assets/_gen_weapon.js b/src/assets/_gen_weapon.js index c0822ce4..ae9c6216 100644 --- a/src/assets/_gen_weapon.js +++ b/src/assets/_gen_weapon.js @@ -320,13 +320,13 @@ export default { MistsplitterReforged: { name: "MistsplitterReforged", internalName: "Sword_Narukami", - nameLocale: 1682, + nameLocale: 1701, star: 5, url: imageUrl("Sword_Narukami"), type: "Sword", - effect: 1398, + effect: 1414, configs: [ @@ -340,13 +340,13 @@ export default { AquilaFavonia: { name: "AquilaFavonia", internalName: "Sword_Falcon", - nameLocale: 1716, + nameLocale: 1737, star: 5, url: imageUrl("Sword_Falcon"), type: "Sword", - effect: 686, + effect: 697, configs: null, @@ -356,20 +356,20 @@ export default { SummitShaper: { name: "SummitShaper", internalName: "Sword_Kunwu", - nameLocale: 718, + nameLocale: 729, star: 5, url: imageUrl("Sword_Kunwu"), type: "Sword", - effect: 654, + effect: 665, configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1433,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1451,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":656,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":667,"type":"float"}, ], @@ -378,13 +378,13 @@ export default { SkywardBlade: { name: "SkywardBlade", internalName: "Sword_Dvalin", - nameLocale: 464, + nameLocale: 474, star: 5, url: imageUrl("Sword_Dvalin"), type: "Sword", - effect: 936, + effect: 949, configs: null, @@ -394,18 +394,18 @@ export default { FreedomSworn: { name: "FreedomSworn", internalName: "Sword_Widsith", - nameLocale: 1366, + nameLocale: 1382, star: 5, url: imageUrl("Sword_Widsith"), type: "Sword", - effect: 1719, + effect: 1740, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, ], @@ -414,13 +414,13 @@ export default { PrimordialJadeCutter: { name: "PrimordialJadeCutter", internalName: "Sword_Morax", - nameLocale: 1254, + nameLocale: 1270, star: 5, url: imageUrl("Sword_Morax"), type: "Sword", - effect: 1201, + effect: 1217, configs: null, @@ -430,13 +430,13 @@ export default { TheFlute: { name: "TheFlute", internalName: "Sword_Troupe", - nameLocale: 1296, + nameLocale: 1312, star: 4, url: imageUrl("Sword_Troupe"), type: "Sword", - effect: 883, + effect: 895, configs: null, @@ -446,13 +446,13 @@ export default { TheBlackSword: { name: "TheBlackSword", internalName: "Sword_Bloodstained", - nameLocale: 1760, + nameLocale: 1781, star: 4, url: imageUrl("Sword_Bloodstained"), type: "Sword", - effect: 871, + effect: 883, configs: null, @@ -462,18 +462,18 @@ export default { TheAlleyFlash: { name: "TheAlleyFlash", internalName: "Sword_Outlaw", - nameLocale: 929, + nameLocale: 942, star: 4, url: imageUrl("Sword_Outlaw"), type: "Sword", - effect: 1461, + effect: 1479, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, ], @@ -482,7 +482,7 @@ export default { SwordOfDescension: { name: "SwordOfDescension", internalName: "Sword_Psalmus", - nameLocale: 1654, + nameLocale: 1672, star: 4, url: imageUrl("Sword_Psalmus"), type: "Sword", @@ -498,13 +498,13 @@ export default { SacrificialSword: { name: "SacrificialSword", internalName: "Sword_Fossil", - nameLocale: 1282, + nameLocale: 1298, star: 4, url: imageUrl("Sword_Fossil"), type: "Sword", - effect: 199, + effect: 206, configs: null, @@ -514,13 +514,13 @@ export default { RoyalLongsword: { name: "RoyalLongsword", internalName: "Sword_Theocrat", - nameLocale: 526, + nameLocale: 537, star: 4, url: imageUrl("Sword_Theocrat"), type: "Sword", - effect: 696, + effect: 707, configs: null, @@ -530,18 +530,18 @@ export default { PrototypeRancour: { name: "PrototypeRancour", internalName: "Sword_Proto", - nameLocale: 1479, + nameLocale: 1497, star: 4, url: imageUrl("Sword_Proto"), type: "Sword", - effect: 884, + effect: 896, configs: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1433,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1451,"type":"float"}, ], @@ -550,13 +550,13 @@ export default { AmenomaKageuchi: { name: "AmenomaKageuchi", internalName: "Sword_Bakufu", - nameLocale: 462, + nameLocale: 472, star: 4, url: imageUrl("Sword_Bakufu"), type: "Sword", - effect: 733, + effect: 744, configs: null, @@ -566,18 +566,18 @@ export default { LionsRoar: { name: "LionsRoar", internalName: "Sword_Rockkiller", - nameLocale: 310, + nameLocale: 317, star: 4, url: imageUrl("Sword_Rockkiller"), type: "Sword", - effect: 543, + effect: 554, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, ], @@ -586,18 +586,18 @@ export default { IronSting: { name: "IronSting", internalName: "Sword_Exotic", - nameLocale: 1609, + nameLocale: 1627, star: 4, url: imageUrl("Sword_Exotic"), type: "Sword", - effect: 1559, + effect: 1577, configs: [ - {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1433,"type":"float"}, + {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1451,"type":"float"}, ], @@ -606,13 +606,13 @@ export default { FesteringDesire: { name: "FesteringDesire", internalName: "Sword_Magnum", - nameLocale: 1357, + nameLocale: 1373, star: 4, url: imageUrl("Sword_Magnum"), type: "Sword", - effect: 201, + effect: 208, configs: null, @@ -622,13 +622,13 @@ export default { FavoniusSword: { name: "FavoniusSword", internalName: "Sword_Zephyrus", - nameLocale: 1446, + nameLocale: 1464, star: 4, url: imageUrl("Sword_Zephyrus"), type: "Sword", - effect: 697, + effect: 708, configs: null, @@ -638,18 +638,18 @@ export default { CinnabarSpindle: { name: "CinnabarSpindle", internalName: "Sword_Opus", - nameLocale: 1535, + nameLocale: 1553, star: 4, url: imageUrl("Sword_Opus"), type: "Sword", - effect: 200, + effect: 207, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, ], @@ -658,18 +658,18 @@ export default { BlackcliffLongsword: { name: "BlackcliffLongsword", internalName: "Sword_Blackrock", - nameLocale: 1765, + nameLocale: 1786, star: 4, url: imageUrl("Sword_Blackrock"), type: "Sword", - effect: 277, + effect: 284, configs: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1433,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1451,"type":"float"}, ], @@ -678,18 +678,18 @@ export default { HarbingerOfDawn: { name: "HarbingerOfDawn", internalName: "Sword_Dawn", - nameLocale: 1759, + nameLocale: 1780, star: 3, url: imageUrl("Sword_Dawn"), type: "Sword", - effect: 1204, + effect: 1220, configs: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, ], @@ -698,13 +698,13 @@ export default { FilletBlade: { name: "FilletBlade", internalName: "Sword_Sashimi", - nameLocale: 355, + nameLocale: 362, star: 3, url: imageUrl("Sword_Sashimi"), type: "Sword", - effect: 692, + effect: 703, configs: null, @@ -714,18 +714,18 @@ export default { SkyriderSword: { name: "SkyriderSword", internalName: "Sword_Mitsurugi", - nameLocale: 1721, + nameLocale: 1742, star: 3, url: imageUrl("Sword_Mitsurugi"), type: "Sword", - effect: 740, + effect: 751, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, ], @@ -734,18 +734,18 @@ export default { DarkIronSword: { name: "DarkIronSword", internalName: "Sword_Darker", - nameLocale: 930, + nameLocale: 943, star: 3, url: imageUrl("Sword_Darker"), type: "Sword", - effect: 1471, + effect: 1489, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, ], @@ -754,18 +754,18 @@ export default { CoolSteel: { name: "CoolSteel", internalName: "Sword_Steel", - nameLocale: 260, + nameLocale: 267, star: 3, url: imageUrl("Sword_Steel"), type: "Sword", - effect: 536, + effect: 547, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, ], @@ -774,13 +774,13 @@ export default { TravelersHandySword: { name: "TravelersHandySword", internalName: "Sword_Traveler", - nameLocale: 749, + nameLocale: 760, star: 3, url: imageUrl("Sword_Traveler"), type: "Sword", - effect: 1404, + effect: 1420, configs: null, @@ -790,7 +790,7 @@ export default { SilverSword: { name: "SilverSword", internalName: "Sword_Silver", - nameLocale: 1610, + nameLocale: 1628, star: 2, url: imageUrl("Sword_Silver"), type: "Sword", @@ -804,7 +804,7 @@ export default { DullBlade: { name: "DullBlade", internalName: "Sword_Blunt", - nameLocale: 762, + nameLocale: 773, star: 1, url: imageUrl("Sword_Blunt"), type: "Sword", @@ -818,13 +818,13 @@ export default { HaranGeppakuFutsu: { name: "HaranGeppakuFutsu", internalName: "Sword_Amenoma", - nameLocale: 1038, + nameLocale: 1051, star: 5, url: imageUrl("Sword_Amenoma"), type: "Sword", - effect: 1400, + effect: 1416, configs: [ @@ -838,18 +838,18 @@ export default { CursedBlade: { name: "CursedBlade", internalName: "Sword_Youtou", - nameLocale: 1297, + nameLocale: 1313, star: 4, url: imageUrl("Sword_Youtou"), type: "Sword", - effect: 865, + effect: 877, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, ], @@ -858,7 +858,7 @@ export default { SapwoodBlade: { name: "SapwoodBlade", internalName: "Sword_Arakalari", - nameLocale: 330, + nameLocale: 337, star: 4, url: imageUrl("Sword_Arakalari"), type: "Sword", @@ -867,7 +867,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, ], @@ -876,18 +876,18 @@ export default { XiphosMoonlight: { name: "XiphosMoonlight", internalName: "Sword_Pleroma", - nameLocale: 1444, + nameLocale: 1462, star: 4, url: imageUrl("Sword_Pleroma"), type: "Sword", - effect: 1008, + effect: 1021, configs: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, ], @@ -896,18 +896,18 @@ export default { KeyOfKhajNisut: { name: "KeyOfKhajNisut", internalName: "Sword_Deshret", - nameLocale: 410, + nameLocale: 420, star: 5, url: imageUrl("Sword_Deshret"), type: "Sword", - effect: 1199, + effect: 1215, configs: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1433,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1451,"type":"float"}, ], @@ -916,18 +916,18 @@ export default { ToukabouShigure: { name: "ToukabouShigure", internalName: "Sword_Kasabouzu", - nameLocale: 84, + nameLocale: 89, star: 4, url: imageUrl("Sword_Kasabouzu"), type: "Sword", - effect: 691, + effect: 702, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, ], @@ -936,7 +936,7 @@ export default { LightOfFoliarIncision: { name: "LightOfFoliarIncision", internalName: "Sword_Ayus", - nameLocale: 1435, + nameLocale: 1453, star: 5, url: imageUrl("Sword_Ayus"), type: "Sword", @@ -945,7 +945,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, ], @@ -954,18 +954,18 @@ export default { WolfsGravestone: { name: "WolfsGravestone", internalName: "Claymore_Wolfmound", - nameLocale: 1136, + nameLocale: 1151, star: 5, url: imageUrl("Claymore_Wolfmound"), type: "Claymore", - effect: 687, + effect: 698, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, ], @@ -974,13 +974,13 @@ export default { SkywardPride: { name: "SkywardPride", internalName: "Claymore_Dvalin", - nameLocale: 463, + nameLocale: 473, star: 5, url: imageUrl("Claymore_Dvalin"), type: "Claymore", - effect: 1560, + effect: 1578, configs: null, @@ -990,20 +990,20 @@ export default { TheUnforged: { name: "TheUnforged", internalName: "Claymore_Kunwu", - nameLocale: 757, + nameLocale: 768, star: 5, url: imageUrl("Claymore_Kunwu"), type: "Claymore", - effect: 654, + effect: 665, configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1433,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1451,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":656,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":667,"type":"float"}, ], @@ -1012,18 +1012,18 @@ export default { SongOfBrokenPines: { name: "SongOfBrokenPines", internalName: "Claymore_Widsith", - nameLocale: 972, + nameLocale: 985, star: 5, url: imageUrl("Claymore_Widsith"), type: "Claymore", - effect: 1718, + effect: 1739, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, ], @@ -1032,13 +1032,13 @@ export default { RedhornStonethresher: { name: "RedhornStonethresher", internalName: "Claymore_Itadorimaru", - nameLocale: 1506, + nameLocale: 1524, star: 5, url: imageUrl("Claymore_Itadorimaru"), type: "Claymore", - effect: 1637, + effect: 1655, configs: null, @@ -1048,18 +1048,18 @@ export default { Akuoumaru: { name: "Akuoumaru", internalName: "Claymore_Maria", - nameLocale: 605, + nameLocale: 616, star: 4, url: imageUrl("Claymore_Maria"), type: "Claymore", - effect: 1620, + effect: 1638, configs: [ - {"default":40,"max":400,"min":40,"name":"energy","title":1625,"type":"int"}, + {"default":40,"max":400,"min":40,"name":"energy","title":1643,"type":"int"}, ], @@ -1068,13 +1068,13 @@ export default { RoyalGreatsword: { name: "RoyalGreatsword", internalName: "Claymore_Theocrat", - nameLocale: 521, + nameLocale: 532, star: 4, url: imageUrl("Claymore_Theocrat"), type: "Claymore", - effect: 696, + effect: 707, configs: null, @@ -1084,18 +1084,18 @@ export default { Whiteblind: { name: "Whiteblind", internalName: "Claymore_Exotic", - nameLocale: 1224, + nameLocale: 1240, star: 4, url: imageUrl("Claymore_Exotic"), type: "Claymore", - effect: 880, + effect: 892, configs: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1433,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1451,"type":"float"}, ], @@ -1104,18 +1104,18 @@ export default { TheBell: { name: "TheBell", internalName: "Claymore_Troupe", - nameLocale: 1600, + nameLocale: 1618, star: 4, url: imageUrl("Claymore_Troupe"), type: "Claymore", - effect: 335, + effect: 342, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, ], @@ -1124,13 +1124,13 @@ export default { SnowTombedStarsilver: { name: "SnowTombedStarsilver", internalName: "Claymore_Dragonfell", - nameLocale: 1658, + nameLocale: 1676, star: 4, url: imageUrl("Claymore_Dragonfell"), type: "Claymore", - effect: 866, + effect: 878, configs: null, @@ -1140,13 +1140,13 @@ export default { FavoniusGreatsword: { name: "FavoniusGreatsword", internalName: "Claymore_Zephyrus", - nameLocale: 1447, + nameLocale: 1465, star: 4, url: imageUrl("Claymore_Zephyrus"), type: "Claymore", - effect: 697, + effect: 708, configs: null, @@ -1156,13 +1156,13 @@ export default { KatsuragikiriNagamasa: { name: "KatsuragikiriNagamasa", internalName: "Claymore_Bakufu", - nameLocale: 992, + nameLocale: 1005, star: 4, url: imageUrl("Claymore_Bakufu"), type: "Claymore", - effect: 203, + effect: 210, configs: null, @@ -1172,13 +1172,13 @@ export default { SacrificialGreatsword: { name: "SacrificialGreatsword", internalName: "Claymore_Fossil", - nameLocale: 1283, + nameLocale: 1299, star: 4, url: imageUrl("Claymore_Fossil"), type: "Claymore", - effect: 199, + effect: 206, configs: null, @@ -1188,18 +1188,18 @@ export default { SerpentSpine: { name: "SerpentSpine", internalName: "Claymore_Kione", - nameLocale: 1423, + nameLocale: 1441, star: 4, url: imageUrl("Claymore_Kione"), type: "Claymore", - effect: 1458, + effect: 1476, configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1433,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1451,"type":"float"}, ], @@ -1208,18 +1208,18 @@ export default { BlackcliffSlasher: { name: "BlackcliffSlasher", internalName: "Claymore_Blackrock", - nameLocale: 1763, + nameLocale: 1784, star: 4, url: imageUrl("Claymore_Blackrock"), type: "Claymore", - effect: 277, + effect: 284, configs: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1433,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1451,"type":"float"}, ], @@ -1228,18 +1228,18 @@ export default { Rainslasher: { name: "Rainslasher", internalName: "Claymore_Perdue", - nameLocale: 1657, + nameLocale: 1675, star: 4, url: imageUrl("Claymore_Perdue"), type: "Claymore", - effect: 540, + effect: 551, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, ], @@ -1248,13 +1248,13 @@ export default { PrototypeArchaic: { name: "PrototypeArchaic", internalName: "Claymore_Proto", - nameLocale: 1478, + nameLocale: 1496, star: 4, url: imageUrl("Claymore_Proto"), type: "Claymore", - effect: 882, + effect: 894, configs: null, @@ -1264,13 +1264,13 @@ export default { LuxuriousSeaLord: { name: "LuxuriousSeaLord", internalName: "Claymore_MillenniaTuna", - nameLocale: 1430, + nameLocale: 1448, star: 4, url: imageUrl("Claymore_MillenniaTuna"), type: "Claymore", - effect: 207, + effect: 214, configs: null, @@ -1280,18 +1280,18 @@ export default { LithicBlade: { name: "LithicBlade", internalName: "Claymore_Lapis", - nameLocale: 312, + nameLocale: 319, star: 4, url: imageUrl("Claymore_Lapis"), type: "Claymore", - effect: 1623, + effect: 1641, configs: [ - {"default":0,"max":4,"min":0,"name":"liyue_count","title":1627,"type":"int"}, + {"default":0,"max":4,"min":0,"name":"liyue_count","title":1645,"type":"int"}, ], @@ -1300,18 +1300,18 @@ export default { SkyriderGreatsword: { name: "SkyriderGreatsword", internalName: "Claymore_Mitsurugi", - nameLocale: 1720, + nameLocale: 1741, star: 3, url: imageUrl("Claymore_Mitsurugi"), type: "Claymore", - effect: 881, + effect: 893, configs: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1433,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1451,"type":"float"}, ], @@ -1320,13 +1320,13 @@ export default { DebateClub: { name: "DebateClub", internalName: "Claymore_Reasoning", - nameLocale: 150, + nameLocale: 157, star: 3, url: imageUrl("Claymore_Reasoning"), type: "Claymore", - effect: 731, + effect: 742, configs: null, @@ -1336,18 +1336,18 @@ export default { BloodstainedGreatsword: { name: "BloodstainedGreatsword", internalName: "Claymore_Siegfry", - nameLocale: 1026, + nameLocale: 1039, star: 3, url: imageUrl("Claymore_Siegfry"), type: "Claymore", - effect: 542, + effect: 553, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, ], @@ -1356,13 +1356,13 @@ export default { WhiteIronGreatsword: { name: "WhiteIronGreatsword", internalName: "Claymore_Tin", - nameLocale: 1234, + nameLocale: 1250, star: 3, url: imageUrl("Claymore_Tin"), type: "Claymore", - effect: 279, + effect: 286, configs: null, @@ -1372,18 +1372,18 @@ export default { FerrousShadow: { name: "FerrousShadow", internalName: "Claymore_Glaive", - nameLocale: 1608, + nameLocale: 1626, star: 3, url: imageUrl("Claymore_Glaive"), type: "Claymore", - effect: 1195, + effect: 1211, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, ], @@ -1392,7 +1392,7 @@ export default { OldMercsPal: { name: "OldMercsPal", internalName: "Claymore_Oyaji", - nameLocale: 164, + nameLocale: 171, star: 2, url: imageUrl("Claymore_Oyaji"), type: "Claymore", @@ -1406,7 +1406,7 @@ export default { WasterGreatsword: { name: "WasterGreatsword", internalName: "Claymore_Aniki", - nameLocale: 1475, + nameLocale: 1493, star: 1, url: imageUrl("Claymore_Aniki"), type: "Claymore", @@ -1420,7 +1420,7 @@ export default { ForestRegalia: { name: "ForestRegalia", internalName: "Claymore_Arakalari", - nameLocale: 996, + nameLocale: 1009, star: 4, url: imageUrl("Claymore_Arakalari"), type: "Claymore", @@ -1429,7 +1429,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, ], @@ -1438,18 +1438,18 @@ export default { MakhairaAquamarine: { name: "MakhairaAquamarine", internalName: "Claymore_Pleroma", - nameLocale: 1153, + nameLocale: 1169, star: 4, url: imageUrl("Claymore_Pleroma"), type: "Claymore", - effect: 1007, + effect: 1020, configs: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, ], @@ -1458,20 +1458,20 @@ export default { BeaconOfTheReedSea: { name: "BeaconOfTheReedSea", internalName: "Claymore_Deshret", - nameLocale: 1365, + nameLocale: 1381, star: 5, url: imageUrl("Claymore_Deshret"), type: "Claymore", - effect: 193, + effect: 200, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate_atk","title":695,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate_atk","title":706,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate_hp","title":1205,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate_hp","title":1221,"type":"float"}, ], @@ -1480,18 +1480,18 @@ export default { MailedFlower: { name: "MailedFlower", internalName: "Claymore_Fleurfair", - nameLocale: 1726, + nameLocale: 1747, star: 4, url: imageUrl("Claymore_Fleurfair"), type: "Claymore", - effect: 194, + effect: 201, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":582,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":592,"type":"float"}, ], @@ -1500,18 +1500,18 @@ export default { EngulfingLightning: { name: "EngulfingLightning", internalName: "Pole_Narukami", - nameLocale: 1418, + nameLocale: 1436, star: 5, url: imageUrl("Pole_Narukami"), type: "Polearm", - effect: 690, + effect: 701, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, ], @@ -1520,13 +1520,13 @@ export default { SkywardSpine: { name: "SkywardSpine", internalName: "Pole_Dvalin", - nameLocale: 467, + nameLocale: 477, star: 5, url: imageUrl("Pole_Dvalin"), type: "Polearm", - effect: 937, + effect: 950, configs: null, @@ -1536,20 +1536,20 @@ export default { PrimordialJadeWingedSpear: { name: "PrimordialJadeWingedSpear", internalName: "Pole_Morax", - nameLocale: 388, + nameLocale: 397, star: 5, url: imageUrl("Pole_Morax"), type: "Polearm", - effect: 376, + effect: 383, configs: [ - {"default":0.0,"max":7.0,"min":0.0,"name":"stack","title":1433,"type":"float"}, + {"default":0.0,"max":7.0,"min":0.0,"name":"stack","title":1451,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"full_rate","title":1086,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"full_rate","title":1100,"type":"float"}, ], @@ -1558,20 +1558,20 @@ export default { CalamityQueller: { name: "CalamityQueller", internalName: "Pole_Santika", - nameLocale: 604, + nameLocale: 615, star: 5, url: imageUrl("Pole_Santika"), type: "Polearm", - effect: 1399, + effect: 1415, configs: [ {"default":6.0,"max":6.0,"min":0.0,"name":"stack","title":22,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"backend_rate","title":357,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"backend_rate","title":364,"type":"float"}, ], @@ -1580,18 +1580,18 @@ export default { StaffOfHoma: { name: "StaffOfHoma", internalName: "Pole_Homa", - nameLocale: 652, + nameLocale: 663, star: 5, url: imageUrl("Pole_Homa"), type: "Polearm", - effect: 1200, + effect: 1216, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"be50_rate","title":1193,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"be50_rate","title":1209,"type":"float"}, ], @@ -1600,20 +1600,20 @@ export default { VortexVanquisher: { name: "VortexVanquisher", internalName: "Pole_Kunwu", - nameLocale: 1495, + nameLocale: 1513, star: 5, url: imageUrl("Pole_Kunwu"), type: "Polearm", - effect: 654, + effect: 665, configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1433,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1451,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":656,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":667,"type":"float"}, ], @@ -1622,18 +1622,18 @@ export default { PrototypeStarglitter: { name: "PrototypeStarglitter", internalName: "Pole_Proto", - nameLocale: 1480, + nameLocale: 1498, star: 4, url: imageUrl("Pole_Proto"), type: "Polearm", - effect: 732, + effect: 743, configs: [ - {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1433,"type":"float"}, + {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1451,"type":"float"}, ], @@ -1642,18 +1642,18 @@ export default { LithicSpear: { name: "LithicSpear", internalName: "Pole_Lapis", - nameLocale: 315, + nameLocale: 322, star: 4, url: imageUrl("Pole_Lapis"), type: "Polearm", - effect: 1622, + effect: 1640, configs: [ - {"default":0,"max":4,"min":0,"name":"liyue_count","title":1627,"type":"int"}, + {"default":0,"max":4,"min":0,"name":"liyue_count","title":1645,"type":"int"}, ], @@ -1662,13 +1662,13 @@ export default { KitainCrossSpear: { name: "KitainCrossSpear", internalName: "Pole_Bakufu", - nameLocale: 392, + nameLocale: 401, star: 4, url: imageUrl("Pole_Bakufu"), type: "Polearm", - effect: 203, + effect: 210, configs: null, @@ -1684,7 +1684,7 @@ export default { type: "Polearm", - effect: 208, + effect: 215, configs: null, @@ -1694,13 +1694,13 @@ export default { FavoniusLance: { name: "FavoniusLance", internalName: "Pole_Zephyrus", - nameLocale: 1450, + nameLocale: 1468, star: 4, url: imageUrl("Pole_Zephyrus"), type: "Polearm", - effect: 697, + effect: 708, configs: null, @@ -1710,13 +1710,13 @@ export default { DragonspineSpear: { name: "DragonspineSpear", internalName: "Pole_Everfrost", - nameLocale: 1768, + nameLocale: 1789, star: 4, url: imageUrl("Pole_Everfrost"), type: "Polearm", - effect: 866, + effect: 878, configs: null, @@ -1726,18 +1726,18 @@ export default { DragonsBane: { name: "DragonsBane", internalName: "Pole_Stardust", - nameLocale: 309, + nameLocale: 316, star: 4, url: imageUrl("Pole_Stardust"), type: "Polearm", - effect: 538, + effect: 549, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, ], @@ -1746,18 +1746,18 @@ export default { Deathmatch: { name: "Deathmatch", internalName: "Pole_Gladiator", - nameLocale: 258, + nameLocale: 265, star: 4, url: imageUrl("Pole_Gladiator"), type: "Polearm", - effect: 1522, + effect: 1540, configs: [ - {"default":true,"name":"ge2","title":1521,"type":"bool"}, + {"default":true,"name":"ge2","title":1539,"type":"bool"}, ], @@ -1766,13 +1766,13 @@ export default { CrescentPike: { name: "CrescentPike", internalName: "Pole_Exotic", - nameLocale: 1046, + nameLocale: 1059, star: 4, url: imageUrl("Pole_Exotic"), type: "Polearm", - effect: 1401, + effect: 1417, configs: null, @@ -1782,18 +1782,18 @@ export default { BlackcliffPole: { name: "BlackcliffPole", internalName: "Pole_Blackrock", - nameLocale: 1761, + nameLocale: 1782, star: 4, url: imageUrl("Pole_Blackrock"), type: "Polearm", - effect: 278, + effect: 285, configs: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1433,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1451,"type":"float"}, ], @@ -1802,18 +1802,18 @@ export default { WavebreakersFin: { name: "WavebreakersFin", internalName: "Pole_Maria", - nameLocale: 724, + nameLocale: 735, star: 4, url: imageUrl("Pole_Maria"), type: "Polearm", - effect: 1620, + effect: 1638, configs: [ - {"default":40,"max":400,"min":40,"name":"energy","title":1625,"type":"int"}, + {"default":40,"max":400,"min":40,"name":"energy","title":1643,"type":"int"}, ], @@ -1822,13 +1822,13 @@ export default { RoyalSpear: { name: "RoyalSpear", internalName: "Pole_Theocrat", - nameLocale: 523, + nameLocale: 534, star: 4, url: imageUrl("Pole_Theocrat"), type: "Polearm", - effect: 696, + effect: 707, configs: null, @@ -1838,13 +1838,13 @@ export default { Halberd: { name: "Halberd", internalName: "Pole_Halberd", - nameLocale: 1606, + nameLocale: 1624, star: 3, url: imageUrl("Pole_Halberd"), type: "Polearm", - effect: 545, + effect: 556, configs: null, @@ -1854,18 +1854,18 @@ export default { BlackTassel: { name: "BlackTassel", internalName: "Pole_Noire", - nameLocale: 1766, + nameLocale: 1787, star: 3, url: imageUrl("Pole_Noire"), type: "Polearm", - effect: 535, + effect: 546, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, ], @@ -1874,13 +1874,13 @@ export default { WhiteTassel: { name: "WhiteTassel", internalName: "Pole_Ruby", - nameLocale: 1231, + nameLocale: 1247, star: 3, url: imageUrl("Pole_Ruby"), type: "Polearm", - effect: 887, + effect: 899, configs: null, @@ -1890,7 +1890,7 @@ export default { IronPoint: { name: "IronPoint", internalName: "Pole_Rod", - nameLocale: 1607, + nameLocale: 1625, star: 2, url: imageUrl("Pole_Rod"), type: "Polearm", @@ -1904,7 +1904,7 @@ export default { BeginnersProtector: { name: "BeginnersProtector", internalName: "Pole_Gewalt", - nameLocale: 726, + nameLocale: 737, star: 1, url: imageUrl("Pole_Gewalt"), type: "Polearm", @@ -1918,7 +1918,7 @@ export default { Moonpiercer: { name: "Moonpiercer", internalName: "Pole_Arakalari", - nameLocale: 1493, + nameLocale: 1511, star: 4, url: imageUrl("Pole_Arakalari"), type: "Polearm", @@ -1927,7 +1927,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, ], @@ -1936,18 +1936,18 @@ export default { MissiveWindspear: { name: "MissiveWindspear", internalName: "Pole_Windvane", - nameLocale: 1695, + nameLocale: 1716, star: 4, url: imageUrl("Pole_Windvane"), type: "Polearm", - effect: 1466, + effect: 1484, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, ], @@ -1956,18 +1956,18 @@ export default { StaffOfTheScarletSands: { name: "StaffOfTheScarletSands", internalName: "Pole_Deshret", - nameLocale: 1505, + nameLocale: 1523, star: 5, url: imageUrl("Pole_Deshret"), type: "Polearm", - effect: 428, + effect: 438, configs: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1433,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1451,"type":"float"}, ], @@ -1976,18 +1976,18 @@ export default { LostPrayerToTheSacredWinds: { name: "LostPrayerToTheSacredWinds", internalName: "Catalyst_Fourwinds", - nameLocale: 405, + nameLocale: 415, star: 5, url: imageUrl("Catalyst_Fourwinds"), type: "Catalyst", - effect: 1292, + effect: 1308, configs: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1433,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1451,"type":"float"}, ], @@ -1996,13 +1996,13 @@ export default { SkywardAtlas: { name: "SkywardAtlas", internalName: "Catalyst_Dvalin", - nameLocale: 465, + nameLocale: 475, star: 5, url: imageUrl("Catalyst_Dvalin"), type: "Catalyst", - effect: 177, + effect: 184, configs: null, @@ -2012,13 +2012,13 @@ export default { EverlastingMoonglow: { name: "EverlastingMoonglow", internalName: "Catalyst_Kaleido", - nameLocale: 83, + nameLocale: 88, star: 5, url: imageUrl("Catalyst_Kaleido"), type: "Catalyst", - effect: 1031, + effect: 1044, configs: null, @@ -2028,20 +2028,20 @@ export default { MemoryOfDust: { name: "MemoryOfDust", internalName: "Catalyst_Kunwu", - nameLocale: 553, + nameLocale: 564, star: 5, url: imageUrl("Catalyst_Kunwu"), type: "Catalyst", - effect: 654, + effect: 665, configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1433,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1451,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":656,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":667,"type":"float"}, ], @@ -2050,18 +2050,18 @@ export default { WindAndSong: { name: "WindAndSong", internalName: "Catalyst_Outlaw", - nameLocale: 928, + nameLocale: 941, star: 4, url: imageUrl("Catalyst_Outlaw"), type: "Catalyst", - effect: 878, + effect: 890, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, ], @@ -2070,22 +2070,22 @@ export default { TheWidsith: { name: "TheWidsith", internalName: "Catalyst_Troupe", - nameLocale: 1048, + nameLocale: 1061, star: 4, url: imageUrl("Catalyst_Troupe"), type: "Catalyst", - effect: 1459, + effect: 1477, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"t1_rate","title":529,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"t1_rate","title":540,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"t2_rate","title":389,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"t2_rate","title":398,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"t3_rate","title":1617,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"t3_rate","title":1635,"type":"float"}, ], @@ -2094,20 +2094,20 @@ export default { SolarPearl: { name: "SolarPearl", internalName: "Catalyst_Resurrection", - nameLocale: 308, + nameLocale: 315, star: 4, url: imageUrl("Catalyst_Resurrection"), type: "Catalyst", - effect: 875, + effect: 887, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":700,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":711,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":702,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":713,"type":"float"}, ], @@ -2116,13 +2116,13 @@ export default { SacrificialFragments: { name: "SacrificialFragments", internalName: "Catalyst_Fossil", - nameLocale: 1285, + nameLocale: 1301, star: 4, url: imageUrl("Catalyst_Fossil"), type: "Catalyst", - effect: 199, + effect: 206, configs: null, @@ -2132,13 +2132,13 @@ export default { RoyalGrimoire: { name: "RoyalGrimoire", internalName: "Catalyst_Theocrat", - nameLocale: 524, + nameLocale: 535, star: 4, url: imageUrl("Catalyst_Theocrat"), type: "Catalyst", - effect: 696, + effect: 707, configs: null, @@ -2148,13 +2148,13 @@ export default { PrototypeAmber: { name: "PrototypeAmber", internalName: "Catalyst_Proto", - nameLocale: 1482, + nameLocale: 1500, star: 4, url: imageUrl("Catalyst_Proto"), type: "Catalyst", - effect: 738, + effect: 749, configs: null, @@ -2164,18 +2164,18 @@ export default { MappaMare: { name: "MappaMare", internalName: "Catalyst_Exotic", - nameLocale: 65, + nameLocale: 67, star: 4, url: imageUrl("Catalyst_Exotic"), type: "Catalyst", - effect: 1467, + effect: 1485, configs: [ - {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1433,"type":"float"}, + {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1451,"type":"float"}, ], @@ -2184,13 +2184,13 @@ export default { HakushinRing: { name: "HakushinRing", internalName: "Catalyst_Bakufu", - nameLocale: 1232, + nameLocale: 1248, star: 4, url: imageUrl("Catalyst_Bakufu"), type: "Catalyst", - effect: 1443, + effect: 1461, configs: null, @@ -2200,13 +2200,13 @@ export default { Frostbearer: { name: "Frostbearer", internalName: "Catalyst_Everfrost", - nameLocale: 600, + nameLocale: 611, star: 4, url: imageUrl("Catalyst_Everfrost"), type: "Catalyst", - effect: 866, + effect: 878, configs: null, @@ -2216,13 +2216,13 @@ export default { FavoniusCodex: { name: "FavoniusCodex", internalName: "Catalyst_Zephyrus", - nameLocale: 1449, + nameLocale: 1467, star: 4, url: imageUrl("Catalyst_Zephyrus"), type: "Catalyst", - effect: 697, + effect: 708, configs: null, @@ -2232,13 +2232,13 @@ export default { EyeOfPerception: { name: "EyeOfPerception", internalName: "Catalyst_Truelens", - nameLocale: 776, + nameLocale: 787, star: 4, url: imageUrl("Catalyst_Truelens"), type: "Catalyst", - effect: 868, + effect: 880, configs: null, @@ -2248,20 +2248,20 @@ export default { DodocoTales: { name: "DodocoTales", internalName: "Catalyst_Ludiharpastum", - nameLocale: 395, + nameLocale: 404, star: 4, url: imageUrl("Catalyst_Ludiharpastum"), type: "Catalyst", - effect: 877, + effect: 889, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":700,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":711,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":702,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":713,"type":"float"}, ], @@ -2270,18 +2270,18 @@ export default { BlackcliffAgate: { name: "BlackcliffAgate", internalName: "Catalyst_Blackrock", - nameLocale: 1764, + nameLocale: 1785, star: 4, url: imageUrl("Catalyst_Blackrock"), type: "Catalyst", - effect: 278, + effect: 285, configs: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1433,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1451,"type":"float"}, ], @@ -2290,20 +2290,20 @@ export default { KagurasVerity: { name: "KagurasVerity", internalName: "Catalyst_Narukami", - nameLocale: 1258, + nameLocale: 1274, star: 5, url: imageUrl("Catalyst_Narukami"), type: "Catalyst", - effect: 736, + effect: 747, configs: [ - {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1433,"type":"float"}, + {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1451,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"full_rate","title":1085,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"full_rate","title":1099,"type":"float"}, ], @@ -2312,18 +2312,18 @@ export default { OathswornEye: { name: "OathswornEye", internalName: "Catalyst_Jyanome", - nameLocale: 1476, + nameLocale: 1494, star: 4, url: imageUrl("Catalyst_Jyanome"), type: "Catalyst", - effect: 729, + effect: 740, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, ], @@ -2332,18 +2332,18 @@ export default { MagicGuide: { name: "MagicGuide", internalName: "Catalyst_Intro", - nameLocale: 1745, + nameLocale: 1766, star: 3, url: imageUrl("Catalyst_Intro"), type: "Catalyst", - effect: 539, + effect: 550, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, ], @@ -2352,13 +2352,13 @@ export default { OtherworldlyStory: { name: "OtherworldlyStory", internalName: "Catalyst_Lightnov", - nameLocale: 586, + nameLocale: 597, star: 3, url: imageUrl("Catalyst_Lightnov"), type: "Catalyst", - effect: 1402, + effect: 1418, configs: null, @@ -2368,18 +2368,18 @@ export default { EmeraldOrb: { name: "EmeraldOrb", internalName: "Catalyst_Jade", - nameLocale: 1346, + nameLocale: 1362, star: 3, url: imageUrl("Catalyst_Jade"), type: "Catalyst", - effect: 1470, + effect: 1488, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, ], @@ -2388,13 +2388,13 @@ export default { ThrillingTalesOfDragonSlayers: { name: "ThrillingTalesOfDragonSlayers", internalName: "Catalyst_Pulpfic", - nameLocale: 1473, + nameLocale: 1491, star: 3, url: imageUrl("Catalyst_Pulpfic"), type: "Catalyst", - effect: 87, + effect: 92, configs: null, @@ -2404,18 +2404,18 @@ export default { TwinNephrite: { name: "TwinNephrite", internalName: "Catalyst_Phoney", - nameLocale: 1209, + nameLocale: 1225, star: 3, url: imageUrl("Catalyst_Phoney"), type: "Catalyst", - effect: 276, + effect: 283, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, ], @@ -2424,7 +2424,7 @@ export default { PocketGrimoire: { name: "PocketGrimoire", internalName: "Catalyst_Pocket", - nameLocale: 344, + nameLocale: 351, star: 2, url: imageUrl("Catalyst_Pocket"), type: "Catalyst", @@ -2438,7 +2438,7 @@ export default { ApprenticesNotes: { name: "ApprenticesNotes", internalName: "Catalyst_Apprentice", - nameLocale: 508, + nameLocale: 519, star: 1, url: imageUrl("Catalyst_Apprentice"), type: "Catalyst", @@ -2452,7 +2452,7 @@ export default { FruitOfFulfillment: { name: "FruitOfFulfillment", internalName: "Catalyst_Arakalari", - nameLocale: 1235, + nameLocale: 1251, star: 4, url: imageUrl("Catalyst_Arakalari"), type: "Catalyst", @@ -2461,7 +2461,7 @@ export default { configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1433,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1451,"type":"float"}, ], @@ -2470,18 +2470,18 @@ export default { WanderingEvenstar: { name: "WanderingEvenstar", internalName: "Catalyst_Pleroma", - nameLocale: 1050, + nameLocale: 1063, star: 4, url: imageUrl("Catalyst_Pleroma"), type: "Catalyst", - effect: 1007, + effect: 1020, configs: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, ], @@ -2490,20 +2490,20 @@ export default { AThousandFloatingDreams: { name: "AThousandFloatingDreams", internalName: "Catalyst_Ayus", - nameLocale: 311, + nameLocale: 318, star: 5, url: imageUrl("Catalyst_Ayus"), type: "Catalyst", - effect: 1621, + effect: 1639, configs: [ - {"default":1,"max":3,"min":0,"name":"same_count","title":356,"type":"int"}, + {"default":1,"max":3,"min":0,"name":"same_count","title":363,"type":"int"}, - {"default":2,"max":3,"min":0,"name":"diff_count","title":82,"type":"int"}, + {"default":2,"max":3,"min":0,"name":"diff_count","title":86,"type":"int"}, ], @@ -2512,18 +2512,18 @@ export default { TulaytullahsRemembrance: { name: "TulaytullahsRemembrance", internalName: "Catalyst_Alaya", - nameLocale: 406, + nameLocale: 416, star: 5, url: imageUrl("Catalyst_Alaya"), type: "Catalyst", - effect: 885, + effect: 897, configs: [ - {"default":7.0,"max":10.0,"min":0.0,"name":"stack","title":1433,"type":"float"}, + {"default":7.0,"max":10.0,"min":0.0,"name":"stack","title":1451,"type":"float"}, ], @@ -2532,18 +2532,18 @@ export default { JadeFallsSplendor: { name: "JadeFallsSplendor", internalName: "Catalyst_Morax", - nameLocale: 1253, + nameLocale: 1269, star: 5, url: imageUrl("Catalyst_Morax"), type: "Catalyst", - effect: 744, + effect: 755, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, ], @@ -2552,13 +2552,13 @@ export default { PolarStar: { name: "PolarStar", internalName: "Bow_Worldbane", - nameLocale: 245, + nameLocale: 252, star: 5, url: imageUrl("Bow_Worldbane"), type: "Bow", - effect: 195, + effect: 202, configs: [ @@ -2572,13 +2572,13 @@ export default { ThunderingPulse: { name: "ThunderingPulse", internalName: "Bow_Narukami", - nameLocale: 1723, + nameLocale: 1744, star: 5, url: imageUrl("Bow_Narukami"), type: "Bow", - effect: 685, + effect: 696, configs: [ @@ -2592,18 +2592,18 @@ export default { ElegyOfTheEnd: { name: "ElegyOfTheEnd", internalName: "Bow_Widsith", - nameLocale: 1317, + nameLocale: 1333, star: 5, url: imageUrl("Bow_Widsith"), type: "Bow", - effect: 1717, + effect: 1738, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, ], @@ -2612,13 +2612,13 @@ export default { SkywardHarp: { name: "SkywardHarp", internalName: "Bow_Dvalin", - nameLocale: 466, + nameLocale: 476, star: 5, url: imageUrl("Bow_Dvalin"), type: "Bow", - effect: 932, + effect: 945, configs: null, @@ -2628,18 +2628,18 @@ export default { AmosBow: { name: "AmosBow", internalName: "Bow_Amos", - nameLocale: 1641, + nameLocale: 1659, star: 5, url: imageUrl("Bow_Amos"), type: "Bow", - effect: 872, + effect: 884, configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1433,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1451,"type":"float"}, ], @@ -2648,18 +2648,18 @@ export default { AlleyHunter: { name: "AlleyHunter", internalName: "Bow_Outlaw", - nameLocale: 927, + nameLocale: 940, star: 4, url: imageUrl("Bow_Outlaw"), type: "Bow", - effect: 1431, + effect: 1449, configs: [ - {"default":0.0,"max":10.0,"min":0.0,"name":"stack","title":1433,"type":"float"}, + {"default":0.0,"max":10.0,"min":0.0,"name":"stack","title":1451,"type":"float"}, ], @@ -2668,13 +2668,13 @@ export default { TheViridescentHunt: { name: "TheViridescentHunt", internalName: "Bow_Viridescent", - nameLocale: 1370, + nameLocale: 1386, star: 4, url: imageUrl("Bow_Viridescent"), type: "Bow", - effect: 869, + effect: 881, configs: null, @@ -2684,13 +2684,13 @@ export default { TheStringless: { name: "TheStringless", internalName: "Bow_Troupe", - nameLocale: 1322, + nameLocale: 1338, star: 4, url: imageUrl("Bow_Troupe"), type: "Bow", - effect: 187, + effect: 194, configs: null, @@ -2700,13 +2700,13 @@ export default { SacrificialBow: { name: "SacrificialBow", internalName: "Bow_Fossil", - nameLocale: 1284, + nameLocale: 1300, star: 4, url: imageUrl("Bow_Fossil"), type: "Bow", - effect: 199, + effect: 206, configs: null, @@ -2716,13 +2716,13 @@ export default { Rust: { name: "Rust", internalName: "Bow_Recluse", - nameLocale: 588, + nameLocale: 599, star: 4, url: imageUrl("Bow_Recluse"), type: "Bow", - effect: 888, + effect: 900, configs: null, @@ -2732,13 +2732,13 @@ export default { RoyalBow: { name: "RoyalBow", internalName: "Bow_Theocrat", - nameLocale: 527, + nameLocale: 538, star: 4, url: imageUrl("Bow_Theocrat"), type: "Bow", - effect: 696, + effect: 707, configs: null, @@ -2748,7 +2748,7 @@ export default { Predator: { name: "Predator", internalName: "Bow_Predator", - nameLocale: 672, + nameLocale: 683, star: 4, url: imageUrl("Bow_Predator"), type: "Bow", @@ -2759,7 +2759,7 @@ export default { configs: [ - {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1433,"type":"float"}, + {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1451,"type":"float"}, ], @@ -2768,18 +2768,18 @@ export default { PrototypeCrescent: { name: "PrototypeCrescent", internalName: "Bow_Proto", - nameLocale: 1481, + nameLocale: 1499, star: 4, url: imageUrl("Bow_Proto"), type: "Bow", - effect: 1594, + effect: 1612, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, ], @@ -2788,18 +2788,18 @@ export default { MouunsMoon: { name: "MouunsMoon", internalName: "Bow_Maria", - nameLocale: 943, + nameLocale: 956, star: 4, url: imageUrl("Bow_Maria"), type: "Bow", - effect: 1620, + effect: 1638, configs: [ - {"default":40,"max":400,"min":40,"name":"energy","title":1625,"type":"int"}, + {"default":40,"max":400,"min":40,"name":"energy","title":1643,"type":"int"}, ], @@ -2808,20 +2808,20 @@ export default { MitternachtsWaltz: { name: "MitternachtsWaltz", internalName: "Bow_Nachtblind", - nameLocale: 578, + nameLocale: 589, star: 4, url: imageUrl("Bow_Nachtblind"), type: "Bow", - effect: 876, + effect: 888, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":700,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":711,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":702,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":713,"type":"float"}, ], @@ -2830,18 +2830,18 @@ export default { Hamayumi: { name: "Hamayumi", internalName: "Bow_Bakufu", - nameLocale: 1252, + nameLocale: 1268, star: 4, url: imageUrl("Bow_Bakufu"), type: "Bow", - effect: 886, + effect: 898, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, ], @@ -2850,13 +2850,13 @@ export default { FavoniusWarbow: { name: "FavoniusWarbow", internalName: "Bow_Zephyrus", - nameLocale: 1448, + nameLocale: 1466, star: 4, url: imageUrl("Bow_Zephyrus"), type: "Bow", - effect: 697, + effect: 708, configs: null, @@ -2866,18 +2866,18 @@ export default { CompoundBow: { name: "CompoundBow", internalName: "Bow_Exotic", - nameLocale: 1605, + nameLocale: 1623, star: 4, url: imageUrl("Bow_Exotic"), type: "Bow", - effect: 867, + effect: 879, configs: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1433,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1451,"type":"float"}, ], @@ -2886,18 +2886,18 @@ export default { BlackcliffWarbow: { name: "BlackcliffWarbow", internalName: "Bow_Blackrock", - nameLocale: 1762, + nameLocale: 1783, star: 4, url: imageUrl("Bow_Blackrock"), type: "Bow", - effect: 278, + effect: 285, configs: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1433,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1451,"type":"float"}, ], @@ -2906,18 +2906,18 @@ export default { WindblumeOde: { name: "WindblumeOde", internalName: "Bow_Fleurfair", - nameLocale: 1703, + nameLocale: 1724, star: 4, url: imageUrl("Bow_Fleurfair"), type: "Bow", - effect: 737, + effect: 748, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, ], @@ -2926,18 +2926,18 @@ export default { RavenBow: { name: "RavenBow", internalName: "Bow_Crowfeather", - nameLocale: 1750, + nameLocale: 1771, star: 3, url: imageUrl("Bow_Crowfeather"), type: "Bow", - effect: 537, + effect: 548, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, ], @@ -2946,13 +2946,13 @@ export default { RecurveBow: { name: "RecurveBow", internalName: "Bow_Curve", - nameLocale: 332, + nameLocale: 339, star: 3, url: imageUrl("Bow_Curve"), type: "Bow", - effect: 279, + effect: 286, configs: null, @@ -2962,13 +2962,13 @@ export default { Messenger: { name: "Messenger", internalName: "Bow_Msg", - nameLocale: 174, + nameLocale: 181, star: 3, url: imageUrl("Bow_Msg"), type: "Bow", - effect: 1595, + effect: 1613, configs: null, @@ -2978,18 +2978,18 @@ export default { SharpshootersOath: { name: "SharpshootersOath", internalName: "Bow_Arjuna", - nameLocale: 1261, + nameLocale: 1277, star: 3, url: imageUrl("Bow_Arjuna"), type: "Bow", - effect: 1599, + effect: 1617, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, ], @@ -2998,20 +2998,20 @@ export default { Slingshot: { name: "Slingshot", internalName: "Bow_Sling", - nameLocale: 589, + nameLocale: 600, star: 3, url: imageUrl("Bow_Sling"), type: "Bow", - effect: 870, + effect: 882, configs: [ {"default":true,"name":"is_effect","title":1,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, ], @@ -3020,7 +3020,7 @@ export default { SeasonedHuntersBow: { name: "SeasonedHuntersBow", internalName: "Bow_Old", - nameLocale: 328, + nameLocale: 335, star: 2, url: imageUrl("Bow_Old"), type: "Bow", @@ -3034,7 +3034,7 @@ export default { HuntersBow: { name: "HuntersBow", internalName: "Bow_Hunters", - nameLocale: 1144, + nameLocale: 1159, star: 1, url: imageUrl("Bow_Hunters"), type: "Bow", @@ -3048,18 +3048,18 @@ export default { AquaSimulacra: { name: "AquaSimulacra", internalName: "Bow_Kirin", - nameLocale: 1372, + nameLocale: 1388, star: 5, url: imageUrl("Bow_Kirin"), type: "Bow", - effect: 1198, + effect: 1214, configs: [ - {"default":true,"name":"is_enemy_around","title":375,"type":"bool"}, + {"default":true,"name":"is_enemy_around","title":382,"type":"bool"}, ], @@ -3068,18 +3068,18 @@ export default { FadingTwilight: { name: "FadingTwilight", internalName: "Bow_Fallensun", - nameLocale: 1412, + nameLocale: 1430, star: 4, url: imageUrl("Bow_Fallensun"), type: "Bow", - effect: 237, + effect: 244, configs: [ - {"default":2,"name":"state","options":["夕暮","流霞","朝晖"],"title":1133,"type":"option"}, + {"default":2,"name":"state","options":["夕暮","流霞","朝晖"],"title":1148,"type":"option"}, ], @@ -3088,18 +3088,18 @@ export default { HuntersPath: { name: "HuntersPath", internalName: "Bow_Ayus", - nameLocale: 1142, + nameLocale: 1157, star: 5, url: imageUrl("Bow_Ayus"), type: "Bow", - effect: 1397, + effect: 1413, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, ], @@ -3108,13 +3108,13 @@ export default { Trawler: { name: "Trawler", internalName: "Bow_Fin", - nameLocale: 1295, + nameLocale: 1311, star: 4, url: imageUrl("Bow_Fin"), type: "Bow", - effect: 730, + effect: 741, configs: null, @@ -3124,7 +3124,7 @@ export default { KingsSquire: { name: "KingsSquire", internalName: "Bow_Arakalari", - nameLocale: 1152, + nameLocale: 1168, star: 4, url: imageUrl("Bow_Arakalari"), type: "Bow", @@ -3133,7 +3133,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1432,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1450,"type":"float"}, ], @@ -3142,18 +3142,18 @@ export default { IbisPiercer: { name: "IbisPiercer", internalName: "Bow_Ibis", - nameLocale: 1751, + nameLocale: 1772, star: 4, url: imageUrl("Bow_Ibis"), type: "Bow", - effect: 1588, + effect: 1606, configs: [ - {"default":2.0,"max":2.0,"min":0.0,"name":"stack","title":554,"type":"float"}, + {"default":2.0,"max":2.0,"min":0.0,"name":"stack","title":565,"type":"float"}, ], diff --git a/src/i18n/generated/en.json b/src/i18n/generated/en.json index a509bc69..4aa781f8 100644 --- a/src/i18n/generated/en.json +++ b/src/i18n/generated/en.json @@ -57,8 +57,10 @@ "Charge Level 1 DMG", "Charge Level 1 DMG-1", "Charge Level 1 DMG-2", - "Level 1 Aimed Shot", "Aimed Shot Charge Level 1", + "Level 1 Aimed Shot", + "Level 1 Shattering Pressure DMG (Cryo)", + "Level 1 Shattering Pressure DMG (Physical)", "Qiqi", "Qiqi-Icy Resurrection", "Dance of Haftkarsvar", @@ -70,18 +72,21 @@ "3-Hit DMG", "3-Hit DMG-1", "3-Hit DMG-2", - "2-Hit DMG/2", "3-Hit DMG/2", + "2-Hit DMG/2", "C6 Additional 3", "3-Hit Swing DMG", "Shunsuiken 3-Hit DMG", + "Level 3 Shattering Pressure DMG (Cryo)", + "Level 3 Shattering Pressure DMG (Physical)", + "Upward Thrust DMG", "Plunge DMG", "Muji-Muji Daruma DMG", "Muji-Muji Daruma Healing", "Fudou Style Vacuum Slugger DMG", "Mask of Solitude Basalt", - "Different Element Count", "Diff Element Count", + "Different Element Count", "Everlasting Moonglow", "Toukabou Shigure", "E Triggered Count Within a Cycle", @@ -122,6 +127,8 @@ "Charge Level 2 DMG", "Charge Level 2 DMG-1", "Charge Level 2 DMG-2", + "Level 2 Shattering Pressure DMG (Cryo)", + "Level 2 Shattering Pressure DMG (Physical)", "Raphanus Sky Cluster", "Yunjin", "Yunjin-「Myriad Mise-En-Scène」", @@ -209,8 +216,8 @@ "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.", @@ -386,6 +393,8 @@ "C2 Rate", "C4「Elucidation」Stack", "C4「Winsome」Ratio", + "C4「Dance of the Snowy Moon and Flute」Stack", + "C6「Moment of Waking and Resolve」Stack", "C6「Structuration」Ratio", "Primordial Jade Winged-Spear", "「Aria」Ratio", @@ -404,6 +413,7 @@ "4-Hit DMG/2", "4-Hit DMG/3", "4-Hit DMG/4", + "Level 4 Shattering Pressure DMG", "Lost Prayer to the Sacred Winds", "Tulaytullah's Remembrance", "Sacred Rite: Wagtail’s Tide", @@ -428,8 +438,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」", @@ -478,6 +488,7 @@ "Talent 「A Craftsman's Curious Conceptions」 Stack", "Talent 「Sophisticated Synergy」 Element Counts", "Talent 「Sophisticated Synergy」 Ratio", + "Talent「Parallel Condensers」Rate", "Talent「Aristocratic Dignity」Apply Ratio", "Talent「Keen Sight」Ratio", "Talent「Tricks of the Trouble-Maker」Apply Ratio", @@ -580,9 +591,9 @@ "Mitternachts Waltz", "Use C4", "Use Talent「Regina Probationum」", - "Apply Ratio", "Equivalent Rate of Effect", "Rate", + "Apply Ratio", "Niwabi Enshou", "Opening a chest regenerates 30% Max HP over 5s.", "Otherworldly Story", @@ -662,11 +673,11 @@ "When picked up, the Leaf will grant the character 60 Elemental Mastery for 12s", "When picked up, the Leaf will grant the character 16% ATK for 12s", "DoT", - "Continuous Regeneration Per Sec", "Continuous Regeneration", + "Continuous Regeneration Per Sec", "HP Regeneration Over Time", - "Continuous Healing", "Continuous Regeneration", + "Continuous Healing", "Conductor's Top Hat", "DPS Yae Miko", "Swing DMG", @@ -821,6 +832,7 @@ "Normal Attack: Cutting Torrent", "Normal Attack: Schematic Setup", "Normal Attack: Whisper of Water", + "Normal Attack: Flowing Eddies", "Normal Attack: Liutian Archery", "Normal Attack: Gleaming Spear – Guardian Stance", "Normal Attack: Tempered Sword", @@ -918,6 +930,7 @@ "Physical DPS Razor", "DPS Ganyu", "DPS Mona", + "Normal DPS Freminet", "DPS Noelle", "DPS Tartaglia", "DPS Diluc", @@ -1053,6 +1066,7 @@ "Wanderer", "Wanderer-Eons Adrift", "Surging Blade DMG", + "Pressurized Floe", "Flowing Rings", "Dance of Abzendegi: Distant Dreams, Listening Spring", "Nereid's Ascension", @@ -1100,6 +1114,7 @@ "Stamen of Khvarena's Origin", "Spirit Blade: Cloud-Parting Star", "Spirit Blade: Chonghua's Layered Frost", + "Spiritbreath Thorn DMG", "Spiritvein DMG", "Brilliance", "Leonine Bite", @@ -1144,6 +1159,7 @@ "Hunter's Path", "Viridescent Arrow Feather", "Hunter's Bow", + "Shadowhunter's Ambush", "Icy Paw DMG", "Icy Paws", "Trump-Card Kitty", @@ -1406,6 +1422,8 @@ "Each Elemental Orb or Particle collected restores 1%-1.25%-1.5%-1.75%-2% HP.", "获得结晶反应形成的晶片时,队伍中所有角色获得35%对应元素伤害加成,持续10秒。", "Upon obtaining an Elemental Shard created through a Crystallize Reaction, all party members gain a 35% DMG Bonus for that particular element for 10s. Only one form of Elemental DMG Bonus can be gained in this manner at any one time.", + "Freminet", + "Freminet-Yearning for Unseen Depths", "Fischl", "Fischl-Prinzessin der Verurteilung", "Lingering Lifeline", @@ -1576,14 +1594,14 @@ "Charged Attack-4 Scarlet Seals", "Charged Attack-No Scarlet Seals", "Charged Attack DMG", + "Charnged DMG-1", + "Charged Attack DMG-1", "Charged DMG-1", "Charged Attack-1", - "Charged Attack DMG-1", - "Charnged DMG-1", + "Charged DMG-2", "Charged Attack-2", - "Charged Attack DMG-2", "Charnged DMG-2", - "Charged DMG-2", + "Charged Attack DMG-2", "Charnged DMG-3", "Charged Attack DMG/3", "Charged Attack DMG(With talent)", @@ -1658,6 +1676,7 @@ "Omen of Thunderstorm", "Rainslasher", "Snow-Tombed Starsilver", + "Level 0 Shattering Pressure DMG", "Electro Sigil Count", "Storm Cage", "Electro DMG", @@ -1684,6 +1703,8 @@ "Mistsplitter Reforged", "Frostflake Arrow Bloom DMG", "Frostflake Arrow DMG", + "Frost DMG", + "Frost DMG (x2)", "Flowfrost Arrow DMG", "Frostgnaw", "Bane of All Evil", diff --git a/src/i18n/generated/zh-cn.json b/src/i18n/generated/zh-cn.json index 7288e189..875edaf6 100644 --- a/src/i18n/generated/zh-cn.json +++ b/src/i18n/generated/zh-cn.json @@ -59,6 +59,8 @@ "一段蓄力伤害-2", "一段蓄力瞄准射击", "一段蓄力瞄准射击", + "一阶高压粉碎伤害(冰)", + "一阶高压粉碎伤害(物理)", "七七", "七七-冻冻回魂夜", "七域舞步", @@ -75,6 +77,9 @@ "三段六命额外", "三段挥舞伤害", "三段瞬水剑伤害", + "三阶高压粉碎伤害(冰)", + "三阶高压粉碎伤害(物理)", + "上挑攻击伤害", "下坠期间伤害", "不倒貉貉伤害", "不倒貉貉治疗量", @@ -122,6 +127,8 @@ "二段蓄力伤害", "二段蓄力伤害-1", "二段蓄力伤害-2", + "二阶高压粉碎伤害(冰)", + "二阶高压粉碎伤害(物理)", "云台团团降芦菔", "云堇", "云堇-「诸般切末」", @@ -386,6 +393,8 @@ "命座2比例", "命座4「义贯」层数", "命座4「爰爰可亲」比例", + "命座4「雪月与芦笛之舞」层数", + "命座6「梦晓与决意之刻」层数", "命座6「正理」比例", "和璞鸢", "咏叹调比例", @@ -404,6 +413,7 @@ "四段伤害/2", "四段伤害/3", "四段伤害/4", + "四阶高压粉碎伤害", "四风原典", "图莱杜拉的回忆", "圣仪·灰鸰衒潮", @@ -478,6 +488,7 @@ "天赋「工艺家的奇想」层数", "天赋「巧施协同」不同元素类型", "天赋「巧施协同」比例", + "天赋「并流式冷凝机关」比例", "天赋「玉衡之贵」应用比例", "天赋「眼识殊明」应用比例", "天赋「袖火百景图」应用层数", @@ -821,6 +832,7 @@ "普通攻击·断雨", "普通攻击·旋规设矩", "普通攻击·水之浅唱", + "普通攻击·洑流剑", "普通攻击·流天射术", "普通攻击·流耀枪术·守势", "普通攻击·淬炼之剑", @@ -918,6 +930,7 @@ "普通输出物理雷泽", "普通输出甘雨", "普通输出莫娜", + "普通输出菲米尼,考虑物伤和冰伤", "普通输出诺艾尔", "普通输出达达利鸭", "普通输出迪卢克", @@ -1053,6 +1066,7 @@ "流浪者", "流浪者-久世浮倾", "流涌之刃伤害", + "浮冰增压", "浮溯之珏", "浮莲舞步·远梦聆泉", "海人化羽", @@ -1100,6 +1114,7 @@ "灵光源起之蕊", "灵刃·云开星落", "灵刃·重华叠霜", + "灵息之刺伤害", "灵气脉技能伤害", "灼灼", "炎啸狮子咬", @@ -1144,6 +1159,7 @@ "猎人之径", "猎人青翠的箭羽", "猎弓", + "猎影潜袭", "猫爪伤害", "猫爪冻冻", "猫猫秘宝", @@ -1406,6 +1422,8 @@ "获得元素晶球或元素微粒时,恢复1%-1.25%-1.5%-1.75%-2%生命值。", "获得结晶反应形成的晶片时,队伍中所有角色获得35%对应元素伤害加成,持续10秒。", "获得结晶反应形成的晶片时,队伍中所有角色获得35%对应元素伤害加成,持续10秒。同时只能通过该效果获得一种元素伤害加成。", + "菲米尼", + "菲米尼-潜怀遐梦", "菲谢尔", "菲谢尔-断罪皇女!!", "萦络纵命索", @@ -1658,6 +1676,7 @@ "降雷的凶兆", "雨裁", "雪葬的星银", + "零阶高压粉碎伤害", "雷之印层数", "雷云之笼", "雷伤", @@ -1684,6 +1703,8 @@ "雾切之回光", "霜华矢·霜华绽发伤害", "霜华矢命中伤害", + "霜寒伤害", + "霜寒伤害(x2)", "霜流矢伤害", "霜袭", "靖妖傩舞", diff --git a/src/images/characters/Freminet_splash.png b/src/images/characters/Freminet_splash.png new file mode 100644 index 0000000000000000000000000000000000000000..803ea73444c5a4fdd8acce44c77ba217cc84b42e GIT binary patch literal 55182 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