@@ -591,7 +598,7 @@ div.spaceBetween {
color: white;
text-align: center;
border-radius: 6px;
- padding: 5px 5px;
+ padding: 1rem;
/* Position the tooltip */
position: absolute;
diff --git a/src/palworld_pal_editor/api/save.py b/src/palworld_pal_editor/api/save.py
index 0be8cd0..8170900 100644
--- a/src/palworld_pal_editor/api/save.py
+++ b/src/palworld_pal_editor/api/save.py
@@ -79,21 +79,24 @@ def get_active_skills():
atk_dict = {}
atk_arr = []
for attack in attacks_raw:
- if attack.get("Invalid", None):
- continue
+ # if attack.get("Invalid", None):
+ # continue
data = {
"InternalName": attack["InternalName"],
# "I18n": f'[{displayElement(attack["Element"])}] ' \
# f'{"🍐" if DataProvider.has_skill_fruit(attack["InternalName"]) else ""}' \
# f'{"✨"if DataProvider.is_unique_attacks(attack["InternalName"]) else ""}' \
# f'{DataProvider.get_attack_i18n(attack["InternalName"]) or attack["InternalName"]}',
- "I18n": DataProvider.get_attack_i18n(attack["InternalName"]) or attack["InternalName"],
+ "I18n": list(DataProvider.get_attack_i18n(attack["InternalName"]) or [attack["InternalName"], ""]),
"HasSkillFruit": DataProvider.has_skill_fruit(attack["InternalName"]),
"IsUniqueSkill": DataProvider.is_unique_attacks(attack["InternalName"]),
"Power": attack["Power"],
"Element": attack["Element"],
- "CT": attack["CT"]
+ "CT": attack["CT"],
+ "Invalid": attack.get("Invalid", False)
}
+ if data["Invalid"]:
+ data["I18n"][0] = "❌ " + data["I18n"][0]
atk_dict[attack["InternalName"]] = data
atk_arr.append(data)
return reply(0, {"dict": atk_dict, "arr": atk_arr})
diff --git a/src/palworld_pal_editor/assets/data/get_attacks.py b/src/palworld_pal_editor/assets/data/get_attacks.py
new file mode 100644
index 0000000..f32d0b2
--- /dev/null
+++ b/src/palworld_pal_editor/assets/data/get_attacks.py
@@ -0,0 +1,345 @@
+import json
+import re
+import requests
+from bs4 import BeautifulSoup
+
+# https://paldb.cc/en/Active_Skills#UnrevealedActiveSkills
+# let items = document.querySelector("#UnrevealedActiveSkills > div").querySelectorAll("a[data-hover]")
+# const list = []
+# items.forEach(element => {
+# const dataHoverValue = element.getAttribute('data-hover');
+# const parts = dataHoverValue.split('%3A%3A');
+# if (parts.length > 1) {
+# const skillId = parts[1]; // This is the part after "%3A%3A"
+# list.push("EPalWazaID::"+skillId);
+# }
+# });
+
+invalid = [
+ "EPalWazaID::TidalWave",
+ "EPalWazaID::WaterWave",
+ "EPalWazaID::Unique_BluePlatypus_Toboggan",
+ "EPalWazaID::Intimidate",
+ "EPalWazaID::Human_Punch",
+ "EPalWazaID::Throw",
+ "EPalWazaID::Scratch",
+ "EPalWazaID::WorkAttack",
+ "EPalWazaID::SnowStorm",
+ "EPalWazaID::EnergyShot",
+ "EPalWazaID::CrossThunder",
+ "EPalWazaID::ThunderRain",
+ "EPalWazaID::Funnel_RaijinDaughter",
+ "EPalWazaID::Unique_Kirin_LightningTackle",
+ "EPalWazaID::Funnel_DreamDemon",
+ "EPalWazaID::Psychokinesis",
+ "EPalWazaID::Unique_WeaselDragon_FlyingTackle",
+ "EPalWazaID::Tremor",
+ "EPalWazaID::DiamondFall",
+ "EPalWazaID::BeamSlicer",
+ "EPalWazaID::Commet",
+ "EPalWazaID::DarkTornado",
+ "EPalWazaID::Unique_DarkScorpion_Pierce"
+]
+
+# https://paldb.cc/en/ActiveSkills_Table
+# let items = document.querySelector("#DataTables_Table_0 > tbody").children
+# let list = []
+# for (let item of items) {
+# list.push(item.children[1].innerText)
+# }
+skill_list = [
+ "EPalWazaID::TidalWave",
+ "EPalWazaID::WaterWave",
+ "EPalWazaID::AquaJet",
+ "EPalWazaID::WaterGun",
+ "EPalWazaID::BubbleShot",
+ "EPalWazaID::AcidRain",
+ "EPalWazaID::WaterBall",
+ "EPalWazaID::Unique_BluePlatypus_Toboggan",
+ "EPalWazaID::HydroPump",
+ "EPalWazaID::Intimidate",
+ "EPalWazaID::Human_Punch",
+ "EPalWazaID::AirCanon",
+ "EPalWazaID::Unique_ChickenPal_ChickenPeck",
+ "EPalWazaID::PowerShot",
+ "EPalWazaID::Unique_SheepBall_Roll",
+ "EPalWazaID::Unique_PinkCat_CatPunch",
+ "EPalWazaID::Unique_Alpaca_Tackle",
+ "EPalWazaID::Unique_Garm_Bite",
+ "EPalWazaID::Unique_Deer_PushupHorn",
+ "EPalWazaID::Unique_Boar_Tackle",
+ "EPalWazaID::Unique_Eagle_GlidingNail",
+ "EPalWazaID::Unique_NaughtyCat_CatPress",
+ "EPalWazaID::Throw",
+ "EPalWazaID::Unique_HawkBird_Storm",
+ "EPalWazaID::PowerBall",
+ "EPalWazaID::Unique_SakuraSaurus_SideTackle",
+ "EPalWazaID::Unique_Gorilla_GroundPunch",
+ "EPalWazaID::Unique_FengyunDeeper_CloudTempest",
+ "EPalWazaID::Scratch",
+ "EPalWazaID::WorkAttack",
+ "EPalWazaID::Unique_KingAlpaca_BodyPress",
+ "EPalWazaID::Unique_SaintCentaur_OneSpearRushes",
+ "EPalWazaID::HyperBeam",
+ "EPalWazaID::SelfDestruct",
+ "EPalWazaID::SelfDestruct_Bee",
+ "EPalWazaID::SelfExplosion",
+ "EPalWazaID::WindCutter",
+ "EPalWazaID::SeedMachinegun",
+ "EPalWazaID::Unique_FlowerDinosaur_Whip",
+ "EPalWazaID::SpecialCutter",
+ "EPalWazaID::SeedMine",
+ "EPalWazaID::Unique_RobinHood_BowSnipe",
+ "EPalWazaID::Unique_QueenBee_SpinLance",
+ "EPalWazaID::GrassTornado",
+ "EPalWazaID::Unique_GrassPanda_MusclePunch",
+ "EPalWazaID::RootAttack",
+ "EPalWazaID::SolarBeam",
+ "EPalWazaID::SnowStorm",
+ "EPalWazaID::EnergyShot",
+ "EPalWazaID::IceMissile",
+ "EPalWazaID::IceBlade",
+ "EPalWazaID::Unique_IceDeer_IceHorn",
+ "EPalWazaID::BlizzardLance",
+ "EPalWazaID::Unique_CaptainPenguin_BodySlide",
+ "EPalWazaID::FrostBreath",
+ "EPalWazaID::Unique_VolcanicMonster_Ice_IceAttack",
+ "EPalWazaID::Unique_IceHorse_IceBladeAttack",
+ "EPalWazaID::IcicleThrow",
+ "EPalWazaID::FireBlast",
+ "EPalWazaID::FireSeed",
+ "EPalWazaID::Unique_FlameBuffalo_FlameHorn",
+ "EPalWazaID::FlareArrow",
+ "EPalWazaID::Unique_Ronin_Iai",
+ "EPalWazaID::Flamethrower",
+ "EPalWazaID::Unique_Baphomet_SwallowKite",
+ "EPalWazaID::Unique_AmaterasuWolf_FireCharge",
+ "EPalWazaID::FlareTornado",
+ "EPalWazaID::Unique_FireKirin_Tackle",
+ "EPalWazaID::Unique_VolcanicMonster_MagmaAttack",
+ "EPalWazaID::Inferno",
+ "EPalWazaID::Unique_Horus_FlareBird",
+ "EPalWazaID::FireBall",
+ "EPalWazaID::CrossThunder",
+ "EPalWazaID::ThunderRain",
+ "EPalWazaID::SpreadPulse",
+ "EPalWazaID::Funnel_RaijinDaughter",
+ "EPalWazaID::ElecWave",
+ "EPalWazaID::ThunderBall",
+ "EPalWazaID::ThunderFunnel",
+ "EPalWazaID::LockonLaser",
+ "EPalWazaID::Unique_ElecPanda_ElecScratch",
+ "EPalWazaID::LineThunder",
+ "EPalWazaID::Unique_GrassPanda_Electric_ElectricPunch",
+ "EPalWazaID::ThreeThunder",
+ "EPalWazaID::Unique_Kirin_LightningTackle",
+ "EPalWazaID::Unique_ThunderDragonMan_ThunderSwordAttack",
+ "EPalWazaID::LightningStrike",
+ "EPalWazaID::Thunderbolt",
+ "EPalWazaID::MudShot",
+ "EPalWazaID::StoneShotgun",
+ "EPalWazaID::Unique_DrillGame_ShellAttack",
+ "EPalWazaID::ThrowRock",
+ "EPalWazaID::Unique_HerculesBeetle_BeetleTackle",
+ "EPalWazaID::SandTornado",
+ "EPalWazaID::Unique_Anubis_LowRoundKick",
+ "EPalWazaID::Unique_Grassmammoth_Earthquake",
+ "EPalWazaID::Unique_Anubis_Tackle",
+ "EPalWazaID::Unique_Anubis_GroundPunch",
+ "EPalWazaID::RockLance",
+ "EPalWazaID::DragonCanon",
+ "EPalWazaID::DragonWave",
+ "EPalWazaID::DragonBreath",
+ "EPalWazaID::Unique_FairyDragon_FairyTornado",
+ "EPalWazaID::Unique_JetDragon_JumpBeam",
+ "EPalWazaID::DragonMeteor",
+ "EPalWazaID::PoisonFog",
+ "EPalWazaID::Funnel_DreamDemon",
+ "EPalWazaID::PoisonShot",
+ "EPalWazaID::DarkBall",
+ "EPalWazaID::DarkWave",
+ "EPalWazaID::Unique_DarkCrow_TelePoke",
+ "EPalWazaID::Unique_Werewolf_Scratch",
+ "EPalWazaID::GhostFlame",
+ "EPalWazaID::Unique_FireKirin_Dark_DarkTossin",
+ "EPalWazaID::ShadowBall",
+ "EPalWazaID::Psychokinesis",
+ "EPalWazaID::Unique_BlackCentaur_TwoSpearRushes",
+ "EPalWazaID::DarkLaser",
+ "EPalWazaID::Unique_BlackGriffon_TackleLaser",
+ "EPalWazaID::DarkLegion",
+ "EPalWazaID::Unique_WeaselDragon_FlyingTackle",
+ "EPalWazaID::Tremor",
+ "EPalWazaID::DiamondFall",
+ "EPalWazaID::BeamSlicer",
+ "EPalWazaID::Unique_NightLady_WarpBeam",
+ "EPalWazaID::Unique_NightLady_FlameNightmare",
+ "EPalWazaID::Commet",
+ "EPalWazaID::DarkPulse",
+ "EPalWazaID::DarkCanon",
+ "EPalWazaID::DarkArrow",
+ "EPalWazaID::DarkTornado",
+ "EPalWazaID::Apocalypse",
+ "EPalWazaID::Unique_NightLady_WarpBeam_Straight",
+ "EPalWazaID::Unique_DarkScorpion_Pierce"
+]
+
+def get_attack_data(id: str):
+ langs = ["en", "cn", "ja"]
+ data = {
+ "InternalName": id,
+ "Element": "",
+ "CT": -1,
+ "Power": -1,
+ "I18n": {
+ "en": {
+ "Name":"",
+ "Description": ""
+ },
+ "zh-CN": {
+ "Name":"",
+ "Description": ""
+ },
+ "ja": {
+ "Name":"",
+ "Description": ""
+ }
+ }
+ }
+ parsed = False
+ if id in invalid:
+ data["Invalid"] = True
+
+ for lang in langs:
+ try:
+ url = f"https://paldb.cc/{lang}/hover?s=Waza/{id}"
+ response = requests.get(url)
+ soup = BeautifulSoup(response.text, 'html.parser')
+ if lang == "cn":
+ lang = "zh-CN"
+
+ data["I18n"][lang]["Name"] = soup.find('a', attrs={'data-hover': f'?s=Waza/{id.replace(":", "%3A")}'}).text
+ data['I18n'][lang]["Description"] = re.sub(r'\s+', ' ', soup.find('div', attrs={'class': "card-body"}).text).strip().replace("。 ", "。").replace(", ", ",").replace("、 ", "、")
+
+ if not parsed:
+ unique = soup.find('img', {'data-bs-title': "Will not inherit"})
+ if unique:
+ data["UniqueSkill"] = True
+
+ try:
+ el = soup.find('span', {'style': "padding-left: 35px"}).text
+ data["Element"] = el
+
+ ct_pw = soup.find_all('span', {'style': "color: #73ffff"})
+
+ ct = int(ct_pw[0].text)
+ data["CT"] = ct
+
+ power = int(ct_pw[1].text)
+ data["Power"] = power
+
+ fruit = soup.find('img', {'src': f"https://cdn.paldb.cc/image/Others/InventoryItemIcon/Texture/T_itemicon_Consume_SkillCard_{el}.webp"})
+
+ if fruit:
+ data["SkillFruit"] = True
+
+ parsed = True
+ except:
+ print(f"{soup.find_all('span')}")
+ except:
+ print(url)
+ return data
+
+
+with open('./pal_data.json', 'r', encoding='utf8') as pal_file:
+ pal_data = json.load(pal_file)
+
+def rename(key: str):
+ match(key):
+ case 'Grassmammoth': return "GrassMammoth"
+ case 'SheepBall': return "Sheepball"
+ case _: return key
+
+element_key = {
+ "Water": "1",
+ "Neutral": "2",
+ "Grass": "3",
+ "Ice": "4",
+ "Fire": "5",
+ "Electric": "6",
+ "Ground": "7",
+ "Dragon": "8",
+ "Dark": "9",
+}
+
+def main():
+ skill_map_raw = {}
+
+ for skill in skill_list:
+ print(f"#### Parsing {skill}")
+ data = get_attack_data(skill)
+ skill_map_raw[skill] = data
+ print(data)
+
+ skill_map = {}
+
+ values: list = skill_map_raw.values()
+ values = sorted(values, key=lambda x: (
+ x.get("Invalid", False),
+ element_key.get(x.get("Element", ""), x.get("Element", "")),
+ x.get("UniqueSkill", False),
+ x.get("Power", -1),
+ x.get("CT", -1)
+ ))
+
+ for value in values:
+ key = value["InternalName"]
+ if "Unique" in key:
+ pal_key = key.split("_")[1]
+ for lang in ["en", "zh-CN", "ja"]:
+ pal_key = rename(pal_key)
+ pal_name = pal_data[pal_key].get("I18n", {}).get(lang, pal_key)
+ value["I18n"][lang]["Name"] += f" [{pal_name}]"
+ skill_map[key] = value
+
+ with open('./new_attacks.json', 'w', encoding='utf8') as json_file:
+ json.dump(skill_map, json_file, indent=4, ensure_ascii=False)
+
+if __name__ == "__main__":
+ main()
+
+
+# with open('./pal_attacks.json', 'r', encoding='utf8') as json_file:
+# pal_attacks = json.load(json_file)
+
+
+
+# for key in pal_attacks:
+# if "Unique" in key:
+# pal_key = key.split("_")[1]
+# for lang in ["en", "zh-CN", "ja"]:
+# pal_key = rename(pal_key)
+# pal_name = pal_data[pal_key].get("I18n", {}).get(lang, pal_key)
+# pal_attacks[key]["I18n"][lang]["Name"] += f" [{pal_name}]"
+
+
+# # for item in pal_attacks:
+# # if item in invalid:
+# # pal_attacks[item]["Invalid"] = True
+
+# new_map = {}
+
+# values: list = pal_attacks.values()
+# values = sorted(values, key=lambda x: (
+# x.get("Invalid", False),
+# element_key.get(x.get("Element", ""), x.get("Element", "")),
+# x.get("UniqueSkill", False),
+# x.get("Power", -1),
+# x.get("CT", -1)
+# ))
+
+# for value in values:
+# new_map[value["InternalName"]] = value
+
+# with open('./pal_attacks.json', 'w', encoding='utf8') as json_file:
+# json.dump(new_map, json_file, indent=4, ensure_ascii=False)
\ No newline at end of file
diff --git a/src/palworld_pal_editor/assets/data/old_pal_attacks.json b/src/palworld_pal_editor/assets/data/old_pal_attacks.json
new file mode 100644
index 0000000..004586f
--- /dev/null
+++ b/src/palworld_pal_editor/assets/data/old_pal_attacks.json
@@ -0,0 +1,1624 @@
+{
+ "EPalWazaID::AquaJet": {
+ "InternalName": "EPalWazaID::AquaJet",
+ "Element": "Water",
+ "CT": 2,
+ "Power": 30,
+ "I18n": {
+ "en": "Hydro Jet",
+ "zh-CN": "水流射击",
+ "ja": "ウォータージェット"
+ },
+ "SkillFruit": true
+ },
+ "EPalWazaID::WaterGun": {
+ "InternalName": "EPalWazaID::WaterGun",
+ "Element": "Water",
+ "CT": 4,
+ "Power": 40,
+ "I18n": {
+ "en": "Aqua Gun",
+ "zh-CN": "水枪",
+ "ja": "アクアジェット"
+ },
+ "SkillFruit": true
+ },
+ "EPalWazaID::BubbleShot": {
+ "InternalName": "EPalWazaID::BubbleShot",
+ "Element": "Water",
+ "CT": 13,
+ "Power": 65,
+ "I18n": {
+ "en": "Bubble Blast",
+ "zh-CN": "泡沫射击",
+ "ja": "バブルショット"
+ },
+ "SkillFruit": true
+ },
+ "EPalWazaID::AcidRain": {
+ "InternalName": "EPalWazaID::AcidRain",
+ "Element": "Water",
+ "CT": 18,
+ "Power": 80,
+ "I18n": {
+ "en": "Acid Rain",
+ "zh-CN": "酸雨",
+ "ja": "アシッドレイン"
+ },
+ "SkillFruit": true
+ },
+ "EPalWazaID::WaterBall": {
+ "InternalName": "EPalWazaID::WaterBall",
+ "Element": "Water",
+ "CT": 30,
+ "Power": 100,
+ "I18n": {
+ "en": "Aqua Burst",
+ "zh-CN": "爆裂水球",
+ "ja": "スプラッシュボム"
+ },
+ "SkillFruit": true
+ },
+ "EPalWazaID::HydroPump": {
+ "InternalName": "EPalWazaID::HydroPump",
+ "Element": "Water",
+ "CT": 55,
+ "Power": 150,
+ "I18n": {
+ "en": "Hydro Laser",
+ "zh-CN": "高压水炮",
+ "ja": "ハイドロストリーム"
+ },
+ "SkillFruit": true
+ },
+
+
+
+ "EPalWazaID::AirCanon": {
+ "InternalName": "EPalWazaID::AirCanon",
+ "Element": "Neutral",
+ "CT": 2,
+ "Power": 25,
+ "I18n": {
+ "en": "Air Cannon",
+ "zh-CN": "空气炮",
+ "ja": "エアーキャノン"
+ },
+ "SkillFruit": true
+ },
+ "EPalWazaID::PowerShot": {
+ "InternalName": "EPalWazaID::PowerShot",
+ "Element": "Neutral",
+ "CT": 4,
+ "Power": 35,
+ "I18n": {
+ "en": "Power Shot",
+ "zh-CN": "能量射击",
+ "ja": "パワーショット"
+ },
+ "SkillFruit": true
+ },
+ "EPalWazaID::PowerBall": {
+ "InternalName": "EPalWazaID::PowerBall",
+ "Element": "Neutral",
+ "CT": 15,
+ "Power": 70,
+ "I18n": {
+ "en": "Power Bomb",
+ "zh-CN": "元气弹",
+ "ja": "パワーボム"
+ },
+ "SkillFruit": true
+ },
+ "EPalWazaID::HyperBeam": {
+ "InternalName": "EPalWazaID::HyperBeam",
+ "Element": "Neutral",
+ "CT": 55,
+ "Power": 150,
+ "I18n": {
+ "en": "Pal Blast",
+ "zh-CN": "帕鲁光束",
+ "ja": "パルブラスト"
+ },
+ "SkillFruit": true
+ },
+ "EPalWazaID::SelfDestruct": {
+ "InternalName": "EPalWazaID::SelfDestruct",
+ "Element": "Neutral",
+ "CT": 55,
+ "Power": 180,
+ "I18n": {
+ "en": "Implode",
+ "zh-CN": "自爆",
+ "ja": "自爆"
+ },
+ "SkillFruit": true
+ },
+
+
+ "EPalWazaID::Unique_ChickenPal_ChickenPeck": {
+ "InternalName": "EPalWazaID::Unique_ChickenPal_ChickenPeck",
+ "Element": "Neutral",
+ "CT": 1,
+ "Power": 30,
+ "I18n": {
+ "en": "Chicken Rush",
+ "zh-CN": "皮皮冲鸡 [皮皮鸡]",
+ "ja": "チキンタックル [タマコッコ]"
+ },
+ "UniqueSkill": true
+ },
+ "EPalWazaID::Unique_SheepBall_Roll": {
+ "InternalName": "EPalWazaID::Unique_SheepBall_Roll",
+ "Element": "Neutral",
+ "CT": 1,
+ "Power": 35,
+ "I18n": {
+ "en": "Roly Poly",
+ "zh-CN": "滚滚毛球 [棉悠悠]",
+ "ja": "コロコロモコロン [モコロン]"
+ },
+ "UniqueSkill": true
+ },
+ "EPalWazaID::Unique_PinkCat_CatPunch": {
+ "InternalName": "EPalWazaID::Unique_PinkCat_CatPunch",
+ "Element": "Neutral",
+ "CT": 1,
+ "Power": 40,
+ "I18n": {
+ "en": "Punch Flurry",
+ "zh-CN": "喵喵拳 [捣蛋猫]",
+ "ja": "ツッパンチ [ツッパニャン]"
+ },
+ "UniqueSkill": true
+ },
+ "EPalWazaID::Unique_Alpaca_Tackle": {
+ "InternalName": "EPalWazaID::Unique_Alpaca_Tackle",
+ "Element": "Neutral",
+ "CT": 4,
+ "Power": 40,
+ "I18n": {
+ "en": "Fluffy Tackle",
+ "zh-CN": "绒毛冲撞 [美露帕]",
+ "ja": "ふんわりタックル [メルパカ]"
+ },
+ "UniqueSkill": true
+ },
+ "EPalWazaID::Unique_Garm_Bite": {
+ "InternalName": "EPalWazaID::Unique_Garm_Bite",
+ "Element": "Neutral",
+ "CT": 2,
+ "Power": 45,
+ "I18n": {
+ "en": "Fierce Fang",
+ "zh-CN": "狂野獠牙 [猎狼]",
+ "ja": "ワイルドファング [ガウルフ]"
+ },
+ "UniqueSkill": true
+ },
+ "EPalWazaID::Unique_Deer_PushupHorn": {
+ "InternalName": "EPalWazaID::Unique_Deer_PushupHorn",
+ "Element": "Neutral",
+ "CT": 5,
+ "Power": 50,
+ "I18n": {
+ "en": "Antler Uppercut",
+ "zh-CN": "尖角顶击 [紫霞/祇岳鹿]",
+ "ja": "ホーンアッパー [ツノガミ/ヤマガミ]"
+ },
+ "UniqueSkill": true
+ },
+ "EPalWazaID::Unique_Boar_Tackle": {
+ "InternalName": "EPalWazaID::Unique_Boar_Tackle",
+ "Element": "Neutral",
+ "CT": 2,
+ "Power": 55,
+ "I18n": {
+ "en": "Reckless Charge",
+ "zh-CN": "猪突猛进 [草莽猪]",
+ "ja": "猪突猛進 [イノボウ]"
+ },
+ "UniqueSkill": true
+ },
+ "EPalWazaID::Unique_Eagle_GlidingNail": {
+ "InternalName": "EPalWazaID::Unique_Eagle_GlidingNail",
+ "Element": "Neutral",
+ "CT": 8,
+ "Power": 60,
+ "I18n": {
+ "en": "Gale Claw",
+ "zh-CN": "滑空爪 [天擒鸟]",
+ "ja": "グライドクロー [エアムルグ]"
+ },
+ "UniqueSkill": true
+ },
+ "EPalWazaID::Unique_NaughtyCat_CatPress": {
+ "InternalName": "EPalWazaID::Unique_NaughtyCat_CatPress",
+ "Element": "Neutral",
+ "CT": 9,
+ "Power": 60,
+ "I18n": {
+ "en": "Cat Press",
+ "zh-CN": "喵咪扑击 [笑魇猫]",
+ "ja": "キャットプレス [ニャンギマリ]"
+ },
+ "UniqueSkill": true
+ },
+ "EPalWazaID::Unique_HawkBird_Storm": {
+ "InternalName": "EPalWazaID::Unique_HawkBird_Storm",
+ "Element": "Neutral",
+ "CT": 13,
+ "Power": 65,
+ "I18n": {
+ "en": "Tornado Attack",
+ "zh-CN": "龙卷风 [疾风隼]",
+ "ja": "トルネードアタック [ホークウィン]"
+ },
+ "UniqueSkill": true
+ },
+ "EPalWazaID::Unique_SakuraSaurus_SideTackle": {
+ "InternalName": "EPalWazaID::Unique_SakuraSaurus_SideTackle",
+ "Element": "Neutral",
+ "CT": 12,
+ "Power": 80,
+ "I18n": {
+ "en": "Muscle Slam",
+ "zh-CN": "铁山靠 [连理/海誓龙]",
+ "ja": "ボディスマッシュ [ラブラドン/スプラドン]"
+ },
+ "UniqueSkill": true
+ },
+ "EPalWazaID::Unique_Gorilla_GroundPunch": {
+ "InternalName": "EPalWazaID::Unique_Gorilla_GroundPunch",
+ "Element": "Neutral",
+ "CT": 14,
+ "Power": 85,
+ "I18n": {
+ "en": "Ground Pound",
+ "zh-CN": "猩猩连打 [铁拳猿]",
+ "ja": "ゴリラウンドコンボ [ゴリレイジ]"
+ },
+ "UniqueSkill": true
+ },
+ "EPalWazaID::Unique_FengyunDeeper_CloudTempest": {
+ "InternalName": "EPalWazaID::Unique_FengyunDeeper_CloudTempest",
+ "Element": "Neutral",
+ "CT": 15,
+ "Power": 90,
+ "I18n": {
+ "en": "Cloud Tempest",
+ "zh-CN": "阴云之岚 [云海鹿]",
+ "ja": "クラウドテンペスト [ムラクモ]"
+ },
+ "UniqueSkill": true
+ },
+ "EPalWazaID::Unique_KingAlpaca_BodyPress": {
+ "InternalName": "EPalWazaID::Unique_KingAlpaca_BodyPress",
+ "Element": "Neutral",
+ "CT": 21,
+ "Power": 100,
+ "I18n": {
+ "en": "Kingly Slam",
+ "zh-CN": "泰山压顶 [君王/冰帝美露帕]",
+ "ja": "キングプレス [アルパオー/アオパオー]"
+ },
+ "UniqueSkill": true
+ },
+ "EPalWazaID::Unique_SaintCentaur_OneSpearRushes": {
+ "InternalName": "EPalWazaID::Unique_SaintCentaur_OneSpearRushes",
+ "Element": "Neutral",
+ "CT": 40,
+ "Power": 120,
+ "I18n": {
+ "en": "Spear Thrust",
+ "zh-CN": "闪枪冲锋 [圣光骑士]",
+ "ja": "一槍一閃 [セイントール]"
+ },
+ "UniqueSkill": true
+ },
+
+ "EPalWazaID::SelfExplosion": {
+ "InternalName": "EPalWazaID::SelfExplosion",
+ "Element": "Neutral",
+ "CT": 55,
+ "Power": 500,
+ "I18n": {
+ "en": "Megaton Implode [Tocotoco]",
+ "zh-CN": "超自爆 [炸蛋鸟]",
+ "ja": "メガトン自爆 [クルットリ]"
+ }
+ },
+
+
+
+ "EPalWazaID::WindCutter": {
+ "InternalName": "EPalWazaID::WindCutter",
+ "Element": "Grass",
+ "CT": 2,
+ "Power": 30,
+ "I18n": {
+ "en": "Wind Cutter",
+ "zh-CN": "风刃",
+ "ja": "ウインドカッター"
+ },
+ "SkillFruit": true
+ },
+ "EPalWazaID::SeedMachinegun": {
+ "InternalName": "EPalWazaID::SeedMachinegun",
+ "Element": "Grass",
+ "CT": 9,
+ "Power": 50,
+ "I18n": {
+ "en": "Seed Machine Gun",
+ "zh-CN": "种子机关枪",
+ "ja": "シードマシンガン"
+ },
+ "SkillFruit": true
+ },
+ "EPalWazaID::SeedMine": {
+ "InternalName": "EPalWazaID::SeedMine",
+ "Element": "Grass",
+ "CT": 13,
+ "Power": 65,
+ "I18n": {
+ "en": "Seed Mine",
+ "zh-CN": "种子地雷",
+ "ja": "シードマイン"
+ },
+ "SkillFruit": true
+ },
+ "EPalWazaID::GrassTornado": {
+ "InternalName": "EPalWazaID::GrassTornado",
+ "Element": "Grass",
+ "CT": 18,
+ "Power": 80,
+ "I18n": {
+ "en": "Grass Tornado",
+ "zh-CN": "绿野飓风",
+ "ja": "グラストルネード"
+ },
+ "SkillFruit": true
+ },
+ "EPalWazaID::RootAttack": {
+ "InternalName": "EPalWazaID::RootAttack",
+ "Element": "Grass",
+ "CT": 25,
+ "Power": 95,
+ "I18n": {
+ "en": "Spine Vine",
+ "zh-CN": "缠绕地刺",
+ "ja": "スパインヴァイン"
+ },
+ "SkillFruit": true
+ },
+ "EPalWazaID::SolarBeam": {
+ "InternalName": "EPalWazaID::SolarBeam",
+ "Element": "Grass",
+ "CT": 55,
+ "Power": 150,
+ "I18n": {
+ "en": "Solar Blast",
+ "zh-CN": "太阳光束",
+ "ja": "ソーラーブラスト"
+ },
+ "SkillFruit": true
+ },
+
+
+ "EPalWazaID::Unique_FlowerDinosaur_Whip": {
+ "InternalName": "EPalWazaID::Unique_FlowerDinosaur_Whip",
+ "Element": "Grass",
+ "CT": 8,
+ "Power": 60,
+ "I18n": {
+ "en": "Botanical Smash",
+ "zh-CN": "植物猛击 [花冠龙]",
+ "ja": "ボタニカルスマッシュ [アロアリュー/ビリビリュー]"
+ },
+ "UniqueSkill": true
+ },
+ "EPalWazaID::Unique_RobinHood_BowSnipe": {
+ "InternalName": "EPalWazaID::Unique_RobinHood_BowSnipe",
+ "Element": "Grass",
+ "CT": 9,
+ "Power": 65,
+ "I18n": {
+ "en": "Focus Shot",
+ "zh-CN": "精准狙击 [羽箭/山岳射手]",
+ "ja": "スナイプショット [フェザーロ/サンドロ]"
+ },
+ "UniqueSkill": true
+ },
+ "EPalWazaID::Unique_QueenBee_SpinLance": {
+ "InternalName": "EPalWazaID::Unique_QueenBee_SpinLance",
+ "Element": "Grass",
+ "CT": 9,
+ "Power": 70,
+ "I18n": {
+ "en": "Spinning Lance",
+ "zh-CN": "回旋矛 [女皇蜂]",
+ "ja": "スピニングランス [クインビーナ]"
+ },
+ "UniqueSkill": true
+ },
+ "EPalWazaID::Unique_GrassPanda_MusclePunch": {
+ "InternalName": "EPalWazaID::Unique_GrassPanda_MusclePunch",
+ "Element": "Grass",
+ "CT": 18,
+ "Power": 85,
+ "I18n": {
+ "en": "Crushing Punch",
+ "zh-CN": "筋肉重拳 [叶胖达]",
+ "ja": "マッスルパンチ [ササゾー]"
+ },
+ "UniqueSkill": true
+ },
+ "EPalWazaID::SpecialCutter": {
+ "InternalName": "EPalWazaID::SpecialCutter",
+ "Element": "Grass",
+ "CT": 12,
+ "Power": 60,
+ "I18n": {
+ "en": "Multicutter [Lily & Lyleen]",
+ "zh-CN": "多重利刃 [莉莉 & 百合女王]",
+ "ja": "マルチカッター [リリィ & リリクイン]"
+ },
+ "UniqueSkill": true
+ },
+
+ "EPalWazaID::SelfDestruct_Bee": {
+ "InternalName": "EPalWazaID::SelfDestruct_Bee",
+ "Element": "Neutral",
+ "CT": 55,
+ "Power": 250,
+ "I18n": {
+ "en": "Bee Quiet",
+ "zh-CN": "蜂!蜂!蜂! [骑士蜂]",
+ "ja": "ビー・クワイエット [ビーナイト]"
+ },
+ "UniqueSkill": true
+ },
+
+
+ "EPalWazaID::IceMissile": {
+ "InternalName": "EPalWazaID::IceMissile",
+ "Element": "Ice",
+ "CT": 3,
+ "Power": 30,
+ "I18n": {
+ "en": "Ice Missile",
+ "zh-CN": "冰雪飞弹",
+ "ja": "アイスミサイル"
+ },
+ "SkillFruit": true
+ },
+ "EPalWazaID::IceBlade": {
+ "InternalName": "EPalWazaID::IceBlade",
+ "Element": "Ice",
+ "CT": 10,
+ "Power": 55,
+ "I18n": {
+ "en": "Icicle Cutter",
+ "zh-CN": "冰刃",
+ "ja": "アイスカッター"
+ },
+ "SkillFruit": true
+ },
+ "EPalWazaID::BlizzardLance": {
+ "InternalName": "EPalWazaID::BlizzardLance",
+ "Element": "Ice",
+ "CT": 15,
+ "Power": 70,
+ "I18n": {
+ "en": "Iceberg",
+ "zh-CN": "冰刺",
+ "ja": "アイスバーグ"
+ },
+ "SkillFruit": true
+ },
+ "EPalWazaID::FrostBreath": {
+ "InternalName": "EPalWazaID::FrostBreath",
+ "Element": "Ice",
+ "CT": 22,
+ "Power": 90,
+ "I18n": {
+ "en": "Cryst Breath",
+ "zh-CN": "凛冬之息",
+ "ja": "コールドブレス"
+ },
+ "SkillFruit": true
+ },
+ "EPalWazaID::IcicleThrow": {
+ "InternalName": "EPalWazaID::IcicleThrow",
+ "Element": "Ice",
+ "CT": 45,
+ "Power": 130,
+ "I18n": {
+ "en": "Blizzard Spike",
+ "zh-CN": "钻石星辰",
+ "ja": "ブリザードスパイク"
+ },
+ "SkillFruit": true
+ },
+
+
+ "EPalWazaID::Unique_IceDeer_IceHorn": {
+ "InternalName": "EPalWazaID::Unique_IceDeer_IceHorn",
+ "Element": "Ice",
+ "CT": 9,
+ "Power": 65,
+ "I18n": {
+ "en": "Freezing Charge",
+ "zh-CN": "霜角猛攻 [严冬鹿]",
+ "ja": "アイスホーンラッシュ [ツララジカ]"
+ },
+ "UniqueSkill": true
+ },
+ "EPalWazaID::Unique_CaptainPenguin_BodySlide": {
+ "InternalName": "EPalWazaID::Unique_CaptainPenguin_BodySlide",
+ "Element": "Ice",
+ "CT": 10,
+ "Power": 70,
+ "I18n": {
+ "en": "Emperor Slide",
+ "zh-CN": "王者滑击 [企丸王]",
+ "ja": "キャプテンスライディング [キャプペン]"
+ },
+ "UniqueSkill": true
+ },
+ "EPalWazaID::Unique_VolcanicMonster_Ice_IceAttack": {
+ "InternalName": "EPalWazaID::Unique_VolcanicMonster_Ice_IceAttack",
+ "Element": "Ice",
+ "CT": 45,
+ "Power": 100,
+ "I18n": {
+ "en": "Frost Burst",
+ "zh-CN": "霜冻爆裂 [寒霜兽]",
+ "ja": "フロストバースト [フロストカノン]"
+ },
+ "UniqueSkill": true
+ },
+ "EPalWazaID::Unique_IceHorse_IceBladeAttack": {
+ "InternalName": "EPalWazaID::Unique_IceHorse_IceBladeAttack",
+ "Element": "Ice",
+ "CT": 24,
+ "Power": 110,
+ "I18n": {
+ "en": "Crystal Wing",
+ "zh-CN": "冰晶之翼 [唤冬/夜兽]",
+ "ja": "クリスタルウィング [グレイシャル/グレイシャドウ]"
+ },
+ "UniqueSkill": true
+ },
+
+
+ "EPalWazaID::FireBlast": {
+ "InternalName": "EPalWazaID::FireBlast",
+ "Element": "Fire",
+ "CT": 2,
+ "Power": 30,
+ "I18n": {
+ "en": "Ignis Blast",
+ "zh-CN": "烈焰射击",
+ "ja": "ファイアーショット"
+ },
+ "SkillFruit": true
+ },
+ "EPalWazaID::FireSeed": {
+ "InternalName": "EPalWazaID::FireSeed",
+ "Element": "Fire",
+ "CT": 7,
+ "Power": 45,
+ "I18n": {
+ "en": "Spirit Fire",
+ "zh-CN": "烈焰溅射",
+ "ja": "スプリットファイアー"
+ },
+ "SkillFruit": true
+ },
+ "EPalWazaID::FlareArrow": {
+ "InternalName": "EPalWazaID::FlareArrow",
+ "Element": "Fire",
+ "CT": 10,
+ "Power": 55,
+ "I18n": {
+ "en": "Flare Arrow",
+ "zh-CN": "烈焰箭",
+ "ja": "フレアアロー"
+ },
+ "SkillFruit": true
+ },
+ "EPalWazaID::Flamethrower": {
+ "InternalName": "EPalWazaID::Flamethrower",
+ "Element": "Fire",
+ "CT": 15,
+ "Power": 70,
+ "I18n": {
+ "en": "Ignis Breath",
+ "zh-CN": "烈焰放射",
+ "ja": "ファイアーブレス"
+ },
+ "SkillFruit": true
+ },
+ "EPalWazaID::FlareTornado": {
+ "InternalName": "EPalWazaID::FlareTornado",
+ "Element": "Fire",
+ "CT": 18,
+ "Power": 80,
+ "I18n": {
+ "en": "Flare Storm",
+ "zh-CN": "烈焰风暴",
+ "ja": "フレアストーム"
+ },
+ "SkillFruit": true
+ },
+ "EPalWazaID::Inferno": {
+ "InternalName": "EPalWazaID::Inferno",
+ "Element": "Fire",
+ "CT": 40,
+ "Power": 120,
+ "I18n": {
+ "en": "Ignis Rage",
+ "zh-CN": "地狱火",
+ "ja": "インフェルノ"
+ },
+ "SkillFruit": true
+ },
+ "EPalWazaID::FireBall": {
+ "InternalName": "EPalWazaID::FireBall",
+ "Element": "Fire",
+ "CT": 55,
+ "Power": 150,
+ "I18n": {
+ "en": "Fire Ball",
+ "zh-CN": "烈焰球",
+ "ja": "ファイアーボール"
+ },
+ "SkillFruit": true
+ },
+
+
+ "EPalWazaID::Unique_FlameBuffalo_FlameHorn": {
+ "InternalName": "EPalWazaID::Unique_FlameBuffalo_FlameHorn",
+ "Element": "Fire",
+ "CT": 9,
+ "Power": 50,
+ "I18n": {
+ "en": "Blazing Horn",
+ "zh-CN": "炽热角击 [炽焰牛]",
+ "ja": "ブレイジングホーン [ブルフェルノ]"
+ },
+ "UniqueSkill": true
+ },
+ "EPalWazaID::Unique_Ronin_Iai": {
+ "InternalName": "EPalWazaID::Unique_Ronin_Iai",
+ "Element": "Fire",
+ "CT": 9,
+ "Power": 65,
+ "I18n": {
+ "en": "Iaigiri",
+ "zh-CN": "居合斩 [浪刃武士]",
+ "ja": "居合切り [ツジギリ]"
+ },
+ "UniqueSkill": true
+ },
+ "EPalWazaID::Unique_Baphomet_SwallowKite": {
+ "InternalName": "EPalWazaID::Unique_Baphomet_SwallowKite",
+ "Element": "Fire",
+ "CT": 10,
+ "Power": 70,
+ "I18n": {
+ "en": "Hellfire Claw",
+ "zh-CN": "狱火爪 [炎/暗魔羊]",
+ "ja": "ヘルファイアクロー [ヘルゴート/アビスゴート]"
+ },
+ "UniqueSkill": true
+ },
+ "EPalWazaID::Unique_AmaterasuWolf_FireCharge": {
+ "InternalName": "EPalWazaID::Unique_AmaterasuWolf_FireCharge",
+ "Element": "Fire",
+ "CT": 10,
+ "Power": 75,
+ "I18n": {
+ "en": "Daring Flames",
+ "zh-CN": "风林火山 [苍焰狼]",
+ "ja": "風林火山 [シラヌイ]"
+ },
+ "UniqueSkill": true
+ },
+ "EPalWazaID::Unique_FireKirin_Tackle": {
+ "InternalName": "EPalWazaID::Unique_FireKirin_Tackle",
+ "Element": "Fire",
+ "CT": 14,
+ "Power": 85,
+ "I18n": {
+ "en": "Ignis Slam",
+ "zh-CN": "烈焰冲撞 [火麒麟]",
+ "ja": "フレイムチャージ [サラブレイズ]"
+ },
+ "UniqueSkill": true
+ },
+ "EPalWazaID::Unique_VolcanicMonster_MagmaAttack": {
+ "InternalName": "EPalWazaID::Unique_VolcanicMonster_MagmaAttack",
+ "Element": "Fire",
+ "CT": 45,
+ "Power": 100,
+ "I18n": {
+ "en": "Volcanic Burst",
+ "zh-CN": "火山爆发 [熔岩兽]",
+ "ja": "ボルカニックバースト [ボルカノン]"
+ },
+ "UniqueSkill": true
+ },
+ "EPalWazaID::Unique_Horus_FlareBird": {
+ "InternalName": "EPalWazaID::Unique_Horus_FlareBird",
+ "Element": "Fire",
+ "CT": 28,
+ "Power": 135,
+ "I18n": {
+ "en": "Phoenix Flare",
+ "zh-CN": "凤凰翔波 [荷鲁斯]",
+ "ja": "鳳凰翔波 [ホルス]"
+ },
+ "UniqueSkill": true
+ },
+
+
+ "EPalWazaID::SpreadPulse": {
+ "InternalName": "EPalWazaID::SpreadPulse",
+ "Element": "Electric",
+ "CT": 2,
+ "Power": 30,
+ "I18n": {
+ "en": "Spark Blast",
+ "zh-CN": "电火花",
+ "ja": "スパークショット"
+ },
+ "SkillFruit": true
+ },
+ "EPalWazaID::ElecWave": {
+ "InternalName": "EPalWazaID::ElecWave",
+ "Element": "Electric",
+ "CT": 4,
+ "Power": 40,
+ "I18n": {
+ "en": "Shockwave",
+ "zh-CN": "冲击波",
+ "ja": "ショックウェーブ"
+ },
+ "SkillFruit": true
+ },
+ "EPalWazaID::ThunderBall": {
+ "InternalName": "EPalWazaID::ThunderBall",
+ "Element": "Electric",
+ "CT": 9,
+ "Power": 50,
+ "I18n": {
+ "en": "Electric Ball",
+ "zh-CN": "闪电球",
+ "ja": "サンダーボール"
+ },
+ "SkillFruit": true
+ },
+ "EPalWazaID::ThunderFunnel": {
+ "InternalName": "EPalWazaID::ThunderFunnel",
+ "Element": "Electric",
+ "CT": 13,
+ "Power": 65,
+ "I18n": {
+ "en": "Plasma Tornado",
+ "zh-CN": "等离子浮游炮",
+ "ja": "プラズマファンネル"
+ },
+ "SkillFruit": true
+ },
+ "EPalWazaID::LockonLaser": {
+ "InternalName": "EPalWazaID::LockonLaser",
+ "Element": "Electric",
+ "CT": 15,
+ "Power": 70,
+ "I18n": {
+ "en": "Lock-on Laser",
+ "zh-CN": "锁定雷射",
+ "ja": "ロックオンレーザー"
+ },
+ "SkillFruit": true
+ },
+ "EPalWazaID::LineThunder": {
+ "InternalName": "EPalWazaID::LineThunder",
+ "Element": "Electric",
+ "CT": 16,
+ "Power": 75,
+ "I18n": {
+ "en": "Lightning Streak",
+ "zh-CN": "雷击",
+ "ja": "ラインサンダー"
+ },
+ "SkillFruit": true
+ },
+ "EPalWazaID::ThreeThunder": {
+ "InternalName": "EPalWazaID::ThreeThunder",
+ "Element": "Electric",
+ "CT": 22,
+ "Power": 90,
+ "I18n": {
+ "en": "Tri-Lightning",
+ "zh-CN": "三重雷击",
+ "ja": "トライサンダー"
+ },
+ "SkillFruit": true
+ },
+ "EPalWazaID::LightningStrike": {
+ "InternalName": "EPalWazaID::LightningStrike",
+ "Element": "Electric",
+ "CT": 40,
+ "Power": 120,
+ "I18n": {
+ "en": "Lightning Strike",
+ "zh-CN": "闪电冲击",
+ "ja": "ライトニングストライク"
+ },
+ "SkillFruit": true
+ },
+ "EPalWazaID::Thunderbolt": {
+ "InternalName": "EPalWazaID::Thunderbolt",
+ "Element": "Electric",
+ "CT": 55,
+ "Power": 150,
+ "I18n": {
+ "en": "Lightning Bolt",
+ "zh-CN": "闪电伏特",
+ "ja": "ライトニングボルト"
+ },
+ "SkillFruit": true
+ },
+
+
+ "EPalWazaID::Unique_GrassPanda_Electric_ElectricPunch": {
+ "InternalName": "EPalWazaID::Unique_GrassPanda_Electric_ElectricPunch",
+ "Element": "Electric",
+ "CT": 14,
+ "Power": 85,
+ "I18n": {
+ "en": "Blast Punch",
+ "zh-CN": "爆裂拳击 [雷胖达]",
+ "ja": "ブラストパンチ [ライゾー]"
+ },
+ "UniqueSkill": true
+ },
+ "EPalWazaID::Unique_ElecPanda_ElecScratch": {
+ "InternalName": "EPalWazaID::Unique_ElecPanda_ElecScratch",
+ "Element": "Electric",
+ "CT": 22,
+ "Power": 90,
+ "I18n": {
+ "en": "Lightning Claw",
+ "zh-CN": "霹雳连爪 [暴电熊]",
+ "ja": "ライトニングクロー [エレパンダ]"
+ },
+ "UniqueSkill": true
+ },
+ "EPalWazaID::Unique_ThunderDragonMan_ThunderSwordAttack": {
+ "InternalName": "EPalWazaID::Unique_ThunderDragonMan_ThunderSwordAttack",
+ "Element": "Electric",
+ "CT": 30,
+ "Power": 100,
+ "I18n": {
+ "en": "Kerauno",
+ "zh-CN": "雷神之枪 [波鲁杰克斯]",
+ "ja": "ケラウノス [ボルゼクス]"
+ },
+ "UniqueSkill": true
+ },
+
+
+
+
+ "EPalWazaID::MudShot": {
+ "InternalName": "EPalWazaID::MudShot",
+ "Element": "Ground",
+ "CT": 4,
+ "Power": 40,
+ "I18n": {
+ "en": "Sand Blast",
+ "zh-CN": "泥浆投掷",
+ "ja": "マッドシュート"
+ },
+ "SkillFruit": true
+ },
+ "EPalWazaID::StoneShotgun": {
+ "InternalName": "EPalWazaID::StoneShotgun",
+ "Element": "Ground",
+ "CT": 10,
+ "Power": 55,
+ "I18n": {
+ "en": "Stone Blast",
+ "zh-CN": "碎石霰弹",
+ "ja": "ストーンブラスト"
+ },
+ "SkillFruit": true
+ },
+ "EPalWazaID::ThrowRock": {
+ "InternalName": "EPalWazaID::ThrowRock",
+ "Element": "Ground",
+ "CT": 15,
+ "Power": 70,
+ "I18n": {
+ "en": "Stone Cannon",
+ "zh-CN": "投石",
+ "ja": "ストーンキャノン"
+ },
+ "SkillFruit": true
+ },
+ "EPalWazaID::SandTornado": {
+ "InternalName": "EPalWazaID::SandTornado",
+ "Element": "Ground",
+ "CT": 18,
+ "Power": 80,
+ "I18n": {
+ "en": "Sand Tornado",
+ "zh-CN": "砂砾飓风",
+ "ja": "サンドトルネード"
+ },
+ "SkillFruit": true
+ },
+ "EPalWazaID::RockLance": {
+ "InternalName": "EPalWazaID::RockLance",
+ "Element": "Ground",
+ "CT": 55,
+ "Power": 150,
+ "I18n": {
+ "en": "Rock Lance",
+ "zh-CN": "岩石锐矛",
+ "ja": "ロックランス"
+ },
+ "SkillFruit": true
+ },
+
+
+
+
+ "EPalWazaID::Unique_DrillGame_ShellAttack": {
+ "InternalName": "EPalWazaID::Unique_DrillGame_ShellAttack",
+ "Element": "Ground",
+ "CT": 9,
+ "Power": 65,
+ "I18n": {
+ "en": "Shell Spin",
+ "zh-CN": "甲壳回旋 [碎岩龟]",
+ "ja": "シェルスピン [ドリタス]"
+ },
+ "UniqueSkill": true
+ },
+ "EPalWazaID::Unique_HerculesBeetle_BeetleTackle": {
+ "InternalName": "EPalWazaID::Unique_HerculesBeetle_BeetleTackle",
+ "Element": "Ground",
+ "CT": 11,
+ "Power": 75,
+ "I18n": {
+ "en": "Giga Horn",
+ "zh-CN": "终极角击 [铠格力斯]",
+ "ja": "ギガホーン [グラクレス]"
+ },
+ "UniqueSkill": true
+ },
+ "EPalWazaID::Unique_Anubis_LowRoundKick": {
+ "InternalName": "EPalWazaID::Unique_Anubis_LowRoundKick",
+ "Element": "Ground",
+ "CT": 21,
+ "Power": 100,
+ "I18n": {
+ "en": "Spinning Roundhouse",
+ "zh-CN": "回旋踢 [阿努比斯]",
+ "ja": "スピンレッグスラッシュ [アヌビス]"
+ },
+ "UniqueSkill": true
+ },
+ "EPalWazaID::Unique_Grassmammoth_Earthquake": {
+ "InternalName": "EPalWazaID::Unique_Grassmammoth_Earthquake",
+ "Element": "Ground",
+ "CT": 30,
+ "Power": 100,
+ "I18n": {
+ "en": "Earth Impact",
+ "zh-CN": "地震 [森/雪猛犸]",
+ "ja": "アースインパクト [グランモス/ブリザモス]"
+ },
+ "UniqueSkill": true
+ },
+ "EPalWazaID::Unique_Anubis_Tackle": {
+ "InternalName": "EPalWazaID::Unique_Anubis_Tackle",
+ "Element": "Ground",
+ "CT": 28,
+ "Power": 120,
+ "I18n": {
+ "en": "Forceful Charge",
+ "zh-CN": "巨力冲锋 [阿努比斯]",
+ "ja": "フォースドライブ [アヌビス]"
+ },
+ "UniqueSkill": true
+ },
+ "EPalWazaID::Unique_Anubis_GroundPunch": {
+ "InternalName": "EPalWazaID::Unique_Anubis_GroundPunch",
+ "Element": "Ground",
+ "CT": 35,
+ "Power": 140,
+ "I18n": {
+ "en": "Ground Smash",
+ "zh-CN": "粉碎大地 [阿努比斯]",
+ "ja": "グラウンドスマッシャー [アヌビス]"
+ },
+ "UniqueSkill": true
+ },
+
+
+
+
+ "EPalWazaID::DragonCanon": {
+ "InternalName": "EPalWazaID::DragonCanon",
+ "Element": "Dragon",
+ "CT": 2,
+ "Power": 30,
+ "I18n": {
+ "en": "Dragon Cannon",
+ "zh-CN": "龙息弹",
+ "ja": "ドラゴンキャノン"
+ },
+ "SkillFruit": true
+ },
+ "EPalWazaID::DragonWave": {
+ "InternalName": "EPalWazaID::DragonWave",
+ "Element": "Dragon",
+ "CT": 10,
+ "Power": 55,
+ "I18n": {
+ "en": "Dragon Burst",
+ "zh-CN": "龙之波动",
+ "ja": "ドラゴンバースト"
+ },
+ "SkillFruit": true
+ },
+ "EPalWazaID::DragonBreath": {
+ "InternalName": "EPalWazaID::DragonBreath",
+ "Element": "Dragon",
+ "CT": 15,
+ "Power": 70,
+ "I18n": {
+ "en": "Draconic Breath",
+ "zh-CN": "龙息",
+ "ja": "ドラゴンブレス"
+ },
+ "SkillFruit": true
+ },
+ "EPalWazaID::DragonMeteor": {
+ "InternalName": "EPalWazaID::DragonMeteor",
+ "Element": "Dragon",
+ "CT": 55,
+ "Power": 150,
+ "I18n": {
+ "en": "Dragon Meteor",
+ "zh-CN": "龙彗星",
+ "ja": "ドラゴンメテオ"
+ },
+ "SkillFruit": true
+ },
+
+
+ "EPalWazaID::Unique_FairyDragon_FairyTornado": {
+ "InternalName": "EPalWazaID::Unique_FairyDragon_FairyTornado",
+ "Element": "Dragon",
+ "CT": 10,
+ "Power": 70,
+ "I18n": {
+ "en": "Mystic Whirlwind",
+ "zh-CN": "神秘旋风 [精灵/水灵龙]",
+ "ja": "ミスティックハリケーン [シルフィア/シルティア]"
+ },
+ "UniqueSkill": true
+ },
+ "EPalWazaID::Unique_JetDragon_JumpBeam": {
+ "InternalName": "EPalWazaID::Unique_JetDragon_JumpBeam",
+ "Element": "Dragon",
+ "CT": 50,
+ "Power": 140,
+ "I18n": {
+ "en": "Beam Comet",
+ "zh-CN": "光束彗星 [空涡龙]",
+ "ja": "ビームコメット [ジェッドラン]"
+ },
+ "UniqueSkill": true
+ },
+
+
+ "EPalWazaID::PoisonFog": {
+ "InternalName": "EPalWazaID::PoisonFog",
+ "Element": "Dark",
+ "CT": 30,
+ "Power": 0,
+ "I18n": {
+ "en": "Poison Fog",
+ "zh-CN": "毒雾",
+ "ja": "ポイズンフォグ"
+ }
+ },
+ "EPalWazaID::PoisonShot": {
+ "InternalName": "EPalWazaID::PoisonShot",
+ "Element": "Dark",
+ "CT": 2,
+ "Power": 30,
+ "I18n": {
+ "en": "Poison Blast",
+ "zh-CN": "剧毒射击",
+ "ja": "ポイズンシュート"
+ },
+ "SkillFruit": true
+ },
+ "EPalWazaID::DarkBall": {
+ "InternalName": "EPalWazaID::DarkBall",
+ "Element": "Dark",
+ "CT": 4,
+ "Power": 40,
+ "I18n": {
+ "en": "Dark Ball",
+ "zh-CN": "暗黑球",
+ "ja": "ダークボール"
+ }
+ },
+ "EPalWazaID::DarkWave": {
+ "InternalName": "EPalWazaID::DarkWave",
+ "Element": "Dark",
+ "CT": 10,
+ "Power": 55,
+ "I18n": {
+ "en": "Shadow Burst",
+ "zh-CN": "暗影波动",
+ "ja": "シャドウバースト"
+ },
+ "SkillFruit": true
+ },
+ "EPalWazaID::GhostFlame": {
+ "InternalName": "EPalWazaID::GhostFlame",
+ "Element": "Dark",
+ "CT": 16,
+ "Power": 75,
+ "I18n": {
+ "en": "Spirit Flame",
+ "zh-CN": "鬼火",
+ "ja": "スプリットフレイム"
+ },
+ "SkillFruit": true
+ },
+ "EPalWazaID::ShadowBall": {
+ "InternalName": "EPalWazaID::ShadowBall",
+ "Element": "Dark",
+ "CT": 30,
+ "Power": 100,
+ "I18n": {
+ "en": "Nightmare Ball",
+ "zh-CN": "恶梦球",
+ "ja": "ナイトメアボール"
+ },
+ "SkillFruit": true
+ },
+ "EPalWazaID::DarkLaser": {
+ "InternalName": "EPalWazaID::DarkLaser",
+ "Element": "Dark",
+ "CT": 55,
+ "Power": 150,
+ "I18n": {
+ "en": "Dark Laser",
+ "zh-CN": "暗黑镭射",
+ "ja": "ダークレーザー"
+ },
+ "SkillFruit": true
+ },
+ "EPalWazaID::DarkPulse": {
+ "InternalName": "EPalWazaID::DarkPulse",
+ "Element": "Dark",
+ "CT": 2,
+ "Power": 40,
+ "I18n": {
+ "en": "Umbral Surge",
+ "zh-CN": "黑暗霰射"
+ }
+ },
+ "EPalWazaID::DarkCanon": {
+ "InternalName": "EPalWazaID::DarkCanon",
+ "Element": "Dark",
+ "CT": 2,
+ "Power": 50,
+ "I18n": {
+ "en": "Dark Cannon",
+ "zh-CN": "黑暗弹"
+ }
+ },
+ "EPalWazaID::DarkArrow": {
+ "InternalName": "EPalWazaID::DarkArrow",
+ "Element": "Dark",
+ "CT": 10,
+ "Power": 65,
+ "I18n": {
+ "en": "Dark Arrow",
+ "zh-CN": "黑暗箭"
+ }
+ },
+ "EPalWazaID::Apocalypse": {
+ "InternalName": "EPalWazaID::Apocalypse",
+ "Element": "Dark",
+ "CT": 55,
+ "Power": 110,
+ "I18n": {
+ "en": "Apocalypse",
+ "zh-CN": "启示录"
+ }
+ },
+
+
+ "EPalWazaID::Unique_DarkCrow_TelePoke": {
+ "InternalName": "EPalWazaID::Unique_DarkCrow_TelePoke",
+ "Element": "Dark",
+ "CT": 7,
+ "Power": 55,
+ "I18n": {
+ "en": "Phantom Peck",
+ "zh-CN": "幻影突袭 [黑鸦隐士]",
+ "ja": "ファントムアサルト [マスクロウ]"
+ },
+ "UniqueSkill": true
+ },
+ "EPalWazaID::Unique_Werewolf_Scratch": {
+ "InternalName": "EPalWazaID::Unique_Werewolf_Scratch",
+ "Element": "Dark",
+ "CT": 7,
+ "Power": 55,
+ "I18n": {
+ "en": "Jumping Claw",
+ "zh-CN": "飞跃爪击 [月镰魔]",
+ "ja": "ジャンピングクロー [ツキカゲ]"
+ },
+ "UniqueSkill": true
+ },
+ "EPalWazaID::Unique_FireKirin_Dark_DarkTossin": {
+ "InternalName": "EPalWazaID::Unique_FireKirin_Dark_DarkTossin",
+ "Element": "Dark",
+ "CT": 14,
+ "Power": 85,
+ "I18n": {
+ "en": "Dark Charge",
+ "zh-CN": "暗影冲撞 [邪麒麟]",
+ "ja": "ダークチャージ [サラブラック]"
+ },
+ "UniqueSkill": true
+ },
+ "EPalWazaID::Unique_BlackCentaur_TwoSpearRushes": {
+ "InternalName": "EPalWazaID::Unique_BlackCentaur_TwoSpearRushes",
+ "Element": "Dark",
+ "CT": 40,
+ "Power": 120,
+ "I18n": {
+ "en": "Twin Spears",
+ "zh-CN": "双枪一闪 [混沌骑士]",
+ "ja": "双槍一閃 [ベイントール]"
+ },
+ "UniqueSkill": true
+ },
+ "EPalWazaID::Unique_BlackGriffon_TackleLaser": {
+ "InternalName": "EPalWazaID::Unique_BlackGriffon_TackleLaser",
+ "Element": "Dark",
+ "CT": 45,
+ "Power": 160,
+ "I18n": {
+ "en": "Divine Disaster",
+ "zh-CN": "神圣灾祸 [异构格里芬]",
+ "ja": "ディザスターディバイン [ゼノグリフ]"
+ },
+ "UniqueSkill": true
+ },
+ "EPalWazaID::DarkLegion": {
+ "InternalName": "EPalWazaID::DarkLegion",
+ "Element": "Dark",
+ "CT": 45,
+ "Power": 160,
+ "I18n": {
+ "en": "Dark Whisp [Victor & Shadowbeak]",
+ "zh-CN": "黑暗之拥 [维克托 & 异构格里芬]",
+ "ja": "ダークウィスプ [ヴィクター & ゼノグリフ]"
+ },
+ "UniqueSkill": true
+ },
+ "EPalWazaID::Unique_NightLady_WarpBeam": {
+ "InternalName": "EPalWazaID::Unique_NightLady_WarpBeam",
+ "Element": "Dark",
+ "CT": 50,
+ "Power": 160,
+ "I18n": {
+ "en": "Nightmare Bloom",
+ "zh-CN": "噩梦绽放 [贝菈露洁]"
+ },
+ "UniqueSkill": true
+ },
+ "EPalWazaID::Unique_NightLady_FlameNightmare": {
+ "InternalName": "EPalWazaID::Unique_NightLady_FlameNightmare",
+ "Element": "Dark",
+ "CT": 45,
+ "Power": 130,
+ "I18n": {
+ "en": "Flame Waltz",
+ "zh-CN": "烈焰华尔兹 [贝菈露洁]"
+ },
+ "UniqueSkill": true
+ },
+ "EPalWazaID::Unique_NightLady_WarpBeam_Straight": {
+ "InternalName": "EPalWazaID::Unique_NightLady_WarpBeam_Straight",
+ "Element": "Dark",
+ "CT": 50,
+ "Power": 140,
+ "I18n": {
+ "en": "Nightmare Ray",
+ "zh-CN": "噩梦射线 [贝菈诺娃]"
+ },
+ "UniqueSkill": true
+ },
+
+
+
+
+
+ "EPalWazaID::WorkAttack": {
+ "InternalName": "EPalWazaID::WorkAttack",
+ "Element": "Neutral",
+ "CT": -1,
+ "Power": -1,
+ "I18n": {
+ "en": "EPalWazaID::WorkAttack",
+ "zh-CN": "EPalWazaID::WorkAttack",
+ "ja": "EPalWazaID::WorkAttack"
+ }
+ },
+ "EPalWazaID::SnowStorm": {
+ "InternalName": "EPalWazaID::SnowStorm",
+ "Element": "Ice",
+ "CT": -1,
+ "Power": -1,
+ "I18n": {
+ "en": "EPalWazaID::SnowStorm",
+ "zh-CN": "EPalWazaID::SnowStorm",
+ "ja": "EPalWazaID::SnowStorm"
+ }
+ },
+ "EPalWazaID::Funnel_RaijinDaughter": {
+ "InternalName": "EPalWazaID::Funnel_RaijinDaughter",
+ "Element": "Electric",
+ "CT": -1,
+ "Power": -1,
+ "I18n": {
+ "en": "EPalWazaID::Funnel_RaijinDaughter",
+ "zh-CN": "EPalWazaID::Funnel_RaijinDaughter",
+ "ja": "EPalWazaID::Funnel_RaijinDaughter"
+ }
+ },
+ "EPalWazaID::Scratch": {
+ "InternalName": "EPalWazaID::Scratch",
+ "Element": "Neutral",
+ "CT": -1,
+ "Power": -1,
+ "I18n": {
+ "en": "EPalWazaID::Scratch",
+ "zh-CN": "EPalWazaID::Scratch",
+ "ja": "EPalWazaID::Scratch"
+ }
+ },
+ "EPalWazaID::Funnel_DreamDemon": {
+ "InternalName": "EPalWazaID::Funnel_DreamDemon",
+ "Element": "Dark",
+ "CT": -1,
+ "Power": -1,
+ "I18n": {
+ "en": "EPalWazaID::Funnel_DreamDemon",
+ "zh-CN": "EPalWazaID::Funnel_DreamDemon",
+ "ja": "EPalWazaID::Funnel_DreamDemon"
+ }
+ },
+ "EPalWazaID::CrossThunder": {
+ "InternalName": "EPalWazaID::CrossThunder",
+ "Element": "Electric",
+ "CT": -1,
+ "Power": -1,
+ "I18n": {
+ "en": "EPalWazaID::CrossThunder",
+ "zh-CN": "EPalWazaID::CrossThunder",
+ "ja": "EPalWazaID::CrossThunder"
+ }
+ },
+ "EPalWazaID::EnergyShot": {
+ "InternalName": "EPalWazaID::EnergyShot",
+ "Element": "Electric",
+ "CT": -1,
+ "Power": -1,
+ "I18n": {
+ "en": "EPalWazaID::EnergyShot",
+ "zh-CN": "EPalWazaID::EnergyShot",
+ "ja": "EPalWazaID::EnergyShot"
+ }
+ },
+ "EPalWazaID::Unique_BluePlatypus_Toboggan": {
+ "InternalName": "EPalWazaID::Unique_BluePlatypus_Toboggan",
+ "Element": "Water",
+ "CT": -1,
+ "Power": -1,
+ "I18n": {
+ "en": "EPalWazaID::Unique_BluePlatypus_Toboggan",
+ "zh-CN": "EPalWazaID::Unique_BluePlatypus_Toboggan",
+ "ja": "EPalWazaID::Unique_BluePlatypus_Toboggan"
+ }
+ },
+ "EPalWazaID::Psychokinesis": {
+ "InternalName": "EPalWazaID::Psychokinesis",
+ "Element": "Dark",
+ "CT": -1,
+ "Power": -1,
+ "I18n": {
+ "en": "EPalWazaID::Psychokinesis",
+ "zh-CN": "EPalWazaID::Psychokinesis",
+ "ja": "EPalWazaID::Psychokinesis"
+ }
+ },
+ "EPalWazaID::Human_Punch": {
+ "InternalName": "EPalWazaID::Human_Punch",
+ "Element": "Neutral",
+ "CT": -1,
+ "Power": -1,
+ "I18n": {
+ "en": "EPalWazaID::Human_Punch",
+ "zh-CN": "EPalWazaID::Human_Punch",
+ "ja": "EPalWazaID::Human_Punch"
+ }
+ },
+ "EPalWazaID::Throw": {
+ "InternalName": "EPalWazaID::Throw",
+ "Element": "Neutral",
+ "CT": -1,
+ "Power": -1,
+ "I18n": {
+ "en": "EPalWazaID::Throw",
+ "zh-CN": "EPalWazaID::Throw",
+ "ja": "EPalWazaID::Throw"
+ }
+ },
+ "EPalWazaID::ThunderRain": {
+ "InternalName": "EPalWazaID::ThunderRain",
+ "Element": "Electric",
+ "CT": -1,
+ "Power": -1,
+ "I18n": {
+ "en": "EPalWazaID::ThunderRain",
+ "zh-CN": "EPalWazaID::ThunderRain",
+ "ja": "EPalWazaID::ThunderRain"
+ }
+ },
+ "EPalWazaID::Unique_Kirin_LightningTackle": {
+ "InternalName": "EPalWazaID::Unique_Kirin_LightningTackle",
+ "Element": "Electric",
+ "CT": -1,
+ "Power": -1,
+ "I18n": {
+ "en": "EPalWazaID::Unique_Kirin_LightningTackle",
+ "zh-CN": "EPalWazaID::Unique_Kirin_LightningTackle",
+ "ja": "EPalWazaID::Unique_Kirin_LightningTackle"
+ }
+ },
+ "EPalWazaID::WaterWave": {
+ "InternalName": "EPalWazaID::WaterWave",
+ "Element": "Water",
+ "CT": -1,
+ "Power": -1,
+ "I18n": {
+ "en": "EPalWazaID::WaterWave",
+ "zh-CN": "EPalWazaID::WaterWave",
+ "ja": "EPalWazaID::WaterWave"
+ }
+ },
+ "EPalWazaID::TidalWave": {
+ "InternalName": "EPalWazaID::TidalWave",
+ "Element": "Water",
+ "CT": -1,
+ "Power": -1,
+ "I18n": {
+ "en": "EPalWazaID::TidalWave",
+ "zh-CN": "EPalWazaID::TidalWave",
+ "ja": "EPalWazaID::TidalWave"
+ }
+ },
+ "EPalWazaID::Unique_WeaselDragon_FlyingTackle": {
+ "InternalName": "EPalWazaID::Unique_WeaselDragon_FlyingTackle",
+ "Element": "Neutral",
+ "CT": -1,
+ "Power": -1,
+ "I18n": {
+ "en": "EPalWazaID::Unique_WeaselDragon_FlyingTackle",
+ "zh-CN": "EPalWazaID::Unique_WeaselDragon_FlyingTackle",
+ "ja": "EPalWazaID::Unique_WeaselDragon_FlyingTackle"
+ }
+ },
+ "EPalWazaID::Intimidate": {
+ "InternalName": "EPalWazaID::Intimidate",
+ "Element": "Neutral",
+ "CT": -1,
+ "Power": -1,
+ "I18n": {
+ "en": "EPalWazaID::Intimidate",
+ "zh-CN": "EPalWazaID::Intimidate",
+ "ja": "EPalWazaID::Intimidate"
+ }
+ },
+
+
+
+
+ "EPalWazaID::BeamSlicer": {
+ "InternalName": "EPalWazaID::BeamSlicer",
+ "Element": "Dragon",
+ "CT": -1,
+ "Power": -1,
+ "I18n": {
+ "en": "EPalWazaID::BeamSlicer",
+ "zh-CN": "EPalWazaID::BeamSlicer",
+ "ja": "EPalWazaID::BeamSlicer"
+ }
+ },
+ "EPalWazaID::Commet": {
+ "InternalName": "EPalWazaID::Commet",
+ "Element": "Dragon",
+ "CT": -1,
+ "Power": -1,
+ "I18n": {
+ "en": "EPalWazaID::Commet",
+ "zh-CN": "EPalWazaID::Commet",
+ "ja": "EPalWazaID::Commet"
+ }
+ },
+ "EPalWazaID::DarkTornado": {
+ "InternalName": "EPalWazaID::DarkTornado",
+ "Element": "Dark",
+ "CT": -1,
+ "Power": -1,
+ "I18n": {
+ "en": "EPalWazaID::DarkTornado",
+ "zh-CN": "EPalWazaID::DarkTornado",
+ "ja": "EPalWazaID::DarkTornado"
+ }
+ },
+ "EPalWazaID::DiamondFall": {
+ "InternalName": "EPalWazaID::DiamondFall",
+ "Element": "Ice",
+ "CT": -1,
+ "Power": -1,
+ "I18n": {
+ "en": "EPalWazaID::DiamondFall",
+ "zh-CN": "EPalWazaID::DiamondFall",
+ "ja": "EPalWazaID::DiamondFall"
+ }
+ },
+ "EPalWazaID::Tremor": {
+ "InternalName": "EPalWazaID::Tremor",
+ "Element": "Ground",
+ "CT": -1,
+ "Power": -1,
+ "I18n": {
+ "en": "EPalWazaID::Tremor",
+ "zh-CN": "EPalWazaID::Tremor",
+ "ja": "EPalWazaID::Tremor"
+ }
+ },
+ "EPalWazaID::Unique_DarkScorpion_Pierce": {
+ "InternalName": "EPalWazaID::Unique_DarkScorpion_Pierce",
+ "Element": "Dark",
+ "CT": -1,
+ "Power": -1,
+ "I18n": {
+ "en": "EPalWazaID::Unique_DarkScorpion_Pierce",
+ "zh-CN": "EPalWazaID::Unique_DarkScorpion_Pierce",
+ "ja": "EPalWazaID::Unique_DarkScorpion_Pierce"
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/palworld_pal_editor/assets/data/pal_attacks.json b/src/palworld_pal_editor/assets/data/pal_attacks.json
index 004586f..6d6be9e 100644
--- a/src/palworld_pal_editor/assets/data/pal_attacks.json
+++ b/src/palworld_pal_editor/assets/data/pal_attacks.json
@@ -5,9 +5,18 @@
"CT": 2,
"Power": 30,
"I18n": {
- "en": "Hydro Jet",
- "zh-CN": "水流射击",
- "ja": "ウォータージェット"
+ "en": {
+ "Name": "Hydro Jet",
+ "Description": "Hurls a high speed ball of water at an enemy. Inflict Wetness 35"
+ },
+ "zh-CN": {
+ "Name": "水流射击",
+ "Description": "朝敌人发射高速水弹。Inflict Wetness 35"
+ },
+ "ja": {
+ "Name": "ウォータージェット",
+ "Description": "敵に向かって 高速の水弾を発射する。Inflict Wetness 35"
+ }
},
"SkillFruit": true
},
@@ -17,9 +26,18 @@
"CT": 4,
"Power": 40,
"I18n": {
- "en": "Aqua Gun",
- "zh-CN": "水枪",
- "ja": "アクアジェット"
+ "en": {
+ "Name": "Aqua Gun",
+ "Description": "Hurls a ball of water straight at an enemy. Inflict Wetness 50"
+ },
+ "zh-CN": {
+ "Name": "水枪",
+ "Description": "发射水弹 笔直飞向对方。Inflict Wetness 50"
+ },
+ "ja": {
+ "Name": "アクアショット",
+ "Description": "対象に向かって一直線に飛んでゆく 水の弾を発射する。Inflict Wetness 50"
+ }
},
"SkillFruit": true
},
@@ -29,9 +47,18 @@
"CT": 13,
"Power": 65,
"I18n": {
- "en": "Bubble Blast",
- "zh-CN": "泡沫射击",
- "ja": "バブルショット"
+ "en": {
+ "Name": "Bubble Blast",
+ "Description": "Fires numerous bubbles that slowly pursue an enemy. Inflict Wetness 100"
+ },
+ "zh-CN": {
+ "Name": "泡沫射击",
+ "Description": "发射大量泡沫 并缓慢追击敌人。Inflict Wetness 100"
+ },
+ "ja": {
+ "Name": "バブルショット",
+ "Description": "敵をゆっくりと追尾する たくさんの泡を発射する。Inflict Wetness 100"
+ }
},
"SkillFruit": true
},
@@ -41,9 +68,18 @@
"CT": 18,
"Power": 80,
"I18n": {
- "en": "Acid Rain",
- "zh-CN": "酸雨",
- "ja": "アシッドレイン"
+ "en": {
+ "Name": "Acid Rain",
+ "Description": "Creates acidic clouds that pour down acid rain on enemies. Inflict Wetness 100"
+ },
+ "zh-CN": {
+ "Name": "酸雨",
+ "Description": "生成酸性云朵 在敌人头上下酸雨。Inflict Wetness 100"
+ },
+ "ja": {
+ "Name": "アシッドレイン",
+ "Description": "酸性の雲を作り出し 敵の頭上から酸の雨を降らせる。Inflict Wetness 100"
+ }
},
"SkillFruit": true
},
@@ -53,9 +89,18 @@
"CT": 30,
"Power": 100,
"I18n": {
- "en": "Aqua Burst",
- "zh-CN": "爆裂水球",
- "ja": "スプラッシュボム"
+ "en": {
+ "Name": "Aqua Burst",
+ "Description": "Creates a giant ball of water and hurls it at an enemy. Inflict Wetness 100"
+ },
+ "zh-CN": {
+ "Name": "爆裂水球",
+ "Description": "在头上生成巨大水球 瞄准敌人并发射。Inflict Wetness 100"
+ },
+ "ja": {
+ "Name": "スプラッシュボム",
+ "Description": "頭上に巨大な水球を作り出し 敵めがけて発射する。Inflict Wetness 100"
+ }
},
"SkillFruit": true
},
@@ -65,24 +110,39 @@
"CT": 55,
"Power": 150,
"I18n": {
- "en": "Hydro Laser",
- "zh-CN": "高压水炮",
- "ja": "ハイドロストリーム"
+ "en": {
+ "Name": "Hydro Laser",
+ "Description": "Shoots pressurized water at extreme velocities, sweeping over a wide area in front of it. Inflict Wetness 100"
+ },
+ "zh-CN": {
+ "Name": "高压水炮",
+ "Description": "猛烈地释放出水流 并向前方大范围横扫。Inflict Wetness 100"
+ },
+ "ja": {
+ "Name": "ハイドロストリーム",
+ "Description": "すごい勢いで水を放出し 前方広範囲を薙ぎ払う。Inflict Wetness 100"
+ }
},
"SkillFruit": true
},
-
-
-
"EPalWazaID::AirCanon": {
"InternalName": "EPalWazaID::AirCanon",
"Element": "Neutral",
"CT": 2,
"Power": 25,
"I18n": {
- "en": "Air Cannon",
- "zh-CN": "空气炮",
- "ja": "エアーキャノン"
+ "en": {
+ "Name": "Air Cannon",
+ "Description": "Quickly fires a burst of highly pressurized air."
+ },
+ "zh-CN": {
+ "Name": "空气炮",
+ "Description": "以急速射出空气团块。"
+ },
+ "ja": {
+ "Name": "エアーキャノン",
+ "Description": "高速で飛ぶ空気の塊を発射する。"
+ }
},
"SkillFruit": true
},
@@ -92,9 +152,18 @@
"CT": 4,
"Power": 35,
"I18n": {
- "en": "Power Shot",
- "zh-CN": "能量射击",
- "ja": "パワーショット"
+ "en": {
+ "Name": "Power Shot",
+ "Description": "Charges energy into a focused blast."
+ },
+ "zh-CN": {
+ "Name": "能量射击",
+ "Description": "积蓄能量,并将其化作子弹射出。"
+ },
+ "ja": {
+ "Name": "パワーショット",
+ "Description": "エネルギーをチャージし 弾丸にして発射する。"
+ }
},
"SkillFruit": true
},
@@ -104,9 +173,18 @@
"CT": 15,
"Power": 70,
"I18n": {
- "en": "Power Bomb",
- "zh-CN": "元气弹",
- "ja": "パワーボム"
+ "en": {
+ "Name": "Power Bomb",
+ "Description": "Charges a massive amount of energy before firing a large destructive ball."
+ },
+ "zh-CN": {
+ "Name": "元气弹",
+ "Description": "积蓄大量能量,并将其化作巨大球体射出。"
+ },
+ "ja": {
+ "Name": "パワーボム",
+ "Description": "大量のエネルギーをチャージし 巨大な球体にして発射する。"
+ }
},
"SkillFruit": true
},
@@ -116,9 +194,18 @@
"CT": 55,
"Power": 150,
"I18n": {
- "en": "Pal Blast",
- "zh-CN": "帕鲁光束",
- "ja": "パルブラスト"
+ "en": {
+ "Name": "Pal Blast",
+ "Description": "Charges destructive energy before firing a high-powered beam forward across a wide area."
+ },
+ "zh-CN": {
+ "Name": "帕鲁光束",
+ "Description": "积蓄破坏性的能量,朝前方大范围射出威力惊人的光束。"
+ },
+ "ja": {
+ "Name": "パルブラスト",
+ "Description": "破壊エネルギーをチャージし 前方広範囲に超強力なビームを発射する。"
+ }
},
"SkillFruit": true
},
@@ -126,25 +213,61 @@
"InternalName": "EPalWazaID::SelfDestruct",
"Element": "Neutral",
"CT": 55,
- "Power": 180,
- "I18n": {
- "en": "Implode",
- "zh-CN": "自爆",
- "ja": "自爆"
+ "Power": 230,
+ "I18n": {
+ "en": {
+ "Name": "Implode",
+ "Description": "Risks its life to cause a violent explosion. Becomes incapacitated afterwards. Inflict Burn 100"
+ },
+ "zh-CN": {
+ "Name": "自爆",
+ "Description": "赌上性命引发爆炸。使用后会陷入无法战斗的状态。Inflict Burn 100"
+ },
+ "ja": {
+ "Name": "自爆",
+ "Description": "命をかけて爆散する。自身は戦闘不能になる。Inflict Burn 100"
+ }
},
"SkillFruit": true
},
-
-
+ "EPalWazaID::SelfExplosion": {
+ "InternalName": "EPalWazaID::SelfExplosion",
+ "Element": "Neutral",
+ "CT": 55,
+ "Power": 500,
+ "I18n": {
+ "en": {
+ "Name": "Megaton Implode",
+ "Description": "Risks life to cause a massive explosion. Those who perish for their duty become glistening stars in the night sky. Inflict Burn 100"
+ },
+ "zh-CN": {
+ "Name": "超自爆",
+ "Description": "赌上性命引发大爆炸。使用后便会化作夜空中闪耀的明星。Inflict Burn 100"
+ },
+ "ja": {
+ "Name": "メガトン自爆",
+ "Description": "命をかけた大爆発を起こす。自身は命を散らし、夜空に輝く星となる。Inflict Burn 100"
+ }
+ }
+ },
"EPalWazaID::Unique_ChickenPal_ChickenPeck": {
"InternalName": "EPalWazaID::Unique_ChickenPal_ChickenPeck",
"Element": "Neutral",
"CT": 1,
"Power": 30,
"I18n": {
- "en": "Chicken Rush",
- "zh-CN": "皮皮冲鸡 [皮皮鸡]",
- "ja": "チキンタックル [タマコッコ]"
+ "en": {
+ "Name": "Chicken Rush [Chikipi]",
+ "Description": "Chikipi's special skill. Flies at enemies in its sights, attacking them with its sharp beak."
+ },
+ "zh-CN": {
+ "Name": "皮皮冲鸡 [皮皮鸡]",
+ "Description": "皮皮鸡的专用技能。瞄准并飞扑向敌人后,用尖喙突袭敌人。"
+ },
+ "ja": {
+ "Name": "チキンタックル [タマコッコ]",
+ "Description": "タマコッコの専用スキル。敵を目がけて飛び掛かり、尖ったくちばしで突撃する。"
+ }
},
"UniqueSkill": true
},
@@ -154,9 +277,18 @@
"CT": 1,
"Power": 35,
"I18n": {
- "en": "Roly Poly",
- "zh-CN": "滚滚毛球 [棉悠悠]",
- "ja": "コロコロモコロン [モコロン]"
+ "en": {
+ "Name": "Roly Poly [Lamball]",
+ "Description": "Lamball's special skill. Curls into a ball, rolling after any enemies in its way. Becomes dizzy and unable to move after the attack ends."
+ },
+ "zh-CN": {
+ "Name": "滚滚毛球 [棉悠悠]",
+ "Description": "棉悠悠的专用技能。咕噜咕噜地滚动并追击敌人。攻击后会因晕眩而无法动弹。"
+ },
+ "ja": {
+ "Name": "コロコロモコロン [モコロン]",
+ "Description": "モコロンの専用スキル。コロコロと転がりながら、敵を追いかける。攻撃後は目が回って動けなくなってしまう。"
+ }
},
"UniqueSkill": true
},
@@ -166,9 +298,18 @@
"CT": 1,
"Power": 40,
"I18n": {
- "en": "Punch Flurry",
- "zh-CN": "喵喵拳 [捣蛋猫]",
- "ja": "ツッパンチ [ツッパニャン]"
+ "en": {
+ "Name": "Punch Flurry [Cattiva]",
+ "Description": "Cattiva's special skill. Pursues enemies, repeatedly punching them with both its fists."
+ },
+ "zh-CN": {
+ "Name": "喵喵拳 [捣蛋猫]",
+ "Description": "捣蛋猫的专用技能。挥舞双臂追击敌人,连续挥出利拳。"
+ },
+ "ja": {
+ "Name": "ツッパンチ [ツッパニャン]",
+ "Description": "ツッパニャンの専用スキル。敵を追いかけながら両腕を振り回し、連続でパンチを繰り出す。"
+ }
},
"UniqueSkill": true
},
@@ -178,9 +319,18 @@
"CT": 4,
"Power": 40,
"I18n": {
- "en": "Fluffy Tackle",
- "zh-CN": "绒毛冲撞 [美露帕]",
- "ja": "ふんわりタックル [メルパカ]"
+ "en": {
+ "Name": "Fluffy Tackle [Melpaca]",
+ "Description": "Melpaca's exclusive skill. Charges forward while clad in an aura of sublime adorableness."
+ },
+ "zh-CN": {
+ "Name": "绒毛冲撞 [美露帕]",
+ "Description": "美露帕的专用技能。散发出可爱的气场并朝向前方冲刺。"
+ },
+ "ja": {
+ "Name": "ふんわりタックル [メルパカ]",
+ "Description": "メルパカの専用スキル。かわいいオーラをまといながら突進する。"
+ }
},
"UniqueSkill": true
},
@@ -190,9 +340,18 @@
"CT": 2,
"Power": 45,
"I18n": {
- "en": "Fierce Fang",
- "zh-CN": "狂野獠牙 [猎狼]",
- "ja": "ワイルドファング [ガウルフ]"
+ "en": {
+ "Name": "Fierce Fang [Direhowl]",
+ "Description": "Direhowl's special skill. Swiftly leaps at an enemy and bites into them."
+ },
+ "zh-CN": {
+ "Name": "狂野獠牙 [猎狼]",
+ "Description": "猎狼的专用技能。快速地向敌人飞扑,咬住敌人进行攻击。"
+ },
+ "ja": {
+ "Name": "ワイルドファング [ガウルフ]",
+ "Description": "ガウルフの専用スキル。敵に向かって素早く飛び掛かり、噛みついて攻撃する。"
+ }
},
"UniqueSkill": true
},
@@ -202,9 +361,18 @@
"CT": 5,
"Power": 50,
"I18n": {
- "en": "Antler Uppercut",
- "zh-CN": "尖角顶击 [紫霞/祇岳鹿]",
- "ja": "ホーンアッパー [ツノガミ/ヤマガミ]"
+ "en": {
+ "Name": "Antler Uppercut [Eikthyrdeer]",
+ "Description": "Eikthyrdeer's exclusive skill. Charges at foes and uses antlers to launch them into the air. If used while riding, the direction of the charge can be controlled."
+ },
+ "zh-CN": {
+ "Name": "尖角顶击 [紫霞/祇岳鹿]",
+ "Description": "紫霞鹿的专用技能。面向敌人冲刺,扬起尖角攻击敌人。如在骑乘时发动,可操控前进方向。"
+ },
+ "ja": {
+ "Name": "ホーンアッパー [ツノガミ/ヤマガミ]",
+ "Description": "ツノガミ種の専用スキル。敵に向かって突進し、角を振り上げて攻撃する。ライド中に発動すると、進行方向を操作できる。"
+ }
},
"UniqueSkill": true
},
@@ -214,9 +382,18 @@
"CT": 2,
"Power": 55,
"I18n": {
- "en": "Reckless Charge",
- "zh-CN": "猪突猛进 [草莽猪]",
- "ja": "猪突猛進 [イノボウ]"
+ "en": {
+ "Name": "Reckless Charge [Rushoar]",
+ "Description": "Rushoar's special skill. Takes aim at a foe and rushes at them with a mad charge."
+ },
+ "zh-CN": {
+ "Name": "猪突猛进 [草莽猪]",
+ "Description": "草莽猪的专用技能。瞄准敌人后,猛烈地冲向敌人。"
+ },
+ "ja": {
+ "Name": "猪突猛進 [イノボウ]",
+ "Description": "イノボウの専用スキル。敵に狙いを定め、猛烈な勢いで猛進する。"
+ }
},
"UniqueSkill": true
},
@@ -226,9 +403,18 @@
"CT": 8,
"Power": 60,
"I18n": {
- "en": "Gale Claw",
- "zh-CN": "滑空爪 [天擒鸟]",
- "ja": "グライドクロー [エアムルグ]"
+ "en": {
+ "Name": "Gale Claw [Galeclaw]",
+ "Description": "Galeclaw's exclusive skill. Soars through the air with its talons outstretched forward."
+ },
+ "zh-CN": {
+ "Name": "滑空爪 [天擒鸟]",
+ "Description": "天擒鸟的专用技能。向前伸出脚爪,以滑翔的姿态猛力冲向目标。"
+ },
+ "ja": {
+ "Name": "グライドクロー [エアムルグ]",
+ "Description": "エアムルグの専用スキル。足爪を前に出しながら 勢い良く滑空突進を行う。"
+ }
},
"UniqueSkill": true
},
@@ -238,9 +424,18 @@
"CT": 9,
"Power": 60,
"I18n": {
- "en": "Cat Press",
- "zh-CN": "喵咪扑击 [笑魇猫]",
- "ja": "キャットプレス [ニャンギマリ]"
+ "en": {
+ "Name": "Cat Press [Grintale]",
+ "Description": "Grintale's exclusive skill. Grins menacingly before leaping into the air and smashing foes with its body."
+ },
+ "zh-CN": {
+ "Name": "喵咪扑击 [笑魇猫]",
+ "Description": "笑魇猫的专用技能。带着无所畏惧的笑容跳起,再用全身的力量辗压敌人。"
+ },
+ "ja": {
+ "Name": "キャットプレス [ニャンギマリ]",
+ "Description": "ニャンギマリの専用スキル。不敵な笑みを浮かべながら跳び上がり、全身で敵を押しつぶす。"
+ }
},
"UniqueSkill": true
},
@@ -250,9 +445,18 @@
"CT": 13,
"Power": 65,
"I18n": {
- "en": "Tornado Attack",
- "zh-CN": "龙卷风 [疾风隼]",
- "ja": "トルネードアタック [ホークウィン]"
+ "en": {
+ "Name": "Tornado Attack [Nitewing]",
+ "Description": "Nitewing's exclusive skill. Generates a tornado before soaring towards its target."
+ },
+ "zh-CN": {
+ "Name": "龙卷风 [疾风隼]",
+ "Description": "疾风隼的专用技能。在前方制造出龙卷风后,以滑翔的姿态冲向敌人。"
+ },
+ "ja": {
+ "Name": "トルネードアタック [ホークウィン]",
+ "Description": "ホークウィンの専用スキル。前方に竜巻を発生させた後、滑空しながら敵に突進する。"
+ }
},
"UniqueSkill": true
},
@@ -262,9 +466,18 @@
"CT": 12,
"Power": 80,
"I18n": {
- "en": "Muscle Slam",
- "zh-CN": "铁山靠 [连理/海誓龙]",
- "ja": "ボディスマッシュ [ラブラドン/スプラドン]"
+ "en": {
+ "Name": "Muscle Slam [Broncherry]",
+ "Description": "Broncherry's exclusive skill. Turns sideways before tackling enemies in front of it, sending them flying into the air."
+ },
+ "zh-CN": {
+ "Name": "铁山靠 [连理/海誓龙]",
+ "Description": "连理龙的专用技能。侧身站立,然后向前猛撞敌人,并将其击飞。"
+ },
+ "ja": {
+ "Name": "ボディスマッシュ [ラブラドン/スプラドン]",
+ "Description": "ラブラドン種の専用スキル。体を横向きに構え、前方にタックルをかまして敵を吹き飛ばす。"
+ }
},
"UniqueSkill": true
},
@@ -274,9 +487,18 @@
"CT": 14,
"Power": 85,
"I18n": {
- "en": "Ground Pound",
- "zh-CN": "猩猩连打 [铁拳猿]",
- "ja": "ゴリラウンドコンボ [ゴリレイジ]"
+ "en": {
+ "Name": "Ground Pound [Gorirat]",
+ "Description": "Gorirat's exclusive skill. Pounds the ground twice before leaping into the air and unleashing a powerful punch."
+ },
+ "zh-CN": {
+ "Name": "猩猩连打 [铁拳猿]",
+ "Description": "铁拳猿的专用技能。猛击地面两次后高高跳起,再赏给对方强力的一拳。"
+ },
+ "ja": {
+ "Name": "ゴリラウンドコンボ [ゴリレイジ]",
+ "Description": "ゴリレイジの専用スキル。地面を2度たたきつけたあとに飛び上がり、最後に強烈なパンチをお見舞いする。"
+ }
},
"UniqueSkill": true
},
@@ -286,9 +508,18 @@
"CT": 15,
"Power": 90,
"I18n": {
- "en": "Cloud Tempest",
- "zh-CN": "阴云之岚 [云海鹿]",
- "ja": "クラウドテンペスト [ムラクモ]"
+ "en": {
+ "Name": "Cloud Tempest [Fenglope]",
+ "Description": "Fenglope's exclusive skill. Charges forward while manipulating the atmosphere to create a pressurized wind tunnel around itself."
+ },
+ "zh-CN": {
+ "Name": "阴云之岚 [云海鹿]",
+ "Description": "云海鹿的专用技能。操控大气,借助风压向前猛冲。"
+ },
+ "ja": {
+ "Name": "クラウドテンペスト [ムラクモ]",
+ "Description": "ムラクモの専用スキル。大気を操作し、風圧を纏いながら突進する。"
+ }
},
"UniqueSkill": true
},
@@ -298,9 +529,18 @@
"CT": 21,
"Power": 100,
"I18n": {
- "en": "Kingly Slam",
- "zh-CN": "泰山压顶 [君王/冰帝美露帕]",
- "ja": "キングプレス [アルパオー/アオパオー]"
+ "en": {
+ "Name": "Kingly Slam [Kingpaca]",
+ "Description": "Kingpaca's exclusive skill. Leaps high into the air before smashing into an enemy with its massive body."
+ },
+ "zh-CN": {
+ "Name": "泰山压顶 [君王/冰帝美露帕]",
+ "Description": "君王美露帕的专用技能。向上高高跳起后,用丰满的庞大身躯辗压敌人。"
+ },
+ "ja": {
+ "Name": "キングプレス [アルパオー/アオパオー]",
+ "Description": "アルパオー種の専用スキル。大きく跳び上がった後、ふくよかな巨体で敵を押しつぶす。"
+ }
},
"UniqueSkill": true
},
@@ -310,36 +550,39 @@
"CT": 40,
"Power": 120,
"I18n": {
- "en": "Spear Thrust",
- "zh-CN": "闪枪冲锋 [圣光骑士]",
- "ja": "一槍一閃 [セイントール]"
+ "en": {
+ "Name": "Spear Thrust [Paladius]",
+ "Description": "Paladius's exclusive skill. Clads itself in holy power before charging forward with its spear. The shield in its other hand protects from attacks during the charge."
+ },
+ "zh-CN": {
+ "Name": "闪枪冲锋 [圣光骑士]",
+ "Description": "圣光骑士的专用技能。让神圣的力量覆满自身,并以左手持长枪向前冲锋。右手的盾牌在冲锋时能挡下所有攻击。"
+ },
+ "ja": {
+ "Name": "一槍一閃 [セイントール]",
+ "Description": "セイントールの専用スキル。聖なる力をその身にまとい 左手の槍を前に突き出しながら突進する。突進中、右手の盾はあらゆる攻撃を防ぐ。"
+ }
},
"UniqueSkill": true
},
-
- "EPalWazaID::SelfExplosion": {
- "InternalName": "EPalWazaID::SelfExplosion",
- "Element": "Neutral",
- "CT": 55,
- "Power": 500,
- "I18n": {
- "en": "Megaton Implode [Tocotoco]",
- "zh-CN": "超自爆 [炸蛋鸟]",
- "ja": "メガトン自爆 [クルットリ]"
- }
- },
-
-
-
"EPalWazaID::WindCutter": {
"InternalName": "EPalWazaID::WindCutter",
"Element": "Grass",
"CT": 2,
"Power": 30,
"I18n": {
- "en": "Wind Cutter",
- "zh-CN": "风刃",
- "ja": "ウインドカッター"
+ "en": {
+ "Name": "Wind Cutter",
+ "Description": "Fires a high speed blade of wind that flies straight at an enemy. Inflict IvyCling 35"
+ },
+ "zh-CN": {
+ "Name": "风刃",
+ "Description": "发射超高速风刃 瞄准后笔直飞向敌人。Inflict IvyCling 35"
+ },
+ "ja": {
+ "Name": "ウィンドカッター",
+ "Description": "敵をめがけて、一直線に飛んでゆく 超高速な風の刃を発射する。Inflict IvyCling 35"
+ }
},
"SkillFruit": true
},
@@ -349,21 +592,59 @@
"CT": 9,
"Power": 50,
"I18n": {
- "en": "Seed Machine Gun",
- "zh-CN": "种子机关枪",
- "ja": "シードマシンガン"
+ "en": {
+ "Name": "Seed Machine Gun",
+ "Description": "Fires a volley of hard seeds at enemies in front of it. Inflict IvyCling 100"
+ },
+ "zh-CN": {
+ "Name": "种子机关枪",
+ "Description": "释放大量坚硬的种子 攻击前方的敌人。Inflict IvyCling 100"
+ },
+ "ja": {
+ "Name": "シードマシンガン",
+ "Description": "たくさんの固い種を放出し 前方の敵を攻撃する。Inflict IvyCling 100"
+ }
},
"SkillFruit": true
},
+ "EPalWazaID::SpecialCutter": {
+ "InternalName": "EPalWazaID::SpecialCutter",
+ "Element": "Grass",
+ "CT": 12,
+ "Power": 60,
+ "I18n": {
+ "en": {
+ "Name": "Multicutter",
+ "Description": "[Lily & Lyleen] The user fires three high-speed blades of wind in quick succession that fly straight at enemies. Inflict IvyCling 35"
+ },
+ "zh-CN": {
+ "Name": "多重利刃",
+ "Description": "[莉莉 & 百合女王] 瞄准敌人发射 3发直线飞行的超高速风刃。Inflict IvyCling 35"
+ },
+ "ja": {
+ "Name": "マルチカッター",
+ "Description": "[リリィ & リリクイン] 敵をめがけて一直線に飛んでゆく 超高速な風の刃を3発発射する。Inflict IvyCling 35"
+ }
+ }
+ },
"EPalWazaID::SeedMine": {
"InternalName": "EPalWazaID::SeedMine",
"Element": "Grass",
"CT": 13,
"Power": 65,
"I18n": {
- "en": "Seed Mine",
- "zh-CN": "种子地雷",
- "ja": "シードマイン"
+ "en": {
+ "Name": "Seed Mine",
+ "Description": "Launches a deadly seed. If it hits an enemy, the seed explodes. Inflict IvyCling 100"
+ },
+ "zh-CN": {
+ "Name": "种子地雷",
+ "Description": "发射危险的种子。碰到敌人会绽开并爆炸。Inflict IvyCling 100"
+ },
+ "ja": {
+ "Name": "シードマイン",
+ "Description": "危険なタネを発射する。敵に当たると弾けて爆発する。Inflict IvyCling 100"
+ }
},
"SkillFruit": true
},
@@ -373,9 +654,18 @@
"CT": 18,
"Power": 80,
"I18n": {
- "en": "Grass Tornado",
- "zh-CN": "绿野飓风",
- "ja": "グラストルネード"
+ "en": {
+ "Name": "Grass Tornado",
+ "Description": "Generates two tornadoes on either side before launching them at an enemy. Inflict IvyCling 65"
+ },
+ "zh-CN": {
+ "Name": "绿野飓风",
+ "Description": "在左右两侧生成龙卷风,并扇向敌人。Inflict IvyCling 65"
+ },
+ "ja": {
+ "Name": "グラストルネード",
+ "Description": "左右に竜巻を発生させ 敵にけしかける。Inflict IvyCling 65"
+ }
},
"SkillFruit": true
},
@@ -385,9 +675,18 @@
"CT": 25,
"Power": 95,
"I18n": {
- "en": "Spine Vine",
- "zh-CN": "缠绕地刺",
- "ja": "スパインヴァイン"
+ "en": {
+ "Name": "Spine Vine",
+ "Description": "Generates spiny thorns that chase an enemy along the ground, piercing them from below. Inflict IvyCling 100"
+ },
+ "zh-CN": {
+ "Name": "缠绕地刺",
+ "Description": "用地下尖锐的根部追击敌人 并从脚下贯穿敌人。Inflict IvyCling 100"
+ },
+ "ja": {
+ "Name": "スパインヴァイン",
+ "Description": "地中の鋭い根が敵を追いかけ 足元から敵を貫く。Inflict IvyCling 100"
+ }
},
"SkillFruit": true
},
@@ -397,23 +696,39 @@
"CT": 55,
"Power": 150,
"I18n": {
- "en": "Solar Blast",
- "zh-CN": "太阳光束",
- "ja": "ソーラーブラスト"
+ "en": {
+ "Name": "Solar Blast",
+ "Description": "Charges solar energy before blasting enemies with a powerful beam. Inflict IvyCling 100"
+ },
+ "zh-CN": {
+ "Name": "太阳光束",
+ "Description": "积蓄太阳之力 瞄准敌人发射强劲光线。Inflict IvyCling 100"
+ },
+ "ja": {
+ "Name": "ソーラーブラスト",
+ "Description": "太陽の力をチャージして 敵めがけて強力なビームを発射する。Inflict IvyCling 100"
+ }
},
"SkillFruit": true
},
-
-
"EPalWazaID::Unique_FlowerDinosaur_Whip": {
"InternalName": "EPalWazaID::Unique_FlowerDinosaur_Whip",
"Element": "Grass",
"CT": 8,
"Power": 60,
"I18n": {
- "en": "Botanical Smash",
- "zh-CN": "植物猛击 [花冠龙]",
- "ja": "ボタニカルスマッシュ [アロアリュー/ビリビリュー]"
+ "en": {
+ "Name": "Botanical Smash [Dinossom]",
+ "Description": "Dinossom's exclusive skill. Uses large tail to smash the ground in front of it, damaging enemies over a wide area. Inflict IvyCling 100"
+ },
+ "zh-CN": {
+ "Name": "植物猛击 [花冠龙]",
+ "Description": "花冠龙的专用技能。使用巨大的尾巴拍打前方地面,造成大范围冲击。Inflict IvyCling 100"
+ },
+ "ja": {
+ "Name": "ボタニカルスマッシュ [アロアリュー]",
+ "Description": "アロアリュー種の専用スキル。大きな尻尾を使って前方の地面をたたきつけ、広い範囲に衝撃を与える。Inflict IvyCling 100"
+ }
},
"UniqueSkill": true
},
@@ -423,9 +738,18 @@
"CT": 9,
"Power": 65,
"I18n": {
- "en": "Focus Shot",
- "zh-CN": "精准狙击 [羽箭/山岳射手]",
- "ja": "スナイプショット [フェザーロ/サンドロ]"
+ "en": {
+ "Name": "Focus Shot [Robinquill]",
+ "Description": "Robinquill's exclusive skill. Takes aim while drawing its bow before loosing a powerful shot at an enemy. Inflict IvyCling 100"
+ },
+ "zh-CN": {
+ "Name": "精准狙击 [羽箭/山岳射手]",
+ "Description": "羽箭射手的专用技能。拉满弓弦瞄准敌人,对敌人射出箭矢。Inflict IvyCling 100"
+ },
+ "ja": {
+ "Name": "スナイプショット [フェザーロ/サンドロ]",
+ "Description": "フェザーロ種の専用スキル。弓を引き絞って敵に狙いを定め 敵に射撃を行う。Inflict IvyCling 100"
+ }
},
"UniqueSkill": true
},
@@ -435,9 +759,18 @@
"CT": 9,
"Power": 70,
"I18n": {
- "en": "Spinning Lance",
- "zh-CN": "回旋矛 [女皇蜂]",
- "ja": "スピニングランス [クインビーナ]"
+ "en": {
+ "Name": "Spinning Lance [Elizabee]",
+ "Description": "Elizabee's exclusive skill. Channels power into its staff, and unleashes it in a whirl. Inflict IvyCling 100"
+ },
+ "zh-CN": {
+ "Name": "回旋矛 [女皇蜂]",
+ "Description": "女皇蜂的专用技能。以法杖聚集力量后,再旋转法杖来释放能量。Inflict IvyCling 100"
+ },
+ "ja": {
+ "Name": "スピニングランス [クインビーナ]",
+ "Description": "クインビーナの専用スキル。杖にパワーを集め、回転しながら解き放つ。Inflict IvyCling 100"
+ }
},
"UniqueSkill": true
},
@@ -447,50 +780,61 @@
"CT": 18,
"Power": 85,
"I18n": {
- "en": "Crushing Punch",
- "zh-CN": "筋肉重拳 [叶胖达]",
- "ja": "マッスルパンチ [ササゾー]"
- },
- "UniqueSkill": true
- },
- "EPalWazaID::SpecialCutter": {
- "InternalName": "EPalWazaID::SpecialCutter",
- "Element": "Grass",
- "CT": 12,
- "Power": 60,
- "I18n": {
- "en": "Multicutter [Lily & Lyleen]",
- "zh-CN": "多重利刃 [莉莉 & 百合女王]",
- "ja": "マルチカッター [リリィ & リリクイン]"
+ "en": {
+ "Name": "Crushing Punch [Mossanda]",
+ "Description": "Mossanda's exclusive skill. Winds up its fist before striking an enemy with a devastating punch."
+ },
+ "zh-CN": {
+ "Name": "筋肉重拳 [叶胖达]",
+ "Description": "叶胖达的专用技能。不停转动右臂,向前方猛力出拳攻击。"
+ },
+ "ja": {
+ "Name": "マッスルパンチ [ササゾー]",
+ "Description": "ササゾーの専用スキル。右腕をグルグル回し、前方に強烈なパンチを繰り出す。"
+ }
},
"UniqueSkill": true
},
-
"EPalWazaID::SelfDestruct_Bee": {
"InternalName": "EPalWazaID::SelfDestruct_Bee",
- "Element": "Neutral",
+ "Element": "Grass",
"CT": 55,
"Power": 250,
"I18n": {
- "en": "Bee Quiet",
- "zh-CN": "蜂!蜂!蜂! [骑士蜂]",
- "ja": "ビー・クワイエット [ビーナイト]"
+ "en": {
+ "Name": "Bee Quiet [Beegarde]",
+ "Description": "Risks its life to cause a violent explosion, but receives the honor of falling in battle. Inflict Burn 100"
+ },
+ "zh-CN": {
+ "Name": "蜂!蜂!蜂![骑士蜂]",
+ "Description": "赌上性命引发爆炸。是种为了荣誉而牺牲自己的技能。Inflict Burn 100"
+ },
+ "ja": {
+ "Name": "ビー・クワイエット [ビーナイト]",
+ "Description": "命をかけて爆散する。自身も殉職する名誉の技。Inflict Burn 100"
+ }
},
"UniqueSkill": true
},
-
-
"EPalWazaID::IceMissile": {
"InternalName": "EPalWazaID::IceMissile",
"Element": "Ice",
"CT": 3,
"Power": 30,
"I18n": {
- "en": "Ice Missile",
- "zh-CN": "冰雪飞弹",
- "ja": "アイスミサイル"
- },
- "SkillFruit": true
+ "en": {
+ "Name": "Ice Missile",
+ "Description": "Creates ice lances in the air that fly towards enemies. Inflict Freeze 103"
+ },
+ "zh-CN": {
+ "Name": "冰雪飞弹",
+ "Description": "在上空生成尖锐的冰柱 瞄准敌人后发射冰柱。Inflict Freeze 103"
+ },
+ "ja": {
+ "Name": "アイスミサイル",
+ "Description": "上空に尖った氷を生成し 敵めがけてそれらを発射する。Inflict Freeze 103"
+ }
+ }
},
"EPalWazaID::IceBlade": {
"InternalName": "EPalWazaID::IceBlade",
@@ -498,11 +842,19 @@
"CT": 10,
"Power": 55,
"I18n": {
- "en": "Icicle Cutter",
- "zh-CN": "冰刃",
- "ja": "アイスカッター"
- },
- "SkillFruit": true
+ "en": {
+ "Name": "Icicle Cutter",
+ "Description": "Creates a crescent blade of ice and hurls it forward. Inflict Freeze 50"
+ },
+ "zh-CN": {
+ "Name": "冰刃",
+ "Description": "制造出新月型的冰刃,将之射向前方。Inflict Freeze 50"
+ },
+ "ja": {
+ "Name": "アイスカッター",
+ "Description": "三日月状の氷の刃を作り出し 前方に発射する。Inflict Freeze 50"
+ }
+ }
},
"EPalWazaID::BlizzardLance": {
"InternalName": "EPalWazaID::BlizzardLance",
@@ -510,11 +862,19 @@
"CT": 15,
"Power": 70,
"I18n": {
- "en": "Iceberg",
- "zh-CN": "冰刺",
- "ja": "アイスバーグ"
- },
- "SkillFruit": true
+ "en": {
+ "Name": "Iceberg",
+ "Description": "Summons a sharp ice lance under an enemy. Inflict Freeze 100"
+ },
+ "zh-CN": {
+ "Name": "冰刺",
+ "Description": "在敌人的脚边 生成尖锐的冰刃。Inflict Freeze 100"
+ },
+ "ja": {
+ "Name": "アイスバーグ",
+ "Description": "敵の足元から 鋭い氷の刃を出現させる。Inflict Freeze 100"
+ }
+ }
},
"EPalWazaID::FrostBreath": {
"InternalName": "EPalWazaID::FrostBreath",
@@ -522,11 +882,19 @@
"CT": 22,
"Power": 90,
"I18n": {
- "en": "Cryst Breath",
- "zh-CN": "凛冬之息",
- "ja": "コールドブレス"
- },
- "SkillFruit": true
+ "en": {
+ "Name": "Cryst Breath",
+ "Description": "Enshrouds an enemy in a frigid blast of air, dealing continuous damage. Inflict Freeze 100"
+ },
+ "zh-CN": {
+ "Name": "凛冬之息",
+ "Description": "朝敌人喷出冰冷空气,持续造成对方伤害。Inflict Freeze 100"
+ },
+ "ja": {
+ "Name": "コールドブレス",
+ "Description": "敵に向かって冷気を放出し 継続的にダメージを与える。Inflict Freeze 100"
+ }
+ }
},
"EPalWazaID::IcicleThrow": {
"InternalName": "EPalWazaID::IcicleThrow",
@@ -534,23 +902,38 @@
"CT": 45,
"Power": 130,
"I18n": {
- "en": "Blizzard Spike",
- "zh-CN": "钻石星辰",
- "ja": "ブリザードスパイク"
- },
- "SkillFruit": true
+ "en": {
+ "Name": "Blizzard Spike",
+ "Description": "Creates a giant lump of ice and hurls it at an enemy. It deals damage to those in the surrounding area upon impact. Inflict Freeze 100"
+ },
+ "zh-CN": {
+ "Name": "钻石星辰",
+ "Description": "生成巨大的冰块 瞄准敌人后高速发射。中弹时,可同时给周围造成冲击。Inflict Freeze 100"
+ },
+ "ja": {
+ "Name": "ブリザードスパイク",
+ "Description": "巨大な氷塊を作り出し 敵めがけて高速で発射する。着弾すると、周囲にも衝撃を与える。Inflict Freeze 100"
+ }
+ }
},
-
-
"EPalWazaID::Unique_IceDeer_IceHorn": {
"InternalName": "EPalWazaID::Unique_IceDeer_IceHorn",
"Element": "Ice",
"CT": 9,
"Power": 65,
"I18n": {
- "en": "Freezing Charge",
- "zh-CN": "霜角猛攻 [严冬鹿]",
- "ja": "アイスホーンラッシュ [ツララジカ]"
+ "en": {
+ "Name": "Freezing Charge [Reindrix]",
+ "Description": "Reindrix's exclusive skill. Charges at an enemy with antlers adorned in ice. Inflict Freeze 50"
+ },
+ "zh-CN": {
+ "Name": "霜角猛攻 [严冬鹿]",
+ "Description": "严冬鹿的专用技能。以雄伟的冰角刺穿敌人。Inflict Freeze 50"
+ },
+ "ja": {
+ "Name": "アイスホーンラッシュ [ツララジカ]",
+ "Description": "ツララジカの専用スキル。荘厳な氷の角で敵を突き上げる。Inflict Freeze 50"
+ }
},
"UniqueSkill": true
},
@@ -560,9 +943,18 @@
"CT": 10,
"Power": 70,
"I18n": {
- "en": "Emperor Slide",
- "zh-CN": "王者滑击 [企丸王]",
- "ja": "キャプテンスライディング [キャプペン]"
+ "en": {
+ "Name": "Emperor Slide [Penking]",
+ "Description": "Penking's exclusive skill. Lies on its belly while generating frozen air all around it before sliding at enemies at high speed. Inflict Freeze 50"
+ },
+ "zh-CN": {
+ "Name": "王者滑击 [企丸王]",
+ "Description": "企丸王的专用技能。全身散发寒气,并采用腹部着地之姿滑行,往敌人的方向用力撞去。Inflict Freeze 50"
+ },
+ "ja": {
+ "Name": "キャプテンスライディング [キャプペン]",
+ "Description": "キャプペンの専用スキル。地面にお腹をつけ、全身から冷気を発して 滑りながら敵にぶつかっていく。Inflict Freeze 50"
+ }
},
"UniqueSkill": true
},
@@ -572,9 +964,18 @@
"CT": 45,
"Power": 100,
"I18n": {
- "en": "Frost Burst",
- "zh-CN": "霜冻爆裂 [寒霜兽]",
- "ja": "フロストバースト [フロストカノン]"
+ "en": {
+ "Name": "Frost Burst [Reptyro Cryst]",
+ "Description": "Reptyro Cryst's exclusive skill. Raises its front legs and slams them into the ground causing frozen blasts under its enemies. It simultaneously pounds them with snow balls from above. Inflict Freeze 100"
+ },
+ "zh-CN": {
+ "Name": "霜冻爆裂 [寒霜兽]",
+ "Description": "寒霜兽的专用技能。举起前脚猛击地面,使冰雪于敌人所在处喷发。喷发时四周更会有雪球倾泻而下。Inflict Freeze 100"
+ },
+ "ja": {
+ "Name": "フロストバースト [フロスカノン]",
+ "Description": "フロスカノンの専用スキル。前足を振り上げて地面に叩きつけ 敵のいる地点に雪を噴出させる。噴出時、周囲に雪の玉が降りかかる。Inflict Freeze 100"
+ }
},
"UniqueSkill": true
},
@@ -584,25 +985,40 @@
"CT": 24,
"Power": 110,
"I18n": {
- "en": "Crystal Wing",
- "zh-CN": "冰晶之翼 [唤冬/夜兽]",
- "ja": "クリスタルウィング [グレイシャル/グレイシャドウ]"
+ "en": {
+ "Name": "Crystal Wing [Frostallion]",
+ "Description": "Frostallion's exclusive skill. Dashes forward while creating frigid air around its wings, using them to slash enemies. Inflict Freeze 100"
+ },
+ "zh-CN": {
+ "Name": "冰晶之翼 [唤冬/唤夜兽]",
+ "Description": "唤冬兽的专用技能。凝结冷空气,让翅膀覆上冰晶,并在全力奔跑的同时以冰翼撕裂敌人。Inflict Freeze 100"
+ },
+ "ja": {
+ "Name": "クリスタルウィング [グレイシャル/グレイシャドウ]",
+ "Description": "グレイシャル種の専用スキル。冷気を凝縮して翼に氷をまとわせ 疾走しながら氷翼で敵を切り裂く。Inflict Freeze 100"
+ }
},
"UniqueSkill": true
},
-
-
"EPalWazaID::FireBlast": {
"InternalName": "EPalWazaID::FireBlast",
"Element": "Fire",
- "CT": 2,
+ "CT": 2,
"Power": 30,
"I18n": {
- "en": "Ignis Blast",
- "zh-CN": "烈焰射击",
- "ja": "ファイアーショット"
- },
- "SkillFruit": true
+ "en": {
+ "Name": "Ignis Blast",
+ "Description": "Hurls a ball of fire straight at an enemy. Inflict Burn 50"
+ },
+ "zh-CN": {
+ "Name": "烈焰射击",
+ "Description": "瞄准后发射可笔直飞向敌人 的火焰弹。Inflict Burn 50"
+ },
+ "ja": {
+ "Name": "ファイアーショット",
+ "Description": "敵をめがけて、一直線に飛んでゆく 炎の弾を発射する。Inflict Burn 50"
+ }
+ }
},
"EPalWazaID::FireSeed": {
"InternalName": "EPalWazaID::FireSeed",
@@ -610,11 +1026,19 @@
"CT": 7,
"Power": 45,
"I18n": {
- "en": "Spirit Fire",
- "zh-CN": "烈焰溅射",
- "ja": "スプリットファイアー"
- },
- "SkillFruit": true
+ "en": {
+ "Name": "Spirit Fire",
+ "Description": "Shoots fireballs towards an enemy. The fireballs explode after a short distance, generating smaller fireballs that spread forward. Inflict Burn 100"
+ },
+ "zh-CN": {
+ "Name": "烈焰溅射",
+ "Description": "向敌人发射火球。稍作飞行后会破裂 并向前方放射小型火球。Inflict Burn 100"
+ },
+ "ja": {
+ "Name": "スプリットファイアー",
+ "Description": "敵に向かって火の玉を発射する。少し進むと破裂して 小さな火の玉が前方に広がる。Inflict Burn 100"
+ }
+ }
},
"EPalWazaID::FlareArrow": {
"InternalName": "EPalWazaID::FlareArrow",
@@ -622,11 +1046,19 @@
"CT": 10,
"Power": 55,
"I18n": {
- "en": "Flare Arrow",
- "zh-CN": "烈焰箭",
- "ja": "フレアアロー"
- },
- "SkillFruit": true
+ "en": {
+ "Name": "Flare Arrow",
+ "Description": "Fires three flaming arrows in succession that home in on an enemy. Inflict Burn 103"
+ },
+ "zh-CN": {
+ "Name": "烈焰箭",
+ "Description": "连续发射3支高速火箭 并追击敌人。Inflict Burn 103"
+ },
+ "ja": {
+ "Name": "フレアアロー",
+ "Description": "敵を追尾する、高速な火の矢を 3本連続で発射する。Inflict Burn 103"
+ }
+ }
},
"EPalWazaID::Flamethrower": {
"InternalName": "EPalWazaID::Flamethrower",
@@ -634,11 +1066,19 @@
"CT": 15,
"Power": 70,
"I18n": {
- "en": "Ignis Breath",
- "zh-CN": "烈焰放射",
- "ja": "ファイアーブレス"
- },
- "SkillFruit": true
+ "en": {
+ "Name": "Ignis Breath",
+ "Description": "Shoots flames at an enemy, dealing continuous damage. Inflict Burn 100"
+ },
+ "zh-CN": {
+ "Name": "烈焰放射",
+ "Description": "面向敌人释放火焰,造成持续伤害。Inflict Burn 100"
+ },
+ "ja": {
+ "Name": "ファイアーブレス",
+ "Description": "敵に向かって火炎を放出し、継続的にダメージを与える。Inflict Burn 100"
+ }
+ }
},
"EPalWazaID::FlareTornado": {
"InternalName": "EPalWazaID::FlareTornado",
@@ -646,11 +1086,19 @@
"CT": 18,
"Power": 80,
"I18n": {
- "en": "Flare Storm",
- "zh-CN": "烈焰风暴",
- "ja": "フレアストーム"
- },
- "SkillFruit": true
+ "en": {
+ "Name": "Flare Storm",
+ "Description": "Generates two flaming tornadoes on either side before launching them at an enemy. Inflict Burn 65"
+ },
+ "zh-CN": {
+ "Name": "烈焰风暴",
+ "Description": "在左右两侧生成炙热的龙卷风,并扇向敌人。Inflict Burn 65"
+ },
+ "ja": {
+ "Name": "フレアストーム",
+ "Description": "左右に灼熱の竜巻を発生させ 敵にけしかける。Inflict Burn 65"
+ }
+ }
},
"EPalWazaID::Inferno": {
"InternalName": "EPalWazaID::Inferno",
@@ -658,11 +1106,19 @@
"CT": 40,
"Power": 120,
"I18n": {
- "en": "Ignis Rage",
- "zh-CN": "地狱火",
- "ja": "インフェルノ"
- },
- "SkillFruit": true
+ "en": {
+ "Name": "Ignis Rage",
+ "Description": "Energizes the surrounding ground, causing it to explode after a set amount of time. Inflict Burn 100"
+ },
+ "zh-CN": {
+ "Name": "地狱火",
+ "Description": "使周围地面活性化,并在一定时间后爆炸。Inflict Burn 100"
+ },
+ "ja": {
+ "Name": "インフェルノ",
+ "Description": "周囲の地面を活性化させ 一定時間後に爆裂させる。Inflict Burn 100"
+ }
+ }
},
"EPalWazaID::FireBall": {
"InternalName": "EPalWazaID::FireBall",
@@ -670,47 +1126,80 @@
"CT": 55,
"Power": 150,
"I18n": {
- "en": "Fire Ball",
- "zh-CN": "烈焰球",
- "ja": "ファイアーボール"
- },
- "SkillFruit": true
+ "en": {
+ "Name": "Fire Ball",
+ "Description": "Creates a giant ball of flame and hurls it at an enemy. The ball explodes over a wide area upon impact. Inflict Burn 100"
+ },
+ "zh-CN": {
+ "Name": "烈焰球",
+ "Description": "在头上生成巨大火球,并向敌人发射。中弹后会爆炸,造成大范围爆炸冲击波。Inflict Burn 100"
+ },
+ "ja": {
+ "Name": "ファイアーボール",
+ "Description": "頭上に巨大な火球を作り出し、敵に向かって発射する。着弾すると爆発し、広範囲に爆風が広がる。Inflict Burn 100"
+ }
+ }
},
-
-
"EPalWazaID::Unique_FlameBuffalo_FlameHorn": {
"InternalName": "EPalWazaID::Unique_FlameBuffalo_FlameHorn",
"Element": "Fire",
"CT": 9,
"Power": 50,
"I18n": {
- "en": "Blazing Horn",
- "zh-CN": "炽热角击 [炽焰牛]",
- "ja": "ブレイジングホーン [ブルフェルノ]"
+ "en": {
+ "Name": "Blazing Horn [Arsox]",
+ "Description": "Arsox's exclusive skill. Takes aim and rushes at an enemy with a mad dash. Inflict Burn 50"
+ },
+ "zh-CN": {
+ "Name": "炽热角击 [炽焰牛]",
+ "Description": "炽焰牛的专用技能。锁定敌人后,以凶猛气势顶着锐利牛角冲向对方。Inflict Burn 50"
+ },
+ "ja": {
+ "Name": "ブレイジングホーン [ブルフェルノ]",
+ "Description": "ブルフェルノの専用スキル。敵に狙いを定めた後、猛烈な勢いで突進しながら角を振り上げる。Inflict Burn 50"
+ }
},
"UniqueSkill": true
},
"EPalWazaID::Unique_Ronin_Iai": {
"InternalName": "EPalWazaID::Unique_Ronin_Iai",
"Element": "Fire",
- "CT": 9,
+ "CT": 9,
"Power": 65,
"I18n": {
- "en": "Iaigiri",
- "zh-CN": "居合斩 [浪刃武士]",
- "ja": "居合切り [ツジギリ]"
+ "en": {
+ "Name": "Iaigiri [Bushi]",
+ "Description": "Bushi's exclusive skill. After Holding the sword, he appears in front of the enemy in an instant and unleashes a Ultra-fast sword draw attack. Inflict Burn 50"
+ },
+ "zh-CN": {
+ "Name": "居合斩 [浪刃武士]",
+ "Description": "浪刃武士的专用技能。摆出迎战姿势后瞬间移动至敌人面前,并使出超高速的拔刀攻击。Inflict Burn 50"
+ },
+ "ja": {
+ "Name": "居合斬り [ツジギリ]",
+ "Description": "ツジギリの専用スキル。刀を構えた後、一瞬で敵の目の前に現れて 超高速の抜刀攻撃を放つ。Inflict Burn 50"
+ }
},
"UniqueSkill": true
},
"EPalWazaID::Unique_Baphomet_SwallowKite": {
"InternalName": "EPalWazaID::Unique_Baphomet_SwallowKite",
"Element": "Fire",
- "CT": 10,
+ "CT": 10,
"Power": 70,
"I18n": {
- "en": "Hellfire Claw",
- "zh-CN": "狱火爪 [炎/暗魔羊]",
- "ja": "ヘルファイアクロー [ヘルゴート/アビスゴート]"
+ "en": {
+ "Name": "Hellfire Claw [Incineram]",
+ "Description": "Incineram's exclusive skill. Draws near enemies using its left claw to slash them into the air before cutting them down with its right claw. Inflict Burn 100"
+ },
+ "zh-CN": {
+ "Name": "狱火爪 [炎/暗魔羊]",
+ "Description": "炎魔羊的专用技能。在接近对象的同时,以左手爪子向上挥击后跳起,再用右手爪子多次迅速向下挥砍。Inflict Burn 100"
+ },
+ "ja": {
+ "Name": "ヘルファイアクロー [ヘルゴート/アビスゴート]",
+ "Description": "ヘルゴート種の専用スキル。接近しながら左手の爪で切り上げつつ跳躍し、続けざまに右手の爪を素早く切り下ろす。Inflict Burn 100"
+ }
},
"UniqueSkill": true
},
@@ -720,9 +1209,18 @@
"CT": 10,
"Power": 75,
"I18n": {
- "en": "Daring Flames",
- "zh-CN": "风林火山 [苍焰狼]",
- "ja": "風林火山 [シラヌイ]"
+ "en": {
+ "Name": "Daring Flames [Kitsun]",
+ "Description": "Kitsun's exclusive skill. Charges forward with great speed while clad in intense blue flames. Inflict Burn 100"
+ },
+ "zh-CN": {
+ "Name": "风林火山 [苍焰狼]",
+ "Description": "苍焰狼的专用技能。带着缠绕全身的青蓝火焰,气势汹汹地向前猛冲。Inflict Burn 100"
+ },
+ "ja": {
+ "Name": "風林火山 [シラヌイ]",
+ "Description": "シラヌイの専用スキル。全身に青い炎をまとい、勢いをつけて突進する。Inflict Burn 100"
+ }
},
"UniqueSkill": true
},
@@ -732,9 +1230,18 @@
"CT": 14,
"Power": 85,
"I18n": {
- "en": "Ignis Slam",
- "zh-CN": "烈焰冲撞 [火麒麟]",
- "ja": "フレイムチャージ [サラブレイズ]"
+ "en": {
+ "Name": "Ignis Slam [Pyrin]",
+ "Description": "Pyrin's exclusive skill. Charges forward while clad in a veil of flames. Flames continue to burn in its wake. Inflict Burn 100"
+ },
+ "zh-CN": {
+ "Name": "烈焰冲撞 [火麒麟]",
+ "Description": "火麒麟的专用技能。带着缠绕全身的火焰向前猛冲。途经之处均会留下滚滚火焰。Inflict Burn 100"
+ },
+ "ja": {
+ "Name": "フレイムチャージ [サラブレイズ]",
+ "Description": "サラブレイズの専用スキル。炎をまといながら突進する。その軌道上には火が燃え残る。Inflict Burn 100"
+ }
},
"UniqueSkill": true
},
@@ -744,9 +1251,18 @@
"CT": 45,
"Power": 100,
"I18n": {
- "en": "Volcanic Burst",
- "zh-CN": "火山爆发 [熔岩兽]",
- "ja": "ボルカニックバースト [ボルカノン]"
+ "en": {
+ "Name": "Volcanic Burst [Reptyro]",
+ "Description": "Reptyro's exclusive skill. Raises its front legs before slamming them into the ground, causing volcanic eruptions under its enemies. It simultaneously bombards them with volcanic bombs from above. Inflict Burn 100"
+ },
+ "zh-CN": {
+ "Name": "火山爆发 [熔岩兽]",
+ "Description": "熔岩兽的专用技能。举起前脚猛击地面,使岩浆于敌人所在处喷发。喷发时四周更会有火山弹倾泻而下。Inflict Burn 100"
+ },
+ "ja": {
+ "Name": "ボルカニックバースト [ボルカノン]",
+ "Description": "ボルカノンの専用スキル。前足を振り上げて地面に叩きつけ 敵のいる地点を噴火させる。噴火時、周囲に火山弾が降りかかる。Inflict Burn 100"
+ }
},
"UniqueSkill": true
},
@@ -756,23 +1272,39 @@
"CT": 28,
"Power": 135,
"I18n": {
- "en": "Phoenix Flare",
- "zh-CN": "凤凰翔波 [荷鲁斯]",
- "ja": "鳳凰翔波 [ホルス]"
+ "en": {
+ "Name": "Phoenix Flare [Faleris]",
+ "Description": "Faleris's special skill. Covers its body in a tornado of flames before charging forward. Inflict Burn 100"
+ },
+ "zh-CN": {
+ "Name": "凤凰翔波 [荷鲁斯]",
+ "Description": "荷鲁斯的专用技能。扇起炙热的龙卷风后,身体被狱火包围,一边滑翔一边突袭敌人。Inflict Burn 100"
+ },
+ "ja": {
+ "Name": "鳳凰翔波 [ホルス]",
+ "Description": "ホルスの専用スキル。灼熱の竜巻を巻き起こしたあと、身体に獄炎を纏い、滑空しながら突進する。Inflict Burn 100"
+ }
},
"UniqueSkill": true
},
-
-
"EPalWazaID::SpreadPulse": {
"InternalName": "EPalWazaID::SpreadPulse",
"Element": "Electric",
"CT": 2,
"Power": 30,
"I18n": {
- "en": "Spark Blast",
- "zh-CN": "电火花",
- "ja": "スパークショット"
+ "en": {
+ "Name": "Spark Blast",
+ "Description": "The user releases a lightning ball that expands outward in a forward, circular pattern. Inflict Electrical 100"
+ },
+ "zh-CN": {
+ "Name": "电火花",
+ "Description": "向前方发射呈放射状扩散的 雷电球。Inflict Electrical 100"
+ },
+ "ja": {
+ "Name": "スパークショット",
+ "Description": "前方に対して 放射状に広がる 雷の球を発射する。Inflict Electrical 100"
+ }
},
"SkillFruit": true
},
@@ -782,9 +1314,18 @@
"CT": 4,
"Power": 40,
"I18n": {
- "en": "Shockwave",
- "zh-CN": "冲击波",
- "ja": "ショックウェーブ"
+ "en": {
+ "Name": "Shockwave",
+ "Description": "Quickly discharges electricity, shocking those around it. Inflict Electrical 103"
+ },
+ "zh-CN": {
+ "Name": "冲击波",
+ "Description": "快速放电 给周围造成冲击。Inflict Electrical 103"
+ },
+ "ja": {
+ "Name": "ショックウェーブ",
+ "Description": "素早く放電し 周囲に衝撃を与える。Inflict Electrical 103"
+ }
},
"SkillFruit": true
},
@@ -794,9 +1335,18 @@
"CT": 9,
"Power": 50,
"I18n": {
- "en": "Electric Ball",
- "zh-CN": "闪电球",
- "ja": "サンダーボール"
+ "en": {
+ "Name": "Electric Ball",
+ "Description": "Fires an electric ball that slowly pursues an enemy. Inflict Electrical 50"
+ },
+ "zh-CN": {
+ "Name": "闪电球",
+ "Description": "发射雷电球 并缓慢追击敌人。Inflict Electrical 50"
+ },
+ "ja": {
+ "Name": "サンダーボール",
+ "Description": "ゆっくりと敵を追いかける 雷の球を発射する。Inflict Electrical 50"
+ }
},
"SkillFruit": true
},
@@ -806,9 +1356,18 @@
"CT": 13,
"Power": 65,
"I18n": {
- "en": "Plasma Tornado",
- "zh-CN": "等离子浮游炮",
- "ja": "プラズマファンネル"
+ "en": {
+ "Name": "Plasma Tornado",
+ "Description": "Creates two balls of electric energy that fire numerous bolts of lightning at enemies. Inflict Electrical 100"
+ },
+ "zh-CN": {
+ "Name": "等离子浮游砲",
+ "Description": "生成两个蕴含雷电能量的球 然后瞄准敌人,从中发射无数雷球。Inflict Electrical 100"
+ },
+ "ja": {
+ "Name": "プラズマファンネル",
+ "Description": "雷エネルギーをもつ2つの球を作り出し そこから、敵めがけて無数の雷球を発射する。Inflict Electrical 100"
+ }
},
"SkillFruit": true
},
@@ -818,9 +1377,18 @@
"CT": 15,
"Power": 70,
"I18n": {
- "en": "Lock-on Laser",
- "zh-CN": "锁定雷射",
- "ja": "ロックオンレーザー"
+ "en": {
+ "Name": "Lock-on Laser",
+ "Description": "Takes aim at an enemy before firing a super high speed laser. Inflict Electrical 100"
+ },
+ "zh-CN": {
+ "Name": "锁定雷射",
+ "Description": "瞄准敌人后 发射超高速的雷电激光。Inflict Electrical 100"
+ },
+ "ja": {
+ "Name": "ロックオンレーザー",
+ "Description": "敵に狙いを定めたあとに 超高速な雷のレーザーを発射する。Inflict Electrical 100"
+ }
},
"SkillFruit": true
},
@@ -830,9 +1398,18 @@
"CT": 16,
"Power": 75,
"I18n": {
- "en": "Lightning Streak",
- "zh-CN": "雷击",
- "ja": "ラインサンダー"
+ "en": {
+ "Name": "Lightning Streak",
+ "Description": "Generates a lightning bolt that moves forward in a line. Inflict Electrical 100"
+ },
+ "zh-CN": {
+ "Name": "雷击",
+ "Description": "生成可笔直前进的雷击。Inflict Electrical 100"
+ },
+ "ja": {
+ "Name": "ラインサンダー",
+ "Description": "一直線に進む雷撃を発生させる。Inflict Electrical 100"
+ }
},
"SkillFruit": true
},
@@ -842,9 +1419,18 @@
"CT": 22,
"Power": 90,
"I18n": {
- "en": "Tri-Lightning",
- "zh-CN": "三重雷击",
- "ja": "トライサンダー"
+ "en": {
+ "Name": "Tri-Lightning",
+ "Description": "Generates lightning that strikes an enemy three times from above. Inflict Electrical 103"
+ },
+ "zh-CN": {
+ "Name": "三重雷击",
+ "Description": "在敌人头上生成3次落雷。Inflict Electrical 103"
+ },
+ "ja": {
+ "Name": "トライサンダー",
+ "Description": "敵の頭上から、3度の落雷を発生させる。Inflict Electrical 103"
+ }
},
"SkillFruit": true
},
@@ -854,9 +1440,18 @@
"CT": 40,
"Power": 120,
"I18n": {
- "en": "Lightning Strike",
- "zh-CN": "闪电冲击",
- "ja": "ライトニングストライク"
+ "en": {
+ "Name": "Lightning Strike",
+ "Description": "Acts as a lightning rod, calling down thunderbolts that electrocute the surrounding area. Inflict Electrical 100"
+ },
+ "zh-CN": {
+ "Name": "闪电冲击",
+ "Description": "让自己化作避雷针引来雷电,并在原地引发闪电爆炸。Inflict Electrical 100"
+ },
+ "ja": {
+ "Name": "ライトニングストライク",
+ "Description": "自らを避雷針として雷を落とし、その場に放電爆発を引き起こす。Inflict Electrical 100"
+ }
},
"SkillFruit": true
},
@@ -866,23 +1461,39 @@
"CT": 55,
"Power": 150,
"I18n": {
- "en": "Lightning Bolt",
- "zh-CN": "闪电伏特",
- "ja": "ライトニングボルト"
+ "en": {
+ "Name": "Lightning Bolt",
+ "Description": "Charges electric energy before blasting enemies with a powerful shock. Inflict Electrical 100"
+ },
+ "zh-CN": {
+ "Name": "闪电伏特",
+ "Description": "积蓄雷电之力 瞄准敌人释放强劲电击。Inflict Electrical 100"
+ },
+ "ja": {
+ "Name": "ライトニングボルト",
+ "Description": "雷の力をチャージして 敵めがけて強力な電撃を放出する。Inflict Electrical 100"
+ }
},
"SkillFruit": true
},
-
-
"EPalWazaID::Unique_GrassPanda_Electric_ElectricPunch": {
"InternalName": "EPalWazaID::Unique_GrassPanda_Electric_ElectricPunch",
"Element": "Electric",
"CT": 14,
"Power": 85,
"I18n": {
- "en": "Blast Punch",
- "zh-CN": "爆裂拳击 [雷胖达]",
- "ja": "ブラストパンチ [ライゾー]"
+ "en": {
+ "Name": "Blast Punch [Mossanda Lux]",
+ "Description": "Mossanda Lux's exclusive skill. Winds up its fist before pummeling an enemy with a flurry of electrically charged punches. Inflict Electrical 100"
+ },
+ "zh-CN": {
+ "Name": "爆裂拳击 [雷胖达]",
+ "Description": "雷胖达的专用技能。不停转动右臂,向前方挥出带电拳击。Inflict Electrical 100"
+ },
+ "ja": {
+ "Name": "ブラストパンチ [ライゾー]",
+ "Description": "ライゾーの専用スキル。右腕をグルグル回し、前方に電撃のパンチを繰り出す。Inflict Electrical 100"
+ }
},
"UniqueSkill": true
},
@@ -892,9 +1503,18 @@
"CT": 22,
"Power": 90,
"I18n": {
- "en": "Lightning Claw",
- "zh-CN": "霹雳连爪 [暴电熊]",
- "ja": "ライトニングクロー [エレパンダ]"
+ "en": {
+ "Name": "Lightning Claw [Grizzbolt]",
+ "Description": "Grizzbolt's special skill. After leaping at an enemy and tearing at it twice with its electrically charged claws, it attacks the ground, sending an electric shock throughout the area. Inflict Electrical 100"
+ },
+ "zh-CN": {
+ "Name": "霹雳连爪 [暴电熊]",
+ "Description": "暴电熊的专用技能。飞扑向敌人,并用带电流的爪子将其劈开。飞扑2次后,面向地面伸出爪子,大范围扩散电流。Inflict Electrical 100"
+ },
+ "ja": {
+ "Name": "ライトニングクロー [エレパンダ]",
+ "Description": "エレパンダの専用スキル。敵に向かって飛び掛かり、電気を纏った爪で切り裂く。2回飛び掛かった後、最後は地面に向かって爪をたて、広範囲に電撃を拡げる。Inflict Electrical 100"
+ }
},
"UniqueSkill": true
},
@@ -904,27 +1524,40 @@
"CT": 30,
"Power": 100,
"I18n": {
- "en": "Kerauno",
- "zh-CN": "雷神之枪 [波鲁杰克斯]",
- "ja": "ケラウノス [ボルゼクス]"
+ "en": {
+ "Name": "Kerauno [Orserk]",
+ "Description": "Orserk's exclusive skill. Summons a spear of lightning while leaping into the air before throwing it at an enemy. Inflict Electrical 100"
+ },
+ "zh-CN": {
+ "Name": "雷神之枪 [波鲁杰克斯]",
+ "Description": "波鲁杰克斯的专用技能。向上跳起后召唤雷枪,将之丢向敌人。Inflict Electrical 100"
+ },
+ "ja": {
+ "Name": "ケラウノス [ボルゼクス]",
+ "Description": "ボルゼクスの専用スキル。飛び上がって雷槍を召喚し、敵に向かって投げつける。Inflict Electrical 100"
+ }
},
"UniqueSkill": true
},
-
-
-
-
"EPalWazaID::MudShot": {
"InternalName": "EPalWazaID::MudShot",
"Element": "Ground",
"CT": 4,
"Power": 40,
"I18n": {
- "en": "Sand Blast",
- "zh-CN": "泥浆投掷",
- "ja": "マッドシュート"
- },
- "SkillFruit": true
+ "en": {
+ "Name": "Sand Blast",
+ "Description": "Hurls sticky mud at an enemy. Inflict Muddy 50"
+ },
+ "zh-CN": {
+ "Name": "泥浆投掷",
+ "Description": "用黏糊糊的泥巴 瞄准敌人并发射。Inflict Muddy 50"
+ },
+ "ja": {
+ "Name": "マッドシュート",
+ "Description": "ベタベタの泥を 敵めがけて発射する。Inflict Muddy 50"
+ }
+ }
},
"EPalWazaID::StoneShotgun": {
"InternalName": "EPalWazaID::StoneShotgun",
@@ -932,11 +1565,19 @@
"CT": 10,
"Power": 55,
"I18n": {
- "en": "Stone Blast",
- "zh-CN": "碎石霰弹",
- "ja": "ストーンブラスト"
- },
- "SkillFruit": true
+ "en": {
+ "Name": "Stone Blast",
+ "Description": "Fires a barrage of stones forward. Inflict Muddy 100"
+ },
+ "zh-CN": {
+ "Name": "碎石霰弹",
+ "Description": "向前方射出大量的小石头碎屑。Inflict Muddy 100"
+ },
+ "ja": {
+ "Name": "ストーンブラスト",
+ "Description": "無数の小さな石のつぶてを 前方に発射する。Inflict Muddy 100"
+ }
+ }
},
"EPalWazaID::ThrowRock": {
"InternalName": "EPalWazaID::ThrowRock",
@@ -944,23 +1585,39 @@
"CT": 15,
"Power": 70,
"I18n": {
- "en": "Stone Cannon",
- "zh-CN": "投石",
- "ja": "ストーンキャノン"
- },
- "SkillFruit": true
- },
+ "en": {
+ "Name": "Stone Cannon",
+ "Description": "Digs up a boulder and hurls it at an enemy. Inflict Muddy 35 Inflict Stun 35"
+ },
+ "zh-CN": {
+ "Name": "投石",
+ "Description": "将岩石从眼前的地上吸附起来 瞄准敌人并发射。Inflict Muddy 35 Inflict Stun 35"
+ },
+ "ja": {
+ "Name": "ストーンキャノン",
+ "Description": "目の前の地面から岩を取り出し 敵めがけて発射する。Inflict Muddy 35 Inflict Stun 35"
+ }
+ }
+ },
"EPalWazaID::SandTornado": {
"InternalName": "EPalWazaID::SandTornado",
"Element": "Ground",
"CT": 18,
"Power": 80,
"I18n": {
- "en": "Sand Tornado",
- "zh-CN": "砂砾飓风",
- "ja": "サンドトルネード"
- },
- "SkillFruit": true
+ "en": {
+ "Name": "Sand Tornado",
+ "Description": "Generates two sand tornadoes on either side before launching them at an enemy. Inflict Muddy 65"
+ },
+ "zh-CN": {
+ "Name": "砂砾飓风",
+ "Description": "在左右两侧生成砂砾龙卷风,并扇向敌人。Inflict Muddy 65"
+ },
+ "ja": {
+ "Name": "サンドトルネード",
+ "Description": "左右に砂の竜巻を発生させ 敵にけしかける。Inflict Muddy 65"
+ }
+ }
},
"EPalWazaID::RockLance": {
"InternalName": "EPalWazaID::RockLance",
@@ -968,25 +1625,38 @@
"CT": 55,
"Power": 150,
"I18n": {
- "en": "Rock Lance",
- "zh-CN": "岩石锐矛",
- "ja": "ロックランス"
- },
- "SkillFruit": true
+ "en": {
+ "Name": "Rock Lance",
+ "Description": "Generates a sharp rock spear under an enemy. Inflict Muddy 100"
+ },
+ "zh-CN": {
+ "Name": "岩石锐矛",
+ "Description": "在敌人的脚边 生成尖锐的岩石长矛。Inflict Muddy 100"
+ },
+ "ja": {
+ "Name": "ロックランス",
+ "Description": "敵の足元から 鋭い岩の槍を出現させる。Inflict Muddy 100"
+ }
+ }
},
-
-
-
-
"EPalWazaID::Unique_DrillGame_ShellAttack": {
"InternalName": "EPalWazaID::Unique_DrillGame_ShellAttack",
"Element": "Ground",
"CT": 9,
"Power": 65,
"I18n": {
- "en": "Shell Spin",
- "zh-CN": "甲壳回旋 [碎岩龟]",
- "ja": "シェルスピン [ドリタス]"
+ "en": {
+ "Name": "Shell Spin [Digtoise]",
+ "Description": "Digtoise's exclusive skill. Moves while spinning its whole body at high speeds. Drills through enemies, dealing continuous damage."
+ },
+ "zh-CN": {
+ "Name": "甲壳回旋 [碎岩龟]",
+ "Description": "碎岩龟的专用技能。以全身高速旋转的方式移动,并以钻头刨削敌人,持续造成对方伤害。"
+ },
+ "ja": {
+ "Name": "シェルスピン [ドリタス]",
+ "Description": "ドリタスの専用スキル。全身を高速で回転させながら移動する。敵をドリルで削り、連続でダメージを与える。"
+ }
},
"UniqueSkill": true
},
@@ -996,9 +1666,18 @@
"CT": 11,
"Power": 75,
"I18n": {
- "en": "Giga Horn",
- "zh-CN": "终极角击 [铠格力斯]",
- "ja": "ギガホーン [グラクレス]"
+ "en": {
+ "Name": "Giga Horn [Warsect]",
+ "Description": "Warsect 's exclusive skill. Skewers enemies with its four sturdy horns."
+ },
+ "zh-CN": {
+ "Name": "终极角击 [铠格力斯]",
+ "Description": "铠格力斯的专用技能。以四支粗壮的角串起敌人。"
+ },
+ "ja": {
+ "Name": "ギガホーン [グラクレス]",
+ "Description": "グラクレスの専用スキル。4本の堅牢な角で敵を串刺しにする。"
+ }
},
"UniqueSkill": true
},
@@ -1008,9 +1687,18 @@
"CT": 21,
"Power": 100,
"I18n": {
- "en": "Spinning Roundhouse",
- "zh-CN": "回旋踢 [阿努比斯]",
- "ja": "スピンレッグスラッシュ [アヌビス]"
+ "en": {
+ "Name": "Spinning Roundhouse [Anubis]",
+ "Description": "Anubis's special skill. Performs a spin kick with its strong legs, cutting down enemies over a wide area."
+ },
+ "zh-CN": {
+ "Name": "回旋踢 [阿努比斯]",
+ "Description": "阿努比斯的专用技能。用强健的腿脚回旋飞踢,大范围横扫周围的敌人。"
+ },
+ "ja": {
+ "Name": "スピンレッグスラッシュ [アヌビス]",
+ "Description": "アヌビスの専用スキル。強靭な脚で回し蹴りをして、周囲を広範囲に薙ぎ払う。"
+ }
},
"UniqueSkill": true
},
@@ -1020,9 +1708,18 @@
"CT": 30,
"Power": 100,
"I18n": {
- "en": "Earth Impact",
- "zh-CN": "地震 [森/雪猛犸]",
- "ja": "アースインパクト [グランモス/ブリザモス]"
+ "en": {
+ "Name": "Earth Impact [Mammorest]",
+ "Description": "Mammorest's exclusive skill. Uses massive body to shake the earth, dealing damage over a wide area."
+ },
+ "zh-CN": {
+ "Name": "地震 [森/雪猛犸]",
+ "Description": "森猛犸的专用技能。以巨大的身躯撼动大地,对四周大范围的目标造成伤害。"
+ },
+ "ja": {
+ "Name": "アースインパクト [グランモス/ブリザモス]",
+ "Description": "グランモス種の専用スキル。その巨体で大地を揺るがし、自身を中心に広範囲へダメージを与える。"
+ }
},
"UniqueSkill": true
},
@@ -1032,9 +1729,18 @@
"CT": 28,
"Power": 120,
"I18n": {
- "en": "Forceful Charge",
- "zh-CN": "巨力冲锋 [阿努比斯]",
- "ja": "フォースドライブ [アヌビス]"
+ "en": {
+ "Name": "Forceful Charge [Anubis]",
+ "Description": "Anubis's special skill. Pursues its foe with a high speed dash while releasing energy and unleashes a powerful punch."
+ },
+ "zh-CN": {
+ "Name": "巨力冲锋 [阿努比斯]",
+ "Description": "阿努比斯的专用技能。快速移动追击敌人,释放能量同时不断挥出强劲利拳。"
+ },
+ "ja": {
+ "Name": "フォースドライブ [アヌビス]",
+ "Description": "アヌビスの専用スキル。敵を追いかけるように高速で移動し、エネルギーを放出しながら強力なパンチを繰り出す。"
+ }
},
"UniqueSkill": true
},
@@ -1044,25 +1750,39 @@
"CT": 35,
"Power": 140,
"I18n": {
- "en": "Ground Smash",
- "zh-CN": "粉碎大地 [阿努比斯]",
- "ja": "グラウンドスマッシャー [アヌビス]"
+ "en": {
+ "Name": "Ground Smash [Anubis]",
+ "Description": "Anubis's special skill. Leaps high into the air before diving to the ground with a punch. The force of the impact deals damage over a wide area. Inflict Muddy 100"
+ },
+ "zh-CN": {
+ "Name": "粉碎大地 [阿努比斯]",
+ "Description": "阿努比斯的专属技能。高高跃起后,对地面使出猛力一击。产生的衝击波将对大范围的目标造成伤害。Inflict Muddy 100"
+ },
+ "ja": {
+ "Name": "グラウンドスマッシャー [アヌビス]",
+ "Description": "アヌビスの専用スキル。空高く跳び上がり、地面に向かってパンチする。地面に衝撃が広がり、広範囲にダメージを与える。Inflict Muddy 100"
+ }
},
"UniqueSkill": true
},
-
-
-
-
"EPalWazaID::DragonCanon": {
"InternalName": "EPalWazaID::DragonCanon",
"Element": "Dragon",
"CT": 2,
"Power": 30,
"I18n": {
- "en": "Dragon Cannon",
- "zh-CN": "龙息弹",
- "ja": "ドラゴンキャノン"
+ "en": {
+ "Name": "Dragon Cannon",
+ "Description": "Hurls an energy ball imbued with draconic energy at an enemy. Inflict Burn 35"
+ },
+ "zh-CN": {
+ "Name": "龙息弹",
+ "Description": "用蕴藏龙之力的能量弹 瞄准敌人并发射。Inflict Burn 35"
+ },
+ "ja": {
+ "Name": "ドラゴンキャノン",
+ "Description": "竜の力がこもったエネルギー弾を 敵めがけて発射する。Inflict Burn 35"
+ }
},
"SkillFruit": true
},
@@ -1072,9 +1792,18 @@
"CT": 10,
"Power": 55,
"I18n": {
- "en": "Dragon Burst",
- "zh-CN": "龙之波动",
- "ja": "ドラゴンバースト"
+ "en": {
+ "Name": "Dragon Burst",
+ "Description": "Quickly discharges draconic energy, damaging those around it. Inflict Burn 50"
+ },
+ "zh-CN": {
+ "Name": "龙之波动",
+ "Description": "快速释放龙之力 给周围造成冲击。Inflict Burn 50"
+ },
+ "ja": {
+ "Name": "ドラゴンバースト",
+ "Description": "素早く竜の力を放出し 周囲に衝撃を与える。Inflict Burn 50"
+ }
},
"SkillFruit": true
},
@@ -1084,9 +1813,18 @@
"CT": 15,
"Power": 70,
"I18n": {
- "en": "Draconic Breath",
- "zh-CN": "龙息",
- "ja": "ドラゴンブレス"
+ "en": {
+ "Name": "Draconic Breath",
+ "Description": "Exhales breath imbued with draconic energy, dealing continuous damage to those in front of it. Inflict Burn 100"
+ },
+ "zh-CN": {
+ "Name": "龙息",
+ "Description": "向前方吹出蕴含龙之力的气息 ,持续造成伤害。Inflict Burn 100"
+ },
+ "ja": {
+ "Name": "ドラゴンブレス",
+ "Description": "竜の力がこもった息吹を 前方に吹き付け、継続的にダメージを与える。Inflict Burn 100"
+ }
},
"SkillFruit": true
},
@@ -1096,23 +1834,39 @@
"CT": 55,
"Power": 150,
"I18n": {
- "en": "Dragon Meteor",
- "zh-CN": "龙彗星",
- "ja": "ドラゴンメテオ"
+ "en": {
+ "Name": "Dragon Meteor",
+ "Description": "Calls down numerous small meteorites and launches them at an enemy. Inflict Burn 45"
+ },
+ "zh-CN": {
+ "Name": "龙彗星",
+ "Description": "召唤大量小陨石 瞄准敌人并发射。Inflict Burn 45"
+ },
+ "ja": {
+ "Name": "ドラゴンメテオ",
+ "Description": "小さな隕石をたくさん呼び出して 敵めがけて発射する。Inflict Burn 45"
+ }
},
"SkillFruit": true
},
-
-
"EPalWazaID::Unique_FairyDragon_FairyTornado": {
"InternalName": "EPalWazaID::Unique_FairyDragon_FairyTornado",
"Element": "Dragon",
"CT": 10,
"Power": 70,
"I18n": {
- "en": "Mystic Whirlwind",
- "zh-CN": "神秘旋风 [精灵/水灵龙]",
- "ja": "ミスティックハリケーン [シルフィア/シルティア]"
+ "en": {
+ "Name": "Mystic Whirlwind [Elphidran]",
+ "Description": "Elphidran's exclusive skill. Generates twin whirlwinds imbued with a mysterious power that pursues enemies."
+ },
+ "zh-CN": {
+ "Name": "神秘旋风 [精/水灵龙]",
+ "Description": "精灵龙的专用技能。发射2股蕴含不可思议能力的龙卷风,追击敌人。"
+ },
+ "ja": {
+ "Name": "ミスティックハリケーン [シルフィア/シルティア]",
+ "Description": "シルフィア種の専用スキル。不思議な力が込められた竜巻を2つ発射し、敵を追いかける。"
+ }
},
"UniqueSkill": true
},
@@ -1122,23 +1876,39 @@
"CT": 50,
"Power": 140,
"I18n": {
- "en": "Beam Comet",
- "zh-CN": "光束彗星 [空涡龙]",
- "ja": "ビームコメット [ジェッドラン]"
+ "en": {
+ "Name": "Beam Comet [Jetragon]",
+ "Description": "Jetragon's exclusive skill. Flies at enemies on illuminated wings while firing innumerable beams. The beams explode on impact. Inflict Burn 100"
+ },
+ "zh-CN": {
+ "Name": "光束彗星 [空涡龙]",
+ "Description": "空涡龙的专用技能。展开发光的翅膀,并发射大量光束朝敌人飞去。光束命中目标便会引发爆炸。Inflict Burn 100"
+ },
+ "ja": {
+ "Name": "ビームコメット [ジェッドラン]",
+ "Description": "ジェッドランの専用スキル。翼を光らせ、敵めがけて飛んでいく 無数のビームを発射する。ビームは着弾時に爆発を引き起こす。Inflict Burn 100"
+ }
},
"UniqueSkill": true
},
-
-
"EPalWazaID::PoisonFog": {
"InternalName": "EPalWazaID::PoisonFog",
"Element": "Dark",
"CT": 30,
"Power": 0,
"I18n": {
- "en": "Poison Fog",
- "zh-CN": "毒雾",
- "ja": "ポイズンフォグ"
+ "en": {
+ "Name": "Poison Fog",
+ "Description": "Generates a fog of poison in front, causing the opponent to become poisoned. Inflict Poison 9999"
+ },
+ "zh-CN": {
+ "Name": "毒雾",
+ "Description": "于前方制造毒雾,使目标陷入中毒状态。Inflict Poison 9999"
+ },
+ "ja": {
+ "Name": "ポイズンフォグ",
+ "Description": "前方に毒の霧を発生させ、相手を毒状態にする。Inflict Poison 9999"
+ }
}
},
"EPalWazaID::PoisonShot": {
@@ -1147,21 +1917,79 @@
"CT": 2,
"Power": 30,
"I18n": {
- "en": "Poison Blast",
- "zh-CN": "剧毒射击",
- "ja": "ポイズンシュート"
+ "en": {
+ "Name": "Poison Blast",
+ "Description": "Hurls poison sludge at an enemy. Inflict Poison 100"
+ },
+ "zh-CN": {
+ "Name": "剧毒射击",
+ "Description": "用蕴藏剧毒之力的淤泥 瞄准敌人并发射。Inflict Poison 100"
+ },
+ "ja": {
+ "Name": "ポイズンシュート",
+ "Description": "毒の力がこもったヘドロを 敵めがけて発射する。Inflict Poison 100"
+ }
},
"SkillFruit": true
},
+ "EPalWazaID::DarkPulse": {
+ "InternalName": "EPalWazaID::DarkPulse",
+ "Element": "Dark",
+ "CT": 2,
+ "Power": 40,
+ "I18n": {
+ "en": {
+ "Name": "Umbral Surge",
+ "Description": "Fires a high speed ball of dark energy that spreads forward in a radial shape. Inflict Darkness 20"
+ },
+ "zh-CN": {
+ "Name": "黑暗霰射",
+ "Description": "向前方发射呈放射状扩散的高速暗黑球。Inflict Darkness 20"
+ },
+ "ja": {
+ "Name": "スプレッドダーク",
+ "Description": "放射状に広がっていく高速の闇の球を 前方に発射する。Inflict Darkness 20"
+ }
+ }
+ },
"EPalWazaID::DarkBall": {
"InternalName": "EPalWazaID::DarkBall",
"Element": "Dark",
"CT": 4,
"Power": 40,
"I18n": {
- "en": "Dark Ball",
- "zh-CN": "暗黑球",
- "ja": "ダークボール"
+ "en": {
+ "Name": "Dark Ball",
+ "Description": "Unleashes a sphere of darkness that slowly tracks down an enemy. Inflict Darkness 35"
+ },
+ "zh-CN": {
+ "Name": "暗黑球",
+ "Description": "发射黑暗之球,使其以缓慢速度追赶敌人。Inflict Darkness 35"
+ },
+ "ja": {
+ "Name": "ダークボール",
+ "Description": "ゆっくりと敵を追いかける 闇の球を発射する。Inflict Darkness 35"
+ }
+ }
+ },
+ "EPalWazaID::DarkCanon": {
+ "InternalName": "EPalWazaID::DarkCanon",
+ "Element": "Dark",
+ "CT": 2,
+ "Power": 50,
+ "I18n": {
+ "en": {
+ "Name": "Dark Cannon",
+ "Description": "Hurls an energy ball imbued with dark energy at an enemy. Inflict Darkness 20"
+ },
+ "zh-CN": {
+ "Name": "黑暗弹",
+ "Description": "将带有黑暗力量的高速能量弹射向敌人 Inflict Darkness 20"
+ },
+ "ja": {
+ "Name": "ダークキャノン",
+ "Description": "闇の力がこもった高速のエネルギー弾を 敵めがけて発射する。Inflict Darkness 20"
+ }
}
},
"EPalWazaID::DarkWave": {
@@ -1170,21 +1998,59 @@
"CT": 10,
"Power": 55,
"I18n": {
- "en": "Shadow Burst",
- "zh-CN": "暗影波动",
- "ja": "シャドウバースト"
+ "en": {
+ "Name": "Shadow Burst",
+ "Description": "Quickly discharges dark energy, damaging those around it. Inflict Darkness 50"
+ },
+ "zh-CN": {
+ "Name": "暗影波动",
+ "Description": "快速释放黑暗之力 给周围造成冲击。Inflict Darkness 50"
+ },
+ "ja": {
+ "Name": "シャドウバースト",
+ "Description": "素早く闇の力を放出し 周囲に衝撃を与える。Inflict Darkness 50"
+ }
},
"SkillFruit": true
},
+ "EPalWazaID::DarkArrow": {
+ "InternalName": "EPalWazaID::DarkArrow",
+ "Element": "Dark",
+ "CT": 10,
+ "Power": 65,
+ "I18n": {
+ "en": {
+ "Name": "Dark Arrow",
+ "Description": "Fires off dark energy that homes in on an enemy. Inflict Darkness 103"
+ },
+ "zh-CN": {
+ "Name": "黑暗箭",
+ "Description": "使用暗之力连续发射数支高速箭追击敌人。Inflict Darkness 103"
+ },
+ "ja": {
+ "Name": "ダークアロー",
+ "Description": "闇の力で敵を追尾する複数の矢を 連続かつ高速で発射する。Inflict Darkness 103"
+ }
+ }
+ },
"EPalWazaID::GhostFlame": {
"InternalName": "EPalWazaID::GhostFlame",
"Element": "Dark",
"CT": 16,
"Power": 75,
"I18n": {
- "en": "Spirit Flame",
- "zh-CN": "鬼火",
- "ja": "スプリットフレイム"
+ "en": {
+ "Name": "Spirit Flame",
+ "Description": "Fires three balls of malice that relentlessly pursue an enemy. Inflict Burn 102"
+ },
+ "zh-CN": {
+ "Name": "鬼火",
+ "Description": "发射3个怨念 并执着追击敌人。Inflict Burn 102"
+ },
+ "ja": {
+ "Name": "スピリットフレイム",
+ "Description": "執念深く敵を追いかける 3つの怨念を発射する。Inflict Burn 102"
+ }
},
"SkillFruit": true
},
@@ -1194,75 +2060,100 @@
"CT": 30,
"Power": 100,
"I18n": {
- "en": "Nightmare Ball",
- "zh-CN": "恶梦球",
- "ja": "ナイトメアボール"
+ "en": {
+ "Name": "Nightmare Ball",
+ "Description": "Creates a giant ball of darkness and hurls it at an enemy. Inflict Darkness 65"
+ },
+ "zh-CN": {
+ "Name": "恶梦球",
+ "Description": "生成巨大的黑暗之球 瞄准敌人并高速发射。Inflict Darkness 65"
+ },
+ "ja": {
+ "Name": "ナイトメアボール",
+ "Description": "大きな闇の球を作り出し 敵めがけて高速で発射する。Inflict Darkness 65"
+ }
},
"SkillFruit": true
},
+ "EPalWazaID::Apocalypse": {
+ "InternalName": "EPalWazaID::Apocalypse",
+ "Element": "Dark",
+ "CT": 55,
+ "Power": 110,
+ "I18n": {
+ "en": {
+ "Name": "Apocalypse",
+ "Description": "Generates several dark vortexes in the surrounding area. Inflict Darkness 100"
+ },
+ "zh-CN": {
+ "Name": "启示录",
+ "Description": "于周围生成数个暗黑龙卷风。Inflict Darkness 100"
+ },
+ "ja": {
+ "Name": "アポカリプス",
+ "Description": "周囲にいくつもの暗黒の竜巻を発生させる。Inflict Darkness 100"
+ }
+ }
+ },
"EPalWazaID::DarkLaser": {
"InternalName": "EPalWazaID::DarkLaser",
"Element": "Dark",
"CT": 55,
"Power": 150,
"I18n": {
- "en": "Dark Laser",
- "zh-CN": "暗黑镭射",
- "ja": "ダークレーザー"
+ "en": {
+ "Name": "Dark Laser",
+ "Description": "Charges dark energy before blasting enemies with a powerful beam. Inflict Darkness 100"
+ },
+ "zh-CN": {
+ "Name": "暗黑镭射",
+ "Description": "积蓄黑暗之力 瞄准敌人发射强劲光线。Inflict Darkness 100"
+ },
+ "ja": {
+ "Name": "ダークレーザー",
+ "Description": "闇の力をチャージし 敵めがけて強力なビームを発射する。Inflict Darkness 100"
+ }
},
"SkillFruit": true
},
- "EPalWazaID::DarkPulse": {
- "InternalName": "EPalWazaID::DarkPulse",
- "Element": "Dark",
- "CT": 2,
- "Power": 40,
- "I18n": {
- "en": "Umbral Surge",
- "zh-CN": "黑暗霰射"
- }
- },
- "EPalWazaID::DarkCanon": {
- "InternalName": "EPalWazaID::DarkCanon",
- "Element": "Dark",
- "CT": 2,
- "Power": 50,
- "I18n": {
- "en": "Dark Cannon",
- "zh-CN": "黑暗弹"
- }
- },
- "EPalWazaID::DarkArrow": {
- "InternalName": "EPalWazaID::DarkArrow",
- "Element": "Dark",
- "CT": 10,
- "Power": 65,
- "I18n": {
- "en": "Dark Arrow",
- "zh-CN": "黑暗箭"
- }
- },
- "EPalWazaID::Apocalypse": {
- "InternalName": "EPalWazaID::Apocalypse",
+ "EPalWazaID::DarkLegion": {
+ "InternalName": "EPalWazaID::DarkLegion",
"Element": "Dark",
- "CT": 55,
- "Power": 110,
+ "CT": 45,
+ "Power": 160,
"I18n": {
- "en": "Apocalypse",
- "zh-CN": "启示录"
+ "en": {
+ "Name": "Dark Whisp",
+ "Description": "[Victor & Shadowbeak] Fires a menacing ball of dark energy that pursues enemies. Inflict Darkness 100"
+ },
+ "zh-CN": {
+ "Name": "黑暗之拥",
+ "Description": "[维克托 & 异构格里芬] 发射多个可以追击敌人的黑暗之球。Inflict Darkness 100"
+ },
+ "ja": {
+ "Name": "ダークウィスプ",
+ "Description": "[ヴィクター & ゼノグリフ] 敵を追いかける闇の球をいくつも発射する。Inflict Darkness 100"
+ }
}
},
-
-
"EPalWazaID::Unique_DarkCrow_TelePoke": {
"InternalName": "EPalWazaID::Unique_DarkCrow_TelePoke",
"Element": "Dark",
"CT": 7,
"Power": 55,
"I18n": {
- "en": "Phantom Peck",
- "zh-CN": "幻影突袭 [黑鸦隐士]",
- "ja": "ファントムアサルト [マスクロウ]"
+ "en": {
+ "Name": "Phantom Peck [Cawgnito]",
+ "Description": "Cawgnito's exclusive skill. Teleports next to an enemy before attacking with its beak. Inflict Darkness 50"
+ },
+ "zh-CN": {
+ "Name": "幻影突袭 [黑鸦隐士]",
+ "Description": "黑鸦隐士的专用技能。瞬间移动至敌人身旁,再以鸟喙发动攻击。Inflict Darkness 50"
+ },
+ "ja": {
+ "Name": "ファントムアサルト [マスクロウ]",
+ "Description": "マスクロウの専用スキル。敵のそばに瞬間移動した後、くちばしによる攻撃を行う。Inflict Darkness 50"
+ }
},
"UniqueSkill": true
},
@@ -1272,9 +2163,18 @@
"CT": 7,
"Power": 55,
"I18n": {
- "en": "Jumping Claw",
- "zh-CN": "飞跃爪击 [月镰魔]",
- "ja": "ジャンピングクロー [ツキカゲ]"
+ "en": {
+ "Name": "Jumping Claw [Loupmoon]",
+ "Description": "Loupmoon's exclusive skill. Leaps forward and attacks twice with vicious claws imbued with dark energy. Inflict Darkness 50"
+ },
+ "zh-CN": {
+ "Name": "飞跃爪击 [月镰魔]",
+ "Description": "月镰魔的专用技能。向前一跃,迅速斩下两击。且每次斩击都充满了暗属性的力量。Inflict Darkness 50"
+ },
+ "ja": {
+ "Name": "ジャンピングクロー [ツキカゲ]",
+ "Description": "ツキカゲの専用スキル。前方に跳び上がり、素早く2回引っかく。その斬撃には闇属性の力が込められている。Inflict Darkness 50"
+ }
},
"UniqueSkill": true
},
@@ -1284,9 +2184,18 @@
"CT": 14,
"Power": 85,
"I18n": {
- "en": "Dark Charge",
- "zh-CN": "暗影冲撞 [邪麒麟]",
- "ja": "ダークチャージ [サラブラック]"
+ "en": {
+ "Name": "Dark Charge [Pyrin Noct]",
+ "Description": "Pyrin Noct's exclusive skill. Charges forward while clad in a veil of dark flames. Flames continue to burn in its trajectory. Inflict Darkness 50"
+ },
+ "zh-CN": {
+ "Name": "暗影冲撞 [邪麒麟]",
+ "Description": "邪麒麟的专用技能。带着缠绕全身的暗黑火焰向前猛冲。途经之处均会留下滚滚火焰。Inflict Darkness 50"
+ },
+ "ja": {
+ "Name": "ダークチャージ [サラブラック]",
+ "Description": "サラブラックの専用スキル。暗黒の炎をまといながら突進する。その軌道上には火が燃え残る。Inflict Darkness 50"
+ }
},
"UniqueSkill": true
},
@@ -1296,33 +2205,81 @@
"CT": 40,
"Power": 120,
"I18n": {
- "en": "Twin Spears",
- "zh-CN": "双枪一闪 [混沌骑士]",
- "ja": "双槍一閃 [ベイントール]"
+ "en": {
+ "Name": "Twin Spears [Necromus]",
+ "Description": "Necromus' exclusive skill. Clads its twin spears with vicious whirlwinds and charges forward, thrusting them one after the other."
+ },
+ "zh-CN": {
+ "Name": "双枪一闪 [混沌骑士]",
+ "Description": "混沌骑士的专用技能。左右交替刺出双臂挟着旋风的长矛,并朝前方冲刺。"
+ },
+ "ja": {
+ "Name": "双槍一閃 [ベイントール]",
+ "Description": "ベイントールの専用スキル。旋風をまとった両腕の槍を 左右交互に突き出しながら突進する。"
+ }
},
"UniqueSkill": true
},
- "EPalWazaID::Unique_BlackGriffon_TackleLaser": {
- "InternalName": "EPalWazaID::Unique_BlackGriffon_TackleLaser",
+ "EPalWazaID::Unique_NightLady_FlameNightmare": {
+ "InternalName": "EPalWazaID::Unique_NightLady_FlameNightmare",
"Element": "Dark",
"CT": 45,
- "Power": 160,
+ "Power": 130,
"I18n": {
- "en": "Divine Disaster",
- "zh-CN": "神圣灾祸 [异构格里芬]",
- "ja": "ディザスターディバイン [ゼノグリフ]"
+ "en": {
+ "Name": "Flame Waltz [Bellanoir Libero]",
+ "Description": "Bellanoir Libero's exclusive skill. Dances gracefully while creating an extending ring of flames. Then, it fires mysterious flames that home in on enemies. Inflict Burn 100"
+ },
+ "zh-CN": {
+ "Name": "烈焰华尔兹 [贝菈露洁]",
+ "Description": "贝菈露洁的专属技能。在摇曳起舞的同时製造一圈圈火焰,使之向周围扩散,并发射妖异的火球来追赶敌人。Inflict Burn 100"
+ },
+ "ja": {
+ "Name": "フレイムワルツ [ベラルージュ]",
+ "Description": "ベラルージュの専用スキル。ゆらりと舞いながら 周囲に広がる炎の輪を発生させる。さらに敵を追尾する妖しい炎を発射する。Inflict Burn 100"
+ }
},
"UniqueSkill": true
},
- "EPalWazaID::DarkLegion": {
- "InternalName": "EPalWazaID::DarkLegion",
+ "EPalWazaID::Unique_NightLady_WarpBeam_Straight": {
+ "InternalName": "EPalWazaID::Unique_NightLady_WarpBeam_Straight",
+ "Element": "Dark",
+ "CT": 50,
+ "Power": 140,
+ "I18n": {
+ "en": {
+ "Name": "Nightmare Ray [Bellanoir]",
+ "Description": "Bellanoir's exclusive skill. Disappears suddenly, then reappears while firing a barrage of beams."
+ },
+ "zh-CN": {
+ "Name": "噩梦射线 [贝菈诺娃]",
+ "Description": "贝菈诺娃的专属技能。趁敌人不注意时隐去身影,并在再次现身的瞬间射出无数光线。"
+ },
+ "ja": {
+ "Name": "ナイトメアレイ [ベラノワール]",
+ "Description": "ベラノワールの専用スキル。不意に姿を消し、現れた瞬間に無数の光線を放つ。"
+ }
+ },
+ "UniqueSkill": true
+ },
+ "EPalWazaID::Unique_BlackGriffon_TackleLaser": {
+ "InternalName": "EPalWazaID::Unique_BlackGriffon_TackleLaser",
"Element": "Dark",
"CT": 45,
"Power": 160,
"I18n": {
- "en": "Dark Whisp [Victor & Shadowbeak]",
- "zh-CN": "黑暗之拥 [维克托 & 异构格里芬]",
- "ja": "ダークウィスプ [ヴィクター & ゼノグリフ]"
+ "en": {
+ "Name": "Divine Disaster [Shadowbeak]",
+ "Description": "Shadowbeak's exclusive skill. Charges forward while generating orbs of light that automatically capture enemies. The orbs automatically capture enemies, before releasing a barrage of lasers."
+ },
+ "zh-CN": {
+ "Name": "神圣灾祸 [异构格里芬]",
+ "Description": "异构格里芬的专用技能。在向前猛冲的同时制造出光球。光球会自动捕捉敌人,并射出大量激光。"
+ },
+ "ja": {
+ "Name": "ディザスターディバイン [ゼノグリフ]",
+ "Description": "ゼノグリフの専用スキル。突進しながら、光の球体を出現させる。光球は敵を自動で捕捉し、無数のレーザーを放つ。"
+ }
},
"UniqueSkill": true
},
@@ -1332,293 +2289,512 @@
"CT": 50,
"Power": 160,
"I18n": {
- "en": "Nightmare Bloom",
- "zh-CN": "噩梦绽放 [贝菈露洁]"
+ "en": {
+ "Name": "Nightmare Bloom [Bellanoir Libero]",
+ "Description": "Bellanoir Libero's exclusive skill. Disappears suddenly, then reappears while firing a barrage of beams. The beams spread like a beautiful flower in bloom."
+ },
+ "zh-CN": {
+ "Name": "噩梦绽放 [贝菈露洁]",
+ "Description": "贝菈露洁的专属技能。趁敌人不注意时隐去身影,并在现身的瞬间射出无数光线,且光线会犹如绽放的花朵般扩散。"
+ },
+ "ja": {
+ "Name": "ナイトメアレイブルーム [ベラルージュ]",
+ "Description": "ベラルージュの専用スキル。不意に姿を消し、現れた瞬間に無数の光線を放つ。光線は花開くかのごとく拡散する。"
+ }
},
"UniqueSkill": true
},
- "EPalWazaID::Unique_NightLady_FlameNightmare": {
- "InternalName": "EPalWazaID::Unique_NightLady_FlameNightmare",
- "Element": "Dark",
- "CT": 45,
- "Power": 130,
- "I18n": {
- "en": "Flame Waltz",
- "zh-CN": "烈焰华尔兹 [贝菈露洁]"
- },
+ "EPalWazaID::TidalWave": {
+ "InternalName": "EPalWazaID::TidalWave",
+ "Element": "Water",
+ "CT": 15,
+ "Power": 1,
+ "I18n": {
+ "en": {
+ "Name": "TidalWave",
+ "Description": "Generates small waves over a wide area that slow an enemy's movements before assailing them with a giant wave. Inflict Wetness 80"
+ },
+ "zh-CN": {
+ "Name": "TidalWave",
+ "Description": "大范围掀起小波浪 延缓敌人行动后,用大型波浪攻击敌人。Inflict Wetness 80"
+ },
+ "ja": {
+ "Name": "コールウェーブ",
+ "Description": "広範囲に小さな波を起こし 敵の動きを遅くしたあとに 大きな波で敵を攻撃する。Inflict Wetness 80"
+ }
+ },
+ "Invalid": true
+ },
+ "EPalWazaID::WaterWave": {
+ "InternalName": "EPalWazaID::WaterWave",
+ "Element": "Water",
+ "CT": 5,
+ "Power": 1,
+ "I18n": {
+ "en": {
+ "Name": "WaterWave",
+ "Description": "Creates a wall with a water vortex that slowly moves forward."
+ },
+ "zh-CN": {
+ "Name": "WaterWave",
+ "Description": "用水之龙卷风在前方生成墙壁 并使其缓慢前进。"
+ },
+ "ja": {
+ "Name": "高圧水撃",
+ "Description": "水の竜巻で前方に壁を作りだし ゆっくりと前進させる。"
+ }
+ },
+ "Invalid": true,
"UniqueSkill": true
},
- "EPalWazaID::Unique_NightLady_WarpBeam_Straight": {
- "InternalName": "EPalWazaID::Unique_NightLady_WarpBeam_Straight",
- "Element": "Dark",
- "CT": 50,
- "Power": 140,
+ "EPalWazaID::Unique_BluePlatypus_Toboggan": {
+ "InternalName": "EPalWazaID::Unique_BluePlatypus_Toboggan",
+ "Element": "Water",
+ "CT": 120,
+ "Power": 100,
"I18n": {
- "en": "Nightmare Ray",
- "zh-CN": "噩梦射线 [贝菈诺娃]"
- },
+ "en": {
+ "Name": "Surfing Slam [Fuack]",
+ "Description": "Inflict Wetness 100"
+ },
+ "zh-CN": {
+ "Name": "乘风破浪 [冲浪鸭]",
+ "Description": "Inflict Wetness 100"
+ },
+ "ja": {
+ "Name": "サーフィンタックル [カモノスケ]",
+ "Description": "Inflict Wetness 100"
+ }
+ },
+ "Invalid": true,
"UniqueSkill": true
},
-
-
-
-
-
- "EPalWazaID::WorkAttack": {
- "InternalName": "EPalWazaID::WorkAttack",
+ "EPalWazaID::Intimidate": {
+ "InternalName": "EPalWazaID::Intimidate",
"Element": "Neutral",
- "CT": -1,
- "Power": -1,
- "I18n": {
- "en": "EPalWazaID::WorkAttack",
- "zh-CN": "EPalWazaID::WorkAttack",
- "ja": "EPalWazaID::WorkAttack"
- }
+ "CT": 1,
+ "Power": 1,
+ "I18n": {
+ "en": {
+ "Name": "Intimidate",
+ "Description": "en Text Inflict Stun 100"
+ },
+ "zh-CN": {
+ "Name": "恐吓",
+ "Description": "zh-Hans Text Inflict Stun 100"
+ },
+ "ja": {
+ "Name": "威嚇",
+ "Description": "威圧的なパワーで 周囲の敵に衝撃を与える。Inflict Stun 100"
+ }
+ },
+ "Invalid": true
},
- "EPalWazaID::SnowStorm": {
- "InternalName": "EPalWazaID::SnowStorm",
- "Element": "Ice",
- "CT": -1,
- "Power": -1,
- "I18n": {
- "en": "EPalWazaID::SnowStorm",
- "zh-CN": "EPalWazaID::SnowStorm",
- "ja": "EPalWazaID::SnowStorm"
- }
+ "EPalWazaID::Human_Punch": {
+ "InternalName": "EPalWazaID::Human_Punch",
+ "Element": "Neutral",
+ "CT": 1,
+ "Power": 12,
+ "I18n": {
+ "en": {
+ "Name": "Punch",
+ "Description": "Punch with conviction; believe in the power of the fist."
+ },
+ "zh-CN": {
+ "Name": "击打",
+ "Description": "相信自己的拳头,出拳攻击。"
+ },
+ "ja": {
+ "Name": "パンチ",
+ "Description": "己の拳を信じて、パンチする。"
+ }
+ },
+ "Invalid": true
},
- "EPalWazaID::Funnel_RaijinDaughter": {
- "InternalName": "EPalWazaID::Funnel_RaijinDaughter",
- "Element": "Electric",
- "CT": -1,
- "Power": -1,
+ "EPalWazaID::Throw": {
+ "InternalName": "EPalWazaID::Throw",
+ "Element": "Neutral",
+ "CT": 1,
+ "Power": 60,
"I18n": {
- "en": "EPalWazaID::Funnel_RaijinDaughter",
- "zh-CN": "EPalWazaID::Funnel_RaijinDaughter",
- "ja": "EPalWazaID::Funnel_RaijinDaughter"
- }
+ "en": {
+ "Name": "Throw",
+ "Description": "en Text"
+ },
+ "zh-CN": {
+ "Name": "Throw",
+ "Description": "zh-Hans Text"
+ },
+ "ja": {
+ "Name": "投げ",
+ "Description": "己の型を信じて、投げる。"
+ }
+ },
+ "Invalid": true
},
"EPalWazaID::Scratch": {
"InternalName": "EPalWazaID::Scratch",
"Element": "Neutral",
- "CT": -1,
- "Power": -1,
- "I18n": {
- "en": "EPalWazaID::Scratch",
- "zh-CN": "EPalWazaID::Scratch",
- "ja": "EPalWazaID::Scratch"
- }
- },
- "EPalWazaID::Funnel_DreamDemon": {
- "InternalName": "EPalWazaID::Funnel_DreamDemon",
- "Element": "Dark",
- "CT": -1,
- "Power": -1,
+ "CT": 2,
+ "Power": 100,
"I18n": {
- "en": "EPalWazaID::Funnel_DreamDemon",
- "zh-CN": "EPalWazaID::Funnel_DreamDemon",
- "ja": "EPalWazaID::Funnel_DreamDemon"
- }
+ "en": {
+ "Name": "Scratch",
+ "Description": "en Text Inflict Stun 100"
+ },
+ "zh-CN": {
+ "Name": "Scratch",
+ "Description": "zh-Hans Text Inflict Stun 100"
+ },
+ "ja": {
+ "Name": "引っ掻き",
+ "Description": "己の爪を信じて、ひっかく。Inflict Stun 100"
+ }
+ },
+ "Invalid": true
},
- "EPalWazaID::CrossThunder": {
- "InternalName": "EPalWazaID::CrossThunder",
- "Element": "Electric",
- "CT": -1,
- "Power": -1,
+ "EPalWazaID::WorkAttack": {
+ "InternalName": "EPalWazaID::WorkAttack",
+ "Element": "Neutral",
+ "CT": 1,
+ "Power": 100,
"I18n": {
- "en": "EPalWazaID::CrossThunder",
- "zh-CN": "EPalWazaID::CrossThunder",
- "ja": "EPalWazaID::CrossThunder"
- }
+ "en": {
+ "Name": "WorkAttack",
+ "Description": ""
+ },
+ "zh-CN": {
+ "Name": "WorkAttack",
+ "Description": ""
+ },
+ "ja": {
+ "Name": "WorkAttack",
+ "Description": ""
+ }
+ },
+ "Invalid": true,
+ "UniqueSkill": true
},
"EPalWazaID::EnergyShot": {
"InternalName": "EPalWazaID::EnergyShot",
- "Element": "Electric",
- "CT": -1,
- "Power": -1,
- "I18n": {
- "en": "EPalWazaID::EnergyShot",
- "zh-CN": "EPalWazaID::EnergyShot",
- "ja": "EPalWazaID::EnergyShot"
- }
+ "Element": "Ice",
+ "CT": 5,
+ "Power": 1,
+ "I18n": {
+ "en": {
+ "Name": "Ice Missile",
+ "Description": "en Text"
+ },
+ "zh-CN": {
+ "Name": "冰导弹",
+ "Description": "zh-Hans Text"
+ },
+ "ja": {
+ "Name": "アイスミサイル",
+ "Description": "エネルギーをチャージし、球体にして発射する。"
+ }
+ },
+ "Invalid": true
},
- "EPalWazaID::Unique_BluePlatypus_Toboggan": {
- "InternalName": "EPalWazaID::Unique_BluePlatypus_Toboggan",
- "Element": "Water",
- "CT": -1,
- "Power": -1,
+ "EPalWazaID::DiamondFall": {
+ "InternalName": "EPalWazaID::DiamondFall",
+ "Element": "Ice",
+ "CT": 30,
+ "Power": 140,
"I18n": {
- "en": "EPalWazaID::Unique_BluePlatypus_Toboggan",
- "zh-CN": "EPalWazaID::Unique_BluePlatypus_Toboggan",
- "ja": "EPalWazaID::Unique_BluePlatypus_Toboggan"
- }
+ "en": {
+ "Name": "Diamond Rain",
+ "Description": "Creates numerous lumps of ice that are consecutively dropped on a foe's head. Inflict Freeze 100"
+ },
+ "zh-CN": {
+ "Name": "晶钻之雨",
+ "Description": "在敌人头顶生成数个冰块 随后逐一坠落 Inflict Freeze 100"
+ },
+ "ja": {
+ "Name": "ダイアモンドフォール",
+ "Description": "敵の頭上に氷の塊を生成し 次々と降らせる。Inflict Freeze 100"
+ }
+ },
+ "Invalid": true
},
- "EPalWazaID::Psychokinesis": {
- "InternalName": "EPalWazaID::Psychokinesis",
- "Element": "Dark",
- "CT": -1,
- "Power": -1,
- "I18n": {
- "en": "EPalWazaID::Psychokinesis",
- "zh-CN": "EPalWazaID::Psychokinesis",
- "ja": "EPalWazaID::Psychokinesis"
- }
+ "EPalWazaID::SnowStorm": {
+ "InternalName": "EPalWazaID::SnowStorm",
+ "Element": "Ice",
+ "CT": 5,
+ "Power": 1,
+ "I18n": {
+ "en": {
+ "Name": "SnowStorm",
+ "Description": "The user gathers frozen winds, damaging enemies around it before blasting them with a blizzard. Inflict Freeze 20"
+ },
+ "zh-CN": {
+ "Name": "SnowStorm",
+ "Description": "将冰冻之力聚集四周 攻击附近的敌人后 瞄准敌人释放暴风雪。Inflict Freeze 20"
+ },
+ "ja": {
+ "Name": "ホワイトアウト",
+ "Description": "凍える力を周囲に集めて 近くの者を攻撃したあとで 敵めがけて吹雪を放出する。Inflict Freeze 20"
+ }
+ },
+ "Invalid": true,
+ "UniqueSkill": true
},
- "EPalWazaID::Human_Punch": {
- "InternalName": "EPalWazaID::Human_Punch",
- "Element": "Neutral",
- "CT": -1,
- "Power": -1,
+ "EPalWazaID::Unique_WeaselDragon_FlyingTackle": {
+ "InternalName": "EPalWazaID::Unique_WeaselDragon_FlyingTackle",
+ "Element": "Ice",
+ "CT": 4,
+ "Power": 60,
"I18n": {
- "en": "EPalWazaID::Human_Punch",
- "zh-CN": "EPalWazaID::Human_Punch",
- "ja": "EPalWazaID::Human_Punch"
- }
+ "en": {
+ "Name": "Rocket Slam [Chillet]",
+ "Description": "en Text"
+ },
+ "zh-CN": {
+ "Name": "火箭冲撞 [疾旋鼬]",
+ "Description": "▼独特的技能▼ - 请设置技能解释 -"
+ },
+ "ja": {
+ "Name": "ロケットタックル [オコチョ]",
+ "Description": "▼ユニークスキル▼ --スキル説明の設定をお願いします--"
+ }
+ },
+ "Invalid": true,
+ "UniqueSkill": true
},
- "EPalWazaID::Throw": {
- "InternalName": "EPalWazaID::Throw",
- "Element": "Neutral",
- "CT": -1,
- "Power": -1,
- "I18n": {
- "en": "EPalWazaID::Throw",
- "zh-CN": "EPalWazaID::Throw",
- "ja": "EPalWazaID::Throw"
- }
+ "EPalWazaID::CrossThunder": {
+ "InternalName": "EPalWazaID::CrossThunder",
+ "Element": "Electric",
+ "CT": 7,
+ "Power": 1,
+ "I18n": {
+ "en": {
+ "Name": "Cross Lightning",
+ "Description": "Generates two lightning bolts that advance left and right, blocking either direction."
+ },
+ "zh-CN": {
+ "Name": "十字雷击",
+ "Description": "堵住敌人的左右两侧 生成可向两个方向前进的雷击。"
+ },
+ "ja": {
+ "Name": "クロスサンダー",
+ "Description": "敵の左右をふさぐように 2方向に進む雷撃を発生させる。"
+ }
+ },
+ "Invalid": true
},
"EPalWazaID::ThunderRain": {
"InternalName": "EPalWazaID::ThunderRain",
"Element": "Electric",
- "CT": -1,
- "Power": -1,
+ "CT": 20,
+ "Power": 1,
+ "I18n": {
+ "en": {
+ "Name": "Lightning Rain",
+ "Description": "Calls lightning that strikes an enemy after a set amount of time has passed. Inflict Electrical 80"
+ },
+ "zh-CN": {
+ "Name": "雷雨",
+ "Description": "召唤雷电 在一定时间后生成大量落电。Inflict Electrical 80"
+ },
+ "ja": {
+ "Name": "サンダーレイン",
+ "Description": "雷を呼んで 一定時間後にたくさんの落雷を起こす。Inflict Electrical 80"
+ }
+ },
+ "Invalid": true
+ },
+ "EPalWazaID::Funnel_RaijinDaughter": {
+ "InternalName": "EPalWazaID::Funnel_RaijinDaughter",
+ "Element": "Electric",
+ "CT": 8,
+ "Power": 30,
"I18n": {
- "en": "EPalWazaID::ThunderRain",
- "zh-CN": "EPalWazaID::ThunderRain",
- "ja": "EPalWazaID::ThunderRain"
- }
+ "en": {
+ "Name": "Funnel_RaijinDaughter",
+ "Description": "Inflict Electrical 10"
+ },
+ "zh-CN": {
+ "Name": "Funnel_RaijinDaughter",
+ "Description": "Inflict Electrical 10"
+ },
+ "ja": {
+ "Name": "Funnel_RaijinDaughter",
+ "Description": "Inflict Electrical 10"
+ }
+ },
+ "Invalid": true,
+ "UniqueSkill": true
},
"EPalWazaID::Unique_Kirin_LightningTackle": {
"InternalName": "EPalWazaID::Unique_Kirin_LightningTackle",
"Element": "Electric",
- "CT": -1,
- "Power": -1,
- "I18n": {
- "en": "EPalWazaID::Unique_Kirin_LightningTackle",
- "zh-CN": "EPalWazaID::Unique_Kirin_LightningTackle",
- "ja": "EPalWazaID::Unique_Kirin_LightningTackle"
- }
- },
- "EPalWazaID::WaterWave": {
- "InternalName": "EPalWazaID::WaterWave",
- "Element": "Water",
- "CT": -1,
- "Power": -1,
- "I18n": {
- "en": "EPalWazaID::WaterWave",
- "zh-CN": "EPalWazaID::WaterWave",
- "ja": "EPalWazaID::WaterWave"
- }
- },
- "EPalWazaID::TidalWave": {
- "InternalName": "EPalWazaID::TidalWave",
- "Element": "Water",
- "CT": -1,
- "Power": -1,
- "I18n": {
- "en": "EPalWazaID::TidalWave",
- "zh-CN": "EPalWazaID::TidalWave",
- "ja": "EPalWazaID::TidalWave"
- }
- },
- "EPalWazaID::Unique_WeaselDragon_FlyingTackle": {
- "InternalName": "EPalWazaID::Unique_WeaselDragon_FlyingTackle",
- "Element": "Neutral",
- "CT": -1,
- "Power": -1,
+ "CT": 30,
+ "Power": 100,
"I18n": {
- "en": "EPalWazaID::Unique_WeaselDragon_FlyingTackle",
- "zh-CN": "EPalWazaID::Unique_WeaselDragon_FlyingTackle",
- "ja": "EPalWazaID::Unique_WeaselDragon_FlyingTackle"
- }
+ "en": {
+ "Name": "Lightning Tackle [Univolt]",
+ "Description": "Univolt's exclusive skill. Generates bolts of lightning all around while charging at its target."
+ },
+ "zh-CN": {
+ "Name": "疾风迅雷 [雷角马]",
+ "Description": "雷角马的专用技能。在自己的周围制造出落雷后,猛力冲向敌人。"
+ },
+ "ja": {
+ "Name": "疾風迅雷 [ライコーン]",
+ "Description": "ライコーンの専用スキル。自身の周囲に落雷を発生させながら、敵にむかって突進する。"
+ }
+ },
+ "Invalid": true,
+ "UniqueSkill": true
},
- "EPalWazaID::Intimidate": {
- "InternalName": "EPalWazaID::Intimidate",
- "Element": "Neutral",
- "CT": -1,
- "Power": -1,
+ "EPalWazaID::Tremor": {
+ "InternalName": "EPalWazaID::Tremor",
+ "Element": "Ground",
+ "CT": 4,
+ "Power": 60,
"I18n": {
- "en": "EPalWazaID::Intimidate",
- "zh-CN": "EPalWazaID::Intimidate",
- "ja": "EPalWazaID::Intimidate"
- }
+ "en": {
+ "Name": "Rockburst",
+ "Description": "Causes the ground to shake before hurling a massive stone mass at its surroundings. Inflict Muddy 100"
+ },
+ "zh-CN": {
+ "Name": "岩爆",
+ "Description": "撼动地面,使大块岩石射向四面八方 Inflict Muddy 100"
+ },
+ "ja": {
+ "Name": "ロックバースト",
+ "Description": "地面を揺らし 大きな岩の塊を周囲に飛ばす Inflict Muddy 100"
+ }
+ },
+ "Invalid": true
},
-
-
-
-
"EPalWazaID::BeamSlicer": {
"InternalName": "EPalWazaID::BeamSlicer",
"Element": "Dragon",
- "CT": -1,
- "Power": -1,
+ "CT": 4,
+ "Power": 60,
"I18n": {
- "en": "EPalWazaID::BeamSlicer",
- "zh-CN": "EPalWazaID::BeamSlicer",
- "ja": "EPalWazaID::BeamSlicer"
- }
+ "en": {
+ "Name": "BeamSlicer",
+ "Description": "en Text Inflict Burn 100"
+ },
+ "zh-CN": {
+ "Name": "BeamSlicer",
+ "Description": "zh-Hans Text Inflict Burn 100"
+ },
+ "ja": {
+ "Name": "ビームスライサー",
+ "Description": "竜の力がこもった光線で前方をなぎ払う。なぎ払われた場所は時間差で爆発する。Inflict Burn 100"
+ }
+ },
+ "Invalid": true
},
"EPalWazaID::Commet": {
"InternalName": "EPalWazaID::Commet",
"Element": "Dragon",
- "CT": -1,
- "Power": -1,
+ "CT": 4,
+ "Power": 60,
"I18n": {
- "en": "EPalWazaID::Commet",
- "zh-CN": "EPalWazaID::Commet",
- "ja": "EPalWazaID::Commet"
- }
+ "en": {
+ "Name": "Commet",
+ "Description": "en Text Inflict Burn 100"
+ },
+ "zh-CN": {
+ "Name": "Commet",
+ "Description": "zh-Hans Text Inflict Burn 100"
+ },
+ "ja": {
+ "Name": "コメット",
+ "Description": "隕石を垂直に落とし 周囲に衝撃波を発生させる Inflict Burn 100"
+ }
+ },
+ "Invalid": true
},
"EPalWazaID::DarkTornado": {
"InternalName": "EPalWazaID::DarkTornado",
"Element": "Dark",
- "CT": -1,
- "Power": -1,
+ "CT": 18,
+ "Power": 80,
"I18n": {
- "en": "EPalWazaID::DarkTornado",
- "zh-CN": "EPalWazaID::DarkTornado",
- "ja": "EPalWazaID::DarkTornado"
- }
+ "en": {
+ "Name": "DarkTornado",
+ "Description": "Inflict Darkness 65"
+ },
+ "zh-CN": {
+ "Name": "DarkTornado",
+ "Description": "Inflict Darkness 65"
+ },
+ "ja": {
+ "Name": "DarkTornado",
+ "Description": "Inflict Darkness 65"
+ }
+ },
+ "Invalid": true
},
- "EPalWazaID::DiamondFall": {
- "InternalName": "EPalWazaID::DiamondFall",
- "Element": "Ice",
- "CT": -1,
- "Power": -1,
+ "EPalWazaID::Psychokinesis": {
+ "InternalName": "EPalWazaID::Psychokinesis",
+ "Element": "Dark",
+ "CT": 35,
+ "Power": 110,
"I18n": {
- "en": "EPalWazaID::DiamondFall",
- "zh-CN": "EPalWazaID::DiamondFall",
- "ja": "EPalWazaID::DiamondFall"
- }
+ "en": {
+ "Name": "Psycho Gravity",
+ "Description": "Utilizes psychokinesis to grab enemies before flinging them to the ground from above."
+ },
+ "zh-CN": {
+ "Name": "念动引力",
+ "Description": "用念力剥夺周围敌人的行动自由 并将其从高处锤入地面。"
+ },
+ "ja": {
+ "Name": "サイコグラビティ",
+ "Description": "サイコキネシスで周囲の敵の自由を奪い 高い所から地面に叩きつける。"
+ }
+ },
+ "Invalid": true,
+ "SkillFruit": true
},
- "EPalWazaID::Tremor": {
- "InternalName": "EPalWazaID::Tremor",
- "Element": "Ground",
- "CT": -1,
- "Power": -1,
- "I18n": {
- "en": "EPalWazaID::Tremor",
- "zh-CN": "EPalWazaID::Tremor",
- "ja": "EPalWazaID::Tremor"
- }
+ "EPalWazaID::Funnel_DreamDemon": {
+ "InternalName": "EPalWazaID::Funnel_DreamDemon",
+ "Element": "Dark",
+ "CT": 5,
+ "Power": 20,
+ "I18n": {
+ "en": {
+ "Name": "Funnel_DreamDemon",
+ "Description": "Inflict Darkness 5"
+ },
+ "zh-CN": {
+ "Name": "Funnel_DreamDemon",
+ "Description": "Inflict Darkness 5"
+ },
+ "ja": {
+ "Name": "Funnel_DreamDemon",
+ "Description": "Inflict Darkness 5"
+ }
+ },
+ "Invalid": true,
+ "UniqueSkill": true
},
"EPalWazaID::Unique_DarkScorpion_Pierce": {
"InternalName": "EPalWazaID::Unique_DarkScorpion_Pierce",
"Element": "Dark",
- "CT": -1,
- "Power": -1,
+ "CT": 21,
+ "Power": 100,
"I18n": {
- "en": "EPalWazaID::Unique_DarkScorpion_Pierce",
- "zh-CN": "EPalWazaID::Unique_DarkScorpion_Pierce",
- "ja": "EPalWazaID::Unique_DarkScorpion_Pierce"
- }
+ "en": {
+ "Name": "Jumping Stinger [Menasting]",
+ "Description": "en Text"
+ },
+ "zh-CN": {
+ "Name": "跳跃重刺 [冥铠蝎]",
+ "Description": "▼独特的技能▼ - 请设置技能解释 -"
+ },
+ "ja": {
+ "Name": "ジャンピングスティンガー [デスティング]",
+ "Description": "▼ユニークスキル▼ --スキル説明の設定をお願いします--"
+ }
+ },
+ "Invalid": true,
+ "UniqueSkill": true
}
}
\ No newline at end of file
diff --git a/src/palworld_pal_editor/assets/data/pal_data.json b/src/palworld_pal_editor/assets/data/pal_data.json
index 499985b..3fc7211 100644
--- a/src/palworld_pal_editor/assets/data/pal_data.json
+++ b/src/palworld_pal_editor/assets/data/pal_data.json
@@ -4047,7 +4047,8 @@
},
"I18n": {
"en": "Bellanoir",
- "zh-CN": "贝菈诺娃"
+ "zh-CN": "贝菈诺娃",
+ "ja": "ベラノワール"
},
"SortingKey": {
"paldeck": "112"
@@ -4074,7 +4075,8 @@
},
"I18n": {
"en": "Bellanoir Libero",
- "zh-CN": "贝菈露洁"
+ "zh-CN": "贝菈露洁",
+ "ja": "ベラルージュ"
},
"SortingKey": {
"paldeck": "112B"
diff --git a/src/palworld_pal_editor/cli.py b/src/palworld_pal_editor/cli.py
index cef2f0d..2c6f141 100644
--- a/src/palworld_pal_editor/cli.py
+++ b/src/palworld_pal_editor/cli.py
@@ -108,7 +108,7 @@ def list_attacks():
if DataProvider.has_skill_fruit(item["InternalName"])
else ""
),
- DataProvider.get_attack_i18n(item["InternalName"]),
+ DataProvider.get_attack_i18n(item["InternalName"])[0],
item["InternalName"]))
def list_passives():
diff --git a/src/palworld_pal_editor/core/pal_entity.py b/src/palworld_pal_editor/core/pal_entity.py
index 5c46989..7867f5d 100644
--- a/src/palworld_pal_editor/core/pal_entity.py
+++ b/src/palworld_pal_editor/core/pal_entity.py
@@ -595,7 +595,7 @@ def add_EquipWaza(self, waza: str) -> bool:
if waza not in (self.MasteredWaza or []):
self.add_MasteredWaza(waza)
- LOGGER.info(f"Added {DataProvider.get_attack_i18n(waza)} to EquipWaza")
+ LOGGER.info(f"Added {DataProvider.get_attack_i18n(waza)[0]} to EquipWaza")
return True
@LOGGER.change_logger('EquipWaza')
@@ -604,7 +604,7 @@ def pop_EquipWaza(self, idx: int = None, item: str = None) -> Optional[str]:
if item is not None:
idx = self.EquipWaza.index(item)
waza = self.EquipWaza.pop(int(idx))
- LOGGER.info(f"Removed {DataProvider.get_attack_i18n(waza)} from EquipWaza")
+ LOGGER.info(f"Removed {DataProvider.get_attack_i18n(waza)[0]} from EquipWaza")
return waza
except Exception as e:
LOGGER.warning(f"{e}")
@@ -645,7 +645,7 @@ def add_MasteredWaza(self, waza: str) -> bool:
self.MasteredWaza.append(waza)
# PalObjects.add_ArrayProperty(self._pal_param["MasteredWaza"], waza)
- LOGGER.info(f"Added {DataProvider.get_attack_i18n(waza)} to MasteredWaza")
+ LOGGER.info(f"Added {DataProvider.get_attack_i18n(waza)[0]} to MasteredWaza")
# if self.num_EmptyEquipWaza > 0:
# self.add_EquipWaza(waza)
@@ -660,7 +660,7 @@ def pop_MasteredWaza(self, idx: int = None, item: str = None) -> Optional[str]:
if waza in (self.EquipWaza or []):
self.pop_EquipWaza(item=waza)
# return PalObjects.pop_ArrayProperty(self._pal_param["MasteredWaza"], idx)
- LOGGER.info(f"Removed {DataProvider.get_attack_i18n(waza)} from MasteredWaza")
+ LOGGER.info(f"Removed {DataProvider.get_attack_i18n(waza)[0]} from MasteredWaza")
return waza
except Exception as e:
LOGGER.warning(f"{e}")
diff --git a/src/palworld_pal_editor/utils/data_provider.py b/src/palworld_pal_editor/utils/data_provider.py
index 2b40707..c6b7d81 100644
--- a/src/palworld_pal_editor/utils/data_provider.py
+++ b/src/palworld_pal_editor/utils/data_provider.py
@@ -148,9 +148,10 @@ def get_level_xp(lv: int) -> Optional[int]:
@none_guard(data_source=PAL_ATTACKS, subkey="I18n")
@staticmethod
- def get_attack_i18n(key: str) -> Optional[str]:
+ def get_attack_i18n(key: str) -> Optional[tuple[str, str]]:
i18n_list: dict = PAL_ATTACKS[key]["I18n"]
- return i18n_list.get(Config.i18n, i18n_list.get("en"))
+ i18n: dict = i18n_list.get(Config.i18n, i18n_list.get("en"))
+ return (i18n.get("Name", key), i18n.get("Description", ""))
@staticmethod
def has_attack(key: str) -> bool:
@@ -165,31 +166,28 @@ def has_skill_fruit(attack: str) -> bool:
return False
@staticmethod
- def is_invalid_attacks(key: str) -> bool:
+ def is_invalid_attack(key: str) -> bool:
if key not in PAL_ATTACKS:
return True
- power = PAL_ATTACKS[key].get("Power")
- if power is None or power == -1:
- return True
- return False
+ return PAL_ATTACKS[key].get("Invalid", False)
@staticmethod
def is_unique_attacks(key: str) -> bool:
if key not in PAL_ATTACKS:
return False
- if PAL_ATTACKS[key].get("UniqueSkill"):
- return True
- return False
+ return PAL_ATTACKS[key].get("UniqueSkill", False)
@staticmethod
def get_sorted_attacks() -> list[dict]:
sorted_list = sorted(
PAL_ATTACKS.values(),
key=lambda item: (
- DataProvider.is_invalid_attacks(item["InternalName"]),
+ DataProvider.is_invalid_attack(item["InternalName"]),
item["Element"],
- DataProvider.has_skill_fruit(item["InternalName"]),
+ DataProvider.is_unique_attacks(item["InternalName"]),
+ # DataProvider.has_skill_fruit(item["InternalName"]),
item["Power"],
+ item["CT"]
),
)
return sorted_list
@@ -199,7 +197,7 @@ def get_sorted_attacks() -> list[dict]:
def get_passive_i18n(key: str) -> Optional[tuple[str, str]]:
i18n_list: dict = PAL_PASSIVES[key]["I18n"]
i18n: dict = i18n_list.get(Config.i18n, i18n_list.get("en"))
- return (i18n.get("Name"), i18n.get("Description"))
+ return (i18n.get("Name", key), i18n.get("Description", ""))
@staticmethod
def has_passive_skill(key: str) -> bool: