From 93235049d59e3715c817f9896ef7a459d2e55daa Mon Sep 17 00:00:00 2001 From: wormtql <584130248@qq.com> Date: Sun, 5 Nov 2023 16:29:24 +0800 Subject: [PATCH 1/4] feat: Add Charlotte and some weapons --- mona_core/src/character/character_config.rs | 3 +- mona_core/src/character/character_name.rs | 1 + .../character/characters/cryo/charlotte.rs | 282 ++++++++++++++++++ .../src/character/characters/cryo/mod.rs | 2 + mona_core/src/weapon/weapon_config.rs | 1 + mona_core/src/weapon/weapon_name.rs | 2 + mona_core/src/weapon/weapons/swords/mod.rs | 4 + .../swords/splendor_of_tranquil_waters.rs | 79 +++++ .../weapons/swords/sword_of_narzissenkreuz.rs | 37 +++ 9 files changed, 410 insertions(+), 1 deletion(-) create mode 100644 mona_core/src/character/characters/cryo/charlotte.rs create mode 100644 mona_core/src/weapon/weapons/swords/splendor_of_tranquil_waters.rs create mode 100644 mona_core/src/weapon/weapons/swords/sword_of_narzissenkreuz.rs diff --git a/mona_core/src/character/character_config.rs b/mona_core/src/character/character_config.rs index ed829b0d..99397e8e 100644 --- a/mona_core/src/character/character_config.rs +++ b/mona_core/src/character/character_config.rs @@ -29,5 +29,6 @@ pub enum CharacterConfig { Lyney { c2_stack: f64, c4_rate: f64 }, Neuvillette { current_hp: usize }, Wriothesley { talent2_stack: f64 }, + Charlotte { talent2_fontaine_count: usize, talent2_non_fontaine_count: usize, c2_count: usize, c2_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 3f596f92..5fa067a8 100644 --- a/mona_core/src/character/character_name.rs +++ b/mona_core/src/character/character_name.rs @@ -37,6 +37,7 @@ pub enum CharacterName { Beidou, Bennett, Candace, + Charlotte, Chongyun, Collei, Cyno, diff --git a/mona_core/src/character/characters/cryo/charlotte.rs b/mona_core/src/character/characters/cryo/charlotte.rs new file mode 100644 index 00000000..f4b2eedc --- /dev/null +++ b/mona_core/src/character/characters/cryo/charlotte.rs @@ -0,0 +1,282 @@ +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 CharlotteSkillType { + pub normal_dmg1: [f64; 15], + pub normal_dmg2: [f64; 15], + pub normal_dmg3: [f64; 15], + pub charged_dmg1: [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_dmg3: [f64; 15], + pub e_dmg4: [f64; 15], + + pub q_heal1: [f64; 15], + pub q_heal1_fixed: [f64; 15], + pub q_dmg1: [f64; 15], + pub q_heal2: [f64; 15], + pub q_heal2_fixed: [f64; 15], + pub q_dmg2: [f64; 15], +} + +pub const CHARLOTTE_SKILL: CharlotteSkillType = CharlotteSkillType { + normal_dmg1: [0.4985, 0.5358, 0.5732, 0.6231, 0.6605, 0.6978, 0.7477, 0.7975, 0.8474, 0.8972, 0.9471, 0.9969, 1.0592, 1.1215, 1.1838], + normal_dmg2: [0.4338, 0.4663, 0.4988, 0.5422, 0.5747, 0.6073, 0.6506, 0.694, 0.7374, 0.7808, 0.8241, 0.8675, 0.9217, 0.9759, 1.0302], + normal_dmg3: [0.646, 0.6945, 0.7429, 0.8075, 0.856, 0.9044, 0.969, 1.0336, 1.0982, 1.1628, 1.2274, 1.292, 1.3728, 1.4535, 1.5343], + charged_dmg1: [1.0051, 1.0805, 1.1559, 1.2564, 1.3318, 1.4072, 1.5077, 1.6082, 1.7087, 1.8092, 1.9097, 2.0102, 2.1359, 2.2615, 2.3872], + 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], + // [0.1117, 0.1201, 0.1284, 0.1396, 0.148, 0.1564, 0.1675, 0.1787, 0.1899, 0.201, 0.2122, 0.2234, 0.2373, 0.2513, 0.2652], + e_dmg1: [0.672, 0.7224, 0.7728, 0.84, 0.8904, 0.9408, 1.008, 1.0752, 1.1424, 1.2096, 1.2768, 1.344, 1.428, 1.512, 1.596], + e_dmg2: [1.392, 1.4964, 1.6008, 1.74, 1.8444, 1.9488, 2.088, 2.2272, 2.3664, 2.5056, 2.6448, 2.784, 2.958, 3.132, 3.306], + e_dmg3: [0.392, 0.4214, 0.4508, 0.49, 0.5194, 0.5488, 0.588, 0.6272, 0.6664, 0.7056, 0.7448, 0.784, 0.833, 0.882, 0.931], + e_dmg4: [0.406, 0.4365, 0.4669, 0.5075, 0.5379, 0.5684, 0.609, 0.6496, 0.6902, 0.7308, 0.7714, 0.812, 0.8627, 0.9135, 0.9643], + q_heal1: [2.5657, 2.7582, 2.9506, 3.2072, 3.3996, 3.592, 3.8486, 4.1052, 4.3617, 4.6183, 4.8749, 5.1315, 5.4522, 5.7729, 6.0936], + q_heal1_fixed: [1608.49, 1769.36, 1943.63, 2131.32, 2332.41, 2546.9, 2774.8, 3016.11, 3270.82, 3538.94, 3820.46, 4115.39, 4423.73, 4745.47, 5080.62], + q_dmg1: [0.7762, 0.8344, 0.8926, 0.9702, 1.0284, 1.0866, 1.1642, 1.2419, 1.3195, 1.3971, 1.4747, 1.5523, 1.6493, 1.7464, 1.8434], + q_heal2: [0.0922, 0.0991, 0.106, 0.1152, 0.1221, 0.129, 0.1382, 0.1475, 0.1567, 0.1659, 0.1751, 0.1843, 0.1958, 0.2074, 0.2189], + q_heal2_fixed: [57.45, 63.19, 69.42, 76.12, 83.3, 90.96, 99.1, 107.72, 116.82, 126.39, 136.45, 146.98, 157.99, 169.48, 181.45], + q_dmg2: [0.0647, 0.0695, 0.0744, 0.0808, 0.0857, 0.0906, 0.097, 0.1035, 0.11, 0.1164, 0.1229, 0.1294, 0.1374, 0.1455, 0.1536], +}; + +damage_enum!( + CharlotteDamageEnum + Normal1 + Normal2 + Normal3 + Charged + Plunging1 + Plunging2 + Plunging3 + E1 + E2 + E3 + E4 + Q1 + QHeal1 + Q2 + QHeal2 +); + +impl CharlotteDamageEnum { + pub fn get_skill_type(&self) -> SkillType { + use CharlotteDamageEnum::*; + match *self { + Normal1 | Normal2 | Normal3 => SkillType::NormalAttack, + Charged => SkillType::ChargedAttack, + Plunging1 | Plunging2 | Plunging3 => SkillType::PlungingAttack, + E1 | E2 | E3 | E4 => SkillType::ElementalSkill, + QHeal1 | QHeal2 | Q1 | Q2 => SkillType::ElementalBurst + } + } + + pub fn is_heal(&self) -> bool { + use CharlotteDamageEnum::*; + match *self { + QHeal1 | QHeal2 => true, + _ => false + } + } +} + +pub struct CharlotteEffect { + pub talent2_fontaine_count: usize, + pub talent2_non_fontaine_count: usize, + pub c2_count: usize, + pub c2_rate: f64, +} + +impl ChangeAttribute for CharlotteEffect { + fn change_attribute(&self, attribute: &mut A) { + attribute.set_value_by(AttributeName::HealingBonus, "天赋「多样性调查」", 0.05 * (self.talent2_fontaine_count as f64)); + attribute.set_value_by(AttributeName::BonusCryo, "天赋「多样性调查」", 0.05 * (self.talent2_non_fontaine_count as f64)); + attribute.add_atk_percentage("C2「以求真为职守」", (0.1 * self.c2_count as f64) * self.c2_rate); + } +} + +pub struct Charlotte; + +impl CharacterTrait for Charlotte { + const STATIC_DATA: CharacterStaticData = CharacterStaticData { + name: CharacterName::Charlotte, + internal_name: "Charlotte", + name_locale: locale!( + zh_cn: "夏洛蒂", + en: "Charlotte" + ), + element: Element::Cryo, + hp: [903, 2319, 2993, 4484, 4963, 5708, 6347, 7093, 7572, 8317, 8796, 9541, 10021, 10766], + atk: [15, 37, 48, 72, 80, 92, 102, 114, 122, 134, 141, 153, 161, 173], + def: [46, 118, 152, 227, 252, 290, 322, 360, 384, 422, 446, 484, 508, 546], + sub_stat: CharacterSubStatFamily::ATK240, + weapon_type: WeaponType::Catalyst, + star: 4, + skill_name1: locale!( + zh_cn: "普通攻击·冷色摄影律", + en: "Normal Attack: Cool-Color Capture", + ), + skill_name2: locale!( + zh_cn: "取景·冰点构图法", + en: "Framing: Freezing Point Composition" + ), + skill_name3: locale!( + zh_cn: "定格·全方位确证", + en: "Still Photo: Comprehensive Confirmation" + ) + }; + type SkillType = CharlotteSkillType; + const SKILL: Self::SkillType = CHARLOTTE_SKILL; + type DamageEnumType = CharlotteDamageEnum; + type RoleEnum = (); + + #[cfg(not(target_family = "wasm"))] + const SKILL_MAP: CharacterSkillMap = CharacterSkillMap { + skill1: skill_map!( + CharlotteDamageEnum + Normal1 hit_n_dmg!(1) + Normal2 hit_n_dmg!(2) + Normal3 hit_n_dmg!(3) + Charged charged_dmg!() + Plunging1 plunging_dmg!(1) + Plunging2 plunging_dmg!(2) + Plunging3 plunging_dmg!(3) + ), + skill2: skill_map!( + CharlotteDamageEnum + E1 locale!(zh_cn: "点按拍照伤害", en: "Photo DMG (Press)") + E2 locale!(zh_cn: "长按拍照伤害", en: "Photo DMG (Hold)") + E3 locale!(zh_cn: "「瞬时剪影」印记伤害", en: "\"Snappy Silhouette\" Mark DMG") + E4 locale!(zh_cn: "「聚焦印象」印记伤害", en: "\"Focused Impression\" Mark DMG") + ), + skill3: skill_map!( + CharlotteDamageEnum + Q1 locale!(zh_cn: "技能伤害", en: "Skill DMG") + Q2 locale!(zh_cn: "相机伤害", en: "Kamera DMG") + QHeal1 locale!(zh_cn: "施放治疗量", en: "Cast Healing") + QHeal2 locale!(zh_cn: "相机持续治疗量", en: "Kamera Continuous Regeneration") + ) + }; + + #[cfg(not(target_family = "wasm"))] + const CONFIG_DATA: Option<&'static [ItemConfig]> = Some(&[ + ItemConfig { + name: "talent2_fontaine_count", + title: locale!( + zh_cn: "枫丹角色数量", + en: "Fontaine Character Count" + ), + config: ItemConfigType::Int { min: 0, max: 3, default: 1 }, + }, + ItemConfig { + name: "talent2_non_fontaine_count", + title: locale!( + zh_cn: "非枫丹角色数量", + en: "Non-Fontaine Character Count", + ), + config: ItemConfigType::Int { min: 0, max: 3, default: 1 } + }, + ItemConfig { + name: "c2_count", + title: locale!( + zh_cn: "「温亨廷先生」命中数量", + en: "Monsieur Verite Hit Count" + ), + config: ItemConfigType::Int { min: 0, max: 3, default: 0 } + }, + ItemConfig { + name: "c2_rate", + title: locale!( + zh_cn: "C2比例", + en: "C2 Ratio" + ), + 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: CharlotteDamageEnum = num::FromPrimitive::from_usize(s).unwrap(); + let (s1, s2, s3) = context.character_common_data.get_3_skill(); + + use CharlotteDamageEnum::*; + let mut builder = D::new(); + + if s.is_heal() { + let ratio = match s { + QHeal1 => CHARLOTTE_SKILL.q_heal1[s3], + QHeal2 => CHARLOTTE_SKILL.q_heal2[s3], + _ => 0.0 + }; + let fixed = match s { + QHeal1 => CHARLOTTE_SKILL.q_heal1_fixed[s3], + QHeal2 => CHARLOTTE_SKILL.q_heal2_fixed[s3], + _ => 0.0 + }; + builder.add_atk_ratio("技能倍率", ratio); + builder.add_extra_damage("技能倍率", fixed); + builder.heal(&context.attribute) + } else { + let ratio = match s { + Normal1 => CHARLOTTE_SKILL.normal_dmg1[s1], + Normal2 => CHARLOTTE_SKILL.normal_dmg2[s1], + Normal3 => CHARLOTTE_SKILL.normal_dmg3[s1], + Charged => CHARLOTTE_SKILL.charged_dmg1[s1], + Plunging1 => CHARLOTTE_SKILL.plunging_dmg1[s1], + Plunging2 => CHARLOTTE_SKILL.plunging_dmg2[s1], + Plunging3 => CHARLOTTE_SKILL.plunging_dmg3[s1], + E1 => CHARLOTTE_SKILL.e_dmg1[s2], + E2 => CHARLOTTE_SKILL.e_dmg2[s2], + E3 => CHARLOTTE_SKILL.e_dmg3[s2], + E4 => CHARLOTTE_SKILL.e_dmg4[s2], + Q1 => CHARLOTTE_SKILL.q_dmg1[s3], + Q2 => CHARLOTTE_SKILL.q_dmg2[s3], + _ => 0.0 + }; + + builder.add_atk_ratio("技能倍率", ratio); + builder.damage( + &context.attribute, + &context.enemy, + Element::Cryo, + s.get_skill_type(), + context.character_common_data.level, + fumo + ) + } + } + + fn new_effect(common_data: &CharacterCommonData, config: &CharacterConfig) -> Option>> { + match *config { + CharacterConfig::Charlotte { talent2_fontaine_count, talent2_non_fontaine_count, c2_count, c2_rate } => { + Some(Box::new(CharlotteEffect { + talent2_fontaine_count, + talent2_non_fontaine_count, + c2_count, + c2_rate + })) + }, + _ => None + } + } + + 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/cryo/mod.rs b/mona_core/src/character/characters/cryo/mod.rs index 83cc95af..c1166b23 100644 --- a/mona_core/src/character/characters/cryo/mod.rs +++ b/mona_core/src/character/characters/cryo/mod.rs @@ -12,6 +12,7 @@ pub mod layla; pub mod mika; pub mod freminet; pub mod wriothesley; +pub mod charlotte; pub use aloy::Aloy; pub use chongyun::Chongyun; @@ -27,3 +28,4 @@ pub use layla::Layla; pub use mika::Mika; pub use freminet::Freminet; pub use wriothesley::Wriothesley; +pub use charlotte::Charlotte; diff --git a/mona_core/src/weapon/weapon_config.rs b/mona_core/src/weapon/weapon_config.rs index a8cc82c6..1eb82967 100644 --- a/mona_core/src/weapon/weapon_config.rs +++ b/mona_core/src/weapon/weapon_config.rs @@ -29,6 +29,7 @@ pub enum WeaponConfig { FinaleOfTheDeep { rate1: f64, rate2: f64 }, FleuveCendreFerryman { rate: f64 }, TheDockhandsAssistant { stack: f64 }, + SplendorOfTranquilWaters { stack1: f64, stack2: f64 }, // claymore WolfsGravestone { rate: f64 }, diff --git a/mona_core/src/weapon/weapon_name.rs b/mona_core/src/weapon/weapon_name.rs index ce8f7015..3e81d9d0 100644 --- a/mona_core/src/weapon/weapon_name.rs +++ b/mona_core/src/weapon/weapon_name.rs @@ -52,6 +52,8 @@ pub enum WeaponName { FinaleOfTheDeep, FleuveCendreFerryman, TheDockhandsAssistant, + SwordOfNarzissenkreuz, + SplendorOfTranquilWaters, // claymore WolfsGravestone, diff --git a/mona_core/src/weapon/weapons/swords/mod.rs b/mona_core/src/weapon/weapons/swords/mod.rs index 41e270e3..ca527187 100644 --- a/mona_core/src/weapon/weapons/swords/mod.rs +++ b/mona_core/src/weapon/weapons/swords/mod.rs @@ -37,6 +37,8 @@ pub use wolf_fang::WolfFang; pub use finale_of_the_deep::FinaleOfTheDeep; pub use fleuve_cendre_ferryman::FleuveCendreFerryman; pub use the_dockhands_assistant::TheDockhandsAssistant; +pub use sword_of_narzissenkreuz::SwordOfNarzissenkreuz; +pub use splendor_of_tranquil_waters::SplendorOfTranquilWaters; pub mod mistsplitter_reforged; pub mod aquila_favonia; @@ -77,3 +79,5 @@ pub mod wolf_fang; pub mod finale_of_the_deep; pub mod fleuve_cendre_ferryman; pub mod the_dockhands_assistant; +pub mod sword_of_narzissenkreuz; +pub mod splendor_of_tranquil_waters; diff --git a/mona_core/src/weapon/weapons/swords/splendor_of_tranquil_waters.rs b/mona_core/src/weapon/weapons/swords/splendor_of_tranquil_waters.rs new file mode 100644 index 00000000..2b2c1b6a --- /dev/null +++ b/mona_core/src/weapon/weapons/swords/splendor_of_tranquil_waters.rs @@ -0,0 +1,79 @@ +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 SplendorOfTranquilWatersEffect { + pub stack1: f64, + pub stack2: f64 +} + +impl WeaponEffect for SplendorOfTranquilWatersEffect { + fn apply(&self, data: &WeaponCommonData, attribute: &mut A) { + let refine = data.refine as f64; + attribute.set_value_by(AttributeName::BonusElementalSkill, "静水流涌之辉被动", ((0.02 * refine) + 0.06) * self.stack1); + attribute.add_hp_percentage("静水流涌之辉被动", (0.035 * refine + 0.105) * self.stack2); + } +} + +pub struct SplendorOfTranquilWaters; + +impl WeaponTrait for SplendorOfTranquilWaters { + const META_DATA: WeaponStaticData = WeaponStaticData { + name: WeaponName::SplendorOfTranquilWaters, + internal_name: "Sword_Regalis", + weapon_type: WeaponType::Sword, + weapon_sub_stat: Some(WeaponSubStatFamily::CriticalDamage192), + weapon_base: WeaponBaseATKFamily::ATK542, + star: 5, + #[cfg(not(target_family = "wasm"))] + effect: Some(locale!( + zh_cn: "装备者的当前生命值提升或降低时,元素战技造成的伤害提升8%-10%-12%-14%-16%,该效果持续6秒,至多叠加3次,每0.2秒至多触发一次;队伍中其他角色的当前生命值提升或降低时,装备者的生命值上限提升14%-17.5%-21%-24.5%-28%,该效果持续6秒,至多叠加2次,每0.2秒至多触发一次。装备者处于队伍后台时,依然能触发上述效果。", + en: "When the equipping character's current HP increases or decreases, Elemental Skill DMG dealt will be increased by 8%-10%-12%-14%-16% for 6s. Max 3 stacks. This effect can be triggered once every 0.2s. When other party members' current HP increases or decreases, the equipping character's Max HP will be increased by 14%-17.5%-21%-24.5%-28% for 6s. Max 2 stacks. This effect can be triggered once every 0.2s, and can be triggered even if the wielder is off-field." + )), + #[cfg(not(target_family = "wasm"))] + name_locale: locale!( + zh_cn: "静水流涌之辉", + en: "Splendor of Tranquil Waters" + ) + }; + + #[cfg(not(target_family = "wasm"))] + const CONFIG_DATA: Option<&'static [ItemConfig]> = Some(&[ + ItemConfig { + name: "stack1", + title: locale!( + zh_cn: "被动1层数", + en: "Stack 1", + ), + config: ItemConfigType::Float { min: 0.0, max: 3.0, default: 2.0 }, + }, + ItemConfig { + name: "stack2", + title: locale!( + zh_cn: "被动2层数", + en: "Stack 2" + ), + config: ItemConfigType::Float { min: 0.0, max: 2.0, default: 2.0 } + } + ]); + + fn get_effect(character: &CharacterCommonData, config: &WeaponConfig) -> Option>> { + let (s1, s2) = match *config { + WeaponConfig::SplendorOfTranquilWaters { stack1, stack2 } => (stack1, stack2), + _ => (0.0, 0.0) + }; + Some(Box::new(SplendorOfTranquilWatersEffect { + stack1: s1, + stack2: s2 + })) + } +} diff --git a/mona_core/src/weapon/weapons/swords/sword_of_narzissenkreuz.rs b/mona_core/src/weapon/weapons/swords/sword_of_narzissenkreuz.rs new file mode 100644 index 00000000..0a7bfb02 --- /dev/null +++ b/mona_core/src/weapon/weapons/swords/sword_of_narzissenkreuz.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 SwordOfNarzissenkreuz; + +impl WeaponTrait for SwordOfNarzissenkreuz { + const META_DATA: WeaponStaticData = WeaponStaticData { + name: WeaponName::SwordOfNarzissenkreuz, + internal_name: "Sword_Purewill", + weapon_type: WeaponType::Sword, + weapon_sub_stat: Some(WeaponSubStatFamily::ATK90), + weapon_base: WeaponBaseATKFamily::ATK510, + star: 4, + #[cfg(not(target_family = "wasm"))] + effect: Some(locale!( + zh_cn: "装备者不具备「始基力」时:普通攻击、重击、下落攻击命中时,会释放芒性或荒性的能量冲击,造成160%-200%-240%-280%-320%攻击力的伤害。该效果每12秒至多触发一次,能量冲击的类型由水仙十字之剑当前的属性决定。", + en: "When the equipping character does not have an Arkhe: When Normal Attacks, Charged Attacks, or Plunging Attacks strike, a Pneuma or Ousia energy blast will be unleashed, dealing 160%-200%-240%-280%-320% of ATK as DMG. This effect can be triggered once every 12s. The energy blast type is determined by the current type of the Sword of Narzissenkreuz." + )), + #[cfg(not(target_family = "wasm"))] + name_locale: locale!( + zh_cn: "水仙十字之剑", + en: "Sword of Narzissenkreuz" + ) + }; + + fn get_effect(character: &CharacterCommonData, config: &WeaponConfig) -> Option>> { + None + } +} From 855d7dbfed0f2a273fd294ddd73cda25fe51d26e Mon Sep 17 00:00:00 2001 From: wormtql <584130248@qq.com> Date: Sun, 5 Nov 2023 17:09:16 +0800 Subject: [PATCH 2/4] feat: Charlotte --- rust-toolchain.toml | 2 +- src/assets/_gen_artifact.js | 782 +++--- src/assets/_gen_buff.js | 592 ++-- src/assets/_gen_character.js | 2964 ++++++++++---------- src/assets/_gen_pf.js | 40 +- src/assets/_gen_tf.js | 538 ++-- src/assets/_gen_weapon.js | 958 ++++--- src/i18n/generated/en.json | 73 +- src/i18n/generated/zh-cn.json | 21 + src/images/characters/Charlotte_splash.png | Bin 0 -> 42713 bytes 10 files changed, 3063 insertions(+), 2907 deletions(-) create mode 100644 src/images/characters/Charlotte_splash.png diff --git a/rust-toolchain.toml b/rust-toolchain.toml index 9108d52f..3b62fadb 100644 --- a/rust-toolchain.toml +++ b/rust-toolchain.toml @@ -1,4 +1,4 @@ [toolchain] -channel = "nightly-2022-05-19" +channel = "nightly" # components = ["rustc", "cargo"] targets = ["wasm32-unknown-unknown", "x86_64-unknown-linux-gnu"] diff --git a/src/assets/_gen_artifact.js b/src/assets/_gen_artifact.js index 3910fd5b..9a7393a9 100644 --- a/src/assets/_gen_artifact.js +++ b/src/assets/_gen_artifact.js @@ -7,46 +7,46 @@ export default { "adventurer": { eng: "adventurer", name2: "Adventurer", - nameLocale: 258, + nameLocale: 262, minStar: 1, maxStar: 3, - effect2: 1264, + effect2: 1276, - effect4: 620, + effect4: 627, flower: { - text: 259, + text: 263, url: getIcon("UI_RelicIcon_10010_4") }, feather: { - text: 261, + text: 265, url: getIcon("UI_RelicIcon_10010_2") }, sand: { - text: 262, + text: 266, url: getIcon("UI_RelicIcon_10010_5") }, cup: { - text: 263, + text: 267, url: getIcon("UI_RelicIcon_10010_1") }, head: { - text: 260, + text: 264, url: getIcon("UI_RelicIcon_10010_3") }, @@ -58,54 +58,54 @@ export default { "archaicPetra": { eng: "archaicPetra", name2: "ArchaicPetra", - nameLocale: 646, + nameLocale: 653, minStar: 4, maxStar: 5, - effect2: 1474, + effect2: 1488, - effect4: 1489, + effect4: 1503, flower: { - text: 1331, + text: 1345, url: getIcon("UI_RelicIcon_15014_4") }, feather: { - text: 595, + text: 602, url: getIcon("UI_RelicIcon_15014_2") }, sand: { - text: 821, + text: 829, url: getIcon("UI_RelicIcon_15014_5") }, cup: { - text: 596, + text: 603, url: getIcon("UI_RelicIcon_15014_1") }, head: { - text: 90, + text: 94, url: getIcon("UI_RelicIcon_15014_3") }, config4: [ - {"default":"Electro","name":"element","title":189,"type":"element4"}, + {"default":"Electro","name":"element","title":193,"type":"element4"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":749,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":756,"type":"float"}, ], }, @@ -113,52 +113,52 @@ export default { "berserker": { eng: "berserker", name2: "Berserker", - nameLocale: 653, + nameLocale: 660, minStar: 3, maxStar: 4, - effect2: 994, + effect2: 1003, - effect4: 1268, + effect4: 1280, flower: { - text: 656, + text: 663, url: getIcon("UI_RelicIcon_10005_4") }, feather: { - text: 655, + text: 662, url: getIcon("UI_RelicIcon_10005_2") }, sand: { - text: 654, + text: 661, url: getIcon("UI_RelicIcon_10005_5") }, cup: { - text: 657, + text: 664, url: getIcon("UI_RelicIcon_10005_1") }, head: { - text: 658, + text: 665, url: getIcon("UI_RelicIcon_10005_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":749,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":756,"type":"float"}, ], }, @@ -166,52 +166,52 @@ export default { "blizzardStrayer": { eng: "blizzardStrayer", name2: "BlizzardStrayer", - nameLocale: 277, + nameLocale: 281, minStar: 4, maxStar: 5, - effect2: 1473, + effect2: 1487, - effect4: 736, + effect4: 743, flower: { - text: 350, + text: 354, url: getIcon("UI_RelicIcon_14001_4") }, feather: { - text: 718, + text: 725, url: getIcon("UI_RelicIcon_14001_2") }, sand: { - text: 276, + text: 280, url: getIcon("UI_RelicIcon_14001_5") }, cup: { - text: 1655, + text: 1673, url: getIcon("UI_RelicIcon_14001_1") }, head: { - text: 1325, + text: 1339, url: getIcon("UI_RelicIcon_14001_3") }, config4: [ - {"default":0.0,"max":0.4,"min":0.0,"name":"critical_bonus","title":1376,"type":"float"}, + {"default":0.0,"max":0.4,"min":0.0,"name":"critical_bonus","title":1390,"type":"float"}, ], }, @@ -219,52 +219,52 @@ export default { "bloodstainedChivalry": { eng: "bloodstainedChivalry", name2: "BloodstainedChivalry", - nameLocale: 1045, + nameLocale: 1055, minStar: 4, maxStar: 5, - effect2: 1652, + effect2: 1669, - effect4: 295, + effect4: 299, flower: { - text: 1043, + text: 1053, url: getIcon("UI_RelicIcon_15008_4") }, feather: { - text: 1046, + text: 1056, url: getIcon("UI_RelicIcon_15008_2") }, sand: { - text: 1844, + text: 1865, url: getIcon("UI_RelicIcon_15008_5") }, cup: { - text: 1047, + text: 1057, url: getIcon("UI_RelicIcon_15008_1") }, head: { - text: 1044, + text: 1054, url: getIcon("UI_RelicIcon_15008_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":749,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":756,"type":"float"}, ], }, @@ -272,52 +272,52 @@ export default { "braveHeart": { eng: "braveHeart", name2: "BraveHeart", - nameLocale: 315, + nameLocale: 319, minStar: 3, maxStar: 4, - effect2: 726, + effect2: 733, - effect4: 580, + effect4: 587, flower: { - text: 317, + text: 321, url: getIcon("UI_RelicIcon_10002_4") }, feather: { - text: 320, + text: 324, url: getIcon("UI_RelicIcon_10002_2") }, sand: { - text: 318, + text: 322, url: getIcon("UI_RelicIcon_10002_5") }, cup: { - text: 319, + text: 323, url: getIcon("UI_RelicIcon_10002_1") }, head: { - text: 316, + text: 320, url: getIcon("UI_RelicIcon_10002_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":749,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":756,"type":"float"}, ], }, @@ -325,52 +325,52 @@ export default { "crimsonWitch": { eng: "crimsonWitch", name2: "CrimsonWitchOfFlames", - nameLocale: 1180, + nameLocale: 1192, minStar: 4, maxStar: 5, - effect2: 1476, + effect2: 1490, - effect4: 1600, + effect4: 1618, flower: { - text: 1852, + text: 1873, url: getIcon("UI_RelicIcon_15006_4") }, feather: { - text: 1850, + text: 1871, url: getIcon("UI_RelicIcon_15006_2") }, sand: { - text: 1853, + text: 1874, url: getIcon("UI_RelicIcon_15006_5") }, cup: { - text: 1851, + text: 1872, url: getIcon("UI_RelicIcon_15006_1") }, head: { - text: 1189, + text: 1201, url: getIcon("UI_RelicIcon_15006_3") }, config4: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"level","title":750,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"level","title":757,"type":"float"}, ], }, @@ -378,52 +378,52 @@ export default { "DeepwoodMemories": { eng: "DeepwoodMemories", name2: "DeepwoodMemories", - nameLocale: 1129, + nameLocale: 1140, minStar: 4, maxStar: 5, - effect2: 1477, + effect2: 1491, - effect4: 211, + effect4: 216, flower: { - text: 1640, + text: 1658, url: getIcon("UI_RelicIcon_15025_4") }, feather: { - text: 1423, + text: 1437, url: getIcon("UI_RelicIcon_15025_2") }, sand: { - text: 1581, + text: 1599, url: getIcon("UI_RelicIcon_15025_5") }, cup: { - text: 1641, + text: 1659, url: getIcon("UI_RelicIcon_15025_1") }, head: { - text: 1020, + text: 1029, url: getIcon("UI_RelicIcon_15025_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":749,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":756,"type":"float"}, ], }, @@ -431,46 +431,46 @@ export default { "defenderWill": { eng: "defenderWill", name2: "DefendersWill", - nameLocale: 543, + nameLocale: 549, minStar: 3, maxStar: 4, - effect2: 1739, + effect2: 1758, - effect4: 1731, + effect4: 1750, flower: { - text: 545, + text: 551, url: getIcon("UI_RelicIcon_10003_4") }, feather: { - text: 547, + text: 553, url: getIcon("UI_RelicIcon_10003_2") }, sand: { - text: 546, + text: 552, url: getIcon("UI_RelicIcon_10003_5") }, cup: { - text: 544, + text: 550, url: getIcon("UI_RelicIcon_10003_1") }, head: { - text: 548, + text: 554, url: getIcon("UI_RelicIcon_10003_3") }, @@ -482,52 +482,52 @@ export default { "EchoesOfAnOffering": { eng: "EchoesOfAnOffering", name2: "EchoesOfAnOffering", - nameLocale: 1029, + nameLocale: 1038, minStar: 4, maxStar: 5, - effect2: 726, + effect2: 733, - effect4: 932, + effect4: 941, flower: { - text: 1847, + text: 1868, url: getIcon("UI_RelicIcon_15024_4") }, feather: { - text: 451, + text: 456, url: getIcon("UI_RelicIcon_15024_2") }, sand: { - text: 1334, + text: 1348, url: getIcon("UI_RelicIcon_15024_5") }, cup: { - text: 1128, + text: 1139, url: getIcon("UI_RelicIcon_15024_1") }, head: { - text: 1120, + text: 1131, url: getIcon("UI_RelicIcon_15024_3") }, config4: [ - {"default":0.5053283764473575,"max":1.0,"min":0.0,"name":"rate","title":600,"type":"float"}, + {"default":0.5053283764473575,"max":1.0,"min":0.0,"name":"rate","title":607,"type":"float"}, ], }, @@ -535,46 +535,46 @@ export default { "emblemOfSeveredFate": { eng: "emblemOfSeveredFate", name2: "EmblemOfSeveredFate", - nameLocale: 1401, + nameLocale: 1415, minStar: 4, maxStar: 5, - effect2: 192, + effect2: 196, - effect4: 457, + effect4: 462, flower: { - text: 813, + text: 821, url: getIcon("UI_RelicIcon_15020_4") }, feather: { - text: 302, + text: 306, url: getIcon("UI_RelicIcon_15020_2") }, sand: { - text: 1766, + text: 1785, url: getIcon("UI_RelicIcon_15020_5") }, cup: { - text: 1404, + text: 1418, url: getIcon("UI_RelicIcon_15020_1") }, head: { - text: 339, + text: 343, url: getIcon("UI_RelicIcon_15020_3") }, @@ -586,52 +586,52 @@ export default { "FlowerOfParadiseLost": { eng: "FlowerOfParadiseLost", name2: "FlowerOfParadiseLost", - nameLocale: 106, + nameLocale: 110, minStar: 4, maxStar: 5, - effect2: 232, + effect2: 235, - effect4: 1529, + effect4: 1547, flower: { - text: 1019, + text: 1028, url: getIcon("UI_RelicIcon_15028_4") }, feather: { - text: 1579, + text: 1597, url: getIcon("UI_RelicIcon_15028_2") }, sand: { - text: 290, + text: 294, url: getIcon("UI_RelicIcon_15028_5") }, cup: { - text: 549, + text: 555, url: getIcon("UI_RelicIcon_15028_1") }, head: { - text: 1386, + text: 1400, url: getIcon("UI_RelicIcon_15028_3") }, config4: [ - {"default":4.0,"max":4.0,"min":0.0,"name":"stack","title":750,"type":"float"}, + {"default":4.0,"max":4.0,"min":0.0,"name":"stack","title":757,"type":"float"}, ], }, @@ -639,46 +639,46 @@ export default { "gambler": { eng: "gambler", name2: "Gambler", - nameLocale: 1585, + nameLocale: 1603, minStar: 3, maxStar: 4, - effect2: 218, + effect2: 222, - effect4: 300, + effect4: 304, flower: { - text: 1589, + text: 1607, url: getIcon("UI_RelicIcon_10008_4") }, feather: { - text: 1587, + text: 1605, url: getIcon("UI_RelicIcon_10008_2") }, sand: { - text: 1586, + text: 1604, url: getIcon("UI_RelicIcon_10008_5") }, cup: { - text: 1590, + text: 1608, url: getIcon("UI_RelicIcon_10008_1") }, head: { - text: 1588, + text: 1606, url: getIcon("UI_RelicIcon_10008_3") }, @@ -690,52 +690,52 @@ export default { "DesertPavilionChronicle": { eng: "DesertPavilionChronicle", name2: "DesertPavilionChronicle", - nameLocale: 1089, + nameLocale: 1100, minStar: 4, maxStar: 5, - effect2: 1479, + effect2: 1493, - effect4: 1686, + effect4: 1704, flower: { - text: 165, + text: 169, url: getIcon("UI_RelicIcon_15027_4") }, feather: { - text: 1871, + text: 1892, url: getIcon("UI_RelicIcon_15027_2") }, sand: { - text: 520, + text: 526, url: getIcon("UI_RelicIcon_15027_5") }, cup: { - text: 1642, + text: 1660, url: getIcon("UI_RelicIcon_15027_1") }, head: { - text: 1110, + text: 1121, url: getIcon("UI_RelicIcon_15027_3") }, config4: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":749,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":756,"type":"float"}, ], }, @@ -743,56 +743,56 @@ export default { "GildedDreams": { eng: "GildedDreams", name2: "GildedDreams", - nameLocale: 1833, + nameLocale: 1854, minStar: 4, maxStar: 5, - effect2: 233, + effect2: 237, - effect4: 1557, + effect4: 1575, flower: { - text: 1054, + text: 1064, url: getIcon("UI_RelicIcon_15026_4") }, feather: { - text: 1525, + text: 1541, url: getIcon("UI_RelicIcon_15026_2") }, sand: { - text: 1087, + text: 1098, url: getIcon("UI_RelicIcon_15026_5") }, cup: { - text: 529, + text: 535, url: getIcon("UI_RelicIcon_15026_1") }, head: { - text: 1090, + text: 1101, url: getIcon("UI_RelicIcon_15026_3") }, config4: [ - {"default":0,"max":3,"min":0,"name":"same_count","title":382,"type":"int"}, + {"default":0,"max":3,"min":0,"name":"same_count","title":387,"type":"int"}, - {"default":0,"max":3,"min":0,"name":"diff_count","title":91,"type":"int"}, + {"default":0,"max":3,"min":0,"name":"diff_count","title":95,"type":"int"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":749,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":756,"type":"float"}, ], }, @@ -800,46 +800,46 @@ export default { "gladiatorFinale": { eng: "gladiatorFinale", name2: "GladiatorsFinale", - nameLocale: 1544, + nameLocale: 1562, minStar: 4, maxStar: 5, - effect2: 726, + effect2: 733, - effect4: 1530, + effect4: 1548, flower: { - text: 1543, + text: 1561, url: getIcon("UI_RelicIcon_15001_4") }, feather: { - text: 1542, + text: 1560, url: getIcon("UI_RelicIcon_15001_2") }, sand: { - text: 1541, + text: 1559, url: getIcon("UI_RelicIcon_15001_5") }, cup: { - text: 1545, + text: 1563, url: getIcon("UI_RelicIcon_15001_1") }, head: { - text: 1540, + text: 1558, url: getIcon("UI_RelicIcon_15001_3") }, @@ -851,52 +851,52 @@ export default { "GoldenTroupe": { eng: "GoldenTroupe", name2: "GoldenTroupe", - nameLocale: 1868, + nameLocale: 1889, minStar: 4, maxStar: 5, - effect2: 218, + effect2: 222, - effect4: 219, + effect4: 223, flower: { - text: 1867, + text: 1888, url: getIcon("UI_RelicIcon_15032_4") }, feather: { - text: 1872, + text: 1893, url: getIcon("UI_RelicIcon_15032_2") }, sand: { - text: 1870, + text: 1891, url: getIcon("UI_RelicIcon_15032_5") }, cup: { - text: 1866, + text: 1887, url: getIcon("UI_RelicIcon_15032_1") }, head: { - text: 1869, + text: 1890, url: getIcon("UI_RelicIcon_15032_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1519,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1536,"type":"float"}, ], }, @@ -904,52 +904,52 @@ export default { "heartOfDepth": { eng: "heartOfDepth", name2: "HeartOfDepth", - nameLocale: 1085, + nameLocale: 1096, minStar: 4, maxStar: 5, - effect2: 1475, + effect2: 1489, - effect4: 772, + effect4: 779, flower: { - text: 1834, + text: 1855, url: getIcon("UI_RelicIcon_15016_4") }, feather: { - text: 1644, + text: 1662, url: getIcon("UI_RelicIcon_15016_2") }, sand: { - text: 450, + text: 455, url: getIcon("UI_RelicIcon_15016_5") }, cup: { - text: 1086, + text: 1097, url: getIcon("UI_RelicIcon_15016_1") }, head: { - text: 1661, + text: 1679, url: getIcon("UI_RelicIcon_15016_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":749,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":756,"type":"float"}, ], }, @@ -957,52 +957,52 @@ export default { "huskOfOpulentDreams": { eng: "huskOfOpulentDreams", name2: "HuskOfOpulentDreams", - nameLocale: 341, + nameLocale: 345, minStar: 4, maxStar: 5, - effect2: 1739, + effect2: 1758, - effect4: 1526, + effect4: 1542, flower: { - text: 1463, + text: 1477, url: getIcon("UI_RelicIcon_15021_4") }, feather: { - text: 340, + text: 344, url: getIcon("UI_RelicIcon_15021_2") }, sand: { - text: 166, + text: 170, url: getIcon("UI_RelicIcon_15021_5") }, cup: { - text: 1056, + text: 1066, url: getIcon("UI_RelicIcon_15021_1") }, head: { - text: 630, + text: 637, url: getIcon("UI_RelicIcon_15021_3") }, config4: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"level","title":46,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"level","title":50,"type":"float"}, ], }, @@ -1010,52 +1010,52 @@ export default { "instructor": { eng: "instructor", name2: "Instructor", - nameLocale: 754, + nameLocale: 761, minStar: 3, maxStar: 4, - effect2: 231, + effect2: 236, - effect4: 1558, + effect4: 1576, flower: { - text: 759, + text: 766, url: getIcon("UI_RelicIcon_10007_4") }, feather: { - text: 758, + text: 765, url: getIcon("UI_RelicIcon_10007_2") }, sand: { - text: 757, + text: 764, url: getIcon("UI_RelicIcon_10007_5") }, cup: { - text: 760, + text: 767, url: getIcon("UI_RelicIcon_10007_1") }, head: { - text: 756, + text: 763, url: getIcon("UI_RelicIcon_10007_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":749,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":756,"type":"float"}, ], }, @@ -1063,52 +1063,52 @@ export default { "lavaWalker": { eng: "lavaWalker", name2: "Lavawalker", - nameLocale: 1138, + nameLocale: 1149, minStar: 4, maxStar: 5, - effect2: 1160, + effect2: 1171, - effect4: 575, + effect4: 582, flower: { - text: 1133, + text: 1144, url: getIcon("UI_RelicIcon_14003_4") }, feather: { - text: 1136, + text: 1147, url: getIcon("UI_RelicIcon_14003_2") }, sand: { - text: 1135, + text: 1146, url: getIcon("UI_RelicIcon_14003_5") }, cup: { - text: 1137, + text: 1148, url: getIcon("UI_RelicIcon_14003_1") }, head: { - text: 1134, + text: 1145, url: getIcon("UI_RelicIcon_14003_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":751,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":758,"type":"float"}, ], }, @@ -1116,46 +1116,46 @@ export default { "luckyDog": { eng: "luckyDog", name2: "LuckyDog", - nameLocale: 607, + nameLocale: 614, minStar: 1, maxStar: 3, - effect2: 1738, + effect2: 1757, - effect4: 700, + effect4: 707, flower: { - text: 610, + text: 617, url: getIcon("UI_RelicIcon_10011_4") }, feather: { - text: 612, + text: 619, url: getIcon("UI_RelicIcon_10011_2") }, sand: { - text: 609, + text: 616, url: getIcon("UI_RelicIcon_10011_5") }, cup: { - text: 608, + text: 615, url: getIcon("UI_RelicIcon_10011_1") }, head: { - text: 611, + text: 618, url: getIcon("UI_RelicIcon_10011_3") }, @@ -1167,46 +1167,46 @@ export default { "maidenBeloved": { eng: "maidenBeloved", name2: "MaidenBeloved", - nameLocale: 1522, + nameLocale: 1538, minStar: 4, maxStar: 5, - effect2: 1551, + effect2: 1569, - effect4: 779, + effect4: 786, flower: { - text: 1628, + text: 1646, url: getIcon("UI_RelicIcon_14004_4") }, feather: { - text: 586, + text: 593, url: getIcon("UI_RelicIcon_14004_2") }, sand: { - text: 585, + text: 592, url: getIcon("UI_RelicIcon_14004_5") }, cup: { - text: 584, + text: 591, url: getIcon("UI_RelicIcon_14004_1") }, head: { - text: 583, + text: 590, url: getIcon("UI_RelicIcon_14004_3") }, @@ -1218,52 +1218,52 @@ export default { "MarechausseeHunter": { eng: "MarechausseeHunter", name2: "MarechausseeHunter", - nameLocale: 1648, + nameLocale: 1666, minStar: 4, maxStar: 5, - effect2: 925, + effect2: 934, - effect4: 628, + effect4: 635, flower: { - text: 1215, + text: 1227, url: getIcon("UI_RelicIcon_15031_4") }, feather: { - text: 1030, + text: 1039, url: getIcon("UI_RelicIcon_15031_2") }, sand: { - text: 1523, + text: 1539, url: getIcon("UI_RelicIcon_15031_5") }, cup: { - text: 1656, + text: 1674, url: getIcon("UI_RelicIcon_15031_1") }, head: { - text: 1426, + text: 1440, url: getIcon("UI_RelicIcon_15031_3") }, config4: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":599,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":605,"type":"float"}, ], }, @@ -1271,52 +1271,52 @@ export default { "martialArtist": { eng: "martialArtist", name2: "MartialArtist", - nameLocale: 1060, + nameLocale: 1070, minStar: 3, maxStar: 4, - effect2: 926, + effect2: 935, - effect4: 773, + effect4: 780, flower: { - text: 1063, + text: 1073, url: getIcon("UI_RelicIcon_10006_4") }, feather: { - text: 1064, + text: 1074, url: getIcon("UI_RelicIcon_10006_2") }, sand: { - text: 1062, + text: 1072, url: getIcon("UI_RelicIcon_10006_5") }, cup: { - text: 1065, + text: 1075, url: getIcon("UI_RelicIcon_10006_1") }, head: { - text: 1061, + text: 1071, url: getIcon("UI_RelicIcon_10006_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":749,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":756,"type":"float"}, ], }, @@ -1324,52 +1324,52 @@ export default { "noblesseOblige": { eng: "noblesseOblige", name2: "NoblesseOblige", - nameLocale: 814, + nameLocale: 822, minStar: 4, maxStar: 5, - effect2: 224, + effect2: 228, - effect4: 789, + effect4: 796, flower: { - text: 554, + text: 560, url: getIcon("UI_RelicIcon_15007_4") }, feather: { - text: 553, + text: 559, url: getIcon("UI_RelicIcon_15007_2") }, sand: { - text: 556, + text: 562, url: getIcon("UI_RelicIcon_15007_5") }, cup: { - text: 559, + text: 565, url: getIcon("UI_RelicIcon_15007_1") }, head: { - text: 562, + text: 568, url: getIcon("UI_RelicIcon_15007_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":749,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":756,"type":"float"}, ], }, @@ -1377,58 +1377,58 @@ export default { "NymphsDream": { eng: "NymphsDream", name2: "NymphsDream", - nameLocale: 1073, + nameLocale: 1083, minStar: 4, maxStar: 5, - effect2: 1475, + effect2: 1489, - effect4: 916, + effect4: 925, flower: { - text: 797, + text: 805, url: getIcon("UI_RelicIcon_15029_4") }, feather: { - text: 448, + text: 453, url: getIcon("UI_RelicIcon_15029_2") }, sand: { - text: 1074, + text: 1085, url: getIcon("UI_RelicIcon_15029_5") }, cup: { - text: 321, + text: 325, url: getIcon("UI_RelicIcon_15029_1") }, head: { - text: 645, + text: 652, url: getIcon("UI_RelicIcon_15029_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"w1","title":51,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"w1","title":55,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"w2","title":123,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"w2","title":127,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"w3","title":74,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"w3","title":78,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":616,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":625,"type":"float"}, ], }, @@ -1436,46 +1436,46 @@ export default { "oceanHuedClam": { eng: "oceanHuedClam", name2: "OceanHuedClam", - nameLocale: 1125, + nameLocale: 1136, minStar: 4, maxStar: 5, - effect2: 1094, + effect2: 1105, - effect4: 1527, + effect4: 1543, flower: { - text: 1124, + text: 1135, url: getIcon("UI_RelicIcon_15022_4") }, feather: { - text: 1132, + text: 1143, url: getIcon("UI_RelicIcon_15022_2") }, sand: { - text: 1366, + text: 1380, url: getIcon("UI_RelicIcon_15022_5") }, cup: { - text: 1312, + text: 1326, url: getIcon("UI_RelicIcon_15022_1") }, head: { - text: 1127, + text: 1138, url: getIcon("UI_RelicIcon_15022_3") }, @@ -1487,54 +1487,54 @@ export default { "paleFlame": { eng: "paleFlame", name2: "PaleFlame", - nameLocale: 1449, + nameLocale: 1463, minStar: 4, maxStar: 5, - effect2: 1651, + effect2: 1670, - effect4: 207, + effect4: 211, flower: { - text: 804, + text: 812, url: getIcon("UI_RelicIcon_15018_4") }, feather: { - text: 1580, + text: 1598, url: getIcon("UI_RelicIcon_15018_2") }, sand: { - text: 188, + text: 192, url: getIcon("UI_RelicIcon_15018_5") }, cup: { - text: 1598, + text: 1616, url: getIcon("UI_RelicIcon_15018_1") }, head: { - text: 422, + text: 427, url: getIcon("UI_RelicIcon_15018_3") }, config4: [ - {"default":0.0,"max":2.0,"min":0.0,"name":"avg_level","title":743,"type":"float"}, + {"default":0.0,"max":2.0,"min":0.0,"name":"avg_level","title":750,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"full_rate","title":1151,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"full_rate","title":1162,"type":"float"}, ], }, @@ -1542,11 +1542,11 @@ export default { "prayersForDestiny": { eng: "prayersForDestiny", name2: "PrayersForDestiny", - nameLocale: 1355, + nameLocale: 1369, minStar: 3, maxStar: 4, - effect1: 365, + effect1: 370, @@ -1559,7 +1559,7 @@ export default { head: { - text: 1356, + text: 1370, url: getIcon("UI_RelicIcon_15010_3") }, @@ -1571,11 +1571,11 @@ export default { "prayersForIllumination": { eng: "prayersForIllumination", name2: "PrayersForIllumination", - nameLocale: 1357, + nameLocale: 1371, minStar: 3, maxStar: 4, - effect1: 366, + effect1: 371, @@ -1588,7 +1588,7 @@ export default { head: { - text: 1358, + text: 1372, url: getIcon("UI_RelicIcon_15009_3") }, @@ -1600,11 +1600,11 @@ export default { "prayersForWisdom": { eng: "prayersForWisdom", name2: "PrayersForWisdom", - nameLocale: 1363, + nameLocale: 1377, minStar: 3, maxStar: 4, - effect1: 367, + effect1: 372, @@ -1617,7 +1617,7 @@ export default { head: { - text: 1364, + text: 1378, url: getIcon("UI_RelicIcon_15011_3") }, @@ -1629,11 +1629,11 @@ export default { "prayersToSpringtime": { eng: "prayersToSpringtime", name2: "PrayersToSpringtime", - nameLocale: 1353, + nameLocale: 1367, minStar: 3, maxStar: 4, - effect1: 364, + effect1: 369, @@ -1646,7 +1646,7 @@ export default { head: { - text: 1354, + text: 1368, url: getIcon("UI_RelicIcon_15013_3") }, @@ -1658,46 +1658,46 @@ export default { "resolutionOfSojourner": { eng: "resolutionOfSojourner", name2: "ResolutionOfSojourner", - nameLocale: 1514, + nameLocale: 1528, minStar: 3, maxStar: 4, - effect2: 726, + effect2: 733, - effect4: 1689, + effect4: 1707, flower: { - text: 741, + text: 748, url: getIcon("UI_RelicIcon_10001_4") }, feather: { - text: 627, + text: 634, url: getIcon("UI_RelicIcon_10001_2") }, sand: { - text: 1647, + text: 1665, url: getIcon("UI_RelicIcon_10001_5") }, cup: { - text: 623, + text: 630, url: getIcon("UI_RelicIcon_10001_1") }, head: { - text: 651, + text: 658, url: getIcon("UI_RelicIcon_10001_3") }, @@ -1709,52 +1709,52 @@ export default { "retracingBolide": { eng: "retracingBolide", name2: "RetracingBolide", - nameLocale: 1646, + nameLocale: 1664, minStar: 4, maxStar: 5, - effect2: 696, + effect2: 703, - effect4: 467, + effect4: 472, flower: { - text: 472, + text: 478, url: getIcon("UI_RelicIcon_15015_4") }, feather: { - text: 475, + text: 481, url: getIcon("UI_RelicIcon_15015_2") }, sand: { - text: 471, + text: 477, url: getIcon("UI_RelicIcon_15015_5") }, cup: { - text: 474, + text: 480, url: getIcon("UI_RelicIcon_15015_1") }, head: { - text: 473, + text: 479, url: getIcon("UI_RelicIcon_15015_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":704,"type":"float"}, ], }, @@ -1762,46 +1762,46 @@ export default { "scholar": { eng: "scholar", name2: "Scholar", - nameLocale: 536, + nameLocale: 542, minStar: 3, maxStar: 4, - effect2: 192, + effect2: 196, - effect4: 1486, + effect4: 1500, flower: { - text: 537, + text: 543, url: getIcon("UI_RelicIcon_10012_4") }, feather: { - text: 540, + text: 546, url: getIcon("UI_RelicIcon_10012_2") }, sand: { - text: 539, + text: 545, url: getIcon("UI_RelicIcon_10012_5") }, cup: { - text: 538, + text: 544, url: getIcon("UI_RelicIcon_10012_1") }, head: { - text: 541, + text: 547, url: getIcon("UI_RelicIcon_10012_3") }, @@ -1813,52 +1813,52 @@ export default { "shimenawaReminiscence": { eng: "shimenawaReminiscence", name2: "ShimenawasReminiscence", - nameLocale: 1643, + nameLocale: 1661, minStar: 4, maxStar: 5, - effect2: 726, + effect2: 733, - effect4: 780, + effect4: 787, flower: { - text: 1415, + text: 1429, url: getIcon("UI_RelicIcon_15019_4") }, feather: { - text: 640, + text: 647, url: getIcon("UI_RelicIcon_15019_2") }, sand: { - text: 1021, + text: 1030, url: getIcon("UI_RelicIcon_15019_5") }, cup: { - text: 1333, + text: 1347, url: getIcon("UI_RelicIcon_15019_1") }, head: { - text: 806, + text: 814, url: getIcon("UI_RelicIcon_15019_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":749,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":756,"type":"float"}, ], }, @@ -1866,52 +1866,52 @@ export default { "tenacityOfTheMillelith": { eng: "tenacityOfTheMillelith", name2: "TenacityOfTheMillelith", - nameLocale: 334, + nameLocale: 338, minStar: 4, maxStar: 5, - effect2: 1270, + effect2: 1282, - effect4: 206, + effect4: 210, flower: { - text: 322, + text: 326, url: getIcon("UI_RelicIcon_15017_4") }, feather: { - text: 825, + text: 833, url: getIcon("UI_RelicIcon_15017_2") }, sand: { - text: 1697, + text: 1715, url: getIcon("UI_RelicIcon_15017_5") }, cup: { - text: 1311, + text: 1323, url: getIcon("UI_RelicIcon_15017_1") }, head: { - text: 582, + text: 589, url: getIcon("UI_RelicIcon_15017_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":749,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":756,"type":"float"}, ], }, @@ -1919,46 +1919,46 @@ export default { "exile": { eng: "exile", name2: "TheExile", - nameLocale: 1103, + nameLocale: 1114, minStar: 3, maxStar: 4, - effect2: 192, + effect2: 196, - effect4: 788, + effect4: 795, flower: { - text: 1106, + text: 1117, url: getIcon("UI_RelicIcon_10009_4") }, feather: { - text: 1105, + text: 1116, url: getIcon("UI_RelicIcon_10009_2") }, sand: { - text: 1108, + text: 1119, url: getIcon("UI_RelicIcon_10009_5") }, cup: { - text: 1104, + text: 1115, url: getIcon("UI_RelicIcon_10009_1") }, head: { - text: 1107, + text: 1118, url: getIcon("UI_RelicIcon_10009_3") }, @@ -1970,46 +1970,46 @@ export default { "thunderingFury": { eng: "thunderingFury", name2: "ThunderingFury", - nameLocale: 530, + nameLocale: 536, minStar: 4, maxStar: 5, - effect2: 1478, + effect2: 1492, - effect4: 1599, + effect4: 1617, flower: { - text: 1787, + text: 1806, url: getIcon("UI_RelicIcon_15005_4") }, feather: { - text: 1777, + text: 1796, url: getIcon("UI_RelicIcon_15005_2") }, sand: { - text: 1786, + text: 1805, url: getIcon("UI_RelicIcon_15005_5") }, cup: { - text: 1759, + text: 1778, url: getIcon("UI_RelicIcon_15005_1") }, head: { - text: 418, + text: 423, url: getIcon("UI_RelicIcon_15005_3") }, @@ -2021,52 +2021,52 @@ export default { "thunderSmoother": { eng: "thunderSmoother", name2: "Thundersoother", - nameLocale: 601, + nameLocale: 608, minStar: 4, maxStar: 5, - effect2: 1769, + effect2: 1788, - effect4: 578, + effect4: 585, flower: { - text: 605, + text: 612, url: getIcon("UI_RelicIcon_14002_4") }, feather: { - text: 606, + text: 613, url: getIcon("UI_RelicIcon_14002_2") }, sand: { - text: 603, + text: 610, url: getIcon("UI_RelicIcon_14002_5") }, cup: { - text: 604, + text: 611, url: getIcon("UI_RelicIcon_14002_1") }, head: { - text: 602, + text: 609, url: getIcon("UI_RelicIcon_14002_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":753,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":760,"type":"float"}, ], }, @@ -2074,46 +2074,46 @@ export default { "tinyMiracle": { eng: "tinyMiracle", name2: "TinyMiracle", - nameLocale: 521, + nameLocale: 527, minStar: 3, maxStar: 4, - effect2: 659, + effect2: 666, - effect4: 358, + effect4: 363, flower: { - text: 525, + text: 531, url: getIcon("UI_RelicIcon_10004_4") }, feather: { - text: 524, + text: 530, url: getIcon("UI_RelicIcon_10004_2") }, sand: { - text: 523, + text: 529, url: getIcon("UI_RelicIcon_10004_5") }, cup: { - text: 522, + text: 528, url: getIcon("UI_RelicIcon_10004_1") }, head: { - text: 526, + text: 532, url: getIcon("UI_RelicIcon_10004_3") }, @@ -2125,46 +2125,46 @@ export default { "travelingDoctor": { eng: "travelingDoctor", name2: "TravelingDoctor", - nameLocale: 1145, + nameLocale: 1156, minStar: 1, maxStar: 3, - effect2: 1546, + effect2: 1564, - effect4: 792, + effect4: 799, flower: { - text: 1150, + text: 1161, url: getIcon("UI_RelicIcon_10013_4") }, feather: { - text: 1148, + text: 1159, url: getIcon("UI_RelicIcon_10013_2") }, sand: { - text: 1146, + text: 1157, url: getIcon("UI_RelicIcon_10013_5") }, cup: { - text: 1149, + text: 1160, url: getIcon("UI_RelicIcon_10013_1") }, head: { - text: 1147, + text: 1158, url: getIcon("UI_RelicIcon_10013_3") }, @@ -2176,54 +2176,54 @@ export default { "VermillionHereafter": { eng: "VermillionHereafter", name2: "VermillionHereafter", - nameLocale: 1625, + nameLocale: 1643, minStar: 4, maxStar: 5, - effect2: 726, + effect2: 733, - effect4: 786, + effect4: 793, flower: { - text: 1282, + text: 1294, url: getIcon("UI_RelicIcon_15023_4") }, feather: { - text: 1156, + text: 1167, url: getIcon("UI_RelicIcon_15023_2") }, sand: { - text: 1743, + text: 1762, url: getIcon("UI_RelicIcon_15023_5") }, cup: { - text: 1398, + text: 1412, url: getIcon("UI_RelicIcon_15023_1") }, head: { - text: 1505, + text: 1519, url: getIcon("UI_RelicIcon_15023_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate_q","title":227,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate_q","title":231,"type":"float"}, - {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":599,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":605,"type":"float"}, ], }, @@ -2231,46 +2231,46 @@ export default { "viridescentVenerer": { eng: "viridescentVenerer", name2: "ViridescentVenerer", - nameLocale: 1418, + nameLocale: 1432, minStar: 4, maxStar: 5, - effect2: 1479, + effect2: 1493, - effect4: 670, + effect4: 677, flower: { - text: 1695, + text: 1713, url: getIcon("UI_RelicIcon_15002_4") }, feather: { - text: 1216, + text: 1228, url: getIcon("UI_RelicIcon_15002_2") }, sand: { - text: 1421, + text: 1435, url: getIcon("UI_RelicIcon_15002_5") }, cup: { - text: 1420, + text: 1434, url: getIcon("UI_RelicIcon_15002_1") }, head: { - text: 1422, + text: 1436, url: getIcon("UI_RelicIcon_15002_3") }, @@ -2282,52 +2282,52 @@ export default { "VourukashasGlow": { eng: "VourukashasGlow", name2: "VourukashasGlow", - nameLocale: 1444, + nameLocale: 1458, minStar: 4, maxStar: 5, - effect2: 1271, + effect2: 1283, - effect4: 201, + effect4: 205, flower: { - text: 1167, + text: 1178, url: getIcon("UI_RelicIcon_15030_4") }, feather: { - text: 1245, + text: 1257, url: getIcon("UI_RelicIcon_15030_2") }, sand: { - text: 104, + text: 108, url: getIcon("UI_RelicIcon_15030_5") }, cup: { - text: 808, + text: 816, url: getIcon("UI_RelicIcon_15030_1") }, head: { - text: 1166, + text: 1177, url: getIcon("UI_RelicIcon_15030_3") }, config4: [ - {"default":4.0,"max":5.0,"min":0.0,"name":"stack","title":598,"type":"float"}, + {"default":4.0,"max":5.0,"min":0.0,"name":"stack","title":606,"type":"float"}, ], }, @@ -2335,46 +2335,46 @@ export default { "wandererTroupe": { eng: "wandererTroupe", name2: "WanderersTroupe", - nameLocale: 1112, + nameLocale: 1123, minStar: 4, maxStar: 5, - effect2: 231, + effect2: 236, - effect4: 1531, + effect4: 1549, flower: { - text: 105, + text: 109, url: getIcon("UI_RelicIcon_15003_4") }, feather: { - text: 1251, + text: 1263, url: getIcon("UI_RelicIcon_15003_2") }, sand: { - text: 1394, + text: 1408, url: getIcon("UI_RelicIcon_15003_5") }, cup: { - text: 384, + text: 389, url: getIcon("UI_RelicIcon_15003_1") }, head: { - text: 709, + text: 716, url: getIcon("UI_RelicIcon_15003_3") }, diff --git a/src/assets/_gen_buff.js b/src/assets/_gen_buff.js index 82ba22c1..c7bd1db1 100644 --- a/src/assets/_gen_buff.js +++ b/src/assets/_gen_buff.js @@ -270,7 +270,7 @@ export default { "ATKPercentage": { name: "ATKPercentage", - nameLocale: 721, + nameLocale: 728, description: null, @@ -280,14 +280,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":761,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":768,"type":"floatPercentageInput"}, ], }, "DEFPercentage": { name: "DEFPercentage", - nameLocale: 1735, + nameLocale: 1754, description: null, @@ -297,14 +297,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":761,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":768,"type":"floatPercentageInput"}, ], }, "HPPercentage": { name: "HPPercentage", - nameLocale: 1261, + nameLocale: 1273, description: null, @@ -314,14 +314,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":761,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":768,"type":"floatPercentageInput"}, ], }, "ATKFixed": { name: "ATKFixed", - nameLocale: 720, + nameLocale: 727, description: null, @@ -331,14 +331,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"value","title":761,"type":"floatInput"}, + {"default":0.0,"name":"value","title":768,"type":"floatInput"}, ], }, "DEFFixed": { name: "DEFFixed", - nameLocale: 1734, + nameLocale: 1753, description: null, @@ -348,14 +348,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"value","title":761,"type":"floatInput"}, + {"default":0.0,"name":"value","title":768,"type":"floatInput"}, ], }, "HPFixed": { name: "HPFixed", - nameLocale: 1260, + nameLocale: 1272, description: null, @@ -365,14 +365,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"value","title":761,"type":"floatInput"}, + {"default":0.0,"name":"value","title":768,"type":"floatInput"}, ], }, "Critical": { name: "Critical", - nameLocale: 991, + nameLocale: 1000, description: null, @@ -382,14 +382,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":761,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":768,"type":"floatPercentageInput"}, ], }, "CriticalDamage": { name: "CriticalDamage", - nameLocale: 987, + nameLocale: 996, description: null, @@ -399,14 +399,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":761,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":768,"type":"floatPercentageInput"}, ], }, "CustomBonus": { name: "CustomBonus", - nameLocale: 172, + nameLocale: 176, description: null, @@ -416,14 +416,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":761,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":768,"type":"floatPercentageInput"}, ], }, "ElementalMastery": { name: "ElementalMastery", - nameLocale: 229, + nameLocale: 232, description: null, @@ -433,14 +433,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"value","title":761,"type":"floatInput"}, + {"default":0.0,"name":"value","title":768,"type":"floatInput"}, ], }, "Recharge": { name: "Recharge", - nameLocale: 191, + nameLocale: 195, description: null, @@ -450,14 +450,14 @@ export default { genre: "Common", config: [ - {"default":20.0,"name":"p","title":761,"type":"floatPercentageInput"}, + {"default":20.0,"name":"p","title":768,"type":"floatPercentageInput"}, ], }, "DEFMinus": { name: "DEFMinus", - nameLocale: 283, + nameLocale: 287, description: 0, @@ -467,14 +467,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":761,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":768,"type":"floatPercentageInput"}, ], }, "ResMinus": { name: "ResMinus", - nameLocale: 282, + nameLocale: 286, description: null, @@ -484,14 +484,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":761,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":768,"type":"floatPercentageInput"}, ], }, "HealingBonus": { name: "HealingBonus", - nameLocale: 1092, + nameLocale: 1103, description: null, @@ -501,16 +501,16 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":761,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":768,"type":"floatPercentageInput"}, ], }, "BaseDmg": { name: "BaseDmg", - nameLocale: 461, + nameLocale: 465, - description: 1607, + description: 1625, badge: BaseDmg_image, @@ -518,16 +518,16 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"value","title":761,"type":"floatInput"}, + {"default":0.0,"name":"value","title":768,"type":"floatInput"}, ], }, "AlbedoTalent2": { name: "AlbedoTalent2", - nameLocale: 1747, + nameLocale: 1766, - description: 1752, + description: 1771, badge: getImage("Albedo"), @@ -540,9 +540,9 @@ export default { "AlbedoC4": { name: "AlbedoC4", - nameLocale: 1748, + nameLocale: 1767, - description: 1750, + description: 1769, badge: getImage("Albedo"), @@ -555,9 +555,9 @@ export default { "AlbedoC6": { name: "AlbedoC6", - nameLocale: 1746, + nameLocale: 1765, - description: 1751, + description: 1770, badge: getImage("Albedo"), @@ -570,9 +570,9 @@ export default { "AloyTalent1": { name: "AloyTalent1", - nameLocale: 455, + nameLocale: 460, - description: 456, + description: 461, badge: getImage("Aloy"), @@ -585,9 +585,9 @@ export default { "AratakiIttoC4": { name: "AratakiIttoC4", - nameLocale: 1457, + nameLocale: 1471, - description: 1459, + description: 1473, badge: getImage("Itto"), @@ -600,9 +600,9 @@ export default { "BeidouC6": { name: "BeidouC6", - nameLocale: 326, + nameLocale: 330, - description: 328, + description: 332, badge: getImage("Beidou"), @@ -615,9 +615,9 @@ export default { "BennettQ": { name: "BennettQ", - nameLocale: 1236, + nameLocale: 1248, - description: 1239, + description: 1251, badge: getImage("Bennett"), @@ -625,20 +625,20 @@ export default { genre: "Character", config: [ - {"default":800.0,"name":"base_atk","title":1241,"type":"floatInput"}, + {"default":800.0,"name":"base_atk","title":1253,"type":"floatInput"}, - {"default":true,"name":"c1","title":826,"type":"bool"}, + {"default":true,"name":"c1","title":834,"type":"bool"}, - {"default":10,"max":15,"min":1,"name":"skill3","title":689,"type":"int"}, + {"default":10,"max":15,"min":1,"name":"skill3","title":696,"type":"int"}, ], }, "BennettC6": { name: "BennettC6", - nameLocale: 1235, + nameLocale: 1247, - description: 1240, + description: 1252, badge: getImage("Bennett"), @@ -651,9 +651,9 @@ export default { "ChongyunTalent2": { name: "ChongyunTalent2", - nameLocale: 1663, + nameLocale: 1681, - description: 1665, + description: 1683, badge: getImage("Chongyun"), @@ -666,9 +666,9 @@ export default { "DionaC6G50": { name: "DionaC6G50", - nameLocale: 1635, + nameLocale: 1653, - description: 1637, + description: 1655, badge: getImage("Diona"), @@ -681,9 +681,9 @@ export default { "EulaE": { name: "EulaE", - nameLocale: 168, + nameLocale: 172, - description: 170, + description: 174, badge: getImage("Eula"), @@ -691,16 +691,16 @@ export default { genre: "Character", config: [ - {"default":9,"max":15,"min":1,"name":"skill2","title":689,"type":"int"}, + {"default":9,"max":15,"min":1,"name":"skill2","title":696,"type":"int"}, ], }, "GanyuTalent2": { name: "GanyuTalent2", - nameLocale: 1255, + nameLocale: 1267, - description: 1259, + description: 1271, badge: getImage("Ganyu"), @@ -713,9 +713,9 @@ export default { "GanyuC1": { name: "GanyuC1", - nameLocale: 1256, + nameLocale: 1268, - description: 1258, + description: 1270, badge: getImage("Ganyu"), @@ -728,9 +728,9 @@ export default { "GorouE1": { name: "GorouE1", - nameLocale: 150, + nameLocale: 154, - description: 155, + description: 159, badge: getImage("Gorou"), @@ -738,16 +738,16 @@ export default { genre: "Character", config: [ - {"default":10,"max":15,"min":1,"name":"skill2","title":154,"type":"int"}, + {"default":10,"max":15,"min":1,"name":"skill2","title":158,"type":"int"}, ], }, "GorouE3": { name: "GorouE3", - nameLocale: 151, + nameLocale: 155, - description: 156, + description: 160, badge: getImage("Gorou"), @@ -760,9 +760,9 @@ export default { "GorouTalent1": { name: "GorouTalent1", - nameLocale: 149, + nameLocale: 153, - description: 158, + description: 162, badge: getImage("Gorou"), @@ -775,9 +775,9 @@ export default { "GorouC6": { name: "GorouC6", - nameLocale: 152, + nameLocale: 156, - description: 157, + description: 161, badge: getImage("Gorou"), @@ -785,16 +785,16 @@ export default { genre: "Character", config: [ - {"default":1,"max":3,"min":1,"name":"level","title":1801,"type":"int"}, + {"default":1,"max":3,"min":1,"name":"level","title":1822,"type":"int"}, ], }, "HuTaoTalent1": { name: "HuTaoTalent1", - nameLocale: 1434, + nameLocale: 1448, - description: 1436, + description: 1450, badge: getImage("Hutao"), @@ -807,9 +807,9 @@ export default { "JeanC4": { name: "JeanC4", - nameLocale: 1248, + nameLocale: 1260, - description: 1250, + description: 1262, badge: getImage("Qin"), @@ -822,9 +822,9 @@ export default { "KaedeharaKazuhaTalent2": { name: "KaedeharaKazuhaTalent2", - nameLocale: 1038, + nameLocale: 1048, - description: 1042, + description: 1052, badge: getImage("Kazuha"), @@ -832,18 +832,18 @@ export default { genre: "Character", config: [ - {"default":"Electro","name":"element","title":668,"type":"element4"}, + {"default":"Electro","name":"element","title":675,"type":"element4"}, - {"default":800.0,"name":"em","title":71,"type":"floatInput"}, + {"default":800.0,"name":"em","title":75,"type":"floatInput"}, ], }, "KaedeharaKazuhaC2": { name: "KaedeharaKazuhaC2", - nameLocale: 1037, + nameLocale: 1047, - description: 1041, + description: 1051, badge: getImage("Kazuha"), @@ -856,9 +856,9 @@ export default { "KamisatoAyakaC4": { name: "KamisatoAyakaC4", - nameLocale: 1351, + nameLocale: 1365, - description: 1402, + description: 1416, badge: getImage("Ayaka"), @@ -871,9 +871,9 @@ export default { "KleeC2": { name: "KleeC2", - nameLocale: 376, + nameLocale: 381, - description: 378, + description: 383, badge: getImage("Klee"), @@ -886,9 +886,9 @@ export default { "KleeC6": { name: "KleeC6", - nameLocale: 375, + nameLocale: 380, - description: 379, + description: 384, badge: getImage("Klee"), @@ -901,9 +901,9 @@ export default { "KujouSaraEOrQ": { name: "KujouSaraEOrQ", - nameLocale: 108, + nameLocale: 112, - description: 111, + description: 115, badge: getImage("Sara"), @@ -911,20 +911,20 @@ export default { genre: "Character", config: [ - {"default":700.0,"name":"base_atk","title":112,"type":"floatInput"}, + {"default":700.0,"name":"base_atk","title":116,"type":"floatInput"}, - {"default":false,"name":"c6","title":829,"type":"bool"}, + {"default":false,"name":"c6","title":837,"type":"bool"}, - {"default":10,"max":15,"min":1,"name":"skill2","title":12,"type":"int"}, + {"default":10,"max":15,"min":1,"name":"skill2","title":13,"type":"int"}, ], }, "LisaTalent2": { name: "LisaTalent2", - nameLocale: 99, + nameLocale: 103, - description: 101, + description: 105, badge: getImage("Lisa"), @@ -937,9 +937,9 @@ export default { "MonaQ": { name: "MonaQ", - nameLocale: 1465, + nameLocale: 1479, - description: 1468, + description: 1482, badge: getImage("Mona"), @@ -947,18 +947,18 @@ export default { genre: "Character", config: [ - {"default":9,"max":15,"min":1,"name":"skill3","title":18,"type":"int"}, + {"default":9,"max":15,"min":1,"name":"skill3","title":19,"type":"int"}, - {"default":false,"name":"c4","title":828,"type":"bool"}, + {"default":false,"name":"c4","title":836,"type":"bool"}, ], }, "MonaC1": { name: "MonaC1", - nameLocale: 1466, + nameLocale: 1480, - description: 1469, + description: 1483, badge: getImage("Mona"), @@ -971,9 +971,9 @@ export default { "NingguangTalent2": { name: "NingguangTalent2", - nameLocale: 286, + nameLocale: 290, - description: 288, + description: 292, badge: getImage("Ningguang"), @@ -986,9 +986,9 @@ export default { "RaidenShogunE": { name: "RaidenShogunE", - nameLocale: 1781, + nameLocale: 1800, - description: 1784, + description: 1803, badge: getImage("Shougun"), @@ -996,18 +996,18 @@ export default { genre: "Character", config: [ - {"default":8,"max":15,"min":1,"name":"skill2","title":1783,"type":"int"}, + {"default":8,"max":15,"min":1,"name":"skill2","title":1802,"type":"int"}, - {"default":80,"max":100,"min":20,"name":"energy","title":355,"type":"int"}, + {"default":80,"max":100,"min":20,"name":"energy","title":360,"type":"int"}, ], }, "RaidenShogunC4": { name: "RaidenShogunC4", - nameLocale: 1780, + nameLocale: 1799, - description: 1785, + description: 1804, badge: getImage("Shougun"), @@ -1020,9 +1020,9 @@ export default { "RazorC4": { name: "RazorC4", - nameLocale: 1774, + nameLocale: 1793, - description: 1776, + description: 1795, badge: getImage("Razor"), @@ -1035,9 +1035,9 @@ export default { "RosariaTalent2": { name: "RosariaTalent2", - nameLocale: 1410, + nameLocale: 1424, - description: 1413, + description: 1427, badge: getImage("Rosaria"), @@ -1045,16 +1045,16 @@ export default { genre: "Character", config: [ - {"default":70.0,"name":"crit","title":1414,"type":"floatPercentageInput"}, + {"default":70.0,"name":"crit","title":1428,"type":"floatPercentageInput"}, ], }, "RosariaC6": { name: "RosariaC6", - nameLocale: 1409, + nameLocale: 1423, - description: 1412, + description: 1426, badge: getImage("Rosaria"), @@ -1067,9 +1067,9 @@ export default { "ShenheE": { name: "ShenheE", - nameLocale: 1286, + nameLocale: 1298, - description: 1292, + description: 1304, badge: getImage("Shenhe"), @@ -1077,18 +1077,18 @@ export default { genre: "Character", config: [ - {"default":3000.0,"name":"atk","title":1297,"type":"floatInput"}, + {"default":3000.0,"name":"atk","title":1309,"type":"floatInput"}, - {"default":8,"max":15,"min":1,"name":"skill2","title":1291,"type":"int"}, + {"default":8,"max":15,"min":1,"name":"skill2","title":1303,"type":"int"}, ], }, "ShenheQ": { name: "ShenheQ", - nameLocale: 1288, + nameLocale: 1300, - description: 1294, + description: 1306, badge: getImage("Shenhe"), @@ -1096,16 +1096,16 @@ export default { genre: "Character", config: [ - {"default":8,"max":15,"min":1,"name":"skill3","title":1293,"type":"int"}, + {"default":8,"max":15,"min":1,"name":"skill3","title":1305,"type":"int"}, ], }, "ShenheTalent1": { name: "ShenheTalent1", - nameLocale: 1287, + nameLocale: 1299, - description: 1295, + description: 1307, badge: getImage("Shenhe"), @@ -1113,16 +1113,16 @@ export default { genre: "Character", config: [ - {"default":false,"name":"c2","title":827,"type":"bool"}, + {"default":false,"name":"c2","title":835,"type":"bool"}, ], }, "ShenheTalent2": { name: "ShenheTalent2", - nameLocale: 1289, + nameLocale: 1301, - description: 1296, + description: 1308, badge: getImage("Shenhe"), @@ -1130,16 +1130,16 @@ export default { genre: "Character", config: [ - {"default":0,"name":"t","options":["点按","长按"],"title":690,"type":"option"}, + {"default":0,"name":"t","options":["点按","长按"],"title":697,"type":"option"}, ], }, "SucroseTalent1": { name: "SucroseTalent1", - nameLocale: 1319, + nameLocale: 1333, - description: 1322, + description: 1336, badge: getImage("Sucrose"), @@ -1152,9 +1152,9 @@ export default { "SucroseTalent2": { name: "SucroseTalent2", - nameLocale: 1317, + nameLocale: 1331, - description: 1323, + description: 1337, badge: getImage("Sucrose"), @@ -1162,16 +1162,16 @@ export default { genre: "Character", config: [ - {"default":200.0,"name":"em","title":1324,"type":"floatInput"}, + {"default":200.0,"name":"em","title":1338,"type":"floatInput"}, ], }, "SucroseC6": { name: "SucroseC6", - nameLocale: 1318, + nameLocale: 1332, - description: 1321, + description: 1335, badge: getImage("Sucrose"), @@ -1179,16 +1179,16 @@ export default { genre: "Character", config: [ - {"default":"Electro","name":"element","title":673,"type":"element4"}, + {"default":"Electro","name":"element","title":680,"type":"element4"}, ], }, "ThomaTalent1": { name: "ThomaTalent1", - nameLocale: 664, + nameLocale: 671, - description: 667, + description: 674, badge: getImage("Tohma"), @@ -1196,16 +1196,16 @@ export default { genre: "Character", config: [ - {"default":2.0,"max":5.0,"min":0.0,"name":"stack","title":369,"type":"float"}, + {"default":2.0,"max":5.0,"min":0.0,"name":"stack","title":374,"type":"float"}, ], }, "ThomaC6": { name: "ThomaC6", - nameLocale: 663, + nameLocale: 670, - description: 666, + description: 673, badge: getImage("Tohma"), @@ -1218,9 +1218,9 @@ export default { "VentiC2": { name: "VentiC2", - nameLocale: 1141, + nameLocale: 1152, - description: 1143, + description: 1154, badge: getImage("Venti"), @@ -1228,16 +1228,16 @@ export default { genre: "Character", config: [ - {"default":false,"name":"levitating","title":1495,"type":"bool"}, + {"default":false,"name":"levitating","title":1509,"type":"bool"}, ], }, "VentiC6": { name: "VentiC6", - nameLocale: 1140, + nameLocale: 1151, - description: 1144, + description: 1155, badge: getImage("Venti"), @@ -1245,18 +1245,18 @@ export default { genre: "Character", config: [ - {"default":true,"name":"is_convert","title":354,"type":"bool"}, + {"default":true,"name":"is_convert","title":358,"type":"bool"}, - {"default":"Electro","name":"element","title":1612,"type":"element4"}, + {"default":"Electro","name":"element","title":1630,"type":"element4"}, ], }, "XianglingTalent2": { name: "XianglingTalent2", - nameLocale: 1839, + nameLocale: 1860, - description: 1843, + description: 1864, badge: getImage("Xiangling"), @@ -1269,9 +1269,9 @@ export default { "XianglingC1": { name: "XianglingC1", - nameLocale: 1837, + nameLocale: 1858, - description: 1841, + description: 1862, badge: getImage("Xiangling"), @@ -1284,9 +1284,9 @@ export default { "XianglingC6": { name: "XianglingC6", - nameLocale: 1838, + nameLocale: 1859, - description: 1842, + description: 1863, badge: getImage("Xiangling"), @@ -1299,9 +1299,9 @@ export default { "XingqiuC2": { name: "XingqiuC2", - nameLocale: 1511, + nameLocale: 1525, - description: 1513, + description: 1527, badge: getImage("Xingqiu"), @@ -1314,9 +1314,9 @@ export default { "XinyanC4": { name: "XinyanC4", - nameLocale: 1618, + nameLocale: 1636, - description: 1622, + description: 1640, badge: getImage("Xinyan"), @@ -1329,9 +1329,9 @@ export default { "XinyanTalent2": { name: "XinyanTalent2", - nameLocale: 1619, + nameLocale: 1637, - description: 1623, + description: 1641, badge: getImage("Xinyan"), @@ -1344,9 +1344,9 @@ export default { "YaeMikoC4": { name: "YaeMikoC4", - nameLocale: 242, + nameLocale: 246, - description: 244, + description: 248, badge: getImage("Yae"), @@ -1359,9 +1359,9 @@ export default { "YoimiyaTalent2": { name: "YoimiyaTalent2", - nameLocale: 565, + nameLocale: 572, - description: 567, + description: 574, badge: getImage("Yoimiya"), @@ -1369,16 +1369,16 @@ export default { genre: "Character", config: [ - {"default":0,"max":10,"min":0,"name":"talent1_stack","title":42,"type":"int"}, + {"default":0,"max":10,"min":0,"name":"talent1_stack","title":46,"type":"int"}, ], }, "YunjinQ": { name: "YunjinQ", - nameLocale: 138, + nameLocale: 142, - description: 140, + description: 144, badge: getImage("Yunjin"), @@ -1386,22 +1386,22 @@ export default { genre: "Character", config: [ - {"default":10,"max":15,"min":1,"name":"skill3","title":18,"type":"int"}, + {"default":10,"max":15,"min":1,"name":"skill3","title":19,"type":"int"}, - {"default":2000.0,"name":"def","title":142,"type":"floatInput"}, + {"default":2000.0,"name":"def","title":146,"type":"floatInput"}, {"default":true,"name":"talent2","title":7,"type":"bool"}, - {"default":4,"max":4,"min":1,"name":"ele_count","title":1719,"type":"int"}, + {"default":4,"max":4,"min":1,"name":"ele_count","title":1738,"type":"int"}, ], }, "YunjinC2": { name: "YunjinC2", - nameLocale: 137, + nameLocale: 141, - description: 141, + description: 145, badge: getImage("Yunjin"), @@ -1414,9 +1414,9 @@ export default { "ZhongliShield": { name: "ZhongliShield", - nameLocale: 1701, + nameLocale: 1719, - description: 1703, + description: 1721, badge: getImage("Zhongli"), @@ -1429,9 +1429,9 @@ export default { "YelanTalent2": { name: "YelanTalent2", - nameLocale: 480, + nameLocale: 486, - description: 484, + description: 490, badge: getImage("Yelan"), @@ -1439,16 +1439,16 @@ export default { genre: "Character", config: [ - {"default":14,"max":14,"min":0,"name":"secs","title":1397,"type":"int"}, + {"default":14,"max":14,"min":0,"name":"secs","title":1411,"type":"int"}, ], }, "YelanC4": { name: "YelanC4", - nameLocale: 481, + nameLocale: 487, - description: 483, + description: 489, badge: getImage("Yelan"), @@ -1456,16 +1456,16 @@ export default { genre: "Character", config: [ - {"default":4,"max":4,"min":1,"name":"count","title":1049,"type":"int"}, + {"default":4,"max":4,"min":1,"name":"count","title":1059,"type":"int"}, ], }, "KamisatoAyatoQ": { name: "KamisatoAyatoQ", - nameLocale: 1345, + nameLocale: 1359, - description: 1348, + description: 1362, badge: getImage("Ayato"), @@ -1473,16 +1473,16 @@ export default { genre: "Character", config: [ - {"default":8,"max":15,"min":1,"name":"skill_level","title":1347,"type":"int"}, + {"default":8,"max":15,"min":1,"name":"skill_level","title":1361,"type":"int"}, ], }, "ShikanoinHeizouTalent2": { name: "ShikanoinHeizouTalent2", - nameLocale: 1863, + nameLocale: 1884, - description: 1865, + description: 1886, badge: getImage("Heizo"), @@ -1495,9 +1495,9 @@ export default { "TighnariC4": { name: "TighnariC4", - nameLocale: 715, + nameLocale: 722, - description: 717, + description: 724, badge: getImage("Tighnari"), @@ -1505,16 +1505,16 @@ export default { genre: "Character", config: [ - {"default":false,"name":"after_reaction","title":1654,"type":"bool"}, + {"default":false,"name":"after_reaction","title":1672,"type":"bool"}, ], }, "DoriC4": { name: "DoriC4", - nameLocale: 477, + nameLocale: 483, - description: 478, + description: 484, badge: getImage("Dori"), @@ -1522,18 +1522,18 @@ export default { genre: "Character", config: [ - {"default":false,"name":"hp_below50","title":1266,"type":"bool"}, + {"default":false,"name":"hp_below50","title":1278,"type":"bool"}, - {"default":true,"name":"energy_below50","title":236,"type":"bool"}, + {"default":true,"name":"energy_below50","title":240,"type":"bool"}, ], }, "NilouTalent1": { name: "NilouTalent1", - nameLocale: 532, + nameLocale: 538, - description: 468, + description: 473, badge: getImage("Nilou"), @@ -1546,9 +1546,9 @@ export default { "NilouTalent2": { name: "NilouTalent2", - nameLocale: 533, + nameLocale: 539, - description: 458, + description: 463, badge: getImage("Nilou"), @@ -1556,16 +1556,16 @@ export default { genre: "Character", config: [ - {"default":60000.0,"name":"hp","title":535,"type":"floatInput"}, + {"default":60000.0,"name":"hp","title":541,"type":"floatInput"}, ], }, "CandaceQ": { name: "CandaceQ", - nameLocale: 446, + nameLocale: 451, - description: 1549, + description: 1567, badge: getImage("Candace"), @@ -1578,9 +1578,9 @@ export default { "CandaceTalent2": { name: "CandaceTalent2", - nameLocale: 445, + nameLocale: 450, - description: 466, + description: 471, badge: getImage("Candace"), @@ -1588,16 +1588,16 @@ export default { genre: "Character", config: [ - {"default":30000.0,"name":"hp","title":447,"type":"floatInput"}, + {"default":30000.0,"name":"hp","title":452,"type":"floatInput"}, ], }, "NahidaTalent1": { name: "NahidaTalent1", - nameLocale: 1390, + nameLocale: 1404, - description: 794, + description: 801, badge: getImage("Nahida"), @@ -1605,16 +1605,16 @@ export default { genre: "Character", config: [ - {"default":1000.0,"max":3000.0,"min":0.0,"name":"max_em","title":1728,"type":"float"}, + {"default":1000.0,"max":3000.0,"min":0.0,"name":"max_em","title":1747,"type":"float"}, ], }, "FaruzanQ": { name: "FaruzanQ", - nameLocale: 1097, + nameLocale: 1108, - description: 1233, + description: 1245, badge: getImage("Faruzan"), @@ -1622,26 +1622,26 @@ export default { genre: "Character", config: [ - {"default":650,"max":1000,"min":0,"name":"base_atk","title":1098,"type":"int"}, + {"default":650,"max":1000,"min":0,"name":"base_atk","title":1109,"type":"int"}, - {"default":10,"max":15,"min":1,"name":"q_level","title":18,"type":"int"}, + {"default":10,"max":15,"min":1,"name":"q_level","title":19,"type":"int"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate_q1","title":43,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate_q1","title":47,"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":42,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate_talent2","title":20,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate_talent2","title":21,"type":"float"}, - {"default":false,"name":"enable_c6","title":246,"type":"bool"}, + {"default":false,"name":"enable_c6","title":250,"type":"bool"}, ], }, "Mika": { name: "Mika", - nameLocale: 1381, + nameLocale: 1395, - description: 823, + description: 831, badge: getImage("Mika"), @@ -1649,18 +1649,18 @@ export default { genre: "Character", config: [ - {"default":3.0,"max":5.0,"min":0.0,"name":"stack_talent2","title":185,"type":"float"}, + {"default":3.0,"max":5.0,"min":0.0,"name":"stack_talent2","title":189,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate_c6","title":248,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate_c6","title":252,"type":"float"}, ], }, "KavehQ": { name: "KavehQ", - nameLocale: 346, + nameLocale: 350, - description: 1725, + description: 1744, badge: getImage("Kaveh"), @@ -1668,18 +1668,18 @@ export default { genre: "Character", config: [ - {"default":8,"max":15,"min":1,"name":"q_level","title":347,"type":"int"}, + {"default":8,"max":15,"min":1,"name":"q_level","title":351,"type":"int"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1071,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1081,"type":"float"}, ], }, "BaizhuTalent2": { name: "BaizhuTalent2", - nameLocale: 1301, + nameLocale: 1313, - description: 357, + description: 362, badge: getImage("Baizhuer"), @@ -1687,18 +1687,18 @@ export default { genre: "Character", config: [ - {"default":50000.0,"max":50000.0,"min":0.0,"name":"hp","title":1303,"type":"float"}, + {"default":50000.0,"max":50000.0,"min":0.0,"name":"hp","title":1315,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1071,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1081,"type":"float"}, ], }, "BaizhuC4": { name: "BaizhuC4", - nameLocale: 1302, + nameLocale: 1314, - description: 795, + description: 802, badge: getImage("Baizhuer"), @@ -1706,16 +1706,16 @@ export default { genre: "Character", config: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1071,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1081,"type":"float"}, ], }, "FreedomSworn": { name: "FreedomSworn", - nameLocale: 1448, + nameLocale: 1462, - description: 22, + description: 23, badge: getImageW("Sword_Widsith"), @@ -1723,16 +1723,16 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1384,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1398,"type":"intInput"}, ], }, "SongOfBrokenPines": { name: "SongOfBrokenPines", - nameLocale: 1032, + nameLocale: 1041, - description: 23, + description: 24, badge: getImageW("Claymore_Widsith"), @@ -1740,16 +1740,16 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1384,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1398,"type":"intInput"}, ], }, "WolfsGravestone": { name: "WolfsGravestone", - nameLocale: 1209, + nameLocale: 1221, - description: 735, + description: 742, badge: getImageW("Claymore_Wolfmound"), @@ -1757,16 +1757,16 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1384,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1398,"type":"intInput"}, ], }, "ThrillingTalesOfDragonSlayers": { name: "ThrillingTalesOfDragonSlayers", - nameLocale: 1563, + nameLocale: 1581, - description: 171, + description: 175, badge: getImageW("Catalyst_Pulpfic"), @@ -1774,16 +1774,16 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1384,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1398,"type":"intInput"}, ], }, "ElegyOfTheEnd": { name: "ElegyOfTheEnd", - nameLocale: 1396, + nameLocale: 1410, - description: 337, + description: 341, badge: getImageW("Bow_Widsith"), @@ -1791,16 +1791,16 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1384,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1398,"type":"intInput"}, ], }, "HakushinRing": { name: "HakushinRing", - nameLocale: 1308, + nameLocale: 1320, - description: 1058, + description: 1068, badge: getImageW("Catalyst_Bakufu"), @@ -1808,18 +1808,18 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1384,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1398,"type":"intInput"}, - {"default":"Electro","name":"element","title":189,"type":"element8"}, + {"default":"Electro","name":"element","title":193,"type":"element8"}, ], }, "SapwoodBlade": { name: "SapwoodBlade", - nameLocale: 352, + nameLocale: 356, - description: 701, + description: 708, badge: getImageW("Sword_Arakalari"), @@ -1827,18 +1827,18 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1384,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1398,"type":"intInput"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":617,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":624,"type":"float"}, ], }, "Moonpiercer": { name: "Moonpiercer", - nameLocale: 1583, + nameLocale: 1601, - description: 702, + description: 709, badge: getImageW("Pole_Arakalari"), @@ -1846,16 +1846,16 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1384,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1398,"type":"intInput"}, ], }, "XiphosMoonlight": { name: "XiphosMoonlight", - nameLocale: 1534, + nameLocale: 1552, - description: 1528, + description: 1546, badge: getImageW("Sword_Pleroma"), @@ -1863,18 +1863,18 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1384,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1398,"type":"intInput"}, - {"default":900.0,"name":"em","title":228,"type":"floatInput"}, + {"default":900.0,"name":"em","title":233,"type":"floatInput"}, ], }, "MakhairaAquamarine": { name: "MakhairaAquamarine", - nameLocale: 1228, + nameLocale: 1240, - description: 32, + description: 33, badge: getImageW("Claymore_Pleroma"), @@ -1882,18 +1882,18 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1384,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1398,"type":"intInput"}, - {"default":900.0,"name":"em","title":228,"type":"floatInput"}, + {"default":900.0,"name":"em","title":233,"type":"floatInput"}, ], }, "KeyOfKhajNisut": { name: "KeyOfKhajNisut", - nameLocale: 441, + nameLocale: 446, - description: 581, + description: 588, badge: getImageW("Sword_Deshret"), @@ -1901,18 +1901,18 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1384,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1398,"type":"intInput"}, - {"default":20000.0,"name":"hp","title":1260,"type":"floatInput"}, + {"default":20000.0,"name":"hp","title":1272,"type":"floatInput"}, ], }, "ResonancePyro2": { name: "ResonancePyro2", - nameLocale: 197, + nameLocale: 201, - description: 724, + description: 731, badge: ResonancePyro2_image, @@ -1925,9 +1925,9 @@ export default { "ResonanceCryo2": { name: "ResonanceCryo2", - nameLocale: 198, + nameLocale: 202, - description: 719, + description: 726, badge: ResonanceCryo2_image, @@ -1935,16 +1935,16 @@ export default { genre: "Resonance", config: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":617,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":624,"type":"float"}, ], }, "ResonanceGeo2": { name: "ResonanceGeo2", - nameLocale: 195, + nameLocale: 199, - description: 694, + description: 701, badge: ResonanceGeo2_image, @@ -1952,18 +1952,18 @@ export default { genre: "Resonance", config: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate1","title":745,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate1","title":753,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate2","title":747,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate2","title":755,"type":"float"}, ], }, "ResonanceHydro2": { name: "ResonanceHydro2", - nameLocale: 196, + nameLocale: 200, - description: 1162, + description: 1173, badge: ResonanceHydro2_image, @@ -1976,9 +1976,9 @@ export default { "ResonanceDendro2": { name: "ResonanceDendro2", - nameLocale: 199, + nameLocale: 203, - description: 230, + description: 234, badge: ResonanceDendro2_image, @@ -1986,18 +1986,18 @@ export default { genre: "Resonance", config: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate1","title":745,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate1","title":753,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate2","title":747,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate2","title":755,"type":"float"}, ], }, "Instructor4": { name: "Instructor4", - nameLocale: 755, + nameLocale: 762, - description: 1554, + description: 1572, badge: getImageA("UI_RelicIcon_10007_4"), @@ -2010,9 +2010,9 @@ export default { "NoblesseOblige4": { name: "NoblesseOblige4", - nameLocale: 815, + nameLocale: 823, - description: 790, + description: 797, badge: getImageA("UI_RelicIcon_15007_4"), @@ -2025,9 +2025,9 @@ export default { "ArchaicPetra4": { name: "ArchaicPetra4", - nameLocale: 647, + nameLocale: 654, - description: 1488, + description: 1502, badge: getImageA("UI_RelicIcon_15014_4"), @@ -2035,16 +2035,16 @@ export default { genre: "Artifact", config: [ - {"default":"Electro","name":"element","title":1399,"type":"element4"}, + {"default":"Electro","name":"element","title":1413,"type":"element4"}, ], }, "ViridescentVenerer4": { name: "ViridescentVenerer4", - nameLocale: 1419, + nameLocale: 1433, - description: 1050, + description: 1060, badge: getImageA("UI_RelicIcon_15002_4"), @@ -2052,16 +2052,16 @@ export default { genre: "Artifact", config: [ - {"default":"Electro","name":"element","title":668,"type":"element4"}, + {"default":"Electro","name":"element","title":675,"type":"element4"}, ], }, "TenacityOfTheMillelith4": { name: "TenacityOfTheMillelith4", - nameLocale: 335, + nameLocale: 339, - description: 205, + description: 209, badge: getImageA("UI_RelicIcon_15017_4"), @@ -2074,9 +2074,9 @@ export default { "DeepwoodMemories4": { name: "DeepwoodMemories4", - nameLocale: 1130, + nameLocale: 1141, - description: 212, + description: 215, 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":617,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":624,"type":"float"}, ], }, diff --git a/src/assets/_gen_character.js b/src/assets/_gen_character.js index de6c9944..490cb7d6 100644 --- a/src/assets/_gen_character.js +++ b/src/assets/_gen_character.js @@ -44,6 +44,10 @@ import Bennett_splash from "@image/characters/Bennett_splash" // import Candace_avatar from "@image/characters/Candace_avatar" import Candace_splash from "@image/characters/Candace_splash" +// import Charlotte_card from "@image/characters/Charlotte_card" +// import Charlotte_avatar from "@image/characters/Charlotte_avatar" +import Charlotte_splash from "@image/characters/Charlotte_splash" + // import Chongyun_card from "@image/characters/Chongyun_card" // import Chongyun_avatar from "@image/characters/Chongyun_avatar" import Chongyun_splash from "@image/characters/Chongyun_splash" @@ -302,7 +306,7 @@ export default { AetherAnemo: { name: "AetherAnemo", - nameLocale: 1370, + nameLocale: 1384, element: "Anemo", weapon: "Sword", star: 5, @@ -310,54 +314,54 @@ export default { // avatar: AetherAnemo_avatar, avatar: getName("PlayerBoy"), splash: AetherAnemo_splash, - skillName1: 856, - skillName2: 1809, - skillName3: 1808, + skillName1: 865, + skillName2: 1830, + skillName3: 1829, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 75 }, + { index: 2, text: 79 }, - { index: 3, text: 425 }, + { index: 3, text: 430 }, - { index: 4, text: 143 }, + { index: 4, text: 147 }, - { index: 5, text: 1676 }, + { index: 5, text: 1692 }, - { index: 6, text: 1680 }, + { index: 6, text: 1698 }, - { index: 7, text: 86 }, + { index: 7, text: 90 }, - { index: 8, text: 174 }, + { index: 8, text: 178 }, - { index: 9, text: 1846 }, + { index: 9, text: 1867 }, ], skillMap2: [ - { index: 10, text: 304 }, + { index: 10, text: 308 }, - { index: 11, text: 1004 }, + { index: 11, text: 1013 }, - { index: 12, text: 305 }, + { index: 12, text: 309 }, - { index: 13, text: 1012 }, + { index: 13, text: 1021 }, ], skillMap3: [ - { index: 14, text: 1883 }, + { index: 14, text: 1904 }, - { index: 15, text: 1755 }, + { index: 15, text: 1774 }, - { index: 18, text: 1754 }, + { index: 18, text: 1773 }, - { index: 17, text: 1756 }, + { index: 17, text: 1775 }, - { index: 16, text: 1753 }, + { index: 16, text: 1772 }, ], config: [ @@ -370,7 +374,7 @@ export default { Albedo: { name: "Albedo", - nameLocale: 1745, + nameLocale: 1764, element: "Geo", weapon: "Sword", star: 5, @@ -378,44 +382,44 @@ export default { // avatar: Albedo_avatar, avatar: getName("Albedo"), splash: Albedo_splash, - skillName1: 900, - skillName2: 303, - skillName3: 1572, + skillName1: 909, + skillName2: 307, + skillName3: 1590, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 75 }, + { index: 2, text: 79 }, - { index: 3, text: 425 }, + { index: 3, text: 430 }, - { index: 4, text: 143 }, + { index: 4, text: 147 }, - { index: 5, text: 1673 }, + { index: 5, text: 1693 }, - { index: 6, text: 1678 }, + { index: 6, text: 1696 }, - { index: 7, text: 86 }, + { index: 7, text: 90 }, - { index: 8, text: 174 }, + { index: 8, text: 178 }, - { index: 9, text: 1846 }, + { index: 9, text: 1867 }, ], skillMap2: [ - { index: 10, text: 676 }, + { index: 10, text: 683 }, - { index: 11, text: 307 }, + { index: 11, text: 311 }, ], skillMap3: [ - { index: 12, text: 1195 }, + { index: 12, text: 1207 }, - { index: 13, text: 1281 }, + { index: 13, text: 1293 }, ], config: [ @@ -428,7 +432,7 @@ export default { Alhaitham: { name: "Alhaitham", - nameLocale: 1440, + nameLocale: 1454, element: "Dendro", weapon: "Sword", star: 5, @@ -436,37 +440,37 @@ export default { // avatar: Alhaitham_avatar, avatar: getName("Alhatham"), splash: Alhaitham_splash, - skillName1: 875, - skillName2: 254, - skillName3: 1066, + skillName1: 884, + skillName2: 258, + skillName3: 1076, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 76 }, + { index: 2, text: 80 }, - { index: 3, text: 77 }, + { index: 3, text: 81 }, - { index: 4, text: 425 }, + { index: 4, text: 430 }, - { index: 5, text: 143 }, + { index: 5, text: 147 }, - { index: 6, text: 1673 }, + { index: 6, text: 1693 }, - { index: 7, text: 1678 }, + { index: 7, text: 1696 }, - { index: 8, text: 86 }, + { index: 8, text: 90 }, - { index: 9, text: 174 }, + { index: 9, text: 178 }, - { index: 10, text: 1846 }, + { index: 10, text: 1867 }, ], skillMap2: [ - { index: 11, text: 1371 }, + { index: 11, text: 1385 }, { index: 12, text: 2 }, @@ -477,28 +481,28 @@ export default { ], skillMap3: [ - { index: 15, text: 344 }, + { index: 15, text: 347 }, ], config: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"c2_stack","title":409,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"c2_stack","title":414,"type":"float"}, - {"default":0.0,"max":3.0,"min":0.0,"name":"c4_stack","title":411,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"c4_stack","title":416,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"c6_rate","title":415,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"c6_rate","title":420,"type":"float"}, ], configSkill: [ - {"default":true,"name":"under_e","title":1244,"type":"bool"}, + {"default":true,"name":"under_e","title":1256,"type":"bool"}, ], }, Aloy: { name: "Aloy", - nameLocale: 453, + nameLocale: 458, element: "Cryo", weapon: "Bow", star: 5, @@ -506,42 +510,42 @@ export default { // avatar: Aloy_avatar, avatar: getName("Aloy"), splash: Aloy_splash, - skillName1: 862, - skillName2: 268, - skillName3: 998, + skillName1: 871, + skillName2: 272, + skillName3: 1007, skillMap1: [ - { index: 0, text: 53 }, + { index: 0, text: 57 }, - { index: 1, text: 54 }, + { index: 1, text: 58 }, - { index: 2, text: 124 }, + { index: 2, text: 128 }, - { index: 3, text: 75 }, + { index: 3, text: 79 }, - { index: 4, text: 425 }, + { index: 4, text: 430 }, - { index: 5, text: 1315 }, + { index: 5, text: 1329 }, - { index: 6, text: 1154 }, + { index: 6, text: 1165 }, - { index: 7, text: 86 }, + { index: 7, text: 90 }, - { index: 8, text: 174 }, + { index: 8, text: 178 }, - { index: 9, text: 1846 }, + { index: 9, text: 1867 }, ], skillMap2: [ - { index: 10, text: 267 }, + { index: 10, text: 271 }, - { index: 11, text: 279 }, + { index: 11, text: 283 }, ], skillMap3: [ - { index: 12, text: 676 }, + { index: 12, text: 683 }, ], config: [ @@ -549,14 +553,14 @@ export default { ], configSkill: [ - {"default":4,"max":4,"min":0,"name":"coil_count","title":1392,"type":"int"}, + {"default":4,"max":4,"min":0,"name":"coil_count","title":1406,"type":"int"}, ], }, Amber: { name: "Amber", - nameLocale: 550, + nameLocale: 556, element: "Pyro", weapon: "Bow", star: 4, @@ -564,42 +568,42 @@ export default { // avatar: Amber_avatar, avatar: getName("Ambor"), splash: Amber_splash, - skillName1: 888, - skillName2: 1197, - skillName3: 1377, + skillName1: 897, + skillName2: 1209, + skillName3: 1391, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 75 }, + { index: 2, text: 79 }, - { index: 3, text: 425 }, + { index: 3, text: 430 }, - { index: 4, text: 143 }, + { index: 4, text: 147 }, - { index: 5, text: 1315 }, + { index: 5, text: 1329 }, - { index: 6, text: 1154 }, + { index: 6, text: 1165 }, - { index: 7, text: 86 }, + { index: 7, text: 90 }, - { index: 8, text: 174 }, + { index: 8, text: 178 }, - { index: 9, text: 1846 }, + { index: 9, text: 1867 }, ], skillMap2: [ - { index: 10, text: 1198 }, + { index: 10, text: 1211 }, ], skillMap3: [ - { index: 11, text: 1378 }, + { index: 11, text: 1392 }, - { index: 12, text: 1379 }, + { index: 12, text: 1393 }, ], config: [ @@ -612,7 +616,7 @@ export default { AratakiItto: { name: "AratakiItto", - nameLocale: 1456, + nameLocale: 1470, element: "Geo", weapon: "Claymore", star: 5, @@ -620,35 +624,35 @@ export default { // avatar: AratakiItto_avatar, avatar: getName("Itto"), splash: AratakiItto_splash, - skillName1: 911, - skillName2: 1856, - skillName3: 1017, + skillName1: 920, + skillName2: 1877, + skillName3: 1026, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 75 }, + { index: 2, text: 79 }, - { index: 3, text: 425 }, + { index: 3, text: 430 }, - { index: 4, text: 1462 }, + { index: 4, text: 1476 }, - { index: 5, text: 1461 }, + { index: 5, text: 1475 }, - { index: 6, text: 597 }, + { index: 6, text: 604 }, - { index: 7, text: 86 }, + { index: 7, text: 90 }, - { index: 8, text: 174 }, + { index: 8, text: 178 }, - { index: 9, text: 1846 }, + { index: 9, text: 1867 }, ], skillMap2: [ - { index: 10, text: 676 }, + { index: 10, text: 683 }, ], skillMap3: [ @@ -659,14 +663,14 @@ export default { ], configSkill: [ - {"default":true,"name":"after_q","title":463,"type":"bool"}, + {"default":true,"name":"after_q","title":468,"type":"bool"}, ], }, Baizhu: { name: "Baizhu", - nameLocale: 1300, + nameLocale: 1312, element: "Dendro", weapon: "Catalyst", star: 5, @@ -674,47 +678,47 @@ export default { // avatar: Baizhu_avatar, avatar: getName("Baizhuer"), splash: Baizhu_splash, - skillName1: 907, - skillName2: 519, - skillName3: 650, + skillName1: 916, + skillName2: 525, + skillName3: 657, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 76 }, + { index: 2, text: 80 }, - { index: 3, text: 77 }, + { index: 3, text: 81 }, - { index: 4, text: 425 }, + { index: 4, text: 430 }, - { index: 5, text: 1672 }, + { index: 5, text: 1690 }, - { index: 6, text: 86 }, + { index: 6, text: 90 }, - { index: 7, text: 174 }, + { index: 7, text: 178 }, - { index: 8, text: 1846 }, + { index: 8, text: 1867 }, ], skillMap2: [ - { index: 9, text: 676 }, + { index: 9, text: 683 }, - { index: 10, text: 1095 }, + { index: 10, text: 1107 }, ], skillMap3: [ - { index: 12, text: 1171 }, + { index: 12, text: 1182 }, - { index: 11, text: 809 }, + { index: 11, text: 817 }, ], config: [ - {"default":false,"name":"hp_below_50","title":443,"type":"bool"}, + {"default":false,"name":"hp_below_50","title":448,"type":"bool"}, ], configSkill: [ @@ -724,7 +728,7 @@ export default { Barbara: { name: "Barbara", - nameLocale: 1442, + nameLocale: 1456, element: "Hydro", weapon: "Catalyst", star: 4, @@ -732,40 +736,40 @@ export default { // avatar: Barbara_avatar, avatar: getName("Barbara"), splash: Barbara_splash, - skillName1: 870, - skillName2: 1155, - skillName3: 1715, + skillName1: 879, + skillName2: 1166, + skillName3: 1734, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 75 }, + { index: 2, text: 79 }, - { index: 3, text: 425 }, + { index: 3, text: 430 }, - { index: 4, text: 1672 }, + { index: 4, text: 1690 }, - { index: 5, text: 86 }, + { index: 5, text: 90 }, - { index: 6, text: 174 }, + { index: 6, text: 178 }, - { index: 7, text: 1846 }, + { index: 7, text: 1867 }, ], skillMap2: [ - { index: 8, text: 404 }, + { index: 8, text: 409 }, - { index: 10, text: 707 }, + { index: 10, text: 713 }, - { index: 9, text: 1081 }, + { index: 9, text: 1092 }, ], skillMap3: [ - { index: 11, text: 1096 }, + { index: 11, text: 1106 }, ], config: [ @@ -778,7 +782,7 @@ export default { Beidou: { name: "Beidou", - nameLocale: 325, + nameLocale: 329, element: "Electro", weapon: "Claymore", star: 4, @@ -786,46 +790,46 @@ export default { // avatar: Beidou_avatar, avatar: getName("Beidou"), splash: Beidou_splash, - skillName1: 859, - skillName2: 712, - skillName3: 764, + skillName1: 868, + skillName2: 719, + skillName3: 771, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 75 }, + { index: 2, text: 79 }, - { index: 3, text: 425 }, + { index: 3, text: 430 }, - { index: 4, text: 143 }, + { index: 4, text: 147 }, - { index: 5, text: 1687 }, + { index: 5, text: 1705 }, - { index: 6, text: 1690 }, + { index: 6, text: 1708 }, - { index: 7, text: 86 }, + { index: 7, text: 90 }, - { index: 8, text: 174 }, + { index: 8, text: 178 }, - { index: 9, text: 1846 }, + { index: 9, text: 1867 }, ], skillMap2: [ - { index: 10, text: 461 }, + { index: 10, text: 465 }, - { index: 11, text: 49 }, + { index: 11, text: 53 }, - { index: 12, text: 121 }, + { index: 12, text: 125 }, ], skillMap3: [ - { index: 13, text: 676 }, + { index: 13, text: 683 }, - { index: 14, text: 1714 }, + { index: 14, text: 1733 }, ], config: [ @@ -838,7 +842,7 @@ export default { Bennett: { name: "Bennett", - nameLocale: 1234, + nameLocale: 1246, element: "Pyro", weapon: "Sword", star: 4, @@ -846,52 +850,52 @@ export default { // avatar: Bennett_avatar, avatar: getName("Bennett"), splash: Bennett_splash, - skillName1: 852, - skillName2: 1187, - skillName3: 1416, + skillName1: 861, + skillName2: 1199, + skillName3: 1430, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 75 }, + { index: 2, text: 79 }, - { index: 3, text: 425 }, + { index: 3, text: 430 }, - { index: 4, text: 143 }, + { index: 4, text: 147 }, - { index: 5, text: 1673 }, + { index: 5, text: 1693 }, - { index: 6, text: 1678 }, + { index: 6, text: 1696 }, - { index: 7, text: 86 }, + { index: 7, text: 90 }, - { index: 8, text: 174 }, + { index: 8, text: 178 }, - { index: 9, text: 1846 }, + { index: 9, text: 1867 }, ], skillMap2: [ - { index: 10, text: 1174 }, + { index: 10, text: 1186 }, - { index: 11, text: 60 }, + { index: 11, text: 64 }, - { index: 12, text: 61 }, + { index: 12, text: 65 }, - { index: 13, text: 131 }, + { index: 13, text: 135 }, - { index: 14, text: 132 }, + { index: 14, text: 136 }, - { index: 15, text: 1199 }, + { index: 15, text: 1210 }, ], skillMap3: [ - { index: 16, text: 676 }, + { index: 16, text: 683 }, - { index: 17, text: 704 }, + { index: 17, text: 712 }, ], config: [ @@ -904,7 +908,7 @@ export default { Candace: { name: "Candace", - nameLocale: 444, + nameLocale: 449, element: "Hydro", weapon: "Polearm", star: 4, @@ -912,59 +916,127 @@ export default { // avatar: Candace_avatar, avatar: getName("Candace"), splash: Candace_splash, - skillName1: 873, - skillName2: 439, - skillName3: 437, + skillName1: 882, + skillName2: 444, + skillName3: 442, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 76 }, + { index: 2, text: 80 }, - { index: 3, text: 77 }, + { index: 3, text: 81 }, - { index: 4, text: 425 }, + { index: 4, text: 430 }, - { index: 5, text: 1672 }, + { index: 5, text: 1690 }, - { index: 6, text: 86 }, + { index: 6, text: 90 }, - { index: 7, text: 174 }, + { index: 7, text: 178 }, - { index: 8, text: 1846 }, + { index: 8, text: 1867 }, ], skillMap2: [ - { index: 9, text: 460 }, + { index: 9, text: 466 }, - { index: 10, text: 1500 }, + { index: 10, text: 1514 }, ], skillMap3: [ - { index: 11, text: 676 }, + { index: 11, text: 683 }, - { index: 12, text: 1079 }, + { index: 12, text: 1090 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"c2_rate","title":408,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"c2_rate","title":413,"type":"float"}, ], configSkill: [ - {"default":true,"name":"crown","title":1593,"type":"bool"}, + {"default":true,"name":"crown","title":1611,"type":"bool"}, + + ], + }, + + Charlotte: { + name: "Charlotte", + nameLocale: 476, + element: "Cryo", + weapon: "Catalyst", + star: 4, + // card: Charlotte_card, + // avatar: Charlotte_avatar, + avatar: getName("Charlotte"), + splash: Charlotte_splash, + skillName1: 856, + skillName2: 359, + skillName3: 569, + skillMap1: [ + + { index: 0, text: 56 }, + + { index: 1, text: 128 }, + + { index: 2, text: 79 }, + + { index: 3, text: 1690 }, + + { index: 4, text: 90 }, + + { index: 5, text: 178 }, + + { index: 6, text: 1867 }, + + ], + skillMap2: [ + + { index: 7, text: 1190 }, + + { index: 8, text: 1732 }, + + { index: 9, text: 41 }, + + { index: 10, text: 45 }, + + ], + skillMap3: [ + + { index: 11, text: 683 }, + + { index: 13, text: 1324 }, + + { index: 12, text: 803 }, + + { index: 14, text: 1325 }, + + ], + config: [ + + {"default":1,"max":3,"min":0,"name":"talent2_fontaine_count","title":1045,"type":"int"}, + + {"default":1,"max":3,"min":0,"name":"talent2_non_fontaine_count","title":1818,"type":"int"}, + + {"default":0,"max":3,"min":0,"name":"c2_count","title":36,"type":"int"}, + + {"default":1.0,"max":1.0,"min":0.0,"name":"c2_rate","title":10,"type":"float"}, + + ], + configSkill: [ ], }, Chongyun: { name: "Chongyun", - nameLocale: 1662, + nameLocale: 1680, element: "Cryo", weapon: "Claymore", star: 4, @@ -972,38 +1044,38 @@ export default { // avatar: Chongyun_avatar, avatar: getName("Chongyun"), splash: Chongyun_splash, - skillName1: 878, - skillName2: 1169, - skillName3: 1168, + skillName1: 887, + skillName2: 1180, + skillName3: 1179, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 75 }, + { index: 2, text: 79 }, - { index: 3, text: 425 }, + { index: 3, text: 430 }, - { index: 4, text: 1687 }, + { index: 4, text: 1705 }, - { index: 5, text: 1690 }, + { index: 5, text: 1708 }, - { index: 6, text: 86 }, + { index: 6, text: 90 }, - { index: 7, text: 174 }, + { index: 7, text: 178 }, - { index: 8, text: 1846 }, + { index: 8, text: 1867 }, ], skillMap2: [ - { index: 9, text: 676 }, + { index: 9, text: 683 }, ], skillMap3: [ - { index: 10, text: 676 }, + { index: 10, text: 683 }, ], config: [ @@ -1016,7 +1088,7 @@ export default { Collei: { name: "Collei", - nameLocale: 1048, + nameLocale: 1058, element: "Dendro", weapon: "Bow", star: 4, @@ -1024,45 +1096,45 @@ export default { // avatar: Collei_avatar, avatar: getName("Collei"), splash: Collei_splash, - skillName1: 886, - skillName2: 699, - skillName3: 1221, + skillName1: 895, + skillName2: 706, + skillName3: 1233, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 75 }, + { index: 2, text: 79 }, - { index: 3, text: 425 }, + { index: 3, text: 430 }, - { index: 4, text: 1315 }, + { index: 4, text: 1329 }, - { index: 5, text: 1154 }, + { index: 5, text: 1165 }, - { index: 6, text: 86 }, + { index: 6, text: 90 }, - { index: 7, text: 174 }, + { index: 7, text: 178 }, - { index: 8, text: 1846 }, + { index: 8, text: 1867 }, ], skillMap2: [ - { index: 9, text: 676 }, + { index: 9, text: 683 }, ], skillMap3: [ - { index: 10, text: 1196 }, + { index: 10, text: 1208 }, - { index: 11, text: 1606 }, + { index: 11, text: 1624 }, ], config: [ - {"default":false,"name":"background","title":465,"type":"bool"}, + {"default":false,"name":"background","title":470,"type":"bool"}, ], configSkill: [ @@ -1072,7 +1144,7 @@ export default { Cyno: { name: "Cyno", - nameLocale: 1591, + nameLocale: 1609, element: "Electro", weapon: "Polearm", star: 5, @@ -1080,53 +1152,53 @@ export default { // avatar: Cyno_avatar, avatar: getName("Cyno"), splash: Cyno_splash, - skillName1: 843, - skillName2: 1367, - skillName3: 438, + skillName1: 851, + skillName2: 1381, + skillName3: 443, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 78 }, + { index: 2, text: 82 }, - { index: 3, text: 425 }, + { index: 3, text: 430 }, - { index: 4, text: 1672 }, + { index: 4, text: 1690 }, - { index: 5, text: 86 }, + { index: 5, text: 90 }, - { index: 6, text: 174 }, + { index: 6, text: 178 }, - { index: 7, text: 1846 }, + { index: 7, text: 1867 }, - { index: 11, text: 387 }, + { index: 11, text: 392 }, - { index: 12, text: 390 }, + { index: 12, text: 395 }, - { index: 13, text: 388 }, + { index: 13, text: 393 }, - { index: 14, text: 394 }, + { index: 14, text: 399 }, - { index: 15, text: 391 }, + { index: 15, text: 396 }, - { index: 16, text: 396 }, + { index: 16, text: 401 }, - { index: 17, text: 389 }, + { index: 17, text: 394 }, - { index: 18, text: 392 }, + { index: 18, text: 397 }, - { index: 19, text: 397 }, + { index: 19, text: 402 }, ], skillMap2: [ - { index: 8, text: 676 }, + { index: 8, text: 683 }, - { index: 9, text: 393 }, + { index: 9, text: 398 }, - { index: 10, text: 395 }, + { index: 10, text: 400 }, ], skillMap3: [ @@ -1134,21 +1206,21 @@ export default { ], config: [ - {"default":4.0,"max":5.0,"min":0.0,"name":"c2_stack","title":406,"type":"float"}, + {"default":4.0,"max":5.0,"min":0.0,"name":"c2_stack","title":411,"type":"float"}, - {"default":true,"name":"after_q","title":386,"type":"bool"}, + {"default":true,"name":"after_q","title":391,"type":"bool"}, ], configSkill: [ - {"default":true,"name":"under_judication","title":1552,"type":"bool"}, + {"default":true,"name":"under_judication","title":1570,"type":"bool"}, ], }, Dehya: { name: "Dehya", - nameLocale: 1638, + nameLocale: 1656, element: "Pyro", weapon: "Claymore", star: 5, @@ -1156,44 +1228,44 @@ export default { // avatar: Dehya_avatar, avatar: getName("Dehya"), splash: Dehya_splash, - skillName1: 865, - skillName2: 1193, - skillName3: 1173, + skillName1: 874, + skillName2: 1205, + skillName3: 1184, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 75 }, + { index: 2, text: 79 }, - { index: 3, text: 425 }, + { index: 3, text: 430 }, - { index: 4, text: 1687 }, + { index: 4, text: 1705 }, - { index: 5, text: 1690 }, + { index: 5, text: 1708 }, - { index: 6, text: 86 }, + { index: 6, text: 90 }, - { index: 7, text: 174 }, + { index: 7, text: 178 }, - { index: 8, text: 1846 }, + { index: 8, text: 1867 }, ], skillMap2: [ - { index: 9, text: 281 }, + { index: 9, text: 285 }, - { index: 10, text: 310 }, + { index: 10, text: 314 }, - { index: 11, text: 1798 }, + { index: 11, text: 1819 }, ], skillMap3: [ - { index: 12, text: 1181 }, + { index: 12, text: 1193 }, - { index: 13, text: 1188 }, + { index: 13, text: 1200 }, ], config: [ @@ -1201,16 +1273,16 @@ export default { ], configSkill: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"c2_rate","title":120,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"c2_rate","title":124,"type":"float"}, - {"default":3.5,"max":4.0,"min":0.0,"name":"c6_stack","title":249,"type":"float"}, + {"default":3.5,"max":4.0,"min":0.0,"name":"c6_stack","title":253,"type":"float"}, ], }, Diluc: { name: "Diluc", - nameLocale: 1632, + nameLocale: 1650, element: "Pyro", weapon: "Claymore", star: 5, @@ -1218,46 +1290,46 @@ export default { // avatar: Diluc_avatar, avatar: getName("Diluc"), splash: Diluc_splash, - skillName1: 874, - skillName2: 1645, - skillName3: 1873, + skillName1: 883, + skillName2: 1663, + skillName3: 1894, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 75 }, + { index: 2, text: 79 }, - { index: 3, text: 425 }, + { index: 3, text: 430 }, - { index: 4, text: 1687 }, + { index: 4, text: 1705 }, - { index: 5, text: 1690 }, + { index: 5, text: 1708 }, - { index: 6, text: 86 }, + { index: 6, text: 90 }, - { index: 7, text: 174 }, + { index: 7, text: 178 }, - { index: 8, text: 1846 }, + { index: 8, text: 1867 }, ], skillMap2: [ - { index: 9, text: 52 }, + { index: 9, text: 56 }, - { index: 10, text: 124 }, + { index: 10, text: 128 }, - { index: 11, text: 75 }, + { index: 11, text: 79 }, ], skillMap3: [ - { index: 12, text: 762 }, + { index: 12, text: 769 }, - { index: 13, text: 703 }, + { index: 13, text: 710 }, - { index: 14, text: 1200 }, + { index: 14, text: 1212 }, ], config: [ @@ -1265,14 +1337,14 @@ export default { ], configSkill: [ - {"default":true,"name":"pyro","title":830,"type":"bool"}, + {"default":true,"name":"pyro","title":838,"type":"bool"}, ], }, Diona: { name: "Diona", - nameLocale: 1634, + nameLocale: 1652, element: "Cryo", weapon: "Bow", star: 4, @@ -1280,44 +1352,44 @@ export default { // avatar: Diona_avatar, avatar: getName("Diona"), splash: Diona_splash, - skillName1: 883, - skillName2: 1220, - skillName3: 1018, + skillName1: 892, + skillName2: 1232, + skillName3: 1027, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 75 }, + { index: 2, text: 79 }, - { index: 3, text: 425 }, + { index: 3, text: 430 }, - { index: 4, text: 143 }, + { index: 4, text: 147 }, - { index: 5, text: 1315 }, + { index: 5, text: 1329 }, - { index: 6, text: 1154 }, + { index: 6, text: 1165 }, - { index: 7, text: 86 }, + { index: 7, text: 90 }, - { index: 8, text: 174 }, + { index: 8, text: 178 }, - { index: 9, text: 1846 }, + { index: 9, text: 1867 }, ], skillMap2: [ - { index: 10, text: 1219 }, + { index: 10, text: 1231 }, ], skillMap3: [ - { index: 11, text: 676 }, + { index: 11, text: 683 }, - { index: 12, text: 1800 }, + { index: 12, text: 1821 }, - { index: 13, text: 708 }, + { index: 13, text: 714 }, ], config: [ @@ -1330,7 +1402,7 @@ export default { Dori: { name: "Dori", - nameLocale: 476, + nameLocale: 482, element: "Electro", weapon: "Claymore", star: 4, @@ -1338,42 +1410,42 @@ export default { // avatar: Dori_avatar, avatar: getName("Dori"), splash: Dori_splash, - skillName1: 854, - skillName2: 1711, - skillName3: 348, + skillName1: 863, + skillName2: 1729, + skillName3: 352, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 125 }, + { index: 1, text: 129 }, - { index: 2, text: 126 }, + { index: 2, text: 130 }, - { index: 3, text: 75 }, + { index: 3, text: 79 }, - { index: 4, text: 1687 }, + { index: 4, text: 1705 }, - { index: 5, text: 1690 }, + { index: 5, text: 1708 }, - { index: 6, text: 86 }, + { index: 6, text: 90 }, - { index: 7, text: 174 }, + { index: 7, text: 178 }, - { index: 8, text: 1846 }, + { index: 8, text: 1867 }, ], skillMap2: [ - { index: 9, text: 770 }, + { index: 9, text: 777 }, - { index: 10, text: 419 }, + { index: 10, text: 424 }, ], skillMap3: [ - { index: 11, text: 1630 }, + { index: 11, text: 1648 }, - { index: 12, text: 706 }, + { index: 12, text: 715 }, ], config: [ @@ -1381,14 +1453,14 @@ export default { ], configSkill: [ - {"default":false,"name":"c6","title":35,"type":"bool"}, + {"default":false,"name":"c6","title":37,"type":"bool"}, ], }, Eula: { name: "Eula", - nameLocale: 167, + nameLocale: 171, element: "Cryo", weapon: "Claymore", star: 5, @@ -1396,52 +1468,52 @@ export default { // avatar: Eula_avatar, avatar: getName("Eula"), splash: Eula_splash, - skillName1: 899, - skillName2: 274, - skillName3: 289, + skillName1: 908, + skillName2: 278, + skillName3: 293, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 76 }, + { index: 2, text: 80 }, - { index: 3, text: 77 }, + { index: 3, text: 81 }, - { index: 4, text: 425 }, + { index: 4, text: 430 }, - { index: 5, text: 144 }, + { index: 5, text: 148 }, - { index: 6, text: 145 }, + { index: 6, text: 149 }, - { index: 7, text: 1687 }, + { index: 7, text: 1705 }, - { index: 8, text: 1690 }, + { index: 8, text: 1708 }, - { index: 9, text: 86 }, + { index: 9, text: 90 }, - { index: 10, text: 174 }, + { index: 10, text: 178 }, - { index: 11, text: 1846 }, + { index: 11, text: 1867 }, ], skillMap2: [ - { index: 12, text: 1174 }, + { index: 12, text: 1186 }, - { index: 13, text: 1712 }, + { index: 13, text: 1730 }, - { index: 14, text: 273 }, + { index: 14, text: 277 }, - { index: 15, text: 1067 }, + { index: 15, text: 1077 }, ], skillMap3: [ - { index: 16, text: 676 }, + { index: 16, text: 683 }, - { index: 17, text: 239 }, + { index: 17, text: 243 }, ], config: [ @@ -1449,14 +1521,14 @@ export default { ], configSkill: [ - {"default":0,"max":30,"min":0,"name":"lightfall_stack","title":240,"type":"int"}, + {"default":0,"max":30,"min":0,"name":"lightfall_stack","title":244,"type":"int"}, ], }, Faruzan: { name: "Faruzan", - nameLocale: 1231, + nameLocale: 1243, element: "Anemo", weapon: "Bow", star: 4, @@ -1464,57 +1536,57 @@ export default { // avatar: Faruzan_avatar, avatar: getName("Faruzan"), splash: Faruzan_splash, - skillName1: 906, - skillName2: 1797, - skillName3: 691, + skillName1: 915, + skillName2: 1817, + skillName3: 698, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 75 }, + { index: 2, text: 79 }, - { index: 3, text: 425 }, + { index: 3, text: 430 }, - { index: 4, text: 1672 }, + { index: 4, text: 1690 }, - { index: 4, text: 1154 }, + { index: 4, text: 1165 }, - { index: 6, text: 86 }, + { index: 6, text: 90 }, - { index: 7, text: 174 }, + { index: 7, text: 178 }, - { index: 8, text: 1846 }, + { index: 8, text: 1867 }, ], skillMap2: [ - { index: 9, text: 676 }, + { index: 9, text: 683 }, - { index: 10, text: 1807 }, + { index: 10, text: 1828 }, ], skillMap3: [ - { index: 11, text: 676 }, + { index: 11, text: 683 }, ], config: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"q_ratio","title":40,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"q_ratio","title":43,"type":"float"}, ], configSkill: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"talent2_ratio","title":36,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"talent2_ratio","title":38,"type":"float"}, ], }, Fischl: { name: "Fischl", - nameLocale: 1492, + nameLocale: 1506, element: "Electro", weapon: "Bow", star: 4, @@ -1522,42 +1594,42 @@ export default { // avatar: Fischl_avatar, avatar: getName("Fischl"), splash: Fischl_splash, - skillName1: 893, - skillName2: 485, - skillName3: 1438, + skillName1: 902, + skillName2: 491, + skillName3: 1452, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 75 }, + { index: 2, text: 79 }, - { index: 3, text: 425 }, + { index: 3, text: 430 }, - { index: 4, text: 143 }, + { index: 4, text: 147 }, - { index: 5, text: 1315 }, + { index: 5, text: 1329 }, - { index: 6, text: 1154 }, + { index: 6, text: 1165 }, - { index: 7, text: 86 }, + { index: 7, text: 90 }, - { index: 8, text: 174 }, + { index: 8, text: 178 }, - { index: 9, text: 1846 }, + { index: 9, text: 1867 }, ], skillMap2: [ - { index: 10, text: 528 }, + { index: 10, text: 534 }, - { index: 11, text: 373 }, + { index: 11, text: 378 }, ], skillMap3: [ - { index: 12, text: 1496 }, + { index: 12, text: 1510 }, ], config: [ @@ -1570,7 +1642,7 @@ export default { Freminet: { name: "Freminet", - nameLocale: 1490, + nameLocale: 1504, element: "Cryo", weapon: "Claymore", star: 4, @@ -1578,79 +1650,79 @@ export default { // avatar: Freminet_avatar, avatar: getName("Freminet"), splash: Freminet_splash, - skillName1: 871, - skillName2: 1119, - skillName3: 1218, + skillName1: 880, + skillName2: 1130, + skillName3: 1230, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 75 }, + { index: 2, text: 79 }, - { index: 3, text: 425 }, + { index: 3, text: 430 }, - { index: 4, text: 1687 }, + { index: 4, text: 1705 }, - { index: 5, text: 1690 }, + { index: 5, text: 1708 }, - { index: 6, text: 86 }, + { index: 6, text: 90 }, - { index: 7, text: 174 }, + { index: 7, text: 178 }, - { index: 8, text: 1846 }, + { index: 8, text: 1867 }, ], skillMap2: [ - { index: 9, text: 85 }, + { index: 9, text: 89 }, - { index: 10, text: 1791 }, + { index: 10, text: 1810 }, - { index: 11, text: 1764 }, + { index: 11, text: 1783 }, - { index: 12, text: 64 }, + { index: 12, text: 68 }, - { index: 13, text: 65 }, + { index: 13, text: 69 }, - { index: 14, text: 133 }, + { index: 14, text: 137 }, - { index: 15, text: 134 }, + { index: 15, text: 138 }, - { index: 16, text: 83 }, + { index: 16, text: 87 }, - { index: 17, text: 84 }, + { index: 17, text: 88 }, - { index: 18, text: 433 }, + { index: 18, text: 438 }, - { index: 19, text: 1170 }, + { index: 19, text: 1181 }, - { index: 21, text: 1792 }, + { index: 21, text: 1811 }, ], skillMap3: [ - { index: 20, text: 676 }, + { index: 20, text: 683 }, ], config: [ - {"default":0.0,"max":2.0,"min":0.0,"name":"c4_stack","title":413,"type":"float"}, + {"default":0.0,"max":2.0,"min":0.0,"name":"c4_stack","title":418,"type":"float"}, - {"default":0.0,"max":3.0,"min":0.0,"name":"c6_stack","title":414,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"c6_stack","title":419,"type":"float"}, ], configSkill: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":512,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":518,"type":"float"}, ], }, Ganyu: { name: "Ganyu", - nameLocale: 1254, + nameLocale: 1266, element: "Cryo", weapon: "Bow", star: 5, @@ -1658,63 +1730,63 @@ export default { // avatar: Ganyu_avatar, avatar: getName("Ganyu"), splash: Ganyu_splash, - skillName1: 872, - skillName2: 589, - skillName3: 1758, + skillName1: 881, + skillName2: 596, + skillName3: 1777, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 75 }, + { index: 2, text: 79 }, - { index: 3, text: 425 }, + { index: 3, text: 430 }, - { index: 4, text: 143 }, + { index: 4, text: 147 }, - { index: 5, text: 251 }, + { index: 5, text: 255 }, - { index: 6, text: 1315 }, + { index: 6, text: 1329 }, - { index: 7, text: 63 }, + { index: 7, text: 66 }, - { index: 8, text: 1790 }, + { index: 8, text: 1809 }, - { index: 9, text: 1789 }, + { index: 9, text: 1808 }, - { index: 10, text: 86 }, + { index: 10, text: 90 }, - { index: 11, text: 174 }, + { index: 11, text: 178 }, - { index: 12, text: 1846 }, + { index: 12, text: 1867 }, ], skillMap2: [ - { index: 13, text: 676 }, + { index: 13, text: 683 }, ], skillMap3: [ - { index: 14, text: 272 }, + { index: 14, text: 276 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":506,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":512,"type":"float"}, ], configSkill: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"talent1_rate","title":504,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent1_rate","title":510,"type":"float"}, ], }, Gorou: { name: "Gorou", - nameLocale: 148, + nameLocale: 152, element: "Geo", weapon: "Bow", star: 4, @@ -1722,40 +1794,40 @@ export default { // avatar: Gorou_avatar, avatar: getName("Gorou"), splash: Gorou_splash, - skillName1: 910, - skillName2: 1203, - skillName3: 257, + skillName1: 919, + skillName2: 1215, + skillName3: 261, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 75 }, + { index: 2, text: 79 }, - { index: 3, text: 425 }, + { index: 3, text: 430 }, - { index: 4, text: 1315 }, + { index: 4, text: 1329 }, - { index: 5, text: 1154 }, + { index: 5, text: 1165 }, - { index: 6, text: 86 }, + { index: 6, text: 90 }, - { index: 7, text: 174 }, + { index: 7, text: 178 }, - { index: 8, text: 1846 }, + { index: 8, text: 1867 }, ], skillMap2: [ - { index: 9, text: 676 }, + { index: 9, text: 683 }, ], skillMap3: [ - { index: 10, text: 676 }, + { index: 10, text: 683 }, - { index: 11, text: 592 }, + { index: 11, text: 599 }, ], config: [ @@ -1768,7 +1840,7 @@ export default { HuTao: { name: "HuTao", - nameLocale: 1433, + nameLocale: 1447, element: "Pyro", weapon: "Polearm", star: 5, @@ -1776,61 +1848,61 @@ export default { // avatar: HuTao_avatar, avatar: getName("Hutao"), splash: HuTao_splash, - skillName1: 858, - skillName2: 1506, - skillName3: 552, + skillName1: 867, + skillName2: 1520, + skillName3: 558, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 75 }, + { index: 2, text: 79 }, - { index: 3, text: 425 }, + { index: 3, text: 430 }, - { index: 4, text: 144 }, + { index: 4, text: 148 }, - { index: 5, text: 145 }, + { index: 5, text: 149 }, - { index: 6, text: 251 }, + { index: 6, text: 255 }, - { index: 7, text: 1672 }, + { index: 7, text: 1690 }, - { index: 8, text: 86 }, + { index: 8, text: 90 }, - { index: 9, text: 174 }, + { index: 9, text: 178 }, - { index: 10, text: 1846 }, + { index: 10, text: 1867 }, ], skillMap2: [ - { index: 11, text: 1509 }, + { index: 11, text: 1523 }, ], skillMap3: [ - { index: 12, text: 676 }, + { index: 12, text: 683 }, - { index: 13, text: 175 }, + { index: 13, text: 179 }, ], config: [ - {"default":true,"name":"le_50","title":1266,"type":"bool"}, + {"default":true,"name":"le_50","title":1278,"type":"bool"}, ], configSkill: [ - {"default":true,"name":"after_e","title":636,"type":"bool"}, + {"default":true,"name":"after_e","title":643,"type":"bool"}, ], }, Jean: { name: "Jean", - nameLocale: 1247, + nameLocale: 1259, element: "Anemo", weapon: "Sword", star: 5, @@ -1838,44 +1910,44 @@ export default { // avatar: Jean_avatar, avatar: getName("Qin"), splash: Jean_splash, - skillName1: 897, - skillName2: 1806, - skillName3: 1498, + skillName1: 906, + skillName2: 1827, + skillName3: 1512, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 75 }, + { index: 2, text: 79 }, - { index: 3, text: 425 }, + { index: 3, text: 430 }, - { index: 4, text: 143 }, + { index: 4, text: 147 }, - { index: 5, text: 1672 }, + { index: 5, text: 1690 }, - { index: 6, text: 86 }, + { index: 6, text: 90 }, - { index: 7, text: 174 }, + { index: 7, text: 178 }, - { index: 8, text: 1846 }, + { index: 8, text: 1867 }, ], skillMap2: [ - { index: 9, text: 676 }, + { index: 9, text: 683 }, ], skillMap3: [ - { index: 10, text: 1195 }, + { index: 10, text: 1207 }, - { index: 11, text: 294 }, + { index: 11, text: 298 }, - { index: 12, text: 1799 }, + { index: 12, text: 1820 }, - { index: 13, text: 705 }, + { index: 13, text: 711 }, ], config: [ @@ -1888,7 +1960,7 @@ export default { KaedeharaKazuha: { name: "KaedeharaKazuha", - nameLocale: 1036, + nameLocale: 1046, element: "Anemo", weapon: "Sword", star: 5, @@ -1896,68 +1968,68 @@ export default { // avatar: KaedeharaKazuha_avatar, avatar: getName("Kazuha"), splash: KaedeharaKazuha_splash, - skillName1: 863, - skillName2: 338, - skillName3: 70, + skillName1: 872, + skillName2: 342, + skillName3: 74, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 76 }, + { index: 2, text: 80 }, - { index: 3, text: 77 }, + { index: 3, text: 81 }, - { index: 4, text: 425 }, + { index: 4, text: 430 }, - { index: 5, text: 146 }, + { index: 5, text: 150 }, - { index: 6, text: 1674 }, + { index: 6, text: 1691 }, - { index: 6, text: 1679 }, + { index: 6, text: 1697 }, - { index: 8, text: 86 }, + { index: 8, text: 90 }, - { index: 9, text: 174 }, + { index: 9, text: 178 }, - { index: 10, text: 1846 }, + { index: 10, text: 1867 }, ], skillMap2: [ - { index: 11, text: 113 }, + { index: 11, text: 117 }, - { index: 12, text: 114 }, + { index: 12, text: 118 }, - { index: 13, text: 119 }, + { index: 13, text: 123 }, - { index: 14, text: 117 }, + { index: 14, text: 121 }, - { index: 15, text: 116 }, + { index: 15, text: 120 }, - { index: 16, text: 115 }, + { index: 16, text: 119 }, - { index: 17, text: 118 }, + { index: 17, text: 122 }, - { index: 18, text: 1176 }, + { index: 18, text: 1188 }, - { index: 19, text: 1713 }, + { index: 19, text: 1731 }, ], skillMap3: [ - { index: 20, text: 762 }, + { index: 20, text: 769 }, - { index: 21, text: 703 }, + { index: 21, text: 710 }, - { index: 22, text: 1755 }, + { index: 22, text: 1774 }, - { index: 23, text: 1754 }, + { index: 23, text: 1773 }, - { index: 24, text: 1753 }, + { index: 24, text: 1772 }, - { index: 25, text: 1756 }, + { index: 25, text: 1775 }, ], config: [ @@ -1965,14 +2037,14 @@ export default { ], configSkill: [ - {"default":false,"name":"after_e_or_q","title":250,"type":"bool"}, + {"default":false,"name":"after_e_or_q","title":254,"type":"bool"}, ], }, Kaeya: { name: "Kaeya", - nameLocale: 292, + nameLocale: 296, element: "Cryo", weapon: "Sword", star: 4, @@ -1980,40 +2052,40 @@ export default { // avatar: Kaeya_avatar, avatar: getName("Kaeya"), splash: Kaeya_splash, - skillName1: 847, - skillName2: 1794, - skillName3: 284, + skillName1: 855, + skillName2: 1813, + skillName3: 288, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 75 }, + { index: 2, text: 79 }, - { index: 3, text: 425 }, + { index: 3, text: 430 }, - { index: 4, text: 143 }, + { index: 4, text: 147 }, - { index: 5, text: 1673 }, + { index: 5, text: 1693 }, - { index: 6, text: 1678 }, + { index: 6, text: 1696 }, - { index: 7, text: 86 }, + { index: 7, text: 90 }, - { index: 8, text: 174 }, + { index: 8, text: 178 }, - { index: 9, text: 1846 }, + { index: 9, text: 1867 }, ], skillMap2: [ - { index: 10, text: 676 }, + { index: 10, text: 683 }, ], skillMap3: [ - { index: 11, text: 676 }, + { index: 11, text: 683 }, ], config: [ @@ -2026,7 +2098,7 @@ export default { KamisatoAyaka: { name: "KamisatoAyaka", - nameLocale: 1349, + nameLocale: 1363, element: "Cryo", weapon: "Sword", star: 5, @@ -2034,61 +2106,61 @@ export default { // avatar: KamisatoAyaka_avatar, avatar: getName("Ayaka"), splash: KamisatoAyaka_splash, - skillName1: 889, - skillName2: 1339, - skillName3: 1342, + skillName1: 898, + skillName2: 1353, + skillName3: 1356, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 75 }, + { index: 2, text: 79 }, - { index: 3, text: 431 }, + { index: 3, text: 436 }, - { index: 5, text: 143 }, + { index: 5, text: 147 }, - { index: 6, text: 1682 }, + { index: 6, text: 1700 }, - { index: 8, text: 86 }, + { index: 8, text: 90 }, - { index: 9, text: 174 }, + { index: 9, text: 178 }, - { index: 10, text: 1846 }, + { index: 10, text: 1867 }, ], skillMap2: [ - { index: 11, text: 676 }, + { index: 11, text: 683 }, ], skillMap3: [ - { index: 12, text: 301 }, + { index: 12, text: 305 }, - { index: 13, text: 1405 }, + { index: 13, text: 1419 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"talent1_rate","title":507,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent1_rate","title":513,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":508,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":514,"type":"float"}, ], configSkill: [ - {"default":true,"name":"after_dash","title":1343,"type":"bool"}, + {"default":true,"name":"after_dash","title":1357,"type":"bool"}, - {"default":false,"name":"use_c6","title":247,"type":"bool"}, + {"default":false,"name":"use_c6","title":251,"type":"bool"}, ], }, KamisatoAyato: { name: "KamisatoAyato", - nameLocale: 1344, + nameLocale: 1358, element: "Hydro", weapon: "Sword", star: 5, @@ -2096,44 +2168,44 @@ export default { // avatar: KamisatoAyato_avatar, avatar: getName("Ayato"), splash: KamisatoAyato_splash, - skillName1: 890, - skillName2: 1341, - skillName3: 1340, + skillName1: 899, + skillName2: 1355, + skillName3: 1354, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 75 }, + { index: 2, text: 79 }, - { index: 3, text: 426 }, + { index: 3, text: 431 }, - { index: 4, text: 143 }, + { index: 4, text: 147 }, - { index: 5, text: 1672 }, + { index: 5, text: 1690 }, - { index: 6, text: 86 }, + { index: 6, text: 90 }, - { index: 7, text: 174 }, + { index: 7, text: 178 }, - { index: 8, text: 1846 }, + { index: 8, text: 1867 }, ], skillMap2: [ - { index: 9, text: 58 }, + { index: 9, text: 62 }, - { index: 10, text: 129 }, + { index: 10, text: 133 }, - { index: 11, text: 82 }, + { index: 11, text: 86 }, - { index: 12, text: 1077 }, + { index: 12, text: 1088 }, ], skillMap3: [ - { index: 13, text: 1082 }, + { index: 13, text: 1093 }, ], config: [ @@ -2141,16 +2213,16 @@ export default { ], configSkill: [ - {"default":4,"max":5,"min":0,"name":"e_stack","title":33,"type":"int"}, + {"default":4,"max":5,"min":0,"name":"e_stack","title":34,"type":"int"}, - {"default":true,"name":"in_q","title":464,"type":"bool"}, + {"default":true,"name":"in_q","title":469,"type":"bool"}, ], }, Kaveh: { name: "Kaveh", - nameLocale: 345, + nameLocale: 349, element: "Dendro", weapon: "Claymore", star: 4, @@ -2158,57 +2230,57 @@ export default { // avatar: Kaveh_avatar, avatar: getName("Kaveh"), splash: Kaveh_splash, - skillName1: 869, - skillName2: 1298, - skillName3: 1387, + skillName1: 878, + skillName2: 1310, + skillName3: 1401, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 75 }, + { index: 2, text: 79 }, - { index: 3, text: 425 }, + { index: 3, text: 430 }, - { index: 4, text: 1687 }, + { index: 4, text: 1705 }, - { index: 5, text: 1690 }, + { index: 5, text: 1708 }, - { index: 6, text: 86 }, + { index: 6, text: 90 }, - { index: 7, text: 174 }, + { index: 7, text: 178 }, - { index: 8, text: 1846 }, + { index: 8, text: 1867 }, ], skillMap2: [ - { index: 9, text: 676 }, + { index: 9, text: 683 }, ], skillMap3: [ - { index: 10, text: 676 }, + { index: 10, text: 683 }, ], config: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"talent2_stack","title":509,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"talent2_stack","title":515,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"c2_rate","title":410,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"c2_rate","title":415,"type":"float"}, ], configSkill: [ - {"default":false,"name":"after_q","title":41,"type":"bool"}, + {"default":false,"name":"after_q","title":44,"type":"bool"}, ], }, Keqing: { name: "Keqing", - nameLocale: 308, + nameLocale: 312, element: "Electro", weapon: "Sword", star: 5, @@ -2216,67 +2288,67 @@ export default { // avatar: Keqing_avatar, avatar: getName("Keqing"), splash: Keqing_splash, - skillName1: 845, - skillName2: 818, - skillName3: 501, + skillName1: 853, + skillName2: 826, + skillName3: 507, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 75 }, + { index: 2, text: 79 }, - { index: 3, text: 427 }, + { index: 3, text: 432 }, - { index: 4, text: 428 }, + { index: 4, text: 433 }, - { index: 5, text: 143 }, + { index: 5, text: 147 }, - { index: 6, text: 1673 }, + { index: 6, text: 1693 }, - { index: 7, text: 1678 }, + { index: 7, text: 1696 }, - { index: 8, text: 86 }, + { index: 8, text: 90 }, - { index: 9, text: 174 }, + { index: 9, text: 178 }, - { index: 10, text: 1846 }, + { index: 10, text: 1867 }, ], skillMap2: [ - { index: 11, text: 1772 }, + { index: 11, text: 1791 }, - { index: 12, text: 762 }, + { index: 12, text: 769 }, - { index: 13, text: 1771 }, + { index: 13, text: 1790 }, ], skillMap3: [ - { index: 15, text: 676 }, + { index: 15, text: 683 }, - { index: 16, text: 1631 }, + { index: 16, text: 1649 }, - { index: 18, text: 1001 }, + { index: 18, text: 1010 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":513,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":519,"type":"float"}, ], configSkill: [ - {"default":true,"name":"after_e","title":13,"type":"bool"}, + {"default":true,"name":"after_e","title":14,"type":"bool"}, ], }, Klee: { name: "Klee", - nameLocale: 374, + nameLocale: 379, element: "Pyro", weapon: "Catalyst", star: 5, @@ -2284,38 +2356,38 @@ export default { // avatar: Klee_avatar, avatar: getName("Klee"), splash: Klee_splash, - skillName1: 885, - skillName2: 1608, - skillName3: 1613, + skillName1: 894, + skillName2: 1626, + skillName3: 1631, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 75 }, + { index: 2, text: 79 }, - { index: 3, text: 1672 }, + { index: 3, text: 1690 }, - { index: 4, text: 1683 }, + { index: 4, text: 1701 }, - { index: 5, text: 86 }, + { index: 5, text: 90 }, - { index: 6, text: 174 }, + { index: 6, text: 178 }, - { index: 7, text: 1846 }, + { index: 7, text: 1867 }, ], skillMap2: [ - { index: 8, text: 1609 }, + { index: 8, text: 1627 }, - { index: 9, text: 1573 }, + { index: 9, text: 1591 }, ], skillMap3: [ - { index: 10, text: 1614 }, + { index: 10, text: 1632 }, ], config: [ @@ -2328,7 +2400,7 @@ export default { KujouSara: { name: "KujouSara", - nameLocale: 107, + nameLocale: 111, element: "Electro", weapon: "Bow", star: 4, @@ -2336,42 +2408,42 @@ export default { // avatar: KujouSara_avatar, avatar: getName("Sara"), splash: KujouSara_splash, - skillName1: 912, - skillName2: 1858, - skillName3: 1192, + skillName1: 921, + skillName2: 1879, + skillName3: 1204, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 75 }, + { index: 2, text: 79 }, - { index: 3, text: 425 }, + { index: 3, text: 430 }, - { index: 4, text: 143 }, + { index: 4, text: 147 }, - { index: 5, text: 1315 }, + { index: 5, text: 1329 }, - { index: 6, text: 1154 }, + { index: 6, text: 1165 }, - { index: 7, text: 86 }, + { index: 7, text: 90 }, - { index: 8, text: 174 }, + { index: 8, text: 178 }, - { index: 9, text: 1846 }, + { index: 9, text: 1867 }, ], skillMap2: [ - { index: 10, text: 492 }, + { index: 10, text: 498 }, ], skillMap3: [ - { index: 11, text: 493 }, + { index: 11, text: 499 }, - { index: 12, text: 494 }, + { index: 12, text: 500 }, ], config: [ @@ -2384,7 +2456,7 @@ export default { KukiShinobu: { name: "KukiShinobu", - nameLocale: 102, + nameLocale: 106, element: "Electro", weapon: "Sword", star: 4, @@ -2392,55 +2464,55 @@ export default { // avatar: KukiShinobu_avatar, avatar: getName("Shinobu"), splash: KukiShinobu_splash, - skillName1: 861, - skillName2: 1605, - skillName3: 637, + skillName1: 870, + skillName2: 1623, + skillName3: 644, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 75 }, + { index: 2, text: 79 }, - { index: 3, text: 425 }, + { index: 3, text: 430 }, - { index: 4, text: 1673 }, + { index: 4, text: 1693 }, - { index: 5, text: 1678 }, + { index: 5, text: 1696 }, - { index: 6, text: 1672 }, + { index: 6, text: 1690 }, - { index: 7, text: 86 }, + { index: 7, text: 90 }, - { index: 8, text: 174 }, + { index: 8, text: 178 }, - { index: 9, text: 1846 }, + { index: 9, text: 1867 }, ], skillMap2: [ - { index: 10, text: 676 }, + { index: 10, text: 683 }, - { index: 11, text: 1604 }, + { index: 11, text: 1622 }, - { index: 12, text: 1603 }, + { index: 12, text: 1621 }, ], skillMap3: [ - { index: 13, text: 343 }, + { index: 13, text: 348 }, - { index: 14, text: 641 }, + { index: 14, text: 648 }, - { index: 15, text: 642 }, + { index: 15, text: 649 }, ], config: [ - {"default":true,"name":"hp_le_50","title":1265,"type":"bool"}, + {"default":true,"name":"hp_le_50","title":1277,"type":"bool"}, - {"default":false,"name":"use_c6","title":385,"type":"bool"}, + {"default":false,"name":"use_c6","title":390,"type":"bool"}, ], configSkill: [ @@ -2450,7 +2522,7 @@ export default { Layla: { name: "Layla", - nameLocale: 1470, + nameLocale: 1484, element: "Cryo", weapon: "Sword", star: 4, @@ -2458,38 +2530,38 @@ export default { // avatar: Layla_avatar, avatar: getName("Layla"), splash: Layla_splash, - skillName1: 881, - skillName2: 452, - skillName3: 819, + skillName1: 890, + skillName2: 457, + skillName3: 827, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 75 }, + { index: 2, text: 79 }, - { index: 3, text: 1673 }, + { index: 3, text: 1693 }, - { index: 4, text: 1678 }, + { index: 4, text: 1696 }, - { index: 5, text: 86 }, + { index: 5, text: 90 }, - { index: 6, text: 174 }, + { index: 6, text: 178 }, - { index: 7, text: 1846 }, + { index: 7, text: 1867 }, ], skillMap2: [ - { index: 8, text: 676 }, + { index: 8, text: 683 }, - { index: 9, text: 1831 }, + { index: 9, text: 1852 }, ], skillMap3: [ - { index: 10, text: 816 }, + { index: 10, text: 824 }, ], config: [ @@ -2502,7 +2574,7 @@ export default { Lisa: { name: "Lisa", - nameLocale: 98, + nameLocale: 102, element: "Electro", weapon: "Catalyst", star: 4, @@ -2510,44 +2582,44 @@ export default { // avatar: Lisa_avatar, avatar: getName("Lisa"), splash: Lisa_splash, - skillName1: 866, - skillName2: 1452, - skillName3: 1502, + skillName1: 875, + skillName2: 1466, + skillName3: 1516, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 75 }, + { index: 2, text: 79 }, - { index: 3, text: 425 }, + { index: 3, text: 430 }, - { index: 4, text: 1672 }, + { index: 4, text: 1690 }, - { index: 5, text: 86 }, + { index: 5, text: 90 }, - { index: 6, text: 174 }, + { index: 6, text: 178 }, - { index: 7, text: 1846 }, + { index: 7, text: 1867 }, ], skillMap2: [ - { index: 8, text: 1174 }, + { index: 8, text: 1186 }, - { index: 9, text: 807 }, + { index: 9, text: 815 }, - { index: 10, text: 50 }, + { index: 10, text: 54 }, - { index: 11, text: 122 }, + { index: 11, text: 126 }, - { index: 12, text: 73 }, + { index: 12, text: 77 }, ], skillMap3: [ - { index: 13, text: 1770 }, + { index: 13, text: 1789 }, ], config: [ @@ -2560,7 +2632,7 @@ export default { Lynette: { name: "Lynette", - nameLocale: 1246, + nameLocale: 1258, element: "Anemo", weapon: "Sword", star: 4, @@ -2568,65 +2640,65 @@ export default { // avatar: Lynette_avatar, avatar: getName("Lynette"), splash: Lynette_splash, - skillName1: 902, - skillName2: 1578, - skillName3: 1855, + skillName1: 911, + skillName2: 1596, + skillName3: 1876, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 76 }, + { index: 2, text: 80 }, - { index: 3, text: 77 }, + { index: 3, text: 81 }, - { index: 4, text: 425 }, + { index: 4, text: 430 }, - { index: 5, text: 1673 }, + { index: 5, text: 1693 }, - { index: 6, text: 1678 }, + { index: 6, text: 1696 }, - { index: 7, text: 86 }, + { index: 7, text: 90 }, - { index: 8, text: 174 }, + { index: 8, text: 178 }, - { index: 9, text: 1846 }, + { index: 9, text: 1867 }, ], skillMap2: [ - { index: 10, text: 1577 }, + { index: 10, text: 1595 }, - { index: 11, text: 1116 }, + { index: 11, text: 1127 }, - { index: 12, text: 403 }, + { index: 12, text: 410 }, ], skillMap3: [ - { index: 13, text: 676 }, + { index: 13, text: 683 }, - { index: 14, text: 648 }, + { index: 14, text: 655 }, - { index: 15, text: 631 }, + { index: 15, text: 638 }, - { index: 16, text: 633 }, + { index: 16, text: 640 }, - { index: 17, text: 634 }, + { index: 17, text: 641 }, - { index: 18, text: 635 }, + { index: 18, text: 642 }, - { index: 19, text: 632 }, + { index: 19, text: 639 }, ], config: [ - {"default":0.5,"max":1.0,"min":0.0,"name":"talent1_rate","title":511,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"talent1_rate","title":517,"type":"float"}, - {"default":4,"max":4,"min":1,"name":"talent1_count","title":510,"type":"int"}, + {"default":4,"max":4,"min":1,"name":"talent1_count","title":516,"type":"int"}, - {"default":0.5,"max":1.0,"min":0.0,"name":"talent2_rate","title":516,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"talent2_rate","title":522,"type":"float"}, ], configSkill: [ @@ -2636,7 +2708,7 @@ export default { Lyney: { name: "Lyney", - nameLocale: 1034, + nameLocale: 1043, element: "Pyro", weapon: "Bow", star: 5, @@ -2644,46 +2716,46 @@ export default { // avatar: Lyney_avatar, avatar: getName("Lyney"), splash: Lyney_splash, - skillName1: 905, - skillName2: 1314, - skillName3: 488, + skillName1: 914, + skillName2: 1328, + skillName3: 494, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 78 }, + { index: 2, text: 82 }, - { index: 3, text: 425 }, + { index: 3, text: 430 }, - { index: 4, text: 1315 }, + { index: 4, text: 1329 }, - { index: 5, text: 63 }, + { index: 5, text: 66 }, - { index: 6, text: 1761 }, + { index: 6, text: 1780 }, - { index: 7, text: 86 }, + { index: 7, text: 90 }, - { index: 8, text: 174 }, + { index: 8, text: 178 }, - { index: 9, text: 1846 }, + { index: 9, text: 1867 }, - { index: 10, text: 1332 }, + { index: 10, text: 1346 }, - { index: 11, text: 1170 }, + { index: 11, text: 1181 }, ], skillMap2: [ - { index: 12, text: 676 }, + { index: 12, text: 683 }, ], skillMap3: [ - { index: 13, text: 676 }, + { index: 13, text: 683 }, - { index: 14, text: 625 }, + { index: 14, text: 632 }, ], config: [ @@ -2695,18 +2767,18 @@ export default { ], configSkill: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"prop_stack","title":1760,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"prop_stack","title":1779,"type":"float"}, - {"default":false,"name":"under_pyro","title":752,"type":"bool"}, + {"default":false,"name":"under_pyro","title":759,"type":"bool"}, - {"default":1,"max":3,"min":0,"name":"pyro_count","title":1729,"type":"int"}, + {"default":1,"max":3,"min":0,"name":"pyro_count","title":1748,"type":"int"}, ], }, Mona: { name: "Mona", - nameLocale: 1464, + nameLocale: 1478, element: "Hydro", weapon: "Catalyst", star: 5, @@ -2714,38 +2786,38 @@ export default { // avatar: Mona_avatar, avatar: getName("Mona"), splash: Mona_splash, - skillName1: 851, - skillName2: 1072, - skillName3: 817, + skillName1: 860, + skillName2: 1082, + skillName3: 825, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 75 }, + { index: 2, text: 79 }, - { index: 3, text: 425 }, + { index: 3, text: 430 }, - { index: 4, text: 1672 }, + { index: 4, text: 1690 }, - { index: 5, text: 86 }, + { index: 5, text: 90 }, - { index: 6, text: 174 }, + { index: 6, text: 178 }, - { index: 7, text: 1846 }, + { index: 7, text: 1867 }, ], skillMap2: [ - { index: 8, text: 703 }, + { index: 8, text: 710 }, - { index: 9, text: 1200 }, + { index: 9, text: 1212 }, ], skillMap3: [ - { index: 10, text: 1099 }, + { index: 10, text: 1110 }, ], config: [ @@ -2758,7 +2830,7 @@ export default { Nahida: { name: "Nahida", - nameLocale: 1389, + nameLocale: 1403, element: "Dendro", weapon: "Catalyst", star: 5, @@ -2766,35 +2838,35 @@ export default { // avatar: Nahida_avatar, avatar: getName("Nahida"), splash: Nahida_splash, - skillName1: 896, - skillName2: 660, - skillName3: 638, + skillName1: 905, + skillName2: 667, + skillName3: 645, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 75 }, + { index: 2, text: 79 }, - { index: 3, text: 425 }, + { index: 3, text: 430 }, - { index: 4, text: 1672 }, + { index: 4, text: 1690 }, - { index: 5, text: 86 }, + { index: 5, text: 90 }, - { index: 6, text: 174 }, + { index: 6, text: 178 }, - { index: 7, text: 1846 }, + { index: 7, text: 1867 }, ], skillMap2: [ - { index: 8, text: 1174 }, + { index: 8, text: 1186 }, - { index: 9, text: 1712 }, + { index: 9, text: 1730 }, - { index: 10, text: 1164 }, + { index: 10, text: 1175 }, ], skillMap3: [ @@ -2802,21 +2874,21 @@ export default { ], config: [ - {"default":4,"max":4,"min":0,"name":"c4_e_count","title":1885,"type":"int"}, + {"default":4,"max":4,"min":0,"name":"c4_e_count","title":1906,"type":"int"}, ], configSkill: [ - {"default":true,"name":"q_bonus","title":17,"type":"bool"}, + {"default":true,"name":"q_bonus","title":18,"type":"bool"}, - {"default":2,"max":2,"min":1,"name":"q_bonus_count","title":16,"type":"int"}, + {"default":2,"max":2,"min":1,"name":"q_bonus_count","title":17,"type":"int"}, ], }, Neuvillette: { name: "Neuvillette", - nameLocale: 1658, + nameLocale: 1676, element: "Hydro", weapon: "Catalyst", star: 5, @@ -2824,57 +2896,57 @@ export default { // avatar: Neuvillette_avatar, avatar: getName("Neuvillette"), splash: Neuvillette_splash, - skillName1: 853, - skillName2: 1102, - skillName3: 1157, + skillName1: 862, + skillName2: 1113, + skillName3: 1168, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 75 }, + { index: 2, text: 79 }, - { index: 3, text: 1672 }, + { index: 3, text: 1690 }, - { index: 4, text: 1671 }, + { index: 4, text: 1689 }, - { index: 5, text: 86 }, + { index: 5, text: 90 }, - { index: 6, text: 174 }, + { index: 6, text: 178 }, - { index: 7, text: 1846 }, + { index: 7, text: 1867 }, ], skillMap2: [ - { index: 8, text: 676 }, + { index: 8, text: 683 }, - { index: 9, text: 1170 }, + { index: 9, text: 1181 }, ], skillMap3: [ - { index: 10, text: 676 }, + { index: 10, text: 683 }, - { index: 11, text: 1080 }, + { index: 11, text: 1091 }, ], config: [ - {"default":100,"max":100,"min":1,"name":"current_hp","title":629,"type":"int"}, + {"default":100,"max":100,"min":1,"name":"current_hp","title":636,"type":"int"}, ], configSkill: [ - {"default":3,"max":3,"min":0,"name":"talent1_stack","title":44,"type":"int"}, + {"default":3,"max":3,"min":0,"name":"talent1_stack","title":48,"type":"int"}, ], }, Nilou: { name: "Nilou", - nameLocale: 531, + nameLocale: 537, element: "Hydro", weapon: "Sword", star: 5, @@ -2882,55 +2954,55 @@ export default { // avatar: Nilou_avatar, avatar: getName("Nilou"), splash: Nilou_splash, - skillName1: 857, - skillName2: 68, - skillName3: 1121, + skillName1: 866, + skillName2: 72, + skillName3: 1132, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 75 }, + { index: 2, text: 79 }, - { index: 3, text: 1673 }, + { index: 3, text: 1693 }, - { index: 4, text: 1678 }, + { index: 4, text: 1696 }, - { index: 5, text: 86 }, + { index: 5, text: 90 }, - { index: 6, text: 174 }, + { index: 6, text: 178 }, - { index: 7, text: 1846 }, + { index: 7, text: 1867 }, ], skillMap2: [ - { index: 8, text: 676 }, + { index: 8, text: 683 }, - { index: 9, text: 311 }, + { index: 9, text: 315 }, - { index: 10, text: 801 }, + { index: 10, text: 809 }, - { index: 11, text: 312 }, + { index: 11, text: 316 }, - { index: 12, text: 802 }, + { index: 12, text: 810 }, - { index: 13, text: 1078 }, + { index: 13, text: 1089 }, - { index: 14, text: 1083 }, + { index: 14, text: 1094 }, ], skillMap3: [ - { index: 15, text: 676 }, + { index: 15, text: 683 }, - { index: 16, text: 1084 }, + { index: 16, text: 1095 }, ], config: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"golden_rate","title":45,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"golden_rate","title":49,"type":"float"}, ], configSkill: [ @@ -2940,7 +3012,7 @@ export default { Ningguang: { name: "Ningguang", - nameLocale: 285, + nameLocale: 289, element: "Geo", weapon: "Catalyst", star: 4, @@ -2948,37 +3020,37 @@ export default { // avatar: Ningguang_avatar, avatar: getName("Ningguang"), splash: Ningguang_splash, - skillName1: 848, - skillName2: 1253, - skillName3: 490, + skillName1: 857, + skillName2: 1265, + skillName3: 496, skillMap1: [ - { index: 0, text: 927 }, + { index: 0, text: 936 }, - { index: 1, text: 1672 }, + { index: 1, text: 1690 }, - { index: 2, text: 820 }, + { index: 2, text: 828 }, - { index: 3, text: 86 }, + { index: 3, text: 90 }, - { index: 4, text: 174 }, + { index: 4, text: 178 }, - { index: 5, text: 1846 }, + { index: 5, text: 1867 }, ], skillMap2: [ - { index: 6, text: 676 }, + { index: 6, text: 683 }, ], skillMap3: [ - { index: 7, text: 1070 }, + { index: 7, text: 1080 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":503,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":509,"type":"float"}, ], configSkill: [ @@ -2988,7 +3060,7 @@ export default { Noelle: { name: "Noelle", - nameLocale: 1575, + nameLocale: 1593, element: "Geo", weapon: "Claymore", star: 4, @@ -2996,42 +3068,42 @@ export default { // avatar: Noelle_avatar, avatar: getName("Noel"), splash: Noelle_splash, - skillName1: 898, - skillName2: 692, - skillName3: 487, + skillName1: 907, + skillName2: 699, + skillName3: 493, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 75 }, + { index: 2, text: 79 }, - { index: 3, text: 425 }, + { index: 3, text: 430 }, - { index: 4, text: 1687 }, + { index: 4, text: 1705 }, - { index: 5, text: 1690 }, + { index: 5, text: 1708 }, - { index: 6, text: 86 }, + { index: 6, text: 90 }, - { index: 7, text: 174 }, + { index: 7, text: 178 }, - { index: 8, text: 1846 }, + { index: 8, text: 1867 }, ], skillMap2: [ - { index: 9, text: 676 }, + { index: 9, text: 683 }, - { index: 10, text: 1095 }, + { index: 10, text: 1107 }, ], skillMap3: [ - { index: 11, text: 1195 }, + { index: 11, text: 1207 }, - { index: 12, text: 676 }, + { index: 12, text: 683 }, ], config: [ @@ -3039,14 +3111,14 @@ export default { ], configSkill: [ - {"default":true,"name":"after_q","title":15,"type":"bool"}, + {"default":true,"name":"after_q","title":16,"type":"bool"}, ], }, Mika: { name: "Mika", - nameLocale: 1380, + nameLocale: 1394, element: "Cryo", weapon: "Polearm", star: 4, @@ -3054,44 +3126,44 @@ export default { // avatar: Mika_avatar, avatar: getName("Mika"), splash: Mika_splash, - skillName1: 901, - skillName2: 822, - skillName3: 1450, + skillName1: 910, + skillName2: 830, + skillName3: 1464, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 75 }, + { index: 2, text: 79 }, - { index: 3, text: 430 }, + { index: 3, text: 435 }, - { index: 4, text: 143 }, + { index: 4, text: 147 }, - { index: 5, text: 1672 }, + { index: 5, text: 1690 }, - { index: 6, text: 86 }, + { index: 6, text: 90 }, - { index: 7, text: 174 }, + { index: 7, text: 178 }, - { index: 8, text: 1846 }, + { index: 8, text: 1867 }, ], skillMap2: [ - { index: 9, text: 1793 }, + { index: 9, text: 1812 }, - { index: 10, text: 269 }, + { index: 10, text: 273 }, - { index: 11, text: 270 }, + { index: 11, text: 274 }, ], skillMap3: [ - { index: 12, text: 793 }, + { index: 12, text: 800 }, - { index: 13, text: 1861 }, + { index: 13, text: 1882 }, ], config: [ @@ -3104,7 +3176,7 @@ export default { Qiqi: { name: "Qiqi", - nameLocale: 66, + nameLocale: 70, element: "Cryo", weapon: "Sword", star: 5, @@ -3112,52 +3184,52 @@ export default { // avatar: Qiqi_avatar, avatar: getName("Qiqi"), splash: Qiqi_splash, - skillName1: 846, - skillName2: 160, - skillName3: 161, + skillName1: 854, + skillName2: 164, + skillName3: 165, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 76 }, + { index: 2, text: 80 }, - { index: 3, text: 77 }, + { index: 3, text: 81 }, - { index: 4, text: 427 }, + { index: 4, text: 432 }, - { index: 5, text: 428 }, + { index: 5, text: 433 }, - { index: 6, text: 143 }, + { index: 6, text: 147 }, - { index: 7, text: 1673 }, + { index: 7, text: 1693 }, - { index: 8, text: 1678 }, + { index: 8, text: 1696 }, - { index: 9, text: 86 }, + { index: 9, text: 90 }, - { index: 10, text: 174 }, + { index: 10, text: 178 }, - { index: 11, text: 1846 }, + { index: 11, text: 1867 }, ], skillMap2: [ - { index: 12, text: 676 }, + { index: 12, text: 683 }, - { index: 15, text: 568 }, + { index: 15, text: 575 }, - { index: 13, text: 405 }, + { index: 13, text: 408 }, - { index: 14, text: 707 }, + { index: 14, text: 713 }, ], skillMap3: [ - { index: 16, text: 676 }, + { index: 16, text: 683 }, - { index: 17, text: 1095 }, + { index: 17, text: 1107 }, ], config: [ @@ -3170,7 +3242,7 @@ export default { RaidenShogun: { name: "RaidenShogun", - nameLocale: 1779, + nameLocale: 1798, element: "Electro", weapon: "Polearm", star: 5, @@ -3178,64 +3250,64 @@ export default { // avatar: RaidenShogun_avatar, avatar: getName("Shougun"), splash: RaidenShogun_splash, - skillName1: 914, - skillName2: 1336, - skillName3: 527, + skillName1: 923, + skillName2: 1350, + skillName3: 533, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 75 }, + { index: 2, text: 79 }, - { index: 3, text: 427 }, + { index: 3, text: 432 }, - { index: 4, text: 428 }, + { index: 4, text: 433 }, - { index: 5, text: 143 }, + { index: 5, text: 147 }, - { index: 6, text: 1672 }, + { index: 6, text: 1690 }, - { index: 7, text: 86 }, + { index: 7, text: 90 }, - { index: 8, text: 174 }, + { index: 8, text: 178 }, - { index: 9, text: 1846 }, + { index: 9, text: 1867 }, ], skillMap2: [ - { index: 10, text: 676 }, + { index: 10, text: 683 }, - { index: 11, text: 342 }, + { index: 11, text: 346 }, ], skillMap3: [ - { index: 12, text: 1055 }, + { index: 12, text: 1065 }, - { index: 13, text: 52 }, + { index: 13, text: 56 }, - { index: 14, text: 124 }, + { index: 14, text: 128 }, - { index: 15, text: 75 }, + { index: 15, text: 79 }, - { index: 16, text: 427 }, + { index: 16, text: 432 }, - { index: 17, text: 428 }, + { index: 17, text: 433 }, - { index: 18, text: 143 }, + { index: 18, text: 147 }, - { index: 19, text: 1673 }, + { index: 19, text: 1693 }, - { index: 20, text: 1678 }, + { index: 20, text: 1696 }, - { index: 21, text: 86 }, + { index: 21, text: 90 }, - { index: 22, text: 174 }, + { index: 22, text: 178 }, - { index: 23, text: 1846 }, + { index: 23, text: 1867 }, ], config: [ @@ -3243,16 +3315,16 @@ export default { ], configSkill: [ - {"default":true,"name":"under_e","title":470,"type":"bool"}, + {"default":true,"name":"under_e","title":475,"type":"bool"}, - {"default":60,"max":60,"min":0,"name":"resolve_stack","title":1574,"type":"int"}, + {"default":60,"max":60,"min":0,"name":"resolve_stack","title":1592,"type":"int"}, ], }, Razor: { name: "Razor", - nameLocale: 1773, + nameLocale: 1792, element: "Electro", weapon: "Claymore", star: 4, @@ -3260,55 +3332,55 @@ export default { // avatar: Razor_avatar, avatar: getName("Razor"), splash: Razor_splash, - skillName1: 908, - skillName2: 306, - skillName3: 1778, + skillName1: 917, + skillName2: 310, + skillName3: 1797, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 75 }, + { index: 2, text: 79 }, - { index: 3, text: 425 }, + { index: 3, text: 430 }, - { index: 4, text: 1687 }, + { index: 4, text: 1705 }, - { index: 5, text: 1690 }, + { index: 5, text: 1708 }, - { index: 6, text: 86 }, + { index: 6, text: 90 }, - { index: 7, text: 174 }, + { index: 7, text: 178 }, - { index: 8, text: 1846 }, + { index: 8, text: 1867 }, ], skillMap2: [ - { index: 9, text: 1177 }, + { index: 9, text: 1189 }, - { index: 10, text: 1713 }, + { index: 10, text: 1731 }, ], skillMap3: [ - { index: 11, text: 1195 }, + { index: 11, text: 1207 }, - { index: 12, text: 1210 }, + { index: 12, text: 1222 }, - { index: 13, text: 1212 }, + { index: 13, text: 1224 }, - { index: 14, text: 1211 }, + { index: 14, text: 1223 }, - { index: 15, text: 1213 }, + { index: 15, text: 1225 }, ], config: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"e_stack","title":1765,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"e_stack","title":1784,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_ratio","title":518,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_ratio","title":524,"type":"float"}, ], configSkill: [ @@ -3318,7 +3390,7 @@ export default { Rosaria: { name: "Rosaria", - nameLocale: 1408, + nameLocale: 1422, element: "Cryo", weapon: "Polearm", star: 4, @@ -3326,51 +3398,51 @@ export default { // avatar: Rosaria_avatar, avatar: getName("Rosaria"), splash: Rosaria_splash, - skillName1: 867, - skillName2: 424, - skillName3: 1393, + skillName1: 876, + skillName2: 429, + skillName3: 1407, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 78 }, + { index: 2, text: 82 }, - { index: 3, text: 425 }, + { index: 3, text: 430 }, - { index: 4, text: 144 }, + { index: 4, text: 148 }, - { index: 5, text: 145 }, + { index: 5, text: 149 }, - { index: 6, text: 1672 }, + { index: 6, text: 1690 }, - { index: 7, text: 86 }, + { index: 7, text: 90 }, - { index: 8, text: 174 }, + { index: 8, text: 178 }, - { index: 9, text: 1846 }, + { index: 9, text: 1867 }, ], skillMap2: [ - { index: 10, text: 678 }, + { index: 10, text: 685 }, - { index: 11, text: 680 }, + { index: 11, text: 687 }, ], skillMap3: [ - { index: 12, text: 678 }, + { index: 12, text: 685 }, - { index: 13, text: 680 }, + { index: 13, text: 687 }, - { index: 14, text: 271 }, + { index: 14, text: 275 }, ], config: [ - {"default":true,"name":"e_from_behind","title":615,"type":"bool"}, + {"default":true,"name":"e_from_behind","title":622,"type":"bool"}, ], configSkill: [ @@ -3380,7 +3452,7 @@ export default { SangonomiyaKokomi: { name: "SangonomiyaKokomi", - nameLocale: 1229, + nameLocale: 1241, element: "Hydro", weapon: "Catalyst", star: 5, @@ -3388,38 +3460,38 @@ export default { // avatar: SangonomiyaKokomi_avatar, avatar: getName("Kokomi"), splash: SangonomiyaKokomi_splash, - skillName1: 913, - skillName2: 1123, - skillName3: 1122, + skillName1: 922, + skillName2: 1134, + skillName3: 1133, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 75 }, + { index: 2, text: 79 }, - { index: 3, text: 1672 }, + { index: 3, text: 1690 }, - { index: 4, text: 86 }, + { index: 4, text: 90 }, - { index: 5, text: 174 }, + { index: 5, text: 178 }, - { index: 6, text: 1846 }, + { index: 6, text: 1867 }, ], skillMap2: [ - { index: 8, text: 1101 }, + { index: 8, text: 1112 }, - { index: 7, text: 1096 }, + { index: 7, text: 1106 }, ], skillMap3: [ - { index: 9, text: 676 }, + { index: 9, text: 683 }, - { index: 10, text: 404 }, + { index: 10, text: 409 }, ], config: [ @@ -3427,14 +3499,14 @@ export default { ], configSkill: [ - {"default":true,"name":"after_q","title":21,"type":"bool"}, + {"default":true,"name":"after_q","title":22,"type":"bool"}, ], }, Sayu: { name: "Sayu", - nameLocale: 811, + nameLocale: 819, element: "Anemo", weapon: "Claymore", star: 4, @@ -3442,66 +3514,66 @@ export default { // avatar: Sayu_avatar, avatar: getName("Sayu"), splash: Sayu_splash, - skillName1: 860, - skillName2: 399, - skillName3: 398, + skillName1: 869, + skillName2: 404, + skillName3: 403, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 76 }, + { index: 2, text: 80 }, - { index: 3, text: 77 }, + { index: 3, text: 81 }, - { index: 4, text: 425 }, + { index: 4, text: 430 }, - { index: 5, text: 1687 }, + { index: 5, text: 1705 }, - { index: 6, text: 1690 }, + { index: 6, text: 1708 }, - { index: 7, text: 86 }, + { index: 7, text: 90 }, - { index: 8, text: 174 }, + { index: 8, text: 178 }, - { index: 9, text: 1846 }, + { index: 9, text: 1867 }, ], skillMap2: [ - { index: 10, text: 1814 }, + { index: 10, text: 1835 }, - { index: 11, text: 1815 }, + { index: 11, text: 1836 }, - { index: 12, text: 1816 }, + { index: 12, text: 1837 }, - { index: 13, text: 1823 }, + { index: 13, text: 1844 }, - { index: 16, text: 1822 }, + { index: 16, text: 1843 }, - { index: 15, text: 1821 }, + { index: 15, text: 1842 }, - { index: 14, text: 1824 }, + { index: 14, text: 1845 }, - { index: 17, text: 1819 }, + { index: 17, text: 1840 }, - { index: 20, text: 1818 }, + { index: 20, text: 1839 }, - { index: 19, text: 1817 }, + { index: 19, text: 1838 }, - { index: 18, text: 1820 }, + { index: 18, text: 1841 }, ], skillMap3: [ - { index: 21, text: 687 }, + { index: 21, text: 694 }, - { index: 22, text: 688 }, + { index: 22, text: 695 }, - { index: 23, text: 87 }, + { index: 23, text: 91 }, - { index: 24, text: 88 }, + { index: 24, text: 92 }, ], config: [ @@ -3514,7 +3586,7 @@ export default { Shenhe: { name: "Shenhe", - nameLocale: 1285, + nameLocale: 1297, element: "Cryo", weapon: "Polearm", star: 5, @@ -3522,44 +3594,44 @@ export default { // avatar: Shenhe_avatar, avatar: getName("Shenhe"), splash: Shenhe_splash, - skillName1: 915, - skillName2: 164, - skillName3: 1337, + skillName1: 924, + skillName2: 168, + skillName3: 1351, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 75 }, + { index: 2, text: 79 }, - { index: 3, text: 427 }, + { index: 3, text: 432 }, - { index: 4, text: 428 }, + { index: 4, text: 433 }, - { index: 5, text: 143 }, + { index: 5, text: 147 }, - { index: 6, text: 1672 }, + { index: 6, text: 1690 }, - { index: 7, text: 86 }, + { index: 7, text: 90 }, - { index: 8, text: 174 }, + { index: 8, text: 178 }, - { index: 9, text: 1846 }, + { index: 9, text: 1867 }, ], skillMap2: [ - { index: 10, text: 1178 }, + { index: 10, text: 1187 }, - { index: 11, text: 1713 }, + { index: 11, text: 1731 }, ], skillMap3: [ - { index: 12, text: 676 }, + { index: 12, text: 683 }, - { index: 13, text: 703 }, + { index: 13, text: 710 }, ], config: [ @@ -3572,7 +3644,7 @@ export default { ShikanoinHeizou: { name: "ShikanoinHeizou", - nameLocale: 1862, + nameLocale: 1883, element: "Anemo", weapon: "Catalyst", star: 4, @@ -3580,60 +3652,60 @@ export default { // avatar: ShikanoinHeizou_avatar, avatar: getName("Heizo"), splash: ShikanoinHeizou_splash, - skillName1: 844, - skillName2: 324, - skillName3: 1432, + skillName1: 852, + skillName2: 328, + skillName3: 1446, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 75 }, + { index: 2, text: 79 }, - { index: 3, text: 427 }, + { index: 3, text: 432 }, - { index: 4, text: 428 }, + { index: 4, text: 433 }, - { index: 5, text: 429 }, + { index: 5, text: 434 }, - { index: 6, text: 425 }, + { index: 6, text: 430 }, - { index: 7, text: 143 }, + { index: 7, text: 147 }, - { index: 8, text: 1672 }, + { index: 8, text: 1690 }, - { index: 9, text: 86 }, + { index: 9, text: 90 }, - { index: 10, text: 174 }, + { index: 10, text: 178 }, - { index: 11, text: 1846 }, + { index: 11, text: 1867 }, ], skillMap2: [ - { index: 12, text: 677 }, + { index: 12, text: 684 }, - { index: 13, text: 679 }, + { index: 13, text: 686 }, - { index: 14, text: 681 }, + { index: 14, text: 688 }, - { index: 15, text: 682 }, + { index: 15, text: 689 }, - { index: 16, text: 683 }, + { index: 16, text: 690 }, ], skillMap3: [ - { index: 17, text: 89 }, + { index: 17, text: 93 }, - { index: 18, text: 1430 }, + { index: 18, text: 1444 }, - { index: 20, text: 1428 }, + { index: 20, text: 1442 }, - { index: 21, text: 1431 }, + { index: 21, text: 1445 }, - { index: 19, text: 1429 }, + { index: 19, text: 1443 }, ], config: [ @@ -3646,7 +3718,7 @@ export default { Sucrose: { name: "Sucrose", - nameLocale: 1316, + nameLocale: 1330, element: "Anemo", weapon: "Catalyst", star: 4, @@ -3654,44 +3726,44 @@ export default { // avatar: Sucrose_avatar, avatar: getName("Sucrose"), splash: Sucrose_splash, - skillName1: 891, - skillName2: 1810, - skillName3: 1365, + skillName1: 900, + skillName2: 1831, + skillName3: 1379, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 75 }, + { index: 2, text: 79 }, - { index: 3, text: 425 }, + { index: 3, text: 430 }, - { index: 4, text: 1672 }, + { index: 4, text: 1690 }, - { index: 5, text: 86 }, + { index: 5, text: 90 }, - { index: 6, text: 174 }, + { index: 6, text: 178 }, - { index: 7, text: 1846 }, + { index: 7, text: 1867 }, ], skillMap2: [ - { index: 8, text: 676 }, + { index: 8, text: 683 }, ], skillMap3: [ - { index: 9, text: 703 }, + { index: 9, text: 710 }, - { index: 10, text: 1755 }, + { index: 10, text: 1774 }, - { index: 11, text: 1754 }, + { index: 11, text: 1773 }, - { index: 13, text: 1753 }, + { index: 13, text: 1772 }, - { index: 12, text: 1756 }, + { index: 12, text: 1775 }, ], config: [ @@ -3704,7 +3776,7 @@ export default { Tartaglia: { name: "Tartaglia", - nameLocale: 1626, + nameLocale: 1644, element: "Hydro", weapon: "Bow", star: 5, @@ -3712,70 +3784,70 @@ export default { // avatar: Tartaglia_avatar, avatar: getName("Tartaglia"), splash: Tartaglia_splash, - skillName1: 868, - skillName2: 1857, - skillName3: 1033, + skillName1: 877, + skillName2: 1878, + skillName3: 1042, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 75 }, + { index: 2, text: 79 }, - { index: 3, text: 425 }, + { index: 3, text: 430 }, - { index: 4, text: 143 }, + { index: 4, text: 147 }, - { index: 5, text: 251 }, + { index: 5, text: 255 }, - { index: 6, text: 1315 }, + { index: 6, text: 1329 }, - { index: 7, text: 1154 }, + { index: 7, text: 1165 }, - { index: 8, text: 768 }, + { index: 8, text: 775 }, - { index: 9, text: 767 }, + { index: 9, text: 774 }, - { index: 10, text: 86 }, + { index: 10, text: 90 }, - { index: 11, text: 174 }, + { index: 11, text: 178 }, - { index: 12, text: 1846 }, + { index: 12, text: 1867 }, ], skillMap2: [ - { index: 13, text: 1205 }, + { index: 13, text: 1217 }, - { index: 14, text: 52 }, + { index: 14, text: 56 }, - { index: 15, text: 124 }, + { index: 15, text: 128 }, - { index: 16, text: 75 }, + { index: 16, text: 79 }, - { index: 17, text: 425 }, + { index: 17, text: 430 }, - { index: 18, text: 143 }, + { index: 18, text: 147 }, - { index: 19, text: 252 }, + { index: 19, text: 256 }, - { index: 20, text: 253 }, + { index: 20, text: 257 }, - { index: 21, text: 1673 }, + { index: 21, text: 1693 }, - { index: 22, text: 1678 }, + { index: 22, text: 1696 }, - { index: 23, text: 765 }, + { index: 23, text: 772 }, ], skillMap3: [ - { index: 24, text: 685 }, + { index: 24, text: 692 }, - { index: 25, text: 686 }, + { index: 25, text: 693 }, - { index: 26, text: 766 }, + { index: 26, text: 773 }, ], config: [ @@ -3788,7 +3860,7 @@ export default { Thoma: { name: "Thoma", - nameLocale: 662, + nameLocale: 669, element: "Pyro", weapon: "Polearm", star: 4, @@ -3796,38 +3868,38 @@ export default { // avatar: Thoma_avatar, avatar: getName("Tohma"), splash: Thoma_splash, - skillName1: 904, - skillName2: 1182, - skillName3: 1313, + skillName1: 913, + skillName2: 1194, + skillName3: 1327, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 78 }, + { index: 2, text: 82 }, - { index: 4, text: 425 }, + { index: 4, text: 430 }, - { index: 5, text: 1672 }, + { index: 5, text: 1690 }, - { index: 6, text: 86 }, + { index: 6, text: 90 }, - { index: 7, text: 174 }, + { index: 7, text: 178 }, - { index: 8, text: 1846 }, + { index: 8, text: 1867 }, ], skillMap2: [ - { index: 9, text: 676 }, + { index: 9, text: 683 }, ], skillMap3: [ - { index: 10, text: 676 }, + { index: 10, text: 683 }, - { index: 11, text: 1179 }, + { index: 11, text: 1191 }, ], config: [ @@ -3840,7 +3912,7 @@ export default { Tighnari: { name: "Tighnari", - nameLocale: 714, + nameLocale: 721, element: "Dendro", weapon: "Bow", star: 5, @@ -3848,51 +3920,51 @@ export default { // avatar: Tighnari_avatar, avatar: getName("Tighnari"), splash: Tighnari_splash, - skillName1: 894, - skillName2: 1566, - skillName3: 1653, + skillName1: 903, + skillName2: 1584, + skillName3: 1671, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 75 }, + { index: 2, text: 79 }, - { index: 3, text: 425 }, + { index: 3, text: 430 }, - { index: 4, text: 1315 }, + { index: 4, text: 1329 }, - { index: 5, text: 62 }, + { index: 5, text: 67 }, - { index: 6, text: 1445 }, + { index: 6, text: 1459 }, - { index: 7, text: 1504 }, + { index: 7, text: 1518 }, - { index: 8, text: 86 }, + { index: 8, text: 90 }, - { index: 9, text: 174 }, + { index: 9, text: 178 }, - { index: 10, text: 1846 }, + { index: 10, text: 1867 }, ], skillMap2: [ - { index: 11, text: 676 }, + { index: 11, text: 683 }, ], skillMap3: [ - { index: 12, text: 1407 }, + { index: 12, text: 1421 }, - { index: 13, text: 1059 }, + { index: 13, text: 1069 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"talent1_ratio","title":514,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent1_ratio","title":520,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"c2_ratio","title":407,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"c2_ratio","title":412,"type":"float"}, ], configSkill: [ @@ -3902,7 +3974,7 @@ export default { Venti: { name: "Venti", - nameLocale: 1139, + nameLocale: 1150, element: "Anemo", weapon: "Bow", star: 5, @@ -3910,56 +3982,56 @@ export default { // avatar: Venti_avatar, avatar: getName("Venti"), splash: Venti_splash, - skillName1: 887, - skillName2: 1845, - skillName3: 1811, + skillName1: 896, + skillName2: 1866, + skillName3: 1832, skillMap1: [ - { index: 0, text: 53 }, + { index: 0, text: 57 }, - { index: 1, text: 54 }, + { index: 1, text: 58 }, - { index: 3, text: 124 }, + { index: 3, text: 128 }, - { index: 4, text: 75 }, + { index: 4, text: 79 }, - { index: 5, text: 427 }, + { index: 5, text: 432 }, - { index: 6, text: 428 }, + { index: 6, text: 433 }, - { index: 8, text: 143 }, + { index: 8, text: 147 }, - { index: 9, text: 251 }, + { index: 9, text: 255 }, - { index: 10, text: 1315 }, + { index: 10, text: 1329 }, - { index: 11, text: 1154 }, + { index: 11, text: 1165 }, - { index: 12, text: 86 }, + { index: 12, text: 90 }, - { index: 13, text: 174 }, + { index: 13, text: 178 }, - { index: 14, text: 1846 }, + { index: 14, text: 1867 }, ], skillMap2: [ - { index: 15, text: 1174 }, + { index: 15, text: 1186 }, - { index: 16, text: 1712 }, + { index: 16, text: 1730 }, ], skillMap3: [ - { index: 17, text: 703 }, + { index: 17, text: 710 }, - { index: 18, text: 1755 }, + { index: 18, text: 1774 }, - { index: 20, text: 1754 }, + { index: 20, text: 1773 }, - { index: 21, text: 1753 }, + { index: 21, text: 1772 }, - { index: 19, text: 1756 }, + { index: 19, text: 1775 }, ], config: [ @@ -3972,7 +4044,7 @@ export default { Wanderer: { name: "Wanderer", - nameLocale: 1114, + nameLocale: 1125, element: "Anemo", weapon: "Catalyst", star: 5, @@ -3980,65 +4052,65 @@ export default { // avatar: Wanderer_avatar, avatar: getName("Wanderer"), splash: Wanderer_splash, - skillName1: 895, - skillName2: 1417, - skillName3: 1206, + skillName1: 904, + skillName2: 1431, + skillName3: 1218, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 79 }, + { index: 2, text: 83 }, - { index: 3, text: 56 }, + { index: 3, text: 60 }, - { index: 4, text: 127 }, + { index: 4, text: 131 }, - { index: 5, text: 80 }, + { index: 5, text: 84 }, - { index: 6, text: 1672 }, + { index: 6, text: 1690 }, - { index: 7, text: 28 }, + { index: 7, text: 29 }, - { index: 8, text: 86 }, + { index: 8, text: 90 }, - { index: 9, text: 174 }, + { index: 9, text: 178 }, - { index: 10, text: 1846 }, + { index: 10, text: 1867 }, ], skillMap2: [ - { index: 11, text: 676 }, + { index: 11, text: 683 }, ], skillMap3: [ - { index: 12, text: 684 }, + { index: 12, text: 691 }, ], config: [ - {"default":false,"name":"e_pyro","title":27,"type":"bool"}, + {"default":false,"name":"e_pyro","title":28,"type":"bool"}, - {"default":false,"name":"e_cryo","title":25,"type":"bool"}, + {"default":false,"name":"e_cryo","title":26,"type":"bool"}, ], configSkill: [ - {"default":true,"name":"e_enabled","title":462,"type":"bool"}, + {"default":true,"name":"e_enabled","title":467,"type":"bool"}, - {"default":false,"name":"e_hydro","title":26,"type":"bool"}, + {"default":false,"name":"e_hydro","title":27,"type":"bool"}, - {"default":50.0,"max":120.0,"min":0.0,"name":"sdpoints","title":1375,"type":"float"}, + {"default":50.0,"max":120.0,"min":0.0,"name":"sdpoints","title":1389,"type":"float"}, ], }, Wriothesley: { name: "Wriothesley", - nameLocale: 1471, + nameLocale: 1485, element: "Cryo", weapon: "Catalyst", star: 5, @@ -4046,30 +4118,30 @@ export default { // avatar: Wriothesley_avatar, avatar: getName("Wriothesley"), splash: Wriothesley_splash, - skillName1: 903, - skillName2: 275, - skillName3: 1882, + skillName1: 912, + skillName2: 279, + skillName3: 1903, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 75 }, + { index: 2, text: 79 }, - { index: 3, text: 430 }, + { index: 3, text: 435 }, - { index: 4, text: 143 }, + { index: 4, text: 147 }, - { index: 5, text: 1672 }, + { index: 5, text: 1690 }, - { index: 6, text: 649 }, + { index: 6, text: 656 }, - { index: 7, text: 86 }, + { index: 7, text: 90 }, - { index: 8, text: 174 }, + { index: 8, text: 178 }, - { index: 9, text: 1846 }, + { index: 9, text: 1867 }, ], skillMap2: [ @@ -4077,14 +4149,14 @@ export default { ], skillMap3: [ - { index: 10, text: 676 }, + { index: 10, text: 683 }, - { index: 11, text: 1116 }, + { index: 11, text: 1127 }, ], config: [ - {"default":4.0,"max":5.0,"min":0.0,"name":"talent2_stack","title":30,"type":"float"}, + {"default":4.0,"max":5.0,"min":0.0,"name":"talent2_stack","title":31,"type":"float"}, ], configSkill: [ @@ -4094,7 +4166,7 @@ export default { Xiangling: { name: "Xiangling", - nameLocale: 1836, + nameLocale: 1857, element: "Pyro", weapon: "Polearm", star: 4, @@ -4102,46 +4174,46 @@ export default { // avatar: Xiangling_avatar, avatar: getName("Xiangling"), splash: Xiangling_splash, - skillName1: 884, - skillName2: 1710, - skillName3: 799, + skillName1: 893, + skillName2: 1728, + skillName3: 807, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 76 }, + { index: 2, text: 80 }, - { index: 3, text: 77 }, + { index: 3, text: 81 }, - { index: 5, text: 432 }, + { index: 5, text: 437 }, - { index: 7, text: 143 }, + { index: 7, text: 147 }, - { index: 8, text: 1672 }, + { index: 8, text: 1690 }, - { index: 9, text: 86 }, + { index: 9, text: 90 }, - { index: 10, text: 174 }, + { index: 10, text: 178 }, - { index: 11, text: 1846 }, + { index: 11, text: 1867 }, ], skillMap2: [ - { index: 12, text: 421 }, + { index: 12, text: 426 }, ], skillMap3: [ - { index: 13, text: 57 }, + { index: 13, text: 61 }, - { index: 14, text: 128 }, + { index: 14, text: 132 }, - { index: 15, text: 81 }, + { index: 15, text: 85 }, - { index: 16, text: 800 }, + { index: 16, text: 808 }, ], config: [ @@ -4154,7 +4226,7 @@ export default { Xiao: { name: "Xiao", - nameLocale: 1848, + nameLocale: 1869, element: "Anemo", weapon: "Polearm", star: 5, @@ -4162,39 +4234,39 @@ export default { // avatar: Xiao_avatar, avatar: getName("Xiao"), splash: Xiao_splash, - skillName1: 849, - skillName2: 1813, - skillName3: 1795, + skillName1: 858, + skillName2: 1834, + skillName3: 1814, skillMap1: [ - { index: 0, text: 53 }, + { index: 0, text: 57 }, - { index: 1, text: 54 }, + { index: 1, text: 58 }, - { index: 3, text: 124 }, + { index: 3, text: 128 }, - { index: 4, text: 75 }, + { index: 4, text: 79 }, - { index: 5, text: 427 }, + { index: 5, text: 432 }, - { index: 6, text: 428 }, + { index: 6, text: 433 }, - { index: 8, text: 143 }, + { index: 8, text: 147 }, - { index: 9, text: 251 }, + { index: 9, text: 255 }, - { index: 10, text: 1672 }, + { index: 10, text: 1690 }, - { index: 11, text: 86 }, + { index: 11, text: 90 }, - { index: 12, text: 174 }, + { index: 12, text: 178 }, - { index: 13, text: 1846 }, + { index: 13, text: 1867 }, ], skillMap2: [ - { index: 14, text: 676 }, + { index: 14, text: 683 }, ], skillMap3: [ @@ -4205,18 +4277,18 @@ export default { ], configSkill: [ - {"default":true,"name":"after_q","title":1795,"type":"bool"}, + {"default":true,"name":"after_q","title":1814,"type":"bool"}, - {"default":4.0,"max":4.0,"min":0.0,"name":"talent1_stack","title":517,"type":"float"}, + {"default":4.0,"max":4.0,"min":0.0,"name":"talent1_stack","title":523,"type":"float"}, - {"default":0.0,"max":3.0,"min":0.0,"name":"talent2_stack","title":505,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"talent2_stack","title":511,"type":"float"}, ], }, Xingqiu: { name: "Xingqiu", - nameLocale: 1510, + nameLocale: 1524, element: "Hydro", weapon: "Sword", star: 4, @@ -4224,46 +4296,46 @@ export default { // avatar: Xingqiu_avatar, avatar: getName("Xingqiu"), splash: Xingqiu_splash, - skillName1: 850, - skillName2: 371, - skillName3: 372, + skillName1: 859, + skillName2: 376, + skillName3: 377, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 76 }, + { index: 2, text: 80 }, - { index: 3, text: 77 }, + { index: 3, text: 81 }, - { index: 5, text: 425 }, + { index: 5, text: 430 }, - { index: 6, text: 144 }, + { index: 6, text: 148 }, - { index: 7, text: 145 }, + { index: 7, text: 149 }, - { index: 9, text: 1673 }, + { index: 9, text: 1693 }, - { index: 10, text: 1678 }, + { index: 10, text: 1696 }, - { index: 12, text: 86 }, + { index: 12, text: 90 }, - { index: 13, text: 174 }, + { index: 13, text: 178 }, - { index: 14, text: 1846 }, + { index: 14, text: 1867 }, ], skillMap2: [ - { index: 15, text: 678 }, + { index: 15, text: 685 }, - { index: 16, text: 680 }, + { index: 16, text: 687 }, ], skillMap3: [ - { index: 17, text: 313 }, + { index: 17, text: 317 }, ], config: [ @@ -4271,14 +4343,14 @@ export default { ], configSkill: [ - {"default":false,"name":"c4","title":614,"type":"bool"}, + {"default":false,"name":"c4","title":621,"type":"bool"}, ], }, Xinyan: { name: "Xinyan", - nameLocale: 1617, + nameLocale: 1635, element: "Pyro", weapon: "Claymore", star: 4, @@ -4286,42 +4358,42 @@ export default { // avatar: Xinyan_avatar, avatar: getName("Xinyan"), splash: Xinyan_splash, - skillName1: 879, - skillName2: 1186, - skillName3: 368, + skillName1: 888, + skillName2: 1198, + skillName3: 373, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 75 }, + { index: 2, text: 79 }, - { index: 3, text: 425 }, + { index: 3, text: 430 }, - { index: 4, text: 1687 }, + { index: 4, text: 1705 }, - { index: 5, text: 1690 }, + { index: 5, text: 1708 }, - { index: 6, text: 86 }, + { index: 6, text: 90 }, - { index: 7, text: 174 }, + { index: 7, text: 178 }, - { index: 8, text: 1846 }, + { index: 8, text: 1867 }, ], skillMap2: [ - { index: 9, text: 711 }, + { index: 9, text: 718 }, - { index: 10, text: 703 }, + { index: 10, text: 710 }, ], skillMap3: [ - { index: 11, text: 676 }, + { index: 11, text: 683 }, - { index: 12, text: 1161 }, + { index: 12, text: 1172 }, ], config: [ @@ -4329,14 +4401,14 @@ export default { ], configSkill: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":37,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":39,"type":"float"}, ], }, YaeMiko: { name: "YaeMiko", - nameLocale: 241, + nameLocale: 245, element: "Electro", weapon: "Catalyst", star: 5, @@ -4344,42 +4416,42 @@ export default { // avatar: YaeMiko_avatar, avatar: getName("Yae"), splash: YaeMiko_splash, - skillName1: 882, - skillName2: 1694, - skillName3: 486, + skillName1: 891, + skillName2: 1712, + skillName3: 492, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 75 }, + { index: 2, text: 79 }, - { index: 3, text: 1672 }, + { index: 3, text: 1690 }, - { index: 4, text: 86 }, + { index: 4, text: 90 }, - { index: 5, text: 174 }, + { index: 5, text: 178 }, - { index: 6, text: 1846 }, + { index: 6, text: 1867 }, ], skillMap2: [ - { index: 7, text: 1026 }, + { index: 7, text: 1035 }, - { index: 8, text: 1028 }, + { index: 8, text: 1037 }, - { index: 9, text: 1025 }, + { index: 9, text: 1034 }, - { index: 10, text: 1027 }, + { index: 10, text: 1036 }, ], skillMap3: [ - { index: 11, text: 676 }, + { index: 11, text: 683 }, - { index: 12, text: 491 }, + { index: 12, text: 497 }, ], config: [ @@ -4392,7 +4464,7 @@ export default { Yanfei: { name: "Yanfei", - nameLocale: 1184, + nameLocale: 1196, element: "Pyro", weapon: "Catalyst", star: 4, @@ -4400,44 +4472,44 @@ export default { // avatar: Yanfei_avatar, avatar: getName("Feiyan"), splash: Yanfei_splash, - skillName1: 877, - skillName2: 96, - skillName3: 291, + skillName1: 886, + skillName2: 100, + skillName3: 295, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 75 }, + { index: 2, text: 79 }, - { index: 3, text: 1670 }, + { index: 3, text: 1688 }, - { index: 4, text: 1666 }, + { index: 4, text: 1684 }, - { index: 5, text: 1667 }, + { index: 5, text: 1685 }, - { index: 6, text: 1668 }, + { index: 6, text: 1686 }, - { index: 7, text: 1669 }, + { index: 7, text: 1687 }, - { index: 8, text: 502 }, + { index: 8, text: 508 }, - { index: 9, text: 86 }, + { index: 9, text: 90 }, - { index: 10, text: 174 }, + { index: 10, text: 178 }, - { index: 11, text: 1846 }, + { index: 11, text: 1867 }, ], skillMap2: [ - { index: 12, text: 676 }, + { index: 12, text: 683 }, ], skillMap3: [ - { index: 13, text: 676 }, + { index: 13, text: 683 }, ], config: [ @@ -4445,14 +4517,14 @@ export default { ], configSkill: [ - {"default":true,"name":"after_q","title":1172,"type":"bool"}, + {"default":true,"name":"after_q","title":1183,"type":"bool"}, ], }, Yaoyao: { name: "Yaoyao", - nameLocale: 1252, + nameLocale: 1264, element: "Dendro", weapon: "Polearm", star: 4, @@ -4460,49 +4532,49 @@ export default { // avatar: Yaoyao_avatar, avatar: getName("Yaoyao"), splash: Yaoyao_splash, - skillName1: 909, - skillName2: 135, - skillName3: 1225, + skillName1: 918, + skillName2: 139, + skillName3: 1237, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 76 }, + { index: 2, text: 80 }, - { index: 3, text: 77 }, + { index: 3, text: 81 }, - { index: 4, text: 425 }, + { index: 4, text: 430 }, - { index: 5, text: 1672 }, + { index: 5, text: 1690 }, - { index: 6, text: 86 }, + { index: 6, text: 90 }, - { index: 7, text: 174 }, + { index: 7, text: 178 }, - { index: 8, text: 1846 }, + { index: 8, text: 1867 }, ], skillMap2: [ - { index: 9, text: 1304 }, + { index: 9, text: 1316 }, - { index: 10, text: 1305 }, + { index: 10, text: 1317 }, ], skillMap3: [ - { index: 11, text: 676 }, + { index: 11, text: 683 }, - { index: 12, text: 1051 }, + { index: 12, text: 1061 }, - { index: 13, text: 1052 }, + { index: 13, text: 1062 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"c4_rate","title":412,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"c4_rate","title":417,"type":"float"}, ], configSkill: [ @@ -4512,7 +4584,7 @@ export default { Yelan: { name: "Yelan", - nameLocale: 479, + nameLocale: 485, element: "Hydro", weapon: "Bow", star: 5, @@ -4520,47 +4592,47 @@ export default { // avatar: Yelan_avatar, avatar: getName("Yelan"), splash: Yelan_splash, - skillName1: 876, - skillName2: 1494, - skillName3: 1131, + skillName1: 885, + skillName2: 1508, + skillName3: 1142, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 75 }, + { index: 2, text: 79 }, - { index: 3, text: 430 }, + { index: 3, text: 435 }, - { index: 4, text: 1315 }, + { index: 4, text: 1329 }, - { index: 5, text: 1154 }, + { index: 5, text: 1165 }, - { index: 6, text: 1326 }, + { index: 6, text: 1340 }, - { index: 8, text: 86 }, + { index: 8, text: 90 }, - { index: 9, text: 174 }, + { index: 9, text: 178 }, - { index: 10, text: 1846 }, + { index: 10, text: 1867 }, ], skillMap2: [ - { index: 11, text: 676 }, + { index: 11, text: 683 }, ], skillMap3: [ - { index: 12, text: 676 }, + { index: 12, text: 683 }, - { index: 13, text: 1224 }, + { index: 13, text: 1236 }, ], config: [ - {"default":4,"max":4,"min":1,"name":"team_element_count","title":1717,"type":"int"}, + {"default":4,"max":4,"min":1,"name":"team_element_count","title":1737,"type":"int"}, ], configSkill: [ @@ -4570,7 +4642,7 @@ export default { Yoimiya: { name: "Yoimiya", - nameLocale: 564, + nameLocale: 571, element: "Pyro", weapon: "Bow", star: 5, @@ -4578,32 +4650,32 @@ export default { // avatar: Yoimiya_avatar, avatar: getName("Yoimiya"), splash: Yoimiya_splash, - skillName1: 880, - skillName2: 1190, - skillName3: 1242, + skillName1: 889, + skillName2: 1202, + skillName3: 1254, skillMap1: [ - { index: 0, text: 55 }, + { index: 0, text: 59 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 75 }, + { index: 2, text: 79 }, - { index: 3, text: 430 }, + { index: 3, text: 435 }, - { index: 4, text: 143 }, + { index: 4, text: 147 }, - { index: 5, text: 1315 }, + { index: 5, text: 1329 }, - { index: 6, text: 1154 }, + { index: 6, text: 1165 }, - { index: 7, text: 1191 }, + { index: 7, text: 1203 }, - { index: 8, text: 86 }, + { index: 8, text: 90 }, - { index: 9, text: 174 }, + { index: 9, text: 178 }, - { index: 10, text: 1846 }, + { index: 10, text: 1867 }, ], skillMap2: [ @@ -4611,26 +4683,26 @@ export default { ], skillMap3: [ - { index: 11, text: 676 }, + { index: 11, text: 683 }, - { index: 12, text: 1243 }, + { index: 12, text: 1255 }, ], config: [ - {"default":8.0,"max":10.0,"min":0.0,"name":"talent1_level","title":515,"type":"float"}, + {"default":8.0,"max":10.0,"min":0.0,"name":"talent1_level","title":521,"type":"float"}, ], configSkill: [ - {"default":true,"name":"after_e","title":619,"type":"bool"}, + {"default":true,"name":"after_e","title":626,"type":"bool"}, ], }, Yunjin: { name: "Yunjin", - nameLocale: 136, + nameLocale: 140, element: "Geo", weapon: "Polearm", star: 4, @@ -4638,46 +4710,46 @@ export default { // avatar: Yunjin_avatar, avatar: getName("Yunjin"), splash: Yunjin_splash, - skillName1: 864, - skillName2: 798, - skillName3: 1327, + skillName1: 873, + skillName2: 806, + skillName3: 1341, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 76 }, + { index: 2, text: 80 }, - { index: 3, text: 77 }, + { index: 3, text: 81 }, - { index: 4, text: 427 }, + { index: 4, text: 432 }, - { index: 5, text: 428 }, + { index: 5, text: 433 }, - { index: 6, text: 143 }, + { index: 6, text: 147 }, - { index: 7, text: 1672 }, + { index: 7, text: 1690 }, - { index: 8, text: 86 }, + { index: 8, text: 90 }, - { index: 9, text: 174 }, + { index: 9, text: 178 }, - { index: 10, text: 1846 }, + { index: 10, text: 1867 }, ], skillMap2: [ - { index: 11, text: 1175 }, + { index: 11, text: 1185 }, - { index: 12, text: 59 }, + { index: 12, text: 63 }, - { index: 13, text: 130 }, + { index: 13, text: 134 }, ], skillMap3: [ - { index: 14, text: 676 }, + { index: 14, text: 683 }, ], config: [ @@ -4690,7 +4762,7 @@ export default { Zhongli: { name: "Zhongli", - nameLocale: 1700, + nameLocale: 1718, element: "Geo", weapon: "Polearm", star: 5, @@ -4698,44 +4770,44 @@ export default { // avatar: Zhongli_avatar, avatar: getName("Zhongli"), splash: Zhongli_splash, - skillName1: 855, - skillName2: 442, - skillName3: 489, + skillName1: 864, + skillName2: 447, + skillName3: 495, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 75 }, + { index: 2, text: 79 }, - { index: 3, text: 425 }, + { index: 3, text: 430 }, - { index: 4, text: 147 }, + { index: 4, text: 151 }, - { index: 5, text: 251 }, + { index: 5, text: 255 }, - { index: 6, text: 1672 }, + { index: 6, text: 1690 }, - { index: 7, text: 86 }, + { index: 7, text: 90 }, - { index: 8, text: 174 }, + { index: 8, text: 178 }, - { index: 9, text: 1846 }, + { index: 9, text: 1867 }, ], skillMap2: [ - { index: 10, text: 593 }, + { index: 10, text: 600 }, - { index: 11, text: 255 }, + { index: 11, text: 259 }, - { index: 12, text: 1712 }, + { index: 12, text: 1730 }, ], skillMap3: [ - { index: 13, text: 676 }, + { index: 13, text: 683 }, ], config: [ @@ -4748,7 +4820,7 @@ export default { Kirara: { name: "Kirara", - nameLocale: 1403, + nameLocale: 1417, element: "Dendro", weapon: "Sword", star: 4, @@ -4756,48 +4828,48 @@ export default { // avatar: Kirara_avatar, avatar: getName("Momoka"), splash: Kirara_splash, - skillName1: 892, - skillName2: 400, - skillName3: 1368, + skillName1: 901, + skillName2: 405, + skillName3: 1382, skillMap1: [ - { index: 0, text: 52 }, + { index: 0, text: 56 }, - { index: 1, text: 124 }, + { index: 1, text: 128 }, - { index: 2, text: 76 }, + { index: 2, text: 80 }, - { index: 3, text: 77 }, + { index: 3, text: 81 }, - { index: 4, text: 425 }, + { index: 4, text: 430 }, - { index: 5, text: 1675 }, + { index: 5, text: 1694 }, - { index: 6, text: 1677 }, + { index: 6, text: 1695 }, - { index: 7, text: 1681 }, + { index: 7, text: 1699 }, - { index: 8, text: 86 }, + { index: 8, text: 90 }, - { index: 9, text: 174 }, + { index: 9, text: 178 }, - { index: 10, text: 1846 }, + { index: 10, text: 1867 }, ], skillMap2: [ - { index: 11, text: 1283 }, + { index: 11, text: 1295 }, - { index: 12, text: 1222 }, + { index: 12, text: 1234 }, - { index: 13, text: 1425 }, + { index: 13, text: 1439 }, ], skillMap3: [ - { index: 14, text: 676 }, + { index: 14, text: 683 }, - { index: 15, text: 1223 }, + { index: 15, text: 1235 }, ], config: [ diff --git a/src/assets/_gen_pf.js b/src/assets/_gen_pf.js index 65ef8517..92926815 100644 --- a/src/assets/_gen_pf.js +++ b/src/assets/_gen_pf.js @@ -12,45 +12,45 @@ export default { badge: ArtifactEff_image, config: [ - {"default":false,"name":"atk_use","title":730,"type":"bool"}, + {"default":false,"name":"atk_use","title":737,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"atk_weight","title":731,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"atk_weight","title":738,"type":"float"}, - {"default":true,"name":"atk_p_use","title":722,"type":"bool"}, + {"default":true,"name":"atk_p_use","title":729,"type":"bool"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"atk_p_weight","title":723,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"atk_p_weight","title":730,"type":"float"}, - {"default":false,"name":"hp_use","title":1277,"type":"bool"}, + {"default":false,"name":"hp_use","title":1289,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"hp_weight","title":1278,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"hp_weight","title":1290,"type":"float"}, - {"default":false,"name":"hp_p_use","title":1262,"type":"bool"}, + {"default":false,"name":"hp_p_use","title":1274,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"hp_p_weight","title":1263,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"hp_p_weight","title":1275,"type":"float"}, - {"default":false,"name":"def_use","title":1741,"type":"bool"}, + {"default":false,"name":"def_use","title":1760,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"def_weight","title":1742,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"def_weight","title":1761,"type":"float"}, - {"default":false,"name":"def_p_use","title":1736,"type":"bool"}, + {"default":false,"name":"def_p_use","title":1755,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"def_p_weight","title":1737,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"def_p_weight","title":1756,"type":"float"}, - {"default":true,"name":"critical_use","title":995,"type":"bool"}, + {"default":true,"name":"critical_use","title":1004,"type":"bool"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"critical_weight","title":996,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"critical_weight","title":1005,"type":"float"}, - {"default":true,"name":"critical_damage_use","title":989,"type":"bool"}, + {"default":true,"name":"critical_damage_use","title":998,"type":"bool"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"critical_damage_weight","title":990,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"critical_damage_weight","title":999,"type":"float"}, - {"default":false,"name":"elemental_mastery_use","title":234,"type":"bool"}, + {"default":false,"name":"elemental_mastery_use","title":238,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"elemental_mastery_weight","title":235,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"elemental_mastery_weight","title":239,"type":"float"}, - {"default":false,"name":"recharge_use","title":193,"type":"bool"}, + {"default":false,"name":"recharge_use","title":197,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"recharge_weight","title":194,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"recharge_weight","title":198,"type":"float"}, ], }, diff --git a/src/assets/_gen_tf.js b/src/assets/_gen_tf.js index 2245edd9..1379933b 100644 --- a/src/assets/_gen_tf.js +++ b/src/assets/_gen_tf.js @@ -212,8 +212,8 @@ export default { "MaxATK": { name: "MaxATK", - nameLocale: 1011, - description: 1008, + nameLocale: 1020, + description: 1017, tags: [ "攻击", @@ -230,8 +230,8 @@ export default { "MaxDEF": { name: "MaxDEF", - nameLocale: 1016, - description: 1010, + nameLocale: 1025, + description: 1019, tags: [ "防御", @@ -248,8 +248,8 @@ export default { "MaxHP": { name: "MaxHP", - nameLocale: 1013, - description: 1009, + nameLocale: 1022, + description: 1018, tags: [ "生命", @@ -266,8 +266,8 @@ export default { "MaxEM": { name: "MaxEM", - nameLocale: 1002, - description: 1006, + nameLocale: 1011, + description: 1015, tags: [ "元素精通", @@ -284,8 +284,8 @@ export default { "MaxRecharge": { name: "MaxRecharge", - nameLocale: 1003, - description: 1005, + nameLocale: 1012, + description: 1014, tags: [ "", @@ -302,8 +302,8 @@ export default { "PyroDamage": { name: "PyroDamage", - nameLocale: 1158, - description: 1159, + nameLocale: 1169, + description: 1170, tags: [ "输出", @@ -315,15 +315,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1383,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1397,"type":"option"}, ], }, "CryoDamage": { name: "CryoDamage", - nameLocale: 265, - description: 266, + nameLocale: 269, + description: 270, tags: [ "输出", @@ -335,15 +335,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1383,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1397,"type":"option"}, ], }, "HydroDamage": { name: "HydroDamage", - nameLocale: 1075, - description: 1076, + nameLocale: 1086, + description: 1087, tags: [ "输出", @@ -355,15 +355,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1383,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1397,"type":"option"}, ], }, "ElectroDamage": { name: "ElectroDamage", - nameLocale: 1767, - description: 1768, + nameLocale: 1786, + description: 1787, tags: [ "输出", @@ -375,15 +375,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1383,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1397,"type":"option"}, ], }, "AnemoDamage": { name: "AnemoDamage", - nameLocale: 1803, - description: 1805, + nameLocale: 1824, + description: 1826, tags: [ "输出", @@ -395,15 +395,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1383,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1397,"type":"option"}, ], }, "DendroDamage": { name: "DendroDamage", - nameLocale: 1454, - description: 1455, + nameLocale: 1468, + description: 1469, tags: [ "", @@ -415,15 +415,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1383,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1397,"type":"option"}, ], }, "GeoDamage": { name: "GeoDamage", - nameLocale: 590, - description: 591, + nameLocale: 597, + description: 598, tags: [ "输出", @@ -435,15 +435,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1383,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1397,"type":"option"}, ], }, "PhysicalDamage": { name: "PhysicalDamage", - nameLocale: 1201, - description: 1202, + nameLocale: 1213, + description: 1214, tags: [ "输出", @@ -455,15 +455,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1383,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1397,"type":"option"}, ], }, "MaxVaporize": { name: "MaxVaporize", - nameLocale: 1014, - description: 180, + nameLocale: 1023, + description: 184, tags: [ "输出", @@ -475,17 +475,17 @@ export default { config: [ - {"default":0,"name":"t","options":["火","水"],"title":1553,"type":"option"}, + {"default":0,"name":"t","options":["火","水"],"title":1571,"type":"option"}, - {"default":"NormalAttack","name":"skill","title":675,"type":"skill4"}, + {"default":"NormalAttack","name":"skill","title":682,"type":"skill4"}, ], }, "MaxMelt": { name: "MaxMelt", - nameLocale: 1015, - description: 182, + nameLocale: 1024, + description: 186, tags: [ "输出", @@ -497,17 +497,17 @@ export default { config: [ - {"default":0,"name":"t","options":["火","冰"],"title":1553,"type":"option"}, + {"default":0,"name":"t","options":["火","冰"],"title":1571,"type":"option"}, - {"default":"NormalAttack","name":"skill","title":675,"type":"skill4"}, + {"default":"NormalAttack","name":"skill","title":682,"type":"skill4"}, ], }, "ExpectVaporize": { name: "ExpectVaporize", - nameLocale: 1023, - description: 181, + nameLocale: 1032, + description: 185, tags: [ "输出", @@ -519,17 +519,17 @@ export default { config: [ - {"default":0,"name":"t","options":["火","水"],"title":1553,"type":"option"}, + {"default":0,"name":"t","options":["火","水"],"title":1571,"type":"option"}, - {"default":"NormalAttack","name":"skill","title":675,"type":"skill4"}, + {"default":"NormalAttack","name":"skill","title":682,"type":"skill4"}, ], }, "ExpectMelt": { name: "ExpectMelt", - nameLocale: 1024, - description: 183, + nameLocale: 1033, + description: 187, tags: [ "输出", @@ -541,17 +541,17 @@ export default { config: [ - {"default":0,"name":"t","options":["火","冰"],"title":1553,"type":"option"}, + {"default":0,"name":"t","options":["火","冰"],"title":1571,"type":"option"}, - {"default":"NormalAttack","name":"skill","title":675,"type":"skill4"}, + {"default":"NormalAttack","name":"skill","title":682,"type":"skill4"}, ], }, "AlbedoDefault": { name: "AlbedoDefault", - nameLocale: 1749, - description: 839, + nameLocale: 1768, + description: 847, tags: [ "输出", @@ -568,8 +568,8 @@ export default { "AloyDefault": { name: "AloyDefault", - nameLocale: 454, - description: 960, + nameLocale: 459, + description: 969, tags: [ "输出", @@ -586,8 +586,8 @@ export default { "AmberDefault": { name: "AmberDefault", - nameLocale: 551, - description: 963, + nameLocale: 557, + description: 972, tags: [ "输出", @@ -604,8 +604,8 @@ export default { "AratakiIttoDefault": { name: "AratakiIttoDefault", - nameLocale: 1458, - description: 1460, + nameLocale: 1472, + description: 1474, tags: [ "输出", @@ -622,8 +622,8 @@ export default { "BarbaraDefault": { name: "BarbaraDefault", - nameLocale: 1443, - description: 179, + nameLocale: 1457, + description: 183, tags: [ "治疗", @@ -642,8 +642,8 @@ export default { "BeidouDefault": { name: "BeidouDefault", - nameLocale: 327, - description: 840, + nameLocale: 331, + description: 848, tags: [ "输出", @@ -660,8 +660,8 @@ export default { "BennettDamage": { name: "BennettDamage", - nameLocale: 1237, - description: 836, + nameLocale: 1249, + description: 844, tags: [ "辅助", @@ -677,17 +677,17 @@ export default { config: [ - {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":238,"type":"float"}, + {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":241,"type":"float"}, - {"default":0.9,"max":1.0,"min":0.0,"name":"other_dmg_ratio","title":159,"type":"float"}, + {"default":0.9,"max":1.0,"min":0.0,"name":"other_dmg_ratio","title":163,"type":"float"}, ], }, "BennettDefault": { name: "BennettDefault", - nameLocale: 1238, - description: 951, + nameLocale: 1250, + description: 960, tags: [ "辅助", @@ -699,15 +699,15 @@ export default { config: [ - {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":238,"type":"float"}, + {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":241,"type":"float"}, ], }, "ChongyunDefault": { name: "ChongyunDefault", - nameLocale: 1664, - description: 838, + nameLocale: 1682, + description: 846, tags: [ "副C", @@ -726,8 +726,8 @@ export default { "DilucDefault": { name: "DilucDefault", - nameLocale: 1633, - description: 977, + nameLocale: 1651, + description: 986, tags: [ "输出", @@ -739,17 +739,17 @@ export default { config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1507,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1521,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1499,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1513,"type":"float"}, ], }, "DionaDefault": { name: "DionaDefault", - nameLocale: 1636, - description: 944, + nameLocale: 1654, + description: 953, tags: [ "治疗", @@ -763,15 +763,15 @@ export default { config: [ - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":238,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":241,"type":"float"}, ], }, "EulaDefault": { name: "EulaDefault", - nameLocale: 169, - description: 832, + nameLocale: 173, + description: 840, tags: [ "输出", @@ -788,8 +788,8 @@ export default { "FischlDefault": { name: "FischlDefault", - nameLocale: 1493, - description: 833, + nameLocale: 1507, + description: 841, tags: [ "输出", @@ -806,8 +806,8 @@ export default { "GanyuDefault": { name: "GanyuDefault", - nameLocale: 1257, - description: 972, + nameLocale: 1269, + description: 981, tags: [ "输出", @@ -819,15 +819,15 @@ export default { config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1507,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1521,"type":"float"}, ], }, "GorouDefault": { name: "GorouDefault", - nameLocale: 153, - description: 842, + nameLocale: 157, + description: 850, tags: [ "辅助", @@ -839,15 +839,15 @@ export default { config: [ - {"default":1.7,"max":3.0,"min":1.0,"name":"recharge_demand","title":237,"type":"float"}, + {"default":1.7,"max":3.0,"min":1.0,"name":"recharge_demand","title":242,"type":"float"}, ], }, "HuTaoDefault": { name: "HuTaoDefault", - nameLocale: 1435, - description: 956, + nameLocale: 1449, + description: 965, tags: [ "输出", @@ -859,17 +859,17 @@ export default { config: [ - {"default":0.5,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1499,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1513,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1507,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1521,"type":"float"}, ], }, "JeanDefault": { name: "JeanDefault", - nameLocale: 1249, - description: 834, + nameLocale: 1261, + description: 842, tags: [ "副C", @@ -883,17 +883,17 @@ export default { config: [ - {"default":0.5,"max":1.0,"min":0.0,"name":"damage_weight","title":1091,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"damage_weight","title":1102,"type":"float"}, - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":237,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":242,"type":"float"}, ], }, "KaedeharaKazuhaDamage": { name: "KaedeharaKazuhaDamage", - nameLocale: 1040, - description: 967, + nameLocale: 1050, + description: 976, tags: [ "输出", @@ -907,19 +907,19 @@ export default { config: [ - {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":238,"type":"float"}, + {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":241,"type":"float"}, - {"default":0.5,"max":1.0,"min":0.0,"name":"swirl_rate","title":672,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"swirl_rate","title":679,"type":"float"}, - {"default":0.9,"max":1.0,"min":0.0,"name":"other_dmg_ratio","title":159,"type":"float"}, + {"default":0.9,"max":1.0,"min":0.0,"name":"other_dmg_ratio","title":163,"type":"float"}, ], }, "KaedeharaKazuhaDefault": { name: "KaedeharaKazuhaDefault", - nameLocale: 1039, - description: 950, + nameLocale: 1049, + description: 959, tags: [ "辅助", @@ -931,15 +931,15 @@ export default { config: [ - {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":238,"type":"float"}, + {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":241,"type":"float"}, ], }, "KaeyaDefault": { name: "KaeyaDefault", - nameLocale: 293, - description: 835, + nameLocale: 297, + description: 843, tags: [ "输出", @@ -956,8 +956,8 @@ export default { "KamisatoAyakaDefault": { name: "KamisatoAyakaDefault", - nameLocale: 1352, - description: 831, + nameLocale: 1366, + description: 839, tags: [ "输出", @@ -969,15 +969,15 @@ export default { config: [ - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":238,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":241,"type":"float"}, ], }, "KamisatoAyakaDps": { name: "KamisatoAyakaDps", - nameLocale: 1350, - description: 1022, + nameLocale: 1364, + description: 1031, tags: [ "输出", @@ -994,8 +994,8 @@ export default { "KamisatoAyatoDefault": { name: "KamisatoAyatoDefault", - nameLocale: 1346, - description: 943, + nameLocale: 1360, + description: 952, tags: [ "输出", @@ -1012,8 +1012,8 @@ export default { "KeqingDefault": { name: "KeqingDefault", - nameLocale: 309, - description: 981, + nameLocale: 313, + description: 990, tags: [ "输出", @@ -1025,15 +1025,15 @@ export default { config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"aggravate_rate","title":1596,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"aggravate_rate","title":1614,"type":"float"}, ], }, "KleeDefault": { name: "KleeDefault", - nameLocale: 377, - description: 380, + nameLocale: 382, + description: 385, tags: [ "输出", @@ -1045,15 +1045,15 @@ export default { config: [ - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":238,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":241,"type":"float"}, ], }, "KujouSaraDamage": { name: "KujouSaraDamage", - nameLocale: 109, - description: 314, + nameLocale: 113, + description: 318, tags: [ "输出", @@ -1067,15 +1067,15 @@ export default { config: [ - {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":238,"type":"float"}, + {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":241,"type":"float"}, ], }, "KujouSaraDefault": { name: "KujouSaraDefault", - nameLocale: 110, - description: 982, + nameLocale: 114, + description: 991, tags: [ "辅助", @@ -1092,8 +1092,8 @@ export default { "LisaDefault": { name: "LisaDefault", - nameLocale: 100, - description: 957, + nameLocale: 104, + description: 966, tags: [ "输出", @@ -1105,15 +1105,15 @@ export default { config: [ - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":237,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":242,"type":"float"}, ], }, "MonaDefault": { name: "MonaDefault", - nameLocale: 1467, - description: 973, + nameLocale: 1481, + description: 982, tags: [ "输出", @@ -1127,15 +1127,15 @@ export default { config: [ - {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":237,"type":"float"}, + {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":242,"type":"float"}, ], }, "NingguangDefault": { name: "NingguangDefault", - nameLocale: 287, - description: 958, + nameLocale: 291, + description: 967, tags: [ "输出", @@ -1152,8 +1152,8 @@ export default { "NoelleDefault": { name: "NoelleDefault", - nameLocale: 1576, - description: 975, + nameLocale: 1594, + description: 984, tags: [ "输出", @@ -1170,8 +1170,8 @@ export default { "QiqiDefault": { name: "QiqiDefault", - nameLocale: 67, - description: 946, + nameLocale: 71, + description: 955, tags: [ "治疗", @@ -1183,15 +1183,15 @@ export default { config: [ - {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":237,"type":"float"}, + {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":242,"type":"float"}, ], }, "RaidenShogunDefault": { name: "RaidenShogunDefault", - nameLocale: 1782, - description: 979, + nameLocale: 1801, + description: 988, tags: [ "输出", @@ -1203,15 +1203,15 @@ export default { config: [ - {"default":2.6,"max":4.0,"min":1.0,"name":"recharge_demand","title":238,"type":"float"}, + {"default":2.6,"max":4.0,"min":1.0,"name":"recharge_demand","title":241,"type":"float"}, ], }, "RazorDefault": { name: "RazorDefault", - nameLocale: 1775, - description: 971, + nameLocale: 1794, + description: 980, tags: [ "输出", @@ -1228,8 +1228,8 @@ export default { "RosariaDefault": { name: "RosariaDefault", - nameLocale: 1411, - description: 954, + nameLocale: 1425, + description: 963, tags: [ "辅助", @@ -1248,8 +1248,8 @@ export default { "SangonomiyaKokomiDefault": { name: "SangonomiyaKokomiDefault", - nameLocale: 1230, - description: 965, + nameLocale: 1242, + description: 974, tags: [ "输出", @@ -1268,8 +1268,8 @@ export default { "SayuDefault": { name: "SayuDefault", - nameLocale: 812, - description: 959, + nameLocale: 820, + description: 968, tags: [ "输出", @@ -1283,15 +1283,15 @@ export default { config: [ - {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":237,"type":"float"}, + {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":242,"type":"float"}, ], }, "ShenheDefault": { name: "ShenheDefault", - nameLocale: 1290, - description: 952, + nameLocale: 1302, + description: 961, tags: [ "辅助", @@ -1303,15 +1303,15 @@ export default { config: [ - {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":237,"type":"float"}, + {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":242,"type":"float"}, ], }, "SucroseDefault": { name: "SucroseDefault", - nameLocale: 1320, - description: 953, + nameLocale: 1334, + description: 962, tags: [ "辅助", @@ -1323,15 +1323,15 @@ export default { config: [ - {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":237,"type":"float"}, + {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":242,"type":"float"}, ], }, "TartagliaDefault": { name: "TartagliaDefault", - nameLocale: 1627, - description: 976, + nameLocale: 1645, + description: 985, tags: [ "输出", @@ -1348,8 +1348,8 @@ export default { "ThomaDefault": { name: "ThomaDefault", - nameLocale: 665, - description: 949, + nameLocale: 672, + description: 958, tags: [ "辅助", @@ -1361,15 +1361,15 @@ export default { config: [ - {"default":2.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":237,"type":"float"}, + {"default":2.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":242,"type":"float"}, ], }, "VentiDefault": { name: "VentiDefault", - nameLocale: 1142, - description: 968, + nameLocale: 1153, + description: 977, tags: [ "输出", @@ -1381,15 +1381,15 @@ export default { config: [ - {"default":0.7,"max":1.0,"min":0.0,"name":"swirl_rate","title":669,"type":"float"}, + {"default":0.7,"max":1.0,"min":0.0,"name":"swirl_rate","title":676,"type":"float"}, ], }, "XianglingDefault": { name: "XianglingDefault", - nameLocale: 1840, - description: 969, + nameLocale: 1861, + description: 978, tags: [ "输出", @@ -1401,21 +1401,21 @@ export default { config: [ - {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":237,"type":"float"}, + {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":242,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1507,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1521,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1499,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1513,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"overload_rate","title":1602,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"overload_rate","title":1620,"type":"float"}, ], }, "XiaoDefault": { name: "XiaoDefault", - nameLocale: 1849, - description: 980, + nameLocale: 1870, + description: 989, tags: [ "输出", @@ -1432,8 +1432,8 @@ export default { "XingqiuDefault": { name: "XingqiuDefault", - nameLocale: 1512, - description: 837, + nameLocale: 1526, + description: 845, tags: [ "输出", @@ -1445,15 +1445,15 @@ export default { config: [ - {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":237,"type":"float"}, + {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":242,"type":"float"}, ], }, "XinyanDamage": { name: "XinyanDamage", - nameLocale: 1621, - description: 948, + nameLocale: 1639, + description: 957, tags: [ "输出", @@ -1470,8 +1470,8 @@ export default { "XinyanDefault": { name: "XinyanDefault", - nameLocale: 1620, - description: 955, + nameLocale: 1638, + description: 964, tags: [ "辅助", @@ -1483,17 +1483,17 @@ export default { config: [ - {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":237,"type":"float"}, + {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":242,"type":"float"}, - {"default":0.5,"max":1.0,"min":0.0,"name":"damage_demand","title":173,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"damage_demand","title":177,"type":"float"}, ], }, "YaeMikoDefault": { name: "YaeMikoDefault", - nameLocale: 243, - description: 710, + nameLocale: 247, + description: 717, tags: [ "输出", @@ -1505,21 +1505,21 @@ export default { config: [ - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_requirement","title":237,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_requirement","title":242,"type":"float"}, - {"default":0,"name":"combo","options":["不站场平A","站场平A"],"title":1629,"type":"option"}, + {"default":0,"name":"combo","options":["不站场平A","站场平A"],"title":1647,"type":"option"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"aggravate_rate","title":1596,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"aggravate_rate","title":1614,"type":"float"}, - {"default":0.0,"max":4.0,"min":0.0,"name":"hyperbloom_rate","title":1597,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"hyperbloom_rate","title":1615,"type":"float"}, ], }, "YanfeiDefault": { name: "YanfeiDefault", - nameLocale: 1185, - description: 970, + nameLocale: 1197, + description: 979, tags: [ "输出", @@ -1536,8 +1536,8 @@ export default { "YelanDefault": { name: "YelanDefault", - nameLocale: 482, - description: 961, + nameLocale: 488, + description: 970, tags: [ "输出", @@ -1549,17 +1549,17 @@ export default { config: [ - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":238,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":241,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1499,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1513,"type":"float"}, ], }, "YoimiyaDefault": { name: "YoimiyaDefault", - nameLocale: 566, - description: 964, + nameLocale: 573, + description: 973, tags: [ "输出", @@ -1571,17 +1571,17 @@ export default { config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1499,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1513,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1507,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1521,"type":"float"}, ], }, "YunjinDefault": { name: "YunjinDefault", - nameLocale: 139, - description: 841, + nameLocale: 143, + description: 849, tags: [ "辅助", @@ -1593,15 +1593,15 @@ export default { config: [ - {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":237,"type":"float"}, + {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":242,"type":"float"}, ], }, "ZhongliDefault": { name: "ZhongliDefault", - nameLocale: 1702, - description: 947, + nameLocale: 1720, + description: 956, tags: [ "爆发", @@ -1613,15 +1613,15 @@ export default { config: [ - {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":237,"type":"float"}, + {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":242,"type":"float"}, ], }, "KukiShinobuDefault": { name: "KukiShinobuDefault", - nameLocale: 103, - description: 1615, + nameLocale: 107, + description: 1633, tags: [ "辅助", @@ -1633,15 +1633,15 @@ export default { config: [ - {"default":0.6,"max":1.0,"min":0.0,"name":"e_ratio","title":11,"type":"float"}, + {"default":0.6,"max":1.0,"min":0.0,"name":"e_ratio","title":12,"type":"float"}, ], }, "ShikanoinHeizouDefault": { name: "ShikanoinHeizouDefault", - nameLocale: 1864, - description: 1616, + nameLocale: 1885, + description: 1634, tags: [ "输出", @@ -1658,8 +1658,8 @@ export default { "TighnariDefault": { name: "TighnariDefault", - nameLocale: 716, - description: 177, + nameLocale: 723, + description: 181, tags: [ "", @@ -1671,15 +1671,15 @@ export default { config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"spread_rate","title":1501,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"spread_rate","title":1515,"type":"float"}, ], }, "CynoDefault": { name: "CynoDefault", - nameLocale: 1592, - description: 661, + nameLocale: 1610, + description: 668, tags: [ "输出", @@ -1691,27 +1691,27 @@ export default { config: [ - {"default":1.3,"max":3.0,"min":1.0,"name":"recharge_requirement","title":237,"type":"float"}, + {"default":1.3,"max":3.0,"min":1.0,"name":"recharge_requirement","title":242,"type":"float"}, - {"default":0,"name":"combo","options":["乱a不取消","取消第五段"],"title":1629,"type":"option"}, + {"default":0,"name":"combo","options":["乱a不取消","取消第五段"],"title":1647,"type":"option"}, - {"default":false,"name":"until_expire","title":19,"type":"bool"}, + {"default":false,"name":"until_expire","title":20,"type":"bool"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"aggravate_rate","title":1596,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"aggravate_rate","title":1614,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"elecharged_rate","title":652,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"elecharged_rate","title":659,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"overload_rate","title":1601,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"overload_rate","title":1619,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"hyperbloom_rate","title":1597,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"hyperbloom_rate","title":1615,"type":"float"}, ], }, "NilouDefault": { name: "NilouDefault", - nameLocale: 534, - description: 962, + nameLocale: 540, + description: 971, tags: [ "", @@ -1723,23 +1723,23 @@ export default { config: [ - {"default":5.0,"max":10.0,"min":0.0,"name":"e_ratio","title":203,"type":"float"}, + {"default":5.0,"max":10.0,"min":0.0,"name":"e_ratio","title":207,"type":"float"}, - {"default":1.0,"max":10.0,"min":0.0,"name":"q_ratio","title":221,"type":"float"}, + {"default":1.0,"max":10.0,"min":0.0,"name":"q_ratio","title":225,"type":"float"}, - {"default":3.0,"max":10.0,"min":0.0,"name":"bloom_ratio","title":1406,"type":"float"}, + {"default":3.0,"max":10.0,"min":0.0,"name":"bloom_ratio","title":1420,"type":"float"}, - {"default":1000.0,"max":3000.0,"min":0.0,"name":"other_em","title":1732,"type":"float"}, + {"default":1000.0,"max":3000.0,"min":0.0,"name":"other_em","title":1751,"type":"float"}, - {"default":7.0,"max":10.0,"min":0.0,"name":"other_bloom_ratio","title":1733,"type":"float"}, + {"default":7.0,"max":10.0,"min":0.0,"name":"other_bloom_ratio","title":1752,"type":"float"}, ], }, "NahidaDefault": { name: "NahidaDefault", - nameLocale: 1391, - description: 184, + nameLocale: 1405, + description: 188, tags: [ "输出", @@ -1751,23 +1751,23 @@ export default { config: [ - {"default":0,"max":1500,"min":0,"name":"em_requirement","title":1385,"type":"int"}, + {"default":0,"max":1500,"min":0,"name":"em_requirement","title":1399,"type":"int"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"spread_rate","title":1501,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"spread_rate","title":1515,"type":"float"}, - {"default":0.0,"max":4.0,"min":0.0,"name":"bloom_count","title":1406,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"bloom_count","title":1420,"type":"float"}, - {"default":0.0,"max":3.0,"min":0.0,"name":"burn_duration","title":1194,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"burn_duration","title":1206,"type":"float"}, - {"default":0,"max":2,"min":0,"name":"pryo_teammate_count","title":1163,"type":"int"}, + {"default":0,"max":2,"min":0,"name":"pryo_teammate_count","title":1174,"type":"int"}, ], }, "WandererDefault": { name: "WandererDefault", - nameLocale: 1115, - description: 1561, + nameLocale: 1126, + description: 1579, tags: [ "输出", @@ -1779,29 +1779,29 @@ export default { config: [ - {"default":false,"name":"e_hydro","title":26,"type":"bool"}, + {"default":false,"name":"e_hydro","title":27,"type":"bool"}, - {"default":false,"name":"e_pyro","title":27,"type":"bool"}, + {"default":false,"name":"e_pyro","title":28,"type":"bool"}, - {"default":false,"name":"e_cryo","title":25,"type":"bool"}, + {"default":false,"name":"e_cryo","title":26,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"spd_extra","title":1802,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"spd_extra","title":1823,"type":"float"}, - {"default":1.0,"max":1.5,"min":0.5,"name":"spd_comp","title":740,"type":"float"}, + {"default":1.0,"max":1.5,"min":0.5,"name":"spd_comp","title":747,"type":"float"}, - {"default":3,"max":12,"min":0,"name":"dash_count","title":29,"type":"int"}, + {"default":3,"max":12,"min":0,"name":"dash_count","title":30,"type":"int"}, - {"default":5,"max":5,"min":0,"name":"q_count","title":14,"type":"int"}, + {"default":5,"max":5,"min":0,"name":"q_count","title":15,"type":"int"}, - {"default":12,"max":24,"min":0,"name":"swirl_count","title":671,"type":"int"}, + {"default":12,"max":24,"min":0,"name":"swirl_count","title":678,"type":"int"}, ], }, "FaruzanDamage": { name: "FaruzanDamage", - nameLocale: 1232, - description: 178, + nameLocale: 1244, + description: 182, tags: [ "", @@ -1813,15 +1813,15 @@ export default { config: [ - {"default":2.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":237,"type":"float"}, + {"default":2.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":242,"type":"float"}, ], }, "AlhaithamDefault": { name: "AlhaithamDefault", - nameLocale: 1441, - description: 163, + nameLocale: 1455, + description: 167, tags: [ "", @@ -1833,21 +1833,21 @@ export default { config: [ - {"default":5.0,"max":10.0,"min":0.0,"name":"charged_ratio","title":1688,"type":"float"}, + {"default":5.0,"max":10.0,"min":0.0,"name":"charged_ratio","title":1706,"type":"float"}, - {"default":5.0,"max":10.0,"min":0.0,"name":"e_ratio","title":214,"type":"float"}, + {"default":5.0,"max":10.0,"min":0.0,"name":"e_ratio","title":218,"type":"float"}, - {"default":1.0,"max":10.0,"min":0.0,"name":"q_ratio","title":223,"type":"float"}, + {"default":1.0,"max":10.0,"min":0.0,"name":"q_ratio","title":227,"type":"float"}, - {"default":0.3,"max":1.0,"min":0.0,"name":"spread_ratio","title":1501,"type":"float"}, + {"default":0.3,"max":1.0,"min":0.0,"name":"spread_ratio","title":1515,"type":"float"}, ], }, "DehyaDefault": { name: "DehyaDefault", - nameLocale: 1639, - description: 978, + nameLocale: 1657, + description: 987, tags: [ "输出", @@ -1859,19 +1859,19 @@ export default { config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1507,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1521,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1499,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1513,"type":"float"}, - {"default":6,"max":20,"min":0,"name":"e_count","title":95,"type":"int"}, + {"default":6,"max":20,"min":0,"name":"e_count","title":99,"type":"int"}, ], }, "MikaDefault": { name: "MikaDefault", - nameLocale: 1382, - description: 945, + nameLocale: 1396, + description: 954, tags: [ "治疗", @@ -1885,17 +1885,17 @@ export default { config: [ - {"default":2.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":238,"type":"float"}, + {"default":2.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":241,"type":"float"}, - {"default":0.6,"max":1.0,"min":0.0,"name":"crit_demand","title":997,"type":"float"}, + {"default":0.6,"max":1.0,"min":0.0,"name":"crit_demand","title":1006,"type":"float"}, ], }, "FreminetDefault": { name: "FreminetDefault", - nameLocale: 1491, - description: 974, + nameLocale: 1505, + description: 983, tags: [ "", @@ -1912,8 +1912,8 @@ export default { "LyneyDefault": { name: "LyneyDefault", - nameLocale: 1035, - description: 966, + nameLocale: 1044, + description: 975, tags: [ "", @@ -1930,8 +1930,8 @@ export default { "NeuvilletteDefault": { name: "NeuvilletteDefault", - nameLocale: 1659, - description: 1660, + nameLocale: 1677, + description: 1678, tags: [ "", @@ -1948,8 +1948,8 @@ export default { "WriothesleyDefault": { name: "WriothesleyDefault", - nameLocale: 1472, - description: 1007, + nameLocale: 1486, + description: 1016, tags: [ "", diff --git a/src/assets/_gen_weapon.js b/src/assets/_gen_weapon.js index 35fcaeb4..57cfc7a8 100644 --- a/src/assets/_gen_weapon.js +++ b/src/assets/_gen_weapon.js @@ -78,6 +78,10 @@ // // import TheDockhandsAssistant_tn from "@image/weapons/TheDockhandsAssistant_tn" // +// import SwordOfNarzissenkreuz_tn from "@image/weapons/SwordOfNarzissenkreuz_tn" +// +// import SplendorOfTranquilWaters_tn from "@image/weapons/SplendorOfTranquilWaters_tn" +// // import WolfsGravestone_tn from "@image/weapons/WolfsGravestone_tn" // // import SkywardPride_tn from "@image/weapons/SkywardPride_tn" @@ -358,18 +362,18 @@ export default { MistsplitterReforged: { name: "MistsplitterReforged", internalName: "Sword_Narukami", - nameLocale: 1788, + nameLocale: 1807, star: 5, url: imageUrl("Sword_Narukami"), type: "Sword", - effect: 1481, + effect: 1495, configs: [ - {"default":3,"max":3,"min":0,"name":"emblem_level","title":47,"type":"int"}, + {"default":3,"max":3,"min":0,"name":"emblem_level","title":51,"type":"int"}, ], @@ -378,13 +382,13 @@ export default { AquilaFavonia: { name: "AquilaFavonia", internalName: "Sword_Falcon", - nameLocale: 1825, + nameLocale: 1846, star: 5, url: imageUrl("Sword_Falcon"), type: "Sword", - effect: 728, + effect: 735, configs: null, @@ -394,20 +398,20 @@ export default { SummitShaper: { name: "SummitShaper", internalName: "Sword_Kunwu", - nameLocale: 763, + nameLocale: 770, star: 5, url: imageUrl("Sword_Kunwu"), type: "Sword", - effect: 695, + effect: 702, configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":698,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":705,"type":"float"}, ], @@ -416,13 +420,13 @@ export default { SkywardBlade: { name: "SkywardBlade", internalName: "Sword_Dvalin", - nameLocale: 497, + nameLocale: 503, star: 5, url: imageUrl("Sword_Dvalin"), type: "Sword", - effect: 992, + effect: 1001, configs: null, @@ -432,18 +436,18 @@ export default { FreedomSworn: { name: "FreedomSworn", internalName: "Sword_Widsith", - nameLocale: 1447, + nameLocale: 1461, star: 5, url: imageUrl("Sword_Widsith"), type: "Sword", - effect: 1828, + effect: 1849, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, ], @@ -452,13 +456,13 @@ export default { PrimordialJadeCutter: { name: "PrimordialJadeCutter", internalName: "Sword_Morax", - nameLocale: 1330, + nameLocale: 1344, star: 5, url: imageUrl("Sword_Morax"), type: "Sword", - effect: 1276, + effect: 1288, configs: null, @@ -468,13 +472,13 @@ export default { TheFlute: { name: "TheFlute", internalName: "Sword_Troupe", - nameLocale: 1373, + nameLocale: 1387, star: 4, url: imageUrl("Sword_Troupe"), type: "Sword", - effect: 937, + effect: 946, configs: null, @@ -484,13 +488,13 @@ export default { TheBlackSword: { name: "TheBlackSword", internalName: "Sword_Bloodstained", - nameLocale: 1875, + nameLocale: 1896, star: 4, url: imageUrl("Sword_Bloodstained"), type: "Sword", - effect: 923, + effect: 932, configs: null, @@ -500,18 +504,18 @@ export default { TheAlleyFlash: { name: "TheAlleyFlash", internalName: "Sword_Outlaw", - nameLocale: 985, + nameLocale: 994, star: 4, url: imageUrl("Sword_Outlaw"), type: "Sword", - effect: 1550, + effect: 1568, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, ], @@ -520,7 +524,7 @@ export default { SwordOfDescension: { name: "SwordOfDescension", internalName: "Sword_Psalmus", - nameLocale: 1757, + nameLocale: 1776, star: 4, url: imageUrl("Sword_Psalmus"), type: "Sword", @@ -536,13 +540,13 @@ export default { SacrificialSword: { name: "SacrificialSword", internalName: "Sword_Fossil", - nameLocale: 1359, + nameLocale: 1373, star: 4, url: imageUrl("Sword_Fossil"), type: "Sword", - effect: 215, + effect: 219, configs: null, @@ -552,13 +556,13 @@ export default { RoyalLongsword: { name: "RoyalLongsword", internalName: "Sword_Theocrat", - nameLocale: 560, + nameLocale: 566, star: 4, url: imageUrl("Sword_Theocrat"), type: "Sword", - effect: 738, + effect: 745, configs: null, @@ -568,18 +572,18 @@ export default { PrototypeRancour: { name: "PrototypeRancour", internalName: "Sword_Proto", - nameLocale: 1568, + nameLocale: 1586, star: 4, url: imageUrl("Sword_Proto"), type: "Sword", - effect: 938, + effect: 947, configs: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, ], @@ -588,13 +592,13 @@ export default { AmenomaKageuchi: { name: "AmenomaKageuchi", internalName: "Sword_Bakufu", - nameLocale: 495, + nameLocale: 501, star: 4, url: imageUrl("Sword_Bakufu"), type: "Sword", - effect: 778, + effect: 785, configs: null, @@ -604,18 +608,18 @@ export default { LionsRoar: { name: "LionsRoar", internalName: "Sword_Rockkiller", - nameLocale: 331, + nameLocale: 335, star: 4, url: imageUrl("Sword_Rockkiller"), type: "Sword", - effect: 577, + effect: 584, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, ], @@ -624,18 +628,18 @@ export default { IronSting: { name: "IronSting", internalName: "Sword_Exotic", - nameLocale: 1708, + nameLocale: 1726, star: 4, url: imageUrl("Sword_Exotic"), type: "Sword", - effect: 1649, + effect: 1667, configs: [ - {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, ], @@ -644,13 +648,13 @@ export default { FesteringDesire: { name: "FesteringDesire", internalName: "Sword_Magnum", - nameLocale: 1437, + nameLocale: 1451, star: 4, url: imageUrl("Sword_Magnum"), type: "Sword", - effect: 217, + effect: 221, configs: null, @@ -660,13 +664,13 @@ export default { FavoniusSword: { name: "FavoniusSword", internalName: "Sword_Zephyrus", - nameLocale: 1535, + nameLocale: 1553, star: 4, url: imageUrl("Sword_Zephyrus"), type: "Sword", - effect: 739, + effect: 746, configs: null, @@ -676,18 +680,18 @@ export default { CinnabarSpindle: { name: "CinnabarSpindle", internalName: "Sword_Opus", - nameLocale: 1624, + nameLocale: 1642, star: 4, url: imageUrl("Sword_Opus"), type: "Sword", - effect: 216, + effect: 220, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, ], @@ -696,18 +700,18 @@ export default { BlackcliffLongsword: { name: "BlackcliffLongsword", internalName: "Sword_Blackrock", - nameLocale: 1880, + nameLocale: 1901, star: 4, url: imageUrl("Sword_Blackrock"), type: "Sword", - effect: 298, + effect: 301, configs: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, ], @@ -716,18 +720,18 @@ export default { HarbingerOfDawn: { name: "HarbingerOfDawn", internalName: "Sword_Dawn", - nameLocale: 1874, + nameLocale: 1895, star: 3, url: imageUrl("Sword_Dawn"), type: "Sword", - effect: 1279, + effect: 1291, configs: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, ], @@ -736,13 +740,13 @@ export default { FilletBlade: { name: "FilletBlade", internalName: "Sword_Sashimi", - nameLocale: 381, + nameLocale: 386, star: 3, url: imageUrl("Sword_Sashimi"), type: "Sword", - effect: 734, + effect: 741, configs: null, @@ -752,18 +756,18 @@ export default { SkyriderSword: { name: "SkyriderSword", internalName: "Sword_Mitsurugi", - nameLocale: 1830, + nameLocale: 1851, star: 3, url: imageUrl("Sword_Mitsurugi"), type: "Sword", - effect: 787, + effect: 794, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, ], @@ -772,18 +776,18 @@ export default { DarkIronSword: { name: "DarkIronSword", internalName: "Sword_Darker", - nameLocale: 986, + nameLocale: 995, star: 3, url: imageUrl("Sword_Darker"), type: "Sword", - effect: 1560, + effect: 1578, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, ], @@ -792,18 +796,18 @@ export default { CoolSteel: { name: "CoolSteel", internalName: "Sword_Steel", - nameLocale: 280, + nameLocale: 284, star: 3, url: imageUrl("Sword_Steel"), type: "Sword", - effect: 570, + effect: 577, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, ], @@ -812,13 +816,13 @@ export default { TravelersHandySword: { name: "TravelersHandySword", internalName: "Sword_Traveler", - nameLocale: 796, + nameLocale: 804, star: 3, url: imageUrl("Sword_Traveler"), type: "Sword", - effect: 1487, + effect: 1501, configs: null, @@ -828,7 +832,7 @@ export default { SilverSword: { name: "SilverSword", internalName: "Sword_Silver", - nameLocale: 1709, + nameLocale: 1727, star: 2, url: imageUrl("Sword_Silver"), type: "Sword", @@ -842,7 +846,7 @@ export default { DullBlade: { name: "DullBlade", internalName: "Sword_Blunt", - nameLocale: 810, + nameLocale: 818, star: 1, url: imageUrl("Sword_Blunt"), type: "Sword", @@ -856,18 +860,18 @@ export default { HaranGeppakuFutsu: { name: "HaranGeppakuFutsu", internalName: "Sword_Amenoma", - nameLocale: 1100, + nameLocale: 1111, star: 5, url: imageUrl("Sword_Amenoma"), type: "Sword", - effect: 1483, + effect: 1497, configs: [ - {"default":2.0,"max":2.0,"min":0.0,"name":"stack","title":31,"type":"float"}, + {"default":2.0,"max":2.0,"min":0.0,"name":"stack","title":32,"type":"float"}, ], @@ -876,18 +880,18 @@ export default { CursedBlade: { name: "CursedBlade", internalName: "Sword_Youtou", - nameLocale: 1374, + nameLocale: 1388, star: 4, url: imageUrl("Sword_Youtou"), type: "Sword", - effect: 917, + effect: 926, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, ], @@ -896,7 +900,7 @@ export default { SapwoodBlade: { name: "SapwoodBlade", internalName: "Sword_Arakalari", - nameLocale: 351, + nameLocale: 355, star: 4, url: imageUrl("Sword_Arakalari"), type: "Sword", @@ -905,7 +909,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, ], @@ -914,18 +918,18 @@ export default { XiphosMoonlight: { name: "XiphosMoonlight", internalName: "Sword_Pleroma", - nameLocale: 1533, + nameLocale: 1551, star: 4, url: imageUrl("Sword_Pleroma"), type: "Sword", - effect: 1069, + effect: 1079, configs: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, ], @@ -934,18 +938,18 @@ export default { KeyOfKhajNisut: { name: "KeyOfKhajNisut", internalName: "Sword_Deshret", - nameLocale: 440, + nameLocale: 445, star: 5, url: imageUrl("Sword_Deshret"), type: "Sword", - effect: 1274, + effect: 1286, configs: [ - {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, ], @@ -954,18 +958,18 @@ export default { ToukabouShigure: { name: "ToukabouShigure", internalName: "Sword_Kasabouzu", - nameLocale: 94, + nameLocale: 98, star: 4, url: imageUrl("Sword_Kasabouzu"), type: "Sword", - effect: 733, + effect: 740, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, ], @@ -974,7 +978,7 @@ export default { LightOfFoliarIncision: { name: "LightOfFoliarIncision", internalName: "Sword_Ayus", - nameLocale: 1524, + nameLocale: 1540, star: 5, url: imageUrl("Sword_Ayus"), type: "Sword", @@ -983,7 +987,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, ], @@ -992,20 +996,20 @@ export default { WolfFang: { name: "WolfFang", internalName: "Sword_Boreas", - nameLocale: 1207, + nameLocale: 1219, star: 4, url: imageUrl("Sword_Boreas"), type: "Sword", - effect: 202, + effect: 206, configs: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"e_stack","title":204,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"e_stack","title":208,"type":"float"}, - {"default":0.0,"max":4.0,"min":0.0,"name":"q_stack","title":222,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"q_stack","title":226,"type":"float"}, ], @@ -1014,20 +1018,20 @@ export default { FinaleOfTheDeep: { name: "FinaleOfTheDeep", internalName: "Sword_Vorpal", - nameLocale: 1126, + nameLocale: 1137, star: 4, url: imageUrl("Sword_Vorpal"), type: "Sword", - effect: 783, + effect: 790, configs: [ - {"default":0.5,"max":1.0,"min":0.0,"name":"rate1","title":746,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"rate1","title":752,"type":"float"}, - {"default":0.5,"max":1.0,"min":0.0,"name":"rate2","title":748,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"rate2","title":754,"type":"float"}, ], @@ -1036,18 +1040,18 @@ export default { FleuveCendreFerryman: { name: "FleuveCendreFerryman", internalName: "Sword_Machination", - nameLocale: 1165, + nameLocale: 1176, star: 4, url: imageUrl("Sword_Machination"), type: "Sword", - effect: 213, + effect: 217, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, ], @@ -1056,18 +1060,56 @@ export default { TheDockhandsAssistant: { name: "TheDockhandsAssistant", internalName: "Sword_Mechanic", - nameLocale: 1439, + nameLocale: 1453, star: 4, url: imageUrl("Sword_Mechanic"), type: "Sword", - effect: 362, + effect: 367, configs: [ - {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":449,"type":"float"}, + {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":454,"type":"float"}, + + ], + + }, + + SwordOfNarzissenkreuz: { + name: "SwordOfNarzissenkreuz", + internalName: "Sword_Purewill", + nameLocale: 1084, + star: 4, + url: imageUrl("Sword_Purewill"), + type: "Sword", + + + effect: 1544, + + + configs: null, + + }, + + SplendorOfTranquilWaters: { + name: "SplendorOfTranquilWaters", + internalName: "Sword_Regalis", + nameLocale: 1815, + star: 5, + url: imageUrl("Sword_Regalis"), + type: "Sword", + + + effect: 1545, + + + configs: [ + + {"default":2.0,"max":3.0,"min":0.0,"name":"stack1","title":1531,"type":"float"}, + + {"default":2.0,"max":2.0,"min":0.0,"name":"stack2","title":1532,"type":"float"}, ], @@ -1076,18 +1118,18 @@ export default { WolfsGravestone: { name: "WolfsGravestone", internalName: "Claymore_Wolfmound", - nameLocale: 1208, + nameLocale: 1220, star: 5, url: imageUrl("Claymore_Wolfmound"), type: "Claymore", - effect: 729, + effect: 736, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, ], @@ -1096,13 +1138,13 @@ export default { SkywardPride: { name: "SkywardPride", internalName: "Claymore_Dvalin", - nameLocale: 496, + nameLocale: 502, star: 5, url: imageUrl("Claymore_Dvalin"), type: "Claymore", - effect: 1650, + effect: 1668, configs: null, @@ -1112,20 +1154,20 @@ export default { TheUnforged: { name: "TheUnforged", internalName: "Claymore_Kunwu", - nameLocale: 805, + nameLocale: 813, star: 5, url: imageUrl("Claymore_Kunwu"), type: "Claymore", - effect: 695, + effect: 702, configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":698,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":705,"type":"float"}, ], @@ -1134,18 +1176,18 @@ export default { SongOfBrokenPines: { name: "SongOfBrokenPines", internalName: "Claymore_Widsith", - nameLocale: 1031, + nameLocale: 1040, star: 5, url: imageUrl("Claymore_Widsith"), type: "Claymore", - effect: 1827, + effect: 1848, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, ], @@ -1154,13 +1196,13 @@ export default { RedhornStonethresher: { name: "RedhornStonethresher", internalName: "Claymore_Itadorimaru", - nameLocale: 1595, + nameLocale: 1613, star: 5, url: imageUrl("Claymore_Itadorimaru"), type: "Claymore", - effect: 1740, + effect: 1759, configs: null, @@ -1170,18 +1212,18 @@ export default { Akuoumaru: { name: "Akuoumaru", internalName: "Claymore_Maria", - nameLocale: 644, + nameLocale: 651, star: 4, url: imageUrl("Claymore_Maria"), type: "Claymore", - effect: 1721, + effect: 1740, configs: [ - {"default":40,"max":400,"min":40,"name":"energy","title":1726,"type":"int"}, + {"default":40,"max":400,"min":40,"name":"energy","title":1745,"type":"int"}, ], @@ -1190,13 +1232,13 @@ export default { RoyalGreatsword: { name: "RoyalGreatsword", internalName: "Claymore_Theocrat", - nameLocale: 555, + nameLocale: 561, star: 4, url: imageUrl("Claymore_Theocrat"), type: "Claymore", - effect: 738, + effect: 745, configs: null, @@ -1206,18 +1248,18 @@ export default { Whiteblind: { name: "Whiteblind", internalName: "Claymore_Exotic", - nameLocale: 1299, + nameLocale: 1311, star: 4, url: imageUrl("Claymore_Exotic"), type: "Claymore", - effect: 933, + effect: 942, configs: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, ], @@ -1226,18 +1268,18 @@ export default { TheBell: { name: "TheBell", internalName: "Claymore_Troupe", - nameLocale: 1699, + nameLocale: 1717, star: 4, url: imageUrl("Claymore_Troupe"), type: "Claymore", - effect: 356, + effect: 361, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, ], @@ -1246,13 +1288,13 @@ export default { SnowTombedStarsilver: { name: "SnowTombedStarsilver", internalName: "Claymore_Dragonfell", - nameLocale: 1763, + nameLocale: 1782, star: 4, url: imageUrl("Claymore_Dragonfell"), type: "Claymore", - effect: 918, + effect: 927, configs: null, @@ -1262,13 +1304,13 @@ export default { FavoniusGreatsword: { name: "FavoniusGreatsword", internalName: "Claymore_Zephyrus", - nameLocale: 1536, + nameLocale: 1554, star: 4, url: imageUrl("Claymore_Zephyrus"), type: "Claymore", - effect: 739, + effect: 746, configs: null, @@ -1278,13 +1320,13 @@ export default { KatsuragikiriNagamasa: { name: "KatsuragikiriNagamasa", internalName: "Claymore_Bakufu", - nameLocale: 1053, + nameLocale: 1063, star: 4, url: imageUrl("Claymore_Bakufu"), type: "Claymore", - effect: 220, + effect: 224, configs: null, @@ -1294,13 +1336,13 @@ export default { SacrificialGreatsword: { name: "SacrificialGreatsword", internalName: "Claymore_Fossil", - nameLocale: 1360, + nameLocale: 1374, star: 4, url: imageUrl("Claymore_Fossil"), type: "Claymore", - effect: 215, + effect: 219, configs: null, @@ -1310,18 +1352,18 @@ export default { SerpentSpine: { name: "SerpentSpine", internalName: "Claymore_Kione", - nameLocale: 1508, + nameLocale: 1522, star: 4, url: imageUrl("Claymore_Kione"), type: "Claymore", - effect: 1547, + effect: 1565, configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, ], @@ -1330,18 +1372,18 @@ export default { BlackcliffSlasher: { name: "BlackcliffSlasher", internalName: "Claymore_Blackrock", - nameLocale: 1878, + nameLocale: 1899, star: 4, url: imageUrl("Claymore_Blackrock"), type: "Claymore", - effect: 298, + effect: 301, configs: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, ], @@ -1350,18 +1392,18 @@ export default { Rainslasher: { name: "Rainslasher", internalName: "Claymore_Perdue", - nameLocale: 1762, + nameLocale: 1781, star: 4, url: imageUrl("Claymore_Perdue"), type: "Claymore", - effect: 574, + effect: 581, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, ], @@ -1370,13 +1412,13 @@ export default { PrototypeArchaic: { name: "PrototypeArchaic", internalName: "Claymore_Proto", - nameLocale: 1567, + nameLocale: 1585, star: 4, url: imageUrl("Claymore_Proto"), type: "Claymore", - effect: 935, + effect: 944, configs: null, @@ -1386,13 +1428,13 @@ export default { LuxuriousSeaLord: { name: "LuxuriousSeaLord", internalName: "Claymore_MillenniaTuna", - nameLocale: 1515, + nameLocale: 1529, star: 4, url: imageUrl("Claymore_MillenniaTuna"), type: "Claymore", - effect: 225, + effect: 229, configs: null, @@ -1402,18 +1444,18 @@ export default { LithicBlade: { name: "LithicBlade", internalName: "Claymore_Lapis", - nameLocale: 333, + nameLocale: 337, star: 4, url: imageUrl("Claymore_Lapis"), type: "Claymore", - effect: 1724, + effect: 1743, configs: [ - {"default":0,"max":4,"min":0,"name":"liyue_count","title":1730,"type":"int"}, + {"default":0,"max":4,"min":0,"name":"liyue_count","title":1749,"type":"int"}, ], @@ -1422,18 +1464,18 @@ export default { SkyriderGreatsword: { name: "SkyriderGreatsword", internalName: "Claymore_Mitsurugi", - nameLocale: 1829, + nameLocale: 1850, star: 3, url: imageUrl("Claymore_Mitsurugi"), type: "Claymore", - effect: 934, + effect: 943, configs: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, ], @@ -1442,13 +1484,13 @@ export default { DebateClub: { name: "DebateClub", internalName: "Claymore_Reasoning", - nameLocale: 162, + nameLocale: 166, star: 3, url: imageUrl("Claymore_Reasoning"), type: "Claymore", - effect: 776, + effect: 783, configs: null, @@ -1458,18 +1500,18 @@ export default { BloodstainedGreatsword: { name: "BloodstainedGreatsword", internalName: "Claymore_Siegfry", - nameLocale: 1088, + nameLocale: 1099, star: 3, url: imageUrl("Claymore_Siegfry"), type: "Claymore", - effect: 576, + effect: 583, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, ], @@ -1478,13 +1520,13 @@ export default { WhiteIronGreatsword: { name: "WhiteIronGreatsword", internalName: "Claymore_Tin", - nameLocale: 1309, + nameLocale: 1321, star: 3, url: imageUrl("Claymore_Tin"), type: "Claymore", - effect: 299, + effect: 303, configs: null, @@ -1494,18 +1536,18 @@ export default { FerrousShadow: { name: "FerrousShadow", internalName: "Claymore_Glaive", - nameLocale: 1707, + nameLocale: 1725, star: 3, url: imageUrl("Claymore_Glaive"), type: "Claymore", - effect: 1269, + effect: 1281, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, ], @@ -1514,7 +1556,7 @@ export default { OldMercsPal: { name: "OldMercsPal", internalName: "Claymore_Oyaji", - nameLocale: 176, + nameLocale: 180, star: 2, url: imageUrl("Claymore_Oyaji"), type: "Claymore", @@ -1528,7 +1570,7 @@ export default { WasterGreatsword: { name: "WasterGreatsword", internalName: "Claymore_Aniki", - nameLocale: 1564, + nameLocale: 1582, star: 1, url: imageUrl("Claymore_Aniki"), type: "Claymore", @@ -1542,7 +1584,7 @@ export default { ForestRegalia: { name: "ForestRegalia", internalName: "Claymore_Arakalari", - nameLocale: 1057, + nameLocale: 1067, star: 4, url: imageUrl("Claymore_Arakalari"), type: "Claymore", @@ -1551,7 +1593,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, ], @@ -1560,18 +1602,18 @@ export default { MakhairaAquamarine: { name: "MakhairaAquamarine", internalName: "Claymore_Pleroma", - nameLocale: 1227, + nameLocale: 1239, star: 4, url: imageUrl("Claymore_Pleroma"), type: "Claymore", - effect: 1068, + effect: 1078, configs: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, ], @@ -1580,20 +1622,20 @@ export default { BeaconOfTheReedSea: { name: "BeaconOfTheReedSea", internalName: "Claymore_Deshret", - nameLocale: 1446, + nameLocale: 1460, star: 5, url: imageUrl("Claymore_Deshret"), type: "Claymore", - effect: 208, + effect: 212, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate_atk","title":737,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate_atk","title":744,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate_hp","title":1280,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate_hp","title":1292,"type":"float"}, ], @@ -1602,18 +1644,18 @@ export default { MailedFlower: { name: "MailedFlower", internalName: "Claymore_Fleurfair", - nameLocale: 1835, + nameLocale: 1856, star: 4, url: imageUrl("Claymore_Fleurfair"), type: "Claymore", - effect: 209, + effect: 213, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":618,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":623,"type":"float"}, ], @@ -1622,20 +1664,20 @@ export default { TalkingStick: { name: "TalkingStick", internalName: "Claymore_BeastTamer", - nameLocale: 1427, + nameLocale: 1441, star: 4, url: imageUrl("Claymore_BeastTamer"), type: "Claymore", - effect: 674, + effect: 681, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":1517,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":1533,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":1518,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":1534,"type":"float"}, ], @@ -1644,18 +1686,18 @@ export default { TidalShadow: { name: "TidalShadow", internalName: "Claymore_Vorpal", - nameLocale: 1118, + nameLocale: 1129, star: 4, url: imageUrl("Claymore_Vorpal"), type: "Claymore", - effect: 359, + effect: 364, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, ], @@ -1664,18 +1706,18 @@ export default { PortablePowerSaw: { name: "PortablePowerSaw", internalName: "Claymore_Mechanic", - nameLocale: 186, + nameLocale: 190, star: 4, url: imageUrl("Claymore_Mechanic"), type: "Claymore", - effect: 362, + effect: 367, configs: [ - {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":449,"type":"float"}, + {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":454,"type":"float"}, ], @@ -1684,18 +1726,18 @@ export default { EngulfingLightning: { name: "EngulfingLightning", internalName: "Pole_Narukami", - nameLocale: 1503, + nameLocale: 1517, star: 5, url: imageUrl("Pole_Narukami"), type: "Polearm", - effect: 732, + effect: 739, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, ], @@ -1704,13 +1746,13 @@ export default { SkywardSpine: { name: "SkywardSpine", internalName: "Pole_Dvalin", - nameLocale: 500, + nameLocale: 506, star: 5, url: imageUrl("Pole_Dvalin"), type: "Polearm", - effect: 993, + effect: 1002, configs: null, @@ -1720,20 +1762,20 @@ export default { PrimordialJadeWingedSpear: { name: "PrimordialJadeWingedSpear", internalName: "Pole_Morax", - nameLocale: 416, + nameLocale: 421, star: 5, url: imageUrl("Pole_Morax"), type: "Polearm", - effect: 402, + effect: 407, configs: [ - {"default":0.0,"max":7.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":0.0,"max":7.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"full_rate","title":1153,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"full_rate","title":1164,"type":"float"}, ], @@ -1742,20 +1784,20 @@ export default { CalamityQueller: { name: "CalamityQueller", internalName: "Pole_Santika", - nameLocale: 643, + nameLocale: 650, star: 5, url: imageUrl("Pole_Santika"), type: "Polearm", - effect: 1482, + effect: 1496, configs: [ - {"default":6.0,"max":6.0,"min":0.0,"name":"stack","title":24,"type":"float"}, + {"default":6.0,"max":6.0,"min":0.0,"name":"stack","title":25,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"backend_rate","title":383,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"backend_rate","title":388,"type":"float"}, ], @@ -1764,18 +1806,18 @@ export default { StaffOfHoma: { name: "StaffOfHoma", internalName: "Pole_Homa", - nameLocale: 693, + nameLocale: 700, star: 5, url: imageUrl("Pole_Homa"), type: "Polearm", - effect: 1275, + effect: 1287, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"be50_rate","title":1267,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"be50_rate","title":1279,"type":"float"}, ], @@ -1784,20 +1826,20 @@ export default { VortexVanquisher: { name: "VortexVanquisher", internalName: "Pole_Kunwu", - nameLocale: 1584, + nameLocale: 1602, star: 5, url: imageUrl("Pole_Kunwu"), type: "Polearm", - effect: 695, + effect: 702, configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":698,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":705,"type":"float"}, ], @@ -1806,18 +1848,18 @@ export default { PrototypeStarglitter: { name: "PrototypeStarglitter", internalName: "Pole_Proto", - nameLocale: 1569, + nameLocale: 1587, star: 4, url: imageUrl("Pole_Proto"), type: "Polearm", - effect: 777, + effect: 784, configs: [ - {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, ], @@ -1826,18 +1868,18 @@ export default { LithicSpear: { name: "LithicSpear", internalName: "Pole_Lapis", - nameLocale: 336, + nameLocale: 340, star: 4, url: imageUrl("Pole_Lapis"), type: "Polearm", - effect: 1723, + effect: 1742, configs: [ - {"default":0,"max":4,"min":0,"name":"liyue_count","title":1730,"type":"int"}, + {"default":0,"max":4,"min":0,"name":"liyue_count","title":1749,"type":"int"}, ], @@ -1846,13 +1888,13 @@ export default { KitainCrossSpear: { name: "KitainCrossSpear", internalName: "Pole_Bakufu", - nameLocale: 420, + nameLocale: 425, star: 4, url: imageUrl("Pole_Bakufu"), type: "Polearm", - effect: 220, + effect: 224, configs: null, @@ -1862,13 +1904,13 @@ export default { TheCatch: { name: "TheCatch", internalName: "Pole_Mori", - nameLocale: 34, + nameLocale: 35, star: 4, url: imageUrl("Pole_Mori"), type: "Polearm", - effect: 226, + effect: 230, configs: null, @@ -1878,13 +1920,13 @@ export default { FavoniusLance: { name: "FavoniusLance", internalName: "Pole_Zephyrus", - nameLocale: 1539, + nameLocale: 1557, star: 4, url: imageUrl("Pole_Zephyrus"), type: "Polearm", - effect: 739, + effect: 746, configs: null, @@ -1894,13 +1936,13 @@ export default { DragonspineSpear: { name: "DragonspineSpear", internalName: "Pole_Everfrost", - nameLocale: 1884, + nameLocale: 1905, star: 4, url: imageUrl("Pole_Everfrost"), type: "Polearm", - effect: 918, + effect: 927, configs: null, @@ -1910,18 +1952,18 @@ export default { DragonsBane: { name: "DragonsBane", internalName: "Pole_Stardust", - nameLocale: 330, + nameLocale: 334, star: 4, url: imageUrl("Pole_Stardust"), type: "Polearm", - effect: 572, + effect: 579, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, ], @@ -1930,18 +1972,18 @@ export default { Deathmatch: { name: "Deathmatch", internalName: "Pole_Gladiator", - nameLocale: 278, + nameLocale: 282, star: 4, url: imageUrl("Pole_Gladiator"), type: "Polearm", - effect: 1611, + effect: 1629, configs: [ - {"default":true,"name":"ge2","title":1610,"type":"bool"}, + {"default":true,"name":"ge2","title":1628,"type":"bool"}, ], @@ -1950,13 +1992,13 @@ export default { CrescentPike: { name: "CrescentPike", internalName: "Pole_Exotic", - nameLocale: 1109, + nameLocale: 1120, star: 4, url: imageUrl("Pole_Exotic"), type: "Polearm", - effect: 1484, + effect: 1498, configs: null, @@ -1966,18 +2008,18 @@ export default { BlackcliffPole: { name: "BlackcliffPole", internalName: "Pole_Blackrock", - nameLocale: 1876, + nameLocale: 1897, star: 4, url: imageUrl("Pole_Blackrock"), type: "Polearm", - effect: 297, + effect: 302, configs: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, ], @@ -1986,18 +2028,18 @@ export default { WavebreakersFin: { name: "WavebreakersFin", internalName: "Pole_Maria", - nameLocale: 769, + nameLocale: 776, star: 4, url: imageUrl("Pole_Maria"), type: "Polearm", - effect: 1721, + effect: 1740, configs: [ - {"default":40,"max":400,"min":40,"name":"energy","title":1726,"type":"int"}, + {"default":40,"max":400,"min":40,"name":"energy","title":1745,"type":"int"}, ], @@ -2006,13 +2048,13 @@ export default { RoyalSpear: { name: "RoyalSpear", internalName: "Pole_Theocrat", - nameLocale: 557, + nameLocale: 563, star: 4, url: imageUrl("Pole_Theocrat"), type: "Polearm", - effect: 738, + effect: 745, configs: null, @@ -2022,13 +2064,13 @@ export default { Halberd: { name: "Halberd", internalName: "Pole_Halberd", - nameLocale: 1705, + nameLocale: 1723, star: 3, url: imageUrl("Pole_Halberd"), type: "Polearm", - effect: 579, + effect: 586, configs: null, @@ -2038,18 +2080,18 @@ export default { BlackTassel: { name: "BlackTassel", internalName: "Pole_Noire", - nameLocale: 1881, + nameLocale: 1902, star: 3, url: imageUrl("Pole_Noire"), type: "Polearm", - effect: 569, + effect: 576, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, ], @@ -2058,13 +2100,13 @@ export default { WhiteTassel: { name: "WhiteTassel", internalName: "Pole_Ruby", - nameLocale: 1306, + nameLocale: 1318, star: 3, url: imageUrl("Pole_Ruby"), type: "Polearm", - effect: 941, + effect: 950, configs: null, @@ -2074,7 +2116,7 @@ export default { IronPoint: { name: "IronPoint", internalName: "Pole_Rod", - nameLocale: 1706, + nameLocale: 1724, star: 2, url: imageUrl("Pole_Rod"), type: "Polearm", @@ -2088,7 +2130,7 @@ export default { BeginnersProtector: { name: "BeginnersProtector", internalName: "Pole_Gewalt", - nameLocale: 771, + nameLocale: 778, star: 1, url: imageUrl("Pole_Gewalt"), type: "Polearm", @@ -2102,7 +2144,7 @@ export default { Moonpiercer: { name: "Moonpiercer", internalName: "Pole_Arakalari", - nameLocale: 1582, + nameLocale: 1600, star: 4, url: imageUrl("Pole_Arakalari"), type: "Polearm", @@ -2111,7 +2153,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, ], @@ -2120,18 +2162,18 @@ export default { MissiveWindspear: { name: "MissiveWindspear", internalName: "Pole_Windvane", - nameLocale: 1804, + nameLocale: 1825, star: 4, url: imageUrl("Pole_Windvane"), type: "Polearm", - effect: 1555, + effect: 1573, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, ], @@ -2140,18 +2182,18 @@ export default { StaffOfTheScarletSands: { name: "StaffOfTheScarletSands", internalName: "Pole_Deshret", - nameLocale: 1594, + nameLocale: 1612, star: 5, url: imageUrl("Pole_Deshret"), type: "Polearm", - effect: 459, + effect: 464, configs: [ - {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, ], @@ -2160,18 +2202,18 @@ export default { BalladOfTheFjords: { name: "BalladOfTheFjords", internalName: "Pole_Shanty", - nameLocale: 594, + nameLocale: 601, star: 4, url: imageUrl("Pole_Shanty"), type: "Polearm", - effect: 1720, + effect: 1739, configs: [ - {"default":true,"name":"use_effect","title":621,"type":"bool"}, + {"default":true,"name":"use_effect","title":628,"type":"bool"}, ], @@ -2180,13 +2222,13 @@ export default { RightfulReward: { name: "RightfulReward", internalName: "Pole_Vorpal", - nameLocale: 245, + nameLocale: 249, star: 4, url: imageUrl("Pole_Vorpal"), type: "Polearm", - effect: 363, + effect: 368, configs: null, @@ -2196,18 +2238,18 @@ export default { ProspectorsDrill: { name: "ProspectorsDrill", internalName: "Pole_Mechanic", - nameLocale: 323, + nameLocale: 327, star: 4, url: imageUrl("Pole_Mechanic"), type: "Polearm", - effect: 361, + effect: 366, configs: [ - {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":435,"type":"float"}, + {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":440,"type":"float"}, ], @@ -2216,18 +2258,18 @@ export default { LostPrayerToTheSacredWinds: { name: "LostPrayerToTheSacredWinds", internalName: "Catalyst_Fourwinds", - nameLocale: 434, + nameLocale: 439, star: 5, url: imageUrl("Catalyst_Fourwinds"), type: "Catalyst", - effect: 1369, + effect: 1383, configs: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, ], @@ -2236,13 +2278,13 @@ export default { SkywardAtlas: { name: "SkywardAtlas", internalName: "Catalyst_Dvalin", - nameLocale: 498, + nameLocale: 504, star: 5, url: imageUrl("Catalyst_Dvalin"), type: "Catalyst", - effect: 190, + effect: 194, configs: null, @@ -2252,13 +2294,13 @@ export default { EverlastingMoonglow: { name: "EverlastingMoonglow", internalName: "Catalyst_Kaleido", - nameLocale: 93, + nameLocale: 97, star: 5, url: imageUrl("Catalyst_Kaleido"), type: "Catalyst", - effect: 1093, + effect: 1104, configs: null, @@ -2268,20 +2310,20 @@ export default { MemoryOfDust: { name: "MemoryOfDust", internalName: "Catalyst_Kunwu", - nameLocale: 587, + nameLocale: 594, star: 5, url: imageUrl("Catalyst_Kunwu"), type: "Catalyst", - effect: 695, + effect: 702, configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":698,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":705,"type":"float"}, ], @@ -2290,18 +2332,18 @@ export default { WindAndSong: { name: "WindAndSong", internalName: "Catalyst_Outlaw", - nameLocale: 984, + nameLocale: 993, star: 4, url: imageUrl("Catalyst_Outlaw"), type: "Catalyst", - effect: 931, + effect: 940, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, ], @@ -2310,22 +2352,22 @@ export default { TheWidsith: { name: "TheWidsith", internalName: "Catalyst_Troupe", - nameLocale: 1111, + nameLocale: 1122, star: 4, url: imageUrl("Catalyst_Troupe"), type: "Catalyst", - effect: 1548, + effect: 1566, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"t1_rate","title":563,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"t1_rate","title":570,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"t2_rate","title":417,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"t2_rate","title":422,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"t3_rate","title":1716,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"t3_rate","title":1735,"type":"float"}, ], @@ -2334,20 +2376,20 @@ export default { SolarPearl: { name: "SolarPearl", internalName: "Catalyst_Resurrection", - nameLocale: 329, + nameLocale: 333, star: 4, url: imageUrl("Catalyst_Resurrection"), type: "Catalyst", - effect: 928, + effect: 937, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":742,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":749,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":744,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":751,"type":"float"}, ], @@ -2356,13 +2398,13 @@ export default { SacrificialFragments: { name: "SacrificialFragments", internalName: "Catalyst_Fossil", - nameLocale: 1362, + nameLocale: 1376, star: 4, url: imageUrl("Catalyst_Fossil"), type: "Catalyst", - effect: 215, + effect: 219, configs: null, @@ -2372,13 +2414,13 @@ export default { RoyalGrimoire: { name: "RoyalGrimoire", internalName: "Catalyst_Theocrat", - nameLocale: 558, + nameLocale: 564, star: 4, url: imageUrl("Catalyst_Theocrat"), type: "Catalyst", - effect: 738, + effect: 745, configs: null, @@ -2388,13 +2430,13 @@ export default { PrototypeAmber: { name: "PrototypeAmber", internalName: "Catalyst_Proto", - nameLocale: 1571, + nameLocale: 1589, star: 4, url: imageUrl("Catalyst_Proto"), type: "Catalyst", - effect: 785, + effect: 792, configs: null, @@ -2404,18 +2446,18 @@ export default { MappaMare: { name: "MappaMare", internalName: "Catalyst_Exotic", - nameLocale: 72, + nameLocale: 76, star: 4, url: imageUrl("Catalyst_Exotic"), type: "Catalyst", - effect: 1556, + effect: 1574, configs: [ - {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, ], @@ -2424,13 +2466,13 @@ export default { HakushinRing: { name: "HakushinRing", internalName: "Catalyst_Bakufu", - nameLocale: 1307, + nameLocale: 1319, star: 4, url: imageUrl("Catalyst_Bakufu"), type: "Catalyst", - effect: 1532, + effect: 1550, configs: null, @@ -2440,13 +2482,13 @@ export default { Frostbearer: { name: "Frostbearer", internalName: "Catalyst_Everfrost", - nameLocale: 639, + nameLocale: 646, star: 4, url: imageUrl("Catalyst_Everfrost"), type: "Catalyst", - effect: 918, + effect: 927, configs: null, @@ -2456,13 +2498,13 @@ export default { FavoniusCodex: { name: "FavoniusCodex", internalName: "Catalyst_Zephyrus", - nameLocale: 1538, + nameLocale: 1556, star: 4, url: imageUrl("Catalyst_Zephyrus"), type: "Catalyst", - effect: 739, + effect: 746, configs: null, @@ -2472,13 +2514,13 @@ export default { EyeOfPerception: { name: "EyeOfPerception", internalName: "Catalyst_Truelens", - nameLocale: 824, + nameLocale: 832, star: 4, url: imageUrl("Catalyst_Truelens"), type: "Catalyst", - effect: 920, + effect: 929, configs: null, @@ -2488,20 +2530,20 @@ export default { DodocoTales: { name: "DodocoTales", internalName: "Catalyst_Ludiharpastum", - nameLocale: 423, + nameLocale: 428, star: 4, url: imageUrl("Catalyst_Ludiharpastum"), type: "Catalyst", - effect: 930, + effect: 939, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":742,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":749,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":744,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":751,"type":"float"}, ], @@ -2510,18 +2552,18 @@ export default { BlackcliffAgate: { name: "BlackcliffAgate", internalName: "Catalyst_Blackrock", - nameLocale: 1879, + nameLocale: 1900, star: 4, url: imageUrl("Catalyst_Blackrock"), type: "Catalyst", - effect: 297, + effect: 302, configs: [ - {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, ], @@ -2530,20 +2572,20 @@ export default { KagurasVerity: { name: "KagurasVerity", internalName: "Catalyst_Narukami", - nameLocale: 1335, + nameLocale: 1349, star: 5, url: imageUrl("Catalyst_Narukami"), type: "Catalyst", - effect: 781, + effect: 788, configs: [ - {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"full_rate","title":1152,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"full_rate","title":1163,"type":"float"}, ], @@ -2552,18 +2594,18 @@ export default { OathswornEye: { name: "OathswornEye", internalName: "Catalyst_Jyanome", - nameLocale: 1565, + nameLocale: 1583, star: 4, url: imageUrl("Catalyst_Jyanome"), type: "Catalyst", - effect: 774, + effect: 781, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, ], @@ -2572,18 +2614,18 @@ export default { MagicGuide: { name: "MagicGuide", internalName: "Catalyst_Intro", - nameLocale: 1854, + nameLocale: 1875, star: 3, url: imageUrl("Catalyst_Intro"), type: "Catalyst", - effect: 573, + effect: 580, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, ], @@ -2592,13 +2634,13 @@ export default { OtherworldlyStory: { name: "OtherworldlyStory", internalName: "Catalyst_Lightnov", - nameLocale: 622, + nameLocale: 629, star: 3, url: imageUrl("Catalyst_Lightnov"), type: "Catalyst", - effect: 1485, + effect: 1499, configs: null, @@ -2608,18 +2650,18 @@ export default { EmeraldOrb: { name: "EmeraldOrb", internalName: "Catalyst_Jade", - nameLocale: 1424, + nameLocale: 1438, star: 3, url: imageUrl("Catalyst_Jade"), type: "Catalyst", - effect: 1559, + effect: 1577, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, ], @@ -2628,13 +2670,13 @@ export default { ThrillingTalesOfDragonSlayers: { name: "ThrillingTalesOfDragonSlayers", internalName: "Catalyst_Pulpfic", - nameLocale: 1562, + nameLocale: 1580, star: 3, url: imageUrl("Catalyst_Pulpfic"), type: "Catalyst", - effect: 97, + effect: 101, configs: null, @@ -2644,18 +2686,18 @@ export default { TwinNephrite: { name: "TwinNephrite", internalName: "Catalyst_Phoney", - nameLocale: 1284, + nameLocale: 1296, star: 3, url: imageUrl("Catalyst_Phoney"), type: "Catalyst", - effect: 296, + effect: 300, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, ], @@ -2664,7 +2706,7 @@ export default { PocketGrimoire: { name: "PocketGrimoire", internalName: "Catalyst_Pocket", - nameLocale: 370, + nameLocale: 375, star: 2, url: imageUrl("Catalyst_Pocket"), type: "Catalyst", @@ -2678,7 +2720,7 @@ export default { ApprenticesNotes: { name: "ApprenticesNotes", internalName: "Catalyst_Apprentice", - nameLocale: 542, + nameLocale: 548, star: 1, url: imageUrl("Catalyst_Apprentice"), type: "Catalyst", @@ -2692,7 +2734,7 @@ export default { FruitOfFulfillment: { name: "FruitOfFulfillment", internalName: "Catalyst_Arakalari", - nameLocale: 1310, + nameLocale: 1322, star: 4, url: imageUrl("Catalyst_Arakalari"), type: "Catalyst", @@ -2701,7 +2743,7 @@ export default { configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, ], @@ -2710,18 +2752,18 @@ export default { WanderingEvenstar: { name: "WanderingEvenstar", internalName: "Catalyst_Pleroma", - nameLocale: 1113, + nameLocale: 1124, star: 4, url: imageUrl("Catalyst_Pleroma"), type: "Catalyst", - effect: 1068, + effect: 1078, configs: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, ], @@ -2730,20 +2772,20 @@ export default { AThousandFloatingDreams: { name: "AThousandFloatingDreams", internalName: "Catalyst_Ayus", - nameLocale: 332, + nameLocale: 336, star: 5, url: imageUrl("Catalyst_Ayus"), type: "Catalyst", - effect: 1722, + effect: 1741, configs: [ - {"default":1,"max":3,"min":0,"name":"same_count","title":382,"type":"int"}, + {"default":1,"max":3,"min":0,"name":"same_count","title":387,"type":"int"}, - {"default":2,"max":3,"min":0,"name":"diff_count","title":92,"type":"int"}, + {"default":2,"max":3,"min":0,"name":"diff_count","title":96,"type":"int"}, ], @@ -2752,18 +2794,18 @@ export default { TulaytullahsRemembrance: { name: "TulaytullahsRemembrance", internalName: "Catalyst_Alaya", - nameLocale: 436, + nameLocale: 441, star: 5, url: imageUrl("Catalyst_Alaya"), type: "Catalyst", - effect: 939, + effect: 948, configs: [ - {"default":7.0,"max":10.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":7.0,"max":10.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, ], @@ -2772,18 +2814,18 @@ export default { JadeFallsSplendor: { name: "JadeFallsSplendor", internalName: "Catalyst_Morax", - nameLocale: 1329, + nameLocale: 1343, star: 5, url: imageUrl("Catalyst_Morax"), type: "Catalyst", - effect: 791, + effect: 798, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, ], @@ -2792,18 +2834,18 @@ export default { SacrificialJade: { name: "SacrificialJade", internalName: "", - nameLocale: 1657, + nameLocale: 1675, star: 4, url: imageUrl(""), type: "Catalyst", - effect: 469, + effect: 474, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, ], @@ -2812,20 +2854,20 @@ export default { FlowingPurity: { name: "FlowingPurity", internalName: "Catalyst_Vorpal", - nameLocale: 1388, + nameLocale: 1402, star: 4, url: imageUrl("Catalyst_Vorpal"), type: "Catalyst", - effect: 782, + effect: 789, configs: [ - {"default":0.5,"max":1.0,"min":0.0,"name":"rate1","title":746,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"rate1","title":752,"type":"float"}, - {"default":0.5,"max":1.0,"min":0.0,"name":"rate2","title":748,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"rate2","title":754,"type":"float"}, ], @@ -2834,18 +2876,18 @@ export default { BalladOfTheBoundlessBlue: { name: "BalladOfTheBoundlessBlue", internalName: "Catalyst_DandelionPoem", - nameLocale: 803, + nameLocale: 811, star: 4, url: imageUrl("Catalyst_DandelionPoem"), type: "Catalyst", - effect: 936, + effect: 945, configs: [ - {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, ], @@ -2854,18 +2896,18 @@ export default { CashflowSupervision: { name: "CashflowSupervision", internalName: "Catalyst_Wheatley", - nameLocale: 1696, + nameLocale: 1714, star: 5, url: imageUrl("Catalyst_Wheatley"), type: "Catalyst", - effect: 725, + effect: 732, configs: [ - {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, ], @@ -2874,18 +2916,18 @@ export default { TomeOfTheEternalFlow: { name: "TomeOfTheEternalFlow", internalName: "Catalyst_Iudex", - nameLocale: 69, + nameLocale: 73, star: 5, url: imageUrl("Catalyst_Iudex"), type: "Catalyst", - effect: 1273, + effect: 1285, configs: [ - {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, ], @@ -2894,18 +2936,18 @@ export default { PolarStar: { name: "PolarStar", internalName: "Bow_Worldbane", - nameLocale: 264, + nameLocale: 268, star: 5, url: imageUrl("Bow_Worldbane"), type: "Bow", - effect: 210, + effect: 214, configs: [ - {"default":0,"max":4,"min":0,"name":"stack","title":38,"type":"int"}, + {"default":0,"max":4,"min":0,"name":"stack","title":40,"type":"int"}, ], @@ -2914,18 +2956,18 @@ export default { ThunderingPulse: { name: "ThunderingPulse", internalName: "Bow_Narukami", - nameLocale: 1832, + nameLocale: 1853, star: 5, url: imageUrl("Bow_Narukami"), type: "Bow", - effect: 727, + effect: 734, configs: [ - {"default":0,"max":3,"min":0,"name":"stack","title":48,"type":"int"}, + {"default":0,"max":3,"min":0,"name":"stack","title":52,"type":"int"}, ], @@ -2934,18 +2976,18 @@ export default { ElegyOfTheEnd: { name: "ElegyOfTheEnd", internalName: "Bow_Widsith", - nameLocale: 1395, + nameLocale: 1409, star: 5, url: imageUrl("Bow_Widsith"), type: "Bow", - effect: 1826, + effect: 1847, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, ], @@ -2954,13 +2996,13 @@ export default { SkywardHarp: { name: "SkywardHarp", internalName: "Bow_Dvalin", - nameLocale: 499, + nameLocale: 505, star: 5, url: imageUrl("Bow_Dvalin"), type: "Bow", - effect: 988, + effect: 997, configs: null, @@ -2970,18 +3012,18 @@ export default { AmosBow: { name: "AmosBow", internalName: "Bow_Amos", - nameLocale: 1744, + nameLocale: 1763, star: 5, url: imageUrl("Bow_Amos"), type: "Bow", - effect: 924, + effect: 933, configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, ], @@ -2990,18 +3032,18 @@ export default { AlleyHunter: { name: "AlleyHunter", internalName: "Bow_Outlaw", - nameLocale: 983, + nameLocale: 992, star: 4, url: imageUrl("Bow_Outlaw"), type: "Bow", - effect: 1516, + effect: 1530, configs: [ - {"default":0.0,"max":10.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":0.0,"max":10.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, ], @@ -3010,13 +3052,13 @@ export default { TheViridescentHunt: { name: "TheViridescentHunt", internalName: "Bow_Viridescent", - nameLocale: 1451, + nameLocale: 1465, star: 4, url: imageUrl("Bow_Viridescent"), type: "Bow", - effect: 921, + effect: 930, configs: null, @@ -3026,13 +3068,13 @@ export default { TheStringless: { name: "TheStringless", internalName: "Bow_Troupe", - nameLocale: 1400, + nameLocale: 1414, star: 4, url: imageUrl("Bow_Troupe"), type: "Bow", - effect: 200, + effect: 204, configs: null, @@ -3042,13 +3084,13 @@ export default { SacrificialBow: { name: "SacrificialBow", internalName: "Bow_Fossil", - nameLocale: 1361, + nameLocale: 1375, star: 4, url: imageUrl("Bow_Fossil"), type: "Bow", - effect: 215, + effect: 219, configs: null, @@ -3058,13 +3100,13 @@ export default { Rust: { name: "Rust", internalName: "Bow_Recluse", - nameLocale: 624, + nameLocale: 631, star: 4, url: imageUrl("Bow_Recluse"), type: "Bow", - effect: 942, + effect: 951, configs: null, @@ -3074,13 +3116,13 @@ export default { RoyalBow: { name: "RoyalBow", internalName: "Bow_Theocrat", - nameLocale: 561, + nameLocale: 567, star: 4, url: imageUrl("Bow_Theocrat"), type: "Bow", - effect: 738, + effect: 745, configs: null, @@ -3090,7 +3132,7 @@ export default { Predator: { name: "Predator", internalName: "Bow_Predator", - nameLocale: 713, + nameLocale: 720, star: 4, url: imageUrl("Bow_Predator"), type: "Bow", @@ -3101,7 +3143,7 @@ export default { configs: [ - {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, ], @@ -3110,18 +3152,18 @@ export default { PrototypeCrescent: { name: "PrototypeCrescent", internalName: "Bow_Proto", - nameLocale: 1570, + nameLocale: 1588, star: 4, url: imageUrl("Bow_Proto"), type: "Bow", - effect: 1691, + effect: 1709, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, ], @@ -3130,18 +3172,18 @@ export default { MouunsMoon: { name: "MouunsMoon", internalName: "Bow_Maria", - nameLocale: 999, + nameLocale: 1008, star: 4, url: imageUrl("Bow_Maria"), type: "Bow", - effect: 1721, + effect: 1740, configs: [ - {"default":40,"max":400,"min":40,"name":"energy","title":1726,"type":"int"}, + {"default":40,"max":400,"min":40,"name":"energy","title":1745,"type":"int"}, ], @@ -3150,20 +3192,20 @@ export default { MitternachtsWaltz: { name: "MitternachtsWaltz", internalName: "Bow_Nachtblind", - nameLocale: 613, + nameLocale: 620, star: 4, url: imageUrl("Bow_Nachtblind"), type: "Bow", - effect: 929, + effect: 938, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":742,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":749,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":744,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":751,"type":"float"}, ], @@ -3172,18 +3214,18 @@ export default { Hamayumi: { name: "Hamayumi", internalName: "Bow_Bakufu", - nameLocale: 1328, + nameLocale: 1342, star: 4, url: imageUrl("Bow_Bakufu"), type: "Bow", - effect: 940, + effect: 949, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, ], @@ -3192,13 +3234,13 @@ export default { FavoniusWarbow: { name: "FavoniusWarbow", internalName: "Bow_Zephyrus", - nameLocale: 1537, + nameLocale: 1555, star: 4, url: imageUrl("Bow_Zephyrus"), type: "Bow", - effect: 739, + effect: 746, configs: null, @@ -3208,18 +3250,18 @@ export default { CompoundBow: { name: "CompoundBow", internalName: "Bow_Exotic", - nameLocale: 1704, + nameLocale: 1722, star: 4, url: imageUrl("Bow_Exotic"), type: "Bow", - effect: 919, + effect: 928, configs: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, ], @@ -3228,18 +3270,18 @@ export default { BlackcliffWarbow: { name: "BlackcliffWarbow", internalName: "Bow_Blackrock", - nameLocale: 1877, + nameLocale: 1898, star: 4, url: imageUrl("Bow_Blackrock"), type: "Bow", - effect: 297, + effect: 302, configs: [ - {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1521,"type":"float"}, + {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, ], @@ -3248,18 +3290,18 @@ export default { WindblumeOde: { name: "WindblumeOde", internalName: "Bow_Fleurfair", - nameLocale: 1812, + nameLocale: 1833, star: 4, url: imageUrl("Bow_Fleurfair"), type: "Bow", - effect: 784, + effect: 791, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, ], @@ -3268,18 +3310,18 @@ export default { RavenBow: { name: "RavenBow", internalName: "Bow_Crowfeather", - nameLocale: 1859, + nameLocale: 1880, star: 3, url: imageUrl("Bow_Crowfeather"), type: "Bow", - effect: 571, + effect: 578, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, ], @@ -3288,13 +3330,13 @@ export default { RecurveBow: { name: "RecurveBow", internalName: "Bow_Curve", - nameLocale: 353, + nameLocale: 357, star: 3, url: imageUrl("Bow_Curve"), type: "Bow", - effect: 299, + effect: 303, configs: null, @@ -3304,13 +3346,13 @@ export default { Messenger: { name: "Messenger", internalName: "Bow_Msg", - nameLocale: 187, + nameLocale: 191, star: 3, url: imageUrl("Bow_Msg"), type: "Bow", - effect: 1692, + effect: 1710, configs: null, @@ -3320,18 +3362,18 @@ export default { SharpshootersOath: { name: "SharpshootersOath", internalName: "Bow_Arjuna", - nameLocale: 1338, + nameLocale: 1352, star: 3, url: imageUrl("Bow_Arjuna"), type: "Bow", - effect: 1698, + effect: 1716, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, ], @@ -3340,20 +3382,20 @@ export default { Slingshot: { name: "Slingshot", internalName: "Bow_Sling", - nameLocale: 626, + nameLocale: 633, star: 3, url: imageUrl("Bow_Sling"), type: "Bow", - effect: 922, + effect: 931, configs: [ {"default":true,"name":"is_effect","title":1,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, ], @@ -3362,7 +3404,7 @@ export default { SeasonedHuntersBow: { name: "SeasonedHuntersBow", internalName: "Bow_Old", - nameLocale: 349, + nameLocale: 353, star: 2, url: imageUrl("Bow_Old"), type: "Bow", @@ -3376,7 +3418,7 @@ export default { HuntersBow: { name: "HuntersBow", internalName: "Bow_Hunters", - nameLocale: 1217, + nameLocale: 1229, star: 1, url: imageUrl("Bow_Hunters"), type: "Bow", @@ -3390,18 +3432,18 @@ export default { AquaSimulacra: { name: "AquaSimulacra", internalName: "Bow_Kirin", - nameLocale: 1453, + nameLocale: 1467, star: 5, url: imageUrl("Bow_Kirin"), type: "Bow", - effect: 1272, + effect: 1284, configs: [ - {"default":true,"name":"is_enemy_around","title":401,"type":"bool"}, + {"default":true,"name":"is_enemy_around","title":406,"type":"bool"}, ], @@ -3410,18 +3452,18 @@ export default { FadingTwilight: { name: "FadingTwilight", internalName: "Bow_Fallensun", - nameLocale: 1497, + nameLocale: 1511, star: 4, url: imageUrl("Bow_Fallensun"), type: "Bow", - effect: 256, + effect: 260, configs: [ - {"default":2,"name":"state","options":["夕暮","流霞","朝晖"],"title":1204,"type":"option"}, + {"default":2,"name":"state","options":["夕暮","流霞","朝晖"],"title":1216,"type":"option"}, ], @@ -3430,18 +3472,18 @@ export default { HuntersPath: { name: "HuntersPath", internalName: "Bow_Ayus", - nameLocale: 1214, + nameLocale: 1226, star: 5, url: imageUrl("Bow_Ayus"), type: "Bow", - effect: 1480, + effect: 1494, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, ], @@ -3450,13 +3492,13 @@ export default { Trawler: { name: "Trawler", internalName: "Bow_Fin", - nameLocale: 1372, + nameLocale: 1386, star: 4, url: imageUrl("Bow_Fin"), type: "Bow", - effect: 775, + effect: 782, configs: null, @@ -3466,7 +3508,7 @@ export default { KingsSquire: { name: "KingsSquire", internalName: "Bow_Arakalari", - nameLocale: 1226, + nameLocale: 1238, star: 4, url: imageUrl("Bow_Arakalari"), type: "Bow", @@ -3475,7 +3517,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, ], @@ -3484,18 +3526,18 @@ export default { IbisPiercer: { name: "IbisPiercer", internalName: "Bow_Ibis", - nameLocale: 1860, + nameLocale: 1881, star: 4, url: imageUrl("Bow_Ibis"), type: "Bow", - effect: 1684, + effect: 1702, configs: [ - {"default":2.0,"max":2.0,"min":0.0,"name":"stack","title":588,"type":"float"}, + {"default":2.0,"max":2.0,"min":0.0,"name":"stack","title":595,"type":"float"}, ], @@ -3504,20 +3546,20 @@ export default { TheFirstGreatMagic: { name: "TheFirstGreatMagic", internalName: "Bow_Pledge", - nameLocale: 1000, + nameLocale: 1009, star: 5, url: imageUrl("Bow_Pledge"), type: "Bow", - effect: 1693, + effect: 1711, configs: [ - {"default":1.0,"max":3.0,"min":0.0,"name":"same_count","title":1727,"type":"float"}, + {"default":1.0,"max":3.0,"min":0.0,"name":"same_count","title":1746,"type":"float"}, - {"default":0.0,"max":3.0,"min":0.0,"name":"diff_count","title":1718,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"diff_count","title":1736,"type":"float"}, ], @@ -3526,18 +3568,18 @@ export default { ScionOfTheBlazingSun: { name: "ScionOfTheBlazingSun", internalName: "Bow_Gurabad", - nameLocale: 1183, + nameLocale: 1195, star: 4, url: imageUrl("Bow_Gurabad"), type: "Bow", - effect: 1685, + effect: 1703, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, ], @@ -3546,18 +3588,18 @@ export default { SongOfStillness: { name: "SongOfStillness", internalName: "Bow_Vorpal", - nameLocale: 1796, + nameLocale: 1816, star: 4, url: imageUrl("Bow_Vorpal"), type: "Bow", - effect: 360, + effect: 365, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, ], @@ -3566,18 +3608,18 @@ export default { RangeGauge: { name: "RangeGauge", internalName: "Bow_Mechanic", - nameLocale: 1117, + nameLocale: 1128, star: 4, url: imageUrl("Bow_Mechanic"), type: "Bow", - effect: 361, + effect: 366, configs: [ - {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":435,"type":"float"}, + {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":440,"type":"float"}, ], diff --git a/src/i18n/generated/en.json b/src/i18n/generated/en.json index d3c690e4..3b6a9154 100644 --- a/src/i18n/generated/en.json +++ b/src/i18n/generated/en.json @@ -9,6 +9,7 @@ "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.", + "C2 Ratio", "Empty", "E-skill DMG Rate", "E Level", @@ -34,13 +35,16 @@ "The equipping character will gain 24%/30%/36%/42%/48% of their Elemental Mastery as bonus ATK for 12s, with nearby party members gaining 30% of this buff for the same duration. Multiple instances of this weapon can allow this buff to stack. This effect will still trigger even if the character is not on the field.", "「Namisen」Stack", "\"The Catch\"", + "Monsieur Verite Hit Count", "C6「Sprinkling Weight」", "Hurricane Guard effect Ratio", "「Sweeping Fervor」Shield Coverage", "「Nightstar」Stack", + "\"Snappy Silhouette\" Mark DMG", "Prayerful Wind's GiftRate", "Prayerful Wind’s Benefit Ratio", "Painted Dome", + "\"Focused Impression\" Mark DMG", "「Tricks of the Trouble-Maker」Stack", "Perfidious Wind's Ruin Rate", "Past Draconic Glories Stack", @@ -61,8 +65,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", @@ -210,8 +214,8 @@ "After the character’s Elemental Skill hits an opponent, their ATK will be increased by 20%-25%-30%-35%-40% for 8s. After the character takes DMG, their ATK will be increased by 20%-25%-30%-35%-40% for 8s. The 2 aforementioned effects can be triggered even when the character is not on the field. Additionally, when not protected by a shield, the character’s Max HP will be increased by 32%-40%-48%-56%-64%.", "Within 8s after the character’s Elemental Skill hits an opponent or triggers an Elemental Reaction, the character’s ATK and Elemental Mastery will be increased by 12%-15%-18%-21%-24% and 48-60-72-84-96 respectively.", "Elemental Skill and Elemental Burst DMG increased by 12%-15%-18%-21%-24%. After a Normal Attack, Charged Attack, Elemental Skill or Elemental Burst hits an opponent, 1 stack of Ashen Nightstar will be gained for 12s. When 1/2/3/4 stacks of Ashen Nightstar are present, ATK is increased by 10/20/30/48%-12.5/25/37.5/60%-15/30/45/72%-17.5/35/52.5/84%-20/40/60/96%. The stack of Ashen Nightstar created by the Normal Attack, Charged Attack, Elemental Skill or Elemental Burst will be counted independently of the others.", - "After Elemental Skills or Bursts hit opponents, the targets’ Dendro RES will be decreased by 30% for 8s. This effect can be triggered even if the equipping character is not on the field.", "元素战技或元素爆发命中敌人后,使命中目标的草元素抗性降低30%,持续8秒。装备者处于队伍后台时,依然能触发该效果。", + "After Elemental Skills or Bursts hit opponents, the targets’ Dendro RES will be decreased by 30% for 8s. This effect can be triggered even if the equipping character is not on the field.", "Increases Elemental Skill CRIT Rate by 8%-10%-12%-14%-16%. Additionally, increases Energy Recharge by 16%-20%-24%-28%-32% for 5s after using an Elemental Skill.", "E Hit", "After damaging an opponent with an Elemental Skill, the skill has a 40%-50%-60%-70%-80% chance to end its own CD. Can only occur once every 30-26-22s-19-16ss.", @@ -227,17 +231,17 @@ "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秒。以上效果的持续时间独立计算。", - "Increases Elemental Mastery by 80.", "Elemental Mastery +80", + "Increases Elemental Mastery by 80.", "Elemental Mastery +80.", "EM Valid", "EM Weight", "Energy Below 50%", - "Recharge demand", "Recharge Requirement", + "Recharge demand", "Lightfall Sword DMG", "Lightfall Sword Energy Stack", "Yae Miko", @@ -296,8 +300,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", @@ -342,8 +346,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", @@ -354,6 +358,7 @@ "Sapwood Blade/Forest Regalia-「Leaf of Consciousness」", "Recurve Bow", "Element Transform Occurred", + "Framing: Freezing Point Composition", "Buffed Character's Max Energy", "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.", @@ -402,9 +407,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%.", - "HP Regeneration", - "HP Regeneration Per Hit", "Regeneration on Hit", + "HP Regeneration Per Hit", + "HP Regeneration", "C2「Ceremony: Homecoming of Spirits」Stacks", "C2「Origins Known From the Stem」Ratio", "C2 Ratio", @@ -459,8 +464,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」", @@ -470,6 +475,7 @@ "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", + "Charlotte", "Summer Night's Moment", "Summer Night's Bloom", "Summer Night's Mask", @@ -562,6 +568,7 @@ "Royal Longsword", "Royal Bow", "Royal Masque", + "Still Photo: Comprehensive Confirmation", "「Recitative」Ratio", "Yoimiya", "Yoimiya-「Summer Night's Dawn」", @@ -597,8 +604,8 @@ "Feather of Jagged Peaks", "Goblet of Chiseled Crag", "Saichimonji Slash DMG", - "AVG Stack", "Avg Stack", + "AVG Stack", "Avg Trigger Rate", "Thundersoother", "Thundersoother's Diadem", @@ -615,9 +622,9 @@ "Mitternachts Waltz", "Use C4", "Use Talent「Regina Probationum」", - "Rate", - "Apply Ratio", "Equivalent Rate of Effect", + "Apply Ratio", + "Rate", "Niwabi Enshou", "Opening a chest regenerates 30% Max HP over 5s.", "Use Effect", @@ -703,11 +710,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 Healing", + "Continuous Regeneration Per Sec", "Continuous Regeneration", "HP Regeneration Over Time", + "Continuous Healing", "Conductor's Top Hat", "DPS Yae Miko", "Swing DMG", @@ -744,10 +751,10 @@ "Effect1 Ratio", "Effect1 Equivalent Stack", "Effect2 Ratio", - "Effect① Ratio", "Effect 1 Rate", - "Effect② Ratio", + "Effect① Ratio", "Effect 2 Rate", + "Effect② Ratio", "Effect Apply Ratio", "Equivalent Stack", "Enemy Pyro Coverage", @@ -795,6 +802,7 @@ "Regeneration Upon Use", "When unleashing Illusory Heart, the Shrine of Maya will gain the following effects:
The Elemental Mastery of the active character within the field will be increased by 25% of the Elemental Mastery of the party member with the highest Elemental Mastery. You can gain a maximum of 250 Elemental Mastery in this manner.", "For 15s after Holistic Revivification is used, Baizhu will increase all nearby party members' Elemental Mastery by 80.", + "Cast Healing", "Traveler's Handy Sword", "Odyssean Flower", "Opening Flourish", @@ -847,6 +855,7 @@ "Normal Attack: Yunlai Swordsmanship", "Normal Attack: Ancient Sword Art", "Normal Attack: Ceremonial Bladework", + "Normal Attack: Cool-Color Capture", "Normal Attack: Sparkling Scatter", "Normal Attack: Whirlwind Thrust", "Normal Attack: Guhua Style", @@ -1035,6 +1044,7 @@ "Havoc: Obliteration", "Lyney", "Lyney-\tSpectacle of Phantasmagoria", + "Fontaine Character Count", "Kaedehara Kazuha", "Kazuha-「Yamaarashi Tailwind」", "Kazuha-「Poetics of Fuubutsu」", @@ -1073,6 +1083,7 @@ "Rate", "Mirror Reflection of Doom", "Nymph's Dream", + "Sword of Narzissenkreuz", "Nymph's Constancy", "Hydro DMG", "Maximize Crit or Avg Hydro Damage", @@ -1094,8 +1105,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", @@ -1173,11 +1184,12 @@ "Spiritvein DMG", "Brilliance", "Leonine Bite", - "Tapping DMG", "Tap DMG", + "Tapping DMG", + "Tap Skill DMG", "Press Skill DMG", "Tapping Skill DMG", - "Tap Skill DMG", + "Photo DMG (Press)", "Fiery Collapse DMG", "Crimson Witch of Flames", "Flame-Mane’s Fist DMG", @@ -1197,8 +1209,8 @@ "Burst DMG", "Explosion DMG", "Explosive Puppet", - "", "Explosion DMG", + "", "Explosion DMG", "Physical DMG", "Maximize Crit or Avg Physical Damage", @@ -1311,6 +1323,8 @@ "White Iron Greatsword", "Fruit of Fulfillment", "Noble's Pledging Vessel", + "Kamera DMG", + "Kamera Continuous Regeneration", "Pearl Cage", "Crimson Ooyoroi", "Bewildering Lights", @@ -1516,10 +1530,12 @@ "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%.", + "Stack 1", + "Stack 2", "Effect 1 Rate", "Effect 2 Rate", - "Effect Rate", "Avg Effect Ratio", + "Effect Rate", "Avg Effect Stack", "Maiden Beloved", "Moment of Judgment", @@ -1527,6 +1543,8 @@ "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.", "When the character equipping this artifact set heals a character in the party, a Sea-Dyed Foam will appear for 3 seconds, accumulating the amount of HP recovered from healing (including overflow healing). At the end of the duration, the Sea-Dyed Foam will explode, dealing DMG to nearby opponents based on 90% of the accumulated healing. (This DMG is calculated similarly to Reactions such as Electro-Charged, and Superconduct, but is not affected by Elemental Mastery, Character Levels, or Reaction DMG Bonuses). Only one Sea-Dyed Foam can be produced every 3.5 seconds. Each Sea-Dyed Foam can accumulate up to 30,000 HP (including overflow healing). There can be no more than one Sea-Dyed Foam active at any given time. This effect can still be triggered even when the character who is using this artifact set is not on the field.", + "When the equipping character does not have an Arkhe: When Normal Attacks, Charged Attacks, or Plunging Attacks strike, a Pneuma or Ousia energy blast will be unleashed, dealing 160%-200%-240%-280%-320% of ATK as DMG. This effect can be triggered once every 12s. The energy blast type is determined by the current type of the Sword of Narzissenkreuz.", + "When the equipping character's current HP increases or decreases, Elemental Skill DMG dealt will be increased by 8%-10%-12%-14%-16% for 6s. Max 3 stacks. This effect can be triggered once every 0.2s. When other party members' current HP increases or decreases, the equipping character's Max HP will be increased by 14%-17.5%-21%-24.5%-28% for 6s. Max 2 stacks. This effect can be triggered once every 0.2s, and can be triggered even if the wielder is off-field.", "The equipping character will gain 0.036%/0.045%/0.054%/0.063%/0.072% Energy Recharge for each point of Elemental Mastery they possess for 12s, with nearby party members gaining 30% of this buff for the same duration. Multiple instances of this weapon can allow this buff to stack. This effect will still trigger even if the character is not on the field.", "The equipping character's Bloom, Hyperbloom, and Burgeon reaction DMG are increased by 50%. Additionally, when the equipping character triggers Bloom, Hyperbloom, or Burgeon they will gain another 25% bonus to the effect mentioned prior. Each stack of this lasts 10s. Max 4 stacks simultaneously. This effect can only be triggered once per second. The character who equips this can still trigger its effects when not on the field.", "If the wielder of this artifact set uses a Sword, Claymore or Polearm, increases their Normal Attack DMG by 35%.", @@ -1650,8 +1668,8 @@ "Marechaussee Hunter", "Dealing Elemental DMG increases all DMG by 6%-7.5%-9%-10.5%-12% for 6s. Max 2 stacks. Can occur once every 1s.", "Increases all DMG by 8%-10%-12%-14%-16%. After using an Elemental Burst, Normal or Charged Attack, on hit, creates a vacuum blade that does 80%-100%-120%-140%-160% of ATK as DMG to opponents along its path. Lasts for 20s or 8 vacuum blades.", - "Physical DMG 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", @@ -1672,10 +1690,10 @@ "Charged Attack-No Scarlet Seals", "Charged Attack: Equitable Judgment", "Charged Attack DMG", - "Charged Attack DMG-1", "Charged DMG-1", - "Charnged DMG-1", "Charged Attack-1", + "Charged Attack DMG-1", + "Charnged DMG-1", "Charnged DMG-2", "Charged Attack DMG-2", "Charged DMG-2", @@ -1713,12 +1731,13 @@ "Spirit-Warding Lamp: Troubleshooter Cannon", "Hold DMG", "Hold Skill DMG", + "Photo DMG (Hold)", "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.", @@ -1795,8 +1814,10 @@ "Flowfrost Arrow DMG", "Frostgnaw", "Bane of All Evil", + "Splendor of Tranquil Waters", "Song of Stillness", "Wind Realm of Nasamjnin", + "Non-Fontaine Character Count", "Field DMG", "Field Activation Healing", "Continuous Field DMG", diff --git a/src/i18n/generated/zh-cn.json b/src/i18n/generated/zh-cn.json index 5d582aa7..199370ac 100644 --- a/src/i18n/generated/zh-cn.json +++ b/src/i18n/generated/zh-cn.json @@ -9,6 +9,7 @@ "60级突破", "仅在以下平台生效:
\"PlayStation Network\"
对敌人造成冰元素伤害后,普通攻击与重击造成的伤害提高10%,该效果持续6秒,至多叠加2次;此外,埃洛伊装备掠食者时,攻击力提升66点。", "仅在以下平台生效:
\"PlayStation Network\"
普通攻击与重击命中敌人后有50%概率在小范围内造成200%攻击力的伤害。该效果每10秒只能触发一次;此外,旅行者装备降临之剑时,攻击力提升66点。", + "C2比例", "Empty", "E技能伤害占比", "E技能等级", @@ -34,13 +35,16 @@ "「流浪的晚星」与此相同。基于装备者的元素精通的24%/30%/36%/42%/48%,提升该角色的攻击力,并基于该提升的30%为队伍中附近的其他角色提升攻击力,持续12秒,多件同名武器产生的此效果可以叠加。角色处于队伍后台时也能触发效果。", "「浪闪」层数", "「渔获」", + "「温亨廷先生」命中数量", "「漫掷万镒」", "「烈风护持」比例", "「热情拂扫」护盾覆盖比例", "「白夜极星」层数", + "「瞬时剪影」印记伤害", "「祈风之赐」比例", "「祈风之赐」比例", "「繁绘隅穹」状态", + "「聚焦印象」印记伤害", "「袖火百景图」叠加层数", "「诡风之祸」比例", "「遗龙之荣」层数", @@ -354,6 +358,7 @@ "原木刀/森林王器-「种识之叶」", "反曲弓", "发生了元素转化", + "取景·冰点构图法", "受BUFF角色最大元素能量", "受到伤害时,生成一个伤害吸收量等同于生命值上限20%-23%-26%-29%-32%的护盾,持续10秒或直到护盾失效,每45-45-45-45-45秒只能触发一次。角色处于护盾庇护下时,造成的伤害提升12%-15%-18%-21%-24%。", "受到无郤气护盾治疗的角色,将获得「木运之岁」效果:基于白术生命值上限不超过50000点的部分,每1000点将使该角色触发的燃烧、绽放、超绽放、烈绽放反应造成的伤害提升2%,超激化、蔓激化反应带来的伤害提升0.8%,持续6秒。", @@ -470,6 +475,7 @@ "处于金杯的丰馈状态下的角色受到草元素攻击会使附近的所有角色元素精通提升100点,持续10秒", "处于队伍后台超过5秒后,生命值上限提升32%-40%-48%-56%-64%,元素精通提升40-50-60-70-80点。装备者登场并留在场上10秒后,该效果将失效。", "处于雷罚恶曜之眼", + "夏洛蒂", "夏祭之刻", "夏祭之花", "夏祭之面", @@ -562,6 +568,7 @@ "宗室长剑", "宗室长弓", "宗室面具", + "定格·全方位确证", "宣叙调比例", "宵宫", "宵宫-「炎昼风物诗」", @@ -795,6 +802,7 @@ "施放回复量", "施放心景幻成时,摩耶之殿将获得以下效果:
依据队伍中元素精通最高的角色的元素精通数值的25%,提高领域内当前场上角色的元素精通。通过这种方式,至多提升250点元素精通。", "施放愈气全形论之后的15秒内,队伍中附近的所有角色元素精通提升80点。", + "施放治疗量", "旅行剑", "旅途中的鲜花", "旋云开相", @@ -847,6 +855,7 @@ "普通攻击·云来剑法", "普通攻击·云来古剑法", "普通攻击·仪典剑术", + "普通攻击·冷色摄影律", "普通攻击·千金掷", "普通攻击·卷积微尘", "普通攻击·古华剑法", @@ -1035,6 +1044,7 @@ "极恶技·尽灭闪", "林尼", "林尼-惑光幻戏", + "枫丹角色数量", "枫原万叶", "枫原万叶-「山岚残芯」", "枫原万叶-「风物之诗咏」", @@ -1073,6 +1083,7 @@ "比例", "水中幻愿", "水仙之梦", + "水仙十字之剑", "水仙的时时刻刻", "水伤", "水元素伤害最大化或最大化期望", @@ -1178,6 +1189,7 @@ "点按技能伤害", "点按技能伤害", "点按技能伤害", + "点按拍照伤害", "炽火崩破伤害", "炽烈的炎之魔女", "炽鬃拳伤害", @@ -1311,6 +1323,8 @@ "白铁大剑", "盈满之实", "盟誓金爵", + "相机伤害", + "相机持续治疗量", "真珠之笼", "真红炽火之大铠", "眩惑光戏法", @@ -1516,6 +1530,8 @@ "行者之心", "衔珠海皇", "街巷伏击:装备该武器的角色处于队伍后台时,每1秒角色造成的伤害提升2%/2.5%/3%/3.5%/4%,最多通过这种方式获得20%/25%/30%/35%/40%的伤害提升;在场上超过4秒后,上述伤害提升效果每1秒会流失4%/5%/6%/7%/8%,直到降低至0%。", + "被动1层数", + "被动2层数", "被动①比例", "被动②比例", "被动应用比例", @@ -1527,6 +1543,8 @@ "裁断的翎羽", "装备此圣遗物套装的角色在以下情况下,将获得「问答」效果:在场上用岩元素攻击命中敌人后获得一层,每0.3秒至多触发一次;在队伍后台中,每3秒获得一层。问答至多叠加4层,每层能提供6%防御力与6%岩元素伤害加成。每6秒,若未获得问答效果,将损失一层。", "装备此圣遗物套装的角色对队伍中的角色进行治疗时,将产生持续3秒的海染泡沫,记录治疗的生命值回复量(包括溢出值)。持续时间结束时,海染泡沫将会爆炸,对周围的敌人造成90%累计回复量的伤害(该伤害结算方式同感电、超导等元素反应,但不受元素精通、等级或反应伤害加成效果影响)。每3.5秒至多产生一个海染泡沫;海染泡沫至多记录30000点回复量,含溢出部分的治疗量;自己的队伍中同时至多存在一个海染泡沫。装备此圣遗物套装的角色处于队伍后台时,依然能触发该效果。", + "装备者不具备「始基力」时:普通攻击、重击、下落攻击命中时,会释放芒性或荒性的能量冲击,造成160%-200%-240%-280%-320%攻击力的伤害。该效果每12秒至多触发一次,能量冲击的类型由水仙十字之剑当前的属性决定。", + "装备者的当前生命值提升或降低时,元素战技造成的伤害提升8%-10%-12%-14%-16%,该效果持续6秒,至多叠加3次,每0.2秒至多触发一次;队伍中其他角色的当前生命值提升或降低时,装备者的生命值上限提升14%-17.5%-21%-24.5%-28%,该效果持续6秒,至多叠加2次,每0.2秒至多触发一次。装备者处于队伍后台时,依然能触发上述效果。", "装备者的每点元素精通,都会为该角色提升0.036%/0.045%/0.054%/0.063%/0.072%元素充能效率,并基于该提升的30%为队伍中附近的其他角色提升元素充能效率,持续12秒,多件同名武器产生的此效果可以叠加。角色处于队伍后台时也能触发效果。", "装备者绽放、超绽放、烈绽放反应造成的伤害提升50%。此外,装备者触发绽放、超绽放、烈绽放时,上述效果带来的加成提升25%,该效果持续10秒,至多叠加4次,每1秒至多触发一次。装备者处于队伍后台时依然能触发该效果。", "装备该圣遗物套装的角色为单手剑、双手剑、长柄武器角色时,角色普通攻击造成的伤害提高35%。", @@ -1713,6 +1731,7 @@ "镇灵之灯·烦恼解决炮", "长按伤害", "长按技能伤害", + "长按拍照伤害", "闪电伤害", "闪耀奇迹♪", "间奏曲比例", @@ -1795,8 +1814,10 @@ "霜流矢伤害", "霜袭", "靖妖傩舞", + "静水流涌之辉", "静谧之曲", "非想风天", + "非枫丹角色数量", "领域伤害", "领域发动治疗量", "领域持续伤害", diff --git a/src/images/characters/Charlotte_splash.png b/src/images/characters/Charlotte_splash.png new file mode 100644 index 0000000000000000000000000000000000000000..cda444db0077c85cfc34737cae5513202087e37d GIT binary patch literal 42713 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�n;Hyn)1UxT?@OkQ-I2>XWH_AlqRP<7W~AGO$e5@ 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%0DbB7{>( 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 m>mMjEp?5`cKyaY{S^ouEf7H}m)Jz}%0000 Date: Tue, 7 Nov 2023 16:48:19 +0800 Subject: [PATCH 3/4] feat: Add Furina --- mona_core/src/artifacts/effect_config.rs | 4 + mona_core/src/character/character_config.rs | 1 + mona_core/src/character/character_name.rs | 1 + .../src/character/characters/hydro/furina.rs | 322 ++ .../src/character/characters/hydro/mod.rs | 2 + mona_core/src/character/skill_config.rs | 1 + .../target_functions/target_function_name.rs | 1 + .../target_functions/hydro/furina_default.rs | 71 + .../target_functions/hydro/mod.rs | 2 + src/assets/_gen_artifact.js | 782 ++--- src/assets/_gen_buff.js | 592 ++-- src/assets/_gen_character.js | 3008 +++++++++-------- src/assets/_gen_pf.js | 40 +- src/assets/_gen_tf.js | 558 +-- src/assets/_gen_weapon.js | 928 ++--- src/i18n/generated/en.json | 60 +- src/i18n/generated/zh-cn.json | 16 + src/images/characters/Furina_splash.png | Bin 0 -> 253929 bytes 18 files changed, 3459 insertions(+), 2930 deletions(-) create mode 100644 mona_core/src/character/characters/hydro/furina.rs create mode 100644 mona_core/src/target_functions/target_functions/hydro/furina_default.rs create mode 100644 src/images/characters/Furina_splash.png diff --git a/mona_core/src/artifacts/effect_config.rs b/mona_core/src/artifacts/effect_config.rs index f62371c0..d9be17f1 100644 --- a/mona_core/src/artifacts/effect_config.rs +++ b/mona_core/src/artifacts/effect_config.rs @@ -377,4 +377,8 @@ impl ArtifactEffectConfigBuilder { self } + pub fn golden_troupe(&mut self, rate: f64) -> &mut Self { + self.config.config_golden_troupe.rate = rate; + self + } } diff --git a/mona_core/src/character/character_config.rs b/mona_core/src/character/character_config.rs index 99397e8e..1b3bf563 100644 --- a/mona_core/src/character/character_config.rs +++ b/mona_core/src/character/character_config.rs @@ -30,5 +30,6 @@ pub enum CharacterConfig { Neuvillette { current_hp: usize }, Wriothesley { talent2_stack: f64 }, Charlotte { talent2_fontaine_count: usize, talent2_non_fontaine_count: usize, c2_count: usize, c2_rate: f64 }, + Furina { c2_overflow: f64 }, NoConfig, } diff --git a/mona_core/src/character/character_name.rs b/mona_core/src/character/character_name.rs index 5fa067a8..9791a5e2 100644 --- a/mona_core/src/character/character_name.rs +++ b/mona_core/src/character/character_name.rs @@ -49,6 +49,7 @@ pub enum CharacterName { Faruzan, Fischl, Freminet, + Furina, Ganyu, Gorou, HuTao, diff --git a/mona_core/src/character/characters/hydro/furina.rs b/mona_core/src/character/characters/hydro/furina.rs new file mode 100644 index 00000000..5666dc58 --- /dev/null +++ b/mona_core/src/character/characters/hydro/furina.rs @@ -0,0 +1,322 @@ +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 FurinaSkillType { + pub normal_dmg1: [f64; 15], + pub normal_dmg2: [f64; 15], + pub normal_dmg3: [f64; 15], + pub normal_dmg4: [f64; 15], + pub charged_dmg: [f64; 15], + pub plunging_dmg1: [f64; 15], + pub plunging_dmg2: [f64; 15], + pub plunging_dmg3: [f64; 15], + pub a_dmg1: [f64; 15], + + pub e_dmg1: [f64; 15], + pub e_dmg2: [f64; 15], + pub e_dmg3: [f64; 15], + pub e_dmg4: [f64; 15], + pub e_heal1: [f64; 15], + pub e_heal1_fixed: [f64; 15], + + pub q_dmg1: [f64; 15], + pub q_bonus1: [f64; 15], + pub q_bonus2: [f64; 15], +} + +pub const FURINA_SKILL: FurinaSkillType = FurinaSkillType { + normal_dmg1: [0.4839, 0.5232, 0.5626, 0.6189, 0.6583, 0.7033, 0.7652, 0.8271, 0.889, 0.9565, 1.024, 1.0915, 1.159, 1.2265, 1.294], + normal_dmg2: [0.4373, 0.4729, 0.5085, 0.5593, 0.5949, 0.6356, 0.6915, 0.7475, 0.8034, 0.8644, 0.9254, 0.9865, 1.0475, 1.1085, 1.1695], + normal_dmg3: [0.5512, 0.5961, 0.6409, 0.705, 0.7499, 0.8012, 0.8717, 0.9422, 1.0127, 1.0896, 1.1665, 1.2434, 1.3203, 1.3972, 1.4741], + normal_dmg4: [0.733, 0.7926, 0.8523, 0.9375, 0.9972, 1.0654, 1.1591, 1.2529, 1.3466, 1.4489, 1.5512, 1.6535, 1.7557, 1.858, 1.9603], + charged_dmg: [0.7422, 0.8026, 0.863, 0.9493, 1.0097, 1.0788, 1.1737, 1.2686, 1.3635, 1.4671, 1.5707, 1.6742, 1.7778, 1.8813, 1.9849], + 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], + a_dmg1: [0.0946, 0.1023, 0.11, 0.121, 0.1287, 0.1375, 0.1496, 0.1617, 0.1738, 0.187, 0.2002, 0.2134, 0.2266, 0.2398, 0.253], + e_dmg1: [0.0786, 0.0845, 0.0904, 0.0983, 0.1042, 0.1101, 0.118, 0.1258, 0.1337, 0.1416, 0.1494, 0.1573, 0.1671, 0.1769, 0.1868], + e_dmg2: [0.0596, 0.0641, 0.0685, 0.0745, 0.079, 0.0834, 0.0894, 0.0954, 0.1013, 0.1073, 0.1132, 0.1192, 0.1267, 0.1341, 0.1416], + e_dmg3: [0.0323, 0.0347, 0.0372, 0.0404, 0.0428, 0.0452, 0.0485, 0.0517, 0.0549, 0.0582, 0.0614, 0.0646, 0.0687, 0.0727, 0.0768], + e_dmg4: [0.0829, 0.0891, 0.0953, 0.1036, 0.1098, 0.116, 0.1243, 0.1326, 0.1409, 0.1492, 0.1575, 0.1658, 0.1761, 0.1865, 0.1968], + e_heal1: [0.048, 0.0516, 0.0552, 0.06, 0.0636, 0.0672, 0.072, 0.0768, 0.0816, 0.0864, 0.0912, 0.096, 0.102, 0.108, 0.114], + e_heal1_fixed: [462.23, 508.45, 558.54, 612.47, 670.26, 731.89, 797.39, 866.73, 939.92, 1016.97, 1097.87, 1182.63, 1271.23, 1363.69, 1460.0], + q_dmg1: [0.1141, 0.1226, 0.1312, 0.1426, 0.1511, 0.1597, 0.1711, 0.1825, 0.1939, 0.2053, 0.2167, 0.2281, 0.2424, 0.2566, 0.2709], + q_bonus1: [0.0007, 0.0009, 0.0011, 0.0013, 0.0015, 0.0017, 0.0019, 0.0021, 0.0023, 0.0025, 0.0027, 0.0029, 0.0031, 0.0033, 0.0035], + q_bonus2: [0.0001, 0.0002, 0.0003, 0.0004, 0.0005, 0.0006, 0.0007, 0.0008, 0.0009, 0.001, 0.0011, 0.0012, 0.0013, 0.0014, 0.0015], +}; + +damage_enum!( + FurinaDamageEnum + Normal1 + Normal2 + Normal3 + Normal4 + Charged + Plunging1 + Plunging2 + Plunging3 + A1 + E1 + E2 + E3 + E4 + EHeal1 + Q1 +); + +impl FurinaDamageEnum { + pub fn get_skill_type(&self) -> SkillType { + use FurinaDamageEnum::*; + match *self { + Normal1 | Normal2 | Normal3 | Normal4 | A1 => SkillType::NormalAttack, + Charged => SkillType::ChargedAttack, + Plunging1 | Plunging2 | Plunging3 => SkillType::PlungingAttack, + E1 | E2 | E3 | E4 | EHeal1 => SkillType::ElementalSkill, + Q1 => SkillType::ElementalBurst + } + } + + pub fn get_element(&self) -> Element { + use FurinaDamageEnum::*; + match *self { + E1 | E2 | E3 | E4 | Q1 => Element::Hydro, + _ => Element::Physical + } + } + + pub fn is_hp_ratio(&self) -> bool { + use FurinaDamageEnum::*; + match *self { + E1 | E2 | E3 | E4 | EHeal1 | Q1 => true, + _ => false + } + } + + pub fn is_heal(&self) -> bool { + use FurinaDamageEnum::*; + match *self { + EHeal1 => true, + _ => false + } + } +} + +pub struct FurinaEffect { + pub c2_overflow: f64, +} + +impl ChangeAttribute
for FurinaEffect { + fn change_attribute(&self, attribute: &mut A) { + let ratio = (self.c2_overflow * 0.0035).min(1.4); + attribute.add_hp_percentage("C2「女人皆善变,仿若水中萍。」", ratio); + } +} + +pub struct Furina; + +impl CharacterTrait for Furina { + const STATIC_DATA: CharacterStaticData = CharacterStaticData { + name: CharacterName::Furina, + internal_name: "Furina", + name_locale: locale!( + zh_cn: "芙宁娜", + en: "Furina" + ), + element: Element::Hydro, + hp: [1192, 3091, 4113, 6154, 6880, 7916, 8884, 9930, 10656, 11712, 12438, 13505, 14231, 15307], + atk: [19, 49, 66, 98, 110, 126, 142, 158, 170, 187, 198, 215, 227, 244], + def: [54, 140, 187, 280, 313, 360, 404, 451, 484, 532, 565, 614, 647, 696], + sub_stat: CharacterSubStatFamily::CriticalRate192, + weapon_type: WeaponType::Sword, + star: 5, + skill_name1: locale!( + zh_cn: "普通攻击·独舞之邀", + en: "Normal Attack: Soloist's Solicitation" + ), + skill_name2: locale!( + zh_cn: "孤心沙龙", + en: "Salon Solitaire" + ), + skill_name3: locale!( + zh_cn: "万众狂欢", + en: "Let the People Rejoice" + ) + }; + type SkillType = FurinaSkillType; + const SKILL: Self::SkillType = FURINA_SKILL; + type DamageEnumType = FurinaDamageEnum; + type RoleEnum = (); + + #[cfg(not(target_family = "wasm"))] + const CONFIG_SKILL: Option<&'static [ItemConfig]> = Some(&[ + ItemConfig { + name: "hp_above50_count", + title: locale!( + zh_cn: "生命值高于50%的角色数量", + en: "HP>=50% Characters Count" + ), + config: ItemConfigType::Int { min: 0, max: 4, default: 3 } + }, + ItemConfig { + name: "c6_after_e", + title: locale!( + zh_cn: "「万众瞩目」", + en: "\"Center of Attention\"" + ), + config: ItemConfigType::Bool { default: false } + }, + ItemConfig { + name: "c6_pneuma", + title: locale!( + zh_cn: "C6始基力:芒性", + en: "C6 Arkhe: Pneuma" + ), + config: ItemConfigType::Bool { default: false } + } + ]); + + #[cfg(not(target_family = "wasm"))] + const CONFIG_DATA: Option<&'static [ItemConfig]> = Some(&[ + ItemConfig { + name: "c2_overflow", + title: locale!( + zh_cn: "「气氛值」超过上限的部分", + en: "Fanfare Above the Limit" + ), + config: ItemConfigType::Float { min: 0.0, max: 400.0, default: 0.0 } + } + ]); + + #[cfg(not(target_family = "wasm"))] + const SKILL_MAP: CharacterSkillMap = CharacterSkillMap { + skill1: skill_map!( + FurinaDamageEnum + Normal1 hit_n_dmg!(1) + Normal2 hit_n_dmg!(2) + Normal3 hit_n_dmg!(3) + Normal4 hit_n_dmg!(4) + Charged charged_dmg!() + Plunging1 plunging_dmg!(1) + Plunging2 plunging_dmg!(2) + Plunging3 plunging_dmg!(3) + A1 locale!(zh_cn: "灵息之刺/流涌之刃伤害", en: "Spiritbreath Thorn/Surging Blade DMG") + ), + skill2: skill_map!( + FurinaDamageEnum + E1 locale!(zh_cn: "荒性泡沫伤害", en: "Ousia Bubble DMG") + E2 locale!(zh_cn: "乌瑟勋爵伤害", en: "Gentilhomme Usher DMG") + E3 locale!(zh_cn: "海薇玛夫人伤害", en: "Surintendante Chevalmarin DMG") + E4 locale!(zh_cn: "谢贝蕾妲小姐伤害", en: "Mademoiselle Crabaletta DMG") + EHeal1 locale!(zh_cn: "众水的歌者治疗量", en: "Singer of Many Waters Healing") + ), + skill3: skill_map!( + FurinaDamageEnum + Q1 locale!(zh_cn: "技能伤害", en: "Skill DMG") + ) + }; + + fn damage_internal(context: &DamageContext<'_, D::AttributeType>, s: usize, config: &CharacterSkillConfig, fumo: Option) -> D::Result { + let s: FurinaDamageEnum = num::FromPrimitive::from_usize(s).unwrap(); + let (s1, s2, s3) = context.character_common_data.get_3_skill(); + + let skill_type = s.get_skill_type(); + use FurinaDamageEnum::*; + + let (hp_above50_count, c6_after_e, c6_pneuma) = match *config { + CharacterSkillConfig::Furina { hp_above50_count, c6_after_e, c6_pneuma } => (hp_above50_count, c6_after_e, c6_pneuma), + _ => (0, false, false) + }; + + let mut builder = D::new(); + if s.is_heal() { + let ratio = FURINA_SKILL.e_heal1[s2]; + let fixed = FURINA_SKILL.e_heal1_fixed[s2]; + builder.add_hp_ratio("技能倍率", ratio); + builder.add_extra_damage("技能倍率", fixed); + builder.heal(&context.attribute) + } else { + let ratio = match s { + Normal1 => FURINA_SKILL.normal_dmg1[s1], + Normal2 => FURINA_SKILL.normal_dmg2[s1], + Normal3 => FURINA_SKILL.normal_dmg3[s1], + Normal4 => FURINA_SKILL.normal_dmg4[s1], + Charged => FURINA_SKILL.charged_dmg[s1], + Plunging1 => FURINA_SKILL.plunging_dmg1[s1], + Plunging2 => FURINA_SKILL.plunging_dmg2[s1], + Plunging3 => FURINA_SKILL.plunging_dmg3[s1], + A1 => FURINA_SKILL.a_dmg1[s1], + E1 => FURINA_SKILL.e_dmg1[s2], + E2 => FURINA_SKILL.e_dmg2[s2], + E3 => FURINA_SKILL.e_dmg3[s2], + E4 => FURINA_SKILL.e_dmg4[s2], + Q1 => FURINA_SKILL.q_dmg1[s3], + _ => 0.0 + }; + if s.is_hp_ratio() { + builder.add_hp_ratio("技能倍率", ratio); + } else { + builder.add_atk_ratio("技能倍率", ratio); + } + + if s == E2 || s == E3 || s == E4 { + let bonus = 0.1 * hp_above50_count as f64; + builder.add_hp_ratio("「沙龙成员」加成", bonus); + if context.character_common_data.has_talent2 { + let hp = context.attribute.get_hp(); + let factor = (hp / 1000.0).floor(); + builder.add_extra_bonus("天赋「无人听的自白」", (factor * 0.007).min(0.28)); + } + } + + let is_c6_skill = skill_type == SkillType::NormalAttack && s != A1; + let enable_c6 = is_c6_skill && context.character_common_data.constellation >= 6 && c6_after_e; + if enable_c6 { + builder.add_hp_ratio("C6「诸君听我颂,共举爱之杯!」", 0.18); + if c6_pneuma { + builder.add_hp_ratio("C6「诸君听我颂,共举爱之杯!」", 0.25); + } + } + + let element = if enable_c6 { + Element::Hydro + } else { + s.get_element() + }; + + builder.damage( + &context.attribute, + &context.enemy, + element, + skill_type, + context.character_common_data.level, + fumo + ) + } + } + + fn new_effect(common_data: &CharacterCommonData, config: &CharacterConfig) -> Option>> { + match *config { + CharacterConfig::Furina { c2_overflow } => Some(Box::new(FurinaEffect { + c2_overflow + })), + _ => None + } + } + + 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/hydro/mod.rs b/mona_core/src/character/characters/hydro/mod.rs index 3c424a62..982009d1 100644 --- a/mona_core/src/character/characters/hydro/mod.rs +++ b/mona_core/src/character/characters/hydro/mod.rs @@ -8,6 +8,7 @@ pub mod yelan; pub mod nilou; pub mod candace; pub mod neuvillette; +pub mod furina; pub use barbara::Barbara; pub use mona::Mona; @@ -19,3 +20,4 @@ pub use yelan::Yelan; pub use nilou::Nilou; pub use candace::Candace; pub use neuvillette::Neuvillette; +pub use furina::Furina; diff --git a/mona_core/src/character/skill_config.rs b/mona_core/src/character/skill_config.rs index 1fbb2a02..46d67548 100644 --- a/mona_core/src/character/skill_config.rs +++ b/mona_core/src/character/skill_config.rs @@ -42,5 +42,6 @@ pub enum CharacterSkillConfig { Freminet { talent2_rate: f64 }, Lyney { prop_stack: f64, under_pyro: bool, pyro_count: usize, }, Neuvillette { talent1_stack: usize }, + Furina { hp_above50_count: usize, c6_after_e: bool, c6_pneuma: bool }, NoConfig, } diff --git a/mona_core/src/target_functions/target_function_name.rs b/mona_core/src/target_functions/target_function_name.rs index 65165e85..4486bea8 100644 --- a/mona_core/src/target_functions/target_function_name.rs +++ b/mona_core/src/target_functions/target_function_name.rs @@ -93,4 +93,5 @@ pub enum TargetFunctionName { LyneyDefault, NeuvilletteDefault, WriothesleyDefault, + FurinaDefault, } diff --git a/mona_core/src/target_functions/target_functions/hydro/furina_default.rs b/mona_core/src/target_functions/target_functions/hydro/furina_default.rs new file mode 100644 index 00000000..37ac2684 --- /dev/null +++ b/mona_core/src/target_functions/target_functions/hydro/furina_default.rs @@ -0,0 +1,71 @@ +use crate::artifacts::Artifact; +use crate::artifacts::effect_config::{ArtifactEffectConfig, ArtifactEffectConfigBuilder}; +use crate::attribute::SimpleAttributeGraph2; +use crate::character::character_common_data::CharacterCommonData; +use crate::character::{Character, CharacterName}; +use crate::character::characters::Furina; +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 FurinaDefaultTargetFunction; + +impl TargetFunctionMetaTrait for FurinaDefaultTargetFunction { + #[cfg(not(target_family = "wasm"))] + const META_DATA: TargetFunctionMeta = TargetFunctionMeta { + name: TargetFunctionName::FurinaDefault, + name_locale: locale!( + zh_cn: "芙宁娜-不休独舞", + en: "Furina-Endless Solo of Solitude" + ), + description: locale!( + zh_cn: "最大化E伤害", + en: "Maximize E Damage" + ), + tags: "", + four: TargetFunctionFor::SomeWho(CharacterName::Furina), + image: TargetFunctionMetaImage::Avatar + }; + + fn create(character: &CharacterCommonData, weapon: &WeaponCommonData, config: &TargetFunctionConfig) -> Box { + Box::new(FurinaDefaultTargetFunction) + } +} + +impl TargetFunction for FurinaDefaultTargetFunction { + fn get_target_function_opt_config(&self) -> TargetFunctionOptConfig { + unimplemented!() + } + + fn get_default_artifact_config(&self, team_config: &TeamQuantization) -> ArtifactEffectConfig { + ArtifactEffectConfigBuilder::new() + .golden_troupe(1.0) + .build() + } + + 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 dmg_e2 = Furina::damage::( + &context, + S::E2, + &CharacterSkillConfig::Furina { hp_above50_count: 3, c6_after_e: true, c6_pneuma: true }, + None + ); + + dmg_e2.normal.expectation + } +} diff --git a/mona_core/src/target_functions/target_functions/hydro/mod.rs b/mona_core/src/target_functions/target_functions/hydro/mod.rs index 0640017d..0e7e55af 100644 --- a/mona_core/src/target_functions/target_functions/hydro/mod.rs +++ b/mona_core/src/target_functions/target_functions/hydro/mod.rs @@ -7,6 +7,7 @@ pub mod kamisato_ayato_default; pub mod yelan_default; pub mod nilou_default; pub mod neuvillette_default; +pub mod furina_default; pub use barbara_default::BarbaraDefaultTargetFunction; pub use mona_default::MonaDefaultTargetFunction; @@ -17,3 +18,4 @@ pub use kamisato_ayato_default::KamisatoAyatoDefaultTargetFunction; pub use yelan_default::YelanDefaultTargetFunction; pub use nilou_default::NilouDefaultTargetFunction; pub use neuvillette_default::NeuvilletteDefaultTargetFunction; +pub use furina_default::FurinaDefaultTargetFunction; diff --git a/src/assets/_gen_artifact.js b/src/assets/_gen_artifact.js index 9a7393a9..181f1134 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: 262, + nameLocale: 268, minStar: 1, maxStar: 3, - effect2: 1276, + effect2: 1287, - effect4: 627, + effect4: 634, flower: { - text: 263, + text: 269, url: getIcon("UI_RelicIcon_10010_4") }, feather: { - text: 265, + text: 271, url: getIcon("UI_RelicIcon_10010_2") }, sand: { - text: 266, + text: 272, url: getIcon("UI_RelicIcon_10010_5") }, cup: { - text: 267, + text: 273, url: getIcon("UI_RelicIcon_10010_1") }, head: { - text: 264, + text: 270, url: getIcon("UI_RelicIcon_10010_3") }, @@ -58,54 +58,54 @@ export default { "archaicPetra": { eng: "archaicPetra", name2: "ArchaicPetra", - nameLocale: 653, + nameLocale: 660, minStar: 4, maxStar: 5, - effect2: 1488, + effect2: 1503, - effect4: 1503, + effect4: 1518, flower: { - text: 1345, + text: 1357, url: getIcon("UI_RelicIcon_15014_4") }, feather: { - text: 602, + text: 609, url: getIcon("UI_RelicIcon_15014_2") }, sand: { - text: 829, + text: 836, url: getIcon("UI_RelicIcon_15014_5") }, cup: { - text: 603, + text: 610, url: getIcon("UI_RelicIcon_15014_1") }, head: { - text: 94, + text: 98, url: getIcon("UI_RelicIcon_15014_3") }, config4: [ - {"default":"Electro","name":"element","title":193,"type":"element4"}, + {"default":"Electro","name":"element","title":199,"type":"element4"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":756,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":763,"type":"float"}, ], }, @@ -113,52 +113,52 @@ export default { "berserker": { eng: "berserker", name2: "Berserker", - nameLocale: 660, + nameLocale: 667, minStar: 3, maxStar: 4, - effect2: 1003, + effect2: 1011, - effect4: 1280, + effect4: 1291, flower: { - text: 663, + text: 670, url: getIcon("UI_RelicIcon_10005_4") }, feather: { - text: 662, + text: 669, url: getIcon("UI_RelicIcon_10005_2") }, sand: { - text: 661, + text: 668, url: getIcon("UI_RelicIcon_10005_5") }, cup: { - text: 664, + text: 671, url: getIcon("UI_RelicIcon_10005_1") }, head: { - text: 665, + text: 672, url: getIcon("UI_RelicIcon_10005_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":756,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":763,"type":"float"}, ], }, @@ -166,52 +166,52 @@ export default { "blizzardStrayer": { eng: "blizzardStrayer", name2: "BlizzardStrayer", - nameLocale: 281, + nameLocale: 287, minStar: 4, maxStar: 5, - effect2: 1487, + effect2: 1502, - effect4: 743, + effect4: 750, flower: { - text: 354, + text: 360, url: getIcon("UI_RelicIcon_14001_4") }, feather: { - text: 725, + text: 732, url: getIcon("UI_RelicIcon_14001_2") }, sand: { - text: 280, + text: 286, url: getIcon("UI_RelicIcon_14001_5") }, cup: { - text: 1673, + text: 1689, url: getIcon("UI_RelicIcon_14001_1") }, head: { - text: 1339, + text: 1351, url: getIcon("UI_RelicIcon_14001_3") }, config4: [ - {"default":0.0,"max":0.4,"min":0.0,"name":"critical_bonus","title":1390,"type":"float"}, + {"default":0.0,"max":0.4,"min":0.0,"name":"critical_bonus","title":1402,"type":"float"}, ], }, @@ -219,52 +219,52 @@ export default { "bloodstainedChivalry": { eng: "bloodstainedChivalry", name2: "BloodstainedChivalry", - nameLocale: 1055, + nameLocale: 1064, minStar: 4, maxStar: 5, - effect2: 1669, + effect2: 1686, - effect4: 299, + effect4: 305, flower: { - text: 1053, + text: 1062, url: getIcon("UI_RelicIcon_15008_4") }, feather: { - text: 1056, + text: 1065, url: getIcon("UI_RelicIcon_15008_2") }, sand: { - text: 1865, + text: 1881, url: getIcon("UI_RelicIcon_15008_5") }, cup: { - text: 1057, + text: 1066, url: getIcon("UI_RelicIcon_15008_1") }, head: { - text: 1054, + text: 1063, url: getIcon("UI_RelicIcon_15008_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":756,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":763,"type":"float"}, ], }, @@ -272,52 +272,52 @@ export default { "braveHeart": { eng: "braveHeart", name2: "BraveHeart", - nameLocale: 319, + nameLocale: 325, minStar: 3, maxStar: 4, - effect2: 733, + effect2: 740, - effect4: 587, + effect4: 594, flower: { - text: 321, + text: 327, url: getIcon("UI_RelicIcon_10002_4") }, feather: { - text: 324, + text: 330, url: getIcon("UI_RelicIcon_10002_2") }, sand: { - text: 322, + text: 328, url: getIcon("UI_RelicIcon_10002_5") }, cup: { - text: 323, + text: 329, url: getIcon("UI_RelicIcon_10002_1") }, head: { - text: 320, + text: 326, url: getIcon("UI_RelicIcon_10002_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":756,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":763,"type":"float"}, ], }, @@ -325,52 +325,52 @@ export default { "crimsonWitch": { eng: "crimsonWitch", name2: "CrimsonWitchOfFlames", - nameLocale: 1192, + nameLocale: 1203, minStar: 4, maxStar: 5, - effect2: 1490, + effect2: 1505, - effect4: 1618, + effect4: 1634, flower: { - text: 1873, + text: 1889, url: getIcon("UI_RelicIcon_15006_4") }, feather: { - text: 1871, + text: 1887, url: getIcon("UI_RelicIcon_15006_2") }, sand: { - text: 1874, + text: 1890, url: getIcon("UI_RelicIcon_15006_5") }, cup: { - text: 1872, + text: 1888, url: getIcon("UI_RelicIcon_15006_1") }, head: { - text: 1201, + text: 1212, url: getIcon("UI_RelicIcon_15006_3") }, config4: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"level","title":757,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"level","title":764,"type":"float"}, ], }, @@ -378,52 +378,52 @@ export default { "DeepwoodMemories": { eng: "DeepwoodMemories", name2: "DeepwoodMemories", - nameLocale: 1140, + nameLocale: 1150, minStar: 4, maxStar: 5, - effect2: 1491, + effect2: 1506, - effect4: 216, + effect4: 222, flower: { - text: 1658, + text: 1674, url: getIcon("UI_RelicIcon_15025_4") }, feather: { - text: 1437, + text: 1449, url: getIcon("UI_RelicIcon_15025_2") }, sand: { - text: 1599, + text: 1615, url: getIcon("UI_RelicIcon_15025_5") }, cup: { - text: 1659, + text: 1675, url: getIcon("UI_RelicIcon_15025_1") }, head: { - text: 1029, + text: 1038, url: getIcon("UI_RelicIcon_15025_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":756,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":763,"type":"float"}, ], }, @@ -431,46 +431,46 @@ export default { "defenderWill": { eng: "defenderWill", name2: "DefendersWill", - nameLocale: 549, + nameLocale: 556, minStar: 3, maxStar: 4, - effect2: 1758, + effect2: 1774, - effect4: 1750, + effect4: 1766, flower: { - text: 551, + text: 558, url: getIcon("UI_RelicIcon_10003_4") }, feather: { - text: 553, + text: 560, url: getIcon("UI_RelicIcon_10003_2") }, sand: { - text: 552, + text: 559, url: getIcon("UI_RelicIcon_10003_5") }, cup: { - text: 550, + text: 557, url: getIcon("UI_RelicIcon_10003_1") }, head: { - text: 554, + text: 561, url: getIcon("UI_RelicIcon_10003_3") }, @@ -482,52 +482,52 @@ export default { "EchoesOfAnOffering": { eng: "EchoesOfAnOffering", name2: "EchoesOfAnOffering", - nameLocale: 1038, + nameLocale: 1047, minStar: 4, maxStar: 5, - effect2: 733, + effect2: 740, - effect4: 941, + effect4: 949, flower: { - text: 1868, + text: 1884, url: getIcon("UI_RelicIcon_15024_4") }, feather: { - text: 456, + text: 462, url: getIcon("UI_RelicIcon_15024_2") }, sand: { - text: 1348, + text: 1360, url: getIcon("UI_RelicIcon_15024_5") }, cup: { - text: 1139, + text: 1149, url: getIcon("UI_RelicIcon_15024_1") }, head: { - text: 1131, + text: 1140, url: getIcon("UI_RelicIcon_15024_3") }, config4: [ - {"default":0.5053283764473575,"max":1.0,"min":0.0,"name":"rate","title":607,"type":"float"}, + {"default":0.5053283764473575,"max":1.0,"min":0.0,"name":"rate","title":614,"type":"float"}, ], }, @@ -535,46 +535,46 @@ export default { "emblemOfSeveredFate": { eng: "emblemOfSeveredFate", name2: "EmblemOfSeveredFate", - nameLocale: 1415, + nameLocale: 1427, minStar: 4, maxStar: 5, - effect2: 196, + effect2: 202, - effect4: 462, + effect4: 468, flower: { - text: 821, + text: 828, url: getIcon("UI_RelicIcon_15020_4") }, feather: { - text: 306, + text: 312, url: getIcon("UI_RelicIcon_15020_2") }, sand: { - text: 1785, + text: 1801, url: getIcon("UI_RelicIcon_15020_5") }, cup: { - text: 1418, + text: 1430, url: getIcon("UI_RelicIcon_15020_1") }, head: { - text: 343, + text: 349, url: getIcon("UI_RelicIcon_15020_3") }, @@ -586,52 +586,52 @@ export default { "FlowerOfParadiseLost": { eng: "FlowerOfParadiseLost", name2: "FlowerOfParadiseLost", - nameLocale: 110, + nameLocale: 115, minStar: 4, maxStar: 5, - effect2: 235, + effect2: 243, - effect4: 1547, + effect4: 1562, flower: { - text: 1028, + text: 1037, url: getIcon("UI_RelicIcon_15028_4") }, feather: { - text: 1597, + text: 1612, url: getIcon("UI_RelicIcon_15028_2") }, sand: { - text: 294, + text: 300, url: getIcon("UI_RelicIcon_15028_5") }, cup: { - text: 555, + text: 562, url: getIcon("UI_RelicIcon_15028_1") }, head: { - text: 1400, + text: 1412, url: getIcon("UI_RelicIcon_15028_3") }, config4: [ - {"default":4.0,"max":4.0,"min":0.0,"name":"stack","title":757,"type":"float"}, + {"default":4.0,"max":4.0,"min":0.0,"name":"stack","title":764,"type":"float"}, ], }, @@ -639,46 +639,46 @@ export default { "gambler": { eng: "gambler", name2: "Gambler", - nameLocale: 1603, + nameLocale: 1619, minStar: 3, maxStar: 4, - effect2: 222, + effect2: 228, - effect4: 304, + effect4: 310, flower: { - text: 1607, + text: 1623, url: getIcon("UI_RelicIcon_10008_4") }, feather: { - text: 1605, + text: 1621, url: getIcon("UI_RelicIcon_10008_2") }, sand: { - text: 1604, + text: 1620, url: getIcon("UI_RelicIcon_10008_5") }, cup: { - text: 1608, + text: 1624, url: getIcon("UI_RelicIcon_10008_1") }, head: { - text: 1606, + text: 1622, url: getIcon("UI_RelicIcon_10008_3") }, @@ -690,52 +690,52 @@ export default { "DesertPavilionChronicle": { eng: "DesertPavilionChronicle", name2: "DesertPavilionChronicle", - nameLocale: 1100, + nameLocale: 1109, minStar: 4, maxStar: 5, - effect2: 1493, + effect2: 1508, - effect4: 1704, + effect4: 1720, flower: { - text: 169, + text: 175, url: getIcon("UI_RelicIcon_15027_4") }, feather: { - text: 1892, + text: 1908, url: getIcon("UI_RelicIcon_15027_2") }, sand: { - text: 526, + text: 532, url: getIcon("UI_RelicIcon_15027_5") }, cup: { - text: 1660, + text: 1676, url: getIcon("UI_RelicIcon_15027_1") }, head: { - text: 1121, + text: 1130, url: getIcon("UI_RelicIcon_15027_3") }, config4: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":756,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":763,"type":"float"}, ], }, @@ -743,56 +743,56 @@ export default { "GildedDreams": { eng: "GildedDreams", name2: "GildedDreams", - nameLocale: 1854, + nameLocale: 1870, minStar: 4, maxStar: 5, - effect2: 237, + effect2: 242, - effect4: 1575, + effect4: 1590, flower: { - text: 1064, + text: 1073, url: getIcon("UI_RelicIcon_15026_4") }, feather: { - text: 1541, + text: 1556, url: getIcon("UI_RelicIcon_15026_2") }, sand: { - text: 1098, + text: 1107, url: getIcon("UI_RelicIcon_15026_5") }, cup: { - text: 535, + text: 541, url: getIcon("UI_RelicIcon_15026_1") }, head: { - text: 1101, + text: 1110, url: getIcon("UI_RelicIcon_15026_3") }, config4: [ - {"default":0,"max":3,"min":0,"name":"same_count","title":387,"type":"int"}, + {"default":0,"max":3,"min":0,"name":"same_count","title":393,"type":"int"}, - {"default":0,"max":3,"min":0,"name":"diff_count","title":95,"type":"int"}, + {"default":0,"max":3,"min":0,"name":"diff_count","title":100,"type":"int"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":756,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":763,"type":"float"}, ], }, @@ -800,46 +800,46 @@ export default { "gladiatorFinale": { eng: "gladiatorFinale", name2: "GladiatorsFinale", - nameLocale: 1562, + nameLocale: 1577, minStar: 4, maxStar: 5, - effect2: 733, + effect2: 740, - effect4: 1548, + effect4: 1563, flower: { - text: 1561, + text: 1576, url: getIcon("UI_RelicIcon_15001_4") }, feather: { - text: 1560, + text: 1575, url: getIcon("UI_RelicIcon_15001_2") }, sand: { - text: 1559, + text: 1574, url: getIcon("UI_RelicIcon_15001_5") }, cup: { - text: 1563, + text: 1578, url: getIcon("UI_RelicIcon_15001_1") }, head: { - text: 1558, + text: 1573, url: getIcon("UI_RelicIcon_15001_3") }, @@ -851,52 +851,52 @@ export default { "GoldenTroupe": { eng: "GoldenTroupe", name2: "GoldenTroupe", - nameLocale: 1889, + nameLocale: 1905, minStar: 4, maxStar: 5, - effect2: 222, + effect2: 228, - effect4: 223, + effect4: 229, flower: { - text: 1888, + text: 1904, url: getIcon("UI_RelicIcon_15032_4") }, feather: { - text: 1893, + text: 1909, url: getIcon("UI_RelicIcon_15032_2") }, sand: { - text: 1891, + text: 1907, url: getIcon("UI_RelicIcon_15032_5") }, cup: { - text: 1887, + text: 1903, url: getIcon("UI_RelicIcon_15032_1") }, head: { - text: 1890, + text: 1906, url: getIcon("UI_RelicIcon_15032_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1536,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1550,"type":"float"}, ], }, @@ -904,52 +904,52 @@ export default { "heartOfDepth": { eng: "heartOfDepth", name2: "HeartOfDepth", - nameLocale: 1096, + nameLocale: 1105, minStar: 4, maxStar: 5, - effect2: 1489, + effect2: 1504, - effect4: 779, + effect4: 786, flower: { - text: 1855, + text: 1871, url: getIcon("UI_RelicIcon_15016_4") }, feather: { - text: 1662, + text: 1678, url: getIcon("UI_RelicIcon_15016_2") }, sand: { - text: 455, + text: 461, url: getIcon("UI_RelicIcon_15016_5") }, cup: { - text: 1097, + text: 1106, url: getIcon("UI_RelicIcon_15016_1") }, head: { - text: 1679, + text: 1695, url: getIcon("UI_RelicIcon_15016_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":756,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":763,"type":"float"}, ], }, @@ -957,52 +957,52 @@ export default { "huskOfOpulentDreams": { eng: "huskOfOpulentDreams", name2: "HuskOfOpulentDreams", - nameLocale: 345, + nameLocale: 351, minStar: 4, maxStar: 5, - effect2: 1758, + effect2: 1774, - effect4: 1542, + effect4: 1557, flower: { - text: 1477, + text: 1492, url: getIcon("UI_RelicIcon_15021_4") }, feather: { - text: 344, + text: 350, url: getIcon("UI_RelicIcon_15021_2") }, sand: { - text: 170, + text: 176, url: getIcon("UI_RelicIcon_15021_5") }, cup: { - text: 1066, + text: 1075, url: getIcon("UI_RelicIcon_15021_1") }, head: { - text: 637, + text: 644, url: getIcon("UI_RelicIcon_15021_3") }, config4: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"level","title":50,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"level","title":53,"type":"float"}, ], }, @@ -1010,52 +1010,52 @@ export default { "instructor": { eng: "instructor", name2: "Instructor", - nameLocale: 761, + nameLocale: 768, minStar: 3, maxStar: 4, - effect2: 236, + effect2: 241, - effect4: 1576, + effect4: 1591, flower: { - text: 766, + text: 773, url: getIcon("UI_RelicIcon_10007_4") }, feather: { - text: 765, + text: 772, url: getIcon("UI_RelicIcon_10007_2") }, sand: { - text: 764, + text: 771, url: getIcon("UI_RelicIcon_10007_5") }, cup: { - text: 767, + text: 774, url: getIcon("UI_RelicIcon_10007_1") }, head: { - text: 763, + text: 770, url: getIcon("UI_RelicIcon_10007_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":756,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":763,"type":"float"}, ], }, @@ -1063,52 +1063,52 @@ export default { "lavaWalker": { eng: "lavaWalker", name2: "Lavawalker", - nameLocale: 1149, + nameLocale: 1159, minStar: 4, maxStar: 5, - effect2: 1171, + effect2: 1181, - effect4: 582, + effect4: 589, flower: { - text: 1144, + text: 1154, url: getIcon("UI_RelicIcon_14003_4") }, feather: { - text: 1147, + text: 1157, url: getIcon("UI_RelicIcon_14003_2") }, sand: { - text: 1146, + text: 1156, url: getIcon("UI_RelicIcon_14003_5") }, cup: { - text: 1148, + text: 1158, url: getIcon("UI_RelicIcon_14003_1") }, head: { - text: 1145, + text: 1155, url: getIcon("UI_RelicIcon_14003_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":758,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":765,"type":"float"}, ], }, @@ -1116,46 +1116,46 @@ export default { "luckyDog": { eng: "luckyDog", name2: "LuckyDog", - nameLocale: 614, + nameLocale: 621, minStar: 1, maxStar: 3, - effect2: 1757, + effect2: 1773, - effect4: 707, + effect4: 714, flower: { - text: 617, + text: 624, url: getIcon("UI_RelicIcon_10011_4") }, feather: { - text: 619, + text: 626, url: getIcon("UI_RelicIcon_10011_2") }, sand: { - text: 616, + text: 623, url: getIcon("UI_RelicIcon_10011_5") }, cup: { - text: 615, + text: 622, url: getIcon("UI_RelicIcon_10011_1") }, head: { - text: 618, + text: 625, url: getIcon("UI_RelicIcon_10011_3") }, @@ -1167,46 +1167,46 @@ export default { "maidenBeloved": { eng: "maidenBeloved", name2: "MaidenBeloved", - nameLocale: 1538, + nameLocale: 1553, minStar: 4, maxStar: 5, - effect2: 1569, + effect2: 1584, - effect4: 786, + effect4: 793, flower: { - text: 1646, + text: 1662, url: getIcon("UI_RelicIcon_14004_4") }, feather: { - text: 593, + text: 600, url: getIcon("UI_RelicIcon_14004_2") }, sand: { - text: 592, + text: 599, url: getIcon("UI_RelicIcon_14004_5") }, cup: { - text: 591, + text: 598, url: getIcon("UI_RelicIcon_14004_1") }, head: { - text: 590, + text: 597, url: getIcon("UI_RelicIcon_14004_3") }, @@ -1218,52 +1218,52 @@ export default { "MarechausseeHunter": { eng: "MarechausseeHunter", name2: "MarechausseeHunter", - nameLocale: 1666, + nameLocale: 1682, minStar: 4, maxStar: 5, - effect2: 934, + effect2: 942, - effect4: 635, + effect4: 642, flower: { - text: 1227, + text: 1238, url: getIcon("UI_RelicIcon_15031_4") }, feather: { - text: 1039, + text: 1048, url: getIcon("UI_RelicIcon_15031_2") }, sand: { - text: 1539, + text: 1554, url: getIcon("UI_RelicIcon_15031_5") }, cup: { - text: 1674, + text: 1690, url: getIcon("UI_RelicIcon_15031_1") }, head: { - text: 1440, + text: 1452, url: getIcon("UI_RelicIcon_15031_3") }, config4: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":605,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":612,"type":"float"}, ], }, @@ -1271,52 +1271,52 @@ export default { "martialArtist": { eng: "martialArtist", name2: "MartialArtist", - nameLocale: 1070, + nameLocale: 1079, minStar: 3, maxStar: 4, - effect2: 935, + effect2: 943, - effect4: 780, + effect4: 787, flower: { - text: 1073, + text: 1082, url: getIcon("UI_RelicIcon_10006_4") }, feather: { - text: 1074, + text: 1083, url: getIcon("UI_RelicIcon_10006_2") }, sand: { - text: 1072, + text: 1081, url: getIcon("UI_RelicIcon_10006_5") }, cup: { - text: 1075, + text: 1084, url: getIcon("UI_RelicIcon_10006_1") }, head: { - text: 1071, + text: 1080, url: getIcon("UI_RelicIcon_10006_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":756,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":763,"type":"float"}, ], }, @@ -1324,52 +1324,52 @@ export default { "noblesseOblige": { eng: "noblesseOblige", name2: "NoblesseOblige", - nameLocale: 822, + nameLocale: 829, minStar: 4, maxStar: 5, - effect2: 228, + effect2: 234, - effect4: 796, + effect4: 803, flower: { - text: 560, + text: 567, url: getIcon("UI_RelicIcon_15007_4") }, feather: { - text: 559, + text: 566, url: getIcon("UI_RelicIcon_15007_2") }, sand: { - text: 562, + text: 569, url: getIcon("UI_RelicIcon_15007_5") }, cup: { - text: 565, + text: 572, url: getIcon("UI_RelicIcon_15007_1") }, head: { - text: 568, + text: 575, url: getIcon("UI_RelicIcon_15007_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":756,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":763,"type":"float"}, ], }, @@ -1377,58 +1377,58 @@ export default { "NymphsDream": { eng: "NymphsDream", name2: "NymphsDream", - nameLocale: 1083, + nameLocale: 1092, minStar: 4, maxStar: 5, - effect2: 1489, + effect2: 1504, - effect4: 925, + effect4: 933, flower: { - text: 805, + text: 812, url: getIcon("UI_RelicIcon_15029_4") }, feather: { - text: 453, + text: 459, url: getIcon("UI_RelicIcon_15029_2") }, sand: { - text: 1085, + text: 1094, url: getIcon("UI_RelicIcon_15029_5") }, cup: { - text: 325, + text: 331, url: getIcon("UI_RelicIcon_15029_1") }, head: { - text: 652, + text: 659, url: getIcon("UI_RelicIcon_15029_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"w1","title":55,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"w1","title":58,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"w2","title":127,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"w2","title":132,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"w3","title":78,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"w3","title":82,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":625,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":630,"type":"float"}, ], }, @@ -1436,46 +1436,46 @@ export default { "oceanHuedClam": { eng: "oceanHuedClam", name2: "OceanHuedClam", - nameLocale: 1136, + nameLocale: 1145, minStar: 4, maxStar: 5, - effect2: 1105, + effect2: 1114, - effect4: 1543, + effect4: 1558, flower: { - text: 1135, + text: 1144, url: getIcon("UI_RelicIcon_15022_4") }, feather: { - text: 1143, + text: 1153, url: getIcon("UI_RelicIcon_15022_2") }, sand: { - text: 1380, + text: 1392, url: getIcon("UI_RelicIcon_15022_5") }, cup: { - text: 1326, + text: 1338, url: getIcon("UI_RelicIcon_15022_1") }, head: { - text: 1138, + text: 1147, url: getIcon("UI_RelicIcon_15022_3") }, @@ -1487,54 +1487,54 @@ export default { "paleFlame": { eng: "paleFlame", name2: "PaleFlame", - nameLocale: 1463, + nameLocale: 1477, minStar: 4, maxStar: 5, - effect2: 1670, + effect2: 1685, - effect4: 211, + effect4: 217, flower: { - text: 812, + text: 819, url: getIcon("UI_RelicIcon_15018_4") }, feather: { - text: 1598, + text: 1614, url: getIcon("UI_RelicIcon_15018_2") }, sand: { - text: 192, + text: 198, url: getIcon("UI_RelicIcon_15018_5") }, cup: { - text: 1616, + text: 1632, url: getIcon("UI_RelicIcon_15018_1") }, head: { - text: 427, + text: 433, url: getIcon("UI_RelicIcon_15018_3") }, config4: [ - {"default":0.0,"max":2.0,"min":0.0,"name":"avg_level","title":750,"type":"float"}, + {"default":0.0,"max":2.0,"min":0.0,"name":"avg_level","title":757,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"full_rate","title":1162,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"full_rate","title":1172,"type":"float"}, ], }, @@ -1542,11 +1542,11 @@ export default { "prayersForDestiny": { eng: "prayersForDestiny", name2: "PrayersForDestiny", - nameLocale: 1369, + nameLocale: 1381, minStar: 3, maxStar: 4, - effect1: 370, + effect1: 376, @@ -1559,7 +1559,7 @@ export default { head: { - text: 1370, + text: 1382, url: getIcon("UI_RelicIcon_15010_3") }, @@ -1571,11 +1571,11 @@ export default { "prayersForIllumination": { eng: "prayersForIllumination", name2: "PrayersForIllumination", - nameLocale: 1371, + nameLocale: 1383, minStar: 3, maxStar: 4, - effect1: 371, + effect1: 377, @@ -1588,7 +1588,7 @@ export default { head: { - text: 1372, + text: 1384, url: getIcon("UI_RelicIcon_15009_3") }, @@ -1600,11 +1600,11 @@ export default { "prayersForWisdom": { eng: "prayersForWisdom", name2: "PrayersForWisdom", - nameLocale: 1377, + nameLocale: 1389, minStar: 3, maxStar: 4, - effect1: 372, + effect1: 378, @@ -1617,7 +1617,7 @@ export default { head: { - text: 1378, + text: 1390, url: getIcon("UI_RelicIcon_15011_3") }, @@ -1629,11 +1629,11 @@ export default { "prayersToSpringtime": { eng: "prayersToSpringtime", name2: "PrayersToSpringtime", - nameLocale: 1367, + nameLocale: 1379, minStar: 3, maxStar: 4, - effect1: 369, + effect1: 375, @@ -1646,7 +1646,7 @@ export default { head: { - text: 1368, + text: 1380, url: getIcon("UI_RelicIcon_15013_3") }, @@ -1658,46 +1658,46 @@ export default { "resolutionOfSojourner": { eng: "resolutionOfSojourner", name2: "ResolutionOfSojourner", - nameLocale: 1528, + nameLocale: 1543, minStar: 3, maxStar: 4, - effect2: 733, + effect2: 740, - effect4: 1707, + effect4: 1723, flower: { - text: 748, + text: 755, url: getIcon("UI_RelicIcon_10001_4") }, feather: { - text: 634, + text: 641, url: getIcon("UI_RelicIcon_10001_2") }, sand: { - text: 1665, + text: 1681, url: getIcon("UI_RelicIcon_10001_5") }, cup: { - text: 630, + text: 637, url: getIcon("UI_RelicIcon_10001_1") }, head: { - text: 658, + text: 665, url: getIcon("UI_RelicIcon_10001_3") }, @@ -1709,52 +1709,52 @@ export default { "retracingBolide": { eng: "retracingBolide", name2: "RetracingBolide", - nameLocale: 1664, + nameLocale: 1680, minStar: 4, maxStar: 5, - effect2: 703, + effect2: 710, - effect4: 472, + effect4: 478, flower: { - text: 478, + text: 484, url: getIcon("UI_RelicIcon_15015_4") }, feather: { - text: 481, + text: 487, url: getIcon("UI_RelicIcon_15015_2") }, sand: { - text: 477, + text: 483, url: getIcon("UI_RelicIcon_15015_5") }, cup: { - text: 480, + text: 486, url: getIcon("UI_RelicIcon_15015_1") }, head: { - text: 479, + text: 485, url: getIcon("UI_RelicIcon_15015_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":704,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":711,"type":"float"}, ], }, @@ -1762,46 +1762,46 @@ export default { "scholar": { eng: "scholar", name2: "Scholar", - nameLocale: 542, + nameLocale: 549, minStar: 3, maxStar: 4, - effect2: 196, + effect2: 202, - effect4: 1500, + effect4: 1515, flower: { - text: 543, + text: 550, url: getIcon("UI_RelicIcon_10012_4") }, feather: { - text: 546, + text: 553, url: getIcon("UI_RelicIcon_10012_2") }, sand: { - text: 545, + text: 552, url: getIcon("UI_RelicIcon_10012_5") }, cup: { - text: 544, + text: 551, url: getIcon("UI_RelicIcon_10012_1") }, head: { - text: 547, + text: 554, url: getIcon("UI_RelicIcon_10012_3") }, @@ -1813,52 +1813,52 @@ export default { "shimenawaReminiscence": { eng: "shimenawaReminiscence", name2: "ShimenawasReminiscence", - nameLocale: 1661, + nameLocale: 1677, minStar: 4, maxStar: 5, - effect2: 733, + effect2: 740, - effect4: 787, + effect4: 794, flower: { - text: 1429, + text: 1441, url: getIcon("UI_RelicIcon_15019_4") }, feather: { - text: 647, + text: 654, url: getIcon("UI_RelicIcon_15019_2") }, sand: { - text: 1030, + text: 1039, url: getIcon("UI_RelicIcon_15019_5") }, cup: { - text: 1347, + text: 1359, url: getIcon("UI_RelicIcon_15019_1") }, head: { - text: 814, + text: 821, url: getIcon("UI_RelicIcon_15019_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":756,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":763,"type":"float"}, ], }, @@ -1866,52 +1866,52 @@ export default { "tenacityOfTheMillelith": { eng: "tenacityOfTheMillelith", name2: "TenacityOfTheMillelith", - nameLocale: 338, + nameLocale: 344, minStar: 4, maxStar: 5, - effect2: 1282, + effect2: 1293, - effect4: 210, + effect4: 216, flower: { - text: 326, + text: 332, url: getIcon("UI_RelicIcon_15017_4") }, feather: { - text: 833, + text: 840, url: getIcon("UI_RelicIcon_15017_2") }, sand: { - text: 1715, + text: 1731, url: getIcon("UI_RelicIcon_15017_5") }, cup: { - text: 1323, + text: 1335, url: getIcon("UI_RelicIcon_15017_1") }, head: { - text: 589, + text: 596, url: getIcon("UI_RelicIcon_15017_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":756,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":763,"type":"float"}, ], }, @@ -1919,46 +1919,46 @@ export default { "exile": { eng: "exile", name2: "TheExile", - nameLocale: 1114, + nameLocale: 1123, minStar: 3, maxStar: 4, - effect2: 196, + effect2: 202, - effect4: 795, + effect4: 802, flower: { - text: 1117, + text: 1126, url: getIcon("UI_RelicIcon_10009_4") }, feather: { - text: 1116, + text: 1125, url: getIcon("UI_RelicIcon_10009_2") }, sand: { - text: 1119, + text: 1128, url: getIcon("UI_RelicIcon_10009_5") }, cup: { - text: 1115, + text: 1124, url: getIcon("UI_RelicIcon_10009_1") }, head: { - text: 1118, + text: 1127, url: getIcon("UI_RelicIcon_10009_3") }, @@ -1970,46 +1970,46 @@ export default { "thunderingFury": { eng: "thunderingFury", name2: "ThunderingFury", - nameLocale: 536, + nameLocale: 542, minStar: 4, maxStar: 5, - effect2: 1492, + effect2: 1507, - effect4: 1617, + effect4: 1633, flower: { - text: 1806, + text: 1822, url: getIcon("UI_RelicIcon_15005_4") }, feather: { - text: 1796, + text: 1812, url: getIcon("UI_RelicIcon_15005_2") }, sand: { - text: 1805, + text: 1821, url: getIcon("UI_RelicIcon_15005_5") }, cup: { - text: 1778, + text: 1794, url: getIcon("UI_RelicIcon_15005_1") }, head: { - text: 423, + text: 429, url: getIcon("UI_RelicIcon_15005_3") }, @@ -2021,52 +2021,52 @@ export default { "thunderSmoother": { eng: "thunderSmoother", name2: "Thundersoother", - nameLocale: 608, + nameLocale: 615, minStar: 4, maxStar: 5, - effect2: 1788, + effect2: 1804, - effect4: 585, + effect4: 592, flower: { - text: 612, + text: 619, url: getIcon("UI_RelicIcon_14002_4") }, feather: { - text: 613, + text: 620, url: getIcon("UI_RelicIcon_14002_2") }, sand: { - text: 610, + text: 617, url: getIcon("UI_RelicIcon_14002_5") }, cup: { - text: 611, + text: 618, url: getIcon("UI_RelicIcon_14002_1") }, head: { - text: 609, + text: 616, url: getIcon("UI_RelicIcon_14002_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":760,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":767,"type":"float"}, ], }, @@ -2074,46 +2074,46 @@ export default { "tinyMiracle": { eng: "tinyMiracle", name2: "TinyMiracle", - nameLocale: 527, + nameLocale: 533, minStar: 3, maxStar: 4, - effect2: 666, + effect2: 673, - effect4: 363, + effect4: 369, flower: { - text: 531, + text: 537, url: getIcon("UI_RelicIcon_10004_4") }, feather: { - text: 530, + text: 536, url: getIcon("UI_RelicIcon_10004_2") }, sand: { - text: 529, + text: 535, url: getIcon("UI_RelicIcon_10004_5") }, cup: { - text: 528, + text: 534, url: getIcon("UI_RelicIcon_10004_1") }, head: { - text: 532, + text: 538, url: getIcon("UI_RelicIcon_10004_3") }, @@ -2125,46 +2125,46 @@ export default { "travelingDoctor": { eng: "travelingDoctor", name2: "TravelingDoctor", - nameLocale: 1156, + nameLocale: 1166, minStar: 1, maxStar: 3, - effect2: 1564, + effect2: 1579, - effect4: 799, + effect4: 806, flower: { - text: 1161, + text: 1171, url: getIcon("UI_RelicIcon_10013_4") }, feather: { - text: 1159, + text: 1169, url: getIcon("UI_RelicIcon_10013_2") }, sand: { - text: 1157, + text: 1167, url: getIcon("UI_RelicIcon_10013_5") }, cup: { - text: 1160, + text: 1170, url: getIcon("UI_RelicIcon_10013_1") }, head: { - text: 1158, + text: 1168, url: getIcon("UI_RelicIcon_10013_3") }, @@ -2176,54 +2176,54 @@ export default { "VermillionHereafter": { eng: "VermillionHereafter", name2: "VermillionHereafter", - nameLocale: 1643, + nameLocale: 1659, minStar: 4, maxStar: 5, - effect2: 733, + effect2: 740, - effect4: 793, + effect4: 800, flower: { - text: 1294, + text: 1306, url: getIcon("UI_RelicIcon_15023_4") }, feather: { - text: 1167, + text: 1177, url: getIcon("UI_RelicIcon_15023_2") }, sand: { - text: 1762, + text: 1778, url: getIcon("UI_RelicIcon_15023_5") }, cup: { - text: 1412, + text: 1424, url: getIcon("UI_RelicIcon_15023_1") }, head: { - text: 1519, + text: 1534, url: getIcon("UI_RelicIcon_15023_3") }, config4: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate_q","title":231,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate_q","title":237,"type":"float"}, - {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":605,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":612,"type":"float"}, ], }, @@ -2231,46 +2231,46 @@ export default { "viridescentVenerer": { eng: "viridescentVenerer", name2: "ViridescentVenerer", - nameLocale: 1432, + nameLocale: 1444, minStar: 4, maxStar: 5, - effect2: 1493, + effect2: 1508, - effect4: 677, + effect4: 684, flower: { - text: 1713, + text: 1729, url: getIcon("UI_RelicIcon_15002_4") }, feather: { - text: 1228, + text: 1239, url: getIcon("UI_RelicIcon_15002_2") }, sand: { - text: 1435, + text: 1447, url: getIcon("UI_RelicIcon_15002_5") }, cup: { - text: 1434, + text: 1446, url: getIcon("UI_RelicIcon_15002_1") }, head: { - text: 1436, + text: 1448, url: getIcon("UI_RelicIcon_15002_3") }, @@ -2282,52 +2282,52 @@ export default { "VourukashasGlow": { eng: "VourukashasGlow", name2: "VourukashasGlow", - nameLocale: 1458, + nameLocale: 1472, minStar: 4, maxStar: 5, - effect2: 1283, + effect2: 1294, - effect4: 205, + effect4: 211, flower: { - text: 1178, + text: 1188, url: getIcon("UI_RelicIcon_15030_4") }, feather: { - text: 1257, + text: 1268, url: getIcon("UI_RelicIcon_15030_2") }, sand: { - text: 108, + text: 112, url: getIcon("UI_RelicIcon_15030_5") }, cup: { - text: 816, + text: 823, url: getIcon("UI_RelicIcon_15030_1") }, head: { - text: 1177, + text: 1187, url: getIcon("UI_RelicIcon_15030_3") }, config4: [ - {"default":4.0,"max":5.0,"min":0.0,"name":"stack","title":606,"type":"float"}, + {"default":4.0,"max":5.0,"min":0.0,"name":"stack","title":613,"type":"float"}, ], }, @@ -2335,46 +2335,46 @@ export default { "wandererTroupe": { eng: "wandererTroupe", name2: "WanderersTroupe", - nameLocale: 1123, + nameLocale: 1132, minStar: 4, maxStar: 5, - effect2: 236, + effect2: 241, - effect4: 1549, + effect4: 1564, flower: { - text: 109, + text: 114, url: getIcon("UI_RelicIcon_15003_4") }, feather: { - text: 1263, + text: 1274, url: getIcon("UI_RelicIcon_15003_2") }, sand: { - text: 1408, + text: 1420, url: getIcon("UI_RelicIcon_15003_5") }, cup: { - text: 389, + text: 395, url: getIcon("UI_RelicIcon_15003_1") }, head: { - text: 716, + text: 723, url: getIcon("UI_RelicIcon_15003_3") }, diff --git a/src/assets/_gen_buff.js b/src/assets/_gen_buff.js index c7bd1db1..e11e67c7 100644 --- a/src/assets/_gen_buff.js +++ b/src/assets/_gen_buff.js @@ -270,7 +270,7 @@ export default { "ATKPercentage": { name: "ATKPercentage", - nameLocale: 728, + nameLocale: 735, description: null, @@ -280,14 +280,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":768,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":775,"type":"floatPercentageInput"}, ], }, "DEFPercentage": { name: "DEFPercentage", - nameLocale: 1754, + nameLocale: 1770, description: null, @@ -297,14 +297,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":768,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":775,"type":"floatPercentageInput"}, ], }, "HPPercentage": { name: "HPPercentage", - nameLocale: 1273, + nameLocale: 1284, description: null, @@ -314,14 +314,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":768,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":775,"type":"floatPercentageInput"}, ], }, "ATKFixed": { name: "ATKFixed", - nameLocale: 727, + nameLocale: 734, description: null, @@ -331,14 +331,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"value","title":768,"type":"floatInput"}, + {"default":0.0,"name":"value","title":775,"type":"floatInput"}, ], }, "DEFFixed": { name: "DEFFixed", - nameLocale: 1753, + nameLocale: 1769, description: null, @@ -348,14 +348,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"value","title":768,"type":"floatInput"}, + {"default":0.0,"name":"value","title":775,"type":"floatInput"}, ], }, "HPFixed": { name: "HPFixed", - nameLocale: 1272, + nameLocale: 1283, description: null, @@ -365,14 +365,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"value","title":768,"type":"floatInput"}, + {"default":0.0,"name":"value","title":775,"type":"floatInput"}, ], }, "Critical": { name: "Critical", - nameLocale: 1000, + nameLocale: 1008, description: null, @@ -382,14 +382,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":768,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":775,"type":"floatPercentageInput"}, ], }, "CriticalDamage": { name: "CriticalDamage", - nameLocale: 996, + nameLocale: 1004, description: null, @@ -399,14 +399,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":768,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":775,"type":"floatPercentageInput"}, ], }, "CustomBonus": { name: "CustomBonus", - nameLocale: 176, + nameLocale: 182, description: null, @@ -416,14 +416,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":768,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":775,"type":"floatPercentageInput"}, ], }, "ElementalMastery": { name: "ElementalMastery", - nameLocale: 232, + nameLocale: 239, description: null, @@ -433,14 +433,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"value","title":768,"type":"floatInput"}, + {"default":0.0,"name":"value","title":775,"type":"floatInput"}, ], }, "Recharge": { name: "Recharge", - nameLocale: 195, + nameLocale: 201, description: null, @@ -450,14 +450,14 @@ export default { genre: "Common", config: [ - {"default":20.0,"name":"p","title":768,"type":"floatPercentageInput"}, + {"default":20.0,"name":"p","title":775,"type":"floatPercentageInput"}, ], }, "DEFMinus": { name: "DEFMinus", - nameLocale: 287, + nameLocale: 293, description: 0, @@ -467,14 +467,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":768,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":775,"type":"floatPercentageInput"}, ], }, "ResMinus": { name: "ResMinus", - nameLocale: 286, + nameLocale: 292, description: null, @@ -484,14 +484,14 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":768,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":775,"type":"floatPercentageInput"}, ], }, "HealingBonus": { name: "HealingBonus", - nameLocale: 1103, + nameLocale: 1112, description: null, @@ -501,16 +501,16 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"p","title":768,"type":"floatPercentageInput"}, + {"default":0.0,"name":"p","title":775,"type":"floatPercentageInput"}, ], }, "BaseDmg": { name: "BaseDmg", - nameLocale: 465, + nameLocale: 471, - description: 1625, + description: 1641, badge: BaseDmg_image, @@ -518,16 +518,16 @@ export default { genre: "Common", config: [ - {"default":0.0,"name":"value","title":768,"type":"floatInput"}, + {"default":0.0,"name":"value","title":775,"type":"floatInput"}, ], }, "AlbedoTalent2": { name: "AlbedoTalent2", - nameLocale: 1766, + nameLocale: 1782, - description: 1771, + description: 1787, badge: getImage("Albedo"), @@ -540,9 +540,9 @@ export default { "AlbedoC4": { name: "AlbedoC4", - nameLocale: 1767, + nameLocale: 1783, - description: 1769, + description: 1785, badge: getImage("Albedo"), @@ -555,9 +555,9 @@ export default { "AlbedoC6": { name: "AlbedoC6", - nameLocale: 1765, + nameLocale: 1781, - description: 1770, + description: 1786, badge: getImage("Albedo"), @@ -570,9 +570,9 @@ export default { "AloyTalent1": { name: "AloyTalent1", - nameLocale: 460, + nameLocale: 466, - description: 461, + description: 467, badge: getImage("Aloy"), @@ -585,9 +585,9 @@ export default { "AratakiIttoC4": { name: "AratakiIttoC4", - nameLocale: 1471, + nameLocale: 1486, - description: 1473, + description: 1488, badge: getImage("Itto"), @@ -600,9 +600,9 @@ export default { "BeidouC6": { name: "BeidouC6", - nameLocale: 330, + nameLocale: 336, - description: 332, + description: 338, badge: getImage("Beidou"), @@ -615,9 +615,9 @@ export default { "BennettQ": { name: "BennettQ", - nameLocale: 1248, + nameLocale: 1259, - description: 1251, + description: 1262, badge: getImage("Bennett"), @@ -625,20 +625,20 @@ export default { genre: "Character", config: [ - {"default":800.0,"name":"base_atk","title":1253,"type":"floatInput"}, + {"default":800.0,"name":"base_atk","title":1264,"type":"floatInput"}, - {"default":true,"name":"c1","title":834,"type":"bool"}, + {"default":true,"name":"c1","title":841,"type":"bool"}, - {"default":10,"max":15,"min":1,"name":"skill3","title":696,"type":"int"}, + {"default":10,"max":15,"min":1,"name":"skill3","title":703,"type":"int"}, ], }, "BennettC6": { name: "BennettC6", - nameLocale: 1247, + nameLocale: 1258, - description: 1252, + description: 1263, badge: getImage("Bennett"), @@ -651,9 +651,9 @@ export default { "ChongyunTalent2": { name: "ChongyunTalent2", - nameLocale: 1681, + nameLocale: 1697, - description: 1683, + description: 1699, badge: getImage("Chongyun"), @@ -666,9 +666,9 @@ export default { "DionaC6G50": { name: "DionaC6G50", - nameLocale: 1653, + nameLocale: 1669, - description: 1655, + description: 1671, badge: getImage("Diona"), @@ -681,9 +681,9 @@ export default { "EulaE": { name: "EulaE", - nameLocale: 172, + nameLocale: 178, - description: 174, + description: 180, badge: getImage("Eula"), @@ -691,16 +691,16 @@ export default { genre: "Character", config: [ - {"default":9,"max":15,"min":1,"name":"skill2","title":696,"type":"int"}, + {"default":9,"max":15,"min":1,"name":"skill2","title":703,"type":"int"}, ], }, "GanyuTalent2": { name: "GanyuTalent2", - nameLocale: 1267, + nameLocale: 1278, - description: 1271, + description: 1282, badge: getImage("Ganyu"), @@ -713,9 +713,9 @@ export default { "GanyuC1": { name: "GanyuC1", - nameLocale: 1268, + nameLocale: 1279, - description: 1270, + description: 1281, badge: getImage("Ganyu"), @@ -728,9 +728,9 @@ export default { "GorouE1": { name: "GorouE1", - nameLocale: 154, + nameLocale: 159, - description: 159, + description: 164, badge: getImage("Gorou"), @@ -738,16 +738,16 @@ export default { genre: "Character", config: [ - {"default":10,"max":15,"min":1,"name":"skill2","title":158,"type":"int"}, + {"default":10,"max":15,"min":1,"name":"skill2","title":163,"type":"int"}, ], }, "GorouE3": { name: "GorouE3", - nameLocale: 155, + nameLocale: 160, - description: 160, + description: 165, badge: getImage("Gorou"), @@ -760,9 +760,9 @@ export default { "GorouTalent1": { name: "GorouTalent1", - nameLocale: 153, + nameLocale: 158, - description: 162, + description: 167, badge: getImage("Gorou"), @@ -775,9 +775,9 @@ export default { "GorouC6": { name: "GorouC6", - nameLocale: 156, + nameLocale: 161, - description: 161, + description: 166, badge: getImage("Gorou"), @@ -785,16 +785,16 @@ export default { genre: "Character", config: [ - {"default":1,"max":3,"min":1,"name":"level","title":1822,"type":"int"}, + {"default":1,"max":3,"min":1,"name":"level","title":1838,"type":"int"}, ], }, "HuTaoTalent1": { name: "HuTaoTalent1", - nameLocale: 1448, + nameLocale: 1460, - description: 1450, + description: 1462, badge: getImage("Hutao"), @@ -807,9 +807,9 @@ export default { "JeanC4": { name: "JeanC4", - nameLocale: 1260, + nameLocale: 1271, - description: 1262, + description: 1273, badge: getImage("Qin"), @@ -822,9 +822,9 @@ export default { "KaedeharaKazuhaTalent2": { name: "KaedeharaKazuhaTalent2", - nameLocale: 1048, + nameLocale: 1057, - description: 1052, + description: 1061, badge: getImage("Kazuha"), @@ -832,18 +832,18 @@ export default { genre: "Character", config: [ - {"default":"Electro","name":"element","title":675,"type":"element4"}, + {"default":"Electro","name":"element","title":682,"type":"element4"}, - {"default":800.0,"name":"em","title":75,"type":"floatInput"}, + {"default":800.0,"name":"em","title":79,"type":"floatInput"}, ], }, "KaedeharaKazuhaC2": { name: "KaedeharaKazuhaC2", - nameLocale: 1047, + nameLocale: 1056, - description: 1051, + description: 1060, badge: getImage("Kazuha"), @@ -856,9 +856,9 @@ export default { "KamisatoAyakaC4": { name: "KamisatoAyakaC4", - nameLocale: 1365, + nameLocale: 1377, - description: 1416, + description: 1428, badge: getImage("Ayaka"), @@ -871,9 +871,9 @@ export default { "KleeC2": { name: "KleeC2", - nameLocale: 381, + nameLocale: 387, - description: 383, + description: 389, badge: getImage("Klee"), @@ -886,9 +886,9 @@ export default { "KleeC6": { name: "KleeC6", - nameLocale: 380, + nameLocale: 386, - description: 384, + description: 390, badge: getImage("Klee"), @@ -901,9 +901,9 @@ export default { "KujouSaraEOrQ": { name: "KujouSaraEOrQ", - nameLocale: 112, + nameLocale: 117, - description: 115, + description: 120, badge: getImage("Sara"), @@ -911,20 +911,20 @@ export default { genre: "Character", config: [ - {"default":700.0,"name":"base_atk","title":116,"type":"floatInput"}, + {"default":700.0,"name":"base_atk","title":121,"type":"floatInput"}, - {"default":false,"name":"c6","title":837,"type":"bool"}, + {"default":false,"name":"c6","title":844,"type":"bool"}, - {"default":10,"max":15,"min":1,"name":"skill2","title":13,"type":"int"}, + {"default":10,"max":15,"min":1,"name":"skill2","title":14,"type":"int"}, ], }, "LisaTalent2": { name: "LisaTalent2", - nameLocale: 103, + nameLocale: 107, - description: 105, + description: 109, badge: getImage("Lisa"), @@ -937,9 +937,9 @@ export default { "MonaQ": { name: "MonaQ", - nameLocale: 1479, + nameLocale: 1494, - description: 1482, + description: 1497, badge: getImage("Mona"), @@ -947,18 +947,18 @@ export default { genre: "Character", config: [ - {"default":9,"max":15,"min":1,"name":"skill3","title":19,"type":"int"}, + {"default":9,"max":15,"min":1,"name":"skill3","title":20,"type":"int"}, - {"default":false,"name":"c4","title":836,"type":"bool"}, + {"default":false,"name":"c4","title":843,"type":"bool"}, ], }, "MonaC1": { name: "MonaC1", - nameLocale: 1480, + nameLocale: 1495, - description: 1483, + description: 1498, badge: getImage("Mona"), @@ -971,9 +971,9 @@ export default { "NingguangTalent2": { name: "NingguangTalent2", - nameLocale: 290, + nameLocale: 296, - description: 292, + description: 298, badge: getImage("Ningguang"), @@ -986,9 +986,9 @@ export default { "RaidenShogunE": { name: "RaidenShogunE", - nameLocale: 1800, + nameLocale: 1816, - description: 1803, + description: 1819, badge: getImage("Shougun"), @@ -996,18 +996,18 @@ export default { genre: "Character", config: [ - {"default":8,"max":15,"min":1,"name":"skill2","title":1802,"type":"int"}, + {"default":8,"max":15,"min":1,"name":"skill2","title":1818,"type":"int"}, - {"default":80,"max":100,"min":20,"name":"energy","title":360,"type":"int"}, + {"default":80,"max":100,"min":20,"name":"energy","title":366,"type":"int"}, ], }, "RaidenShogunC4": { name: "RaidenShogunC4", - nameLocale: 1799, + nameLocale: 1815, - description: 1804, + description: 1820, badge: getImage("Shougun"), @@ -1020,9 +1020,9 @@ export default { "RazorC4": { name: "RazorC4", - nameLocale: 1793, + nameLocale: 1809, - description: 1795, + description: 1811, badge: getImage("Razor"), @@ -1035,9 +1035,9 @@ export default { "RosariaTalent2": { name: "RosariaTalent2", - nameLocale: 1424, + nameLocale: 1436, - description: 1427, + description: 1439, badge: getImage("Rosaria"), @@ -1045,16 +1045,16 @@ export default { genre: "Character", config: [ - {"default":70.0,"name":"crit","title":1428,"type":"floatPercentageInput"}, + {"default":70.0,"name":"crit","title":1440,"type":"floatPercentageInput"}, ], }, "RosariaC6": { name: "RosariaC6", - nameLocale: 1423, + nameLocale: 1435, - description: 1426, + description: 1438, badge: getImage("Rosaria"), @@ -1067,9 +1067,9 @@ export default { "ShenheE": { name: "ShenheE", - nameLocale: 1298, + nameLocale: 1310, - description: 1304, + description: 1316, badge: getImage("Shenhe"), @@ -1077,18 +1077,18 @@ export default { genre: "Character", config: [ - {"default":3000.0,"name":"atk","title":1309,"type":"floatInput"}, + {"default":3000.0,"name":"atk","title":1321,"type":"floatInput"}, - {"default":8,"max":15,"min":1,"name":"skill2","title":1303,"type":"int"}, + {"default":8,"max":15,"min":1,"name":"skill2","title":1315,"type":"int"}, ], }, "ShenheQ": { name: "ShenheQ", - nameLocale: 1300, + nameLocale: 1312, - description: 1306, + description: 1318, badge: getImage("Shenhe"), @@ -1096,16 +1096,16 @@ export default { genre: "Character", config: [ - {"default":8,"max":15,"min":1,"name":"skill3","title":1305,"type":"int"}, + {"default":8,"max":15,"min":1,"name":"skill3","title":1317,"type":"int"}, ], }, "ShenheTalent1": { name: "ShenheTalent1", - nameLocale: 1299, + nameLocale: 1311, - description: 1307, + description: 1319, badge: getImage("Shenhe"), @@ -1113,16 +1113,16 @@ export default { genre: "Character", config: [ - {"default":false,"name":"c2","title":835,"type":"bool"}, + {"default":false,"name":"c2","title":842,"type":"bool"}, ], }, "ShenheTalent2": { name: "ShenheTalent2", - nameLocale: 1301, + nameLocale: 1313, - description: 1308, + description: 1320, badge: getImage("Shenhe"), @@ -1130,16 +1130,16 @@ export default { genre: "Character", config: [ - {"default":0,"name":"t","options":["点按","长按"],"title":697,"type":"option"}, + {"default":0,"name":"t","options":["点按","长按"],"title":704,"type":"option"}, ], }, "SucroseTalent1": { name: "SucroseTalent1", - nameLocale: 1333, + nameLocale: 1345, - description: 1336, + description: 1348, badge: getImage("Sucrose"), @@ -1152,9 +1152,9 @@ export default { "SucroseTalent2": { name: "SucroseTalent2", - nameLocale: 1331, + nameLocale: 1343, - description: 1337, + description: 1349, badge: getImage("Sucrose"), @@ -1162,16 +1162,16 @@ export default { genre: "Character", config: [ - {"default":200.0,"name":"em","title":1338,"type":"floatInput"}, + {"default":200.0,"name":"em","title":1350,"type":"floatInput"}, ], }, "SucroseC6": { name: "SucroseC6", - nameLocale: 1332, + nameLocale: 1344, - description: 1335, + description: 1347, badge: getImage("Sucrose"), @@ -1179,16 +1179,16 @@ export default { genre: "Character", config: [ - {"default":"Electro","name":"element","title":680,"type":"element4"}, + {"default":"Electro","name":"element","title":687,"type":"element4"}, ], }, "ThomaTalent1": { name: "ThomaTalent1", - nameLocale: 671, + nameLocale: 678, - description: 674, + description: 681, badge: getImage("Tohma"), @@ -1196,16 +1196,16 @@ export default { genre: "Character", config: [ - {"default":2.0,"max":5.0,"min":0.0,"name":"stack","title":374,"type":"float"}, + {"default":2.0,"max":5.0,"min":0.0,"name":"stack","title":380,"type":"float"}, ], }, "ThomaC6": { name: "ThomaC6", - nameLocale: 670, + nameLocale: 677, - description: 673, + description: 680, badge: getImage("Tohma"), @@ -1218,9 +1218,9 @@ export default { "VentiC2": { name: "VentiC2", - nameLocale: 1152, + nameLocale: 1162, - description: 1154, + description: 1164, badge: getImage("Venti"), @@ -1228,16 +1228,16 @@ export default { genre: "Character", config: [ - {"default":false,"name":"levitating","title":1509,"type":"bool"}, + {"default":false,"name":"levitating","title":1524,"type":"bool"}, ], }, "VentiC6": { name: "VentiC6", - nameLocale: 1151, + nameLocale: 1161, - description: 1155, + description: 1165, badge: getImage("Venti"), @@ -1245,18 +1245,18 @@ export default { genre: "Character", config: [ - {"default":true,"name":"is_convert","title":358,"type":"bool"}, + {"default":true,"name":"is_convert","title":364,"type":"bool"}, - {"default":"Electro","name":"element","title":1630,"type":"element4"}, + {"default":"Electro","name":"element","title":1646,"type":"element4"}, ], }, "XianglingTalent2": { name: "XianglingTalent2", - nameLocale: 1860, + nameLocale: 1876, - description: 1864, + description: 1880, badge: getImage("Xiangling"), @@ -1269,9 +1269,9 @@ export default { "XianglingC1": { name: "XianglingC1", - nameLocale: 1858, + nameLocale: 1874, - description: 1862, + description: 1878, badge: getImage("Xiangling"), @@ -1284,9 +1284,9 @@ export default { "XianglingC6": { name: "XianglingC6", - nameLocale: 1859, + nameLocale: 1875, - description: 1863, + description: 1879, badge: getImage("Xiangling"), @@ -1299,9 +1299,9 @@ export default { "XingqiuC2": { name: "XingqiuC2", - nameLocale: 1525, + nameLocale: 1540, - description: 1527, + description: 1542, badge: getImage("Xingqiu"), @@ -1314,9 +1314,9 @@ export default { "XinyanC4": { name: "XinyanC4", - nameLocale: 1636, + nameLocale: 1652, - description: 1640, + description: 1656, badge: getImage("Xinyan"), @@ -1329,9 +1329,9 @@ export default { "XinyanTalent2": { name: "XinyanTalent2", - nameLocale: 1637, + nameLocale: 1653, - description: 1641, + description: 1657, badge: getImage("Xinyan"), @@ -1344,9 +1344,9 @@ export default { "YaeMikoC4": { name: "YaeMikoC4", - nameLocale: 246, + nameLocale: 252, - description: 248, + description: 254, badge: getImage("Yae"), @@ -1359,9 +1359,9 @@ export default { "YoimiyaTalent2": { name: "YoimiyaTalent2", - nameLocale: 572, + nameLocale: 579, - description: 574, + description: 581, badge: getImage("Yoimiya"), @@ -1369,16 +1369,16 @@ export default { genre: "Character", config: [ - {"default":0,"max":10,"min":0,"name":"talent1_stack","title":46,"type":"int"}, + {"default":0,"max":10,"min":0,"name":"talent1_stack","title":49,"type":"int"}, ], }, "YunjinQ": { name: "YunjinQ", - nameLocale: 142, + nameLocale: 147, - description: 144, + description: 149, badge: getImage("Yunjin"), @@ -1386,22 +1386,22 @@ export default { genre: "Character", config: [ - {"default":10,"max":15,"min":1,"name":"skill3","title":19,"type":"int"}, + {"default":10,"max":15,"min":1,"name":"skill3","title":20,"type":"int"}, - {"default":2000.0,"name":"def","title":146,"type":"floatInput"}, + {"default":2000.0,"name":"def","title":151,"type":"floatInput"}, {"default":true,"name":"talent2","title":7,"type":"bool"}, - {"default":4,"max":4,"min":1,"name":"ele_count","title":1738,"type":"int"}, + {"default":4,"max":4,"min":1,"name":"ele_count","title":1754,"type":"int"}, ], }, "YunjinC2": { name: "YunjinC2", - nameLocale: 141, + nameLocale: 146, - description: 145, + description: 150, badge: getImage("Yunjin"), @@ -1414,9 +1414,9 @@ export default { "ZhongliShield": { name: "ZhongliShield", - nameLocale: 1719, + nameLocale: 1735, - description: 1721, + description: 1737, badge: getImage("Zhongli"), @@ -1429,9 +1429,9 @@ export default { "YelanTalent2": { name: "YelanTalent2", - nameLocale: 486, + nameLocale: 492, - description: 490, + description: 496, badge: getImage("Yelan"), @@ -1439,16 +1439,16 @@ export default { genre: "Character", config: [ - {"default":14,"max":14,"min":0,"name":"secs","title":1411,"type":"int"}, + {"default":14,"max":14,"min":0,"name":"secs","title":1423,"type":"int"}, ], }, "YelanC4": { name: "YelanC4", - nameLocale: 487, + nameLocale: 493, - description: 489, + description: 495, badge: getImage("Yelan"), @@ -1456,16 +1456,16 @@ export default { genre: "Character", config: [ - {"default":4,"max":4,"min":1,"name":"count","title":1059,"type":"int"}, + {"default":4,"max":4,"min":1,"name":"count","title":1068,"type":"int"}, ], }, "KamisatoAyatoQ": { name: "KamisatoAyatoQ", - nameLocale: 1359, + nameLocale: 1371, - description: 1362, + description: 1374, badge: getImage("Ayato"), @@ -1473,16 +1473,16 @@ export default { genre: "Character", config: [ - {"default":8,"max":15,"min":1,"name":"skill_level","title":1361,"type":"int"}, + {"default":8,"max":15,"min":1,"name":"skill_level","title":1373,"type":"int"}, ], }, "ShikanoinHeizouTalent2": { name: "ShikanoinHeizouTalent2", - nameLocale: 1884, + nameLocale: 1900, - description: 1886, + description: 1902, badge: getImage("Heizo"), @@ -1495,9 +1495,9 @@ export default { "TighnariC4": { name: "TighnariC4", - nameLocale: 722, + nameLocale: 729, - description: 724, + description: 731, badge: getImage("Tighnari"), @@ -1505,16 +1505,16 @@ export default { genre: "Character", config: [ - {"default":false,"name":"after_reaction","title":1672,"type":"bool"}, + {"default":false,"name":"after_reaction","title":1688,"type":"bool"}, ], }, "DoriC4": { name: "DoriC4", - nameLocale: 483, + nameLocale: 489, - description: 484, + description: 490, badge: getImage("Dori"), @@ -1522,18 +1522,18 @@ export default { genre: "Character", config: [ - {"default":false,"name":"hp_below50","title":1278,"type":"bool"}, + {"default":false,"name":"hp_below50","title":1289,"type":"bool"}, - {"default":true,"name":"energy_below50","title":240,"type":"bool"}, + {"default":true,"name":"energy_below50","title":246,"type":"bool"}, ], }, "NilouTalent1": { name: "NilouTalent1", - nameLocale: 538, + nameLocale: 544, - description: 473, + description: 479, badge: getImage("Nilou"), @@ -1546,9 +1546,9 @@ export default { "NilouTalent2": { name: "NilouTalent2", - nameLocale: 539, + nameLocale: 545, - description: 463, + description: 469, badge: getImage("Nilou"), @@ -1556,16 +1556,16 @@ export default { genre: "Character", config: [ - {"default":60000.0,"name":"hp","title":541,"type":"floatInput"}, + {"default":60000.0,"name":"hp","title":547,"type":"floatInput"}, ], }, "CandaceQ": { name: "CandaceQ", - nameLocale: 451, + nameLocale: 457, - description: 1567, + description: 1582, badge: getImage("Candace"), @@ -1578,9 +1578,9 @@ export default { "CandaceTalent2": { name: "CandaceTalent2", - nameLocale: 450, + nameLocale: 456, - description: 471, + description: 477, badge: getImage("Candace"), @@ -1588,16 +1588,16 @@ export default { genre: "Character", config: [ - {"default":30000.0,"name":"hp","title":452,"type":"floatInput"}, + {"default":30000.0,"name":"hp","title":458,"type":"floatInput"}, ], }, "NahidaTalent1": { name: "NahidaTalent1", - nameLocale: 1404, + nameLocale: 1416, - description: 801, + description: 808, 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":1747,"type":"float"}, + {"default":1000.0,"max":3000.0,"min":0.0,"name":"max_em","title":1763,"type":"float"}, ], }, "FaruzanQ": { name: "FaruzanQ", - nameLocale: 1108, + nameLocale: 1117, - description: 1245, + description: 1256, badge: getImage("Faruzan"), @@ -1622,26 +1622,26 @@ export default { genre: "Character", config: [ - {"default":650,"max":1000,"min":0,"name":"base_atk","title":1109,"type":"int"}, + {"default":650,"max":1000,"min":0,"name":"base_atk","title":1118,"type":"int"}, - {"default":10,"max":15,"min":1,"name":"q_level","title":19,"type":"int"}, + {"default":10,"max":15,"min":1,"name":"q_level","title":20,"type":"int"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate_q1","title":47,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate_q1","title":50,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate_q2","title":42,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate_q2","title":46,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate_talent2","title":21,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate_talent2","title":22,"type":"float"}, - {"default":false,"name":"enable_c6","title":250,"type":"bool"}, + {"default":false,"name":"enable_c6","title":256,"type":"bool"}, ], }, "Mika": { name: "Mika", - nameLocale: 1395, + nameLocale: 1407, - description: 831, + description: 838, 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":189,"type":"float"}, + {"default":3.0,"max":5.0,"min":0.0,"name":"stack_talent2","title":195,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate_c6","title":252,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate_c6","title":258,"type":"float"}, ], }, "KavehQ": { name: "KavehQ", - nameLocale: 350, + nameLocale: 356, - description: 1744, + description: 1760, badge: getImage("Kaveh"), @@ -1668,18 +1668,18 @@ export default { genre: "Character", config: [ - {"default":8,"max":15,"min":1,"name":"q_level","title":351,"type":"int"}, + {"default":8,"max":15,"min":1,"name":"q_level","title":357,"type":"int"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1081,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1090,"type":"float"}, ], }, "BaizhuTalent2": { name: "BaizhuTalent2", - nameLocale: 1313, + nameLocale: 1325, - description: 362, + description: 368, badge: getImage("Baizhuer"), @@ -1687,18 +1687,18 @@ export default { genre: "Character", config: [ - {"default":50000.0,"max":50000.0,"min":0.0,"name":"hp","title":1315,"type":"float"}, + {"default":50000.0,"max":50000.0,"min":0.0,"name":"hp","title":1327,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1081,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1090,"type":"float"}, ], }, "BaizhuC4": { name: "BaizhuC4", - nameLocale: 1314, + nameLocale: 1326, - description: 802, + description: 809, badge: getImage("Baizhuer"), @@ -1706,16 +1706,16 @@ export default { genre: "Character", config: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1081,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1090,"type":"float"}, ], }, "FreedomSworn": { name: "FreedomSworn", - nameLocale: 1462, + nameLocale: 1476, - description: 23, + description: 25, badge: getImageW("Sword_Widsith"), @@ -1723,16 +1723,16 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1398,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1410,"type":"intInput"}, ], }, "SongOfBrokenPines": { name: "SongOfBrokenPines", - nameLocale: 1041, + nameLocale: 1050, - description: 24, + description: 26, badge: getImageW("Claymore_Widsith"), @@ -1740,16 +1740,16 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1398,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1410,"type":"intInput"}, ], }, "WolfsGravestone": { name: "WolfsGravestone", - nameLocale: 1221, + nameLocale: 1232, - description: 742, + description: 749, badge: getImageW("Claymore_Wolfmound"), @@ -1757,16 +1757,16 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1398,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1410,"type":"intInput"}, ], }, "ThrillingTalesOfDragonSlayers": { name: "ThrillingTalesOfDragonSlayers", - nameLocale: 1581, + nameLocale: 1596, - description: 175, + description: 181, badge: getImageW("Catalyst_Pulpfic"), @@ -1774,16 +1774,16 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1398,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1410,"type":"intInput"}, ], }, "ElegyOfTheEnd": { name: "ElegyOfTheEnd", - nameLocale: 1410, + nameLocale: 1422, - description: 341, + description: 347, badge: getImageW("Bow_Widsith"), @@ -1791,16 +1791,16 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1398,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1410,"type":"intInput"}, ], }, "HakushinRing": { name: "HakushinRing", - nameLocale: 1320, + nameLocale: 1332, - description: 1068, + description: 1077, badge: getImageW("Catalyst_Bakufu"), @@ -1808,18 +1808,18 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1398,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1410,"type":"intInput"}, - {"default":"Electro","name":"element","title":193,"type":"element8"}, + {"default":"Electro","name":"element","title":199,"type":"element8"}, ], }, "SapwoodBlade": { name: "SapwoodBlade", - nameLocale: 356, + nameLocale: 362, - description: 708, + description: 715, badge: getImageW("Sword_Arakalari"), @@ -1827,18 +1827,18 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1398,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1410,"type":"intInput"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":624,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":632,"type":"float"}, ], }, "Moonpiercer": { name: "Moonpiercer", - nameLocale: 1601, + nameLocale: 1617, - description: 709, + description: 716, badge: getImageW("Pole_Arakalari"), @@ -1846,16 +1846,16 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1398,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1410,"type":"intInput"}, ], }, "XiphosMoonlight": { name: "XiphosMoonlight", - nameLocale: 1552, + nameLocale: 1567, - description: 1546, + description: 1561, badge: getImageW("Sword_Pleroma"), @@ -1863,18 +1863,18 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1398,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1410,"type":"intInput"}, - {"default":900.0,"name":"em","title":233,"type":"floatInput"}, + {"default":900.0,"name":"em","title":238,"type":"floatInput"}, ], }, "MakhairaAquamarine": { name: "MakhairaAquamarine", - nameLocale: 1240, + nameLocale: 1251, - description: 33, + description: 36, badge: getImageW("Claymore_Pleroma"), @@ -1882,18 +1882,18 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1398,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1410,"type":"intInput"}, - {"default":900.0,"name":"em","title":233,"type":"floatInput"}, + {"default":900.0,"name":"em","title":238,"type":"floatInput"}, ], }, "KeyOfKhajNisut": { name: "KeyOfKhajNisut", - nameLocale: 446, + nameLocale: 452, - description: 588, + description: 595, badge: getImageW("Sword_Deshret"), @@ -1901,18 +1901,18 @@ export default { genre: "Weapon", config: [ - {"default":1,"max":5,"min":1,"name":"refine","title":1398,"type":"intInput"}, + {"default":1,"max":5,"min":1,"name":"refine","title":1410,"type":"intInput"}, - {"default":20000.0,"name":"hp","title":1272,"type":"floatInput"}, + {"default":20000.0,"name":"hp","title":1283,"type":"floatInput"}, ], }, "ResonancePyro2": { name: "ResonancePyro2", - nameLocale: 201, + nameLocale: 207, - description: 731, + description: 738, badge: ResonancePyro2_image, @@ -1925,9 +1925,9 @@ export default { "ResonanceCryo2": { name: "ResonanceCryo2", - nameLocale: 202, + nameLocale: 208, - description: 726, + description: 733, badge: ResonanceCryo2_image, @@ -1935,16 +1935,16 @@ export default { genre: "Resonance", config: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":624,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":632,"type":"float"}, ], }, "ResonanceGeo2": { name: "ResonanceGeo2", - nameLocale: 199, + nameLocale: 205, - description: 701, + description: 708, badge: ResonanceGeo2_image, @@ -1952,18 +1952,18 @@ export default { genre: "Resonance", config: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate1","title":753,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate1","title":760,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate2","title":755,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate2","title":761,"type":"float"}, ], }, "ResonanceHydro2": { name: "ResonanceHydro2", - nameLocale: 200, + nameLocale: 206, - description: 1173, + description: 1183, badge: ResonanceHydro2_image, @@ -1976,9 +1976,9 @@ export default { "ResonanceDendro2": { name: "ResonanceDendro2", - nameLocale: 203, + nameLocale: 209, - description: 234, + description: 240, badge: ResonanceDendro2_image, @@ -1986,18 +1986,18 @@ export default { genre: "Resonance", config: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate1","title":753,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate1","title":760,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"rate2","title":755,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate2","title":761,"type":"float"}, ], }, "Instructor4": { name: "Instructor4", - nameLocale: 762, + nameLocale: 769, - description: 1572, + description: 1587, badge: getImageA("UI_RelicIcon_10007_4"), @@ -2010,9 +2010,9 @@ export default { "NoblesseOblige4": { name: "NoblesseOblige4", - nameLocale: 823, + nameLocale: 830, - description: 797, + description: 804, badge: getImageA("UI_RelicIcon_15007_4"), @@ -2025,9 +2025,9 @@ export default { "ArchaicPetra4": { name: "ArchaicPetra4", - nameLocale: 654, + nameLocale: 661, - description: 1502, + description: 1517, badge: getImageA("UI_RelicIcon_15014_4"), @@ -2035,16 +2035,16 @@ export default { genre: "Artifact", config: [ - {"default":"Electro","name":"element","title":1413,"type":"element4"}, + {"default":"Electro","name":"element","title":1425,"type":"element4"}, ], }, "ViridescentVenerer4": { name: "ViridescentVenerer4", - nameLocale: 1433, + nameLocale: 1445, - description: 1060, + description: 1069, badge: getImageA("UI_RelicIcon_15002_4"), @@ -2052,16 +2052,16 @@ export default { genre: "Artifact", config: [ - {"default":"Electro","name":"element","title":675,"type":"element4"}, + {"default":"Electro","name":"element","title":682,"type":"element4"}, ], }, "TenacityOfTheMillelith4": { name: "TenacityOfTheMillelith4", - nameLocale: 339, + nameLocale: 345, - description: 209, + description: 215, badge: getImageA("UI_RelicIcon_15017_4"), @@ -2074,9 +2074,9 @@ export default { "DeepwoodMemories4": { name: "DeepwoodMemories4", - nameLocale: 1141, + nameLocale: 1151, - description: 215, + description: 221, 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":624,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":632,"type":"float"}, ], }, diff --git a/src/assets/_gen_character.js b/src/assets/_gen_character.js index 490cb7d6..10fd85d3 100644 --- a/src/assets/_gen_character.js +++ b/src/assets/_gen_character.js @@ -92,6 +92,10 @@ import Fischl_splash from "@image/characters/Fischl_splash" // import Freminet_avatar from "@image/characters/Freminet_avatar" import Freminet_splash from "@image/characters/Freminet_splash" +// import Furina_card from "@image/characters/Furina_card" +// import Furina_avatar from "@image/characters/Furina_avatar" +import Furina_splash from "@image/characters/Furina_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" @@ -306,7 +310,7 @@ export default { AetherAnemo: { name: "AetherAnemo", - nameLocale: 1384, + nameLocale: 1396, element: "Anemo", weapon: "Sword", star: 5, @@ -314,54 +318,54 @@ export default { // avatar: AetherAnemo_avatar, avatar: getName("PlayerBoy"), splash: AetherAnemo_splash, - skillName1: 865, - skillName2: 1830, - skillName3: 1829, + skillName1: 872, + skillName2: 1846, + skillName3: 1845, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 79 }, + { index: 2, text: 83 }, - { index: 3, text: 430 }, + { index: 3, text: 437 }, - { index: 4, text: 147 }, + { index: 4, text: 152 }, - { index: 5, text: 1692 }, + { index: 5, text: 1709 }, - { index: 6, text: 1698 }, + { index: 6, text: 1712 }, - { index: 7, text: 90 }, + { index: 7, text: 94 }, - { index: 8, text: 178 }, + { index: 8, text: 184 }, - { index: 9, text: 1867 }, + { index: 9, text: 1883 }, ], skillMap2: [ - { index: 10, text: 308 }, + { index: 10, text: 314 }, - { index: 11, text: 1013 }, + { index: 11, text: 1021 }, - { index: 12, text: 309 }, + { index: 12, text: 315 }, - { index: 13, text: 1021 }, + { index: 13, text: 1030 }, ], skillMap3: [ - { index: 14, text: 1904 }, + { index: 14, text: 1920 }, - { index: 15, text: 1774 }, + { index: 15, text: 1790 }, - { index: 18, text: 1773 }, + { index: 18, text: 1789 }, - { index: 17, text: 1775 }, + { index: 17, text: 1791 }, - { index: 16, text: 1772 }, + { index: 16, text: 1788 }, ], config: [ @@ -374,7 +378,7 @@ export default { Albedo: { name: "Albedo", - nameLocale: 1764, + nameLocale: 1780, element: "Geo", weapon: "Sword", star: 5, @@ -382,44 +386,44 @@ export default { // avatar: Albedo_avatar, avatar: getName("Albedo"), splash: Albedo_splash, - skillName1: 909, - skillName2: 307, - skillName3: 1590, + skillName1: 917, + skillName2: 313, + skillName3: 1605, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 79 }, + { index: 2, text: 83 }, - { index: 3, text: 430 }, + { index: 3, text: 437 }, - { index: 4, text: 147 }, + { index: 4, text: 152 }, - { index: 5, text: 1693 }, + { index: 5, text: 1708 }, - { index: 6, text: 1696 }, + { index: 6, text: 1711 }, - { index: 7, text: 90 }, + { index: 7, text: 94 }, - { index: 8, text: 178 }, + { index: 8, text: 184 }, - { index: 9, text: 1867 }, + { index: 9, text: 1883 }, ], skillMap2: [ - { index: 10, text: 683 }, + { index: 10, text: 690 }, - { index: 11, text: 311 }, + { index: 11, text: 317 }, ], skillMap3: [ - { index: 12, text: 1207 }, + { index: 12, text: 1219 }, - { index: 13, text: 1293 }, + { index: 13, text: 1305 }, ], config: [ @@ -432,7 +436,7 @@ export default { Alhaitham: { name: "Alhaitham", - nameLocale: 1454, + nameLocale: 1466, element: "Dendro", weapon: "Sword", star: 5, @@ -440,37 +444,37 @@ export default { // avatar: Alhaitham_avatar, avatar: getName("Alhatham"), splash: Alhaitham_splash, - skillName1: 884, - skillName2: 258, - skillName3: 1076, + skillName1: 891, + skillName2: 264, + skillName3: 1085, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 80 }, + { index: 2, text: 84 }, - { index: 3, text: 81 }, + { index: 3, text: 85 }, - { index: 4, text: 430 }, + { index: 4, text: 437 }, - { index: 5, text: 147 }, + { index: 5, text: 152 }, - { index: 6, text: 1693 }, + { index: 6, text: 1708 }, - { index: 7, text: 1696 }, + { index: 7, text: 1711 }, - { index: 8, text: 90 }, + { index: 8, text: 94 }, - { index: 9, text: 178 }, + { index: 9, text: 184 }, - { index: 10, text: 1867 }, + { index: 10, text: 1883 }, ], skillMap2: [ - { index: 11, text: 1385 }, + { index: 11, text: 1397 }, { index: 12, text: 2 }, @@ -481,28 +485,28 @@ export default { ], skillMap3: [ - { index: 15, text: 347 }, + { index: 15, text: 354 }, ], config: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"c2_stack","title":414,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"c2_stack","title":420,"type":"float"}, - {"default":0.0,"max":3.0,"min":0.0,"name":"c4_stack","title":416,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"c4_stack","title":422,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"c6_rate","title":420,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"c6_rate","title":426,"type":"float"}, ], configSkill: [ - {"default":true,"name":"under_e","title":1256,"type":"bool"}, + {"default":true,"name":"under_e","title":1267,"type":"bool"}, ], }, Aloy: { name: "Aloy", - nameLocale: 458, + nameLocale: 464, element: "Cryo", weapon: "Bow", star: 5, @@ -510,42 +514,42 @@ export default { // avatar: Aloy_avatar, avatar: getName("Aloy"), splash: Aloy_splash, - skillName1: 871, - skillName2: 272, - skillName3: 1007, + skillName1: 878, + skillName2: 278, + skillName3: 1015, skillMap1: [ - { index: 0, text: 57 }, + { index: 0, text: 60 }, - { index: 1, text: 58 }, + { index: 1, text: 61 }, - { index: 2, text: 128 }, + { index: 2, text: 133 }, - { index: 3, text: 79 }, + { index: 3, text: 83 }, - { index: 4, text: 430 }, + { index: 4, text: 437 }, - { index: 5, text: 1329 }, + { index: 5, text: 1341 }, - { index: 6, text: 1165 }, + { index: 6, text: 1175 }, - { index: 7, text: 90 }, + { index: 7, text: 94 }, - { index: 8, text: 178 }, + { index: 8, text: 184 }, - { index: 9, text: 1867 }, + { index: 9, text: 1883 }, ], skillMap2: [ - { index: 10, text: 271 }, + { index: 10, text: 277 }, - { index: 11, text: 283 }, + { index: 11, text: 289 }, ], skillMap3: [ - { index: 12, text: 683 }, + { index: 12, text: 690 }, ], config: [ @@ -553,14 +557,14 @@ export default { ], configSkill: [ - {"default":4,"max":4,"min":0,"name":"coil_count","title":1406,"type":"int"}, + {"default":4,"max":4,"min":0,"name":"coil_count","title":1418,"type":"int"}, ], }, Amber: { name: "Amber", - nameLocale: 556, + nameLocale: 563, element: "Pyro", weapon: "Bow", star: 4, @@ -568,42 +572,42 @@ export default { // avatar: Amber_avatar, avatar: getName("Ambor"), splash: Amber_splash, - skillName1: 897, - skillName2: 1209, - skillName3: 1391, + skillName1: 905, + skillName2: 1220, + skillName3: 1403, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 79 }, + { index: 2, text: 83 }, - { index: 3, text: 430 }, + { index: 3, text: 437 }, - { index: 4, text: 147 }, + { index: 4, text: 152 }, - { index: 5, text: 1329 }, + { index: 5, text: 1341 }, - { index: 6, text: 1165 }, + { index: 6, text: 1175 }, - { index: 7, text: 90 }, + { index: 7, text: 94 }, - { index: 8, text: 178 }, + { index: 8, text: 184 }, - { index: 9, text: 1867 }, + { index: 9, text: 1883 }, ], skillMap2: [ - { index: 10, text: 1211 }, + { index: 10, text: 1222 }, ], skillMap3: [ - { index: 11, text: 1392 }, + { index: 11, text: 1404 }, - { index: 12, text: 1393 }, + { index: 12, text: 1405 }, ], config: [ @@ -616,7 +620,7 @@ export default { AratakiItto: { name: "AratakiItto", - nameLocale: 1470, + nameLocale: 1485, element: "Geo", weapon: "Claymore", star: 5, @@ -624,35 +628,35 @@ export default { // avatar: AratakiItto_avatar, avatar: getName("Itto"), splash: AratakiItto_splash, - skillName1: 920, - skillName2: 1877, - skillName3: 1026, + skillName1: 928, + skillName2: 1893, + skillName3: 1035, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 79 }, + { index: 2, text: 83 }, - { index: 3, text: 430 }, + { index: 3, text: 437 }, - { index: 4, text: 1476 }, + { index: 4, text: 1491 }, - { index: 5, text: 1475 }, + { index: 5, text: 1490 }, - { index: 6, text: 604 }, + { index: 6, text: 611 }, - { index: 7, text: 90 }, + { index: 7, text: 94 }, - { index: 8, text: 178 }, + { index: 8, text: 184 }, - { index: 9, text: 1867 }, + { index: 9, text: 1883 }, ], skillMap2: [ - { index: 10, text: 683 }, + { index: 10, text: 690 }, ], skillMap3: [ @@ -663,14 +667,14 @@ export default { ], configSkill: [ - {"default":true,"name":"after_q","title":468,"type":"bool"}, + {"default":true,"name":"after_q","title":474,"type":"bool"}, ], }, Baizhu: { name: "Baizhu", - nameLocale: 1312, + nameLocale: 1324, element: "Dendro", weapon: "Catalyst", star: 5, @@ -678,47 +682,47 @@ export default { // avatar: Baizhu_avatar, avatar: getName("Baizhuer"), splash: Baizhu_splash, - skillName1: 916, - skillName2: 525, - skillName3: 657, + skillName1: 924, + skillName2: 531, + skillName3: 664, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 80 }, + { index: 2, text: 84 }, - { index: 3, text: 81 }, + { index: 3, text: 85 }, - { index: 4, text: 430 }, + { index: 4, text: 437 }, - { index: 5, text: 1690 }, + { index: 5, text: 1706 }, - { index: 6, text: 90 }, + { index: 6, text: 94 }, - { index: 7, text: 178 }, + { index: 7, text: 184 }, - { index: 8, text: 1867 }, + { index: 8, text: 1883 }, ], skillMap2: [ - { index: 9, text: 683 }, + { index: 9, text: 690 }, - { index: 10, text: 1107 }, + { index: 10, text: 1115 }, ], skillMap3: [ - { index: 12, text: 1182 }, + { index: 12, text: 1193 }, - { index: 11, text: 817 }, + { index: 11, text: 824 }, ], config: [ - {"default":false,"name":"hp_below_50","title":448,"type":"bool"}, + {"default":false,"name":"hp_below_50","title":454,"type":"bool"}, ], configSkill: [ @@ -728,7 +732,7 @@ export default { Barbara: { name: "Barbara", - nameLocale: 1456, + nameLocale: 1470, element: "Hydro", weapon: "Catalyst", star: 4, @@ -736,40 +740,40 @@ export default { // avatar: Barbara_avatar, avatar: getName("Barbara"), splash: Barbara_splash, - skillName1: 879, - skillName2: 1166, - skillName3: 1734, + skillName1: 886, + skillName2: 1176, + skillName3: 1750, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 79 }, + { index: 2, text: 83 }, - { index: 3, text: 430 }, + { index: 3, text: 437 }, - { index: 4, text: 1690 }, + { index: 4, text: 1706 }, - { index: 5, text: 90 }, + { index: 5, text: 94 }, - { index: 6, text: 178 }, + { index: 6, text: 184 }, - { index: 7, text: 1867 }, + { index: 7, text: 1883 }, ], skillMap2: [ - { index: 8, text: 409 }, + { index: 8, text: 414 }, - { index: 10, text: 713 }, + { index: 10, text: 720 }, - { index: 9, text: 1092 }, + { index: 9, text: 1101 }, ], skillMap3: [ - { index: 11, text: 1106 }, + { index: 11, text: 1116 }, ], config: [ @@ -782,7 +786,7 @@ export default { Beidou: { name: "Beidou", - nameLocale: 329, + nameLocale: 335, element: "Electro", weapon: "Claymore", star: 4, @@ -790,46 +794,46 @@ export default { // avatar: Beidou_avatar, avatar: getName("Beidou"), splash: Beidou_splash, - skillName1: 868, - skillName2: 719, - skillName3: 771, + skillName1: 875, + skillName2: 726, + skillName3: 778, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 79 }, + { index: 2, text: 83 }, - { index: 3, text: 430 }, + { index: 3, text: 437 }, - { index: 4, text: 147 }, + { index: 4, text: 152 }, - { index: 5, text: 1705 }, + { index: 5, text: 1721 }, - { index: 6, text: 1708 }, + { index: 6, text: 1724 }, - { index: 7, text: 90 }, + { index: 7, text: 94 }, - { index: 8, text: 178 }, + { index: 8, text: 184 }, - { index: 9, text: 1867 }, + { index: 9, text: 1883 }, ], skillMap2: [ - { index: 10, text: 465 }, + { index: 10, text: 471 }, - { index: 11, text: 53 }, + { index: 11, text: 56 }, - { index: 12, text: 125 }, + { index: 12, text: 130 }, ], skillMap3: [ - { index: 13, text: 683 }, + { index: 13, text: 690 }, - { index: 14, text: 1733 }, + { index: 14, text: 1749 }, ], config: [ @@ -842,7 +846,7 @@ export default { Bennett: { name: "Bennett", - nameLocale: 1246, + nameLocale: 1257, element: "Pyro", weapon: "Sword", star: 4, @@ -850,52 +854,52 @@ export default { // avatar: Bennett_avatar, avatar: getName("Bennett"), splash: Bennett_splash, - skillName1: 861, - skillName2: 1199, - skillName3: 1430, + skillName1: 868, + skillName2: 1210, + skillName3: 1442, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 79 }, + { index: 2, text: 83 }, - { index: 3, text: 430 }, + { index: 3, text: 437 }, - { index: 4, text: 147 }, + { index: 4, text: 152 }, - { index: 5, text: 1693 }, + { index: 5, text: 1708 }, - { index: 6, text: 1696 }, + { index: 6, text: 1711 }, - { index: 7, text: 90 }, + { index: 7, text: 94 }, - { index: 8, text: 178 }, + { index: 8, text: 184 }, - { index: 9, text: 1867 }, + { index: 9, text: 1883 }, ], skillMap2: [ - { index: 10, text: 1186 }, + { index: 10, text: 1197 }, - { index: 11, text: 64 }, + { index: 11, text: 67 }, - { index: 12, text: 65 }, + { index: 12, text: 68 }, - { index: 13, text: 135 }, + { index: 13, text: 140 }, - { index: 14, text: 136 }, + { index: 14, text: 141 }, - { index: 15, text: 1210 }, + { index: 15, text: 1221 }, ], skillMap3: [ - { index: 16, text: 683 }, + { index: 16, text: 690 }, - { index: 17, text: 712 }, + { index: 17, text: 718 }, ], config: [ @@ -908,7 +912,7 @@ export default { Candace: { name: "Candace", - nameLocale: 449, + nameLocale: 455, element: "Hydro", weapon: "Polearm", star: 4, @@ -916,59 +920,59 @@ export default { // avatar: Candace_avatar, avatar: getName("Candace"), splash: Candace_splash, - skillName1: 882, - skillName2: 444, - skillName3: 442, + skillName1: 889, + skillName2: 450, + skillName3: 448, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 80 }, + { index: 2, text: 84 }, - { index: 3, text: 81 }, + { index: 3, text: 85 }, - { index: 4, text: 430 }, + { index: 4, text: 437 }, - { index: 5, text: 1690 }, + { index: 5, text: 1706 }, - { index: 6, text: 90 }, + { index: 6, text: 94 }, - { index: 7, text: 178 }, + { index: 7, text: 184 }, - { index: 8, text: 1867 }, + { index: 8, text: 1883 }, ], skillMap2: [ - { index: 9, text: 466 }, + { index: 9, text: 472 }, - { index: 10, text: 1514 }, + { index: 10, text: 1529 }, ], skillMap3: [ - { index: 11, text: 683 }, + { index: 11, text: 690 }, - { index: 12, text: 1090 }, + { index: 12, text: 1099 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"c2_rate","title":413,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"c2_rate","title":419,"type":"float"}, ], configSkill: [ - {"default":true,"name":"crown","title":1611,"type":"bool"}, + {"default":true,"name":"crown","title":1627,"type":"bool"}, ], }, Charlotte: { name: "Charlotte", - nameLocale: 476, + nameLocale: 482, element: "Cryo", weapon: "Catalyst", star: 4, @@ -976,55 +980,55 @@ export default { // avatar: Charlotte_avatar, avatar: getName("Charlotte"), splash: Charlotte_splash, - skillName1: 856, - skillName2: 359, - skillName3: 569, + skillName1: 863, + skillName2: 365, + skillName3: 576, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 79 }, + { index: 2, text: 83 }, - { index: 3, text: 1690 }, + { index: 3, text: 1706 }, - { index: 4, text: 90 }, + { index: 4, text: 94 }, - { index: 5, text: 178 }, + { index: 5, text: 184 }, - { index: 6, text: 1867 }, + { index: 6, text: 1883 }, ], skillMap2: [ - { index: 7, text: 1190 }, + { index: 7, text: 1201 }, - { index: 8, text: 1732 }, + { index: 8, text: 1748 }, - { index: 9, text: 41 }, + { index: 9, text: 44 }, - { index: 10, text: 45 }, + { index: 10, text: 48 }, ], skillMap3: [ - { index: 11, text: 683 }, + { index: 11, text: 690 }, - { index: 13, text: 1324 }, + { index: 13, text: 1336 }, - { index: 12, text: 803 }, + { index: 12, text: 810 }, - { index: 14, text: 1325 }, + { index: 14, text: 1337 }, ], config: [ - {"default":1,"max":3,"min":0,"name":"talent2_fontaine_count","title":1045,"type":"int"}, + {"default":1,"max":3,"min":0,"name":"talent2_fontaine_count","title":1054,"type":"int"}, - {"default":1,"max":3,"min":0,"name":"talent2_non_fontaine_count","title":1818,"type":"int"}, + {"default":1,"max":3,"min":0,"name":"talent2_non_fontaine_count","title":1834,"type":"int"}, - {"default":0,"max":3,"min":0,"name":"c2_count","title":36,"type":"int"}, + {"default":0,"max":3,"min":0,"name":"c2_count","title":39,"type":"int"}, {"default":1.0,"max":1.0,"min":0.0,"name":"c2_rate","title":10,"type":"float"}, @@ -1036,7 +1040,7 @@ export default { Chongyun: { name: "Chongyun", - nameLocale: 1680, + nameLocale: 1696, element: "Cryo", weapon: "Claymore", star: 4, @@ -1044,38 +1048,38 @@ export default { // avatar: Chongyun_avatar, avatar: getName("Chongyun"), splash: Chongyun_splash, - skillName1: 887, - skillName2: 1180, - skillName3: 1179, + skillName1: 894, + skillName2: 1190, + skillName3: 1189, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 79 }, + { index: 2, text: 83 }, - { index: 3, text: 430 }, + { index: 3, text: 437 }, - { index: 4, text: 1705 }, + { index: 4, text: 1721 }, - { index: 5, text: 1708 }, + { index: 5, text: 1724 }, - { index: 6, text: 90 }, + { index: 6, text: 94 }, - { index: 7, text: 178 }, + { index: 7, text: 184 }, - { index: 8, text: 1867 }, + { index: 8, text: 1883 }, ], skillMap2: [ - { index: 9, text: 683 }, + { index: 9, text: 690 }, ], skillMap3: [ - { index: 10, text: 683 }, + { index: 10, text: 690 }, ], config: [ @@ -1088,7 +1092,7 @@ export default { Collei: { name: "Collei", - nameLocale: 1058, + nameLocale: 1067, element: "Dendro", weapon: "Bow", star: 4, @@ -1096,45 +1100,45 @@ export default { // avatar: Collei_avatar, avatar: getName("Collei"), splash: Collei_splash, - skillName1: 895, - skillName2: 706, - skillName3: 1233, + skillName1: 903, + skillName2: 713, + skillName3: 1244, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 79 }, + { index: 2, text: 83 }, - { index: 3, text: 430 }, + { index: 3, text: 437 }, - { index: 4, text: 1329 }, + { index: 4, text: 1341 }, - { index: 5, text: 1165 }, + { index: 5, text: 1175 }, - { index: 6, text: 90 }, + { index: 6, text: 94 }, - { index: 7, text: 178 }, + { index: 7, text: 184 }, - { index: 8, text: 1867 }, + { index: 8, text: 1883 }, ], skillMap2: [ - { index: 9, text: 683 }, + { index: 9, text: 690 }, ], skillMap3: [ - { index: 10, text: 1208 }, + { index: 10, text: 1218 }, - { index: 11, text: 1624 }, + { index: 11, text: 1640 }, ], config: [ - {"default":false,"name":"background","title":470,"type":"bool"}, + {"default":false,"name":"background","title":476,"type":"bool"}, ], configSkill: [ @@ -1144,7 +1148,7 @@ export default { Cyno: { name: "Cyno", - nameLocale: 1609, + nameLocale: 1625, element: "Electro", weapon: "Polearm", star: 5, @@ -1152,53 +1156,53 @@ export default { // avatar: Cyno_avatar, avatar: getName("Cyno"), splash: Cyno_splash, - skillName1: 851, - skillName2: 1381, - skillName3: 443, + skillName1: 858, + skillName2: 1393, + skillName3: 449, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 82 }, + { index: 2, text: 87 }, - { index: 3, text: 430 }, + { index: 3, text: 437 }, - { index: 4, text: 1690 }, + { index: 4, text: 1706 }, - { index: 5, text: 90 }, + { index: 5, text: 94 }, - { index: 6, text: 178 }, + { index: 6, text: 184 }, - { index: 7, text: 1867 }, + { index: 7, text: 1883 }, - { index: 11, text: 392 }, + { index: 11, text: 398 }, - { index: 12, text: 395 }, + { index: 12, text: 401 }, - { index: 13, text: 393 }, + { index: 13, text: 399 }, - { index: 14, text: 399 }, + { index: 14, text: 405 }, - { index: 15, text: 396 }, + { index: 15, text: 402 }, - { index: 16, text: 401 }, + { index: 16, text: 407 }, - { index: 17, text: 394 }, + { index: 17, text: 400 }, - { index: 18, text: 397 }, + { index: 18, text: 403 }, - { index: 19, text: 402 }, + { index: 19, text: 408 }, ], skillMap2: [ - { index: 8, text: 683 }, + { index: 8, text: 690 }, - { index: 9, text: 398 }, + { index: 9, text: 404 }, - { index: 10, text: 400 }, + { index: 10, text: 406 }, ], skillMap3: [ @@ -1206,21 +1210,21 @@ export default { ], config: [ - {"default":4.0,"max":5.0,"min":0.0,"name":"c2_stack","title":411,"type":"float"}, + {"default":4.0,"max":5.0,"min":0.0,"name":"c2_stack","title":417,"type":"float"}, - {"default":true,"name":"after_q","title":391,"type":"bool"}, + {"default":true,"name":"after_q","title":397,"type":"bool"}, ], configSkill: [ - {"default":true,"name":"under_judication","title":1570,"type":"bool"}, + {"default":true,"name":"under_judication","title":1585,"type":"bool"}, ], }, Dehya: { name: "Dehya", - nameLocale: 1656, + nameLocale: 1672, element: "Pyro", weapon: "Claymore", star: 5, @@ -1228,44 +1232,44 @@ export default { // avatar: Dehya_avatar, avatar: getName("Dehya"), splash: Dehya_splash, - skillName1: 874, - skillName2: 1205, - skillName3: 1184, + skillName1: 881, + skillName2: 1216, + skillName3: 1195, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 79 }, + { index: 2, text: 83 }, - { index: 3, text: 430 }, + { index: 3, text: 437 }, - { index: 4, text: 1705 }, + { index: 4, text: 1721 }, - { index: 5, text: 1708 }, + { index: 5, text: 1724 }, - { index: 6, text: 90 }, + { index: 6, text: 94 }, - { index: 7, text: 178 }, + { index: 7, text: 184 }, - { index: 8, text: 1867 }, + { index: 8, text: 1883 }, ], skillMap2: [ - { index: 9, text: 285 }, + { index: 9, text: 291 }, - { index: 10, text: 314 }, + { index: 10, text: 320 }, - { index: 11, text: 1819 }, + { index: 11, text: 1835 }, ], skillMap3: [ - { index: 12, text: 1193 }, + { index: 12, text: 1204 }, - { index: 13, text: 1200 }, + { index: 13, text: 1211 }, ], config: [ @@ -1273,16 +1277,16 @@ export default { ], configSkill: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"c2_rate","title":124,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"c2_rate","title":129,"type":"float"}, - {"default":3.5,"max":4.0,"min":0.0,"name":"c6_stack","title":253,"type":"float"}, + {"default":3.5,"max":4.0,"min":0.0,"name":"c6_stack","title":259,"type":"float"}, ], }, Diluc: { name: "Diluc", - nameLocale: 1650, + nameLocale: 1666, element: "Pyro", weapon: "Claymore", star: 5, @@ -1290,46 +1294,46 @@ export default { // avatar: Diluc_avatar, avatar: getName("Diluc"), splash: Diluc_splash, - skillName1: 883, - skillName2: 1663, - skillName3: 1894, + skillName1: 890, + skillName2: 1679, + skillName3: 1910, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 79 }, + { index: 2, text: 83 }, - { index: 3, text: 430 }, + { index: 3, text: 437 }, - { index: 4, text: 1705 }, + { index: 4, text: 1721 }, - { index: 5, text: 1708 }, + { index: 5, text: 1724 }, - { index: 6, text: 90 }, + { index: 6, text: 94 }, - { index: 7, text: 178 }, + { index: 7, text: 184 }, - { index: 8, text: 1867 }, + { index: 8, text: 1883 }, ], skillMap2: [ - { index: 9, text: 56 }, + { index: 9, text: 59 }, - { index: 10, text: 128 }, + { index: 10, text: 133 }, - { index: 11, text: 79 }, + { index: 11, text: 83 }, ], skillMap3: [ - { index: 12, text: 769 }, + { index: 12, text: 776 }, - { index: 13, text: 710 }, + { index: 13, text: 717 }, - { index: 14, text: 1212 }, + { index: 14, text: 1223 }, ], config: [ @@ -1337,14 +1341,14 @@ export default { ], configSkill: [ - {"default":true,"name":"pyro","title":838,"type":"bool"}, + {"default":true,"name":"pyro","title":845,"type":"bool"}, ], }, Diona: { name: "Diona", - nameLocale: 1652, + nameLocale: 1668, element: "Cryo", weapon: "Bow", star: 4, @@ -1352,44 +1356,44 @@ export default { // avatar: Diona_avatar, avatar: getName("Diona"), splash: Diona_splash, - skillName1: 892, - skillName2: 1232, - skillName3: 1027, + skillName1: 900, + skillName2: 1243, + skillName3: 1036, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 79 }, + { index: 2, text: 83 }, - { index: 3, text: 430 }, + { index: 3, text: 437 }, - { index: 4, text: 147 }, + { index: 4, text: 152 }, - { index: 5, text: 1329 }, + { index: 5, text: 1341 }, - { index: 6, text: 1165 }, + { index: 6, text: 1175 }, - { index: 7, text: 90 }, + { index: 7, text: 94 }, - { index: 8, text: 178 }, + { index: 8, text: 184 }, - { index: 9, text: 1867 }, + { index: 9, text: 1883 }, ], skillMap2: [ - { index: 10, text: 1231 }, + { index: 10, text: 1242 }, ], skillMap3: [ - { index: 11, text: 683 }, + { index: 11, text: 690 }, - { index: 12, text: 1821 }, + { index: 12, text: 1837 }, - { index: 13, text: 714 }, + { index: 13, text: 722 }, ], config: [ @@ -1402,7 +1406,7 @@ export default { Dori: { name: "Dori", - nameLocale: 482, + nameLocale: 488, element: "Electro", weapon: "Claymore", star: 4, @@ -1410,42 +1414,42 @@ export default { // avatar: Dori_avatar, avatar: getName("Dori"), splash: Dori_splash, - skillName1: 863, - skillName2: 1729, - skillName3: 352, + skillName1: 870, + skillName2: 1745, + skillName3: 358, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 129 }, + { index: 1, text: 134 }, - { index: 2, text: 130 }, + { index: 2, text: 135 }, - { index: 3, text: 79 }, + { index: 3, text: 83 }, - { index: 4, text: 1705 }, + { index: 4, text: 1721 }, - { index: 5, text: 1708 }, + { index: 5, text: 1724 }, - { index: 6, text: 90 }, + { index: 6, text: 94 }, - { index: 7, text: 178 }, + { index: 7, text: 184 }, - { index: 8, text: 1867 }, + { index: 8, text: 1883 }, ], skillMap2: [ - { index: 9, text: 777 }, + { index: 9, text: 784 }, - { index: 10, text: 424 }, + { index: 10, text: 430 }, ], skillMap3: [ - { index: 11, text: 1648 }, + { index: 11, text: 1664 }, - { index: 12, text: 715 }, + { index: 12, text: 721 }, ], config: [ @@ -1453,14 +1457,14 @@ export default { ], configSkill: [ - {"default":false,"name":"c6","title":37,"type":"bool"}, + {"default":false,"name":"c6","title":40,"type":"bool"}, ], }, Eula: { name: "Eula", - nameLocale: 171, + nameLocale: 177, element: "Cryo", weapon: "Claymore", star: 5, @@ -1468,52 +1472,52 @@ export default { // avatar: Eula_avatar, avatar: getName("Eula"), splash: Eula_splash, - skillName1: 908, - skillName2: 278, - skillName3: 293, + skillName1: 916, + skillName2: 284, + skillName3: 299, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 80 }, + { index: 2, text: 84 }, - { index: 3, text: 81 }, + { index: 3, text: 85 }, - { index: 4, text: 430 }, + { index: 4, text: 437 }, - { index: 5, text: 148 }, + { index: 5, text: 153 }, - { index: 6, text: 149 }, + { index: 6, text: 154 }, - { index: 7, text: 1705 }, + { index: 7, text: 1721 }, - { index: 8, text: 1708 }, + { index: 8, text: 1724 }, - { index: 9, text: 90 }, + { index: 9, text: 94 }, - { index: 10, text: 178 }, + { index: 10, text: 184 }, - { index: 11, text: 1867 }, + { index: 11, text: 1883 }, ], skillMap2: [ - { index: 12, text: 1186 }, + { index: 12, text: 1197 }, - { index: 13, text: 1730 }, + { index: 13, text: 1746 }, - { index: 14, text: 277 }, + { index: 14, text: 283 }, - { index: 15, text: 1077 }, + { index: 15, text: 1086 }, ], skillMap3: [ - { index: 16, text: 683 }, + { index: 16, text: 690 }, - { index: 17, text: 243 }, + { index: 17, text: 249 }, ], config: [ @@ -1521,14 +1525,14 @@ export default { ], configSkill: [ - {"default":0,"max":30,"min":0,"name":"lightfall_stack","title":244,"type":"int"}, + {"default":0,"max":30,"min":0,"name":"lightfall_stack","title":250,"type":"int"}, ], }, Faruzan: { name: "Faruzan", - nameLocale: 1243, + nameLocale: 1254, element: "Anemo", weapon: "Bow", star: 4, @@ -1536,57 +1540,57 @@ export default { // avatar: Faruzan_avatar, avatar: getName("Faruzan"), splash: Faruzan_splash, - skillName1: 915, - skillName2: 1817, - skillName3: 698, + skillName1: 923, + skillName2: 1833, + skillName3: 705, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 79 }, + { index: 2, text: 83 }, - { index: 3, text: 430 }, + { index: 3, text: 437 }, - { index: 4, text: 1690 }, + { index: 4, text: 1706 }, - { index: 4, text: 1165 }, + { index: 4, text: 1175 }, - { index: 6, text: 90 }, + { index: 6, text: 94 }, - { index: 7, text: 178 }, + { index: 7, text: 184 }, - { index: 8, text: 1867 }, + { index: 8, text: 1883 }, ], skillMap2: [ - { index: 9, text: 683 }, + { index: 9, text: 690 }, - { index: 10, text: 1828 }, + { index: 10, text: 1844 }, ], skillMap3: [ - { index: 11, text: 683 }, + { index: 11, text: 690 }, ], config: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"q_ratio","title":43,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"q_ratio","title":45,"type":"float"}, ], configSkill: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"talent2_ratio","title":38,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"talent2_ratio","title":41,"type":"float"}, ], }, Fischl: { name: "Fischl", - nameLocale: 1506, + nameLocale: 1521, element: "Electro", weapon: "Bow", star: 4, @@ -1594,42 +1598,42 @@ export default { // avatar: Fischl_avatar, avatar: getName("Fischl"), splash: Fischl_splash, - skillName1: 902, - skillName2: 491, - skillName3: 1452, + skillName1: 910, + skillName2: 497, + skillName3: 1464, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 79 }, + { index: 2, text: 83 }, - { index: 3, text: 430 }, + { index: 3, text: 437 }, - { index: 4, text: 147 }, + { index: 4, text: 152 }, - { index: 5, text: 1329 }, + { index: 5, text: 1341 }, - { index: 6, text: 1165 }, + { index: 6, text: 1175 }, - { index: 7, text: 90 }, + { index: 7, text: 94 }, - { index: 8, text: 178 }, + { index: 8, text: 184 }, - { index: 9, text: 1867 }, + { index: 9, text: 1883 }, ], skillMap2: [ - { index: 10, text: 534 }, + { index: 10, text: 540 }, - { index: 11, text: 378 }, + { index: 11, text: 384 }, ], skillMap3: [ - { index: 12, text: 1510 }, + { index: 12, text: 1525 }, ], config: [ @@ -1642,7 +1646,7 @@ export default { Freminet: { name: "Freminet", - nameLocale: 1504, + nameLocale: 1519, element: "Cryo", weapon: "Claymore", star: 4, @@ -1650,79 +1654,147 @@ export default { // avatar: Freminet_avatar, avatar: getName("Freminet"), splash: Freminet_splash, - skillName1: 880, - skillName2: 1130, - skillName3: 1230, + skillName1: 887, + skillName2: 1139, + skillName3: 1241, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 79 }, + { index: 2, text: 83 }, - { index: 3, text: 430 }, + { index: 3, text: 437 }, - { index: 4, text: 1705 }, + { index: 4, text: 1721 }, - { index: 5, text: 1708 }, + { index: 5, text: 1724 }, - { index: 6, text: 90 }, + { index: 6, text: 94 }, - { index: 7, text: 178 }, + { index: 7, text: 184 }, - { index: 8, text: 1867 }, + { index: 8, text: 1883 }, ], skillMap2: [ - { index: 9, text: 89 }, + { index: 9, text: 93 }, - { index: 10, text: 1810 }, + { index: 10, text: 1826 }, - { index: 11, text: 1783 }, + { index: 11, text: 1799 }, - { index: 12, text: 68 }, + { index: 12, text: 71 }, - { index: 13, text: 69 }, + { index: 13, text: 72 }, - { index: 14, text: 137 }, + { index: 14, text: 142 }, - { index: 15, text: 138 }, + { index: 15, text: 143 }, - { index: 16, text: 87 }, + { index: 16, text: 91 }, - { index: 17, text: 88 }, + { index: 17, text: 92 }, - { index: 18, text: 438 }, + { index: 18, text: 444 }, - { index: 19, text: 1181 }, + { index: 19, text: 1192 }, - { index: 21, text: 1811 }, + { index: 21, text: 1827 }, ], skillMap3: [ - { index: 20, text: 683 }, + { index: 20, text: 690 }, ], config: [ - {"default":0.0,"max":2.0,"min":0.0,"name":"c4_stack","title":418,"type":"float"}, + {"default":0.0,"max":2.0,"min":0.0,"name":"c4_stack","title":424,"type":"float"}, + + {"default":0.0,"max":3.0,"min":0.0,"name":"c6_stack","title":425,"type":"float"}, + + ], + configSkill: [ + + {"default":1.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":524,"type":"float"}, + + ], + }, + + Furina: { + name: "Furina", + nameLocale: 1468, + element: "Hydro", + weapon: "Sword", + star: 5, + // card: Furina_card, + // avatar: Furina_avatar, + avatar: getName("Furina"), + splash: Furina_splash, + skillName1: 899, + skillName2: 548, + skillName3: 77, + skillMap1: [ + + { index: 0, text: 59 }, + + { index: 1, text: 133 }, + + { index: 2, text: 83 }, + + { index: 3, text: 437 }, + + { index: 4, text: 1706 }, + + { index: 5, text: 94 }, - {"default":0.0,"max":3.0,"min":0.0,"name":"c6_stack","title":419,"type":"float"}, + { index: 6, text: 184 }, + + { index: 7, text: 1883 }, + + { index: 8, text: 1191 }, + + ], + skillMap2: [ + + { index: 9, text: 1484 }, + + { index: 10, text: 113 }, + + { index: 11, text: 1148 }, + + { index: 12, text: 1613 }, + + { index: 13, text: 174 }, + + ], + skillMap3: [ + + { index: 14, text: 690 }, + + ], + config: [ + + {"default":0.0,"max":400.0,"min":0.0,"name":"c2_overflow","title":34,"type":"float"}, ], configSkill: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":518,"type":"float"}, + {"default":3,"max":4,"min":0,"name":"hp_above50_count","title":1302,"type":"int"}, + + {"default":false,"name":"c6_after_e","title":23,"type":"bool"}, + + {"default":false,"name":"c6_pneuma","title":11,"type":"bool"}, ], }, Ganyu: { name: "Ganyu", - nameLocale: 1266, + nameLocale: 1277, element: "Cryo", weapon: "Bow", star: 5, @@ -1730,63 +1802,63 @@ export default { // avatar: Ganyu_avatar, avatar: getName("Ganyu"), splash: Ganyu_splash, - skillName1: 881, - skillName2: 596, - skillName3: 1777, + skillName1: 888, + skillName2: 603, + skillName3: 1793, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 79 }, + { index: 2, text: 83 }, - { index: 3, text: 430 }, + { index: 3, text: 437 }, - { index: 4, text: 147 }, + { index: 4, text: 152 }, - { index: 5, text: 255 }, + { index: 5, text: 261 }, - { index: 6, text: 1329 }, + { index: 6, text: 1341 }, - { index: 7, text: 66 }, + { index: 7, text: 69 }, - { index: 8, text: 1809 }, + { index: 8, text: 1825 }, - { index: 9, text: 1808 }, + { index: 9, text: 1824 }, - { index: 10, text: 90 }, + { index: 10, text: 94 }, - { index: 11, text: 178 }, + { index: 11, text: 184 }, - { index: 12, text: 1867 }, + { index: 12, text: 1883 }, ], skillMap2: [ - { index: 13, text: 683 }, + { index: 13, text: 690 }, ], skillMap3: [ - { index: 14, text: 276 }, + { index: 14, text: 282 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":512,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":518,"type":"float"}, ], configSkill: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"talent1_rate","title":510,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent1_rate","title":516,"type":"float"}, ], }, Gorou: { name: "Gorou", - nameLocale: 152, + nameLocale: 157, element: "Geo", weapon: "Bow", star: 4, @@ -1794,40 +1866,40 @@ export default { // avatar: Gorou_avatar, avatar: getName("Gorou"), splash: Gorou_splash, - skillName1: 919, - skillName2: 1215, - skillName3: 261, + skillName1: 927, + skillName2: 1226, + skillName3: 267, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 79 }, + { index: 2, text: 83 }, - { index: 3, text: 430 }, + { index: 3, text: 437 }, - { index: 4, text: 1329 }, + { index: 4, text: 1341 }, - { index: 5, text: 1165 }, + { index: 5, text: 1175 }, - { index: 6, text: 90 }, + { index: 6, text: 94 }, - { index: 7, text: 178 }, + { index: 7, text: 184 }, - { index: 8, text: 1867 }, + { index: 8, text: 1883 }, ], skillMap2: [ - { index: 9, text: 683 }, + { index: 9, text: 690 }, ], skillMap3: [ - { index: 10, text: 683 }, + { index: 10, text: 690 }, - { index: 11, text: 599 }, + { index: 11, text: 606 }, ], config: [ @@ -1840,7 +1912,7 @@ export default { HuTao: { name: "HuTao", - nameLocale: 1447, + nameLocale: 1459, element: "Pyro", weapon: "Polearm", star: 5, @@ -1848,61 +1920,61 @@ export default { // avatar: HuTao_avatar, avatar: getName("Hutao"), splash: HuTao_splash, - skillName1: 867, - skillName2: 1520, - skillName3: 558, + skillName1: 874, + skillName2: 1535, + skillName3: 565, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 79 }, + { index: 2, text: 83 }, - { index: 3, text: 430 }, + { index: 3, text: 437 }, - { index: 4, text: 148 }, + { index: 4, text: 153 }, - { index: 5, text: 149 }, + { index: 5, text: 154 }, - { index: 6, text: 255 }, + { index: 6, text: 261 }, - { index: 7, text: 1690 }, + { index: 7, text: 1706 }, - { index: 8, text: 90 }, + { index: 8, text: 94 }, - { index: 9, text: 178 }, + { index: 9, text: 184 }, - { index: 10, text: 1867 }, + { index: 10, text: 1883 }, ], skillMap2: [ - { index: 11, text: 1523 }, + { index: 11, text: 1538 }, ], skillMap3: [ - { index: 12, text: 683 }, + { index: 12, text: 690 }, - { index: 13, text: 179 }, + { index: 13, text: 185 }, ], config: [ - {"default":true,"name":"le_50","title":1278,"type":"bool"}, + {"default":true,"name":"le_50","title":1289,"type":"bool"}, ], configSkill: [ - {"default":true,"name":"after_e","title":643,"type":"bool"}, + {"default":true,"name":"after_e","title":650,"type":"bool"}, ], }, Jean: { name: "Jean", - nameLocale: 1259, + nameLocale: 1270, element: "Anemo", weapon: "Sword", star: 5, @@ -1910,44 +1982,44 @@ export default { // avatar: Jean_avatar, avatar: getName("Qin"), splash: Jean_splash, - skillName1: 906, - skillName2: 1827, - skillName3: 1512, + skillName1: 914, + skillName2: 1843, + skillName3: 1527, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 79 }, + { index: 2, text: 83 }, - { index: 3, text: 430 }, + { index: 3, text: 437 }, - { index: 4, text: 147 }, + { index: 4, text: 152 }, - { index: 5, text: 1690 }, + { index: 5, text: 1706 }, - { index: 6, text: 90 }, + { index: 6, text: 94 }, - { index: 7, text: 178 }, + { index: 7, text: 184 }, - { index: 8, text: 1867 }, + { index: 8, text: 1883 }, ], skillMap2: [ - { index: 9, text: 683 }, + { index: 9, text: 690 }, ], skillMap3: [ - { index: 10, text: 1207 }, + { index: 10, text: 1219 }, - { index: 11, text: 298 }, + { index: 11, text: 304 }, - { index: 12, text: 1820 }, + { index: 12, text: 1836 }, - { index: 13, text: 711 }, + { index: 13, text: 719 }, ], config: [ @@ -1960,7 +2032,7 @@ export default { KaedeharaKazuha: { name: "KaedeharaKazuha", - nameLocale: 1046, + nameLocale: 1055, element: "Anemo", weapon: "Sword", star: 5, @@ -1968,68 +2040,68 @@ export default { // avatar: KaedeharaKazuha_avatar, avatar: getName("Kazuha"), splash: KaedeharaKazuha_splash, - skillName1: 872, - skillName2: 342, - skillName3: 74, + skillName1: 879, + skillName2: 348, + skillName3: 78, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 80 }, + { index: 2, text: 84 }, - { index: 3, text: 81 }, + { index: 3, text: 85 }, - { index: 4, text: 430 }, + { index: 4, text: 437 }, - { index: 5, text: 150 }, + { index: 5, text: 155 }, - { index: 6, text: 1691 }, + { index: 6, text: 1707 }, - { index: 6, text: 1697 }, + { index: 6, text: 1714 }, - { index: 8, text: 90 }, + { index: 8, text: 94 }, - { index: 9, text: 178 }, + { index: 9, text: 184 }, - { index: 10, text: 1867 }, + { index: 10, text: 1883 }, ], skillMap2: [ - { index: 11, text: 117 }, + { index: 11, text: 122 }, - { index: 12, text: 118 }, + { index: 12, text: 123 }, - { index: 13, text: 123 }, + { index: 13, text: 128 }, - { index: 14, text: 121 }, + { index: 14, text: 126 }, - { index: 15, text: 120 }, + { index: 15, text: 125 }, - { index: 16, text: 119 }, + { index: 16, text: 124 }, - { index: 17, text: 122 }, + { index: 17, text: 127 }, - { index: 18, text: 1188 }, + { index: 18, text: 1198 }, - { index: 19, text: 1731 }, + { index: 19, text: 1747 }, ], skillMap3: [ - { index: 20, text: 769 }, + { index: 20, text: 776 }, - { index: 21, text: 710 }, + { index: 21, text: 717 }, - { index: 22, text: 1774 }, + { index: 22, text: 1790 }, - { index: 23, text: 1773 }, + { index: 23, text: 1789 }, - { index: 24, text: 1772 }, + { index: 24, text: 1788 }, - { index: 25, text: 1775 }, + { index: 25, text: 1791 }, ], config: [ @@ -2037,14 +2109,14 @@ export default { ], configSkill: [ - {"default":false,"name":"after_e_or_q","title":254,"type":"bool"}, + {"default":false,"name":"after_e_or_q","title":260,"type":"bool"}, ], }, Kaeya: { name: "Kaeya", - nameLocale: 296, + nameLocale: 302, element: "Cryo", weapon: "Sword", star: 4, @@ -2052,40 +2124,40 @@ export default { // avatar: Kaeya_avatar, avatar: getName("Kaeya"), splash: Kaeya_splash, - skillName1: 855, - skillName2: 1813, - skillName3: 288, + skillName1: 862, + skillName2: 1829, + skillName3: 294, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 79 }, + { index: 2, text: 83 }, - { index: 3, text: 430 }, + { index: 3, text: 437 }, - { index: 4, text: 147 }, + { index: 4, text: 152 }, - { index: 5, text: 1693 }, + { index: 5, text: 1708 }, - { index: 6, text: 1696 }, + { index: 6, text: 1711 }, - { index: 7, text: 90 }, + { index: 7, text: 94 }, - { index: 8, text: 178 }, + { index: 8, text: 184 }, - { index: 9, text: 1867 }, + { index: 9, text: 1883 }, ], skillMap2: [ - { index: 10, text: 683 }, + { index: 10, text: 690 }, ], skillMap3: [ - { index: 11, text: 683 }, + { index: 11, text: 690 }, ], config: [ @@ -2098,7 +2170,7 @@ export default { KamisatoAyaka: { name: "KamisatoAyaka", - nameLocale: 1363, + nameLocale: 1375, element: "Cryo", weapon: "Sword", star: 5, @@ -2106,61 +2178,61 @@ export default { // avatar: KamisatoAyaka_avatar, avatar: getName("Ayaka"), splash: KamisatoAyaka_splash, - skillName1: 898, - skillName2: 1353, - skillName3: 1356, + skillName1: 906, + skillName2: 1365, + skillName3: 1368, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 79 }, + { index: 2, text: 83 }, - { index: 3, text: 436 }, + { index: 3, text: 442 }, - { index: 5, text: 147 }, + { index: 5, text: 152 }, - { index: 6, text: 1700 }, + { index: 6, text: 1716 }, - { index: 8, text: 90 }, + { index: 8, text: 94 }, - { index: 9, text: 178 }, + { index: 9, text: 184 }, - { index: 10, text: 1867 }, + { index: 10, text: 1883 }, ], skillMap2: [ - { index: 11, text: 683 }, + { index: 11, text: 690 }, ], skillMap3: [ - { index: 12, text: 305 }, + { index: 12, text: 311 }, - { index: 13, text: 1419 }, + { index: 13, text: 1431 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"talent1_rate","title":513,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent1_rate","title":519,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":514,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":520,"type":"float"}, ], configSkill: [ - {"default":true,"name":"after_dash","title":1357,"type":"bool"}, + {"default":true,"name":"after_dash","title":1369,"type":"bool"}, - {"default":false,"name":"use_c6","title":251,"type":"bool"}, + {"default":false,"name":"use_c6","title":257,"type":"bool"}, ], }, KamisatoAyato: { name: "KamisatoAyato", - nameLocale: 1358, + nameLocale: 1370, element: "Hydro", weapon: "Sword", star: 5, @@ -2168,44 +2240,44 @@ export default { // avatar: KamisatoAyato_avatar, avatar: getName("Ayato"), splash: KamisatoAyato_splash, - skillName1: 899, - skillName2: 1355, - skillName3: 1354, + skillName1: 907, + skillName2: 1367, + skillName3: 1366, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 79 }, + { index: 2, text: 83 }, - { index: 3, text: 431 }, + { index: 3, text: 436 }, - { index: 4, text: 147 }, + { index: 4, text: 152 }, - { index: 5, text: 1690 }, + { index: 5, text: 1706 }, - { index: 6, text: 90 }, + { index: 6, text: 94 }, - { index: 7, text: 178 }, + { index: 7, text: 184 }, - { index: 8, text: 1867 }, + { index: 8, text: 1883 }, ], skillMap2: [ - { index: 9, text: 62 }, + { index: 9, text: 65 }, - { index: 10, text: 133 }, + { index: 10, text: 138 }, - { index: 11, text: 86 }, + { index: 11, text: 90 }, - { index: 12, text: 1088 }, + { index: 12, text: 1097 }, ], skillMap3: [ - { index: 13, text: 1093 }, + { index: 13, text: 1102 }, ], config: [ @@ -2213,16 +2285,16 @@ export default { ], configSkill: [ - {"default":4,"max":5,"min":0,"name":"e_stack","title":34,"type":"int"}, + {"default":4,"max":5,"min":0,"name":"e_stack","title":37,"type":"int"}, - {"default":true,"name":"in_q","title":469,"type":"bool"}, + {"default":true,"name":"in_q","title":475,"type":"bool"}, ], }, Kaveh: { name: "Kaveh", - nameLocale: 349, + nameLocale: 355, element: "Dendro", weapon: "Claymore", star: 4, @@ -2230,57 +2302,57 @@ export default { // avatar: Kaveh_avatar, avatar: getName("Kaveh"), splash: Kaveh_splash, - skillName1: 878, - skillName2: 1310, - skillName3: 1401, + skillName1: 885, + skillName2: 1322, + skillName3: 1413, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 79 }, + { index: 2, text: 83 }, - { index: 3, text: 430 }, + { index: 3, text: 437 }, - { index: 4, text: 1705 }, + { index: 4, text: 1721 }, - { index: 5, text: 1708 }, + { index: 5, text: 1724 }, - { index: 6, text: 90 }, + { index: 6, text: 94 }, - { index: 7, text: 178 }, + { index: 7, text: 184 }, - { index: 8, text: 1867 }, + { index: 8, text: 1883 }, ], skillMap2: [ - { index: 9, text: 683 }, + { index: 9, text: 690 }, ], skillMap3: [ - { index: 10, text: 683 }, + { index: 10, text: 690 }, ], config: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"talent2_stack","title":515,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"talent2_stack","title":521,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"c2_rate","title":415,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"c2_rate","title":421,"type":"float"}, ], configSkill: [ - {"default":false,"name":"after_q","title":44,"type":"bool"}, + {"default":false,"name":"after_q","title":47,"type":"bool"}, ], }, Keqing: { name: "Keqing", - nameLocale: 312, + nameLocale: 318, element: "Electro", weapon: "Sword", star: 5, @@ -2288,67 +2360,67 @@ export default { // avatar: Keqing_avatar, avatar: getName("Keqing"), splash: Keqing_splash, - skillName1: 853, - skillName2: 826, - skillName3: 507, + skillName1: 860, + skillName2: 833, + skillName3: 513, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 79 }, + { index: 2, text: 83 }, - { index: 3, text: 432 }, + { index: 3, text: 438 }, - { index: 4, text: 433 }, + { index: 4, text: 439 }, - { index: 5, text: 147 }, + { index: 5, text: 152 }, - { index: 6, text: 1693 }, + { index: 6, text: 1708 }, - { index: 7, text: 1696 }, + { index: 7, text: 1711 }, - { index: 8, text: 90 }, + { index: 8, text: 94 }, - { index: 9, text: 178 }, + { index: 9, text: 184 }, - { index: 10, text: 1867 }, + { index: 10, text: 1883 }, ], skillMap2: [ - { index: 11, text: 1791 }, + { index: 11, text: 1807 }, - { index: 12, text: 769 }, + { index: 12, text: 776 }, - { index: 13, text: 1790 }, + { index: 13, text: 1806 }, ], skillMap3: [ - { index: 15, text: 683 }, + { index: 15, text: 690 }, - { index: 16, text: 1649 }, + { index: 16, text: 1665 }, - { index: 18, text: 1010 }, + { index: 18, text: 1018 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":519,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":525,"type":"float"}, ], configSkill: [ - {"default":true,"name":"after_e","title":14,"type":"bool"}, + {"default":true,"name":"after_e","title":15,"type":"bool"}, ], }, Klee: { name: "Klee", - nameLocale: 379, + nameLocale: 385, element: "Pyro", weapon: "Catalyst", star: 5, @@ -2356,38 +2428,38 @@ export default { // avatar: Klee_avatar, avatar: getName("Klee"), splash: Klee_splash, - skillName1: 894, - skillName2: 1626, - skillName3: 1631, + skillName1: 902, + skillName2: 1642, + skillName3: 1647, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 79 }, + { index: 2, text: 83 }, - { index: 3, text: 1690 }, + { index: 3, text: 1706 }, - { index: 4, text: 1701 }, + { index: 4, text: 1717 }, - { index: 5, text: 90 }, + { index: 5, text: 94 }, - { index: 6, text: 178 }, + { index: 6, text: 184 }, - { index: 7, text: 1867 }, + { index: 7, text: 1883 }, ], skillMap2: [ - { index: 8, text: 1627 }, + { index: 8, text: 1643 }, - { index: 9, text: 1591 }, + { index: 9, text: 1606 }, ], skillMap3: [ - { index: 10, text: 1632 }, + { index: 10, text: 1648 }, ], config: [ @@ -2400,7 +2472,7 @@ export default { KujouSara: { name: "KujouSara", - nameLocale: 111, + nameLocale: 116, element: "Electro", weapon: "Bow", star: 4, @@ -2408,42 +2480,42 @@ export default { // avatar: KujouSara_avatar, avatar: getName("Sara"), splash: KujouSara_splash, - skillName1: 921, - skillName2: 1879, - skillName3: 1204, + skillName1: 929, + skillName2: 1895, + skillName3: 1215, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 79 }, + { index: 2, text: 83 }, - { index: 3, text: 430 }, + { index: 3, text: 437 }, - { index: 4, text: 147 }, + { index: 4, text: 152 }, - { index: 5, text: 1329 }, + { index: 5, text: 1341 }, - { index: 6, text: 1165 }, + { index: 6, text: 1175 }, - { index: 7, text: 90 }, + { index: 7, text: 94 }, - { index: 8, text: 178 }, + { index: 8, text: 184 }, - { index: 9, text: 1867 }, + { index: 9, text: 1883 }, ], skillMap2: [ - { index: 10, text: 498 }, + { index: 10, text: 504 }, ], skillMap3: [ - { index: 11, text: 499 }, + { index: 11, text: 505 }, - { index: 12, text: 500 }, + { index: 12, text: 506 }, ], config: [ @@ -2456,7 +2528,7 @@ export default { KukiShinobu: { name: "KukiShinobu", - nameLocale: 106, + nameLocale: 110, element: "Electro", weapon: "Sword", star: 4, @@ -2464,55 +2536,55 @@ export default { // avatar: KukiShinobu_avatar, avatar: getName("Shinobu"), splash: KukiShinobu_splash, - skillName1: 870, - skillName2: 1623, - skillName3: 644, + skillName1: 877, + skillName2: 1639, + skillName3: 651, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 79 }, + { index: 2, text: 83 }, - { index: 3, text: 430 }, + { index: 3, text: 437 }, - { index: 4, text: 1693 }, + { index: 4, text: 1708 }, - { index: 5, text: 1696 }, + { index: 5, text: 1711 }, - { index: 6, text: 1690 }, + { index: 6, text: 1706 }, - { index: 7, text: 90 }, + { index: 7, text: 94 }, - { index: 8, text: 178 }, + { index: 8, text: 184 }, - { index: 9, text: 1867 }, + { index: 9, text: 1883 }, ], skillMap2: [ - { index: 10, text: 683 }, + { index: 10, text: 690 }, - { index: 11, text: 1622 }, + { index: 11, text: 1638 }, - { index: 12, text: 1621 }, + { index: 12, text: 1637 }, ], skillMap3: [ - { index: 13, text: 348 }, + { index: 13, text: 353 }, - { index: 14, text: 648 }, + { index: 14, text: 655 }, - { index: 15, text: 649 }, + { index: 15, text: 656 }, ], config: [ - {"default":true,"name":"hp_le_50","title":1277,"type":"bool"}, + {"default":true,"name":"hp_le_50","title":1288,"type":"bool"}, - {"default":false,"name":"use_c6","title":390,"type":"bool"}, + {"default":false,"name":"use_c6","title":396,"type":"bool"}, ], configSkill: [ @@ -2522,7 +2594,7 @@ export default { Layla: { name: "Layla", - nameLocale: 1484, + nameLocale: 1499, element: "Cryo", weapon: "Sword", star: 4, @@ -2530,38 +2602,38 @@ export default { // avatar: Layla_avatar, avatar: getName("Layla"), splash: Layla_splash, - skillName1: 890, - skillName2: 457, - skillName3: 827, + skillName1: 897, + skillName2: 463, + skillName3: 834, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 79 }, + { index: 2, text: 83 }, - { index: 3, text: 1693 }, + { index: 3, text: 1708 }, - { index: 4, text: 1696 }, + { index: 4, text: 1711 }, - { index: 5, text: 90 }, + { index: 5, text: 94 }, - { index: 6, text: 178 }, + { index: 6, text: 184 }, - { index: 7, text: 1867 }, + { index: 7, text: 1883 }, ], skillMap2: [ - { index: 8, text: 683 }, + { index: 8, text: 690 }, - { index: 9, text: 1852 }, + { index: 9, text: 1868 }, ], skillMap3: [ - { index: 10, text: 824 }, + { index: 10, text: 831 }, ], config: [ @@ -2574,7 +2646,7 @@ export default { Lisa: { name: "Lisa", - nameLocale: 102, + nameLocale: 106, element: "Electro", weapon: "Catalyst", star: 4, @@ -2582,44 +2654,44 @@ export default { // avatar: Lisa_avatar, avatar: getName("Lisa"), splash: Lisa_splash, - skillName1: 875, - skillName2: 1466, - skillName3: 1516, + skillName1: 882, + skillName2: 1480, + skillName3: 1531, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 79 }, + { index: 2, text: 83 }, - { index: 3, text: 430 }, + { index: 3, text: 437 }, - { index: 4, text: 1690 }, + { index: 4, text: 1706 }, - { index: 5, text: 90 }, + { index: 5, text: 94 }, - { index: 6, text: 178 }, + { index: 6, text: 184 }, - { index: 7, text: 1867 }, + { index: 7, text: 1883 }, ], skillMap2: [ - { index: 8, text: 1186 }, + { index: 8, text: 1197 }, - { index: 9, text: 815 }, + { index: 9, text: 822 }, - { index: 10, text: 54 }, + { index: 10, text: 57 }, - { index: 11, text: 126 }, + { index: 11, text: 131 }, - { index: 12, text: 77 }, + { index: 12, text: 81 }, ], skillMap3: [ - { index: 13, text: 1789 }, + { index: 13, text: 1805 }, ], config: [ @@ -2632,7 +2704,7 @@ export default { Lynette: { name: "Lynette", - nameLocale: 1258, + nameLocale: 1269, element: "Anemo", weapon: "Sword", star: 4, @@ -2640,65 +2712,65 @@ export default { // avatar: Lynette_avatar, avatar: getName("Lynette"), splash: Lynette_splash, - skillName1: 911, - skillName2: 1596, - skillName3: 1876, + skillName1: 919, + skillName2: 1611, + skillName3: 1892, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 80 }, + { index: 2, text: 84 }, - { index: 3, text: 81 }, + { index: 3, text: 85 }, - { index: 4, text: 430 }, + { index: 4, text: 437 }, - { index: 5, text: 1693 }, + { index: 5, text: 1708 }, - { index: 6, text: 1696 }, + { index: 6, text: 1711 }, - { index: 7, text: 90 }, + { index: 7, text: 94 }, - { index: 8, text: 178 }, + { index: 8, text: 184 }, - { index: 9, text: 1867 }, + { index: 9, text: 1883 }, ], skillMap2: [ - { index: 10, text: 1595 }, + { index: 10, text: 1610 }, - { index: 11, text: 1127 }, + { index: 11, text: 1136 }, - { index: 12, text: 410 }, + { index: 12, text: 416 }, ], skillMap3: [ - { index: 13, text: 683 }, + { index: 13, text: 690 }, - { index: 14, text: 655 }, + { index: 14, text: 662 }, - { index: 15, text: 638 }, + { index: 15, text: 645 }, - { index: 16, text: 640 }, + { index: 16, text: 647 }, - { index: 17, text: 641 }, + { index: 17, text: 648 }, - { index: 18, text: 642 }, + { index: 18, text: 649 }, - { index: 19, text: 639 }, + { index: 19, text: 646 }, ], config: [ - {"default":0.5,"max":1.0,"min":0.0,"name":"talent1_rate","title":517,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"talent1_rate","title":523,"type":"float"}, - {"default":4,"max":4,"min":1,"name":"talent1_count","title":516,"type":"int"}, + {"default":4,"max":4,"min":1,"name":"talent1_count","title":522,"type":"int"}, - {"default":0.5,"max":1.0,"min":0.0,"name":"talent2_rate","title":522,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"talent2_rate","title":528,"type":"float"}, ], configSkill: [ @@ -2708,7 +2780,7 @@ export default { Lyney: { name: "Lyney", - nameLocale: 1043, + nameLocale: 1052, element: "Pyro", weapon: "Bow", star: 5, @@ -2716,46 +2788,46 @@ export default { // avatar: Lyney_avatar, avatar: getName("Lyney"), splash: Lyney_splash, - skillName1: 914, - skillName2: 1328, - skillName3: 494, + skillName1: 922, + skillName2: 1340, + skillName3: 500, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 82 }, + { index: 2, text: 87 }, - { index: 3, text: 430 }, + { index: 3, text: 437 }, - { index: 4, text: 1329 }, + { index: 4, text: 1341 }, - { index: 5, text: 66 }, + { index: 5, text: 69 }, - { index: 6, text: 1780 }, + { index: 6, text: 1796 }, - { index: 7, text: 90 }, + { index: 7, text: 94 }, - { index: 8, text: 178 }, + { index: 8, text: 184 }, - { index: 9, text: 1867 }, + { index: 9, text: 1883 }, - { index: 10, text: 1346 }, + { index: 10, text: 1358 }, - { index: 11, text: 1181 }, + { index: 11, text: 1192 }, ], skillMap2: [ - { index: 12, text: 683 }, + { index: 12, text: 690 }, ], skillMap3: [ - { index: 13, text: 683 }, + { index: 13, text: 690 }, - { index: 14, text: 632 }, + { index: 14, text: 639 }, ], config: [ @@ -2767,18 +2839,18 @@ export default { ], configSkill: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"prop_stack","title":1779,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"prop_stack","title":1795,"type":"float"}, - {"default":false,"name":"under_pyro","title":759,"type":"bool"}, + {"default":false,"name":"under_pyro","title":766,"type":"bool"}, - {"default":1,"max":3,"min":0,"name":"pyro_count","title":1748,"type":"int"}, + {"default":1,"max":3,"min":0,"name":"pyro_count","title":1764,"type":"int"}, ], }, Mona: { name: "Mona", - nameLocale: 1478, + nameLocale: 1493, element: "Hydro", weapon: "Catalyst", star: 5, @@ -2786,38 +2858,38 @@ export default { // avatar: Mona_avatar, avatar: getName("Mona"), splash: Mona_splash, - skillName1: 860, - skillName2: 1082, - skillName3: 825, + skillName1: 867, + skillName2: 1091, + skillName3: 832, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 79 }, + { index: 2, text: 83 }, - { index: 3, text: 430 }, + { index: 3, text: 437 }, - { index: 4, text: 1690 }, + { index: 4, text: 1706 }, - { index: 5, text: 90 }, + { index: 5, text: 94 }, - { index: 6, text: 178 }, + { index: 6, text: 184 }, - { index: 7, text: 1867 }, + { index: 7, text: 1883 }, ], skillMap2: [ - { index: 8, text: 710 }, + { index: 8, text: 717 }, - { index: 9, text: 1212 }, + { index: 9, text: 1223 }, ], skillMap3: [ - { index: 10, text: 1110 }, + { index: 10, text: 1119 }, ], config: [ @@ -2830,7 +2902,7 @@ export default { Nahida: { name: "Nahida", - nameLocale: 1403, + nameLocale: 1415, element: "Dendro", weapon: "Catalyst", star: 5, @@ -2838,35 +2910,35 @@ export default { // avatar: Nahida_avatar, avatar: getName("Nahida"), splash: Nahida_splash, - skillName1: 905, - skillName2: 667, - skillName3: 645, + skillName1: 913, + skillName2: 674, + skillName3: 652, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 79 }, + { index: 2, text: 83 }, - { index: 3, text: 430 }, + { index: 3, text: 437 }, - { index: 4, text: 1690 }, + { index: 4, text: 1706 }, - { index: 5, text: 90 }, + { index: 5, text: 94 }, - { index: 6, text: 178 }, + { index: 6, text: 184 }, - { index: 7, text: 1867 }, + { index: 7, text: 1883 }, ], skillMap2: [ - { index: 8, text: 1186 }, + { index: 8, text: 1197 }, - { index: 9, text: 1730 }, + { index: 9, text: 1746 }, - { index: 10, text: 1175 }, + { index: 10, text: 1185 }, ], skillMap3: [ @@ -2874,21 +2946,21 @@ export default { ], config: [ - {"default":4,"max":4,"min":0,"name":"c4_e_count","title":1906,"type":"int"}, + {"default":4,"max":4,"min":0,"name":"c4_e_count","title":1922,"type":"int"}, ], configSkill: [ - {"default":true,"name":"q_bonus","title":18,"type":"bool"}, + {"default":true,"name":"q_bonus","title":19,"type":"bool"}, - {"default":2,"max":2,"min":1,"name":"q_bonus_count","title":17,"type":"int"}, + {"default":2,"max":2,"min":1,"name":"q_bonus_count","title":18,"type":"int"}, ], }, Neuvillette: { name: "Neuvillette", - nameLocale: 1676, + nameLocale: 1692, element: "Hydro", weapon: "Catalyst", star: 5, @@ -2896,57 +2968,57 @@ export default { // avatar: Neuvillette_avatar, avatar: getName("Neuvillette"), splash: Neuvillette_splash, - skillName1: 862, - skillName2: 1113, - skillName3: 1168, + skillName1: 869, + skillName2: 1122, + skillName3: 1178, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 79 }, + { index: 2, text: 83 }, - { index: 3, text: 1690 }, + { index: 3, text: 1706 }, - { index: 4, text: 1689 }, + { index: 4, text: 1705 }, - { index: 5, text: 90 }, + { index: 5, text: 94 }, - { index: 6, text: 178 }, + { index: 6, text: 184 }, - { index: 7, text: 1867 }, + { index: 7, text: 1883 }, ], skillMap2: [ - { index: 8, text: 683 }, + { index: 8, text: 690 }, - { index: 9, text: 1181 }, + { index: 9, text: 1192 }, ], skillMap3: [ - { index: 10, text: 683 }, + { index: 10, text: 690 }, - { index: 11, text: 1091 }, + { index: 11, text: 1100 }, ], config: [ - {"default":100,"max":100,"min":1,"name":"current_hp","title":636,"type":"int"}, + {"default":100,"max":100,"min":1,"name":"current_hp","title":643,"type":"int"}, ], configSkill: [ - {"default":3,"max":3,"min":0,"name":"talent1_stack","title":48,"type":"int"}, + {"default":3,"max":3,"min":0,"name":"talent1_stack","title":51,"type":"int"}, ], }, Nilou: { name: "Nilou", - nameLocale: 537, + nameLocale: 543, element: "Hydro", weapon: "Sword", star: 5, @@ -2954,55 +3026,55 @@ export default { // avatar: Nilou_avatar, avatar: getName("Nilou"), splash: Nilou_splash, - skillName1: 866, - skillName2: 72, - skillName3: 1132, + skillName1: 873, + skillName2: 75, + skillName3: 1141, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 79 }, + { index: 2, text: 83 }, - { index: 3, text: 1693 }, + { index: 3, text: 1708 }, - { index: 4, text: 1696 }, + { index: 4, text: 1711 }, - { index: 5, text: 90 }, + { index: 5, text: 94 }, - { index: 6, text: 178 }, + { index: 6, text: 184 }, - { index: 7, text: 1867 }, + { index: 7, text: 1883 }, ], skillMap2: [ - { index: 8, text: 683 }, + { index: 8, text: 690 }, - { index: 9, text: 315 }, + { index: 9, text: 321 }, - { index: 10, text: 809 }, + { index: 10, text: 816 }, - { index: 11, text: 316 }, + { index: 11, text: 322 }, - { index: 12, text: 810 }, + { index: 12, text: 817 }, - { index: 13, text: 1089 }, + { index: 13, text: 1098 }, - { index: 14, text: 1094 }, + { index: 14, text: 1103 }, ], skillMap3: [ - { index: 15, text: 683 }, + { index: 15, text: 690 }, - { index: 16, text: 1095 }, + { index: 16, text: 1104 }, ], config: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"golden_rate","title":49,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"golden_rate","title":52,"type":"float"}, ], configSkill: [ @@ -3012,7 +3084,7 @@ export default { Ningguang: { name: "Ningguang", - nameLocale: 289, + nameLocale: 295, element: "Geo", weapon: "Catalyst", star: 4, @@ -3020,37 +3092,37 @@ export default { // avatar: Ningguang_avatar, avatar: getName("Ningguang"), splash: Ningguang_splash, - skillName1: 857, - skillName2: 1265, - skillName3: 496, + skillName1: 864, + skillName2: 1276, + skillName3: 502, skillMap1: [ - { index: 0, text: 936 }, + { index: 0, text: 944 }, - { index: 1, text: 1690 }, + { index: 1, text: 1706 }, - { index: 2, text: 828 }, + { index: 2, text: 835 }, - { index: 3, text: 90 }, + { index: 3, text: 94 }, - { index: 4, text: 178 }, + { index: 4, text: 184 }, - { index: 5, text: 1867 }, + { index: 5, text: 1883 }, ], skillMap2: [ - { index: 6, text: 683 }, + { index: 6, text: 690 }, ], skillMap3: [ - { index: 7, text: 1080 }, + { index: 7, text: 1089 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":509,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_rate","title":515,"type":"float"}, ], configSkill: [ @@ -3060,7 +3132,7 @@ export default { Noelle: { name: "Noelle", - nameLocale: 1593, + nameLocale: 1608, element: "Geo", weapon: "Claymore", star: 4, @@ -3068,42 +3140,42 @@ export default { // avatar: Noelle_avatar, avatar: getName("Noel"), splash: Noelle_splash, - skillName1: 907, - skillName2: 699, - skillName3: 493, + skillName1: 915, + skillName2: 706, + skillName3: 499, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 79 }, + { index: 2, text: 83 }, - { index: 3, text: 430 }, + { index: 3, text: 437 }, - { index: 4, text: 1705 }, + { index: 4, text: 1721 }, - { index: 5, text: 1708 }, + { index: 5, text: 1724 }, - { index: 6, text: 90 }, + { index: 6, text: 94 }, - { index: 7, text: 178 }, + { index: 7, text: 184 }, - { index: 8, text: 1867 }, + { index: 8, text: 1883 }, ], skillMap2: [ - { index: 9, text: 683 }, + { index: 9, text: 690 }, - { index: 10, text: 1107 }, + { index: 10, text: 1115 }, ], skillMap3: [ - { index: 11, text: 1207 }, + { index: 11, text: 1219 }, - { index: 12, text: 683 }, + { index: 12, text: 690 }, ], config: [ @@ -3111,14 +3183,14 @@ export default { ], configSkill: [ - {"default":true,"name":"after_q","title":16,"type":"bool"}, + {"default":true,"name":"after_q","title":17,"type":"bool"}, ], }, Mika: { name: "Mika", - nameLocale: 1394, + nameLocale: 1406, element: "Cryo", weapon: "Polearm", star: 4, @@ -3126,44 +3198,44 @@ export default { // avatar: Mika_avatar, avatar: getName("Mika"), splash: Mika_splash, - skillName1: 910, - skillName2: 830, - skillName3: 1464, + skillName1: 918, + skillName2: 837, + skillName3: 1478, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 79 }, + { index: 2, text: 83 }, - { index: 3, text: 435 }, + { index: 3, text: 441 }, - { index: 4, text: 147 }, + { index: 4, text: 152 }, - { index: 5, text: 1690 }, + { index: 5, text: 1706 }, - { index: 6, text: 90 }, + { index: 6, text: 94 }, - { index: 7, text: 178 }, + { index: 7, text: 184 }, - { index: 8, text: 1867 }, + { index: 8, text: 1883 }, ], skillMap2: [ - { index: 9, text: 1812 }, + { index: 9, text: 1828 }, - { index: 10, text: 273 }, + { index: 10, text: 279 }, - { index: 11, text: 274 }, + { index: 11, text: 280 }, ], skillMap3: [ - { index: 12, text: 800 }, + { index: 12, text: 807 }, - { index: 13, text: 1882 }, + { index: 13, text: 1898 }, ], config: [ @@ -3176,7 +3248,7 @@ export default { Qiqi: { name: "Qiqi", - nameLocale: 70, + nameLocale: 73, element: "Cryo", weapon: "Sword", star: 5, @@ -3184,52 +3256,52 @@ export default { // avatar: Qiqi_avatar, avatar: getName("Qiqi"), splash: Qiqi_splash, - skillName1: 854, - skillName2: 164, - skillName3: 165, + skillName1: 861, + skillName2: 169, + skillName3: 170, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 80 }, + { index: 2, text: 84 }, - { index: 3, text: 81 }, + { index: 3, text: 85 }, - { index: 4, text: 432 }, + { index: 4, text: 438 }, - { index: 5, text: 433 }, + { index: 5, text: 439 }, - { index: 6, text: 147 }, + { index: 6, text: 152 }, - { index: 7, text: 1693 }, + { index: 7, text: 1708 }, - { index: 8, text: 1696 }, + { index: 8, text: 1711 }, - { index: 9, text: 90 }, + { index: 9, text: 94 }, - { index: 10, text: 178 }, + { index: 10, text: 184 }, - { index: 11, text: 1867 }, + { index: 11, text: 1883 }, ], skillMap2: [ - { index: 12, text: 683 }, + { index: 12, text: 690 }, - { index: 15, text: 575 }, + { index: 15, text: 582 }, - { index: 13, text: 408 }, + { index: 13, text: 415 }, - { index: 14, text: 713 }, + { index: 14, text: 720 }, ], skillMap3: [ - { index: 16, text: 683 }, + { index: 16, text: 690 }, - { index: 17, text: 1107 }, + { index: 17, text: 1115 }, ], config: [ @@ -3242,7 +3314,7 @@ export default { RaidenShogun: { name: "RaidenShogun", - nameLocale: 1798, + nameLocale: 1814, element: "Electro", weapon: "Polearm", star: 5, @@ -3250,64 +3322,64 @@ export default { // avatar: RaidenShogun_avatar, avatar: getName("Shougun"), splash: RaidenShogun_splash, - skillName1: 923, - skillName2: 1350, - skillName3: 533, + skillName1: 931, + skillName2: 1362, + skillName3: 539, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 79 }, + { index: 2, text: 83 }, - { index: 3, text: 432 }, + { index: 3, text: 438 }, - { index: 4, text: 433 }, + { index: 4, text: 439 }, - { index: 5, text: 147 }, + { index: 5, text: 152 }, - { index: 6, text: 1690 }, + { index: 6, text: 1706 }, - { index: 7, text: 90 }, + { index: 7, text: 94 }, - { index: 8, text: 178 }, + { index: 8, text: 184 }, - { index: 9, text: 1867 }, + { index: 9, text: 1883 }, ], skillMap2: [ - { index: 10, text: 683 }, + { index: 10, text: 690 }, - { index: 11, text: 346 }, + { index: 11, text: 352 }, ], skillMap3: [ - { index: 12, text: 1065 }, + { index: 12, text: 1074 }, - { index: 13, text: 56 }, + { index: 13, text: 59 }, - { index: 14, text: 128 }, + { index: 14, text: 133 }, - { index: 15, text: 79 }, + { index: 15, text: 83 }, - { index: 16, text: 432 }, + { index: 16, text: 438 }, - { index: 17, text: 433 }, + { index: 17, text: 439 }, - { index: 18, text: 147 }, + { index: 18, text: 152 }, - { index: 19, text: 1693 }, + { index: 19, text: 1708 }, - { index: 20, text: 1696 }, + { index: 20, text: 1711 }, - { index: 21, text: 90 }, + { index: 21, text: 94 }, - { index: 22, text: 178 }, + { index: 22, text: 184 }, - { index: 23, text: 1867 }, + { index: 23, text: 1883 }, ], config: [ @@ -3315,16 +3387,16 @@ export default { ], configSkill: [ - {"default":true,"name":"under_e","title":475,"type":"bool"}, + {"default":true,"name":"under_e","title":481,"type":"bool"}, - {"default":60,"max":60,"min":0,"name":"resolve_stack","title":1592,"type":"int"}, + {"default":60,"max":60,"min":0,"name":"resolve_stack","title":1607,"type":"int"}, ], }, Razor: { name: "Razor", - nameLocale: 1792, + nameLocale: 1808, element: "Electro", weapon: "Claymore", star: 4, @@ -3332,55 +3404,55 @@ export default { // avatar: Razor_avatar, avatar: getName("Razor"), splash: Razor_splash, - skillName1: 917, - skillName2: 310, - skillName3: 1797, + skillName1: 925, + skillName2: 316, + skillName3: 1813, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 79 }, + { index: 2, text: 83 }, - { index: 3, text: 430 }, + { index: 3, text: 437 }, - { index: 4, text: 1705 }, + { index: 4, text: 1721 }, - { index: 5, text: 1708 }, + { index: 5, text: 1724 }, - { index: 6, text: 90 }, + { index: 6, text: 94 }, - { index: 7, text: 178 }, + { index: 7, text: 184 }, - { index: 8, text: 1867 }, + { index: 8, text: 1883 }, ], skillMap2: [ - { index: 9, text: 1189 }, + { index: 9, text: 1200 }, - { index: 10, text: 1731 }, + { index: 10, text: 1747 }, ], skillMap3: [ - { index: 11, text: 1207 }, + { index: 11, text: 1219 }, - { index: 12, text: 1222 }, + { index: 12, text: 1233 }, - { index: 13, text: 1224 }, + { index: 13, text: 1235 }, - { index: 14, text: 1223 }, + { index: 14, text: 1234 }, - { index: 15, text: 1225 }, + { index: 15, text: 1236 }, ], config: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"e_stack","title":1784,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"e_stack","title":1800,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_ratio","title":524,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent2_ratio","title":530,"type":"float"}, ], configSkill: [ @@ -3390,7 +3462,7 @@ export default { Rosaria: { name: "Rosaria", - nameLocale: 1422, + nameLocale: 1434, element: "Cryo", weapon: "Polearm", star: 4, @@ -3398,51 +3470,51 @@ export default { // avatar: Rosaria_avatar, avatar: getName("Rosaria"), splash: Rosaria_splash, - skillName1: 876, - skillName2: 429, - skillName3: 1407, + skillName1: 883, + skillName2: 435, + skillName3: 1419, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 82 }, + { index: 2, text: 87 }, - { index: 3, text: 430 }, + { index: 3, text: 437 }, - { index: 4, text: 148 }, + { index: 4, text: 153 }, - { index: 5, text: 149 }, + { index: 5, text: 154 }, - { index: 6, text: 1690 }, + { index: 6, text: 1706 }, - { index: 7, text: 90 }, + { index: 7, text: 94 }, - { index: 8, text: 178 }, + { index: 8, text: 184 }, - { index: 9, text: 1867 }, + { index: 9, text: 1883 }, ], skillMap2: [ - { index: 10, text: 685 }, + { index: 10, text: 692 }, - { index: 11, text: 687 }, + { index: 11, text: 694 }, ], skillMap3: [ - { index: 12, text: 685 }, + { index: 12, text: 692 }, - { index: 13, text: 687 }, + { index: 13, text: 694 }, - { index: 14, text: 275 }, + { index: 14, text: 281 }, ], config: [ - {"default":true,"name":"e_from_behind","title":622,"type":"bool"}, + {"default":true,"name":"e_from_behind","title":629,"type":"bool"}, ], configSkill: [ @@ -3452,7 +3524,7 @@ export default { SangonomiyaKokomi: { name: "SangonomiyaKokomi", - nameLocale: 1241, + nameLocale: 1252, element: "Hydro", weapon: "Catalyst", star: 5, @@ -3460,38 +3532,38 @@ export default { // avatar: SangonomiyaKokomi_avatar, avatar: getName("Kokomi"), splash: SangonomiyaKokomi_splash, - skillName1: 922, - skillName2: 1134, - skillName3: 1133, + skillName1: 930, + skillName2: 1143, + skillName3: 1142, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 79 }, + { index: 2, text: 83 }, - { index: 3, text: 1690 }, + { index: 3, text: 1706 }, - { index: 4, text: 90 }, + { index: 4, text: 94 }, - { index: 5, text: 178 }, + { index: 5, text: 184 }, - { index: 6, text: 1867 }, + { index: 6, text: 1883 }, ], skillMap2: [ - { index: 8, text: 1112 }, + { index: 8, text: 1121 }, - { index: 7, text: 1106 }, + { index: 7, text: 1116 }, ], skillMap3: [ - { index: 9, text: 683 }, + { index: 9, text: 690 }, - { index: 10, text: 409 }, + { index: 10, text: 414 }, ], config: [ @@ -3499,14 +3571,14 @@ export default { ], configSkill: [ - {"default":true,"name":"after_q","title":22,"type":"bool"}, + {"default":true,"name":"after_q","title":24,"type":"bool"}, ], }, Sayu: { name: "Sayu", - nameLocale: 819, + nameLocale: 826, element: "Anemo", weapon: "Claymore", star: 4, @@ -3514,66 +3586,66 @@ export default { // avatar: Sayu_avatar, avatar: getName("Sayu"), splash: Sayu_splash, - skillName1: 869, - skillName2: 404, - skillName3: 403, + skillName1: 876, + skillName2: 410, + skillName3: 409, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 80 }, + { index: 2, text: 84 }, - { index: 3, text: 81 }, + { index: 3, text: 85 }, - { index: 4, text: 430 }, + { index: 4, text: 437 }, - { index: 5, text: 1705 }, + { index: 5, text: 1721 }, - { index: 6, text: 1708 }, + { index: 6, text: 1724 }, - { index: 7, text: 90 }, + { index: 7, text: 94 }, - { index: 8, text: 178 }, + { index: 8, text: 184 }, - { index: 9, text: 1867 }, + { index: 9, text: 1883 }, ], skillMap2: [ - { index: 10, text: 1835 }, + { index: 10, text: 1851 }, - { index: 11, text: 1836 }, + { index: 11, text: 1852 }, - { index: 12, text: 1837 }, + { index: 12, text: 1853 }, - { index: 13, text: 1844 }, + { index: 13, text: 1860 }, - { index: 16, text: 1843 }, + { index: 16, text: 1859 }, - { index: 15, text: 1842 }, + { index: 15, text: 1858 }, - { index: 14, text: 1845 }, + { index: 14, text: 1861 }, - { index: 17, text: 1840 }, + { index: 17, text: 1856 }, - { index: 20, text: 1839 }, + { index: 20, text: 1855 }, - { index: 19, text: 1838 }, + { index: 19, text: 1854 }, - { index: 18, text: 1841 }, + { index: 18, text: 1857 }, ], skillMap3: [ - { index: 21, text: 694 }, + { index: 21, text: 701 }, - { index: 22, text: 695 }, + { index: 22, text: 702 }, - { index: 23, text: 91 }, + { index: 23, text: 95 }, - { index: 24, text: 92 }, + { index: 24, text: 96 }, ], config: [ @@ -3586,7 +3658,7 @@ export default { Shenhe: { name: "Shenhe", - nameLocale: 1297, + nameLocale: 1309, element: "Cryo", weapon: "Polearm", star: 5, @@ -3594,44 +3666,44 @@ export default { // avatar: Shenhe_avatar, avatar: getName("Shenhe"), splash: Shenhe_splash, - skillName1: 924, - skillName2: 168, - skillName3: 1351, + skillName1: 932, + skillName2: 173, + skillName3: 1363, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 79 }, + { index: 2, text: 83 }, - { index: 3, text: 432 }, + { index: 3, text: 438 }, - { index: 4, text: 433 }, + { index: 4, text: 439 }, - { index: 5, text: 147 }, + { index: 5, text: 152 }, - { index: 6, text: 1690 }, + { index: 6, text: 1706 }, - { index: 7, text: 90 }, + { index: 7, text: 94 }, - { index: 8, text: 178 }, + { index: 8, text: 184 }, - { index: 9, text: 1867 }, + { index: 9, text: 1883 }, ], skillMap2: [ - { index: 10, text: 1187 }, + { index: 10, text: 1199 }, - { index: 11, text: 1731 }, + { index: 11, text: 1747 }, ], skillMap3: [ - { index: 12, text: 683 }, + { index: 12, text: 690 }, - { index: 13, text: 710 }, + { index: 13, text: 717 }, ], config: [ @@ -3644,7 +3716,7 @@ export default { ShikanoinHeizou: { name: "ShikanoinHeizou", - nameLocale: 1883, + nameLocale: 1899, element: "Anemo", weapon: "Catalyst", star: 4, @@ -3652,60 +3724,60 @@ export default { // avatar: ShikanoinHeizou_avatar, avatar: getName("Heizo"), splash: ShikanoinHeizou_splash, - skillName1: 852, - skillName2: 328, - skillName3: 1446, + skillName1: 859, + skillName2: 334, + skillName3: 1458, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 79 }, + { index: 2, text: 83 }, - { index: 3, text: 432 }, + { index: 3, text: 438 }, - { index: 4, text: 433 }, + { index: 4, text: 439 }, - { index: 5, text: 434 }, + { index: 5, text: 440 }, - { index: 6, text: 430 }, + { index: 6, text: 437 }, - { index: 7, text: 147 }, + { index: 7, text: 152 }, - { index: 8, text: 1690 }, + { index: 8, text: 1706 }, - { index: 9, text: 90 }, + { index: 9, text: 94 }, - { index: 10, text: 178 }, + { index: 10, text: 184 }, - { index: 11, text: 1867 }, + { index: 11, text: 1883 }, ], skillMap2: [ - { index: 12, text: 684 }, + { index: 12, text: 691 }, - { index: 13, text: 686 }, + { index: 13, text: 693 }, - { index: 14, text: 688 }, + { index: 14, text: 695 }, - { index: 15, text: 689 }, + { index: 15, text: 696 }, - { index: 16, text: 690 }, + { index: 16, text: 697 }, ], skillMap3: [ - { index: 17, text: 93 }, + { index: 17, text: 97 }, - { index: 18, text: 1444 }, + { index: 18, text: 1456 }, - { index: 20, text: 1442 }, + { index: 20, text: 1454 }, - { index: 21, text: 1445 }, + { index: 21, text: 1457 }, - { index: 19, text: 1443 }, + { index: 19, text: 1455 }, ], config: [ @@ -3718,7 +3790,7 @@ export default { Sucrose: { name: "Sucrose", - nameLocale: 1330, + nameLocale: 1342, element: "Anemo", weapon: "Catalyst", star: 4, @@ -3726,44 +3798,44 @@ export default { // avatar: Sucrose_avatar, avatar: getName("Sucrose"), splash: Sucrose_splash, - skillName1: 900, - skillName2: 1831, - skillName3: 1379, + skillName1: 908, + skillName2: 1847, + skillName3: 1391, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 79 }, + { index: 2, text: 83 }, - { index: 3, text: 430 }, + { index: 3, text: 437 }, - { index: 4, text: 1690 }, + { index: 4, text: 1706 }, - { index: 5, text: 90 }, + { index: 5, text: 94 }, - { index: 6, text: 178 }, + { index: 6, text: 184 }, - { index: 7, text: 1867 }, + { index: 7, text: 1883 }, ], skillMap2: [ - { index: 8, text: 683 }, + { index: 8, text: 690 }, ], skillMap3: [ - { index: 9, text: 710 }, + { index: 9, text: 717 }, - { index: 10, text: 1774 }, + { index: 10, text: 1790 }, - { index: 11, text: 1773 }, + { index: 11, text: 1789 }, - { index: 13, text: 1772 }, + { index: 13, text: 1788 }, - { index: 12, text: 1775 }, + { index: 12, text: 1791 }, ], config: [ @@ -3776,7 +3848,7 @@ export default { Tartaglia: { name: "Tartaglia", - nameLocale: 1644, + nameLocale: 1660, element: "Hydro", weapon: "Bow", star: 5, @@ -3784,70 +3856,70 @@ export default { // avatar: Tartaglia_avatar, avatar: getName("Tartaglia"), splash: Tartaglia_splash, - skillName1: 877, - skillName2: 1878, - skillName3: 1042, + skillName1: 884, + skillName2: 1894, + skillName3: 1051, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 79 }, + { index: 2, text: 83 }, - { index: 3, text: 430 }, + { index: 3, text: 437 }, - { index: 4, text: 147 }, + { index: 4, text: 152 }, - { index: 5, text: 255 }, + { index: 5, text: 261 }, - { index: 6, text: 1329 }, + { index: 6, text: 1341 }, - { index: 7, text: 1165 }, + { index: 7, text: 1175 }, - { index: 8, text: 775 }, + { index: 8, text: 782 }, - { index: 9, text: 774 }, + { index: 9, text: 781 }, - { index: 10, text: 90 }, + { index: 10, text: 94 }, - { index: 11, text: 178 }, + { index: 11, text: 184 }, - { index: 12, text: 1867 }, + { index: 12, text: 1883 }, ], skillMap2: [ - { index: 13, text: 1217 }, + { index: 13, text: 1228 }, - { index: 14, text: 56 }, + { index: 14, text: 59 }, - { index: 15, text: 128 }, + { index: 15, text: 133 }, - { index: 16, text: 79 }, + { index: 16, text: 83 }, - { index: 17, text: 430 }, + { index: 17, text: 437 }, - { index: 18, text: 147 }, + { index: 18, text: 152 }, - { index: 19, text: 256 }, + { index: 19, text: 262 }, - { index: 20, text: 257 }, + { index: 20, text: 263 }, - { index: 21, text: 1693 }, + { index: 21, text: 1708 }, - { index: 22, text: 1696 }, + { index: 22, text: 1711 }, - { index: 23, text: 772 }, + { index: 23, text: 779 }, ], skillMap3: [ - { index: 24, text: 692 }, + { index: 24, text: 699 }, - { index: 25, text: 693 }, + { index: 25, text: 700 }, - { index: 26, text: 773 }, + { index: 26, text: 780 }, ], config: [ @@ -3860,7 +3932,7 @@ export default { Thoma: { name: "Thoma", - nameLocale: 669, + nameLocale: 676, element: "Pyro", weapon: "Polearm", star: 4, @@ -3868,38 +3940,38 @@ export default { // avatar: Thoma_avatar, avatar: getName("Tohma"), splash: Thoma_splash, - skillName1: 913, - skillName2: 1194, - skillName3: 1327, + skillName1: 921, + skillName2: 1205, + skillName3: 1339, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 82 }, + { index: 2, text: 87 }, - { index: 4, text: 430 }, + { index: 4, text: 437 }, - { index: 5, text: 1690 }, + { index: 5, text: 1706 }, - { index: 6, text: 90 }, + { index: 6, text: 94 }, - { index: 7, text: 178 }, + { index: 7, text: 184 }, - { index: 8, text: 1867 }, + { index: 8, text: 1883 }, ], skillMap2: [ - { index: 9, text: 683 }, + { index: 9, text: 690 }, ], skillMap3: [ - { index: 10, text: 683 }, + { index: 10, text: 690 }, - { index: 11, text: 1191 }, + { index: 11, text: 1202 }, ], config: [ @@ -3912,7 +3984,7 @@ export default { Tighnari: { name: "Tighnari", - nameLocale: 721, + nameLocale: 728, element: "Dendro", weapon: "Bow", star: 5, @@ -3920,51 +3992,51 @@ export default { // avatar: Tighnari_avatar, avatar: getName("Tighnari"), splash: Tighnari_splash, - skillName1: 903, - skillName2: 1584, - skillName3: 1671, + skillName1: 911, + skillName2: 1599, + skillName3: 1687, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 79 }, + { index: 2, text: 83 }, - { index: 3, text: 430 }, + { index: 3, text: 437 }, - { index: 4, text: 1329 }, + { index: 4, text: 1341 }, - { index: 5, text: 67 }, + { index: 5, text: 70 }, - { index: 6, text: 1459 }, + { index: 6, text: 1473 }, - { index: 7, text: 1518 }, + { index: 7, text: 1533 }, - { index: 8, text: 90 }, + { index: 8, text: 94 }, - { index: 9, text: 178 }, + { index: 9, text: 184 }, - { index: 10, text: 1867 }, + { index: 10, text: 1883 }, ], skillMap2: [ - { index: 11, text: 683 }, + { index: 11, text: 690 }, ], skillMap3: [ - { index: 12, text: 1421 }, + { index: 12, text: 1433 }, - { index: 13, text: 1069 }, + { index: 13, text: 1078 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"talent1_ratio","title":520,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"talent1_ratio","title":526,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"c2_ratio","title":412,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"c2_ratio","title":418,"type":"float"}, ], configSkill: [ @@ -3974,7 +4046,7 @@ export default { Venti: { name: "Venti", - nameLocale: 1150, + nameLocale: 1160, element: "Anemo", weapon: "Bow", star: 5, @@ -3982,56 +4054,56 @@ export default { // avatar: Venti_avatar, avatar: getName("Venti"), splash: Venti_splash, - skillName1: 896, - skillName2: 1866, - skillName3: 1832, + skillName1: 904, + skillName2: 1882, + skillName3: 1848, skillMap1: [ - { index: 0, text: 57 }, + { index: 0, text: 60 }, - { index: 1, text: 58 }, + { index: 1, text: 61 }, - { index: 3, text: 128 }, + { index: 3, text: 133 }, - { index: 4, text: 79 }, + { index: 4, text: 83 }, - { index: 5, text: 432 }, + { index: 5, text: 438 }, - { index: 6, text: 433 }, + { index: 6, text: 439 }, - { index: 8, text: 147 }, + { index: 8, text: 152 }, - { index: 9, text: 255 }, + { index: 9, text: 261 }, - { index: 10, text: 1329 }, + { index: 10, text: 1341 }, - { index: 11, text: 1165 }, + { index: 11, text: 1175 }, - { index: 12, text: 90 }, + { index: 12, text: 94 }, - { index: 13, text: 178 }, + { index: 13, text: 184 }, - { index: 14, text: 1867 }, + { index: 14, text: 1883 }, ], skillMap2: [ - { index: 15, text: 1186 }, + { index: 15, text: 1197 }, - { index: 16, text: 1730 }, + { index: 16, text: 1746 }, ], skillMap3: [ - { index: 17, text: 710 }, + { index: 17, text: 717 }, - { index: 18, text: 1774 }, + { index: 18, text: 1790 }, - { index: 20, text: 1773 }, + { index: 20, text: 1789 }, - { index: 21, text: 1772 }, + { index: 21, text: 1788 }, - { index: 19, text: 1775 }, + { index: 19, text: 1791 }, ], config: [ @@ -4044,7 +4116,7 @@ export default { Wanderer: { name: "Wanderer", - nameLocale: 1125, + nameLocale: 1134, element: "Anemo", weapon: "Catalyst", star: 5, @@ -4052,65 +4124,65 @@ export default { // avatar: Wanderer_avatar, avatar: getName("Wanderer"), splash: Wanderer_splash, - skillName1: 904, - skillName2: 1431, - skillName3: 1218, + skillName1: 912, + skillName2: 1443, + skillName3: 1229, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 83 }, + { index: 2, text: 86 }, - { index: 3, text: 60 }, + { index: 3, text: 63 }, - { index: 4, text: 131 }, + { index: 4, text: 136 }, - { index: 5, text: 84 }, + { index: 5, text: 88 }, - { index: 6, text: 1690 }, + { index: 6, text: 1706 }, - { index: 7, text: 29 }, + { index: 7, text: 31 }, - { index: 8, text: 90 }, + { index: 8, text: 94 }, - { index: 9, text: 178 }, + { index: 9, text: 184 }, - { index: 10, text: 1867 }, + { index: 10, text: 1883 }, ], skillMap2: [ - { index: 11, text: 683 }, + { index: 11, text: 690 }, ], skillMap3: [ - { index: 12, text: 691 }, + { index: 12, text: 698 }, ], config: [ - {"default":false,"name":"e_pyro","title":28,"type":"bool"}, + {"default":false,"name":"e_pyro","title":30,"type":"bool"}, - {"default":false,"name":"e_cryo","title":26,"type":"bool"}, + {"default":false,"name":"e_cryo","title":28,"type":"bool"}, ], configSkill: [ - {"default":true,"name":"e_enabled","title":467,"type":"bool"}, + {"default":true,"name":"e_enabled","title":473,"type":"bool"}, - {"default":false,"name":"e_hydro","title":27,"type":"bool"}, + {"default":false,"name":"e_hydro","title":29,"type":"bool"}, - {"default":50.0,"max":120.0,"min":0.0,"name":"sdpoints","title":1389,"type":"float"}, + {"default":50.0,"max":120.0,"min":0.0,"name":"sdpoints","title":1401,"type":"float"}, ], }, Wriothesley: { name: "Wriothesley", - nameLocale: 1485, + nameLocale: 1500, element: "Cryo", weapon: "Catalyst", star: 5, @@ -4118,30 +4190,30 @@ export default { // avatar: Wriothesley_avatar, avatar: getName("Wriothesley"), splash: Wriothesley_splash, - skillName1: 912, - skillName2: 279, - skillName3: 1903, + skillName1: 920, + skillName2: 285, + skillName3: 1919, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 79 }, + { index: 2, text: 83 }, - { index: 3, text: 435 }, + { index: 3, text: 441 }, - { index: 4, text: 147 }, + { index: 4, text: 152 }, - { index: 5, text: 1690 }, + { index: 5, text: 1706 }, - { index: 6, text: 656 }, + { index: 6, text: 663 }, - { index: 7, text: 90 }, + { index: 7, text: 94 }, - { index: 8, text: 178 }, + { index: 8, text: 184 }, - { index: 9, text: 1867 }, + { index: 9, text: 1883 }, ], skillMap2: [ @@ -4149,14 +4221,14 @@ export default { ], skillMap3: [ - { index: 10, text: 683 }, + { index: 10, text: 690 }, - { index: 11, text: 1127 }, + { index: 11, text: 1136 }, ], config: [ - {"default":4.0,"max":5.0,"min":0.0,"name":"talent2_stack","title":31,"type":"float"}, + {"default":4.0,"max":5.0,"min":0.0,"name":"talent2_stack","title":33,"type":"float"}, ], configSkill: [ @@ -4166,7 +4238,7 @@ export default { Xiangling: { name: "Xiangling", - nameLocale: 1857, + nameLocale: 1873, element: "Pyro", weapon: "Polearm", star: 4, @@ -4174,46 +4246,46 @@ export default { // avatar: Xiangling_avatar, avatar: getName("Xiangling"), splash: Xiangling_splash, - skillName1: 893, - skillName2: 1728, - skillName3: 807, + skillName1: 901, + skillName2: 1744, + skillName3: 814, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 80 }, + { index: 2, text: 84 }, - { index: 3, text: 81 }, + { index: 3, text: 85 }, - { index: 5, text: 437 }, + { index: 5, text: 443 }, - { index: 7, text: 147 }, + { index: 7, text: 152 }, - { index: 8, text: 1690 }, + { index: 8, text: 1706 }, - { index: 9, text: 90 }, + { index: 9, text: 94 }, - { index: 10, text: 178 }, + { index: 10, text: 184 }, - { index: 11, text: 1867 }, + { index: 11, text: 1883 }, ], skillMap2: [ - { index: 12, text: 426 }, + { index: 12, text: 432 }, ], skillMap3: [ - { index: 13, text: 61 }, + { index: 13, text: 64 }, - { index: 14, text: 132 }, + { index: 14, text: 137 }, - { index: 15, text: 85 }, + { index: 15, text: 89 }, - { index: 16, text: 808 }, + { index: 16, text: 815 }, ], config: [ @@ -4226,7 +4298,7 @@ export default { Xiao: { name: "Xiao", - nameLocale: 1869, + nameLocale: 1885, element: "Anemo", weapon: "Polearm", star: 5, @@ -4234,39 +4306,39 @@ export default { // avatar: Xiao_avatar, avatar: getName("Xiao"), splash: Xiao_splash, - skillName1: 858, - skillName2: 1834, - skillName3: 1814, + skillName1: 865, + skillName2: 1850, + skillName3: 1830, skillMap1: [ - { index: 0, text: 57 }, + { index: 0, text: 60 }, - { index: 1, text: 58 }, + { index: 1, text: 61 }, - { index: 3, text: 128 }, + { index: 3, text: 133 }, - { index: 4, text: 79 }, + { index: 4, text: 83 }, - { index: 5, text: 432 }, + { index: 5, text: 438 }, - { index: 6, text: 433 }, + { index: 6, text: 439 }, - { index: 8, text: 147 }, + { index: 8, text: 152 }, - { index: 9, text: 255 }, + { index: 9, text: 261 }, - { index: 10, text: 1690 }, + { index: 10, text: 1706 }, - { index: 11, text: 90 }, + { index: 11, text: 94 }, - { index: 12, text: 178 }, + { index: 12, text: 184 }, - { index: 13, text: 1867 }, + { index: 13, text: 1883 }, ], skillMap2: [ - { index: 14, text: 683 }, + { index: 14, text: 690 }, ], skillMap3: [ @@ -4277,18 +4349,18 @@ export default { ], configSkill: [ - {"default":true,"name":"after_q","title":1814,"type":"bool"}, + {"default":true,"name":"after_q","title":1830,"type":"bool"}, - {"default":4.0,"max":4.0,"min":0.0,"name":"talent1_stack","title":523,"type":"float"}, + {"default":4.0,"max":4.0,"min":0.0,"name":"talent1_stack","title":529,"type":"float"}, - {"default":0.0,"max":3.0,"min":0.0,"name":"talent2_stack","title":511,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"talent2_stack","title":517,"type":"float"}, ], }, Xingqiu: { name: "Xingqiu", - nameLocale: 1524, + nameLocale: 1539, element: "Hydro", weapon: "Sword", star: 4, @@ -4296,46 +4368,46 @@ export default { // avatar: Xingqiu_avatar, avatar: getName("Xingqiu"), splash: Xingqiu_splash, - skillName1: 859, - skillName2: 376, - skillName3: 377, + skillName1: 866, + skillName2: 382, + skillName3: 383, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 80 }, + { index: 2, text: 84 }, - { index: 3, text: 81 }, + { index: 3, text: 85 }, - { index: 5, text: 430 }, + { index: 5, text: 437 }, - { index: 6, text: 148 }, + { index: 6, text: 153 }, - { index: 7, text: 149 }, + { index: 7, text: 154 }, - { index: 9, text: 1693 }, + { index: 9, text: 1708 }, - { index: 10, text: 1696 }, + { index: 10, text: 1711 }, - { index: 12, text: 90 }, + { index: 12, text: 94 }, - { index: 13, text: 178 }, + { index: 13, text: 184 }, - { index: 14, text: 1867 }, + { index: 14, text: 1883 }, ], skillMap2: [ - { index: 15, text: 685 }, + { index: 15, text: 692 }, - { index: 16, text: 687 }, + { index: 16, text: 694 }, ], skillMap3: [ - { index: 17, text: 317 }, + { index: 17, text: 323 }, ], config: [ @@ -4343,14 +4415,14 @@ export default { ], configSkill: [ - {"default":false,"name":"c4","title":621,"type":"bool"}, + {"default":false,"name":"c4","title":628,"type":"bool"}, ], }, Xinyan: { name: "Xinyan", - nameLocale: 1635, + nameLocale: 1651, element: "Pyro", weapon: "Claymore", star: 4, @@ -4358,42 +4430,42 @@ export default { // avatar: Xinyan_avatar, avatar: getName("Xinyan"), splash: Xinyan_splash, - skillName1: 888, - skillName2: 1198, - skillName3: 373, + skillName1: 895, + skillName2: 1209, + skillName3: 379, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 79 }, + { index: 2, text: 83 }, - { index: 3, text: 430 }, + { index: 3, text: 437 }, - { index: 4, text: 1705 }, + { index: 4, text: 1721 }, - { index: 5, text: 1708 }, + { index: 5, text: 1724 }, - { index: 6, text: 90 }, + { index: 6, text: 94 }, - { index: 7, text: 178 }, + { index: 7, text: 184 }, - { index: 8, text: 1867 }, + { index: 8, text: 1883 }, ], skillMap2: [ - { index: 9, text: 718 }, + { index: 9, text: 725 }, - { index: 10, text: 710 }, + { index: 10, text: 717 }, ], skillMap3: [ - { index: 11, text: 683 }, + { index: 11, text: 690 }, - { index: 12, text: 1172 }, + { index: 12, text: 1182 }, ], config: [ @@ -4401,14 +4473,14 @@ export default { ], configSkill: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":39,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":42,"type":"float"}, ], }, YaeMiko: { name: "YaeMiko", - nameLocale: 245, + nameLocale: 251, element: "Electro", weapon: "Catalyst", star: 5, @@ -4416,42 +4488,42 @@ export default { // avatar: YaeMiko_avatar, avatar: getName("Yae"), splash: YaeMiko_splash, - skillName1: 891, - skillName2: 1712, - skillName3: 492, + skillName1: 898, + skillName2: 1728, + skillName3: 498, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 79 }, + { index: 2, text: 83 }, - { index: 3, text: 1690 }, + { index: 3, text: 1706 }, - { index: 4, text: 90 }, + { index: 4, text: 94 }, - { index: 5, text: 178 }, + { index: 5, text: 184 }, - { index: 6, text: 1867 }, + { index: 6, text: 1883 }, ], skillMap2: [ - { index: 7, text: 1035 }, + { index: 7, text: 1044 }, - { index: 8, text: 1037 }, + { index: 8, text: 1046 }, - { index: 9, text: 1034 }, + { index: 9, text: 1043 }, - { index: 10, text: 1036 }, + { index: 10, text: 1045 }, ], skillMap3: [ - { index: 11, text: 683 }, + { index: 11, text: 690 }, - { index: 12, text: 497 }, + { index: 12, text: 503 }, ], config: [ @@ -4464,7 +4536,7 @@ export default { Yanfei: { name: "Yanfei", - nameLocale: 1196, + nameLocale: 1207, element: "Pyro", weapon: "Catalyst", star: 4, @@ -4472,44 +4544,44 @@ export default { // avatar: Yanfei_avatar, avatar: getName("Feiyan"), splash: Yanfei_splash, - skillName1: 886, - skillName2: 100, - skillName3: 295, + skillName1: 893, + skillName2: 104, + skillName3: 301, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 79 }, + { index: 2, text: 83 }, - { index: 3, text: 1688 }, + { index: 3, text: 1704 }, - { index: 4, text: 1684 }, + { index: 4, text: 1700 }, - { index: 5, text: 1685 }, + { index: 5, text: 1701 }, - { index: 6, text: 1686 }, + { index: 6, text: 1702 }, - { index: 7, text: 1687 }, + { index: 7, text: 1703 }, - { index: 8, text: 508 }, + { index: 8, text: 514 }, - { index: 9, text: 90 }, + { index: 9, text: 94 }, - { index: 10, text: 178 }, + { index: 10, text: 184 }, - { index: 11, text: 1867 }, + { index: 11, text: 1883 }, ], skillMap2: [ - { index: 12, text: 683 }, + { index: 12, text: 690 }, ], skillMap3: [ - { index: 13, text: 683 }, + { index: 13, text: 690 }, ], config: [ @@ -4517,14 +4589,14 @@ export default { ], configSkill: [ - {"default":true,"name":"after_q","title":1183,"type":"bool"}, + {"default":true,"name":"after_q","title":1194,"type":"bool"}, ], }, Yaoyao: { name: "Yaoyao", - nameLocale: 1264, + nameLocale: 1275, element: "Dendro", weapon: "Polearm", star: 4, @@ -4532,49 +4604,49 @@ export default { // avatar: Yaoyao_avatar, avatar: getName("Yaoyao"), splash: Yaoyao_splash, - skillName1: 918, - skillName2: 139, - skillName3: 1237, + skillName1: 926, + skillName2: 144, + skillName3: 1248, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 80 }, + { index: 2, text: 84 }, - { index: 3, text: 81 }, + { index: 3, text: 85 }, - { index: 4, text: 430 }, + { index: 4, text: 437 }, - { index: 5, text: 1690 }, + { index: 5, text: 1706 }, - { index: 6, text: 90 }, + { index: 6, text: 94 }, - { index: 7, text: 178 }, + { index: 7, text: 184 }, - { index: 8, text: 1867 }, + { index: 8, text: 1883 }, ], skillMap2: [ - { index: 9, text: 1316 }, + { index: 9, text: 1328 }, - { index: 10, text: 1317 }, + { index: 10, text: 1329 }, ], skillMap3: [ - { index: 11, text: 683 }, + { index: 11, text: 690 }, - { index: 12, text: 1061 }, + { index: 12, text: 1070 }, - { index: 13, text: 1062 }, + { index: 13, text: 1071 }, ], config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"c4_rate","title":417,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"c4_rate","title":423,"type":"float"}, ], configSkill: [ @@ -4584,7 +4656,7 @@ export default { Yelan: { name: "Yelan", - nameLocale: 485, + nameLocale: 491, element: "Hydro", weapon: "Bow", star: 5, @@ -4592,47 +4664,47 @@ export default { // avatar: Yelan_avatar, avatar: getName("Yelan"), splash: Yelan_splash, - skillName1: 885, - skillName2: 1508, - skillName3: 1142, + skillName1: 892, + skillName2: 1523, + skillName3: 1152, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 79 }, + { index: 2, text: 83 }, - { index: 3, text: 435 }, + { index: 3, text: 441 }, - { index: 4, text: 1329 }, + { index: 4, text: 1341 }, - { index: 5, text: 1165 }, + { index: 5, text: 1175 }, - { index: 6, text: 1340 }, + { index: 6, text: 1352 }, - { index: 8, text: 90 }, + { index: 8, text: 94 }, - { index: 9, text: 178 }, + { index: 9, text: 184 }, - { index: 10, text: 1867 }, + { index: 10, text: 1883 }, ], skillMap2: [ - { index: 11, text: 683 }, + { index: 11, text: 690 }, ], skillMap3: [ - { index: 12, text: 683 }, + { index: 12, text: 690 }, - { index: 13, text: 1236 }, + { index: 13, text: 1247 }, ], config: [ - {"default":4,"max":4,"min":1,"name":"team_element_count","title":1737,"type":"int"}, + {"default":4,"max":4,"min":1,"name":"team_element_count","title":1753,"type":"int"}, ], configSkill: [ @@ -4642,7 +4714,7 @@ export default { Yoimiya: { name: "Yoimiya", - nameLocale: 571, + nameLocale: 578, element: "Pyro", weapon: "Bow", star: 5, @@ -4650,32 +4722,32 @@ export default { // avatar: Yoimiya_avatar, avatar: getName("Yoimiya"), splash: Yoimiya_splash, - skillName1: 889, - skillName2: 1202, - skillName3: 1254, + skillName1: 896, + skillName2: 1213, + skillName3: 1265, skillMap1: [ - { index: 0, text: 59 }, + { index: 0, text: 62 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 79 }, + { index: 2, text: 83 }, - { index: 3, text: 435 }, + { index: 3, text: 441 }, - { index: 4, text: 147 }, + { index: 4, text: 152 }, - { index: 5, text: 1329 }, + { index: 5, text: 1341 }, - { index: 6, text: 1165 }, + { index: 6, text: 1175 }, - { index: 7, text: 1203 }, + { index: 7, text: 1214 }, - { index: 8, text: 90 }, + { index: 8, text: 94 }, - { index: 9, text: 178 }, + { index: 9, text: 184 }, - { index: 10, text: 1867 }, + { index: 10, text: 1883 }, ], skillMap2: [ @@ -4683,26 +4755,26 @@ export default { ], skillMap3: [ - { index: 11, text: 683 }, + { index: 11, text: 690 }, - { index: 12, text: 1255 }, + { index: 12, text: 1266 }, ], config: [ - {"default":8.0,"max":10.0,"min":0.0,"name":"talent1_level","title":521,"type":"float"}, + {"default":8.0,"max":10.0,"min":0.0,"name":"talent1_level","title":527,"type":"float"}, ], configSkill: [ - {"default":true,"name":"after_e","title":626,"type":"bool"}, + {"default":true,"name":"after_e","title":633,"type":"bool"}, ], }, Yunjin: { name: "Yunjin", - nameLocale: 140, + nameLocale: 145, element: "Geo", weapon: "Polearm", star: 4, @@ -4710,46 +4782,46 @@ export default { // avatar: Yunjin_avatar, avatar: getName("Yunjin"), splash: Yunjin_splash, - skillName1: 873, - skillName2: 806, - skillName3: 1341, + skillName1: 880, + skillName2: 813, + skillName3: 1353, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 80 }, + { index: 2, text: 84 }, - { index: 3, text: 81 }, + { index: 3, text: 85 }, - { index: 4, text: 432 }, + { index: 4, text: 438 }, - { index: 5, text: 433 }, + { index: 5, text: 439 }, - { index: 6, text: 147 }, + { index: 6, text: 152 }, - { index: 7, text: 1690 }, + { index: 7, text: 1706 }, - { index: 8, text: 90 }, + { index: 8, text: 94 }, - { index: 9, text: 178 }, + { index: 9, text: 184 }, - { index: 10, text: 1867 }, + { index: 10, text: 1883 }, ], skillMap2: [ - { index: 11, text: 1185 }, + { index: 11, text: 1196 }, - { index: 12, text: 63 }, + { index: 12, text: 66 }, - { index: 13, text: 134 }, + { index: 13, text: 139 }, ], skillMap3: [ - { index: 14, text: 683 }, + { index: 14, text: 690 }, ], config: [ @@ -4762,7 +4834,7 @@ export default { Zhongli: { name: "Zhongli", - nameLocale: 1718, + nameLocale: 1734, element: "Geo", weapon: "Polearm", star: 5, @@ -4770,44 +4842,44 @@ export default { // avatar: Zhongli_avatar, avatar: getName("Zhongli"), splash: Zhongli_splash, - skillName1: 864, - skillName2: 447, - skillName3: 495, + skillName1: 871, + skillName2: 453, + skillName3: 501, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 79 }, + { index: 2, text: 83 }, - { index: 3, text: 430 }, + { index: 3, text: 437 }, - { index: 4, text: 151 }, + { index: 4, text: 156 }, - { index: 5, text: 255 }, + { index: 5, text: 261 }, - { index: 6, text: 1690 }, + { index: 6, text: 1706 }, - { index: 7, text: 90 }, + { index: 7, text: 94 }, - { index: 8, text: 178 }, + { index: 8, text: 184 }, - { index: 9, text: 1867 }, + { index: 9, text: 1883 }, ], skillMap2: [ - { index: 10, text: 600 }, + { index: 10, text: 607 }, - { index: 11, text: 259 }, + { index: 11, text: 265 }, - { index: 12, text: 1730 }, + { index: 12, text: 1746 }, ], skillMap3: [ - { index: 13, text: 683 }, + { index: 13, text: 690 }, ], config: [ @@ -4820,7 +4892,7 @@ export default { Kirara: { name: "Kirara", - nameLocale: 1417, + nameLocale: 1429, element: "Dendro", weapon: "Sword", star: 4, @@ -4828,48 +4900,48 @@ export default { // avatar: Kirara_avatar, avatar: getName("Momoka"), splash: Kirara_splash, - skillName1: 901, - skillName2: 405, - skillName3: 1382, + skillName1: 909, + skillName2: 411, + skillName3: 1394, skillMap1: [ - { index: 0, text: 56 }, + { index: 0, text: 59 }, - { index: 1, text: 128 }, + { index: 1, text: 133 }, - { index: 2, text: 80 }, + { index: 2, text: 84 }, - { index: 3, text: 81 }, + { index: 3, text: 85 }, - { index: 4, text: 430 }, + { index: 4, text: 437 }, - { index: 5, text: 1694 }, + { index: 5, text: 1710 }, - { index: 6, text: 1695 }, + { index: 6, text: 1713 }, - { index: 7, text: 1699 }, + { index: 7, text: 1715 }, - { index: 8, text: 90 }, + { index: 8, text: 94 }, - { index: 9, text: 178 }, + { index: 9, text: 184 }, - { index: 10, text: 1867 }, + { index: 10, text: 1883 }, ], skillMap2: [ - { index: 11, text: 1295 }, + { index: 11, text: 1307 }, - { index: 12, text: 1234 }, + { index: 12, text: 1245 }, - { index: 13, text: 1439 }, + { index: 13, text: 1451 }, ], skillMap3: [ - { index: 14, text: 683 }, + { index: 14, text: 690 }, - { index: 15, text: 1235 }, + { index: 15, text: 1246 }, ], config: [ diff --git a/src/assets/_gen_pf.js b/src/assets/_gen_pf.js index 92926815..de673d82 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":737,"type":"bool"}, + {"default":false,"name":"atk_use","title":744,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"atk_weight","title":738,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"atk_weight","title":745,"type":"float"}, - {"default":true,"name":"atk_p_use","title":729,"type":"bool"}, + {"default":true,"name":"atk_p_use","title":736,"type":"bool"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"atk_p_weight","title":730,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"atk_p_weight","title":737,"type":"float"}, - {"default":false,"name":"hp_use","title":1289,"type":"bool"}, + {"default":false,"name":"hp_use","title":1300,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"hp_weight","title":1290,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"hp_weight","title":1301,"type":"float"}, - {"default":false,"name":"hp_p_use","title":1274,"type":"bool"}, + {"default":false,"name":"hp_p_use","title":1285,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"hp_p_weight","title":1275,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"hp_p_weight","title":1286,"type":"float"}, - {"default":false,"name":"def_use","title":1760,"type":"bool"}, + {"default":false,"name":"def_use","title":1776,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"def_weight","title":1761,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"def_weight","title":1777,"type":"float"}, - {"default":false,"name":"def_p_use","title":1755,"type":"bool"}, + {"default":false,"name":"def_p_use","title":1771,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"def_p_weight","title":1756,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"def_p_weight","title":1772,"type":"float"}, - {"default":true,"name":"critical_use","title":1004,"type":"bool"}, + {"default":true,"name":"critical_use","title":1012,"type":"bool"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"critical_weight","title":1005,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"critical_weight","title":1013,"type":"float"}, - {"default":true,"name":"critical_damage_use","title":998,"type":"bool"}, + {"default":true,"name":"critical_damage_use","title":1006,"type":"bool"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"critical_damage_weight","title":999,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"critical_damage_weight","title":1007,"type":"float"}, - {"default":false,"name":"elemental_mastery_use","title":238,"type":"bool"}, + {"default":false,"name":"elemental_mastery_use","title":244,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"elemental_mastery_weight","title":239,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"elemental_mastery_weight","title":245,"type":"float"}, - {"default":false,"name":"recharge_use","title":197,"type":"bool"}, + {"default":false,"name":"recharge_use","title":203,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"recharge_weight","title":198,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"recharge_weight","title":204,"type":"float"}, ], }, diff --git a/src/assets/_gen_tf.js b/src/assets/_gen_tf.js index 1379933b..791310ff 100644 --- a/src/assets/_gen_tf.js +++ b/src/assets/_gen_tf.js @@ -202,6 +202,8 @@ import ExpectMelt_image from "@image/misc/sword" + + @@ -212,8 +214,8 @@ export default { "MaxATK": { name: "MaxATK", - nameLocale: 1020, - description: 1017, + nameLocale: 1029, + description: 1026, tags: [ "攻击", @@ -230,8 +232,8 @@ export default { "MaxDEF": { name: "MaxDEF", - nameLocale: 1025, - description: 1019, + nameLocale: 1034, + description: 1028, tags: [ "防御", @@ -248,8 +250,8 @@ export default { "MaxHP": { name: "MaxHP", - nameLocale: 1022, - description: 1018, + nameLocale: 1031, + description: 1027, tags: [ "生命", @@ -266,8 +268,8 @@ export default { "MaxEM": { name: "MaxEM", - nameLocale: 1011, - description: 1015, + nameLocale: 1019, + description: 1024, tags: [ "元素精通", @@ -284,8 +286,8 @@ export default { "MaxRecharge": { name: "MaxRecharge", - nameLocale: 1012, - description: 1014, + nameLocale: 1020, + description: 1023, tags: [ "", @@ -302,8 +304,8 @@ export default { "PyroDamage": { name: "PyroDamage", - nameLocale: 1169, - description: 1170, + nameLocale: 1179, + description: 1180, tags: [ "输出", @@ -315,15 +317,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1397,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1409,"type":"option"}, ], }, "CryoDamage": { name: "CryoDamage", - nameLocale: 269, - description: 270, + nameLocale: 275, + description: 276, tags: [ "输出", @@ -335,15 +337,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1397,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1409,"type":"option"}, ], }, "HydroDamage": { name: "HydroDamage", - nameLocale: 1086, - description: 1087, + nameLocale: 1095, + description: 1096, tags: [ "输出", @@ -355,15 +357,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1397,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1409,"type":"option"}, ], }, "ElectroDamage": { name: "ElectroDamage", - nameLocale: 1786, - description: 1787, + nameLocale: 1802, + description: 1803, tags: [ "输出", @@ -375,15 +377,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1397,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1409,"type":"option"}, ], }, "AnemoDamage": { name: "AnemoDamage", - nameLocale: 1824, - description: 1826, + nameLocale: 1840, + description: 1842, tags: [ "输出", @@ -395,15 +397,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1397,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1409,"type":"option"}, ], }, "DendroDamage": { name: "DendroDamage", - nameLocale: 1468, - description: 1469, + nameLocale: 1482, + description: 1483, tags: [ "", @@ -415,15 +417,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1397,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1409,"type":"option"}, ], }, "GeoDamage": { name: "GeoDamage", - nameLocale: 597, - description: 598, + nameLocale: 604, + description: 605, tags: [ "输出", @@ -435,15 +437,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1397,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1409,"type":"option"}, ], }, "PhysicalDamage": { name: "PhysicalDamage", - nameLocale: 1213, - description: 1214, + nameLocale: 1224, + description: 1225, tags: [ "输出", @@ -455,15 +457,15 @@ export default { config: [ - {"default":0,"name":"t","options":["期望","最大值"],"title":1397,"type":"option"}, + {"default":0,"name":"t","options":["期望","最大值"],"title":1409,"type":"option"}, ], }, "MaxVaporize": { name: "MaxVaporize", - nameLocale: 1023, - description: 184, + nameLocale: 1032, + description: 190, tags: [ "输出", @@ -475,17 +477,17 @@ export default { config: [ - {"default":0,"name":"t","options":["火","水"],"title":1571,"type":"option"}, + {"default":0,"name":"t","options":["火","水"],"title":1586,"type":"option"}, - {"default":"NormalAttack","name":"skill","title":682,"type":"skill4"}, + {"default":"NormalAttack","name":"skill","title":689,"type":"skill4"}, ], }, "MaxMelt": { name: "MaxMelt", - nameLocale: 1024, - description: 186, + nameLocale: 1033, + description: 192, tags: [ "输出", @@ -497,17 +499,17 @@ export default { config: [ - {"default":0,"name":"t","options":["火","冰"],"title":1571,"type":"option"}, + {"default":0,"name":"t","options":["火","冰"],"title":1586,"type":"option"}, - {"default":"NormalAttack","name":"skill","title":682,"type":"skill4"}, + {"default":"NormalAttack","name":"skill","title":689,"type":"skill4"}, ], }, "ExpectVaporize": { name: "ExpectVaporize", - nameLocale: 1032, - description: 185, + nameLocale: 1041, + description: 191, tags: [ "输出", @@ -519,17 +521,17 @@ export default { config: [ - {"default":0,"name":"t","options":["火","水"],"title":1571,"type":"option"}, + {"default":0,"name":"t","options":["火","水"],"title":1586,"type":"option"}, - {"default":"NormalAttack","name":"skill","title":682,"type":"skill4"}, + {"default":"NormalAttack","name":"skill","title":689,"type":"skill4"}, ], }, "ExpectMelt": { name: "ExpectMelt", - nameLocale: 1033, - description: 187, + nameLocale: 1042, + description: 193, tags: [ "输出", @@ -541,17 +543,17 @@ export default { config: [ - {"default":0,"name":"t","options":["火","冰"],"title":1571,"type":"option"}, + {"default":0,"name":"t","options":["火","冰"],"title":1586,"type":"option"}, - {"default":"NormalAttack","name":"skill","title":682,"type":"skill4"}, + {"default":"NormalAttack","name":"skill","title":689,"type":"skill4"}, ], }, "AlbedoDefault": { name: "AlbedoDefault", - nameLocale: 1768, - description: 847, + nameLocale: 1784, + description: 854, tags: [ "输出", @@ -568,8 +570,8 @@ export default { "AloyDefault": { name: "AloyDefault", - nameLocale: 459, - description: 969, + nameLocale: 465, + description: 977, tags: [ "输出", @@ -586,8 +588,8 @@ export default { "AmberDefault": { name: "AmberDefault", - nameLocale: 557, - description: 972, + nameLocale: 564, + description: 980, tags: [ "输出", @@ -604,8 +606,8 @@ export default { "AratakiIttoDefault": { name: "AratakiIttoDefault", - nameLocale: 1472, - description: 1474, + nameLocale: 1487, + description: 1489, tags: [ "输出", @@ -622,8 +624,8 @@ export default { "BarbaraDefault": { name: "BarbaraDefault", - nameLocale: 1457, - description: 183, + nameLocale: 1471, + description: 189, tags: [ "治疗", @@ -642,8 +644,8 @@ export default { "BeidouDefault": { name: "BeidouDefault", - nameLocale: 331, - description: 848, + nameLocale: 337, + description: 855, tags: [ "输出", @@ -660,8 +662,8 @@ export default { "BennettDamage": { name: "BennettDamage", - nameLocale: 1249, - description: 844, + nameLocale: 1260, + description: 851, tags: [ "辅助", @@ -677,17 +679,17 @@ export default { config: [ - {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":241,"type":"float"}, + {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":248,"type":"float"}, - {"default":0.9,"max":1.0,"min":0.0,"name":"other_dmg_ratio","title":163,"type":"float"}, + {"default":0.9,"max":1.0,"min":0.0,"name":"other_dmg_ratio","title":168,"type":"float"}, ], }, "BennettDefault": { name: "BennettDefault", - nameLocale: 1250, - description: 960, + nameLocale: 1261, + description: 968, tags: [ "辅助", @@ -699,15 +701,15 @@ export default { config: [ - {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":241,"type":"float"}, + {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":248,"type":"float"}, ], }, "ChongyunDefault": { name: "ChongyunDefault", - nameLocale: 1682, - description: 846, + nameLocale: 1698, + description: 853, tags: [ "副C", @@ -726,8 +728,8 @@ export default { "DilucDefault": { name: "DilucDefault", - nameLocale: 1651, - description: 986, + nameLocale: 1667, + description: 994, tags: [ "输出", @@ -739,17 +741,17 @@ export default { config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1521,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1536,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1513,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1528,"type":"float"}, ], }, "DionaDefault": { name: "DionaDefault", - nameLocale: 1654, - description: 953, + nameLocale: 1670, + description: 961, tags: [ "治疗", @@ -763,15 +765,15 @@ export default { config: [ - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":241,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":248,"type":"float"}, ], }, "EulaDefault": { name: "EulaDefault", - nameLocale: 173, - description: 840, + nameLocale: 179, + description: 847, tags: [ "输出", @@ -788,8 +790,8 @@ export default { "FischlDefault": { name: "FischlDefault", - nameLocale: 1507, - description: 841, + nameLocale: 1522, + description: 848, tags: [ "输出", @@ -806,8 +808,8 @@ export default { "GanyuDefault": { name: "GanyuDefault", - nameLocale: 1269, - description: 981, + nameLocale: 1280, + description: 989, tags: [ "输出", @@ -819,15 +821,15 @@ export default { config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1521,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1536,"type":"float"}, ], }, "GorouDefault": { name: "GorouDefault", - nameLocale: 157, - description: 850, + nameLocale: 162, + description: 857, tags: [ "辅助", @@ -839,15 +841,15 @@ export default { config: [ - {"default":1.7,"max":3.0,"min":1.0,"name":"recharge_demand","title":242,"type":"float"}, + {"default":1.7,"max":3.0,"min":1.0,"name":"recharge_demand","title":247,"type":"float"}, ], }, "HuTaoDefault": { name: "HuTaoDefault", - nameLocale: 1449, - description: 965, + nameLocale: 1461, + description: 973, tags: [ "输出", @@ -859,17 +861,17 @@ export default { config: [ - {"default":0.5,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1513,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1528,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1521,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1536,"type":"float"}, ], }, "JeanDefault": { name: "JeanDefault", - nameLocale: 1261, - description: 842, + nameLocale: 1272, + description: 849, tags: [ "副C", @@ -883,17 +885,17 @@ export default { config: [ - {"default":0.5,"max":1.0,"min":0.0,"name":"damage_weight","title":1102,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"damage_weight","title":1111,"type":"float"}, - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":242,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":247,"type":"float"}, ], }, "KaedeharaKazuhaDamage": { name: "KaedeharaKazuhaDamage", - nameLocale: 1050, - description: 976, + nameLocale: 1059, + description: 984, tags: [ "输出", @@ -907,19 +909,19 @@ export default { config: [ - {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":241,"type":"float"}, + {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":248,"type":"float"}, - {"default":0.5,"max":1.0,"min":0.0,"name":"swirl_rate","title":679,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"swirl_rate","title":686,"type":"float"}, - {"default":0.9,"max":1.0,"min":0.0,"name":"other_dmg_ratio","title":163,"type":"float"}, + {"default":0.9,"max":1.0,"min":0.0,"name":"other_dmg_ratio","title":168,"type":"float"}, ], }, "KaedeharaKazuhaDefault": { name: "KaedeharaKazuhaDefault", - nameLocale: 1049, - description: 959, + nameLocale: 1058, + description: 967, tags: [ "辅助", @@ -931,15 +933,15 @@ export default { config: [ - {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":241,"type":"float"}, + {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":248,"type":"float"}, ], }, "KaeyaDefault": { name: "KaeyaDefault", - nameLocale: 297, - description: 843, + nameLocale: 303, + description: 850, tags: [ "输出", @@ -956,8 +958,8 @@ export default { "KamisatoAyakaDefault": { name: "KamisatoAyakaDefault", - nameLocale: 1366, - description: 839, + nameLocale: 1378, + description: 846, tags: [ "输出", @@ -969,15 +971,15 @@ export default { config: [ - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":241,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":248,"type":"float"}, ], }, "KamisatoAyakaDps": { name: "KamisatoAyakaDps", - nameLocale: 1364, - description: 1031, + nameLocale: 1376, + description: 1040, tags: [ "输出", @@ -994,8 +996,8 @@ export default { "KamisatoAyatoDefault": { name: "KamisatoAyatoDefault", - nameLocale: 1360, - description: 952, + nameLocale: 1372, + description: 960, tags: [ "输出", @@ -1012,8 +1014,8 @@ export default { "KeqingDefault": { name: "KeqingDefault", - nameLocale: 313, - description: 990, + nameLocale: 319, + description: 998, tags: [ "输出", @@ -1025,15 +1027,15 @@ export default { config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"aggravate_rate","title":1614,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"aggravate_rate","title":1630,"type":"float"}, ], }, "KleeDefault": { name: "KleeDefault", - nameLocale: 382, - description: 385, + nameLocale: 388, + description: 391, tags: [ "输出", @@ -1045,15 +1047,15 @@ export default { config: [ - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":241,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":248,"type":"float"}, ], }, "KujouSaraDamage": { name: "KujouSaraDamage", - nameLocale: 113, - description: 318, + nameLocale: 118, + description: 324, tags: [ "输出", @@ -1067,15 +1069,15 @@ export default { config: [ - {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":241,"type":"float"}, + {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":248,"type":"float"}, ], }, "KujouSaraDefault": { name: "KujouSaraDefault", - nameLocale: 114, - description: 991, + nameLocale: 119, + description: 999, tags: [ "辅助", @@ -1092,8 +1094,8 @@ export default { "LisaDefault": { name: "LisaDefault", - nameLocale: 104, - description: 966, + nameLocale: 108, + description: 974, tags: [ "输出", @@ -1105,15 +1107,15 @@ export default { config: [ - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":242,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":247,"type":"float"}, ], }, "MonaDefault": { name: "MonaDefault", - nameLocale: 1481, - description: 982, + nameLocale: 1496, + description: 990, tags: [ "输出", @@ -1127,15 +1129,15 @@ export default { config: [ - {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":242,"type":"float"}, + {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":247,"type":"float"}, ], }, "NingguangDefault": { name: "NingguangDefault", - nameLocale: 291, - description: 967, + nameLocale: 297, + description: 975, tags: [ "输出", @@ -1152,8 +1154,8 @@ export default { "NoelleDefault": { name: "NoelleDefault", - nameLocale: 1594, - description: 984, + nameLocale: 1609, + description: 992, tags: [ "输出", @@ -1170,8 +1172,8 @@ export default { "QiqiDefault": { name: "QiqiDefault", - nameLocale: 71, - description: 955, + nameLocale: 74, + description: 963, tags: [ "治疗", @@ -1183,15 +1185,15 @@ export default { config: [ - {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":242,"type":"float"}, + {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":247,"type":"float"}, ], }, "RaidenShogunDefault": { name: "RaidenShogunDefault", - nameLocale: 1801, - description: 988, + nameLocale: 1817, + description: 996, tags: [ "输出", @@ -1203,15 +1205,15 @@ export default { config: [ - {"default":2.6,"max":4.0,"min":1.0,"name":"recharge_demand","title":241,"type":"float"}, + {"default":2.6,"max":4.0,"min":1.0,"name":"recharge_demand","title":248,"type":"float"}, ], }, "RazorDefault": { name: "RazorDefault", - nameLocale: 1794, - description: 980, + nameLocale: 1810, + description: 988, tags: [ "输出", @@ -1228,8 +1230,8 @@ export default { "RosariaDefault": { name: "RosariaDefault", - nameLocale: 1425, - description: 963, + nameLocale: 1437, + description: 971, tags: [ "辅助", @@ -1248,8 +1250,8 @@ export default { "SangonomiyaKokomiDefault": { name: "SangonomiyaKokomiDefault", - nameLocale: 1242, - description: 974, + nameLocale: 1253, + description: 982, tags: [ "输出", @@ -1268,8 +1270,8 @@ export default { "SayuDefault": { name: "SayuDefault", - nameLocale: 820, - description: 968, + nameLocale: 827, + description: 976, tags: [ "输出", @@ -1283,15 +1285,15 @@ export default { config: [ - {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":242,"type":"float"}, + {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":247,"type":"float"}, ], }, "ShenheDefault": { name: "ShenheDefault", - nameLocale: 1302, - description: 961, + nameLocale: 1314, + description: 969, tags: [ "辅助", @@ -1303,15 +1305,15 @@ export default { config: [ - {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":242,"type":"float"}, + {"default":1.6,"max":3.0,"min":1.0,"name":"recharge_demand","title":247,"type":"float"}, ], }, "SucroseDefault": { name: "SucroseDefault", - nameLocale: 1334, - description: 962, + nameLocale: 1346, + description: 970, tags: [ "辅助", @@ -1323,15 +1325,15 @@ export default { config: [ - {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":242,"type":"float"}, + {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":247,"type":"float"}, ], }, "TartagliaDefault": { name: "TartagliaDefault", - nameLocale: 1645, - description: 985, + nameLocale: 1661, + description: 993, tags: [ "输出", @@ -1348,8 +1350,8 @@ export default { "ThomaDefault": { name: "ThomaDefault", - nameLocale: 672, - description: 958, + nameLocale: 679, + description: 966, tags: [ "辅助", @@ -1361,15 +1363,15 @@ export default { config: [ - {"default":2.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":242,"type":"float"}, + {"default":2.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":247,"type":"float"}, ], }, "VentiDefault": { name: "VentiDefault", - nameLocale: 1153, - description: 977, + nameLocale: 1163, + description: 985, tags: [ "输出", @@ -1381,15 +1383,15 @@ export default { config: [ - {"default":0.7,"max":1.0,"min":0.0,"name":"swirl_rate","title":676,"type":"float"}, + {"default":0.7,"max":1.0,"min":0.0,"name":"swirl_rate","title":683,"type":"float"}, ], }, "XianglingDefault": { name: "XianglingDefault", - nameLocale: 1861, - description: 978, + nameLocale: 1877, + description: 986, tags: [ "输出", @@ -1401,21 +1403,21 @@ export default { config: [ - {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":242,"type":"float"}, + {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":247,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1521,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1536,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1513,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1528,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"overload_rate","title":1620,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"overload_rate","title":1636,"type":"float"}, ], }, "XiaoDefault": { name: "XiaoDefault", - nameLocale: 1870, - description: 989, + nameLocale: 1886, + description: 997, tags: [ "输出", @@ -1432,8 +1434,8 @@ export default { "XingqiuDefault": { name: "XingqiuDefault", - nameLocale: 1526, - description: 845, + nameLocale: 1541, + description: 852, tags: [ "输出", @@ -1445,15 +1447,15 @@ export default { config: [ - {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":242,"type":"float"}, + {"default":1.8,"max":3.0,"min":1.0,"name":"recharge_demand","title":247,"type":"float"}, ], }, "XinyanDamage": { name: "XinyanDamage", - nameLocale: 1639, - description: 957, + nameLocale: 1655, + description: 965, tags: [ "输出", @@ -1470,8 +1472,8 @@ export default { "XinyanDefault": { name: "XinyanDefault", - nameLocale: 1638, - description: 964, + nameLocale: 1654, + description: 972, tags: [ "辅助", @@ -1483,17 +1485,17 @@ export default { config: [ - {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":242,"type":"float"}, + {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":247,"type":"float"}, - {"default":0.5,"max":1.0,"min":0.0,"name":"damage_demand","title":177,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"damage_demand","title":183,"type":"float"}, ], }, "YaeMikoDefault": { name: "YaeMikoDefault", - nameLocale: 247, - description: 717, + nameLocale: 253, + description: 724, tags: [ "输出", @@ -1505,21 +1507,21 @@ export default { config: [ - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_requirement","title":242,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_requirement","title":247,"type":"float"}, - {"default":0,"name":"combo","options":["不站场平A","站场平A"],"title":1647,"type":"option"}, + {"default":0,"name":"combo","options":["不站场平A","站场平A"],"title":1663,"type":"option"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"aggravate_rate","title":1614,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"aggravate_rate","title":1630,"type":"float"}, - {"default":0.0,"max":4.0,"min":0.0,"name":"hyperbloom_rate","title":1615,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"hyperbloom_rate","title":1631,"type":"float"}, ], }, "YanfeiDefault": { name: "YanfeiDefault", - nameLocale: 1197, - description: 979, + nameLocale: 1208, + description: 987, tags: [ "输出", @@ -1536,8 +1538,8 @@ export default { "YelanDefault": { name: "YelanDefault", - nameLocale: 488, - description: 970, + nameLocale: 494, + description: 978, tags: [ "输出", @@ -1549,17 +1551,17 @@ export default { config: [ - {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":241,"type":"float"}, + {"default":1.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":248,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1513,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1528,"type":"float"}, ], }, "YoimiyaDefault": { name: "YoimiyaDefault", - nameLocale: 573, - description: 973, + nameLocale: 580, + description: 981, tags: [ "输出", @@ -1571,17 +1573,17 @@ export default { config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1513,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1528,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1521,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1536,"type":"float"}, ], }, "YunjinDefault": { name: "YunjinDefault", - nameLocale: 143, - description: 849, + nameLocale: 148, + description: 856, tags: [ "辅助", @@ -1593,15 +1595,15 @@ export default { config: [ - {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":242,"type":"float"}, + {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":247,"type":"float"}, ], }, "ZhongliDefault": { name: "ZhongliDefault", - nameLocale: 1720, - description: 956, + nameLocale: 1736, + description: 964, tags: [ "爆发", @@ -1613,15 +1615,15 @@ export default { config: [ - {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":242,"type":"float"}, + {"default":1.4,"max":3.0,"min":1.0,"name":"recharge_demand","title":247,"type":"float"}, ], }, "KukiShinobuDefault": { name: "KukiShinobuDefault", - nameLocale: 107, - description: 1633, + nameLocale: 111, + description: 1649, tags: [ "辅助", @@ -1633,15 +1635,15 @@ export default { config: [ - {"default":0.6,"max":1.0,"min":0.0,"name":"e_ratio","title":12,"type":"float"}, + {"default":0.6,"max":1.0,"min":0.0,"name":"e_ratio","title":13,"type":"float"}, ], }, "ShikanoinHeizouDefault": { name: "ShikanoinHeizouDefault", - nameLocale: 1885, - description: 1634, + nameLocale: 1901, + description: 1650, tags: [ "输出", @@ -1658,8 +1660,8 @@ export default { "TighnariDefault": { name: "TighnariDefault", - nameLocale: 723, - description: 181, + nameLocale: 730, + description: 187, tags: [ "", @@ -1671,15 +1673,15 @@ export default { config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"spread_rate","title":1515,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"spread_rate","title":1530,"type":"float"}, ], }, "CynoDefault": { name: "CynoDefault", - nameLocale: 1610, - description: 668, + nameLocale: 1626, + description: 675, tags: [ "输出", @@ -1691,27 +1693,27 @@ export default { config: [ - {"default":1.3,"max":3.0,"min":1.0,"name":"recharge_requirement","title":242,"type":"float"}, + {"default":1.3,"max":3.0,"min":1.0,"name":"recharge_requirement","title":247,"type":"float"}, - {"default":0,"name":"combo","options":["乱a不取消","取消第五段"],"title":1647,"type":"option"}, + {"default":0,"name":"combo","options":["乱a不取消","取消第五段"],"title":1663,"type":"option"}, - {"default":false,"name":"until_expire","title":20,"type":"bool"}, + {"default":false,"name":"until_expire","title":21,"type":"bool"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"aggravate_rate","title":1614,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"aggravate_rate","title":1630,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"elecharged_rate","title":659,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"elecharged_rate","title":666,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"overload_rate","title":1619,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"overload_rate","title":1635,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"hyperbloom_rate","title":1615,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"hyperbloom_rate","title":1631,"type":"float"}, ], }, "NilouDefault": { name: "NilouDefault", - nameLocale: 540, - description: 971, + nameLocale: 546, + description: 979, tags: [ "", @@ -1723,23 +1725,23 @@ export default { config: [ - {"default":5.0,"max":10.0,"min":0.0,"name":"e_ratio","title":207,"type":"float"}, + {"default":5.0,"max":10.0,"min":0.0,"name":"e_ratio","title":213,"type":"float"}, - {"default":1.0,"max":10.0,"min":0.0,"name":"q_ratio","title":225,"type":"float"}, + {"default":1.0,"max":10.0,"min":0.0,"name":"q_ratio","title":231,"type":"float"}, - {"default":3.0,"max":10.0,"min":0.0,"name":"bloom_ratio","title":1420,"type":"float"}, + {"default":3.0,"max":10.0,"min":0.0,"name":"bloom_ratio","title":1432,"type":"float"}, - {"default":1000.0,"max":3000.0,"min":0.0,"name":"other_em","title":1751,"type":"float"}, + {"default":1000.0,"max":3000.0,"min":0.0,"name":"other_em","title":1767,"type":"float"}, - {"default":7.0,"max":10.0,"min":0.0,"name":"other_bloom_ratio","title":1752,"type":"float"}, + {"default":7.0,"max":10.0,"min":0.0,"name":"other_bloom_ratio","title":1768,"type":"float"}, ], }, "NahidaDefault": { name: "NahidaDefault", - nameLocale: 1405, - description: 188, + nameLocale: 1417, + description: 194, tags: [ "输出", @@ -1751,23 +1753,23 @@ export default { config: [ - {"default":0,"max":1500,"min":0,"name":"em_requirement","title":1399,"type":"int"}, + {"default":0,"max":1500,"min":0,"name":"em_requirement","title":1411,"type":"int"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"spread_rate","title":1515,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"spread_rate","title":1530,"type":"float"}, - {"default":0.0,"max":4.0,"min":0.0,"name":"bloom_count","title":1420,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"bloom_count","title":1432,"type":"float"}, - {"default":0.0,"max":3.0,"min":0.0,"name":"burn_duration","title":1206,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"burn_duration","title":1217,"type":"float"}, - {"default":0,"max":2,"min":0,"name":"pryo_teammate_count","title":1174,"type":"int"}, + {"default":0,"max":2,"min":0,"name":"pryo_teammate_count","title":1184,"type":"int"}, ], }, "WandererDefault": { name: "WandererDefault", - nameLocale: 1126, - description: 1579, + nameLocale: 1135, + description: 1594, tags: [ "输出", @@ -1779,29 +1781,29 @@ export default { config: [ - {"default":false,"name":"e_hydro","title":27,"type":"bool"}, + {"default":false,"name":"e_hydro","title":29,"type":"bool"}, - {"default":false,"name":"e_pyro","title":28,"type":"bool"}, + {"default":false,"name":"e_pyro","title":30,"type":"bool"}, - {"default":false,"name":"e_cryo","title":26,"type":"bool"}, + {"default":false,"name":"e_cryo","title":28,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"spd_extra","title":1823,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"spd_extra","title":1839,"type":"float"}, - {"default":1.0,"max":1.5,"min":0.5,"name":"spd_comp","title":747,"type":"float"}, + {"default":1.0,"max":1.5,"min":0.5,"name":"spd_comp","title":754,"type":"float"}, - {"default":3,"max":12,"min":0,"name":"dash_count","title":30,"type":"int"}, + {"default":3,"max":12,"min":0,"name":"dash_count","title":32,"type":"int"}, - {"default":5,"max":5,"min":0,"name":"q_count","title":15,"type":"int"}, + {"default":5,"max":5,"min":0,"name":"q_count","title":16,"type":"int"}, - {"default":12,"max":24,"min":0,"name":"swirl_count","title":678,"type":"int"}, + {"default":12,"max":24,"min":0,"name":"swirl_count","title":685,"type":"int"}, ], }, "FaruzanDamage": { name: "FaruzanDamage", - nameLocale: 1244, - description: 182, + nameLocale: 1255, + description: 188, tags: [ "", @@ -1813,15 +1815,15 @@ export default { config: [ - {"default":2.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":242,"type":"float"}, + {"default":2.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":247,"type":"float"}, ], }, "AlhaithamDefault": { name: "AlhaithamDefault", - nameLocale: 1455, - description: 167, + nameLocale: 1467, + description: 172, tags: [ "", @@ -1833,21 +1835,21 @@ export default { config: [ - {"default":5.0,"max":10.0,"min":0.0,"name":"charged_ratio","title":1706,"type":"float"}, + {"default":5.0,"max":10.0,"min":0.0,"name":"charged_ratio","title":1722,"type":"float"}, - {"default":5.0,"max":10.0,"min":0.0,"name":"e_ratio","title":218,"type":"float"}, + {"default":5.0,"max":10.0,"min":0.0,"name":"e_ratio","title":224,"type":"float"}, - {"default":1.0,"max":10.0,"min":0.0,"name":"q_ratio","title":227,"type":"float"}, + {"default":1.0,"max":10.0,"min":0.0,"name":"q_ratio","title":233,"type":"float"}, - {"default":0.3,"max":1.0,"min":0.0,"name":"spread_ratio","title":1515,"type":"float"}, + {"default":0.3,"max":1.0,"min":0.0,"name":"spread_ratio","title":1530,"type":"float"}, ], }, "DehyaDefault": { name: "DehyaDefault", - nameLocale: 1657, - description: 987, + nameLocale: 1673, + description: 995, tags: [ "输出", @@ -1859,19 +1861,19 @@ export default { config: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1521,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"melt_rate","title":1536,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1513,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"vaporize_rate","title":1528,"type":"float"}, - {"default":6,"max":20,"min":0,"name":"e_count","title":99,"type":"int"}, + {"default":6,"max":20,"min":0,"name":"e_count","title":103,"type":"int"}, ], }, "MikaDefault": { name: "MikaDefault", - nameLocale: 1396, - description: 954, + nameLocale: 1408, + description: 962, tags: [ "治疗", @@ -1885,17 +1887,17 @@ export default { config: [ - {"default":2.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":241,"type":"float"}, + {"default":2.0,"max":3.0,"min":1.0,"name":"recharge_demand","title":248,"type":"float"}, - {"default":0.6,"max":1.0,"min":0.0,"name":"crit_demand","title":1006,"type":"float"}, + {"default":0.6,"max":1.0,"min":0.0,"name":"crit_demand","title":1014,"type":"float"}, ], }, "FreminetDefault": { name: "FreminetDefault", - nameLocale: 1505, - description: 983, + nameLocale: 1520, + description: 991, tags: [ "", @@ -1912,8 +1914,8 @@ export default { "LyneyDefault": { name: "LyneyDefault", - nameLocale: 1044, - description: 975, + nameLocale: 1053, + description: 983, tags: [ "", @@ -1930,8 +1932,8 @@ export default { "NeuvilletteDefault": { name: "NeuvilletteDefault", - nameLocale: 1677, - description: 1678, + nameLocale: 1693, + description: 1694, tags: [ "", @@ -1948,8 +1950,8 @@ export default { "WriothesleyDefault": { name: "WriothesleyDefault", - nameLocale: 1486, - description: 1016, + nameLocale: 1501, + description: 1025, tags: [ "", @@ -1964,4 +1966,22 @@ export default { ], }, + "FurinaDefault": { + name: "FurinaDefault", + nameLocale: 1469, + description: 1022, + tags: [ + + "", + + ], + "for": "Furina", + + badge: getImage("UI_AvatarIcon_Furina"), + + config: [ + + ], + }, + } \ No newline at end of file diff --git a/src/assets/_gen_weapon.js b/src/assets/_gen_weapon.js index 57cfc7a8..9fee457f 100644 --- a/src/assets/_gen_weapon.js +++ b/src/assets/_gen_weapon.js @@ -362,18 +362,18 @@ export default { MistsplitterReforged: { name: "MistsplitterReforged", internalName: "Sword_Narukami", - nameLocale: 1807, + nameLocale: 1823, star: 5, url: imageUrl("Sword_Narukami"), type: "Sword", - effect: 1495, + effect: 1510, configs: [ - {"default":3,"max":3,"min":0,"name":"emblem_level","title":51,"type":"int"}, + {"default":3,"max":3,"min":0,"name":"emblem_level","title":54,"type":"int"}, ], @@ -382,13 +382,13 @@ export default { AquilaFavonia: { name: "AquilaFavonia", internalName: "Sword_Falcon", - nameLocale: 1846, + nameLocale: 1862, star: 5, url: imageUrl("Sword_Falcon"), type: "Sword", - effect: 735, + effect: 742, configs: null, @@ -398,20 +398,20 @@ export default { SummitShaper: { name: "SummitShaper", internalName: "Sword_Kunwu", - nameLocale: 770, + nameLocale: 777, star: 5, url: imageUrl("Sword_Kunwu"), type: "Sword", - effect: 702, + effect: 709, configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1552,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":705,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":712,"type":"float"}, ], @@ -420,13 +420,13 @@ export default { SkywardBlade: { name: "SkywardBlade", internalName: "Sword_Dvalin", - nameLocale: 503, + nameLocale: 509, star: 5, url: imageUrl("Sword_Dvalin"), type: "Sword", - effect: 1001, + effect: 1009, configs: null, @@ -436,18 +436,18 @@ export default { FreedomSworn: { name: "FreedomSworn", internalName: "Sword_Widsith", - nameLocale: 1461, + nameLocale: 1475, star: 5, url: imageUrl("Sword_Widsith"), type: "Sword", - effect: 1849, + effect: 1865, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1551,"type":"float"}, ], @@ -456,13 +456,13 @@ export default { PrimordialJadeCutter: { name: "PrimordialJadeCutter", internalName: "Sword_Morax", - nameLocale: 1344, + nameLocale: 1356, star: 5, url: imageUrl("Sword_Morax"), type: "Sword", - effect: 1288, + effect: 1299, configs: null, @@ -472,13 +472,13 @@ export default { TheFlute: { name: "TheFlute", internalName: "Sword_Troupe", - nameLocale: 1387, + nameLocale: 1399, star: 4, url: imageUrl("Sword_Troupe"), type: "Sword", - effect: 946, + effect: 954, configs: null, @@ -488,13 +488,13 @@ export default { TheBlackSword: { name: "TheBlackSword", internalName: "Sword_Bloodstained", - nameLocale: 1896, + nameLocale: 1912, star: 4, url: imageUrl("Sword_Bloodstained"), type: "Sword", - effect: 932, + effect: 940, configs: null, @@ -504,18 +504,18 @@ export default { TheAlleyFlash: { name: "TheAlleyFlash", internalName: "Sword_Outlaw", - nameLocale: 994, + nameLocale: 1002, star: 4, url: imageUrl("Sword_Outlaw"), type: "Sword", - effect: 1568, + effect: 1583, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1551,"type":"float"}, ], @@ -524,7 +524,7 @@ export default { SwordOfDescension: { name: "SwordOfDescension", internalName: "Sword_Psalmus", - nameLocale: 1776, + nameLocale: 1792, star: 4, url: imageUrl("Sword_Psalmus"), type: "Sword", @@ -540,13 +540,13 @@ export default { SacrificialSword: { name: "SacrificialSword", internalName: "Sword_Fossil", - nameLocale: 1373, + nameLocale: 1385, star: 4, url: imageUrl("Sword_Fossil"), type: "Sword", - effect: 219, + effect: 225, configs: null, @@ -556,13 +556,13 @@ export default { RoyalLongsword: { name: "RoyalLongsword", internalName: "Sword_Theocrat", - nameLocale: 566, + nameLocale: 573, star: 4, url: imageUrl("Sword_Theocrat"), type: "Sword", - effect: 745, + effect: 752, configs: null, @@ -572,18 +572,18 @@ export default { PrototypeRancour: { name: "PrototypeRancour", internalName: "Sword_Proto", - nameLocale: 1586, + nameLocale: 1601, star: 4, url: imageUrl("Sword_Proto"), type: "Sword", - effect: 947, + effect: 955, configs: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1552,"type":"float"}, ], @@ -592,13 +592,13 @@ export default { AmenomaKageuchi: { name: "AmenomaKageuchi", internalName: "Sword_Bakufu", - nameLocale: 501, + nameLocale: 507, star: 4, url: imageUrl("Sword_Bakufu"), type: "Sword", - effect: 785, + effect: 792, configs: null, @@ -608,18 +608,18 @@ export default { LionsRoar: { name: "LionsRoar", internalName: "Sword_Rockkiller", - nameLocale: 335, + nameLocale: 341, star: 4, url: imageUrl("Sword_Rockkiller"), type: "Sword", - effect: 584, + effect: 591, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1551,"type":"float"}, ], @@ -628,18 +628,18 @@ export default { IronSting: { name: "IronSting", internalName: "Sword_Exotic", - nameLocale: 1726, + nameLocale: 1742, star: 4, url: imageUrl("Sword_Exotic"), type: "Sword", - effect: 1667, + effect: 1683, configs: [ - {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, + {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1552,"type":"float"}, ], @@ -648,13 +648,13 @@ export default { FesteringDesire: { name: "FesteringDesire", internalName: "Sword_Magnum", - nameLocale: 1451, + nameLocale: 1463, star: 4, url: imageUrl("Sword_Magnum"), type: "Sword", - effect: 221, + effect: 227, configs: null, @@ -664,13 +664,13 @@ export default { FavoniusSword: { name: "FavoniusSword", internalName: "Sword_Zephyrus", - nameLocale: 1553, + nameLocale: 1568, star: 4, url: imageUrl("Sword_Zephyrus"), type: "Sword", - effect: 746, + effect: 753, configs: null, @@ -680,18 +680,18 @@ export default { CinnabarSpindle: { name: "CinnabarSpindle", internalName: "Sword_Opus", - nameLocale: 1642, + nameLocale: 1658, star: 4, url: imageUrl("Sword_Opus"), type: "Sword", - effect: 220, + effect: 226, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1551,"type":"float"}, ], @@ -700,18 +700,18 @@ export default { BlackcliffLongsword: { name: "BlackcliffLongsword", internalName: "Sword_Blackrock", - nameLocale: 1901, + nameLocale: 1917, star: 4, url: imageUrl("Sword_Blackrock"), type: "Sword", - effect: 301, + effect: 308, configs: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1552,"type":"float"}, ], @@ -720,18 +720,18 @@ export default { HarbingerOfDawn: { name: "HarbingerOfDawn", internalName: "Sword_Dawn", - nameLocale: 1895, + nameLocale: 1911, star: 3, url: imageUrl("Sword_Dawn"), type: "Sword", - effect: 1291, + effect: 1303, configs: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1551,"type":"float"}, ], @@ -740,13 +740,13 @@ export default { FilletBlade: { name: "FilletBlade", internalName: "Sword_Sashimi", - nameLocale: 386, + nameLocale: 392, star: 3, url: imageUrl("Sword_Sashimi"), type: "Sword", - effect: 741, + effect: 748, configs: null, @@ -756,18 +756,18 @@ export default { SkyriderSword: { name: "SkyriderSword", internalName: "Sword_Mitsurugi", - nameLocale: 1851, + nameLocale: 1867, star: 3, url: imageUrl("Sword_Mitsurugi"), type: "Sword", - effect: 794, + effect: 801, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1551,"type":"float"}, ], @@ -776,18 +776,18 @@ export default { DarkIronSword: { name: "DarkIronSword", internalName: "Sword_Darker", - nameLocale: 995, + nameLocale: 1003, star: 3, url: imageUrl("Sword_Darker"), type: "Sword", - effect: 1578, + effect: 1593, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1551,"type":"float"}, ], @@ -796,18 +796,18 @@ export default { CoolSteel: { name: "CoolSteel", internalName: "Sword_Steel", - nameLocale: 284, + nameLocale: 290, star: 3, url: imageUrl("Sword_Steel"), type: "Sword", - effect: 577, + effect: 584, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1551,"type":"float"}, ], @@ -816,13 +816,13 @@ export default { TravelersHandySword: { name: "TravelersHandySword", internalName: "Sword_Traveler", - nameLocale: 804, + nameLocale: 811, star: 3, url: imageUrl("Sword_Traveler"), type: "Sword", - effect: 1501, + effect: 1516, configs: null, @@ -832,7 +832,7 @@ export default { SilverSword: { name: "SilverSword", internalName: "Sword_Silver", - nameLocale: 1727, + nameLocale: 1743, star: 2, url: imageUrl("Sword_Silver"), type: "Sword", @@ -846,7 +846,7 @@ export default { DullBlade: { name: "DullBlade", internalName: "Sword_Blunt", - nameLocale: 818, + nameLocale: 825, star: 1, url: imageUrl("Sword_Blunt"), type: "Sword", @@ -860,18 +860,18 @@ export default { HaranGeppakuFutsu: { name: "HaranGeppakuFutsu", internalName: "Sword_Amenoma", - nameLocale: 1111, + nameLocale: 1120, star: 5, url: imageUrl("Sword_Amenoma"), type: "Sword", - effect: 1497, + effect: 1512, configs: [ - {"default":2.0,"max":2.0,"min":0.0,"name":"stack","title":32,"type":"float"}, + {"default":2.0,"max":2.0,"min":0.0,"name":"stack","title":35,"type":"float"}, ], @@ -880,18 +880,18 @@ export default { CursedBlade: { name: "CursedBlade", internalName: "Sword_Youtou", - nameLocale: 1388, + nameLocale: 1400, star: 4, url: imageUrl("Sword_Youtou"), type: "Sword", - effect: 926, + effect: 934, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1551,"type":"float"}, ], @@ -900,7 +900,7 @@ export default { SapwoodBlade: { name: "SapwoodBlade", internalName: "Sword_Arakalari", - nameLocale: 355, + nameLocale: 361, star: 4, url: imageUrl("Sword_Arakalari"), type: "Sword", @@ -909,7 +909,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1551,"type":"float"}, ], @@ -918,18 +918,18 @@ export default { XiphosMoonlight: { name: "XiphosMoonlight", internalName: "Sword_Pleroma", - nameLocale: 1551, + nameLocale: 1566, star: 4, url: imageUrl("Sword_Pleroma"), type: "Sword", - effect: 1079, + effect: 1088, configs: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1551,"type":"float"}, ], @@ -938,18 +938,18 @@ export default { KeyOfKhajNisut: { name: "KeyOfKhajNisut", internalName: "Sword_Deshret", - nameLocale: 445, + nameLocale: 451, star: 5, url: imageUrl("Sword_Deshret"), type: "Sword", - effect: 1286, + effect: 1297, configs: [ - {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, + {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1552,"type":"float"}, ], @@ -958,18 +958,18 @@ export default { ToukabouShigure: { name: "ToukabouShigure", internalName: "Sword_Kasabouzu", - nameLocale: 98, + nameLocale: 102, star: 4, url: imageUrl("Sword_Kasabouzu"), type: "Sword", - effect: 740, + effect: 747, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1551,"type":"float"}, ], @@ -978,7 +978,7 @@ export default { LightOfFoliarIncision: { name: "LightOfFoliarIncision", internalName: "Sword_Ayus", - nameLocale: 1540, + nameLocale: 1555, star: 5, url: imageUrl("Sword_Ayus"), type: "Sword", @@ -987,7 +987,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1551,"type":"float"}, ], @@ -996,20 +996,20 @@ export default { WolfFang: { name: "WolfFang", internalName: "Sword_Boreas", - nameLocale: 1219, + nameLocale: 1230, star: 4, url: imageUrl("Sword_Boreas"), type: "Sword", - effect: 206, + effect: 212, configs: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"e_stack","title":208,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"e_stack","title":214,"type":"float"}, - {"default":0.0,"max":4.0,"min":0.0,"name":"q_stack","title":226,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"q_stack","title":232,"type":"float"}, ], @@ -1018,20 +1018,20 @@ export default { FinaleOfTheDeep: { name: "FinaleOfTheDeep", internalName: "Sword_Vorpal", - nameLocale: 1137, + nameLocale: 1146, star: 4, url: imageUrl("Sword_Vorpal"), type: "Sword", - effect: 790, + effect: 797, configs: [ - {"default":0.5,"max":1.0,"min":0.0,"name":"rate1","title":752,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"rate1","title":759,"type":"float"}, - {"default":0.5,"max":1.0,"min":0.0,"name":"rate2","title":754,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"rate2","title":762,"type":"float"}, ], @@ -1040,18 +1040,18 @@ export default { FleuveCendreFerryman: { name: "FleuveCendreFerryman", internalName: "Sword_Machination", - nameLocale: 1176, + nameLocale: 1186, star: 4, url: imageUrl("Sword_Machination"), type: "Sword", - effect: 217, + effect: 223, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1551,"type":"float"}, ], @@ -1060,18 +1060,18 @@ export default { TheDockhandsAssistant: { name: "TheDockhandsAssistant", internalName: "Sword_Mechanic", - nameLocale: 1453, + nameLocale: 1465, star: 4, url: imageUrl("Sword_Mechanic"), type: "Sword", - effect: 367, + effect: 373, configs: [ - {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":454,"type":"float"}, + {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":460,"type":"float"}, ], @@ -1080,13 +1080,13 @@ export default { SwordOfNarzissenkreuz: { name: "SwordOfNarzissenkreuz", internalName: "Sword_Purewill", - nameLocale: 1084, + nameLocale: 1093, star: 4, url: imageUrl("Sword_Purewill"), type: "Sword", - effect: 1544, + effect: 1559, configs: null, @@ -1096,20 +1096,20 @@ export default { SplendorOfTranquilWaters: { name: "SplendorOfTranquilWaters", internalName: "Sword_Regalis", - nameLocale: 1815, + nameLocale: 1831, star: 5, url: imageUrl("Sword_Regalis"), type: "Sword", - effect: 1545, + effect: 1560, configs: [ - {"default":2.0,"max":3.0,"min":0.0,"name":"stack1","title":1531,"type":"float"}, + {"default":2.0,"max":3.0,"min":0.0,"name":"stack1","title":1546,"type":"float"}, - {"default":2.0,"max":2.0,"min":0.0,"name":"stack2","title":1532,"type":"float"}, + {"default":2.0,"max":2.0,"min":0.0,"name":"stack2","title":1547,"type":"float"}, ], @@ -1118,18 +1118,18 @@ export default { WolfsGravestone: { name: "WolfsGravestone", internalName: "Claymore_Wolfmound", - nameLocale: 1220, + nameLocale: 1231, star: 5, url: imageUrl("Claymore_Wolfmound"), type: "Claymore", - effect: 736, + effect: 743, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1551,"type":"float"}, ], @@ -1138,13 +1138,13 @@ export default { SkywardPride: { name: "SkywardPride", internalName: "Claymore_Dvalin", - nameLocale: 502, + nameLocale: 508, star: 5, url: imageUrl("Claymore_Dvalin"), type: "Claymore", - effect: 1668, + effect: 1684, configs: null, @@ -1154,20 +1154,20 @@ export default { TheUnforged: { name: "TheUnforged", internalName: "Claymore_Kunwu", - nameLocale: 813, + nameLocale: 820, star: 5, url: imageUrl("Claymore_Kunwu"), type: "Claymore", - effect: 702, + effect: 709, configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1552,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":705,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":712,"type":"float"}, ], @@ -1176,18 +1176,18 @@ export default { SongOfBrokenPines: { name: "SongOfBrokenPines", internalName: "Claymore_Widsith", - nameLocale: 1040, + nameLocale: 1049, star: 5, url: imageUrl("Claymore_Widsith"), type: "Claymore", - effect: 1848, + effect: 1864, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1551,"type":"float"}, ], @@ -1196,13 +1196,13 @@ export default { RedhornStonethresher: { name: "RedhornStonethresher", internalName: "Claymore_Itadorimaru", - nameLocale: 1613, + nameLocale: 1629, star: 5, url: imageUrl("Claymore_Itadorimaru"), type: "Claymore", - effect: 1759, + effect: 1775, configs: null, @@ -1212,18 +1212,18 @@ export default { Akuoumaru: { name: "Akuoumaru", internalName: "Claymore_Maria", - nameLocale: 651, + nameLocale: 658, star: 4, url: imageUrl("Claymore_Maria"), type: "Claymore", - effect: 1740, + effect: 1756, configs: [ - {"default":40,"max":400,"min":40,"name":"energy","title":1745,"type":"int"}, + {"default":40,"max":400,"min":40,"name":"energy","title":1761,"type":"int"}, ], @@ -1232,13 +1232,13 @@ export default { RoyalGreatsword: { name: "RoyalGreatsword", internalName: "Claymore_Theocrat", - nameLocale: 561, + nameLocale: 568, star: 4, url: imageUrl("Claymore_Theocrat"), type: "Claymore", - effect: 745, + effect: 752, configs: null, @@ -1248,18 +1248,18 @@ export default { Whiteblind: { name: "Whiteblind", internalName: "Claymore_Exotic", - nameLocale: 1311, + nameLocale: 1323, star: 4, url: imageUrl("Claymore_Exotic"), type: "Claymore", - effect: 942, + effect: 950, configs: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1552,"type":"float"}, ], @@ -1268,18 +1268,18 @@ export default { TheBell: { name: "TheBell", internalName: "Claymore_Troupe", - nameLocale: 1717, + nameLocale: 1733, star: 4, url: imageUrl("Claymore_Troupe"), type: "Claymore", - effect: 361, + effect: 367, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1551,"type":"float"}, ], @@ -1288,13 +1288,13 @@ export default { SnowTombedStarsilver: { name: "SnowTombedStarsilver", internalName: "Claymore_Dragonfell", - nameLocale: 1782, + nameLocale: 1798, star: 4, url: imageUrl("Claymore_Dragonfell"), type: "Claymore", - effect: 927, + effect: 935, configs: null, @@ -1304,13 +1304,13 @@ export default { FavoniusGreatsword: { name: "FavoniusGreatsword", internalName: "Claymore_Zephyrus", - nameLocale: 1554, + nameLocale: 1569, star: 4, url: imageUrl("Claymore_Zephyrus"), type: "Claymore", - effect: 746, + effect: 753, configs: null, @@ -1320,13 +1320,13 @@ export default { KatsuragikiriNagamasa: { name: "KatsuragikiriNagamasa", internalName: "Claymore_Bakufu", - nameLocale: 1063, + nameLocale: 1072, star: 4, url: imageUrl("Claymore_Bakufu"), type: "Claymore", - effect: 224, + effect: 230, configs: null, @@ -1336,13 +1336,13 @@ export default { SacrificialGreatsword: { name: "SacrificialGreatsword", internalName: "Claymore_Fossil", - nameLocale: 1374, + nameLocale: 1386, star: 4, url: imageUrl("Claymore_Fossil"), type: "Claymore", - effect: 219, + effect: 225, configs: null, @@ -1352,18 +1352,18 @@ export default { SerpentSpine: { name: "SerpentSpine", internalName: "Claymore_Kione", - nameLocale: 1522, + nameLocale: 1537, star: 4, url: imageUrl("Claymore_Kione"), type: "Claymore", - effect: 1565, + effect: 1580, configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1552,"type":"float"}, ], @@ -1372,18 +1372,18 @@ export default { BlackcliffSlasher: { name: "BlackcliffSlasher", internalName: "Claymore_Blackrock", - nameLocale: 1899, + nameLocale: 1915, star: 4, url: imageUrl("Claymore_Blackrock"), type: "Claymore", - effect: 301, + effect: 308, configs: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1552,"type":"float"}, ], @@ -1392,18 +1392,18 @@ export default { Rainslasher: { name: "Rainslasher", internalName: "Claymore_Perdue", - nameLocale: 1781, + nameLocale: 1797, star: 4, url: imageUrl("Claymore_Perdue"), type: "Claymore", - effect: 581, + effect: 588, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1551,"type":"float"}, ], @@ -1412,13 +1412,13 @@ export default { PrototypeArchaic: { name: "PrototypeArchaic", internalName: "Claymore_Proto", - nameLocale: 1585, + nameLocale: 1600, star: 4, url: imageUrl("Claymore_Proto"), type: "Claymore", - effect: 944, + effect: 952, configs: null, @@ -1428,13 +1428,13 @@ export default { LuxuriousSeaLord: { name: "LuxuriousSeaLord", internalName: "Claymore_MillenniaTuna", - nameLocale: 1529, + nameLocale: 1544, star: 4, url: imageUrl("Claymore_MillenniaTuna"), type: "Claymore", - effect: 229, + effect: 235, configs: null, @@ -1444,18 +1444,18 @@ export default { LithicBlade: { name: "LithicBlade", internalName: "Claymore_Lapis", - nameLocale: 337, + nameLocale: 343, star: 4, url: imageUrl("Claymore_Lapis"), type: "Claymore", - effect: 1743, + effect: 1759, configs: [ - {"default":0,"max":4,"min":0,"name":"liyue_count","title":1749,"type":"int"}, + {"default":0,"max":4,"min":0,"name":"liyue_count","title":1765,"type":"int"}, ], @@ -1464,18 +1464,18 @@ export default { SkyriderGreatsword: { name: "SkyriderGreatsword", internalName: "Claymore_Mitsurugi", - nameLocale: 1850, + nameLocale: 1866, star: 3, url: imageUrl("Claymore_Mitsurugi"), type: "Claymore", - effect: 943, + effect: 951, configs: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1552,"type":"float"}, ], @@ -1484,13 +1484,13 @@ export default { DebateClub: { name: "DebateClub", internalName: "Claymore_Reasoning", - nameLocale: 166, + nameLocale: 171, star: 3, url: imageUrl("Claymore_Reasoning"), type: "Claymore", - effect: 783, + effect: 790, configs: null, @@ -1500,18 +1500,18 @@ export default { BloodstainedGreatsword: { name: "BloodstainedGreatsword", internalName: "Claymore_Siegfry", - nameLocale: 1099, + nameLocale: 1108, star: 3, url: imageUrl("Claymore_Siegfry"), type: "Claymore", - effect: 583, + effect: 590, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1551,"type":"float"}, ], @@ -1520,13 +1520,13 @@ export default { WhiteIronGreatsword: { name: "WhiteIronGreatsword", internalName: "Claymore_Tin", - nameLocale: 1321, + nameLocale: 1333, star: 3, url: imageUrl("Claymore_Tin"), type: "Claymore", - effect: 303, + effect: 309, configs: null, @@ -1536,18 +1536,18 @@ export default { FerrousShadow: { name: "FerrousShadow", internalName: "Claymore_Glaive", - nameLocale: 1725, + nameLocale: 1741, star: 3, url: imageUrl("Claymore_Glaive"), type: "Claymore", - effect: 1281, + effect: 1292, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1551,"type":"float"}, ], @@ -1556,7 +1556,7 @@ export default { OldMercsPal: { name: "OldMercsPal", internalName: "Claymore_Oyaji", - nameLocale: 180, + nameLocale: 186, star: 2, url: imageUrl("Claymore_Oyaji"), type: "Claymore", @@ -1570,7 +1570,7 @@ export default { WasterGreatsword: { name: "WasterGreatsword", internalName: "Claymore_Aniki", - nameLocale: 1582, + nameLocale: 1597, star: 1, url: imageUrl("Claymore_Aniki"), type: "Claymore", @@ -1584,7 +1584,7 @@ export default { ForestRegalia: { name: "ForestRegalia", internalName: "Claymore_Arakalari", - nameLocale: 1067, + nameLocale: 1076, star: 4, url: imageUrl("Claymore_Arakalari"), type: "Claymore", @@ -1593,7 +1593,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1551,"type":"float"}, ], @@ -1602,18 +1602,18 @@ export default { MakhairaAquamarine: { name: "MakhairaAquamarine", internalName: "Claymore_Pleroma", - nameLocale: 1239, + nameLocale: 1250, star: 4, url: imageUrl("Claymore_Pleroma"), type: "Claymore", - effect: 1078, + effect: 1087, configs: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1551,"type":"float"}, ], @@ -1622,20 +1622,20 @@ export default { BeaconOfTheReedSea: { name: "BeaconOfTheReedSea", internalName: "Claymore_Deshret", - nameLocale: 1460, + nameLocale: 1474, star: 5, url: imageUrl("Claymore_Deshret"), type: "Claymore", - effect: 212, + effect: 218, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate_atk","title":744,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate_atk","title":751,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate_hp","title":1292,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate_hp","title":1304,"type":"float"}, ], @@ -1644,18 +1644,18 @@ export default { MailedFlower: { name: "MailedFlower", internalName: "Claymore_Fleurfair", - nameLocale: 1856, + nameLocale: 1872, star: 4, url: imageUrl("Claymore_Fleurfair"), type: "Claymore", - effect: 213, + effect: 219, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":623,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":631,"type":"float"}, ], @@ -1664,20 +1664,20 @@ export default { TalkingStick: { name: "TalkingStick", internalName: "Claymore_BeastTamer", - nameLocale: 1441, + nameLocale: 1453, star: 4, url: imageUrl("Claymore_BeastTamer"), type: "Claymore", - effect: 681, + effect: 688, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":1533,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":1548,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":1534,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":1549,"type":"float"}, ], @@ -1686,18 +1686,18 @@ export default { TidalShadow: { name: "TidalShadow", internalName: "Claymore_Vorpal", - nameLocale: 1129, + nameLocale: 1138, star: 4, url: imageUrl("Claymore_Vorpal"), type: "Claymore", - effect: 364, + effect: 370, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1551,"type":"float"}, ], @@ -1706,18 +1706,18 @@ export default { PortablePowerSaw: { name: "PortablePowerSaw", internalName: "Claymore_Mechanic", - nameLocale: 190, + nameLocale: 196, star: 4, url: imageUrl("Claymore_Mechanic"), type: "Claymore", - effect: 367, + effect: 373, configs: [ - {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":454,"type":"float"}, + {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":460,"type":"float"}, ], @@ -1726,18 +1726,18 @@ export default { EngulfingLightning: { name: "EngulfingLightning", internalName: "Pole_Narukami", - nameLocale: 1517, + nameLocale: 1532, star: 5, url: imageUrl("Pole_Narukami"), type: "Polearm", - effect: 739, + effect: 746, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1551,"type":"float"}, ], @@ -1746,13 +1746,13 @@ export default { SkywardSpine: { name: "SkywardSpine", internalName: "Pole_Dvalin", - nameLocale: 506, + nameLocale: 512, star: 5, url: imageUrl("Pole_Dvalin"), type: "Polearm", - effect: 1002, + effect: 1010, configs: null, @@ -1762,20 +1762,20 @@ export default { PrimordialJadeWingedSpear: { name: "PrimordialJadeWingedSpear", internalName: "Pole_Morax", - nameLocale: 421, + nameLocale: 427, star: 5, url: imageUrl("Pole_Morax"), type: "Polearm", - effect: 407, + effect: 413, configs: [ - {"default":0.0,"max":7.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, + {"default":0.0,"max":7.0,"min":0.0,"name":"stack","title":1552,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"full_rate","title":1164,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"full_rate","title":1174,"type":"float"}, ], @@ -1784,20 +1784,20 @@ export default { CalamityQueller: { name: "CalamityQueller", internalName: "Pole_Santika", - nameLocale: 650, + nameLocale: 657, star: 5, url: imageUrl("Pole_Santika"), type: "Polearm", - effect: 1496, + effect: 1511, configs: [ - {"default":6.0,"max":6.0,"min":0.0,"name":"stack","title":25,"type":"float"}, + {"default":6.0,"max":6.0,"min":0.0,"name":"stack","title":27,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"backend_rate","title":388,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"backend_rate","title":394,"type":"float"}, ], @@ -1806,18 +1806,18 @@ export default { StaffOfHoma: { name: "StaffOfHoma", internalName: "Pole_Homa", - nameLocale: 700, + nameLocale: 707, star: 5, url: imageUrl("Pole_Homa"), type: "Polearm", - effect: 1287, + effect: 1298, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"be50_rate","title":1279,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"be50_rate","title":1290,"type":"float"}, ], @@ -1826,20 +1826,20 @@ export default { VortexVanquisher: { name: "VortexVanquisher", internalName: "Pole_Kunwu", - nameLocale: 1602, + nameLocale: 1618, star: 5, url: imageUrl("Pole_Kunwu"), type: "Polearm", - effect: 702, + effect: 709, configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1552,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":705,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":712,"type":"float"}, ], @@ -1848,18 +1848,18 @@ export default { PrototypeStarglitter: { name: "PrototypeStarglitter", internalName: "Pole_Proto", - nameLocale: 1587, + nameLocale: 1602, star: 4, url: imageUrl("Pole_Proto"), type: "Polearm", - effect: 784, + effect: 791, configs: [ - {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, + {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1552,"type":"float"}, ], @@ -1868,18 +1868,18 @@ export default { LithicSpear: { name: "LithicSpear", internalName: "Pole_Lapis", - nameLocale: 340, + nameLocale: 346, star: 4, url: imageUrl("Pole_Lapis"), type: "Polearm", - effect: 1742, + effect: 1758, configs: [ - {"default":0,"max":4,"min":0,"name":"liyue_count","title":1749,"type":"int"}, + {"default":0,"max":4,"min":0,"name":"liyue_count","title":1765,"type":"int"}, ], @@ -1888,13 +1888,13 @@ export default { KitainCrossSpear: { name: "KitainCrossSpear", internalName: "Pole_Bakufu", - nameLocale: 425, + nameLocale: 431, star: 4, url: imageUrl("Pole_Bakufu"), type: "Polearm", - effect: 224, + effect: 230, configs: null, @@ -1904,13 +1904,13 @@ export default { TheCatch: { name: "TheCatch", internalName: "Pole_Mori", - nameLocale: 35, + nameLocale: 38, star: 4, url: imageUrl("Pole_Mori"), type: "Polearm", - effect: 230, + effect: 236, configs: null, @@ -1920,13 +1920,13 @@ export default { FavoniusLance: { name: "FavoniusLance", internalName: "Pole_Zephyrus", - nameLocale: 1557, + nameLocale: 1572, star: 4, url: imageUrl("Pole_Zephyrus"), type: "Polearm", - effect: 746, + effect: 753, configs: null, @@ -1936,13 +1936,13 @@ export default { DragonspineSpear: { name: "DragonspineSpear", internalName: "Pole_Everfrost", - nameLocale: 1905, + nameLocale: 1921, star: 4, url: imageUrl("Pole_Everfrost"), type: "Polearm", - effect: 927, + effect: 935, configs: null, @@ -1952,18 +1952,18 @@ export default { DragonsBane: { name: "DragonsBane", internalName: "Pole_Stardust", - nameLocale: 334, + nameLocale: 340, star: 4, url: imageUrl("Pole_Stardust"), type: "Polearm", - effect: 579, + effect: 586, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1551,"type":"float"}, ], @@ -1972,18 +1972,18 @@ export default { Deathmatch: { name: "Deathmatch", internalName: "Pole_Gladiator", - nameLocale: 282, + nameLocale: 288, star: 4, url: imageUrl("Pole_Gladiator"), type: "Polearm", - effect: 1629, + effect: 1645, configs: [ - {"default":true,"name":"ge2","title":1628,"type":"bool"}, + {"default":true,"name":"ge2","title":1644,"type":"bool"}, ], @@ -1992,13 +1992,13 @@ export default { CrescentPike: { name: "CrescentPike", internalName: "Pole_Exotic", - nameLocale: 1120, + nameLocale: 1129, star: 4, url: imageUrl("Pole_Exotic"), type: "Polearm", - effect: 1498, + effect: 1513, configs: null, @@ -2008,18 +2008,18 @@ export default { BlackcliffPole: { name: "BlackcliffPole", internalName: "Pole_Blackrock", - nameLocale: 1897, + nameLocale: 1913, star: 4, url: imageUrl("Pole_Blackrock"), type: "Polearm", - effect: 302, + effect: 307, configs: [ - {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"stack","title":1552,"type":"float"}, ], @@ -2028,18 +2028,18 @@ export default { WavebreakersFin: { name: "WavebreakersFin", internalName: "Pole_Maria", - nameLocale: 776, + nameLocale: 783, star: 4, url: imageUrl("Pole_Maria"), type: "Polearm", - effect: 1740, + effect: 1756, configs: [ - {"default":40,"max":400,"min":40,"name":"energy","title":1745,"type":"int"}, + {"default":40,"max":400,"min":40,"name":"energy","title":1761,"type":"int"}, ], @@ -2048,13 +2048,13 @@ export default { RoyalSpear: { name: "RoyalSpear", internalName: "Pole_Theocrat", - nameLocale: 563, + nameLocale: 570, star: 4, url: imageUrl("Pole_Theocrat"), type: "Polearm", - effect: 745, + effect: 752, configs: null, @@ -2064,13 +2064,13 @@ export default { Halberd: { name: "Halberd", internalName: "Pole_Halberd", - nameLocale: 1723, + nameLocale: 1739, star: 3, url: imageUrl("Pole_Halberd"), type: "Polearm", - effect: 586, + effect: 593, configs: null, @@ -2080,18 +2080,18 @@ export default { BlackTassel: { name: "BlackTassel", internalName: "Pole_Noire", - nameLocale: 1902, + nameLocale: 1918, star: 3, url: imageUrl("Pole_Noire"), type: "Polearm", - effect: 576, + effect: 583, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1551,"type":"float"}, ], @@ -2100,13 +2100,13 @@ export default { WhiteTassel: { name: "WhiteTassel", internalName: "Pole_Ruby", - nameLocale: 1318, + nameLocale: 1330, star: 3, url: imageUrl("Pole_Ruby"), type: "Polearm", - effect: 950, + effect: 958, configs: null, @@ -2116,7 +2116,7 @@ export default { IronPoint: { name: "IronPoint", internalName: "Pole_Rod", - nameLocale: 1724, + nameLocale: 1740, star: 2, url: imageUrl("Pole_Rod"), type: "Polearm", @@ -2130,7 +2130,7 @@ export default { BeginnersProtector: { name: "BeginnersProtector", internalName: "Pole_Gewalt", - nameLocale: 778, + nameLocale: 785, star: 1, url: imageUrl("Pole_Gewalt"), type: "Polearm", @@ -2144,7 +2144,7 @@ export default { Moonpiercer: { name: "Moonpiercer", internalName: "Pole_Arakalari", - nameLocale: 1600, + nameLocale: 1616, star: 4, url: imageUrl("Pole_Arakalari"), type: "Polearm", @@ -2153,7 +2153,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1551,"type":"float"}, ], @@ -2162,18 +2162,18 @@ export default { MissiveWindspear: { name: "MissiveWindspear", internalName: "Pole_Windvane", - nameLocale: 1825, + nameLocale: 1841, star: 4, url: imageUrl("Pole_Windvane"), type: "Polearm", - effect: 1573, + effect: 1588, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1551,"type":"float"}, ], @@ -2182,18 +2182,18 @@ export default { StaffOfTheScarletSands: { name: "StaffOfTheScarletSands", internalName: "Pole_Deshret", - nameLocale: 1612, + nameLocale: 1628, star: 5, url: imageUrl("Pole_Deshret"), type: "Polearm", - effect: 464, + effect: 470, configs: [ - {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, + {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1552,"type":"float"}, ], @@ -2202,18 +2202,18 @@ export default { BalladOfTheFjords: { name: "BalladOfTheFjords", internalName: "Pole_Shanty", - nameLocale: 601, + nameLocale: 608, star: 4, url: imageUrl("Pole_Shanty"), type: "Polearm", - effect: 1739, + effect: 1755, configs: [ - {"default":true,"name":"use_effect","title":628,"type":"bool"}, + {"default":true,"name":"use_effect","title":635,"type":"bool"}, ], @@ -2222,13 +2222,13 @@ export default { RightfulReward: { name: "RightfulReward", internalName: "Pole_Vorpal", - nameLocale: 249, + nameLocale: 255, star: 4, url: imageUrl("Pole_Vorpal"), type: "Polearm", - effect: 368, + effect: 374, configs: null, @@ -2238,18 +2238,18 @@ export default { ProspectorsDrill: { name: "ProspectorsDrill", internalName: "Pole_Mechanic", - nameLocale: 327, + nameLocale: 333, star: 4, url: imageUrl("Pole_Mechanic"), type: "Polearm", - effect: 366, + effect: 372, configs: [ - {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":440,"type":"float"}, + {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":446,"type":"float"}, ], @@ -2258,18 +2258,18 @@ export default { LostPrayerToTheSacredWinds: { name: "LostPrayerToTheSacredWinds", internalName: "Catalyst_Fourwinds", - nameLocale: 439, + nameLocale: 445, star: 5, url: imageUrl("Catalyst_Fourwinds"), type: "Catalyst", - effect: 1383, + effect: 1395, configs: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1552,"type":"float"}, ], @@ -2278,13 +2278,13 @@ export default { SkywardAtlas: { name: "SkywardAtlas", internalName: "Catalyst_Dvalin", - nameLocale: 504, + nameLocale: 510, star: 5, url: imageUrl("Catalyst_Dvalin"), type: "Catalyst", - effect: 194, + effect: 200, configs: null, @@ -2294,13 +2294,13 @@ export default { EverlastingMoonglow: { name: "EverlastingMoonglow", internalName: "Catalyst_Kaleido", - nameLocale: 97, + nameLocale: 101, star: 5, url: imageUrl("Catalyst_Kaleido"), type: "Catalyst", - effect: 1104, + effect: 1113, configs: null, @@ -2310,20 +2310,20 @@ export default { MemoryOfDust: { name: "MemoryOfDust", internalName: "Catalyst_Kunwu", - nameLocale: 594, + nameLocale: 601, star: 5, url: imageUrl("Catalyst_Kunwu"), type: "Catalyst", - effect: 702, + effect: 709, configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1552,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":705,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"shield_rate","title":712,"type":"float"}, ], @@ -2332,18 +2332,18 @@ export default { WindAndSong: { name: "WindAndSong", internalName: "Catalyst_Outlaw", - nameLocale: 993, + nameLocale: 1001, star: 4, url: imageUrl("Catalyst_Outlaw"), type: "Catalyst", - effect: 940, + effect: 948, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1551,"type":"float"}, ], @@ -2352,22 +2352,22 @@ export default { TheWidsith: { name: "TheWidsith", internalName: "Catalyst_Troupe", - nameLocale: 1122, + nameLocale: 1131, star: 4, url: imageUrl("Catalyst_Troupe"), type: "Catalyst", - effect: 1566, + effect: 1581, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"t1_rate","title":570,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"t1_rate","title":577,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"t2_rate","title":422,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"t2_rate","title":428,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"t3_rate","title":1735,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"t3_rate","title":1751,"type":"float"}, ], @@ -2376,20 +2376,20 @@ export default { SolarPearl: { name: "SolarPearl", internalName: "Catalyst_Resurrection", - nameLocale: 333, + nameLocale: 339, star: 4, url: imageUrl("Catalyst_Resurrection"), type: "Catalyst", - effect: 937, + effect: 945, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":749,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":756,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":751,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":758,"type":"float"}, ], @@ -2398,13 +2398,13 @@ export default { SacrificialFragments: { name: "SacrificialFragments", internalName: "Catalyst_Fossil", - nameLocale: 1376, + nameLocale: 1388, star: 4, url: imageUrl("Catalyst_Fossil"), type: "Catalyst", - effect: 219, + effect: 225, configs: null, @@ -2414,13 +2414,13 @@ export default { RoyalGrimoire: { name: "RoyalGrimoire", internalName: "Catalyst_Theocrat", - nameLocale: 564, + nameLocale: 571, star: 4, url: imageUrl("Catalyst_Theocrat"), type: "Catalyst", - effect: 745, + effect: 752, configs: null, @@ -2430,13 +2430,13 @@ export default { PrototypeAmber: { name: "PrototypeAmber", internalName: "Catalyst_Proto", - nameLocale: 1589, + nameLocale: 1604, star: 4, url: imageUrl("Catalyst_Proto"), type: "Catalyst", - effect: 792, + effect: 799, configs: null, @@ -2446,18 +2446,18 @@ export default { MappaMare: { name: "MappaMare", internalName: "Catalyst_Exotic", - nameLocale: 76, + nameLocale: 80, star: 4, url: imageUrl("Catalyst_Exotic"), type: "Catalyst", - effect: 1574, + effect: 1589, configs: [ - {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, + {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1552,"type":"float"}, ], @@ -2466,13 +2466,13 @@ export default { HakushinRing: { name: "HakushinRing", internalName: "Catalyst_Bakufu", - nameLocale: 1319, + nameLocale: 1331, star: 4, url: imageUrl("Catalyst_Bakufu"), type: "Catalyst", - effect: 1550, + effect: 1565, configs: null, @@ -2482,13 +2482,13 @@ export default { Frostbearer: { name: "Frostbearer", internalName: "Catalyst_Everfrost", - nameLocale: 646, + nameLocale: 653, star: 4, url: imageUrl("Catalyst_Everfrost"), type: "Catalyst", - effect: 927, + effect: 935, configs: null, @@ -2498,13 +2498,13 @@ export default { FavoniusCodex: { name: "FavoniusCodex", internalName: "Catalyst_Zephyrus", - nameLocale: 1556, + nameLocale: 1571, star: 4, url: imageUrl("Catalyst_Zephyrus"), type: "Catalyst", - effect: 746, + effect: 753, configs: null, @@ -2514,13 +2514,13 @@ export default { EyeOfPerception: { name: "EyeOfPerception", internalName: "Catalyst_Truelens", - nameLocale: 832, + nameLocale: 839, star: 4, url: imageUrl("Catalyst_Truelens"), type: "Catalyst", - effect: 929, + effect: 937, configs: null, @@ -2530,20 +2530,20 @@ export default { DodocoTales: { name: "DodocoTales", internalName: "Catalyst_Ludiharpastum", - nameLocale: 428, + nameLocale: 434, star: 4, url: imageUrl("Catalyst_Ludiharpastum"), type: "Catalyst", - effect: 939, + effect: 947, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":749,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":756,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":751,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":758,"type":"float"}, ], @@ -2552,18 +2552,18 @@ export default { BlackcliffAgate: { name: "BlackcliffAgate", internalName: "Catalyst_Blackrock", - nameLocale: 1900, + nameLocale: 1916, star: 4, url: imageUrl("Catalyst_Blackrock"), type: "Catalyst", - effect: 302, + effect: 307, configs: [ - {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, + {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1552,"type":"float"}, ], @@ -2572,20 +2572,20 @@ export default { KagurasVerity: { name: "KagurasVerity", internalName: "Catalyst_Narukami", - nameLocale: 1349, + nameLocale: 1361, star: 5, url: imageUrl("Catalyst_Narukami"), type: "Catalyst", - effect: 788, + effect: 795, configs: [ - {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, + {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1552,"type":"float"}, - {"default":1.0,"max":1.0,"min":0.0,"name":"full_rate","title":1163,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"full_rate","title":1173,"type":"float"}, ], @@ -2594,18 +2594,18 @@ export default { OathswornEye: { name: "OathswornEye", internalName: "Catalyst_Jyanome", - nameLocale: 1583, + nameLocale: 1598, star: 4, url: imageUrl("Catalyst_Jyanome"), type: "Catalyst", - effect: 781, + effect: 788, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1551,"type":"float"}, ], @@ -2614,18 +2614,18 @@ export default { MagicGuide: { name: "MagicGuide", internalName: "Catalyst_Intro", - nameLocale: 1875, + nameLocale: 1891, star: 3, url: imageUrl("Catalyst_Intro"), type: "Catalyst", - effect: 580, + effect: 587, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1551,"type":"float"}, ], @@ -2634,13 +2634,13 @@ export default { OtherworldlyStory: { name: "OtherworldlyStory", internalName: "Catalyst_Lightnov", - nameLocale: 629, + nameLocale: 636, star: 3, url: imageUrl("Catalyst_Lightnov"), type: "Catalyst", - effect: 1499, + effect: 1514, configs: null, @@ -2650,18 +2650,18 @@ export default { EmeraldOrb: { name: "EmeraldOrb", internalName: "Catalyst_Jade", - nameLocale: 1438, + nameLocale: 1450, star: 3, url: imageUrl("Catalyst_Jade"), type: "Catalyst", - effect: 1577, + effect: 1592, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1551,"type":"float"}, ], @@ -2670,13 +2670,13 @@ export default { ThrillingTalesOfDragonSlayers: { name: "ThrillingTalesOfDragonSlayers", internalName: "Catalyst_Pulpfic", - nameLocale: 1580, + nameLocale: 1595, star: 3, url: imageUrl("Catalyst_Pulpfic"), type: "Catalyst", - effect: 101, + effect: 105, configs: null, @@ -2686,18 +2686,18 @@ export default { TwinNephrite: { name: "TwinNephrite", internalName: "Catalyst_Phoney", - nameLocale: 1296, + nameLocale: 1308, star: 3, url: imageUrl("Catalyst_Phoney"), type: "Catalyst", - effect: 300, + effect: 306, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1551,"type":"float"}, ], @@ -2706,7 +2706,7 @@ export default { PocketGrimoire: { name: "PocketGrimoire", internalName: "Catalyst_Pocket", - nameLocale: 375, + nameLocale: 381, star: 2, url: imageUrl("Catalyst_Pocket"), type: "Catalyst", @@ -2720,7 +2720,7 @@ export default { ApprenticesNotes: { name: "ApprenticesNotes", internalName: "Catalyst_Apprentice", - nameLocale: 548, + nameLocale: 555, star: 1, url: imageUrl("Catalyst_Apprentice"), type: "Catalyst", @@ -2734,7 +2734,7 @@ export default { FruitOfFulfillment: { name: "FruitOfFulfillment", internalName: "Catalyst_Arakalari", - nameLocale: 1322, + nameLocale: 1334, star: 4, url: imageUrl("Catalyst_Arakalari"), type: "Catalyst", @@ -2743,7 +2743,7 @@ export default { configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1552,"type":"float"}, ], @@ -2752,18 +2752,18 @@ export default { WanderingEvenstar: { name: "WanderingEvenstar", internalName: "Catalyst_Pleroma", - nameLocale: 1124, + nameLocale: 1133, star: 4, url: imageUrl("Catalyst_Pleroma"), type: "Catalyst", - effect: 1078, + effect: 1087, configs: [ - {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, + {"default":1.0,"max":1.0,"min":0.0,"name":"rate","title":1551,"type":"float"}, ], @@ -2772,20 +2772,20 @@ export default { AThousandFloatingDreams: { name: "AThousandFloatingDreams", internalName: "Catalyst_Ayus", - nameLocale: 336, + nameLocale: 342, star: 5, url: imageUrl("Catalyst_Ayus"), type: "Catalyst", - effect: 1741, + effect: 1757, configs: [ - {"default":1,"max":3,"min":0,"name":"same_count","title":387,"type":"int"}, + {"default":1,"max":3,"min":0,"name":"same_count","title":393,"type":"int"}, - {"default":2,"max":3,"min":0,"name":"diff_count","title":96,"type":"int"}, + {"default":2,"max":3,"min":0,"name":"diff_count","title":99,"type":"int"}, ], @@ -2794,18 +2794,18 @@ export default { TulaytullahsRemembrance: { name: "TulaytullahsRemembrance", internalName: "Catalyst_Alaya", - nameLocale: 441, + nameLocale: 447, star: 5, url: imageUrl("Catalyst_Alaya"), type: "Catalyst", - effect: 948, + effect: 956, configs: [ - {"default":7.0,"max":10.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, + {"default":7.0,"max":10.0,"min":0.0,"name":"stack","title":1552,"type":"float"}, ], @@ -2814,18 +2814,18 @@ export default { JadeFallsSplendor: { name: "JadeFallsSplendor", internalName: "Catalyst_Morax", - nameLocale: 1343, + nameLocale: 1355, star: 5, url: imageUrl("Catalyst_Morax"), type: "Catalyst", - effect: 798, + effect: 805, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1551,"type":"float"}, ], @@ -2834,18 +2834,18 @@ export default { SacrificialJade: { name: "SacrificialJade", internalName: "", - nameLocale: 1675, + nameLocale: 1691, star: 4, url: imageUrl(""), type: "Catalyst", - effect: 474, + effect: 480, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1551,"type":"float"}, ], @@ -2854,20 +2854,20 @@ export default { FlowingPurity: { name: "FlowingPurity", internalName: "Catalyst_Vorpal", - nameLocale: 1402, + nameLocale: 1414, star: 4, url: imageUrl("Catalyst_Vorpal"), type: "Catalyst", - effect: 789, + effect: 796, configs: [ - {"default":0.5,"max":1.0,"min":0.0,"name":"rate1","title":752,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"rate1","title":759,"type":"float"}, - {"default":0.5,"max":1.0,"min":0.0,"name":"rate2","title":754,"type":"float"}, + {"default":0.5,"max":1.0,"min":0.0,"name":"rate2","title":762,"type":"float"}, ], @@ -2876,18 +2876,18 @@ export default { BalladOfTheBoundlessBlue: { name: "BalladOfTheBoundlessBlue", internalName: "Catalyst_DandelionPoem", - nameLocale: 811, + nameLocale: 818, star: 4, url: imageUrl("Catalyst_DandelionPoem"), type: "Catalyst", - effect: 945, + effect: 953, configs: [ - {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, + {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1552,"type":"float"}, ], @@ -2896,18 +2896,18 @@ export default { CashflowSupervision: { name: "CashflowSupervision", internalName: "Catalyst_Wheatley", - nameLocale: 1714, + nameLocale: 1730, star: 5, url: imageUrl("Catalyst_Wheatley"), type: "Catalyst", - effect: 732, + effect: 739, configs: [ - {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, + {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1552,"type":"float"}, ], @@ -2916,18 +2916,18 @@ export default { TomeOfTheEternalFlow: { name: "TomeOfTheEternalFlow", internalName: "Catalyst_Iudex", - nameLocale: 73, + nameLocale: 76, star: 5, url: imageUrl("Catalyst_Iudex"), type: "Catalyst", - effect: 1285, + effect: 1296, configs: [ - {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, + {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1552,"type":"float"}, ], @@ -2936,18 +2936,18 @@ export default { PolarStar: { name: "PolarStar", internalName: "Bow_Worldbane", - nameLocale: 268, + nameLocale: 274, star: 5, url: imageUrl("Bow_Worldbane"), type: "Bow", - effect: 214, + effect: 220, configs: [ - {"default":0,"max":4,"min":0,"name":"stack","title":40,"type":"int"}, + {"default":0,"max":4,"min":0,"name":"stack","title":43,"type":"int"}, ], @@ -2956,18 +2956,18 @@ export default { ThunderingPulse: { name: "ThunderingPulse", internalName: "Bow_Narukami", - nameLocale: 1853, + nameLocale: 1869, star: 5, url: imageUrl("Bow_Narukami"), type: "Bow", - effect: 734, + effect: 741, configs: [ - {"default":0,"max":3,"min":0,"name":"stack","title":52,"type":"int"}, + {"default":0,"max":3,"min":0,"name":"stack","title":55,"type":"int"}, ], @@ -2976,18 +2976,18 @@ export default { ElegyOfTheEnd: { name: "ElegyOfTheEnd", internalName: "Bow_Widsith", - nameLocale: 1409, + nameLocale: 1421, star: 5, url: imageUrl("Bow_Widsith"), type: "Bow", - effect: 1847, + effect: 1863, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1551,"type":"float"}, ], @@ -2996,13 +2996,13 @@ export default { SkywardHarp: { name: "SkywardHarp", internalName: "Bow_Dvalin", - nameLocale: 505, + nameLocale: 511, star: 5, url: imageUrl("Bow_Dvalin"), type: "Bow", - effect: 997, + effect: 1005, configs: null, @@ -3012,18 +3012,18 @@ export default { AmosBow: { name: "AmosBow", internalName: "Bow_Amos", - nameLocale: 1763, + nameLocale: 1779, star: 5, url: imageUrl("Bow_Amos"), type: "Bow", - effect: 933, + effect: 941, configs: [ - {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, + {"default":0.0,"max":5.0,"min":0.0,"name":"stack","title":1552,"type":"float"}, ], @@ -3032,18 +3032,18 @@ export default { AlleyHunter: { name: "AlleyHunter", internalName: "Bow_Outlaw", - nameLocale: 992, + nameLocale: 1000, star: 4, url: imageUrl("Bow_Outlaw"), type: "Bow", - effect: 1530, + effect: 1545, configs: [ - {"default":0.0,"max":10.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, + {"default":0.0,"max":10.0,"min":0.0,"name":"stack","title":1552,"type":"float"}, ], @@ -3052,13 +3052,13 @@ export default { TheViridescentHunt: { name: "TheViridescentHunt", internalName: "Bow_Viridescent", - nameLocale: 1465, + nameLocale: 1479, star: 4, url: imageUrl("Bow_Viridescent"), type: "Bow", - effect: 930, + effect: 938, configs: null, @@ -3068,13 +3068,13 @@ export default { TheStringless: { name: "TheStringless", internalName: "Bow_Troupe", - nameLocale: 1414, + nameLocale: 1426, star: 4, url: imageUrl("Bow_Troupe"), type: "Bow", - effect: 204, + effect: 210, configs: null, @@ -3084,13 +3084,13 @@ export default { SacrificialBow: { name: "SacrificialBow", internalName: "Bow_Fossil", - nameLocale: 1375, + nameLocale: 1387, star: 4, url: imageUrl("Bow_Fossil"), type: "Bow", - effect: 219, + effect: 225, configs: null, @@ -3100,13 +3100,13 @@ export default { Rust: { name: "Rust", internalName: "Bow_Recluse", - nameLocale: 631, + nameLocale: 638, star: 4, url: imageUrl("Bow_Recluse"), type: "Bow", - effect: 951, + effect: 959, configs: null, @@ -3116,13 +3116,13 @@ export default { RoyalBow: { name: "RoyalBow", internalName: "Bow_Theocrat", - nameLocale: 567, + nameLocale: 574, star: 4, url: imageUrl("Bow_Theocrat"), type: "Bow", - effect: 745, + effect: 752, configs: null, @@ -3132,7 +3132,7 @@ export default { Predator: { name: "Predator", internalName: "Bow_Predator", - nameLocale: 720, + nameLocale: 727, star: 4, url: imageUrl("Bow_Predator"), type: "Bow", @@ -3143,7 +3143,7 @@ export default { configs: [ - {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, + {"default":0.0,"max":2.0,"min":0.0,"name":"stack","title":1552,"type":"float"}, ], @@ -3152,18 +3152,18 @@ export default { PrototypeCrescent: { name: "PrototypeCrescent", internalName: "Bow_Proto", - nameLocale: 1588, + nameLocale: 1603, star: 4, url: imageUrl("Bow_Proto"), type: "Bow", - effect: 1709, + effect: 1725, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1551,"type":"float"}, ], @@ -3172,18 +3172,18 @@ export default { MouunsMoon: { name: "MouunsMoon", internalName: "Bow_Maria", - nameLocale: 1008, + nameLocale: 1016, star: 4, url: imageUrl("Bow_Maria"), type: "Bow", - effect: 1740, + effect: 1756, configs: [ - {"default":40,"max":400,"min":40,"name":"energy","title":1745,"type":"int"}, + {"default":40,"max":400,"min":40,"name":"energy","title":1761,"type":"int"}, ], @@ -3192,20 +3192,20 @@ export default { MitternachtsWaltz: { name: "MitternachtsWaltz", internalName: "Bow_Nachtblind", - nameLocale: 620, + nameLocale: 627, star: 4, url: imageUrl("Bow_Nachtblind"), type: "Bow", - effect: 938, + effect: 946, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":749,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate1","title":756,"type":"float"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":751,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate2","title":758,"type":"float"}, ], @@ -3214,18 +3214,18 @@ export default { Hamayumi: { name: "Hamayumi", internalName: "Bow_Bakufu", - nameLocale: 1342, + nameLocale: 1354, star: 4, url: imageUrl("Bow_Bakufu"), type: "Bow", - effect: 949, + effect: 957, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1551,"type":"float"}, ], @@ -3234,13 +3234,13 @@ export default { FavoniusWarbow: { name: "FavoniusWarbow", internalName: "Bow_Zephyrus", - nameLocale: 1555, + nameLocale: 1570, star: 4, url: imageUrl("Bow_Zephyrus"), type: "Bow", - effect: 746, + effect: 753, configs: null, @@ -3250,18 +3250,18 @@ export default { CompoundBow: { name: "CompoundBow", internalName: "Bow_Exotic", - nameLocale: 1722, + nameLocale: 1738, star: 4, url: imageUrl("Bow_Exotic"), type: "Bow", - effect: 928, + effect: 936, configs: [ - {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, + {"default":0.0,"max":4.0,"min":0.0,"name":"stack","title":1552,"type":"float"}, ], @@ -3270,18 +3270,18 @@ export default { BlackcliffWarbow: { name: "BlackcliffWarbow", internalName: "Bow_Blackrock", - nameLocale: 1898, + nameLocale: 1914, star: 4, url: imageUrl("Bow_Blackrock"), type: "Bow", - effect: 302, + effect: 307, configs: [ - {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1537,"type":"float"}, + {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":1552,"type":"float"}, ], @@ -3290,18 +3290,18 @@ export default { WindblumeOde: { name: "WindblumeOde", internalName: "Bow_Fleurfair", - nameLocale: 1833, + nameLocale: 1849, star: 4, url: imageUrl("Bow_Fleurfair"), type: "Bow", - effect: 791, + effect: 798, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1551,"type":"float"}, ], @@ -3310,18 +3310,18 @@ export default { RavenBow: { name: "RavenBow", internalName: "Bow_Crowfeather", - nameLocale: 1880, + nameLocale: 1896, star: 3, url: imageUrl("Bow_Crowfeather"), type: "Bow", - effect: 578, + effect: 585, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1551,"type":"float"}, ], @@ -3330,13 +3330,13 @@ export default { RecurveBow: { name: "RecurveBow", internalName: "Bow_Curve", - nameLocale: 357, + nameLocale: 363, star: 3, url: imageUrl("Bow_Curve"), type: "Bow", - effect: 303, + effect: 309, configs: null, @@ -3346,13 +3346,13 @@ export default { Messenger: { name: "Messenger", internalName: "Bow_Msg", - nameLocale: 191, + nameLocale: 197, star: 3, url: imageUrl("Bow_Msg"), type: "Bow", - effect: 1710, + effect: 1726, configs: null, @@ -3362,18 +3362,18 @@ export default { SharpshootersOath: { name: "SharpshootersOath", internalName: "Bow_Arjuna", - nameLocale: 1352, + nameLocale: 1364, star: 3, url: imageUrl("Bow_Arjuna"), type: "Bow", - effect: 1716, + effect: 1732, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1551,"type":"float"}, ], @@ -3382,20 +3382,20 @@ export default { Slingshot: { name: "Slingshot", internalName: "Bow_Sling", - nameLocale: 633, + nameLocale: 640, star: 3, url: imageUrl("Bow_Sling"), type: "Bow", - effect: 931, + effect: 939, configs: [ {"default":true,"name":"is_effect","title":1,"type":"bool"}, - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1551,"type":"float"}, ], @@ -3404,7 +3404,7 @@ export default { SeasonedHuntersBow: { name: "SeasonedHuntersBow", internalName: "Bow_Old", - nameLocale: 353, + nameLocale: 359, star: 2, url: imageUrl("Bow_Old"), type: "Bow", @@ -3418,7 +3418,7 @@ export default { HuntersBow: { name: "HuntersBow", internalName: "Bow_Hunters", - nameLocale: 1229, + nameLocale: 1240, star: 1, url: imageUrl("Bow_Hunters"), type: "Bow", @@ -3432,18 +3432,18 @@ export default { AquaSimulacra: { name: "AquaSimulacra", internalName: "Bow_Kirin", - nameLocale: 1467, + nameLocale: 1481, star: 5, url: imageUrl("Bow_Kirin"), type: "Bow", - effect: 1284, + effect: 1295, configs: [ - {"default":true,"name":"is_enemy_around","title":406,"type":"bool"}, + {"default":true,"name":"is_enemy_around","title":412,"type":"bool"}, ], @@ -3452,18 +3452,18 @@ export default { FadingTwilight: { name: "FadingTwilight", internalName: "Bow_Fallensun", - nameLocale: 1511, + nameLocale: 1526, star: 4, url: imageUrl("Bow_Fallensun"), type: "Bow", - effect: 260, + effect: 266, configs: [ - {"default":2,"name":"state","options":["夕暮","流霞","朝晖"],"title":1216,"type":"option"}, + {"default":2,"name":"state","options":["夕暮","流霞","朝晖"],"title":1227,"type":"option"}, ], @@ -3472,18 +3472,18 @@ export default { HuntersPath: { name: "HuntersPath", internalName: "Bow_Ayus", - nameLocale: 1226, + nameLocale: 1237, star: 5, url: imageUrl("Bow_Ayus"), type: "Bow", - effect: 1494, + effect: 1509, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1551,"type":"float"}, ], @@ -3492,13 +3492,13 @@ export default { Trawler: { name: "Trawler", internalName: "Bow_Fin", - nameLocale: 1386, + nameLocale: 1398, star: 4, url: imageUrl("Bow_Fin"), type: "Bow", - effect: 782, + effect: 789, configs: null, @@ -3508,7 +3508,7 @@ export default { KingsSquire: { name: "KingsSquire", internalName: "Bow_Arakalari", - nameLocale: 1238, + nameLocale: 1249, star: 4, url: imageUrl("Bow_Arakalari"), type: "Bow", @@ -3517,7 +3517,7 @@ export default { configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1551,"type":"float"}, ], @@ -3526,18 +3526,18 @@ export default { IbisPiercer: { name: "IbisPiercer", internalName: "Bow_Ibis", - nameLocale: 1881, + nameLocale: 1897, star: 4, url: imageUrl("Bow_Ibis"), type: "Bow", - effect: 1702, + effect: 1718, configs: [ - {"default":2.0,"max":2.0,"min":0.0,"name":"stack","title":595,"type":"float"}, + {"default":2.0,"max":2.0,"min":0.0,"name":"stack","title":602,"type":"float"}, ], @@ -3546,20 +3546,20 @@ export default { TheFirstGreatMagic: { name: "TheFirstGreatMagic", internalName: "Bow_Pledge", - nameLocale: 1009, + nameLocale: 1017, star: 5, url: imageUrl("Bow_Pledge"), type: "Bow", - effect: 1711, + effect: 1727, configs: [ - {"default":1.0,"max":3.0,"min":0.0,"name":"same_count","title":1746,"type":"float"}, + {"default":1.0,"max":3.0,"min":0.0,"name":"same_count","title":1762,"type":"float"}, - {"default":0.0,"max":3.0,"min":0.0,"name":"diff_count","title":1736,"type":"float"}, + {"default":0.0,"max":3.0,"min":0.0,"name":"diff_count","title":1752,"type":"float"}, ], @@ -3568,18 +3568,18 @@ export default { ScionOfTheBlazingSun: { name: "ScionOfTheBlazingSun", internalName: "Bow_Gurabad", - nameLocale: 1195, + nameLocale: 1206, star: 4, url: imageUrl("Bow_Gurabad"), type: "Bow", - effect: 1703, + effect: 1719, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1551,"type":"float"}, ], @@ -3588,18 +3588,18 @@ export default { SongOfStillness: { name: "SongOfStillness", internalName: "Bow_Vorpal", - nameLocale: 1816, + nameLocale: 1832, star: 4, url: imageUrl("Bow_Vorpal"), type: "Bow", - effect: 365, + effect: 371, configs: [ - {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1535,"type":"float"}, + {"default":0.0,"max":1.0,"min":0.0,"name":"rate","title":1551,"type":"float"}, ], @@ -3608,18 +3608,18 @@ export default { RangeGauge: { name: "RangeGauge", internalName: "Bow_Mechanic", - nameLocale: 1128, + nameLocale: 1137, star: 4, url: imageUrl("Bow_Mechanic"), type: "Bow", - effect: 366, + effect: 372, configs: [ - {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":440,"type":"float"}, + {"default":3.0,"max":3.0,"min":0.0,"name":"stack","title":446,"type":"float"}, ], diff --git a/src/i18n/generated/en.json b/src/i18n/generated/en.json index 3b6a9154..374c19bf 100644 --- a/src/i18n/generated/en.json +++ b/src/i18n/generated/en.json @@ -10,6 +10,7 @@ "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.", "C2 Ratio", + "C6 Arkhe: Pneuma", "Empty", "E-skill DMG Rate", "E Level", @@ -21,6 +22,7 @@ "Q Level", "Attack Till Burst Expires", "「Lost Wisdom of the Seven Caverns Rate(buffed hits count/total hit counts within a cycle)", + "\"Center of Attention\"", "Under 「Ceremonial Garment」", "「千年的大乐章·抗争之歌」效果:普通攻击、重击、下落攻击造成的伤害提升16%/20%/24%/28%/32%,攻击力提升20%/25%/30%/35%/40%。", "「千年的大乐章·揭旗之歌」效果:普通攻击速度提升12%/15%/18%/21%/24%,攻击力提升20%/25%/30%/35%/40%。", @@ -31,6 +33,7 @@ "Gales of Reverie Wind Arrow DMG", "Gales of Reverie Wind Arrow Hits", "「Prosecution Edict」Stack", + "Fanfare Above the Limit", "「Wavespike」Stack", "The equipping character will gain 24%/30%/36%/42%/48% of their Elemental Mastery as bonus ATK for 12s, with nearby party members gaining 30% of this buff for the same duration. Multiple instances of this weapon can allow this buff to stack. This effect will still trigger even if the character is not on the field.", "「Namisen」Stack", @@ -41,8 +44,8 @@ "「Sweeping Fervor」Shield Coverage", "「Nightstar」Stack", "\"Snappy Silhouette\" Mark DMG", - "Prayerful Wind's GiftRate", "Prayerful Wind’s Benefit Ratio", + "Prayerful Wind's GiftRate", "Painted Dome", "\"Focused Impression\" Mark DMG", "「Tricks of the Trouble-Maker」Stack", @@ -73,6 +76,7 @@ "Qiqi-Icy Resurrection", "Dance of Haftkarsvar", "Tome of the Eternal Flow", + "Let the People Rejoice", "Kazuha Slash", "Kazuha's EM", "Mappa Mare", @@ -81,8 +85,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", @@ -94,8 +98,8 @@ "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", @@ -108,6 +112,7 @@ "Kuki Shinobu", "Shinobu-Mender of Tribulations", "Ancient Abscission", + "Gentilhomme Usher DMG", "Troupe's Dawnlight", "Flower of Paradise Lost", "Kujou Sara", @@ -168,6 +173,7 @@ "Debate Club", "Charged DMG, 1-Mirror Projection Attack DMG, Single-Instance DMG, multiplied by their counts respectively", "Spring Spirit Summoning", + "Singer of Many Waters Healing", "The First Days of the City of Kings", "Song of Life", "Eula", @@ -231,17 +237,17 @@ "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", - "Elemental Mastery", "EM", + "Elemental Mastery", "元素精通提升50点。触发燃烧、原激化、绽放反应后,队伍中附近的所有角色元素精通提升30点,持续6秒。触发超激化、蔓激化、超绽放、烈绽放反应后,队伍中附近的所有角色元素精通提升20点,持续6秒。以上效果的持续时间独立计算。", - "Elemental Mastery +80", "Increases Elemental Mastery by 80.", "Elemental Mastery +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", @@ -300,8 +306,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", @@ -346,8 +352,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", @@ -407,8 +413,8 @@ "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", + "Regeneration on Hit", "HP Regeneration", "C2「Ceremony: Homecoming of Spirits」Stacks", "C2「Origins Known From the Stem」Ratio", @@ -429,8 +435,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", @@ -541,6 +547,7 @@ "Nilou-「Dreamy Dance of Aeons」", "Nilou-Dance of Lotuslight", "Nilou's HP", + "Salon Solitaire", "Scholar", "Scholar's Bookmark", "Scholar's Ink Cup", @@ -622,9 +629,9 @@ "Mitternachts Waltz", "Use C4", "Use Talent「Regina Probationum」", + "Rate", "Equivalent Rate of Effect", "Apply Ratio", - "Rate", "Niwabi Enshou", "Opening a chest regenerates 30% Max HP over 5s.", "Use Effect", @@ -710,11 +717,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", "Continuous Regeneration Per Sec", "Continuous Regeneration", - "HP Regeneration Over Time", + "Continuous Regeneration", "Continuous Healing", + "HP Regeneration Over Time", "Conductor's Top Hat", "DPS Yae Miko", "Swing DMG", @@ -753,8 +760,8 @@ "Effect2 Ratio", "Effect 1 Rate", "Effect① Ratio", - "Effect 2 Rate", "Effect② Ratio", + "Effect 2 Rate", "Effect Apply Ratio", "Equivalent Stack", "Enemy Pyro Coverage", @@ -891,6 +898,7 @@ "Normal Attack: Firework Flare-Up", "Normal Attack: Sword of the Radiant Path", "Normal Attack: Spiritfox Sin-Eater", + "Normal Attack: Soloist's Solicitation", "Normal Attack: Kätzlein Style", "Normal Attack: Dough-Fu", "Normal Attack: Kaboom!", @@ -1013,6 +1021,7 @@ "Max EM", "Max Recharge", "Max Cutting DMG", + "Maximize E Damage", "Maximize Energy Recharge", "Maximize Elemental Mastery", "Maximize Rebuke: Vaulting Fist DMG", @@ -1105,8 +1114,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", @@ -1138,6 +1147,7 @@ "Ocean-Hued Clam", "Finale of the Deep", "Crown of Watatsumi", + "Surintendante Chevalmarin DMG", "Chalice of the Font", "Deepwood Memories", "DeepwoodMemories4", @@ -1180,14 +1190,15 @@ "Stamen of Khvarena's Origin", "Spirit Blade: Cloud-Parting Star", "Spirit Blade: Chonghua's Layered Frost", + "Spiritbreath Thorn/Surging Blade DMG", "Spiritbreath Thorn DMG", "Spiritvein DMG", "Brilliance", "Leonine Bite", "Tap DMG", "Tapping DMG", - "Tap Skill DMG", "Press Skill DMG", + "Tap Skill DMG", "Tapping Skill DMG", "Photo DMG (Press)", "Fiery Collapse DMG", @@ -1206,8 +1217,8 @@ "Subjugation: Koukou Sendou", "Molten Inferno", "Buring Duration", - "Burst DMG", "Explosion DMG", + "Burst DMG", "Explosive Puppet", "Explosion DMG", "", @@ -1290,6 +1301,7 @@ "HP increased by 20%-25%-30%-35%-40%. Additionally, provides an ATK Bonus based on 1.2%-1.5%-1.8%-2.1%-2.4% of the wielder's Max HP.", "HP Valid", "HP Weight", + "HP>=50% Characters Count", "When HP is above 90%, increases CRIT Rate by 14%-17.5%-21%-24.5%-28%.", "Equivalent Rate of Effect 2", "Fatal Blossom DMG", @@ -1455,6 +1467,8 @@ "The Dockhand’s Assistant", "Alhaitham", "Alhaitham-Admonishing Instruction", + "Furina", + "Furina-Endless Solo of Solitude", "Barbara", "Barbara-Shining Idol", "Vourukasha’s Glow", @@ -1469,6 +1483,7 @@ "Aqua Simulacra", "Dendro DMG", "Maximize Crit or Avg Dendro Damage", + "Ousia Bubble DMG", "Arataki Itto", "Itto-「Jailhouse Bread and Butter」", "Itto-The Evil", @@ -1534,8 +1549,8 @@ "Stack 2", "Effect 1 Rate", "Effect 2 Rate", - "Avg Effect Ratio", "Effect Rate", + "Avg Effect Ratio", "Avg Effect Stack", "Maiden Beloved", "Moment of Judgment", @@ -1597,6 +1612,7 @@ "Enigma Thrust DMG", "Enigmatic Feint", "Wilting Feast", + "Mademoiselle Crabaletta DMG", "Wise Doctor's Pinion", "A Time of Insight", "Moonpiercer", @@ -1668,8 +1684,8 @@ "Marechaussee Hunter", "Dealing Elemental DMG increases all DMG by 6%-7.5%-9%-10.5%-12% for 6s. Max 2 stacks. Can occur once every 1s.", "Increases all DMG by 8%-10%-12%-14%-16%. After using an Elemental Burst, Normal or Charged Attack, on hit, creates a vacuum blade that does 80%-100%-120%-140%-160% of ATK as DMG to opponents along its path. Lasts for 20s or 8 vacuum blades.", - "Physical DMG +25%", "Physical DMG is increased by 25%.", + "Physical DMG +25%", "Fashioner’s Tanglevine Shaft", "Triggered Burning, Bloom, Catalyze or Spread", "Frost-Weaved Dignity", @@ -1691,13 +1707,13 @@ "Charged Attack: Equitable Judgment", "Charged Attack DMG", "Charged DMG-1", - "Charged Attack-1", "Charged Attack DMG-1", + "Charged Attack-1", "Charnged DMG-1", - "Charnged DMG-2", "Charged Attack DMG-2", - "Charged DMG-2", "Charged Attack-2", + "Charnged DMG-2", + "Charged DMG-2", "Charnged DMG-3", "Charged Attack DMG/3", "Charged Attack DMG(With talent)", diff --git a/src/i18n/generated/zh-cn.json b/src/i18n/generated/zh-cn.json index 199370ac..e2822fd1 100644 --- a/src/i18n/generated/zh-cn.json +++ b/src/i18n/generated/zh-cn.json @@ -10,6 +10,7 @@ "仅在以下平台生效:
\"PlayStation Network\"
对敌人造成冰元素伤害后,普通攻击与重击造成的伤害提高10%,该效果持续6秒,至多叠加2次;此外,埃洛伊装备掠食者时,攻击力提升66点。", "仅在以下平台生效:
\"PlayStation Network\"
普通攻击与重击命中敌人后有50%概率在小范围内造成200%攻击力的伤害。该效果每10秒只能触发一次;此外,旅行者装备降临之剑时,攻击力提升66点。", "C2比例", + "C6始基力:芒性", "Empty", "E技能伤害占比", "E技能等级", @@ -21,6 +22,7 @@ "Q技能等级", "a到大招完全结束", "「七窟遗智」比例(加成hit数/一轮hit总数)", + "「万众瞩目」", "「仪来羽衣」状态", "「千年的大乐章·抗争之歌」效果:普通攻击、重击、下落攻击造成的伤害提升16%/20%/24%/28%/32%,攻击力提升20%/25%/30%/35%/40%。", "「千年的大乐章·揭旗之歌」效果:普通攻击速度提升12%/15%/18%/21%/24%,攻击力提升20%/25%/30%/35%/40%。", @@ -31,6 +33,7 @@ "「梦迹一风」风矢伤害", "「梦迹一风」风矢命中数", "「检偿之敕」层数", + "「气氛值」超过上限的部分", "「波穗」层数", "「流浪的晚星」与此相同。基于装备者的元素精通的24%/30%/36%/42%/48%,提升该角色的攻击力,并基于该提升的30%为队伍中附近的其他角色提升攻击力,持续12秒,多件同名武器产生的此效果可以叠加。角色处于队伍后台时也能触发效果。", "「浪闪」层数", @@ -73,6 +76,7 @@ "七七-冻冻回魂夜", "七域舞步", "万世流涌大典", + "万众狂欢", "万叶之一刀", "万叶的元素精通", "万国诸海图谱", @@ -108,6 +112,7 @@ "久岐忍", "久岐忍-烦恼刈除", "久远花落之时", + "乌瑟勋爵伤害", "乐团的晨光", "乐园遗落之花", "九条裟罗", @@ -168,6 +173,7 @@ "以理服人", "以重击、1枚光幕攻击伤害、Q单次伤害为基本,乘以相应的次数", "仰灵威召将役咒", + "众水的歌者治疗量", "众王之都的开端", "众生之谣", "优菈", @@ -541,6 +547,7 @@ "妮露-「翩舞永世之梦」", "妮露-莲光落舞筵", "妮露的生命值", + "孤心沙龙", "学士", "学士的书签", "学士的墨杯", @@ -891,6 +898,7 @@ "普通攻击·烟火打扬", "普通攻击·熠辉轨度剑", "普通攻击·狐灵食罪式", + "普通攻击·独舞之邀", "普通攻击·猎人射术", "普通攻击·白案功夫", "普通攻击·砰砰", @@ -1013,6 +1021,7 @@ "最大元素精通", "最大充能效率", "最大切割伤害", + "最大化E伤害", "最大化元素充能效率", "最大化元素精通", "最大化惩戒·凌跃拳伤害", @@ -1138,6 +1147,7 @@ "海染砗磲", "海渊终曲", "海祇之冠", + "海薇玛夫人伤害", "涌泉之盏", "深林的记忆", "深林的记忆4", @@ -1180,6 +1190,7 @@ "灵光源起之蕊", "灵刃·云开星落", "灵刃·重华叠霜", + "灵息之刺/流涌之刃伤害", "灵息之刺伤害", "灵气脉技能伤害", "灼灼", @@ -1290,6 +1301,7 @@ "生命值提升20%-25%-30%-35%-40%。此外,基于装备该武器的角色生命值上限的1.2%-1.5%-1.8%-2.1%-2.4%,获得攻击力加成。", "生命值有效", "生命值权重", + "生命值高于50%的角色数量", "生命值高于90%时,暴击率提升14%-17.5%-21%-24.5%-28%。", "生命特效应用比例", "生灭之花", @@ -1455,6 +1467,8 @@ "船坞长剑", "艾尔海森", "艾尔海森-诲韬诤言", + "芙宁娜", + "芙宁娜-不休独舞", "芭芭拉", "芭芭拉-闪耀偶像", "花海甘露之光", @@ -1469,6 +1483,7 @@ "若水", "草伤", "草元素伤害最大化或最大化期望", + "荒性泡沫伤害", "荒泷一斗", "荒泷一斗-「奉行牢狱,茶饭之所」", "荒泷一斗-最恶鬼王!", @@ -1597,6 +1612,7 @@ "谜影突刺伤害", "谜影障身法", "谢落的筵席", + "谢贝蕾妲小姐伤害", "贤医之羽", "贤智的定期", "贯月矢", diff --git a/src/images/characters/Furina_splash.png b/src/images/characters/Furina_splash.png new file mode 100644 index 0000000000000000000000000000000000000000..dde1335187d37a951a2fbec02ce28c1775004720 GIT binary patch literal 253929 zcmV)CK*GO?P)m1X2Wuxj{78b2oaZv1`i8Ip1{0bN2GbDdjdJRKFOv$gd!#m>0(Aof0zDP+IU!vla|RzBgaRSZw#K#$l3PHU z6OW#7yl^Zp&lz;f&|GeBCAD{_Q zM2LRBhr@$?#1IgJVK^FMUKW@Y1ylsX!GN>b9Btc(Q^!HSk78b+ED9)0HUN2i8ej2;OoKIYB;>J)Kgep z8KGi}>j!tqP9l-OwKp%}+S^ySy|sh=8+QZ|NYV_>IfSN$Pdw;6D1fK{A{13oRXFEh zX7EXZ7$cl2lO#c1RT8MU@YDzJ*oQxi6K77L(}m4_A}nh>H4=H>xdBoY&SnjEw&(Kx zCsyo@x9`gSJkht`zH7H{9Lf6HiVTM%%#SKAcNCAk?>Hz8VlWi*h9RmLfm#h^RKPrh z#JnxAdUhGtcWOQ$hSo zmh*r4k3ak!-}g(u{s=7~o)(gDdK6@5cZ%ys-1Q-MuHkkm4#Ggg%~5?9E?UWfdK+6K2ZcN@rWSIBCKiI$ufv49(?eEeDeE0f%`8$hYsFxfxEpa1cH6?blL<12sg22>qX z70!DEiy#-hMnqsC007Mlb<>Ec;E`va!L$GR52G^}A*}bK z#odDV$1jdCEmKs%p2e3D1=yuj0&`E3-4N#Wr@y);Pl0HX=bgw_52;H z=7iHZ2;%O|BiTIL#k?+1){zUqZdo^lv~7i=Eb;Td@+Exqp|ki4pZvIdpZ^vpL|ZH z^QpA+7Ah$W6j1K{AIjoG?i~yuz6XTw)gN2G`^*1S{P001S*6@47$(WdW=t7($CqnjuY7v|#}lzT4r@Ey;LypKa4J>txdJ_c0$&5kp`TTS+?! zGN?FFgh+kTo;&y8X#7P6qE2 zOp6(cvO+9tSks_w11v6j4^?pb@rUv3pZh`SjrtrkhVui5W|p8HxAM#*Jse-jSViKs z%M(2R&YX8!FVTA#9SA_3!g7I8A#H#(5xZ4HJ#OGF%A*fwm{uO6(6ZlAWNCstqXg8< zYM`HY5GR47#K~SD+^XlJkK|HT5zQg6iUd$%Rz%TSX_BBZqAh{CB|4oB`l%ucP|a(^ zd5vB-Lsbhx5Ui}OAhaz=VltgbQ>oe$(+}`-ug)Q_9kJP-YTZes&Ag;Bh*QX6X?k~h#CMu# zkBtVho+mnkF&&JMGFmg9*=9@plV7?lKlG#b^Vj~)EBcRr^^ztpT(K|xrC*h_7O0CN zYM>fa6(A&}DboIm+F`}Esvt;&VgQ{`6eM5(s0J7TQvT78euY2&sqeD)fbhNgP7wUf zFG{xhP#V$6_GV&NZ;Y|KQ?qJYI?b76o~c*y-lK>Sf&^u$m{m2rPvM-Q*KcHF&G}eE z#&aKIba0Vypg7~=B32RRfKnkz3zwO=x6WO^L=(ca;nS6&YWrF_D=OXzw&AK=FQ!_HENPLNL<|Hji6CL6Ev|!cX@EK z*?b0tAW0Io0IIUU^3tj_Ma{OY5vm%UUM`P5{iOIh$o`vG=|tfna^G->51%@Tr94?M zE+eQ!r;4(EYi?K0_hr1Eitd$kMZ{4%$GekV+&J9E?eQ+ErbM24jCwt+b^A!XN7dFS z>k36#U{=j>)Xq^LpiPJh5#_-Y1Q5*dcmLk6;^=UKrmg{T_rS1$nIXg$P!RxVV@nZ% z*g}S*5>TKlXNWN(&%3yJV+)6${(Uh4`u#3D-4sn-FBm2SDh_SYpsH#R4n{?c5gLH` z;Sr|A9O49{l@a>=9*&(qgVX2EV(Hihd_PCqG?+}Mm>i8|a&U<8;SnYWhkW!S&&Y6j zMAsT}i^Ayn^0f)z63IIQzIwaBOP7yu`_PM}UAlgR=;HNc9Vcxh%s`4jkU-3X!O(4U zxM0#do}!vHob3i|4!d|@Gsmn7n43q?7Oe#c6ebSnw7B@#0LOa75PkXb>xU>}KyplZ zF!#W|pqLB92`H2ZqHH2bfX?7khmPxtZvuUlpss5PO@O5d%d%v*lZjZw^*g(0+Zq`G z>I0yve$wcz3!(@4Yu(uEI91fZpW-PgqLb{S6%w~wAJ~vj^B{mH%-@IW|MYKhO zUtEG}tgPht*he37dslb(`QLuYnkndg38fQ=aD3aK9#U2%r)7z{Em>9t+O}b61Ddvl zMIx%mc3I)~UU~r=gJn5?;-qFS!QF%XFmW^S$HwoozEB@HZ{lJ|me(_gd6Mu5m%V8N-ZXZIE zRLlUA2qzE_ARtYizVHdwQ^PwfkYh?fd-9H2Av@HZMHshUT5Ph zmerzRG8#Zb;uNWO$efB-2%Ja_!nJgWNCHW7&|&UmH5FY>4P7rt`YIRJQapOfNLUfXo&H2iWnkeG_)%49gj|@L*K~|V!*sC z5kjOyL!NiV;*1Q&rmm&GI>N#B4wOVMN#xwQGqU&YZ6un2aB^xi#1B340L~1100_IM zx|j%>N+6eK><)6wMv1slgLZs~TjO0^JJ`bR^bloRBkQDC9t^OQ<#0|gYYG%~fugBp zUYD3OGfdkGZ7OJtY@@*hm=|-*XC=zAh8Y*X*CI#*6e8+CvqdvpU6uZDh@+z;Ove*u zX-6nz!ze+4?VWw3-9GMY@8f9FAWJ+3=Tf}+*1M?dn!th)W=RJyMWBf0E09hfN`sFr zth0tu|2QH8=Jgy$S9Z94dyH4U_>%NTJ*=Ks=jMH9<-|h|;DN_avoq)-N+Z@prryIj zfhsVbN4c|G!-k$|p5n8wO;DP_B!LdQfHx!pn3xboaS8p6n-v+zEVR zxLH#o6Xe|#NF!aU0szIlAe)6Z>WoOU6sjt%YneDNDuTo*(=0=p=Q5p+v63fP9^`oY z-MgqGX&_<=R#-c7+H5Hmrvu-N1p@xAV zjb=s%6>EdkfL!0*!q&mA93QN^6U!S?jAwxU;1TS1{#dW=XD^j*>WIOqZe)@`Ao8F6 z8)xjV|F@ry%NQib^Nt(liOZF`G&eilJ(0Kz=Uo|K^DvGbKXl2M&_BGz+4?||*3cbx zG)~53Y(P@Vtf$Se>ymlHWNa|1kPst5hzL|f1T;Vh0c0VOzzdM*pEP;&Js|vlQD1*~ z;#A$z(H!Z^Zyd%;*T*5MSg)5zp68Urvk5Khnl`SKM^$858^{3fBh;%X8(vs3pBb@p zTiRJ0*~V5BB2Jagsd(ooR7pvw3B({~loDj>G?f6vl4ujrGKHoT2?5d(B2&SVsyuxn zI+P)W3m$_jGnqdz;{FiWFZX%lU`tBYfD_5{jKjeIgS-QYhAJU!m}7cv7e!TI zTo;f$!P3eaZXWE&V(2AuJegoRn~D=pf(sBfV)MjtgcxyfbcFSd4LB94nwsm!Hn4ke zz@n~X<=8sZd8p5196a*D5=u$fJAOJpO73zL?;wUndfRLv=KE`XkOj0iLc4JHm0MQgSo!Xhvu92RZOt1j*X z9iq44XiR|^WnP0>@i=R$(HFpLFxp8Hmm#-e;W>aIcxq#~OR9-$Y;G-v(u<1o8 zExi+D>j~Oead#TwQ!jqtD49Y;MSK^b2r@gG!h3~8p{gLuGPGrdJWG*y53MVTI%J8L zVFGwB6bNWhvMdFhLtRy<`vc_1))BV$n8kph=CT`RD59~5bJTT-oQ9JpHud89`)zjV zZQCs-B!FmHwxQ;? zHo93?*G9w9PyD%$w?F^We`CJ#JsP~$ejJy zQueK{@o)WuZ^+O5#b@jnfA*3MJ5GCv_-@mLxpxUyJDvG{janUi|Cm)biqgG$xyq_i zmVfF)-DdZ&ZNG6P3Mpd1(QwIy!7%Afs+f)|X!P39!+1}5`nES9iz^cVLO>A#od|vV z9wU6Ou=4Sl{Mvs_pZ5If;S8OxymZi9yE;aaHyEu9CGT_*2%EIQs?uyaRhyKCDgx>q z(iG?uYycP28oj=)>SrphVx5NUcAxb54SQocHsl^P`=7b&wa&wTO(f{ zpfa=QyhH)|{hsXIzAJzrO%qgg1rrLLz_|oakRhOHYm8QwIB9De4Z1kCvZ9A~cX4j> z82;>2&&vDPR^Y1ny@|iYnKL-lF_$K$hyvQ)9C6pnbXjaCnPaCs6t525PKItLlVQJy zHa3_v1O6&r=)1A|+HcL?f&%Db68F#MsWnxu~J35QT7wplraX1YHloYOAB z>Gz#nyS$4xU%ZaxeuDKA>pXYyEG|5JTsAjH=nhgbA1$g0p)dm>l%^3zbFk>7X&uX^ zmBs9_AoU5V%9t3X3xx`qs;UyKy&xJTibLuXL?J^o%-s?WVuP#`r8zgi+M4Ih=U&mT z{l;bVx~trJhiH!-!!sApa&2<}ra-C@_Z`cjuEl;)iLnE}cyCC%LRCd(nY7cIc?xuU znU3d?h#qDJgowlv_$-BljBPc?-Q6RIPsADFbiveMl%u0Dj}MlCPDh%_go8B0TwBay zO%-5LSG=@)7imA2Q_E}m=&3XI{M&ED(u@feA9?6ew|jTa-~8RL$4Sx9IZp|Ws%jz& zMUjk%j0_f0TZ3RNV;ew5S_}XUS(YM(MnY@6$GaCUo0^R4iOzPWV%5RgXTO-+wcq?y zef#43?YkblkN^8Midk?gnOPU{J3P3b`HRmG0Ak-cI_bD3CXA3IPunC(G@uqsldNf? z#Chme=hlm&D5isX8RV!&q=+w#TPHSrIq0RMNfA0na}tn95mE(<0U4pG7*&k|0%8CR zUI;G+l_=2nfbdUwWgmS*e)cajIex6Wc{po2pa0T!{l;}5@2ztExH8RX^QMheqt>)} zJe<(x^9G{8QqRF90*45vhJmYaO!xKRAcQ;BsVFW=DgmOTFj;t0AV`XlEEn#zRgsz- zWJ$#N88ppIy35*g(b{?{7zb+GjT*hv0FjiCiqwXt!KmUyo?1)sKwt6Pjh3(OJGi9> zWaHTmr&r&mpppIk18JJTc~xT8jKN6p-Xq39f*6gKu(G-$*RNfJDySf0Fd%`fE-$ky zj-jmZJ>T^#KDKgR9_+6oX{QT=0)GSuDQJR|h6yUPIGWA4_xeQiBd6K>;2BBwx2Z=B zx_JlvG=bG6Dr<09j!{$b=JrwxKcN$0*sG>`;1XbZt$Lpt4cmTimMd&JexzQu2R?M*#(a)^tMot6hKp5oe>5nW~y zBVi=7&b>?q1x+NIsA!QQgh<4QUWb&Ha5RWOdQQbfW2#;vDU2XUY1_y)8j1uUJ=&n` zZEVQ#hXorKR^-LcJ&#MTzQe=qQhxvPC2Viq<#&JhgLeA-nr694nnpZw-1E*DxZ6Zn zqawMZW*(x3RCA~Rc`zILM5o16k}P4{MkK0OfQc}OknGCZdWudy!@B9;j7oLiHp>Yr6rs@wi(~Kc_%)2@|>PnJLNz9 z)#utr65uxM4~d9aUm<3v~2^kcyI8RAPf+y7}P-p z5WRIY&;HAQ^tJJCKJdeF`PCO&04&xn4Pyr=gp6mL{`mX?JSTi5MV85fUPV zk`Obmkt&2Ns5eAF1?fRhqrL}(f9mV6|HR0D@S;Bv%XajIFW)U+zhcNnLm8gwOPc_* zva+_(`0A@~plK$Ze!s`Vaja8)I6U!GE-_R{Mc}+gR=>-;lO|r9k8BQO>Sh?Fki;Ae zfG8je5f~jrNYD&A35LcgL?O9R{FIiYCVnXW(4c8dP&Xn0;?^m?u7khZgrtR&yrW1{ zNWV)g_Z&ZYzr)F;fUn*PIO?B}&e<-Tn{T1-3yi0S;zC5Q$UMssy+={bAp$TOrbiPj zk48A$-3LS<0@P(Gr#FvbEsz&hHt=UIJcg4o6)kIu1>lby@Wlu`rHT=Aw%DsCyfNOv z)jLNr97U`>c9I*XH<9;)bg~rAfTpR@T7yw4?6m=DT}r3wv5^QJW^(s%%<;h?VvI=A z1Z7oWZEY31yL(bq6ccbidm$P zAc>|S+BymqGMxuDttYY;Y#J7IDdJj5lYowoEXoR*gSc3sXezvQqn69>zRiuVUX!(B z8J>LREbn{pIF?p=^j;;Bpco|)cn?GnOce`So`5EZ1QbL9VFI9|qPUmUGXfTs!GQVP zFe@nY#-W%88U@R1%lI?@-VeylD;Ig?rE7Toxi{ps>+c|%@Y&)6IC*9$YsZwiMmasm zpoPhure)hIk|br4CGb8$8G-rH98DdeSq5#QNE;c=0Fiq>odWlsS)S)I9QJ95sH#>- zAS!TFm+Y$(2&s|KiWs^~Cb6KI5hSNgt>4_^O>cLh1+?xkdOPO|uhW3_aMS_8d zmO;?EVMppoXxp+;h;$ZFL=n?YXFAIK<-2#cCTEaqC+{uo72{(&(?}6z6fqH5OvOPL zPVvG*21F^MB-9|Vg)FT2mPGm<5dP_{fB32E@}UoJ9FKDx`{EaN$`{^l82VjVKQ*9b z;877{ain4E-B)|he)#l#$JQQP84h!_Z9RSC^4*(Xd*#i$KlNvSApEWW=64X+OP$10 z&Y!s$R|h##J3=tw+HlAYP2d7tCqtfjxO=*Nj6jG)N+=w32C@{I7_2jC>tUYcnU`KW zWhIUCVaEKM^N{UUF|pK1Cs*{kf^Jt(_D!l5TwPW?eLBV3Nbr>_HE;8nxKpXvytZ5m zK|&NwjkXE&X(CzHL0uQ9%Tk)M;HgumFdI+Nv@H~hA%v#}eR*Vcji1Cjbcq^(gZMmCqPC#L}@$9`@&Cv@$Z^TgIu6J*$IpL~L7WTC=JSD6K&m=TK6P z>Wa=M$cJ6{fym`+w{dVZ=HX;aQ~}YeyzgYHZ6;KOTp^vQ>K_JQN*EG+{2pg~1p;JtVV zV0v$a@ZNB2AfQ6gdw!S#P``+^yEH|eL|7r{riQixwr&>a_B~clpT)-clQ{M8Nxblx z=W*@T>+ml-l=F)ys#SD{2^bC8z{_d|?1ezmBS{=g1X-TKLX>9KP;w7MBI#t1)=@1Y z#wbvMsDn>4B#GysmrFOxuy-)VyeQGeh!z30SM&yb)cZ$Z*&xdlsj8ILE=C}sIG7fA z``uf(cxn?r_VEv4GIjjw^Dot{MX#bT^wZHfw8+?-rc-42{BESMlpy0 zszMP{xM-?`3Wu4q0uXv-YiFP(HJ$GtpIlKDH z|Ma)s{E?q{U~_4G^>op4cI(RFX(f)=8+Sl1@48t;o8o+kE^^nZ9utdpjZXloWZQ%)5e456Jrg ztDAz52v{06GLdsD340xf=PtFlnGU6wyic&BeCw^NbY9U!!lfyEt>P6h3y3k&sUk@{ zR7G;1$^G4Be$VC^d+OX79(R3}x>0RuXGtOs)jEfnHy5zjArHCy$ogS7}M!d7PBcqLVc84qM4*Ifs zY^Wf+((~6GwdPw1Wm0#B&sGN zPdqmI0+*?zE;3bx=>j~WETBZe#apw*1`Y$h9fmK}r0hg?C>V%h;2{G?cqkgt#gYUN zxd!OH0d?1lz)}j&R9pmV%Q=UkslfS6WOqi~Jq&W^sKw3wl3RO)?j97J&1-GSjuo+F zTSfWe*N*ty*S{<$)-rkQiSvBy=?mOEJpgk>%ZSKtb?JL^5hNDU9>f;&AW-?1g1wOU zOa!$VkwR9M9O}7YK65C>0kiQ;(hhLqzO!8ZcbD8u+-lRpk zn#t&RLO06DBB;;793oBu%My4vwskD;cAZ)O!!xFQTUO zE|F8Oym@fx_~vr6l-M7e&FklFCq@lFb#@Sc;j1&BynKtn(DmXoDPz>y<`CAPg$QXW zkQN~|714}cm-%HoDqcGO;%*tbsplfzBLKt%5;N~9USmP%N-r5cbaJ%!^6pFnMKyJy zCIF{|FfdZi_Hh2u^iR~}=zBo;FIkr^PrJQ-`p_G%SMG~nkKxdDrIS#yL_rZF((w9= zZ{p&En-|ZWJ9c6`onU9bMxN)S8crVX$LT+_2V%UgnKS6C+e0WRTdQ4w6(>qO#p7{bYC2W7X#H9oOk}C5!||%h-7R zXsdJU*4(*dmEMn7`M!(`K^L^OK9HFcBhUn*EKF7@SVUFazgy7i z3E)#`o?(A~kD;j%Bame&rn4hZMMldbth*HNUptBKI(?R-ECXY^m{7C@$y#LV^xMK{ zqdjcbz_q>GxV&>mwh#9hJrt>99wTs5u=3IOVd?_5CWjo)=AcoQN6Rw8I+^BZEU;=t z8keGTVw3LVDcLCqneO5G!4CND9!5(!RyT&yzyAq-_fsFl{Ad@;SuT4!dx)E7D7}FV z2N}i%B{U+L6ZU(GZbu|d2q%HC24-Gpo)Ck`0vxyi6oCl|6VM<~3J4Pw55t;($3!$& zur$Hlc|>ImLL@>oWOX=#A|l@o>U}?Z&ppb4MpZ(m+c=X{-JpIv!c;?|#Ncy>$ zG+4Y|!6K;hEm&M+#;A+UHjD1>U{tQ;id7XTC}~b6BFLOdSwvO^v2(q`>hV7Ql^^_o z9M8_mLAUGW$@5EGOH^()LFyEwBb+xt0~H)PRBReCd3|fH^C;5I6B7}u08*T43TPX8Cli}=!=I=%YwrQ!zeH_cpJ+1ZJbZJz z7=Gco!*Mz8X_Dq*E*RA{Aey$(CN$gqlP4azFH!AhX>M!ByHZXK<q{F&GA^56QlKkyr084D#t>TF>YCJr6(x^iop&TigVzI^x2 zi5o`;#}2D%7%V0|I-csS6+Z9Bt<|uydH;PbZ0}%xIEH8+?5@Yb(gr*0nG^$2Dy3|N zO)XLfWjlt{8nMzBJb5z1H#OkxdR;C&`3$$;detW5iFi@D|HA!v^`)1EY&k0e;Ct+z zd;rHcHsqoQf8_jztdP*gUUI>z4gkaeulIlhFa zf8>MklbKxo`kM^<6Re#)f!^Z+DGA4%KJ8GtBWW}fO;T=0N+Agj8L?*-dzr|YO^2<6 zTE>%_E)m%}+Go5mkwLGtEVq^h{7-m7RUlB{Ga;T}kHEwZausd6g zeBVirx-}fMl!uoS^j&0OCK*6=4vj%t#>E7?nuwH4(uHq2SR)=kF+k@q%J;|;l6mCS zgO+dHDDlRPsouD`&%J|f`O@>d{Q4jMGn_j;!qXqVh)15f52Is!L`U%6-{)KFv=+=3 z5Fr*cMPZbMOurb$fe`RMAkRHi!A>U;n+WWn#`#B=P@L$Y*l+RR{Ui9>kQ2>->3D`) z(LhZpRm7l%5d~|e9;hGd-wm2HzFZQp75a9e`C0#;8CmL3k zN3b?Z6OBbxV&J<-m)0dzkt|#INH_(W5CBp(SB{~sJN(7Ze1lm(x7171Mlo5eP>BF+ zaqA&*FL!fK9ko_lD^Vy+yn5|{0;AC^LaDtx%~93U{m=##*kVsAA_3^aC}-+aT&$Yj zbHDw2D*(O?gx)-UeY=sZBf`Y6)bVvwid#@C#`9$T0ysyTJC(kQw3q- zNx=IgbHceV5q_kXzPDNCPh0skKRK=J{1?7{YjSN|!?H#kG**^Xb)~hTZF1-1!w-x) z%S+h`iB7-Y;o+SIFTXlP0>$b|2M-h-sG}GZH}AG6XOR~#_OX0y_=&&zSN_ud*RTHY zSAXNb`o7zrd#x5%SNNU}6#VrUhq`r(a^@R%67KIEf9>Gb18>c@&+dfTQib3^iUJsm zVtaB#PSu)&T7yQc-+zj)e(mM9wQ+s?q0Iy*lk6xJEsfGO;jlJ@7E)3%n-k+Gm@k3H zHUtlECP+=?hHkLgykAgXVH*N=ZXb%vH|T~P>GoI9Tisx%m&+qdIeuiV&(l&v#$z}Q zLJ*B30m6sHEVhw|mU31bw?Zr1#T3(e4(CNq43@CAc7p4rmt(6ZxbcA{?AIn-U4r&j zvFen&JK$~755YUtT=PzfP?1&# zS?+jKC(=*^tyzkQsibl{lC!$xhL~jVy50fSPB?pfb4d;_F3Vd-n|NpE9NxKp$m_Ru zczI_ZSN_izbmO=F03UqzVLtinqq=%-O`0UeMd(Hs+e84`Vr)x{hG^dsQ-!v`3Q5)A zq=u@3o)q8YSqbB z;b7w#5d*V9F2z9!!ZDIUg(wC0RvwWgymLZ$AViFY1Cd}Xdo{xU&EA{E+L~S0d1KDC z*5B-YpZ50mRzp_Drr3xSX|4sgx}4$eON zpKH!J#y6Hr^s&c^g4uiq#2s`GI`sW1d{Aq1)(V9@d+ELMy*sbvN2dpTYU?rwbrly) zZ^&XsBtYKj4Bsh+@`LdxV7>I_onwWnASImFNKyz|R+qKQkaWHkH{oWEa4twG32L`) zUE8j&Ru_Kyt@i#OZi)*9e|5hg0Q`5~Tjx)21p>gY++3J0QTEOHtje_n_>qB{MN$%5 z_X#~pp$z?grb)ZTI+zw-MYFTLJJV`duU5t%J z*5(D?WvYT6P2a0&?na-m{Ku~!$R{7)d3Q(n=jFWdjpHgh{lGWBv*ZgmE%&OlqKV__ zvVZ&uweP>-+q77B?El!MRC*YOs#>=#ar3nkbH0WPUXIrp-+rZqb3HG2%tt}B_cMvpWFkle(R-tT(5|WmrA+5>(QAOBi2SWZYWBNBj$L=+r* zG1yj0h|)we5>VA zlVv;+_#E)+{T23yL0;>KFMg-72PY~`OuYHgvwfbNp6adR`&Ov2U3a*$yPpqF7uIxLTCKYnb288}HZ9^tIJqf?Cbm%@ zHC!b_?20g)Ad9Fdvn8e&OE0bi(^&@8smm#4f(V-tDGHj2^FeafE0QOpce=t6JN&`J zRTa#-pS&<20Q^_q>t$sYO2tp;x1*y01%f= z{c=?9_CNj%q-{K3d(`MzCmZ^>3JE2kEQ2@mYG(r^6_$UeafxR^wXkh?1ontWFOMN{nN85V= zR=A!f&K#ASw2PF9^}_gQnSlq#Qm#)h4GUQ=5*JOyE=}ax)m>iS8%onTn7$WR=f)l? zF+?U!;?Uw_S4(*x2e#X75`?l-FnE|dS1B4d&yipo4z&bi1Qf#xThaL8$96?ENL>|V zk&ws2UJatu#*8Zhr+q?_fKZcGL<|&MEB(QI!QI7$U=Xx>{k;tfd%~;^#BE zwx^wSvKb@tu#&RI`XJ$(!;~U4%xDZ$GXR7of<$n|NGZ#vU*0vOEHL4DyS=$mKvOgYFbA;rP9Zcn08Br5;Rozd z+?Z>SWc&~I>-_ir?&rH1=c{BKCL$!LSqTX>F1t|P^}aqjI$26~*3+qrWZ{M(xMKKt z+wrh^;r^=ZsmVE~gDOZAWe){Z{cv112c6M55mm9?%=r-dOw`k&>{f06@$K2WtkFMD z=hn@`Q4H>b-}v&Q_V9F-vh)!WIxD8#cOKTKcfMq+d~*2gl@C4h%ah4?lB8$K#y8(= z_~3z|uEtUpZj)SKn>~z*M^y#H6d?*ce3TKp736&*Zf~nxyR!G}kACojPbvBAeCX%1 z>mko)UWOI$SN^?^%Gtw1eEZvPK+e6cR6z#O(P4P?NnCvTS%#e%=n5HnqVyR#IUKDc z+MHnO(Dj76Ajpc7hsS*I&99+Y-;u{I7ihOi9xX~NyB&mKg&V^Gp1SPir9QFr9`yk7 z@RV3a$e>^qL8E z5`%}yxgAS^?3}c1kJFqm9#>2)dAFbp>MS1?;kQE1r4yOY9TXY!S`l=Foswvp6}J@nu1dJ$o(97Kq$92QI1*}x>!ih1Rr)^Qdf zI}?ZZKXwuKK72ur?k@S>XD9NV&mQnM|Jj%E_>CEU=6)`WfK|a6_UB;CNKXU{YiM>J(k^M=_}tNb0mUWeRJdLM;P3tYpUuDe-@g1Pd)65YbSa?3EOq)uUh^#4Dv6kw z`gH17s8_D??N`5f$DXUp=YlUT zJ~&+1{*?*(b;2vJoJw78v8+5)3`7E%(X%%zy}g8|FBRCW z3phC3K90Egz|gBln-h+XI~*+py>vKUJ%pazk!IC%XK#+_d@dNzxVtp?hf96p@__HX zqImOm6PJ1FHj09_5VkSNsU8Cc~>^5flT>m{uOJPU@;)8H9BKY?X>8XB@>WDN=?(s1UAT+QclC_iWk> z?}QP?!Yhg(VtGU6r-C_USQ4ljqVtGeaRR^x;DwZ>tr`hK#kde&tb`>@`e?j3&K#Ac zI0H{y0aHlG;J{ZJVaNh_I-GV1$$+6MgL(i&39=NCge)0CF0;%#FwHF4_ zcCS*OnF8ZTl(HFrZtVsf4~J~d8vKR#-OzF{!?#|1o&W6r_!C_GqltX{r=P~-&t7Fw zI$1MsJQiuQJZpNDK1RNG5@dHpU1!*rUS9F&O08EWHAiK^<4CMlEz~Q>01-vb31y`y z%Yc{-F(=RotaKuU1T1IxB7lkL`?!&^KoB#~f*6e|jLH(b(+N&a zR>+6PNL@nL^%#x@^7u!dk*U51@zy&08v#jGgF9>DRy?&xGq;OJEwSR zF$mZD4)Yfik4_Gj_^}IP0>IC0UEuE?J;>(Q(gsd{`{?N8FK=y`h1J9CMM0gF-e9N> z`^2)3-9)J?FPhBzsD-znTDDCK^l5rFa+9l1US4V?gM4(F9FpPy6mom zy0|!*tzPX`zRZ%>Q~;$>mTg;h0Pq{fOD_O_aX!lL7Q!Fm^Yt&?o}P91$iMn_w|o$H z;%U%+8Kg-?Xe-Zltd>9av5LoE>D!)G?_HkC?b{39znA3nR9Ni`#Mx#TvJu*0v1nyD zEU6yIUB+WijImrN94{M;h9yrIS;SzI>I&XF?&QW(m*tti@FCoP z)Zos8N49hM60be>n5(B-?0hErD7!Po`=1!ec9}TwL=hA_^AfYF#iK=w$=vhyv6GkU zM7=Q+te=$E|Kt$$&V=(DmoVL$VjTirf3)CqHpRXBNv~Zhx!y^5>#m{Hicim+?4L{7 z-@yz63W(c878yaO$eU3tRU8ail6oZXkYP~WEc(`J?1C{X(2>#s?D`}vfZiLu6FP|I zK0%5?Y@l3`(g-LeF|1TvpW#Ze#nNOn3}l-$8kiZO*`d!wQHY2dO9yNX9O__*QRtYY z(0~lZ+pD}0ez;9KNDGLGa22C?5!UK9Kt|^X1(q?Qr$ZkzPMTh3lL2B9I;Q|dx@71& zVo-R18Rk94dxCxSXuBRMXA3SU2`PMFhQb`+gCZlda+KAoXBh&fRS=hr9U*6ytj)ww zsFgT4kgZTCf@Uo;E(&DOI1;Tcdu}D+d_kOAW{*u|S4Bagih(ywJ&=Z;H|CHhAG?B& zeRv<=dHobGyzmBo`(J!ju7CM^_{b;UhyAB7kp&PX0q|J18Sj~w7%vQO-0QJA$jEDt zgL{JdlGtcoy70&l4TJ^cUJ=`jqTc8-Qv_TH5Vs){O$HeiA`Z?n#3`L~(z1nCirfN4 zRU)-L1WK9-8Oda_XnUM4mY7xneY3`@ZBT}Q@nC?a?Ln_l0;`8-SgJ}<4_L(rQ$@-d zZQp~VF~kK9Y9}Fh3MI$LPF&~~i&d8`W)U&j^o3f4;QB5blbMP}T5dDft=D2}L$)I~ zur!tchTgg4ec_jJ32s9F%&BL#wz@wPiW)zG!V6~(Ov#CjshYHRS1e(56r=4;=-v$j@UTh{Ak#klcE z$-3)N3<7imwL;Db8N}f_^XB~r0AWC$zp^tgXm`9g%Xt2|Ikty^Wns8~aHL=S>O=NM z`O)`Z$5WT4e8)iF_KKpeQC)rvEgD?7_7wJacSu5#L_D@zVxS)D*yF)bgL1EC=}j~z zIH$P0=Xqfc+1sjceK%oiZZxlQWB)_?jmz8QVr8Yv5;s6795gN8I$gu+kqnMIT)kG| z_?1XUku6X7jU@|!!^VTWFQ8?kEK0A^=WNW(B;;$`Y1pwkQk>7(!MY zYNu;>9ZF$M1q;X!WDya1Z#;59*Y!em+Aez&lx(AkGNH>V!4is+=$k}=(?R7R;tdoj zyl_7CGIV6@l9a)j7KDgN*C&ZFvnqoW1>ij3oWLMj`(ULLCI|+juo-<)r0@Yb0~Q2D z5Og3AJR*sdBD^|Om7^DvS>-u(Dr82Xz#0y#ZllXwYv7gIZFDZG!kk$90+zGZQ^(SI z0g3FC-W)Q4oDHYm&}PF_JXK6o9d4avV%_1BS4LP{mRAnWaBvh@OjLJ9W`P8q6FV2Z zs0q}88xAX_VB&la^4{Gse&V?g^Yu61qc42>rhNW4ziL;$KIij4@f>%q?}#{+=*YPd zZ{BNQ*Tzy_A}1Fd9v)}693c;{Rn+5!_AB7zm}vW+v+V*~`<0XfzsaMF9mEsC5o4F( zg0M#`^=yLD2ulV_fOj4i4Us@j37O!Af14%62s4A!B~t215YDR%-2mA(8rbE*AqG(4 zY|3&pMm}016amMv<>7K6v%1EhD&Vz*SBGgmusE?wm(q7l*BEjlnMpuYMMPXt7ElP9 z)v5;>nsy!QLZWJz0X=0?&`JQ4uIrkn$@JcPl6^{+bI!7vIos&;^wI9KPVW8AVI!YC zqJZ$RdyxO+-XnZsvc>=NG`8myJZQZfSvPIkMufR640&LN2_bz9x(>5ZX|z_?-Enr9 zdS6T^7}`3`@~y)zbfUBXihx-JPF*$=)1a$wcE^d`!lNieeQ6Zm<&*~>9>(dX=0gBy z|NeaTu8;7C{rtgyeKTZp&wlIGW*OJAuCZJfij}jX*)CJOenD{g%1~E8sH!z*11V>- zdT{5h2n_=5Jr=7ZlbI(Ok=8v<799^xT50-(P?R7%*tGc35A0!QTy9nkrg-MY3_Du^ zFTLiuPL&+C3D+kZ0JkNFE)xd_QSRSw_<;{zLfb2nHF*D(0rn;p3Ki_2#LeR~eC_lM zPhPHZZQEm_Kp`F(imo>dnE9c7FT+ugmj(_G9_{efH+y=4=sEtZcLm;DbSQku!Eq_O zbK>bM4zJ&8pwp6a2odUeaP@}T8-;MPDTGFa8W2^{i6PU(ln^I8k%U$ar!HcF1d8GT zO`H^1SIR|>cx0K9g~OuI-e;f;(#PK1Jcvd^6@uEz@hoN*-odg$B?D9`3xyYD;Y(bY z2!h)rJ=6**m>_1Djy=38%TlFHhP4O^?}cH5*a|^F7zbX3y5U!^+fJZj!4+VpNQx*7 z2u@I`q0NGrO(4ReawyeF4Kg5Os0wGslqsDTBoQp66bYUyB=+Lq!$xag1kW-!cvE;U zIL(HK9Yy+xC&v{F8k}W{Kzd17!cdbKi$mv#H;!69c72MMZ?EvxFQ4J$%;SCU7kSUM z5u7-21d}_DABSw#R7QvjJTn|UT&Iv;!07}}eEMT@>*OhX^M%*&2cQ2cuiV(i2R`K_k4R76U z83zR?H8oTsaa_`rXqW9~K?wmoU{b>_3A)OURn(wGw?O{=PQ zs^ZGhLf0s03Am!K;QcFm?U++GTs< zyi+Z!1i&}Vni}JD5qqoXG=$)j(ZPF9gUfv;b1y)l3hzQ0Dl+)C?WtR)Ti3!`gv)n# zgnv%X{?Bgh++W(Ix87>+PK>K${la`+dzZRN@Oe|VXx>uUz&GLT(kV4XPv-vs9Il-Y3fVvU5cA9Zi7!IwM1i={v>KzmwkNOOF z#jy7Iu*;I2O4Nihcu@siUBDcq^d9P9rK)tNom7>lh`@IawK{AE!F1}WsxZsqg;Ey6 zu~#NS5{a(qSdM~NRevdXX}CmIS;Am!w1k z9wm{Z4umNJGIkU!1jr83WzbYX1020fJ@7`;Ta_W+QxP_Q!?F;@m{2+uKzQr4L+66j zF%gzIFFl+IYUd?chLMDscsShHbNJ%dm-zMHJjEb5`-vafk^4E~i3=sRoTADQ-DDyl zZLprue2z_#1d!+!PP&tx@FiaS?imJShmU@8Dvv$>0p7fSgD<}LD!%x+Kf>depOD35 zpY?l(SXz=c1)RhvrO(_Q5~G6h%oBk%oxJk>hU*S!n~de*2`^k5SZ_hBQ+NS5N zw;!SDdog&pVGTPANPWg^Iz#LekJml?;hBu;F{Y&_RHP_8XXBAwZnwgsS*Hg_$4!&F zykY;EbzP?+c=f)h5d5fz+{@Olomh0v&2m-)^b#nyHoQ>@B)g(0+8ATM*%2ZM6(IHo zyT9nykA5@d41VguhA#74kJ|PZb~j)D55MzAH;lYM$uETESPXaw*n3nRgBLYtWgELC zVy=8ujQw~xO}4t!37uC8*00NbrP|#az&Yh&neglrCBF9ZF%DN19vo%4d@TSX=vrf1E@gK-k^o_6hJM}S=&Z+JtAh2! zmtQ=>t9M(vG69Q>+jl$p%2!VDk@v6gfv0MWG)UKGe&dBhym(VFm|umjYO!pbhBc~@ zZbUf20m!gEVy99_yJ1&6c4dH((GMP$_gk_JI61z5HIw+-d#vCJdM-@u- z*cl2^pJX_4I5A`KUVgzC$6q^fxvBQ`S7lY%LDhj2X(ddJ262gs;tf)yoGb*HnVeA!_jL0Un zbF51bW)o(^lS7Y#m@)Pa7fXkM7YGYvl0g;TIdKpOi9sd!xsP1H@BRL(*x8-h_Ejg> zeSybkH7XNG%972{TSC97*PC6hfEgk*hvqcOxGFfiP~&~~$=BXqiti{FW|5QYL)_T^ z5Z*jEknK-HWS6$n^}VIl|O=c9W5uES6ZVI;>X>=jB*7Qw~8L3O>Gf zVQ}~1!}b&l7bWF{Y$^g(z;Y55FG5yTm|SnVqc^j4OV#ocC{9GT0X*E$*`NTb^}5Ld zas%NuC{O@y$Iw*(mS6tn?H@dk-YJ5=`nzAe24KqzzCB$?``7-HUH;Gi{k?CA`1h-K z5KS(o7y+Gxs=OSEvhJGhH22*Z!HILKMJRU+ZqzNBrKl5WQj`o2!qbb?@0nlePmzQk zsp)bu(=c?EmvZ^|XT~b$*3x$i;r~z0Z~X0lsQ>Oi`j7uVV}SndfAhAxztSh~pK$ri z6NA;Y?P`6xw(gZ%MSi#r7Ic7tH?2y=H(tF%Uku;7cX2XVEMTi;MoJMXP7)hFynn>m z)|TvD*u!8vg0D)H14TK2m?VDfg-1BPyTZ?W@-i;%mZ(*sPS8fhM1f!U@ge@NZ!6Xv z0S}C8hnHS?h=U{1$z;gPjI9#b-`(OMI2^AUltlr{3hNCa7=(bT!)l%RwQn7Y6#IDd zwS_EBfx|};T5d7bhH(MRw~ssQU~AVjJ{Vdoe%v(2DrAVLpFMS(HF7ak)hY8CW^tVMX3RUR&T=0IE=dF%>M z^ofl@CgT!Hq9-7tsJ*d`Nuvlw9ZRPYl&GDP0*+pQnt~nzCn{T|}}Qj`1KJ#{vUlr)+uA?fVm1v5r``2H*rRlc`zGtHkf3X z+js&EPB>E>zMXLQ-Z76l;?mVx2DKrB7=SEm!Svb|uI|n8=G#Yj>6KgZ@P!qge(rH@ zO^b~Zh642pp<=ove5&*qmMTB@k+Hmd)biUeukrY`A>R7lvB>U#m#R)mds5Llb+ks0Q(`efp#4-%nq5I{2$WFqWK?6F-E~#JRrfy5pRZi8?8Q zD{@ROrBt+$GCXN}Sw|6QVIt^D?=Tx|_oT)c`;+@z60VG(tLqS4rDx)(l950EC^`W4 zv%BG4vdo|L6S9WS|MIUnP@A9q^}qdZ{DwX8k*(?dC9ajD^3n6}8MS*syORT&J*abk zmaP?KBZ9T5{DXgfx0*~Zzuy;S-5*+R+76#n zVtLkK)fyJ`c=2w=_wSy_^UscWeZN2%6c$aMy)?jUcUL@I5hej;5Zr#WmNhD|K3i`Q z@4Z^%#!ihwfnFUBn}qGXE!b;kKv1}16B|?%1)8PdPri5ts9HM0$y0`{9~=>!RcQ^Ux6HaVk@ly^MX2yT-;6nkW+NLk=OzyU^sQ&34! z6$BC$Nl7Nod6**#5Tz>CnOKa2j23fbn5WqMHf+LKAvQQM> z@w83wA}B>=0Fy#C3H4(EOgC6DCyK&({MH}d#+SZzjKxV}-$8s`QinkXRl?cBhZv7) zD5G56cKp}}cJRTcXPC?b2uLL0W#b7~3QPs+96SlLgg$ljo91X#+`e2dEB&e z+EYsJ;X#TSL22O!>zO(U{a*C)xTwR-}zxaJejsan31FK<4b1i_Z3r za>|7(It7=zqX|aUrDEAP<&mAZl}Cg)qXvc3)j{{D&&}aq-+8hFfZsk$dw`q*=-w@a zf7U&KNqZ9+0yh7>U;eezzw}Q&^KaD7Pj~$O!AYE6zFNGsy{GGXjo!TEQ3W|@`1v{2US)C)K)6(mr4MSvii z!DX=Rlb)@6T{dP;z~Q9e?$G1H$Z0&yVl*2ULDz|P`lv(h3smC)7RN2V`?}%PTle{e zKYkz|e{PIVd}I$7c51})_^9d~%gZ@3Eo@Zs$SH4N4@lU#Kho>Uv zO-`#o;Fz&DPz;{EEVqvm?mal>orlNR+nPx54&bKGggJ3hS&8uZYo)BJmapFR?wKFi zm+#;1^R2g5n9u1x@zmI2*WtxSrF`RSYZh#{Hy3PAGDbT?lxq0IhsMZTHE!No;?1ud zgMB#f;uRrO==&Zm4IU0%*MdffY`p6bKqW~TJo{pd)VFMxE7`el5ox=}*-q^cX+&=RC;mJ{NWEK$@LhvrA4(cKRoEBZZpJT_m8nTP|RMcuA zEalWU%{q`)i{PT=?9R>>X9BuSlpyB-aP0$sqrCUl!>#K#p4$DbfAab5n=ifm=IVI4 z1w8feGe7nb{)^+}GhN09nil`6_&pW4f{Nl>!@e(>69CZ)MgVal?hOwn2V?mHb<*P#Up|poT$V#N(z|M&P?-s&8tfYbw>0aa0O7#y~p!_Yana6Sd6K@{lw%wbhXU3gf| zuuSnzfNU(hz`rBcQ$Yr>>>|p#*rY3*`=d4?wThsS3{X_iX2U8PIszjVjJ@JCn&7nK zdqaSX9A2g2O(PCdL?0a-1S*Cj7~bxP>t6A^7zXN4KqZOrY@Kj=xRQg1EpEMihPUpl zc)HGd(q%n6qy?dEZ+SfXKhEjVF0L+^Y3*W=m6DgCWkNd`OVi7s7Gl+8% z`<_{evaTiNj6QYnp#&++Ibk>)N{R{Vw8U^!VBq%UusOB$vcXQ9aB03LsXN4~F%HH~ zB9tm34#rX)1^~7O!*H@*w8yFrAib&u>crrQ*2{e(@&$4mLe`G`NiXhnk9_qD$|Jo>x_d3N8*bC zs(QpKP%c~;vNy+Xe}5r&A7#0)v&~u*lNs?-AK1dObLbLq;o=Cm*9iY__TD_`((JzL z`~1%GEO&eFyL9*4Jw3fm&psMSqZP@rY=JShF;NnX!9Z|aA%PSL2?0`61**ayAt4lr zlPVyof?$lX%h*N;VT@&26G@h}jx<_k>zSVJ>HY0@z1y>$bAI{bc{NH>RF*$&=~O-c z-MV$}eV%)M=lA<=`A}AE#+}2&>1`+O__S-1aAurqRR!5THIdg|zN5y7F6T=zWHQ;> z=5SGKQFx})LiP{mY;6y@_#m8c4LO$1d41!Jz&Ecg zB9i4^YK>~GBPGba(-c)CCL%~HJ-y!`L@P2BblVCkDfjnUdD0b}-7@<5wvo@wROi-{ ziRgN+JeVV6gq1k1EhE>f$i>3rs=)1QGx^4q1AXo4LRuX6_aggybt(#vFLHA*59(uP z9mdX=k=wV9^s`?$lqVlA<=_6$1NQr#nXs%omr{=CA@w1!m(ynH7y zJnVEhv}%k<%n->`#YBt|N+S$K7&%MsEH)TI*HI;5uL;B?Ix4(~B&;NYQR)y`r9QYX zw+21#sL!mAv}u){MKIN>)v^$kEU|H6U4H!wx8?aeEz=W@JC)&J4)46U=`If}T@b$h zM#pq$SeqsOy~j#(wM;yFbH&wr1tzpw7Yjc9$y;*qPC$%Ti5BBTt%&#tG4+P$c~OWJ z&uUd+J*1=>Ll8u<#%PG0B(>m%+AJGZvpE~1Z8uYp z=xAvd-AXfKWi%M)h084nF-G;yPlGGtYIU%mG#*#tg!CvvC!`fhBQOBA6r%T;#28LD z%kac#JleJrw%WE^*OZ(!W|(4n>F{7au%;LSM*xR+7UnPiXBVpf^`{Si#wPo8p6Ao# zqOA!@lawiGNzzplV~B|qtPHD>e}^~@*XnrV#MSwpkCK7OB>~Y&QiGW}`NluUTw*M8!^KllUx(_RfA0|fY1B^ok!<>~OH*d@&1`jLY&Tb>?4-~8#MXW^)v;xn(eVdi; z@ugSxWhogi-3V+=3|ng!=N!fWMx=Cx2hN?~=Jj3Kzq2paTh2UkmO42QC&kEd@!=Dc z2YcMwpL1q?!u#H_iFO8WjaX+{&WHT#=T_8j34H&F#FH)Lx#6gdbc-a#nvr4%izPHc zaSpoU^!6yw_M;wLQdTxeG~mRLtPq?bDAGruCSp7m-CKiT`?;m*u^Bl|w9oU5JnKml z(pNb8h+MFuNKAN9rnw`AC|w<}&XE@x>XeX_WgD4hPOKu0_L2{;f=?C^BTe6!l9GxV zNFrDjx~LL>(isK@hN?0|xm!gxTg$l`iyoQWsYzdlk9}ZR_0h!VW)1n;1Yu2 zqaVM@jW6$T?`EKCM66hh_k<8JB%>Or>jp!TGK=KS;Ji{;k-}$GRpi#anLK)Cgo&_R zM6T~eZrl$ttA$ksi(2XEzmQd>=@Q~ZTvm&B;Jq*!7@2N3igf{#$WTT>$djQ)soKEd z(UR$U&dOUcEj&DOAc7i$GX|RitDv%KmHE8k`i?RhJ9*?x&Vz+xSqE8FNfL>{)brST z&vE_65x1|c7!C`bK0Rhw8bZ@D5YO%`&@P0N$&t2N-ZJ%UT^RBYe|yIMUMbc@W(PH| zeC3G2z{%v#)P$=weiMS_0YHNBBYj>Vp8c( zbw-oge!ij&stZ*ef#gZkBBeAnM%L@9emI0M$g{i<2|218w{G1k+O~Fio_BWop4t5H z^SZlxkDvXuN|x@<%Us|5sHpsusu*K!*2ON5Ne2e0lQ>%w*HRa!u8PZZclh$gP7{rg z+ssMmP%WHInb>xgTGXnN<{2ji2=okLu>R12x-+aRdd+9fS z?5D?_3)g?}=l_fU%Z&|7MiOPsMduvrlf?Vq z=Gi!rGe=mgdb9heLO4dS-t)GToIlfWZKr1Epyl@MU3TtfM0HpvBu#V?LTz~L@$=jn z6`Z@Uh8u11{0m1|GNxOW;kxktM>l!xm3>}#ai5*bo<~mzU7e%Sr^!nwdG>38t@kA+ zgO<&s0d2ChtHfy2Pz(~gQP5V&Rtti3bkZjlBr7Ci@K$8xp)Gpy&cqtpE>K%}bEI3N zq%M*|B-viRfKig|-Cca1;mZOM1N1DuWML`&Yljh>0wMOEmMG;Q#~$0jbs?Z444tLa zUVkPkR46M^T;Gaf&2g{*eL7PcA`|Bj2Tu9~@}WYZ5D=;aV}U?#DYq4s-&bbL1inzW ztb$>&3XBCF^OjX+_>Hgc@a(T$!_SnHTT{-TE19ktl2#PCXIOehgN*UOvoX!$yDE7VkNhpLAi!wg4R1Y!r4gcU<+4aQ^)GNp=!HYu^`xY-4Y zwVXm5M&7bEF0~6$+O}m-8XkLO9oKG=Vh`P~LZG#ll#~r;Au7QeW&=ZB2F7j8$(sv0 z252?Hm6mcnBg>RUU1RXX)E~T(Dq=ih3`yd#=suz;Atk6LQUY&;^~`avX{c5iRkfgP zDr}w;lM>sAEggYgUXp-T9U2{_M41f6W?3&?6O(2>mzWe|d#Q)bREko|wrx&#-8`fe zSH_rVjdh`ou}|B^86#axX@Tm<8qu#07LBAT>5bpFofLcaP?m#2Lj zjXzt=?X7qX(ff&rBp2>-rv=@64Ay*2^h{iv=M&sA3gu*aG<35aR?UJcv@GkIRol_gJIxeD2AM^MId(W;G#*f{m84NY zbcWi(GDQMP>k>(OM;g3`(qkk?lj-eD0V{&4QXPA_cA`u~7`R?<>5j$yNqdH-7=KLk zke=$M{l>ORiOvefDp_xR`expaMaiwBFa~=ZBi6_|_hl~oHZ5ze z;GxGV4nv~dfissj$cMskoRNFW;r#_v5LOX-Dilhe_~Lzzri8{`d)T%u-u052?Nd_< zV|elCh%T;JF6NB=8U{;KbqvY@d6v}S20znVLnC(+T-d{M0G);TXnc_}+y!;vHx z4tG=M&*g*Z6T`E2KeN1<58Tj?v-0pDtnAR_u5jb_ZhFJSwD@iz{9U-d_m}^Z@N+-; zx4t>(c*05Z!GHP3{`wbxX>*NWF5$He|jtm<^gN^WoPv7R#pLiW-M+}Bj=JN{Y3w&lN zN@Ziv@zf(jG6z>~&RCz8Yz%Wk6sky1N(qosI^L{%%p&)Ytr^BePUibDPH2RHp=;n^ zxnxy$G)>2_Ogw(M%$i8<9plNE@%o6#)`ZFC zgwZ6Y7!3%SU@@%noZ982Xo;=RpSU3$cWk7dp(z$R?MXBPh5XGZ@#BZwq#kb+h@|5% zoSycU5IllMDUL0?4rAb`i^LdM)g99!=i*v{(c=-Uf)~MtNMQ`$$l>KqS=$e|+){Os zl?tNp%sAtG;rZmviYsp%F$@q_mgUm%(*2s{{E)6qR11d&hnN;)B83&sY`~dQGiJL7 zeDSvy9PI9q+Q_YY`_xT~SLKn1A7e1tq^@`Islz!(h=DvWIGD{ifAKVVkue$%**>$) z*^MEW9vGrFqwSQ%s^jjia#k((uC;t+*6`fjL+U!?jwI@xng=e7xOApqwIS>*JE|az zwI|giF%WybYNtIp$_cC&7AF}C39N#p1!e(ENEF^vWS*)EQb%DYC5-V5jR8rt35@rY z34Etqzk0}p2QwagXoJsx^*$m7>kQ-df?~}RLSXIU8ms-9>Ryer7Ht~3t|KWpV|rV| zkN_oy;~YwXMQ9nWWoVug+LF3%8MH0V`raTxg%Bb^Q*T43LZgX;hYjP4>tcezWeX)0I+N}H=D1zBPIEWe}qG=UF)EK%3v87%_KJ%Mb`Ns3R z?k*T4$0|nV2P-bvA%AG=BqySw z=@L7><>IA`gJ^hp)^TOG;mQr+!s7*tyOAzhNJ5q$yKAV>#z56|G;K%MwtaV$B2krq z(y3B6fvS$|FKX@_EJ&|MoU`P)XLB-Ud;0|A%`s4DiCN;>zBf51w1cOU_G; z<&~W!XC@i`TP#*%5#aJTqXzEM@Io!zjF5GLt(9&*=aLEdGZQ|x)A8v~&)NOrA-OYb zYz^4CyF^lkH#s7avM_9J8iu*&^&3|?Jh;Kp8+&~A;4Z5bBxBh+H^wK=&h>kMa^b>7 z23x0T>qr$W0U<6rVi#F0cG%gy$Es?1_0`*`I)=j%q-Aq!%&C(n*?wS~^A}HGiZy=w z_5`B6W&=?Sn+}b^)npGrY zFvioiD?(dge2!|QZ90r(AoO@Opdu`f2d4RC6H{1;et@yQ=XD)FcYU5@&Tw;sd)J4u zfBQ<&uDa7HbU{^BQwmA75>?}@HAYoauK~#ctEg|gwoy%;_dd_OAFZm&0Ri;vWbGZ- zW=CI6^|jmjr~ky$3hXoK`o=-~fNW(^ zt%*@>BBI^0Op=$)A5hq}ip_(O9TT$kg2R7jHg^UNc9cxoZogxoi9MA>JsYywvmPH$x-w)h4 zREBNf_pBAX&3gtRVKtF##sy&{DNE zP3U_2E{%kgjtgRf6cHkc)OU3$p+Tuao#XyN;GXx~ z>x9fZyb*HKV}wZGfns1@CG378vzE4mdDT(v9Wdz@*y)&G-)VX6HDT|Y37bk>CWsac z21>g;q^ov#{L+x$`+>{kzUGsk_!4(s`Wj8$;vD4Vl+l_e8;m%0`e6?4++sND@Fwuo zGf#2y+!+oJjz zxmxYh=RloLT7Chj|IXig7Jv``>96H3$mQ2=AKm}{r%!#vIR76usGzR5qEM-wm2RAs zDQOZ_6oVv{-d_(n{^Xge$i4sIqm%Z#h44FM{lQ=S3vc}DAO0J^T08e6a_ia;HYYFd zh#iCwld2k4%R*Cf#I{qFR*GW4t5?2OoIAbtSKs->#UBan4DU-``}kK`Re`QmBm);6 zpZl$=eEqrmpc_ob>liDXIW=TF$T&D^aL)4JnaJB8D|qBg#<~}5f|U9Zoro|k4CB+5 z-8yk&*|O}Q34L^qQ)rG_ZohHJ;Xy!ShPRRNM7Vf148#~I zGUdh#_qb#%?-{ORnihhh;(BYcXelef7f?o_$PI@+VrC6~>`*5p6|C*uSOSTbKIk=k z>r(9tVf=O>>@&U-Xun~YVb0{lgwfdz#t&>TK6?^39TPIoJQFG}G^Mg>h0GZ+%Fqd+ zCocAvf;~3)HW63_ObwY@d}bMy!bUEPoG_Gr_lf;vw?E;h-TP`Os&wPTHU*E_0F>9kuiaf_UhZVtE zN3%1>1;=DC4w`_^+t-}P!p zeIRgB+AdIrKxQnNwR~HKD#wNc2^GZ_1)JwCW37{W*HV$@cM8$eff!Y=&bd_ezJ992 z7-Lu0tNzwob8vKY6jrNMCn7DV1=bUp2kPwyFY`lx=F|C{?&Re-oPX%Z-)l`;1=XJb zds1R(tym4IizzjCM%PZaowRuuQc~%QAPOpqXhie63GbOKfBLU?xs6r(=ic`J%ohE~ zzKTWVM>kCRZXx`gOrrUvzjFT{|GEF|S7vtegNHBdKDwD_FBT7Pz1FJLgV{=!o#qa%YtCWK^#41JS@Y#?& zFPJT7?C&qQzkkS!&%efGG9k+i8z7gSS)4~YiCHby%GDd1CO)4u|pgB0OvLanx?_p zvghc$IfUa9sV|aT)=D?Nj7Q)}*tNO8@Tpm6j zU!UE2eQWaBYae*v)mJG_T=>_sYCK!GT8?a#kW^UBWm=qG?(E$Enaz`H?^@p&47(6e z=dmVo=h}>4xp9ld+%VpF5KKm%cRca%7R^GrwYQ)vJwA7ApMVn+51kSdv`NX12^k^4 zH?Ox`IZ#$9r^3?4MCu|WL+C7BlW?x&fpZVAaiV3l3N&>hMnepV<*MatUpe6H))te2 z@Bh%p*>g<;Rc&ySk{9o-c*qslr2Y6O1+pY0<7lGcC@2fl;ibbwL)$_c_Cp{&#!kQy zRq0adyFl$3dq(x!T~`v4bC|+%^3oZ~(;G}Ko@8=ri+nJ^CWAZZa9u#BIXbfBWgn1> zLNbaT7rbx5bygLJ;ECi>879L-9I}ke->7-@_KNG*=Irbw7PF33)l#>;Mi1L@>XDLn z|Dki7_hZxu+f&Dfo|PP!`u-sw|M)lg)sOua&wb;7;riP-_29d(qny3{mwDrb zPqNy*j)}0+5x2i6EUw<8sds6XuXFFU7wMKWj3kUPWCCg}51cv0@B7eu`1xOcmd}0e zMcm*d4_wQaQf7Qt*s4KAwdG?95Drq5v*8JY+2tLasSpn zxwj041Lg-yyw7ppDul;9%V@NQ5(uHBEHkpgvUfNHX9+RTg%0O(7V{N1ZobM_pL>Om zPA5G1)MeiGu7`Q-sY_fsvB|Ks=G8^D{p26|0GFRQ$0z>j|IWw$!9V3wlQB=e^R2x7 z-EZNshfc9JbaWxn1!c3agd%acP!4L#?kX^J!ZZ^~Yq(GrR88at%8n{?BecO`8sVK! zPZ*EpeCqiH?Q+E4&XU2zLFuU~&}8wM!Wh<04Tv#tziP0{7MEp=ont;bV%2nDEXHO; zTGV)KW@uIi_~|*sT4EcpHtWMJ5Ue#gRZQ=ni>BUgPSqfN00tt`2L&60^A2rVKv3sc zKY2cHj_zemJ2$DRy=YohRkaul1~g6UQi|2F@zD`TI37fJlosejC_qHTlmNf@cYj>} z*njjh^MC$#|CD|l_@zJffy~wYFe?zcU^mDF!yPpOWs7z1&nuA zGL!pFn`Ptf)*pYbTm66CI}LhUk>Anm((e|+G zG2%_1f_@lbuTsdCc)LW?0M`|S?)YeW%-~c>#BYs6W1tIxx@r1E@vfr_k!UTG^JkfC zufr[h416U&=-cvtfoe}!GN#8$`+fzCF?jFDvy9w3 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�-=G>By4Q7tgU*iC|(?G1yh~J+=$W?HJQmc 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%0A?^5^#BMlo@ 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 Date: Tue, 7 Nov 2023 17:00:50 +0800 Subject: [PATCH 4/4] Change version --- .../target_functions/target_functions/hydro/furina_default.rs | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/mona_core/src/target_functions/target_functions/hydro/furina_default.rs b/mona_core/src/target_functions/target_functions/hydro/furina_default.rs index 37ac2684..7ce09b4e 100644 --- a/mona_core/src/target_functions/target_functions/hydro/furina_default.rs +++ b/mona_core/src/target_functions/target_functions/hydro/furina_default.rs @@ -65,7 +65,7 @@ impl TargetFunction for FurinaDefaultTargetFunction { &CharacterSkillConfig::Furina { hp_above50_count: 3, c6_after_e: true, c6_pneuma: true }, None ); - + dmg_e2.normal.expectation } } diff --git a/package.json b/package.json index 24aff7b8..f3698c8d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "genshin_artifacts", - "version": "5.17.0", + "version": "5.20.0", "private": true, "scripts": { "serve": "cross-env ENV_FILE=.env.development.yaml vue-cli-service serve",