From a89eb80309419a55bc27a17be239f1bbce96a7cc Mon Sep 17 00:00:00 2001 From: Andrea Venuta Date: Fri, 8 Mar 2024 11:54:47 +0100 Subject: [PATCH] Use common codegen code from `practice-tool-core` (#50) --- Cargo.lock | 37 +- Cargo.toml | 7 +- jdsd_dsiii_practice_tool.toml | 34 +- lib/libds3/src/codegen/base_addresses.rs | 342 +- lib/libds3/src/params/param_names.json | 20961 ++++++++++++++++++++- lib/param-tinkerer/Cargo.toml | 1 - practice-tool/Cargo.toml | 1 - practice-tool/src/practice_tool.rs | 31 +- practice-tool/src/widgets/item_spawn.rs | 9 +- practice-tool/src/widgets/position.rs | 4 +- xtask/Cargo.toml | 14 +- xtask/src/codegen/aob_scans.rs | 506 +- xtask/src/codegen/codegen.py | 1 - xtask/src/codegen/mod.rs | 126 +- xtask/src/codegen/params.rs | 40 + xtask/src/dist.rs | 107 - xtask/src/main.rs | 144 +- 17 files changed, 21456 insertions(+), 909 deletions(-) create mode 100644 xtask/src/codegen/params.rs delete mode 100644 xtask/src/dist.rs diff --git a/Cargo.lock b/Cargo.lock index 155b3a0..1dbc3da 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -28,6 +28,12 @@ dependencies = [ "memchr", ] +[[package]] +name = "anyhow" +version = "1.0.80" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5ad32ce52e4161730f7098c077cd2ed6229b5804ccf99e5366be1ab72a98b4e1" + [[package]] name = "autocfg" version = "1.1.0" @@ -217,7 +223,6 @@ dependencies = [ "hex", "hudhook", "imgui", - "imgui-sys", "libds3", "log-panics", "once_cell", @@ -383,9 +388,7 @@ dependencies = [ [[package]] name = "hudhook" -version = "0.6.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "473dbc1031145217e2355c998bce728128d1937024cc053beb79750dfc0a6d21" +version = "0.6.2" dependencies = [ "cc", "gl_generator", @@ -651,7 +654,6 @@ version = "1.6.0" dependencies = [ "hudhook", "imgui", - "imgui-sys", "libds3", "windows 0.42.0", ] @@ -809,7 +811,6 @@ checksum = "439ee305def115ba05938db6eb1644ff94165c5ab5e9420d1c1bcedbba909391" [[package]] name = "practice-tool-core" version = "0.1.0" -source = "git+https://github.com/veeenu/practice-tool-core#1800c5c0c3c91733fdcde0892bf37c2f0b70f0ee" dependencies = [ "crossbeam-channel", "imgui", @@ -818,6 +819,25 @@ dependencies = [ "serde", ] +[[package]] +name = "practice-tool-tasks" +version = "0.1.0" +dependencies = [ + "anyhow", + "dotenv", + "heck", + "once_cell", + "parking_lot 0.12.1", + "pelite", + "rayon", + "regex", + "serde", + "serde_json", + "textwrap", + "widestring", + "zip", +] + [[package]] name = "proc-macro-hack" version = "0.5.20+deprecated" @@ -1722,15 +1742,14 @@ checksum = "0fcb9cbac069e033553e8bb871be2fbdffcab578eb25bd0f7c508cedc6dcd75a" name = "xtask" version = "1.6.0" dependencies = [ + "anyhow", "dotenv", "heck", - "once_cell", "pelite", - "rayon", + "practice-tool-tasks", "regex", "serde_json", "textwrap", - "widestring", "zip", ] diff --git a/Cargo.toml b/Cargo.toml index 4f1942f..4f19e51 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,11 +27,10 @@ opt-level = 3 [workspace.dependencies] hudhook = "0.6.1" imgui = "0.11.0" -imgui-sys = "0.11.0" once_cell = "1.19.0" parking_lot = "0.12.1" practice-tool-core = { git = "https://github.com/veeenu/practice-tool-core", version = "0.1.0" } -# practice-tool-core = { path = "../../practice-tool-core/" } +practice-tool-tasks = { git = "https://github.com/veeenu/practice-tool-core", version = "0.1.0" } [workspace.dependencies.windows] version = "0.54.0" @@ -48,3 +47,7 @@ features = [ # [patch.'crates-io'] # hudhook = { path = "../hudhook" } +# +# [patch.'https://github.com/veeenu/practice-tool-core'] +# practice-tool-core = { path = "../practice-tool-core" } +# practice-tool-tasks = { path = "../practice-tool-core/tasks" } diff --git a/jdsd_dsiii_practice_tool.toml b/jdsd_dsiii_practice_tool.toml index 8c52bb2..170b598 100644 --- a/jdsd_dsiii_practice_tool.toml +++ b/jdsd_dsiii_practice_tool.toml @@ -1,6 +1,6 @@ commands = [ - { savefile_manager = "o" }, - { item_spawner = "u" }, + { savefile_manager = "ctrl+o" }, + { item_spawner = true }, { character_stats = true }, { cycle_speed = [1, 3], hotkey = "8" }, { souls = 10000, hotkey = "9" }, @@ -13,18 +13,18 @@ commands = [ { position = "k", save = "rshift+k" }, ]}, { group = "Render flags", commands = [ - { flag = "rend_chr", hotkey = "F4" }, - { flag = "rend_obj", hotkey = "F5" }, - { flag = "rend_map", hotkey = "F6" }, - { flag = "rend_mesh_hi", hotkey = "F7" }, - { flag = "rend_mesh_lo", hotkey = "F8" }, + { flag = "rend_chr", hotkey = "f4" }, + { flag = "rend_obj", hotkey = "f5" }, + { flag = "rend_map", hotkey = "f6" }, + { flag = "rend_mesh_hi", hotkey = "f7" }, + { flag = "rend_mesh_lo", hotkey = "f8" }, # { flag = "all_draw_hit" }, # conflicts with debug_draw - { flag = "ik_foot_ray", hotkey = "F9" }, - { flag = "debug_sphere_1", hotkey = "F9" }, - { flag = "debug_sphere_2", hotkey = "F9" }, - { flag = "hurtbox", hotkey = "F9" }, - { flag = "debug_draw", hotkey = "F9" }, - { flag = "evt_draw", hotkey = "F10" }, + { flag = "ik_foot_ray", hotkey = "f9" }, + { flag = "debug_sphere_1", hotkey = "f9" }, + { flag = "debug_sphere_2", hotkey = "f9" }, + { flag = "hurtbox", hotkey = "f9" }, + { flag = "debug_draw", hotkey = "f9" }, + { flag = "evt_draw", hotkey = "f10" }, ]}, { flag = "all_no_damage", hotkey = "1" }, { flag = "inf_stamina", hotkey = "2" }, @@ -33,10 +33,10 @@ commands = [ { flag = "deathcam", hotkey = "5" }, { flag = "no_death", hotkey = "6" }, { flag = "one_shot", hotkey = "7" }, - { target = "n" }, - { flag = "ai_disable", hotkey = "F1" }, - { flag = "gravity", hotkey = "F2" }, - { flag = "evt_disable", hotkey = "F3" }, + { target = "ctrl+n" }, + { flag = "ai_disable", hotkey = "f1" }, + { flag = "gravity", hotkey = "f2" }, + { flag = "evt_disable", hotkey = "f3" }, { quitout = "p" } ] diff --git a/lib/libds3/src/codegen/base_addresses.rs b/lib/libds3/src/codegen/base_addresses.rs index e7b9e48..4b2d591 100644 --- a/lib/libds3/src/codegen/base_addresses.rs +++ b/lib/libds3/src/codegen/base_addresses.rs @@ -154,400 +154,400 @@ impl From for BaseAddresses { } pub const BASE_ADDRESSES_1_03_1: BaseAddresses = BaseAddresses { + world_chr_man: 0x46c3aa8, + world_chr_man_dbg: 0x46c3bc8, + menu_man: 0x46a6f60, base_a: 0x469adf8, base_d: 0x469e6d8, - base_hbd: 0x46c17b0, + sprj_debug_event: 0x4695a68, debug: 0x46c3b98, grend: 0x44b9000, + base_hbd: 0x46c17b0, map_item_man: 0x469a988, - menu_man: 0x46a6f60, - param: 0x46e0760, spawn_item_func_ptr: 0x7ab590, - sprj_debug_event: 0x4695a68, - world_chr_man: 0x46c3aa8, - world_chr_man_dbg: 0x46c3bc8, - current_target: 0x847cfa, + param: 0x46e0760, format_string: 0x2905920, - menu_attune: 0xbb3af9, - menu_travel: 0xbb44d0, no_logo: 0xbbafdf, + current_target: 0x847cfa, + menu_travel: 0xbb44d0, + menu_attune: 0xbb3af9, xa: 0x1f70, }; pub const BASE_ADDRESSES_1_03_2: BaseAddresses = BaseAddresses { + world_chr_man: 0x46c4aa8, + world_chr_man_dbg: 0x46c4bc8, + menu_man: 0x46a7f60, base_a: 0x469bdf8, base_d: 0x469f6d8, - base_hbd: 0x46c27b0, + sprj_debug_event: 0x4696a68, debug: 0x46c4b98, grend: 0x44ba000, + base_hbd: 0x46c27b0, map_item_man: 0x469b988, - menu_man: 0x46a7f60, - param: 0x46e1760, spawn_item_func_ptr: 0x7ab590, - sprj_debug_event: 0x4696a68, - world_chr_man: 0x46c4aa8, - world_chr_man_dbg: 0x46c4bc8, - current_target: 0x847cfa, + param: 0x46e1760, format_string: 0x2905ac0, - menu_attune: 0xbb3af9, - menu_travel: 0xbb44d0, no_logo: 0xbbafdf, + current_target: 0x847cfa, + menu_travel: 0xbb44d0, + menu_attune: 0xbb3af9, xa: 0x1f70, }; pub const BASE_ADDRESSES_1_04_1: BaseAddresses = BaseAddresses { + world_chr_man: 0x46c5dc8, + world_chr_man_dbg: 0x46c5ee8, + menu_man: 0x46a9280, base_a: 0x469d118, base_d: 0x46a09f8, - base_hbd: 0x46c3ad0, + sprj_debug_event: 0x4697d88, debug: 0x46c5eb8, grend: 0x44bb000, + base_hbd: 0x46c3ad0, map_item_man: 0x469cca8, - menu_man: 0x46a9280, - param: 0x46e2a80, spawn_item_func_ptr: 0x7abc00, - sprj_debug_event: 0x4697d88, - world_chr_man: 0x46c5dc8, - world_chr_man_dbg: 0x46c5ee8, - current_target: 0x847a4a, + param: 0x46e2a80, format_string: 0x2906ae0, - menu_attune: 0xbb3be9, - menu_travel: 0xbb45c0, no_logo: 0xbbb0cf, + current_target: 0x847a4a, + menu_travel: 0xbb45c0, + menu_attune: 0xbb3be9, xa: 0x1f70, }; pub const BASE_ADDRESSES_1_04_2: BaseAddresses = BaseAddresses { + world_chr_man: 0x46c5dc8, + world_chr_man_dbg: 0x46c5ee8, + menu_man: 0x46a9280, base_a: 0x469d118, base_d: 0x46a09f8, - base_hbd: 0x46c3ad0, + sprj_debug_event: 0x4697d88, debug: 0x46c5eb8, grend: 0x44bb000, + base_hbd: 0x46c3ad0, map_item_man: 0x469cca8, - menu_man: 0x46a9280, - param: 0x46e2a80, spawn_item_func_ptr: 0x7abc00, - sprj_debug_event: 0x4697d88, - world_chr_man: 0x46c5dc8, - world_chr_man_dbg: 0x46c5ee8, - current_target: 0x847a4a, + param: 0x46e2a80, format_string: 0x2906cf0, - menu_attune: 0xbb3be9, - menu_travel: 0xbb45c0, no_logo: 0xbbb0cf, + current_target: 0x847a4a, + menu_travel: 0xbb45c0, + menu_attune: 0xbb3be9, xa: 0x1f70, }; pub const BASE_ADDRESSES_1_04_3: BaseAddresses = BaseAddresses { + world_chr_man: 0x46c5dc8, + world_chr_man_dbg: 0x46c5ee8, + menu_man: 0x46a9280, base_a: 0x469d118, base_d: 0x46a09f8, - base_hbd: 0x46c3ad0, + sprj_debug_event: 0x4697d88, debug: 0x46c5eb8, grend: 0x44bb000, + base_hbd: 0x46c3ad0, map_item_man: 0x469cca8, - menu_man: 0x46a9280, - param: 0x46e2a80, spawn_item_func_ptr: 0x7abc00, - sprj_debug_event: 0x4697d88, - world_chr_man: 0x46c5dc8, - world_chr_man_dbg: 0x46c5ee8, - current_target: 0x847a4a, + param: 0x46e2a80, format_string: 0x2906cf0, - menu_attune: 0xbb3be9, - menu_travel: 0xbb45c0, no_logo: 0xbbb0cf, + current_target: 0x847a4a, + menu_travel: 0xbb45c0, + menu_attune: 0xbb3be9, xa: 0x1f70, }; pub const BASE_ADDRESSES_1_05_0: BaseAddresses = BaseAddresses { + world_chr_man: 0x46c9ec8, + world_chr_man_dbg: 0x46c9fe8, + menu_man: 0x46ad380, base_a: 0x46a1218, base_d: 0x46a4af8, - base_hbd: 0x46c7bd0, + sprj_debug_event: 0x469be88, debug: 0x46c9fb8, grend: 0x44bf010, + base_hbd: 0x46c7bd0, map_item_man: 0x46a0da8, - menu_man: 0x46ad380, - param: 0x46e6b90, spawn_item_func_ptr: 0x7ac1e0, - sprj_debug_event: 0x469be88, - world_chr_man: 0x46c9ec8, - world_chr_man_dbg: 0x46c9fe8, - current_target: 0x84809a, + param: 0x46e6b90, format_string: 0x290a020, - menu_attune: 0xbb4a49, - menu_travel: 0xbb5420, no_logo: 0xbbbf2f, + current_target: 0x84809a, + menu_travel: 0xbb5420, + menu_attune: 0xbb4a49, xa: 0x1f80, }; pub const BASE_ADDRESSES_1_05_1: BaseAddresses = BaseAddresses { + world_chr_man: 0x46c8ec8, + world_chr_man_dbg: 0x46c8fe8, + menu_man: 0x46ac380, base_a: 0x46a0218, base_d: 0x46a3af8, - base_hbd: 0x46c6bd0, + sprj_debug_event: 0x469ae88, debug: 0x46c8fb8, grend: 0x44be010, + base_hbd: 0x46c6bd0, map_item_man: 0x469fda8, - menu_man: 0x46ac380, - param: 0x46e5b90, spawn_item_func_ptr: 0x7ac010, - sprj_debug_event: 0x469ae88, - world_chr_man: 0x46c8ec8, - world_chr_man_dbg: 0x46c8fe8, - current_target: 0x847eca, + param: 0x46e5b90, format_string: 0x2909240, - menu_attune: 0xbb4879, - menu_travel: 0xbb5250, no_logo: 0xbbbd5f, + current_target: 0x847eca, + menu_travel: 0xbb5250, + menu_attune: 0xbb4879, xa: 0x1f80, }; pub const BASE_ADDRESSES_1_06_0: BaseAddresses = BaseAddresses { + world_chr_man: 0x46c9f28, + world_chr_man_dbg: 0x46ca048, + menu_man: 0x46ad3e0, base_a: 0x46a1278, base_d: 0x46a4b58, - base_hbd: 0x46c7c30, + sprj_debug_event: 0x469bee8, debug: 0x46ca018, grend: 0x44bf010, + base_hbd: 0x46c7c30, map_item_man: 0x46a0e08, - menu_man: 0x46ad3e0, - param: 0x46e6bf0, spawn_item_func_ptr: 0x7ac5e0, - sprj_debug_event: 0x469bee8, - world_chr_man: 0x46c9f28, - world_chr_man_dbg: 0x46ca048, - current_target: 0x84849a, + param: 0x46e6bf0, format_string: 0x290a040, - menu_attune: 0xbb4e49, - menu_travel: 0xbb5820, no_logo: 0xbbc32f, + current_target: 0x84849a, + menu_travel: 0xbb5820, + menu_attune: 0xbb4e49, xa: 0x1f80, }; pub const BASE_ADDRESSES_1_07_0: BaseAddresses = BaseAddresses { + world_chr_man: 0x46ce768, + world_chr_man_dbg: 0x46ce888, + menu_man: 0x46b1c18, base_a: 0x46a5ab8, base_d: 0x46a9398, - base_hbd: 0x46cc470, + sprj_debug_event: 0x46a0728, debug: 0x46ce858, grend: 0x44c2ec8, + base_hbd: 0x46cc470, map_item_man: 0x46a5648, - menu_man: 0x46b1c18, - param: 0x46eb458, spawn_item_func_ptr: 0x7ad4f0, - sprj_debug_event: 0x46a0728, - world_chr_man: 0x46ce768, - world_chr_man_dbg: 0x46ce888, - current_target: 0x8493aa, + param: 0x46eb458, format_string: 0x290d7a0, - menu_attune: 0xbb7579, - menu_travel: 0xbb7f50, no_logo: 0xbbea5f, + current_target: 0x8493aa, + menu_travel: 0xbb7f50, + menu_attune: 0xbb7579, xa: 0x1f80, }; pub const BASE_ADDRESSES_1_08_0: BaseAddresses = BaseAddresses { + world_chr_man: 0x472cf58, + world_chr_man_dbg: 0x472d078, + menu_man: 0x47103d8, base_a: 0x4704268, base_d: 0x4707b58, - base_hbd: 0x472ac60, + sprj_debug_event: 0x46fee88, debug: 0x472d049, grend: 0x451b608, + base_hbd: 0x472ac60, map_item_man: 0x4703df8, - menu_man: 0x47103d8, - param: 0x4749dd0, spawn_item_func_ptr: 0x7b6230, - sprj_debug_event: 0x46fee88, - world_chr_man: 0x472cf58, - world_chr_man_dbg: 0x472d078, - current_target: 0x852b7a, + param: 0x4749dd0, format_string: 0x2952940, - menu_attune: 0xbcebf9, - menu_travel: 0xbcf6d0, no_logo: 0xbd6acf, + current_target: 0x852b7a, + menu_travel: 0xbcf6d0, + menu_attune: 0xbcebf9, xa: 0x1f80, }; pub const BASE_ADDRESSES_1_09_0: BaseAddresses = BaseAddresses { + world_chr_man: 0x472d098, + world_chr_man_dbg: 0x472d1b8, + menu_man: 0x4710518, base_a: 0x47043a8, base_d: 0x4707c98, - base_hbd: 0x472ada0, + sprj_debug_event: 0x46fefc8, debug: 0x472d189, grend: 0x451b608, + base_hbd: 0x472ada0, map_item_man: 0x4703f38, - menu_man: 0x4710518, - param: 0x4749f10, spawn_item_func_ptr: 0x7b6230, - sprj_debug_event: 0x46fefc8, - world_chr_man: 0x472d098, - world_chr_man_dbg: 0x472d1b8, - current_target: 0x852b7a, + param: 0x4749f10, format_string: 0x2952670, - menu_attune: 0xbcf1b9, - menu_travel: 0xbcfc90, no_logo: 0xbd708f, + current_target: 0x852b7a, + menu_travel: 0xbcfc90, + menu_attune: 0xbcf1b9, xa: 0x1f80, }; pub const BASE_ADDRESSES_1_10_0: BaseAddresses = BaseAddresses { + world_chr_man: 0x472d098, + world_chr_man_dbg: 0x472d1b8, + menu_man: 0x4710518, base_a: 0x47043a8, base_d: 0x4707c98, - base_hbd: 0x472ada0, + sprj_debug_event: 0x46fefc8, debug: 0x472d189, grend: 0x451b608, + base_hbd: 0x472ada0, map_item_man: 0x4703f38, - menu_man: 0x4710518, - param: 0x4749f10, spawn_item_func_ptr: 0x7b6230, - sprj_debug_event: 0x46fefc8, - world_chr_man: 0x472d098, - world_chr_man_dbg: 0x472d1b8, - current_target: 0x852b7a, + param: 0x4749f10, format_string: 0x2952670, - menu_attune: 0xbcf229, - menu_travel: 0xbcfd00, no_logo: 0xbd70ff, + current_target: 0x852b7a, + menu_travel: 0xbcfd00, + menu_attune: 0xbcf229, xa: 0x1f80, }; pub const BASE_ADDRESSES_1_11_0: BaseAddresses = BaseAddresses { + world_chr_man: 0x4760398, + world_chr_man_dbg: 0x47604b8, + menu_man: 0x4743808, base_a: 0x4737698, base_d: 0x473afa0, - base_hbd: 0x475e0a0, + sprj_debug_event: 0x4732298, debug: 0x4760488, grend: 0x454dce0, + base_hbd: 0x475e0a0, map_item_man: 0x4749820, - menu_man: 0x4743808, - param: 0x477d4d0, spawn_item_func_ptr: 0x7bafc0, - sprj_debug_event: 0x4732298, - world_chr_man: 0x4760398, - world_chr_man_dbg: 0x47604b8, - current_target: 0x85857a, + param: 0x477d4d0, format_string: 0x297ae40, - menu_attune: 0xbdf0b9, - menu_travel: 0xbdfb90, no_logo: 0xbe6f8f, + current_target: 0x85857a, + menu_travel: 0xbdfb90, + menu_attune: 0xbdf0b9, xa: 0x1f88, }; pub const BASE_ADDRESSES_1_12_0: BaseAddresses = BaseAddresses { + world_chr_man: 0x4763518, + world_chr_man_dbg: 0x4763638, + menu_man: 0x4746988, base_a: 0x473a818, base_d: 0x473e120, - base_hbd: 0x4761220, + sprj_debug_event: 0x4735418, debug: 0x4763608, grend: 0x4550cf0, + base_hbd: 0x4761220, map_item_man: 0x474c9a0, - menu_man: 0x4746988, - param: 0x4780660, spawn_item_func_ptr: 0x7bb750, - sprj_debug_event: 0x4735418, - world_chr_man: 0x4763518, - world_chr_man_dbg: 0x4763638, - current_target: 0x858d6a, + param: 0x4780660, format_string: 0x297d2e0, - menu_attune: 0xbdfec9, - menu_travel: 0xbe09a0, no_logo: 0xbe7d9f, + current_target: 0x858d6a, + menu_travel: 0xbe09a0, + menu_attune: 0xbdfec9, xa: 0x1f88, }; pub const BASE_ADDRESSES_1_13_0: BaseAddresses = BaseAddresses { + world_chr_man: 0x4766d18, + world_chr_man_dbg: 0x4766e38, + menu_man: 0x474a188, base_a: 0x473e018, base_d: 0x4741920, - base_hbd: 0x4764a20, + sprj_debug_event: 0x4738c18, debug: 0x4766e08, grend: 0x4553cf0, + base_hbd: 0x4764a20, map_item_man: 0x47501a0, - menu_man: 0x474a188, - param: 0x4783e80, spawn_item_func_ptr: 0x7bb940, - sprj_debug_event: 0x4738c18, - world_chr_man: 0x4766d18, - world_chr_man_dbg: 0x4766e38, - current_target: 0x85a61a, + param: 0x4783e80, format_string: 0x297f9f0, - menu_attune: 0xbe1a69, - menu_travel: 0xbe2540, no_logo: 0xbe993f, + current_target: 0x85a61a, + menu_travel: 0xbe2540, + menu_attune: 0xbe1a69, xa: 0x1f90, }; pub const BASE_ADDRESSES_1_14_0: BaseAddresses = BaseAddresses { + world_chr_man: 0x4768e78, + world_chr_man_dbg: 0x4768f98, + menu_man: 0x474c2e8, base_a: 0x4740178, base_d: 0x4743a80, - base_hbd: 0x4766b80, + sprj_debug_event: 0x473ad78, debug: 0x4768f68, grend: 0x4555cf0, + base_hbd: 0x4766b80, map_item_man: 0x4752300, - menu_man: 0x474c2e8, - param: 0x4785fe0, spawn_item_func_ptr: 0x7bba30, - sprj_debug_event: 0x473ad78, - world_chr_man: 0x4768e78, - world_chr_man_dbg: 0x4768f98, - current_target: 0x85a70a, + param: 0x4785fe0, format_string: 0x2980a00, - menu_attune: 0xbe1d39, - menu_travel: 0xbe2810, no_logo: 0xbe9c0f, + current_target: 0x85a70a, + menu_travel: 0xbe2810, + menu_attune: 0xbe1d39, xa: 0x1f90, }; pub const BASE_ADDRESSES_1_15_0: BaseAddresses = BaseAddresses { + world_chr_man: 0x4768e78, + world_chr_man_dbg: 0x4768f98, + menu_man: 0x474c2e8, base_a: 0x4740178, base_d: 0x4743a80, - base_hbd: 0x4766b80, + sprj_debug_event: 0x473ad78, debug: 0x4768f68, grend: 0x4555cf0, + base_hbd: 0x4766b80, map_item_man: 0x4752300, - menu_man: 0x474c2e8, - param: 0x4785fe0, spawn_item_func_ptr: 0x7bba70, - sprj_debug_event: 0x473ad78, - world_chr_man: 0x4768e78, - world_chr_man_dbg: 0x4768f98, - current_target: 0x85a74a, + param: 0x4785fe0, format_string: 0x2980a30, - menu_attune: 0xbe1e39, - menu_travel: 0xbe2910, no_logo: 0xbe9d0f, + current_target: 0x85a74a, + menu_travel: 0xbe2910, + menu_attune: 0xbe1e39, xa: 0x1f90, }; pub const BASE_ADDRESSES_1_15_1: BaseAddresses = BaseAddresses { + world_chr_man: 0x477fdb8, + world_chr_man_dbg: 0x477fed8, + menu_man: 0x4763258, base_a: 0x47572b8, base_d: 0x475abd0, - base_hbd: 0x477dac0, + sprj_debug_event: 0x4751eb8, debug: 0x477fea8, grend: 0x456cba8, + base_hbd: 0x477dac0, map_item_man: 0x4769240, - menu_man: 0x4763258, - param: 0x479b8c0, spawn_item_func_ptr: 0x7c3cd0, - sprj_debug_event: 0x4751eb8, - world_chr_man: 0x477fdb8, - world_chr_man_dbg: 0x477fed8, - current_target: 0x862cba, + param: 0x479b8c0, format_string: 0x2991650, - menu_attune: 0xbec3e9, - menu_travel: 0xbecec0, no_logo: 0xbf42bf, + current_target: 0x862cba, + menu_travel: 0xbecec0, + menu_attune: 0xbec3e9, xa: 0x1f90, }; pub const BASE_ADDRESSES_1_15_2: BaseAddresses = BaseAddresses { + world_chr_man: 0x477fdb8, + world_chr_man_dbg: 0x477fec8, + menu_man: 0x4763258, base_a: 0x47572b8, base_d: 0x475abd0, - base_hbd: 0x477dac0, + sprj_debug_event: 0x4751eb8, debug: 0x477fe94, grend: 0x456cba8, + base_hbd: 0x477dac0, map_item_man: 0x4769240, - menu_man: 0x4763258, - param: 0x479b8b0, spawn_item_func_ptr: 0x7c4080, - sprj_debug_event: 0x4751eb8, - world_chr_man: 0x477fdb8, - world_chr_man_dbg: 0x477fec8, - current_target: 0x86306a, + param: 0x479b8b0, format_string: 0x2991610, - menu_attune: 0xbec519, - menu_travel: 0xbecff0, no_logo: 0xbf43ef, + current_target: 0x86306a, + menu_travel: 0xbecff0, + menu_attune: 0xbec519, xa: 0x1f90, }; diff --git a/lib/libds3/src/params/param_names.json b/lib/libds3/src/params/param_names.json index 660d403..188b71b 100644 --- a/lib/libds3/src/params/param_names.json +++ b/lib/libds3/src/params/param_names.json @@ -1 +1,20960 @@ -{"ActionButtonParam":{"0":"Test 0 -- テスト0","1":"Test One -- テスト1","1000":"Regain The Lost Life -- 失ったライフを取り戻す","1010":"Take a Life -- ライフをとる","1020":"Read Tombstone -- 墓碑を読む","2000":"Read a letter (summons) -- 手紙を読む(召喚)","2001":"Read a letter (summon red sign) -- 手紙を読む(赤サイン召喚)","2010":"Check your letter (summons) -- 自分の手紙を確認する(召喚)","3000":"Read the letter (blood character) -- 手紙を読む(血文字)","3010":"Check your letters (blood letters) -- 自分の手紙を確認する(血文字)","4000":"Pick up Items -- アイテムを拾う","4100":"They take a relic -- 遺物をとる","4110":"They take a relic -- 遺物をとる","4200":"They take a memento -- 遺品をとる","4300":"They take a treasure -- 宝物をとる","4400":"Ok -- OK","5000":"Rise Up a ladder -- はしごをのぼる","5010":"Hiccup The Ladder -- はしごをおりる","6000":"Talk -- 話しかける","6001":"Skip Conversation -- 会話スキップ","6100":"Light a bonfire -- 篝火を灯す","6101":"They rest in bonfire -- 篝火で休息する","7100":"Open Doors _ General purpose -- 扉を開ける_汎用","7101":"Open Doors _ General-purpose 101 standards -- 扉を開ける_汎用 101基準","7110":"Close the door _ generic -- 扉を閉める_汎用","7200":"Open the door _ generic (disabled guest) -- 扉を開ける_汎用(ゲスト無効)","8000":"Open Treasure Chest -- 宝箱を開ける","8010":"Open Treasure Chest -- 宝箱を開ける","8100":"Lift Open the Door -- 扉を開ける_持ち上げ","8200":"Start a gimmick -- 仕掛けを起動する","8300":"Launch lever -- レバーを起動","8310":"Ojo 1 vertical lever to launch lever -- レバーを起動 王城1縦レバー","8500":"Entering the wall of Light (test) -- 光の壁に入る(テスト)","8501":"Entering the wall of Light (test 2) -- 光の壁に入る(テスト2)","8900":"Pull out a sword from the Segunda grave -- グンダの墓標から剣を抜く","8901":"Pull a sword from the Segunda Grave 2 -- グンダの墓標から剣を抜く2","8910":"Simple Bonfire message -- 簡易篝火のメッセージ","8920":"Behind the door open -- 扉を開ける_裏側","9000":"For events -- イベント用","9010":"FDP Play kneel for events _ the evil spirits -- イベント用 FDPプレイアブル版_邪霊に跪く","9011":"FDP play for events seal the evil spirits -- イベント用 FDPプレイアブル版_邪霊を封印","9100":"Warp from the event base -- イベント用 拠点からのワープ","9101":"Warp from event base to Las Boss -- イベント用 拠点からラスボスへのワープ","9200":"Examining (for basilica brought) -- 調べる(聖堂蹴落とし用)","9300":"M37_ Anole Revolving Bridge _ Lever (right) -- m37_アノール回転橋_レバー(右側)","9301":"M37_ Anole Revolving Bridge _ Lever (left) -- m37_アノール回転橋_レバー(左側)","9320":"M38 (right) -- m38 廃都 バリスタ 回転レバー(右側)","9321":"M38 (left) -- m38 廃都 バリスタ 回転レバー(左側)","9330":"M33 Poison swamp forest fire Jigitai -- m33 毒沼の森 火継ぎ台","9400":"Messenger Tombstone (not ignited) -- メッセンジャー墓石(未点火)","9401":"Messenger Tombstone (already ignited) * Text difference -- メッセンジャー墓石(点火済)※テキスト違い","9410":"Messenger Tombstone (not ignited) -- メッセンジャー墓石(未点火)","9411":"Messenger Tombstone (already ignited) * Text difference -- メッセンジャー墓石(点火済)※テキスト違い","9997":"Find out (Ojo 1 saloon) -- 調べる(王城1大広間)","9999":"Inspect (for City/bridge warp obj) -- 調べる(街/橋ワープOBJ(仮)用)","3000250":"For the treasure corpse that broke from the vase -- 壺から壊した宝死体用","3001800":"Entering the wall of light (Ojo 1 Full Armor Beast) -- 光の壁に入る(王城1 フルアーマー獣)","3001830":"Entering the wall of light (Ojo 1 dragon) -- 光の壁に入る(王城1 竜の御使い)","3001890":"Entering the wall of Light (Ojo 1 E3 version Tracker) -- 光の壁に入る(王城1 E3版追跡者)","3011800":"Entering the wall of Light (Ojo 2 Dragon's Guardian Knight) -- 光の壁に入る(王城2 竜の守護騎士)","3100000":"Should probably rely to servant -- 下男にオンブしてもらう","3101800":"Entering the wall of Light (city) -- 光の壁に入る(街)","3201800":"Entering the wall of Light (bridge _ The nest of a flying dragon) -- 光の壁に入る(橋_飛竜の巣)","3201850":"Entering the wall of Light (bridge _ on the bridge) -- 光の壁に入る(橋_橋の上)","3301800":"Entering the wall of light (Poison swamp forest) -- 光の壁に入る(毒沼の森)","3301850":"Entering the wall of light (elders of the Forest of poisonous swamp crystals) -- 光の壁に入る(毒沼の森 結晶の古老)","3411830":"Entering the wall of Light (Ojo 2) -- 光の壁に入る(王城2 闇の双皇子)","3411860":"Entering the wall of Light (Ojo 2) -- 光の壁に入る(王城2 闇の双皇子 完全体)","3501800":"Entering the wall of Light (Basilica Church _ Cardinal) -- 光の壁に入る(聖堂教会_枢機卿団)","3501850":"Entering the wall of Light (Basilica Church _ Rosalia) -- 光の壁に入る(聖堂教会_ロザリア)","3601800":"Entering the wall of the light (God's Tomb _ the Angel of the Dragon) -- 光の壁に入る(神墓_竜の御使い)","3701800":"Entering the wall of light (Anole _ Saliva) -- 光の壁に入る(アノール_サリヴァ―ン)","3701850":"Entering the wall of Light (anole _ landmark Church) -- 光の壁に入る(アノール_ランドマーク教会)","3801800":"Entering the wall of light (disused city _ Hallec) -- 光の壁に入る(廃都_ハレック)","3801830":"Entering the wall of light (waste city _ sand Worm) -- 光の壁に入る(廃都_サンドワーム)","3801860":"Entering the wall of light (disused city _ the demon of Ashes) -- 光の壁に入る(廃都_灰のデーモン)","3901800":"Entering the wall of Light (Dungeon) -- 光の壁に入る(地下牢)","4001800":"Entering the wall of Light (base) -- 光の壁に入る(拠点)","4001830":"Entering the wall of Light (base) -- 光の壁に入る(拠点)","4001860":"Entering the wall of light (stronghold _ Russ Boss) -- 光の壁に入る(拠点_ラスボス)","9990800":"Entering the wall of Light (test) -- 光の壁に入る(テスト)"},"AiSoundParam":{"0":"Default (do not edit) -- デフォルト(編集しない)","1":"Walk -- 歩き","2":"Run -- 走り","3":"Dash -- ダッシュ","4":"Rolling -- ローリング","5":"Landing -- 着地","6":"A covert walk -- 隠密歩き","7":"Covert Run -- 隠密走り","8":"Object Destruction -- オブジェクト破壊","1000":"Walk -- 歩き","1010":"Run -- 走り","1020":"Dash -- ダッシュ","1030":"Rolling -- ローリング","1040":"Minimal landing -- 着地(極小)","1050":"Small landing -- 着地(小)","1060":"Normal landing -- 着地(普通)","1070":"Large Landing -- 着地(大)","2000":"Small attack sound -- 攻撃音小","2010":"During the attack sound -- 攻撃音中","2020":"Attack music -- 攻撃音大","2030":"Attack Sound Oversized -- 攻撃音特大","2100":"Attack Sound Small -- 攻撃発生音小","2110":"In the sound of an attack -- 攻撃発生音中","2120":"Attack music -- 攻撃発生音大","2200":"Attack sound small (normal sound) -- 攻撃音小(通常音)","3000":"Object Destruction Sound Small -- オブジェクト破壊音小","3010":"Object Breaking Sound -- オブジェクト破壊音中","3020":"Object Destruction Music -- オブジェクト破壊音大","4000":"Wake Up Sound -- 起きろ音","4010":"Buddy Call Sound: Medium -- 仲間呼び音:中","4020":"Companions Call Sound: Small -- 仲間呼び音:小","5000":"Anxious Sound One -- 気になる音1","6000":"Companion: Dead Soldier lantern -- 仲間呼び:亡者兵士ランタン","9002":"Mate call Test: Blue -- 仲間呼びテスト:ブルー","9003":"Unused -- 未使用","9004":"Per bullet -- 弾丸当たり","9005":"Per wall -- 壁当たり","9006":"Soul Coins -- ソウルコイン","9007":"Hallucinations -- 幻聴","9008":"Allure -- アラーム"},"AtkParam_Npc":{"0":"[System] Dummy bullets -- 【システム】ダミー弾","1":"[System] Dummy bullets (do not hit the characters) -- 【システム】ダミー弾(キャラにヒットしない)","4":"【 system 】 Disabled attack [common] -- 【システム】無効攻撃【共通】","5":"Dummy attack to keep out bullets -- 弾を出し続ける ダミー攻撃","10":"Ten pre LV1 small damage -- テンプレ LV1 小ダメージ","11":"Ten Pre LV2 damage -- テンプレ LV2 中ダメージ","12":"Ten pre LV3 large damage -- テンプレ LV3 大ダメージ","13":"Ten pre LV4 吹tsu飛bimasu (Large) -- テンプレ LV4 吹っ飛び(大)","14":"Ten Pre LV5 Press -- テンプレ LV5 押し","15":"Ten Pre LV6 damage -- テンプレ LV6 叩きつけダメージ","16":"Ten pre LV7 吹tsu飛bimasu (small) -- テンプレ LV7 吹っ飛び(小)","17":"Ten pre LV8 minimal damage -- テンプレ LV8 極小ダメージ","18":"Ten Pre lv9 damage -- テンプレ LV9 かち上げダメージ","19":"Ten pre LV10 吹tsu飛bimasu (oversized) -- テンプレ LV10 吹っ飛び(特大)","20":"Ten Pre lv11 Breath -- テンプレ LV11 ブレス","21":"Ten pre Guard -- テンプレ ガード","22":"Guard for ten pre Paris -- テンプレ パリィ用ガード","23":"Ten Pre Paris throw -- テンプレ パリィ投げ","24":"Ten pre-throw -- テンプレ 背面投げ","25":"Ten pre Paris -- テンプレ パリィ","26":"Paritest -- パリィテスト","101":"Npc_test1 -- NPC_test1","102":"Npc_test2 -- NPC_test2","103":"Npc_test3 -- NPC_test3","104":"Npc_test4_ Guard -- NPC_test4_ガード","105":"Npc_test5_ Big Attack -- NPC_test5_大攻撃","106":"Npc_test6_ Shield attack -- NPC_test6_盾攻撃","107":"Npc_test7_ attack -- NPC_test7_突進攻撃","200":"Drop RADIUS 1m -- 落下 半径1m","201":"吹tsu飛bimasu (weak) Radius 1m -- 吹っ飛び(弱) 半径1m","202":"吹tsu飛bimasu (strong) Radius 1m -- 吹っ飛び(強) 半径1m","2000":"Tomb King Demon Space attack -- 墓王 魔空間攻撃","3000":"Common attack [feet, large damage, human type] -- 共通攻撃【足元・大ダメージ・人型】","3001":"Common attack [center, large damage, human type] -- 共通攻撃【中心・大ダメージ・人型】","3002":"Common attack [feet, small damage, human type] -- 共通攻撃【足元・小ダメージ・人型】","3003":"Common attack [Center, small damage, human type] -- 共通攻撃【中心・小ダメージ・人型】","3010":"Common attack [Center, no damage, human type] -- 共通攻撃【中心・ダメージなし・人型】","3011":"Common attack [back, no damage, human type] -- 共通攻撃【背中・ダメージなし・人型】","3012":"Common attack [belly, no damage, human type] -- 共通攻撃【お腹・ダメージなし・人型】","3013":"Common attack [step, no damage, human type] -- 共通攻撃【足元・ダメージなし・人型】","3020":"Common attack [right hand, ladder damage, human type] -- 共通攻撃【右手・梯子ダメージ・人型】","3021":"Common attack [left hand, ladder damage, human type] -- 共通攻撃【左手・梯子ダメージ・人型】","3022":"Common attack [right foot, ladder damage, human type] -- 共通攻撃【右足・梯子ダメージ・人型】","3023":"Common attack [left leg, ladder damage, human type] -- 共通攻撃【左足・梯子ダメージ・人型】","3100":"Common attack [feet, large damage, large] -- 共通攻撃【足元・大ダメージ・大型】","3101":"Common attack [center, large damage, large] -- 共通攻撃【中心・大ダメージ・大型】","3102":"Common attack [feet, small damage, large] -- 共通攻撃【足元・小ダメージ・大型】","3103":"Common attack [Center, small damage, large] -- 共通攻撃【中心・小ダメージ・大型】","3110":"Common attack [Center, no damage, large] -- 共通攻撃【中心・ダメージなし・大型】","3111":"Common attack [back, no damage, large] -- 共通攻撃【背中・ダメージなし・大型】","3112":"Common attack [belly, no damage, large] -- 共通攻撃【お腹・ダメージなし・大型】","3113":"Common attack [foot, no damage, large] -- 共通攻撃【足元・ダメージなし・大型】","3120":"Common attack [right hand, no damage, obj no big, large] -- 共通攻撃【右手・ダメージなし・OBJダメ大・大型】","3121":"Common attack [left, no damage, obj no big, large] -- 共通攻撃【左手・ダメージなし・OBJダメ大・大型】","3122":"Common attack [right leg, no damage, obj no big, large] -- 共通攻撃【右足・ダメージなし・OBJダメ大・大型】","3123":"Common attack [left foot, no damage, obj no big, large] -- 共通攻撃【左足・ダメージなし・OBJダメ大・大型】","3130":"Common attack [right, no damage, obj, no small, large] -- 共通攻撃【右手・ダメージなし・OBJダメ小・大型】","3131":"Common attack [left, no damage, obj no small, large] -- 共通攻撃【左手・ダメージなし・OBJダメ小・大型】","3132":"Common attack [right leg, no damage, obj no small, large] -- 共通攻撃【右足・ダメージなし・OBJダメ小・大型】","3133":"Common attack [left foot, no damage, obj no small, large] -- 共通攻撃【左足・ダメージなし・OBJダメ小・大型】","5100":"Ojo 1 Ball of caries -- 蝕の王城1 大玉","5110":"Ojo 1 Bonfires of caries -- 蝕の王城1 焚火","5120":"Ojo 1 Carpet burning of caries -- 蝕の王城1 絨毯燃焼","5130":"Ojo one companion tone of caries -- 蝕の王城1 仲間呼び音","5300":"Arrows, disused city -- 廃都 火矢","6000":"Return of poison blood for human type -- 毒の返り血_人型用","7000":"FDP Proto explosive Tal -- FDPプロト 爆発タル","9900":"FDP proto-Oil jar -- FDPプロト 油壷","9902":"FDP proto-oil jar (obj generation) -- FDPプロト 油壷(Obj発生)","9910":"FDP Proto Flame Bottle -- FDPプロト 火炎瓶","9920":"FDP proto-map oil x Flame -- FDPプロト マップ油×炎","9930":"FDP proto Flame Continuous damage -- FDPプロト 炎上継続ダメージ","9950":"FDP Concept combustion test -- FDPコンセプト 燃焼テスト","11900":"C1190_ dead Priest (Gray Tome + Large Shield) _ miracles and attacks -- c1190_亡者僧騎士(グレートメイス+大盾)_奇跡・攻撃","11901":"C1190_ dead Monk Knight (Gray Tome + Large shield) _ Crossbow -- c1190_亡者僧騎士(グレートメイス+大盾)_クロスボウ","31200":"Sacred Beast of c3120_ Forest: Common Attack _ underfoot -- c3120_森の霊獣:共通攻撃_足元","51100":"c5120_ Segunda _ heat-up caries breath -- c5120_グンダ_ヒートアップ蝕ブレス","51800":"Common attack [Butt dragged/c5180 cursed Colossus] -- 共通攻撃【尻引きずり・c5180呪われた巨像】","52700":"Common attack [Movement (right leg)/c5270 tracker] -- 共通攻撃【移動(右脚)・c5270追跡者】","52701":"Common attack [movement (left leg)/c5270 tracker] -- 共通攻撃【移動(左脚)・c5270追跡者】","111000":"c1110_ Dark Knight (Straight Sword) _ Slashing 1 -- c1110_ダークナイト(直剣)_斬撃1","111001":"c1110_ Dark Knight (straight Blade) _ Slashing 2 -- c1110_ダークナイト(直剣)_斬撃2","111002":"c1110_ Dark Knight (Straight Sword) _ slashing 3 -- c1110_ダークナイト(直剣)_斬撃3","111003":"c1110_ Dark Knight (Straight Sword) _ Finish technique -- c1110_ダークナイト(直剣)_フィニッシュ技","111004":"c1110_ Dark Knight (Straight sword) _ strong slashing, single-shot -- c1110_ダークナイト(直剣)_強斬撃・単発","111005":"c1110_ Dark Knight (Straight sword) _ Strong slashing Combo -- c1110_ダークナイト(直剣)_強斬撃・コンボ","111006":"c1110_ Dark Knight (Straight Sword) _ Shield Bash -- c1110_ダークナイト(直剣)_シールドバッシュ","111007":"c1110_ Dark Knight (Straight sword) _ Distance packed attack (long) -- c1110_ダークナイト(直剣)_距離詰め攻撃(長)","111008":"c1110_ Dark Knight (Straight Sword) _ distance-packed attack (short) -- c1110_ダークナイト(直剣)_距離詰め攻撃(短)","111009":"c1110_ Dark Knight (Straight sword) _ strong slashing and whack second stage -- c1110_ダークナイト(直剣)_強斬撃・薙ぎ2段目","111010":"c1110_ Dark Knight (Straight Sword) _ Weak slashing 1 -- c1110_ダークナイト(直剣)_弱斬撃1","111011":"c1110_ Dark Knight (Straight Sword) _ Weak slashing 2 -- c1110_ダークナイト(直剣)_弱斬撃2","111012":"c1110_ Dark Knight (Straight Sword) _ Weak slashing 3 -- c1110_ダークナイト(直剣)_弱斬撃3","111013":"c1110_ Dark Knight (Straight Sword) _ Whack attack behind -- c1110_ダークナイト(直剣)_背後への薙ぎ攻撃","1070010":"c1070_ new Skeleton: Song Sword _ slashing One -- c1070_新スケルトン:曲剣_斬撃1","1070020":"c1070_ new Skeleton: Song Sword _ slashing 2 -- c1070_新スケルトン:曲剣_斬撃2","1070030":"c1070_ new Skeleton: Song Sword _ slashing 3 -- c1070_新スケルトン:曲剣_斬撃3","1070040":"c1070_ new Skeleton: Song Sword _ strong Slash -- c1070_新スケルトン:曲剣_強斬り","1070050":"c1070_ new Skeleton: Song Sword _ Spinning attack -- c1070_新スケルトン:曲剣_回転攻撃","1070060":"c1070_ new Skeleton: Song Sword _ Back step slash -- c1070_新スケルトン:曲剣_バックステップ斬り","1070070":"c1070_ new Skeleton: Song Sword _ the first stage -- c1070_新スケルトン:曲剣_助走斬り(一段目)","1070080":"c1070_ new Skeleton: Song Sword _ the Two -- c1070_新スケルトン:曲剣_助走斬り(二段目)","1070090":"c1070_ New skeleton: Throw -- c1070_新スケルトン:投げる","1070100":"c1070_ new Skeleton: Song Sword _ Song Sword 3 Step slashing (1 ~ two) -- c1070_新スケルトン:曲剣_曲剣 3段斬撃(一~二段目)","1070110":"c1070_ new Skeleton: Song Sword _ Song Sword 3 Step Slashing (SANDANME) -- c1070_新スケルトン:曲剣_曲剣 3段斬撃(三段目)","1070120":"c1070_ New skeleton: A masterpiece Sword _ slashing One -- c1070_新スケルトン:大曲剣_斬撃1","1070130":"c1070_ new Skeleton: Masterpiece Sword _ slashing 2 -- c1070_新スケルトン:大曲剣_斬撃2","1070140":"c1070_ New skeleton: A masterpiece Sword _ slashing Three -- c1070_新スケルトン:大曲剣_斬撃3","1070150":"c1070_ new skeleton: a sword -- c1070_新スケルトン:大曲剣_強斬り","1070160":"c1070_ New skeleton: A masterpiece Sword _ Nagi ① -- c1070_新スケルトン:大曲剣_なぎ払い①","1070170":"c1070_ New skeleton: A masterpiece Sword _ Nagi ② -- c1070_新スケルトン:大曲剣_なぎ払い②","1070180":"c1070_ New skeleton: A masterpiece Sword _ a dive attack -- c1070_新スケルトン:大曲剣_飛び込み攻撃","1070190":"c1070_ New skeleton: A masterpiece Sword _ a dive attack (long distance) -- c1070_新スケルトン:大曲剣_飛び込み攻撃(長距離)","1070200":"c1070_ new skeleton: A sword in the first stage -- c1070_新スケルトン:大曲剣_助走斬り(一段目)","1070210":"c1070_ new skeleton: A sword in the two -- c1070_新スケルトン:大曲剣_助走斬り(二段目)","1070220":"c1070_ new skeleton: Boat Sword -- c1070_新スケルトン:大曲剣_いなし斬り","1070230":"c1070_ new Skeleton: Masterpiece Sword _ Bow Fire -- c1070_新スケルトン:大曲剣_弓射撃","1070240":"c1070_ new skeleton: A sword with an arrow -- c1070_新スケルトン:大曲剣_矢で刺す","1070500":"c1070_ new skeleton: to guard -- c1070_新スケルトン:ガードする","1070510":"c1070_ New skeleton: Paridamage -- c1070_新スケルトン:パリィダメージ","1070520":"c1070_ New skeleton: Paris -- c1070_新スケルトン:パリィする","1090010":"c1090: Dead Soldier: Segunda _ crushing Combo in arms 1-1 -- c1090:亡者兵士:グンダ状態_腕で叩き潰す コンボ1-1","1090020":"c1090: Dead Soldier: Segunda State _ bite with consecutive 1_ head combo 2-1 -- c1090:亡者兵士:グンダ状態_連続で噛み付く1_頭 コンボ2-1","1090030":"c1090: Dead Soldier: Segunda State _ Saigi with left hand -- c1090:亡者兵士:グンダ状態_左手で薙ぎ払い","1090040":"c1090: Dead Soldier: Segunda State _ Saigi: Arms _ Arms Combo 1-2 -- c1090:亡者兵士:グンダ状態_薙ぎ払い:腕_腕 コンボ1-2","1090041":"c1090: Dead Soldier: Segunda State _ Saigi: Arms _ head Combo 1-2 -- c1090:亡者兵士:グンダ状態_薙ぎ払い:腕_頭 コンボ1-2","1090050":"c1090: Dead Soldier: Segunda State _ Face Attack _ Head combo 1-3 -- c1090:亡者兵士:グンダ状態_顔攻撃_頭 コンボ1-3","1090060":"c1090: Dead Soldier: Segunda State _ Bite 2_ Head Combo in succession 2-2 -- c1090:亡者兵士:グンダ状態_連続で噛み付く2_頭 コンボ2-2","1090070":"c1090: Dead Soldier: Segunda _ rushes _ head -- c1090:亡者兵士:グンダ状態_突進_頭","1090071":"c1090: Dead Soldier: Segunda _ lunge _ Arms -- c1090:亡者兵士:グンダ状態_突進_腕","1090080":"c1090: Dead Soldier: Segunda State _ behind attack -- c1090:亡者兵士:グンダ状態_背後攻撃","1090100":"c1090: Dead Soldier: Segunda State _ Segunda comes out _ head -- c1090:亡者兵士:グンダ状態_グンダが出てくる_頭","1090101":"c1090: Dead Soldier: Segunda State _ Segunda comes out _ arms -- c1090:亡者兵士:グンダ状態_グンダが出てくる_腕","1090102":"c1090: Dead Soldier: Segunda State _ Segunda comes out _ tails -- c1090:亡者兵士:グンダ状態_グンダが出てくる_尻尾","1100100":"C1100_ dead Soldiers _ Straight Swords _ right-hand swing -- c1100_亡者兵士_直剣_右手振り下ろし","1100101":"C1100_ dead Soldiers _ Straight Swords _ right-hand crosscut -- c1100_亡者兵士_直剣_右手切り返し","1100102":"C1100_ dead Soldiers _ Straight Swords _ right-hand thrusts (swords) -- c1100_亡者兵士_直剣_右手突き(剣)","1100110":"C1100_ dead Soldiers _ Straight Swords _ dash thrusts -- c1100_亡者兵士_直剣_ダッシュ突き","1100120":"C1100_ dead Soldiers _ straight swords _ shields pushed -- c1100_亡者兵士_直剣_盾プッシュ","1100130":"C1100_ dead Soldier _ Straight Sword _ two-handed slash -- c1100_亡者兵士_直剣_両手斬り","1100140":"C1100_ dead Soldiers _ straight Swords _ poked -- c1100_亡者兵士_直剣_突き","1100150":"C1100_ dead Soldiers _ Straight Swords _ Reversed this morning -- c1100_亡者兵士_直剣_逆けさ連続斬り","1100151":"C1100_ dead Soldiers _ Straight Swords _ reverse this morning's second row -- c1100_亡者兵士_直剣_逆けさ連続斬り 2段目","1100200":"C1100_ Dead Soldier _ spear _ poked combo first Hammer -- c1100_亡者兵士_槍_突きコンボ初撃","1100201":"C1100_ Dead Soldier _ spear _ thrusting combo second firing -- c1100_亡者兵士_槍_突きコンボ2撃目","1100210":"C1100_ Dead Soldiers _ spears _ infuser Thrusts -- c1100_亡者兵士_槍_溜め突き","1100220":"C1100_ Dead Soldiers _ spears _ Nagi -- c1100_亡者兵士_槍_なぎ払い","1100230":"C1100_ Dead Soldiers _ spears _ dash Thrusts -- c1100_亡者兵士_槍_ダッシュ突き","1100240":"C1100_ Dead Soldiers _ spear _ shields Push -- c1100_亡者兵士_槍_盾プッシュ","1100241":"C1100_ Dead Soldiers _ spear _ Shield Push _ Accelerated part -- c1100_亡者兵士_槍_盾プッシュ_加速部分","1100250":"C1100_ Dead Soldiers _ spears _ Lash One -- c1100_亡者兵士_槍_ラッシュ1","1100251":"C1100_ Dead Soldiers _ spears _ Rush 2 -- c1100_亡者兵士_槍_ラッシュ2","1100252":"C1100_ Dead Soldiers _ spears _ Rush 3 -- c1100_亡者兵士_槍_ラッシュ3","1100300":"C1100_ dead Soldier _ Broken Straight Sword _ right hand swing down -- c1100_亡者兵士_折れた直剣_右手振り下ろし","1100310":"C1100_ dead soldiers _ Broken Straight swords _ left Kesa -- c1100_亡者兵士_折れた直剣_左袈裟","1100320":"C1100_ dead soldiers _ Broken Straight swords _ handle Beats -- c1100_亡者兵士_折れた直剣_柄殴り","1100330":"C1100_ dead soldiers _ Broken Straight Swords _ rush first Stage -- c1100_亡者兵士_折れた直剣_ラッシュ1段目","1100331":"C1100_ dead soldiers _ Broken Straight Swords _ rush second Stage -- c1100_亡者兵士_折れた直剣_ラッシュ2段目","1100332":"C1100_ dead soldiers _ Broken Straight Swords _ rush third Stage -- c1100_亡者兵士_折れた直剣_ラッシュ3段目","1100333":"C1100_ dead soldiers _ Broken Straight Swords _ rush fourth Stage -- c1100_亡者兵士_折れた直剣_ラッシュ4段目","1100334":"C1100_ dead soldiers _ Broken Straight Swords _ rush fifth stage -- c1100_亡者兵士_折れた直剣_ラッシュ5段目","1100335":"C1100_ dead soldiers _ Broken Straight Swords _ rush sixth stage -- c1100_亡者兵士_折れた直剣_ラッシュ6段目","1100340":"C1100_ dead soldiers _ Broken Straight swords _ leapt -- c1100_亡者兵士_折れた直剣_飛びかかり","1100500":"C1100_ Dead Soldier _ dagger _ successive slash 1 -- c1100_亡者兵士_短剣_連続斬り1","1100501":"C1100_ Dead Soldier _ dagger _ successive slash 2 -- c1100_亡者兵士_短剣_連続斬り2","1100502":"C1100_ Dead Soldier _ dagger _ successive slash 3 -- c1100_亡者兵士_短剣_連続斬り3","1100510":"C1100_ Dead Soldiers _ daggers _ leapt (medium-range) -- c1100_亡者兵士_短剣_飛びかかり(中距離)","1100520":"C1100_ Dead Soldiers _ daggers _ leapt (FAR) -- c1100_亡者兵士_短剣_飛びかかり(遠距離)","1100530":"C1100_ Dead Soldiers _ daggers _ Small Depression & continuous slash first stage -- c1100_亡者兵士_短剣_小踏み込み&連続斬り1段目","1100531":"C1100_ Dead Soldiers _ daggers _ Small Depression & continuous slash second stage -- c1100_亡者兵士_短剣_小踏み込み&連続斬り2段目","1100540":"C1100_ Dead Soldiers _ daggers _ combo 2-1 thrusts -- c1100_亡者兵士_短剣_コンボ2-1 突き","1100550":"C1100_ Dead Soldiers _ daggers _ Baxta Thrusts (strong thrusts) -- c1100_亡者兵士_短剣_バクスタ突き(強突き)","1100551":"C1100_ Dead Soldier _ dagger _ tossed -- c1100_亡者兵士_短剣_投げ","1100700":"C1100_ Dead Soldiers _ guards -- c1100_亡者兵士_ガード","1100710":"C1100_ Dead Soldiers _ Guard (weak) -- c1100_亡者兵士_ガード(弱)","1100800":"C1100_ Dead Soldiers _ bows _ usually arrows -- c1100_亡者兵士_弓_通常矢","1100801":"C1100_ Dead Soldiers _ bows _ arrows -- c1100_亡者兵士_弓_火矢","1100810":"C1100_ dead Soldiers _ oil pots -- c1100_亡者兵士_油壺","1100820":"C1100_ dead Soldiers _ flame Pots -- c1100_亡者兵士_火炎壺","1105010":"C1105_ dead Soldier (Large) _ axe _ Swung down: Right tilted single-shot -- c1105_亡者兵士(大)_斧_振り下ろし:右ななめ単発","1105011":"C1105_ dead Soldier (Large) _ axe _ shaken down: Left tilted first stage -- c1105_亡者兵士(大)_斧_振り下ろし:左ななめ一段目","1105012":"C1105_ dead Soldier (Large) _ axe _ Swung down: right tilted two -- c1105_亡者兵士(大)_斧_振り下ろし:右ななめ二段目","1105020":"C1105_ dead Soldier (Large) _ axe _ Swing Down: Depression & timing Difference -- c1105_亡者兵士(大)_斧_振り下ろし:踏み込み&タイミング違い","1105030":"C1105_ dead Soldier (Large) _ ax _ steep approaching & swinging down -- c1105_亡者兵士(大)_斧_急接近&振り下ろし","1105040":"C1105_ dead Soldier (Large) _ axe _ Tilted sideways Sugu -- c1105_亡者兵士(大)_斧_思いきり横に薙ぐ","1105050":"C1105_ dead Soldier (Large) _ axe _ Saigi to right (for combo) -- c1105_亡者兵士(大)_斧_右に薙ぎ払い(コンボ用)","1105051":"C1105_ dead Soldier (Large) _ axe _ Saigi to left (for combo) -- c1105_亡者兵士(大)_斧_左に薙ぎ払い(コンボ用)","1105060":"C1105_ dead Soldier (Large) _ axe _ Right side payment -- c1105_亡者兵士(大)_斧_右側面払い","1105061":"C1105_ dead Soldier (Large) _ axe _ left side pay -- c1105_亡者兵士(大)_斧_左側面払い","1105070":"C1105_ dead Soldier (Large) _ ax _ Nagi from right to left -- c1105_亡者兵士(大)_斧_右から左になぎ払う","1105110":"C1105_ dead Soldier (Large) _ Saigi _ Hal Bird -- c1105_亡者兵士(大)_ハルバード_薙ぎ払い","1105111":"C1105_ dead Soldier (Large) _ Hal Bird _ Inverted Saigi -- c1105_亡者兵士(大)_ハルバード_逆薙ぎ払い","1105120":"C1105_ dead Soldier (Large) _ Hull Bird _ butting in: lingering forward -- c1105_亡者兵士(大)_ハルバード_突き:余韻で進む","1105130":"C1105_ dead Soldier (Large) _ Hull bird _ Swing down: Go down in the afterglow -- c1105_亡者兵士(大)_ハルバード_振り下ろす:余韻で下がる","1105140":"C1105_ dead Soldier (Large) _ Hal Bird _ Steep approaching Saigi: drops in Afterglow -- c1105_亡者兵士(大)_ハルバード_急接近薙ぎ払い:余韻で下がる","1105150":"C1105_ dead Soldier (Large) _ Hull Bird _ extruded -- c1105_亡者兵士(大)_ハルバード_押し出し","1105160":"C1105_ dead Soldier (Large) _ Hal Bird _ Strong Saigi -- c1105_亡者兵士(大)_ハルバード_強薙ぎ払い","1120010":"Straight Sword: Stepping Down (Combo ① 1) -- 直剣:踏み込み斬り下ろし(コンボ①1)","1120020":"Straight Sword: Stepping Left → right Saigi (combo ① 2) -- 直剣:踏み込み左→右薙ぎ払い(コンボ①2)","1120030":"Straight Sword: Depression deadline (Combo ① 3) -- 直剣:踏み込み〆突き(コンボ①3)","1120040":"Straight Sword: Left Shiri (Combo ② 1) -- 直剣:左袈裟斬り(コンボ②1)","1120050":"Straight Sword: Depression fast thrust 1 (Combo ② 2) -- 直剣:踏み込み高速突き1(コンボ②2)","1120060":"Straight Sword: Depression fast thrust 2 (Combo ② 3) -- 直剣:踏み込み高速突き2(コンボ②3)","1120070":"Straight Sword: Stepping Down (Large) (Combo ② 4) -- 直剣:踏み込み斬り下ろし(大)(コンボ②4)","1120080":"Straight Sword: Stepping Left → right Saigi (single) -- 直剣:踏み込み左→右薙ぎ払い(単発)","1120090":"Straight Sword: Rush Butt -- 直剣:突進突き","1120100":"Straight Sword: Shield bash -- 直剣:シールドバッシュ","1120200":"Halle Byrd: Guard Butt 1 (Combo ① 1) -- ハルバード:ガード突き1(コンボ①1)","1120210":"Halle Bird: Guard Butt 2 (Combo ① 2) -- ハルバード:ガード突き2(コンボ①2)","1120220":"Halle Byrd: Stepping Infuser (Combo ① 3) -- ハルバード:踏み込み溜め突き(コンボ①3)","1120230":"Saigi: Depression Right → Left (combo ② 1) -- ハルバード:踏み込み右→左薙ぎ払い(コンボ②1)","1120240":"Saigi: Stepping Left → right (combo ② 2) -- ハルバード:踏み込み左→右薙ぎ払い(コンボ②2)","1120250":"Halle Bird: Long distance thrust -- ハルバード:遠距離突き","1120260":"Halle Bird: The Butt -- ハルバード:溜突き","1120270":"Hal Bird: Slapping Down -- ハルバード:叩きおろし","1120280":"Halle Bird: Rush Butt -- ハルバード:突進突き","1120290":"Halle Byrd: Shield bash -- ハルバード:シールドバッシュ","1130000":"Caries slug: Bit -- 蝕ナメクジ:噛み付き","1130020":"Caries slug: Arm throwing transition attack -- 蝕ナメクジ:腕投げ遷移攻撃","1130021":"Caries slug: arm throwing pressure damage -- 蝕ナメクジ:腕投げ圧迫ダメージ","1130050":"Caries Slugs: landing -- 蝕ナメクジ:着地","1130700":"Caries slug: caries vomiting -- 蝕ナメクジ:蝕吐き","1130800":"Caries slugs: caries accumulation -- 蝕ナメクジ:蝕溜まり","1132010":"Caries slug: Arm throwing transition attack -- 蝕ナメクジ:腕投げ遷移攻撃","1132011":"Caries slug: arm throwing pressure damage -- 蝕ナメクジ:腕投げ圧迫ダメージ","1150100":"C1150_ dead Shi (mace + Large shield) _ Kesa beating 1 -- c1150_亡者僧兵(メイス+大盾)_袈裟殴り1","1150110":"C1150_ dead Shi (mace + Large shield) _ Kesa beating 2 -- c1150_亡者僧兵(メイス+大盾)_袈裟殴り2","1150120":"C1150_ dead Shi (mace + Large Shield) _ Sidewise 1 (one-shot) -- c1150_亡者僧兵(メイス+大盾)_横殴り1(単発)","1150130":"C1150_ dead Shi (mace + Large Shield) _ Sidewise 1 (combo) -- c1150_亡者僧兵(メイス+大盾)_横殴り1(コンボ)","1150140":"C1150_ dead Shi (mace + Large Shield) _ Sidewise 2 -- c1150_亡者僧兵(メイス+大盾)_横殴り2","1150150":"C1150_ dead Shi (mace + Large shield) _ knocked back against -- c1150_亡者僧兵(メイス+大盾)_叩き付け","1150160":"C1150_ dead Shi (mace + Large shield) _ Shield Bash -- c1150_亡者僧兵(メイス+大盾)_シールドバッシュ","1150200":"C1150_ dead Shi (both hand-held hammers) _ Sidewise 1 -- c1150_亡者僧兵(両手持ちハンマー)_横殴り1","1150210":"C1150_ dead Shi (both hand-held hammers) _ Sidewise 2 -- c1150_亡者僧兵(両手持ちハンマー)_横殴り2","1150220":"C1150_ dead Shi (both hand-held hammers) _ grated -- c1150_亡者僧兵(両手持ちハンマー)_振りおろし","1150230":"C1150_ dead Shi (both hand-held hammers) _ lateral swinging 1 -- c1150_亡者僧兵(両手持ちハンマー)_横振り回し1","1150240":"C1150_ dead Shi (both hand-held hammers) _ Lateral swinging 2 -- c1150_亡者僧兵(両手持ちハンマー)_横振り回し2","1150250":"C1150_ dead Shi (both hand-held hammers) _ a swing from shakes -- c1150_亡者僧兵(両手持ちハンマー)_振りかぶりからの振りおろし","1150300":"C1150_ dead Shi (Ice-Ax) _ Kesa cut 1 -- c1150_亡者僧兵(ピッケル)_袈裟切り1","1150310":"C1150_ dead Shi (Ice-Ax) _ Kesa Cut 2 -- c1150_亡者僧兵(ピッケル)_袈裟切り2","1150320":"C1150_ dead Shi (Ice-ax) _ Intense shaking off (combo) -- c1150_亡者僧兵(ピッケル)_強烈振り降ろし(コンボ)","1150330":"C1150_ dead Shi (Ice-ax) _ Intense shaking off (single-shot) -- c1150_亡者僧兵(ピッケル)_強烈振り降ろし(単発)","1150340":"C1150_ dead Shi (Ice-Ax) _ Sidewise -- c1150_亡者僧兵(ピッケル)_横殴り","1150350":"C1150_ dead Shi (Ice-Ax) _ Sidewise A (grated 1 derived) -- c1150_亡者僧兵(ピッケル)_横殴りA(振りおろし1派生)","1150360":"C1150_ dead Shi (Ice-Ax) _ Sidewise B (sidewise 1 derived) -- c1150_亡者僧兵(ピッケル)_横殴りB(横殴り1派生)","1150370":"C1150_ dead Shi (Ice-ax) _ Swinging from shakes -- c1150_亡者僧兵(ピッケル)_振りかぶりからの振りおろし","1170010":"Right hand: Rounding up -- 右手:切り上げ","1170011":"Right hand: Sword down -- 右手:斬り下ろし","1170012":"Right hand: Vertical rotation Sword down -- 右手:縦回転斬り下ろし","1170020":"Right hand: Shiri -- 右手:袈裟斬り","1170021":"Right hand: Butt -- 右手:突き","1170030":"Right hand: Slalom Slash -- 右手:大回転斬り","1170040":"Rolling down the derived sword -- ローリング派生斬り下ろし","1170050":"Rush (stage) -- ラッシュ(初段)","1170060":"Shield Bash -- シールドバッシュ","1170070":"Rolling -- ローリング","1170100":"c1170_ Skeleton Warrior A: Guard -- c1170_スケルトン戦士A:ガード","1170110":"Both hands: Right → left Saigi -- 両手:右→左薙ぎ払い","1170120":"Both hands: Shiri -- 両手:袈裟斬り","1170130":"Both hands: Tamenuri Left → right Saigi -- 両手:溜左→右薙ぎ払い","1170200":"Shooting -- 射撃","1170201":"Shooting (for combo) -- 射撃(コンボ用)","1180010":"C1180: Frontier Skeleton (Shorty) _ Whack: Wait -- c1180:辺境スケルトン(ショーテル)_薙ぎ:待機","1180020":"C1180: Frontier Skeleton (Shorty) __ Reverse whack: whack posture -- c1180:辺境スケルトン(ショーテル)__逆薙ぎ:薙ぎ姿勢","1180030":"C1180: Frontier Skeleton (Shorty) _ Jump Whack: reverse whack posture -- c1180:辺境スケルトン(ショーテル)_ジャンプ薙ぎ:逆薙ぎ姿勢","1180040":"C1180: Frontier Skeleton (Shorty) _ Reverse Kesa: Whack stance -- c1180:辺境スケルトン(ショーテル)_逆袈裟:薙ぎ姿勢","1180050":"C1180: Frontier Skeleton (Shorty) _ Stepping down -- c1180:辺境スケルトン(ショーテル)_踏み込み斬り下ろし","1180060":"C1180: Frontier Skeleton (Shorty) _ Thrust: Swing down posture -- c1180:辺境スケルトン(ショーテル)_突き:振り下ろし姿勢","1180070":"C1180: Frontier Skeleton (Shorty) _ Revolving Payment: Thrust posture -- c1180:辺境スケルトン(ショーテル)_回転払い:突き姿勢","1180080":"C1180: Frontier Skeleton (Shorty) _ Step Whack -- c1180:辺境スケルトン(ショーテル)_ステップ薙ぎ","1180090":"C1180: Frontier Skeleton (Shorty) _ Reverse Whack: standing posture -- c1180:辺境スケルトン(ショーテル)_逆薙ぎ:待機姿勢","1180100":"C1180: Frontier Skeleton (Shorty) _ Grated: depression Small -- c1180:辺境スケルトン(ショーテル)_振りおろし:踏み込み小","1180110":"C1180: Frontier Skeleton (Shorty) _ Revolving Payment -- c1180:辺境スケルトン(ショーテル)_回転払い","1180120":"C1180: Frontier Skeleton (Shorty) _ Shield through rake-up -- c1180:辺境スケルトン(ショーテル)_盾貫通すくい上げ","1180200":"C1180: Frontier Skeleton (Nitori) _ Two-handed (right) -- c1180:辺境スケルトン(二刀流)_両手払い(右)","1180201":"C1180: Frontier Skeleton (Nitori) _ Two-handed (left) -- c1180:辺境スケルトン(二刀流)_両手払い(左)","1180210":"C1180: Frontier Skeleton (Nitori) _ one-handed reverse payment (left) -- c1180:辺境スケルトン(二刀流)_片手逆払い(左)","1180220":"C1180: Frontier Skeleton (Nitori) _ Rotating one hand and grated (right) -- c1180:辺境スケルトン(二刀流)_回転片手振りおろし(右)","1180221":"C1180: Frontier Skeleton (Nitori) _ Rotating one-handed (left) -- c1180:辺境スケルトン(二刀流)_回転片手振りおろし(左)","1180230":"C1180: Frontier Skeleton (Nitori) _ Two-handed reverse payment (right) -- c1180:辺境スケルトン(二刀流)_両手逆払い(右)","1180231":"C1180: Frontier Skeleton (Nitori) _ Two-handed reverse payment (left) -- c1180:辺境スケルトン(二刀流)_両手逆払い(左)","1180240":"C1180: Frontier Skeleton (Nitori) _ Both hand and side grated (right) -- c1180:辺境スケルトン(二刀流)_両手振りおろし(右)","1180241":"C1180: Frontier Skeleton (Nitori) _ Both sides grated (left) -- c1180:辺境スケルトン(二刀流)_両手振りおろし(左)","1180250":"C1180: Frontier Skeleton (Nitori) _ Yupa Attack (right) -- c1180:辺境スケルトン(二刀流)_ユパ様アタック(右)","1180251":"C1180: Frontier Skeleton (Nitori) _ Yupa attack (left) -- c1180:辺境スケルトン(二刀流)_ユパ様アタック(左)","1180260":"C1180: Frontier Skeleton (Nitori) _ Both hands rounded up (right) -- c1180:辺境スケルトン(二刀流)_踏み込み両手切り上げ(右)","1180261":"C1180: Frontier Skeleton (Nitori) _ Two-handed rounding (left) -- c1180:辺境スケルトン(二刀流)_踏み込み両手切り上げ(左)","1180270":"C1180: Frontier Skeleton (Nitori) _ Diving rotation slash (right) -- c1180:辺境スケルトン(二刀流)_飛び込み回転斬り(右)","1180271":"C1180: Frontier Skeleton (Nitori) _ Diving rotation slash (left) -- c1180:辺境スケルトン(二刀流)_飛び込み回転斬り(左)","1180280":"C1180: Frontier Skeleton (Nitori) _ Left step payment (left) -- c1180:辺境スケルトン(二刀流)_左ステップ払い(左)","1180290":"C1180: Frontier Skeleton (Nitori) _ Right Step payment (left) -- c1180:辺境スケルトン(二刀流)_右ステップ払い(左)","1180300":"C1180: Frontier Skeleton (Nitori) _ Rush First stage (right) -- c1180:辺境スケルトン(二刀流)_ラッシュ1段目(右)","1180310":"C1180: Frontier Skeleton (Nitori) _ Stepping up one hand -- c1180:辺境スケルトン(二刀流)_踏み込み片手斬り上げ","1180320":"C1180: Frontier Skeleton (Nitori) _ Rush Second stage (right) -- c1180:辺境スケルトン(二刀流)_ラッシュ2段目(右)","1180321":"C1180: Frontier Skeleton (Nitori) _ Second stage of Rush (left) -- c1180:辺境スケルトン(二刀流)_ラッシュ2段目(左)","1180330":"C1180: Frontier Skeleton (Nitori) _ Rush Third stage (right) -- c1180:辺境スケルトン(二刀流)_ラッシュ3段目(右)","1180331":"C1180: Frontier Skeleton (Nitori) _ Rush Third stage (left) -- c1180:辺境スケルトン(二刀流)_ラッシュ3段目(左)","1180340":"C1180: Frontier Skeleton (Nitori) _ Rush Fourth stage (right) -- c1180:辺境スケルトン(二刀流)_ラッシュ4段目(右)","1180341":"C1180: Frontier Skeleton (Nitori) _ Rush Fourth stage (left) -- c1180:辺境スケルトン(二刀流)_ラッシュ4段目(左)","1180350":"C1180: Frontier Skeleton (Nitori) _ One-handed rounding: depression small -- c1180:辺境スケルトン(二刀流)_片手切り上げ:踏み込み小","1180700":"C1180: Frontier Skeletons _ Baxtenife tossed -- c1180:辺境スケルトン_バクステナイフ投げ","1180710":"c1180: Frontier Skeleton Knife Throw -- c1180:辺境スケルトンナイフ投げ","1180720":"C1180: Frontier Skeleton Step Knife Throw -- c1180:辺境スケルトンステップナイフ投げ","1190100":"Gray Tome + Large shield _ grated -- グレートメイス+大盾_振りおろし","1190110":"Grey Tome + Large shield _ swinging -- グレートメイス+大盾_振り上げ","1190120":"Grey Tome + Large shield _ grated Mei-slash 1 -- グレートメイス+大盾_振りおろしメイスラッシュ1","1190121":"Grey Tome + Large shield _ grated mae slash 2 -- グレートメイス+大盾_振りおろしメイスラッシュ2","1190130":"Grey Tome + Large Shield _ Saigi 1 -- グレートメイス+大盾_薙ぎ払い1","1190140":"Grey Tome + Large Shield _ Saigi 2 -- グレートメイス+大盾_薙ぎ払い2","1190150":"Grey Tome + Large shield _ knocked back against -- グレートメイス+大盾_溜めて叩き付け","1190160":"Grey Tome + Large shield _ Shield bash -- グレートメイス+大盾_シールドバッシュ","1190170":"Gray Tome + Large Shield _ Miracle attack -- グレートメイス+大盾_奇跡・攻撃","1190180":"Grey Tome + Large Shield _ Miracle/Recovery -- グレートメイス+大盾_奇跡・回復","1190190":"Gray Tome + Large Shield _ Crossbow -- グレートメイス+大盾_クロスボウ","1190290":"Grey Tome + Large Shield _ Guard -- グレートメイス+大盾_ガード","1190300":"Great Sword _ Saigi 1 -- グレートソード_薙ぎ払い1","1190310":"Great Sword _ Saigi 2 (Nagi 1) -- グレートソード_薙ぎ払い2(なぎ払い1から繋がる版)","1190320":"Great Sword _ Kesa cut 1 -- グレートソード_袈裟切り1","1190330":"Great Sword _ Saigi 3 (Kesa cut 1) -- グレートソード_薙ぎ払い3(袈裟切り1から繋がる版","1190340":"Great Sword, stepping round -- グレートソード_踏み込み切り上げ","1190350":"Great Sword, stepping round -- グレートソード_踏み込み切り上げ","1190360":"From the top of the Great Sword (combo) -- グレートソード_上段からの振りおろし(コンボ)","1190370":"Great Sword _ from the top of the Swing (single) -- グレートソード_上段からの振りおろし(単発)","1190380":"Great sword before kick: Kick -- グレートソード_前蹴り:蹴り","1190381":"Great Sword _ pre-kick: push -- グレートソード_前蹴り:押し","1190390":"Great Sword _ head Bud -- グレートソード_ヘッドバッド","1190400":"Great Sword _ back Whack -- グレートソード_背面薙ぎ","1190410":"Great Sword (combo) -- グレートソード_溜め振りおろし(コンボ)","1190420":"Great Sword _ close-up swing -- グレートソード_接近振りおろし","1190430":"The Great sword-stepping thrust -- グレートソード_踏み込み突き","1190440":"Great Sword _ Saigi (combo) -- グレートソード_薙ぎ払い(コンボ)","1190450":"The Great Sword: the second shot -- グレートソード_二連振り下ろし:一撃目","1190451":"Great Sword _ Double swing: Second hammer -- グレートソード_二連振り下ろし:二撃目","1200100":"c1200_ Dwarf Man (Hatchet/ice-AX) _ Kesa Cut -- c1200_矮小人(ハチェット/ピッケル)_袈裟切り","1200110":"c1200_ Dwarf Man (Hatchet/ice-Ax) _ Reverse Kesa cut -- c1200_矮小人(ハチェット/ピッケル)_逆袈裟切り","1200120":"c1200_ Dwarf (Hatchet/ice-AX) _ Kannagi -- c1200_矮小人(ハチェット/ピッケル)_横なぎ","1200130":"c1200_ Dwarf (Hatchet/ice-AX) _ Swing Down -- c1200_矮小人(ハチェット/ピッケル)_振り下ろし","1200140":"c1200_ Dwarf Man (Hatchet/ice-AX) _ Kari attack -- c1200_矮小人(ハチェット/ピッケル)_飛び掛かり攻撃","1200150":"c1200_ Dwarf Man (Hatchet/ice-Ax) _ Dash Kari attack -- c1200_矮小人(ハチェット/ピッケル)_ダッシュ飛び掛かり攻撃","1200160":"c1200_ Dwarf (Hatchet/ice-AX) _ Dash wielding attack -- c1200_矮小人(ハチェット/ピッケル)_ダッシュ振り回し攻撃","1200170":"c1200_ Dwarf Man (Hatchet/ice-Ax) _ Dash back attack -- c1200_矮小人(ハチェット/ピッケル)_ダッシュ後ろ逃げ攻撃","1200180":"c1200_ Dwarf (Hatchet/ice-AX) _ Wrap Attack (right) -- c1200_矮小人(ハチェット/ピッケル)_回り込み攻撃(右)","1200190":"c1200_ Dwarf Man (Hatchet/ice-Ax) _ Blowgun (1) -- c1200_矮小人(ハチェット/ ピッケル)_吹き矢(1)","1200191":"c1200_ Dwarf Man (Hatchet/ice-Ax) _ Blowgun (2) -- c1200_矮小人(ハチェット/ ピッケル)_吹き矢(2)","1200210":"c1200_ Dwarf (Hatchet/ice-AX) _ Companions -- c1200_矮小人(ハチェット/ピッケル)_仲間呼び","1200220":"c1200_ Dwarf Person (hatchet/ice ax) _ Throwing transition attack -- c1200_矮小人(ハチェット/ピッケル)_投げ遷移攻撃","1200240":"c1200_ Dwarf (Hatchet/ice-AX) _ Flame Vase -- c1200_矮小人(ハチェット/ピッケル)_火炎壺","1200300":"c1200_ Dwarf (Large sword) _ Lateral Whack 1 -- c1200_矮小人(大剣)_横薙ぎ1","1200310":"c1200_ Dwarf Man (large sword) _ Lateral Whack 2 -- c1200_矮小人(大剣)_横薙ぎ2","1200320":"c1200_ Dwarf (Large sword) _ Swinging -- c1200_矮小人(大剣)_振り上げ","1200330":"c1200_ Dwarf (Large sword) _ Swing Down -- c1200_矮小人(大剣)_振り下ろし","1200340":"c1200_ Dwarf (Large sword) _ Extruded attack -- c1200_矮小人(大剣)_押し出し攻撃","1200360":"c1200_ Dwarf (Large sword) _ Fall Attack -- c1200_矮小人(大剣)_落下攻撃","1200370":"c1200_ Dwarf (Large sword) _ companions called -- c1200_矮小人(大剣)_仲間呼び","1200700":"c1200_ Dwarf Man (Hatchet/ice ax) _ Tossed -- c1200_矮小人(ハチェット/ピッケル)_投げ","1200999":"c1200_ Dwarf (Large sword) _ Companion call test -- c1200_矮小人(大剣)_仲間呼びテスト","1210100":"c1210_ Blue (Spear shield) _ Thrust -- c1210_ブルー(槍盾)_突き","1210110":"c1210_ Blue (Spear shield) _ Continuous piercing -- c1210_ブルー(槍盾)_連続突き刺し","1210120":"c1210_ Blue (Spear shield) _ Continuous thrusting 2 -- c1210_ブルー(槍盾)_連続突き刺し2","1210130":"c1210_ Blue (Spear shield) _ Shield beating -- c1210_ブルー(槍盾)_盾殴り","1210140":"c1210_ Blue (Spear shield) _ Thrust -- c1210_ブルー(槍盾)_突き上げ","1210150":"c1210_ Blue (Spear shield) _ Rush Butt -- c1210_ブルー(槍盾)_突進突き","1210160":"c1210_ Blue (Spear shield) _ Rush attack -- c1210_ブルー(槍盾)_ラッシュ攻撃","1210161":"c1210_ Blue (Spear shield) _ Rush attack (last) -- c1210_ブルー(槍盾)_ラッシュ攻撃(最後)","1210170":"c1210_ Blue (Spear shield) _ Guard Butt -- c1210_ブルー(槍盾)_ガード突き","1210200":"c1210_ Blue (Sword) _ Swing Down -- c1210_ブルー(剣)_振り下ろし","1210210":"c1210_ Blue (Sword) _ Thrusting -- c1210_ブルー(剣)_突き","1210220":"c1210_ Blue (Sword) _ Scratching -- c1210_ブルー(剣)_引っ掻き","1210230":"c1210_ Blue (Sword) _ Stepping Right -- c1210_ブルー(剣)_踏み込み右","1210240":"c1210_ Blue (Sword) _ Depression 2-Saigi -- c1210_ブルー(剣)_踏み込み2連薙ぎ払い","1210250":"c1210_ Blue (Sword) _ Roundhouse Shiri -- c1210_ブルー(剣)_大振り袈裟斬り","1210260":"c1210_ Blue (Sword) _ Kicks -- c1210_ブルー(剣)_蹴り","1210270":"c1210_ Blue (Sword) _ a dung-throwing dumpling -- c1210_ブルー(剣)_糞団子投げ","1210300":"c1210_ Blue (deep) _ Stepping Thrust -- c1210_ブルー(ディープ)_踏み込み突き刺し","1210310":"c1210_ Blue (deep) _ Infuser Thrust -- c1210_ブルー(ディープ)_溜め突き刺し","1210320":"c1210_ Blue (deep) _ Move forward and cut down -- c1210_ブルー(ディープ)_前進しながら斬り下ろし","1210330":"c1210_ Blue (deep) _ Left → Right roundhouse Saigi -- c1210_ブルー(ディープ)_左→右大振り薙ぎ払い","1210340":"c1210_ Blue (deep) _ Poison fog chanting -- c1210_ブルー(ディープ)_毒霧詠唱","1210350":"c1210_ Blue (deep) _ Widespread poison fog chanting (may be lost) -- c1210_ブルー(ディープ)_広域猛毒霧詠唱(なくなるかも)","1210360":"c1210_ Blue (Deep) _ Estrus-inducing dance -- c1210_ブルー(ディープ)_発情誘発踊り","1210390":"c1210_ Blue (deep) _ Ambient Recovery Magic -- c1210_ブルー(ディープ)_周囲回復魔法","1210400":"c1210_ Blue (Estrus) _ Right scratching -- c1210_ブルー(発情)_右引っ掻き","1210410":"c1210_ Blue (Estrus) _ Left scratching -- c1210_ブルー(発情)_左引っ掻き","1210420":"c1210_ Blue (Estrus) _ with a hug -- c1210_ブルー(発情)_抱きつき","1210430":"c1210_ Blue (Estrus) _ Hug (from Waiting) -- c1210_ブルー(発情)_抱きつき(待機から)","1210440":"c1210_ Blue (Estrus) _ High jump -- c1210_ブルー(発情)_ハイジャンプ","1210490":"c1210_ Blue (Estrus) _ Throwing damage -- c1210_ブルー(発情)_投げ時ダメージ","1210500":"c1210_ Blue (dog) _ Right scratching -- c1210_ブルー(犬)_右引っ掻き","1210510":"c1210_ Blue (dog) _ Left scratching -- c1210_ブルー(犬)_左引っ掻き","1210520":"c1210_ Blue (dog) -- c1210_ブルー(犬)_叩きおろし","1210530":"c1210_ Blue (dog) _ Lunge -- c1210_ブルー(犬)_突進","1210540":"c1210_ Blue (dog) _ Triangular flying scratching -- c1210_ブルー(犬)_三角飛び引っかき","1210700":"c1210_ Blue (deep) _ Slow -- c1210_ブルー(ディープ)_鈍足","1210710":"c1210_ Blue (Deep) _ Recovery -- c1210_ブルー(ディープ)_回復","1210720":"c1210_ Blue (deep) _ Strengthened -- c1210_ブルー(ディープ)_強化","1210730":"c1210_ Blue (deep) _ Strengthen ally -- c1210_ブルー(ディープ)_強化味方","1210740":"c1210_ Blue (deep) _ Ignition -- c1210_ブルー(ディープ)_発火","1210750":"c1210_ Blue (Deep) _ Firing Combo -- c1210_ブルー(ディープ)_発火コンボ","1210760":"c1210_ Blue (Deep) _ -- c1210_ブルー(ディープ)_","1210770":"c1210_ Blue (Deep) _ Name set later -- c1210_ブルー(ディープ)_名称は後で設定","1210780":"c1210_ Blue (Deep) _ Name set later -- c1210_ブルー(ディープ)_名称は後で設定","1210999":"c1210_ Blue (Estrus) _ Grab (throw test) -- c1210_ブルー(発情)_掴みかかり(投げテスト)","1220010":"Head Butt -- 頭突き","1220020":"Spitting Grub -- ウジ吐き","1220030":"Maggots spitting _ body appearance -- ウジ吐き_本体出現","1220100":"Right whack -- 右手薙ぎ","1220110":"Left hand Whack -- 左手薙ぎ","1220120":"Throwing start technique (normal) -- 投げ始動技(通常時)","1220121":"Throwing start technique (pressure damage) -- 投げ始動技(圧迫ダメージ)","1220130":"For Uzi hit effect test -- ウジヒットエフェクトテスト用","1230010":"Left hand: Sword down -- 左手:斬り下ろし","1230020":"Left hand: Right Saigi -- 左手:左→右薙ぎ払い","1230030":"Left hand: Right → Saigi -- 左手:右→左薙ぎ払い","1230040":"Left hand: Right Saigi -- 左手:左→右薙ぎ払い","1230050":"Right hand: Bible Helmet Split -- 右手:聖書兜割り","1230060":"Left hand: Right swing Saigi -- 左手:左→右振り回し薙ぎ払い","1230070":"Throwing Start technique -- 投げ始動技","1230071":"Continuous damage during throwing -- 投げ時継続ダメージ","1230072":"Headed at times continued damage thrown -- 投げ時大継続ダメージ","1230080":"Bible Slap -- 聖書ビンタ","1230740":"Projection Magic -- 投射魔法","1240100":"c1240_ poor Dead (machete): lateral shaking 1 -- c1240_貧民亡者(ナタ):横振り1","1240110":"c1240_ poor Dead (machete): lateral shaking 2 -- c1240_貧民亡者(ナタ):横振り2","1240120":"c1240_ poor Dead (machete): Lateral swing -- c1240_貧民亡者(ナタ):大振り横振り","1240130":"c1240_ poor Dead (machete): the sword Down -- c1240_貧民亡者(ナタ):溜斬り下ろし","1240140":"c1240_ poor Dead (machete): Triple Tap -- c1240_貧民亡者(ナタ):3連叩きおろし","1240150":"c1240_ poor Dead (machete): both gestures 1 -- c1240_貧民亡者(ナタ):両手振り1","1240151":"c1240_ poor Dead (machete): both gestures 2 -- c1240_貧民亡者(ナタ):両手振り2","1240300":"C1240_ Poor Dead (dual dagger): Right-hand abdomen Saigi -- c1240_貧民亡者(デュアルダガー):右手腹部薙ぎ払い","1240310":"C1240_ Poor Dead (dual dagger): Left hand thrusting a -- c1240_貧民亡者(デュアルダガー):左手突きおろしA","1240320":"C1240_ Poor Dead (dual dagger): Left hand grated b -- c1240_貧民亡者(デュアルダガー):左手突きおろしB","1240330":"C1240_ Poor Dead (dual dagger): Right hand slash -- c1240_貧民亡者(デュアルダガー):右手斬りおろし","1240340":"C1240_ Poor Dead (dual dagger): Both hands simultaneous attack (right) -- c1240_貧民亡者(デュアルダガー):両手同時攻撃(右)","1240341":"C1240_ Poor Dead (dual dagger): Both hands simultaneous attack (left) -- c1240_貧民亡者(デュアルダガー):両手同時攻撃(左)","1240350":"C1240_ Poor Dead (dual dagger): Rush (1st Stage right) -- c1240_貧民亡者(デュアルダガー):ラッシュ(1段目右)","1240351":"C1240_ Poor Dead (dual dagger): Rush (second stage left) -- c1240_貧民亡者(デュアルダガー):ラッシュ(2段目左)","1240352":"C1240_ Poor Dead (dual dagger): Rush (third stage right) -- c1240_貧民亡者(デュアルダガー):ラッシュ(3段目右)","1240353":"C1240_ Poor Dead (dual dagger): Rush (fourth stage left) -- c1240_貧民亡者(デュアルダガー):ラッシュ(4段目左)","1240354":"C1240_ Poor Dead (dual dagger): Rush (5th stage right) -- c1240_貧民亡者(デュアルダガー):ラッシュ(5段目右)","1240355":"C1240_ Poor Dead (dual dagger): Rush (sixth stage left) -- c1240_貧民亡者(デュアルダガー):ラッシュ(6段目左)","1240360":"C1240_ Poor Dead (dual dagger): Left hand thrust (throwing transition) -- c1240_貧民亡者(デュアルダガー):左手突き刺し(投げ遷移)","1240361":"C1240_ Poor Dead (dual dagger): Left hand piercing (throw) -- c1240_貧民亡者(デュアルダガー):左手突き刺し(投げ)","1240370":"C1240_ Poor Dead (dual dagger): Jump Attack (left) -- c1240_貧民亡者(デュアルダガー):ジャンプ攻撃(左)","1240371":"C1240_ Poor Dead (dual dagger): Jump Attack (right) -- c1240_貧民亡者(デュアルダガー):ジャンプ攻撃(右)","1240500":"c1240_ Poor Dead (Hammer): Knocked back against 1 -- c1240_貧民亡者(ハンマー):叩き付け1","1240510":"c1240_ Poor Dead (Hammer): Knocked back against 2 -- c1240_貧民亡者(ハンマー):叩き付け2","1240520":"c1240_ Poor Dead (Hammer): Kesa slapping -- c1240_貧民亡者(ハンマー):袈裟叩き","1240530":"c1240_ Poor Dead (Hammer): Infuser knocked back against -- c1240_貧民亡者(ハンマー):溜め叩き付け","1240540":"c1240_ Poor Dead (hammer): Sticking out -- c1240_貧民亡者(ハンマー):突き出し","1240600":"C1240_ Poor Dead (Lance): both hand thrusts 1 -- c1240_貧民亡者(ランス):両手突き1","1240610":"C1240_ Poor Dead (Lance): both hand thrusts 2 -- c1240_貧民亡者(ランス):両手突き2","1240620":"C1240_ Poor Dead (Lance): both hand thrusts 3 -- c1240_貧民亡者(ランス):両手突き3","1240630":"C1240_ Poor Dead (Lance): Infuser Butt -- c1240_貧民亡者(ランス):溜め突き","1240640":"C1240_ Poor Dead (Lance): Lunge whack -- c1240_貧民亡者(ランス):突進薙ぎ","1240650":"C1240_ Poor Dead (Lance): slams -- c1240_貧民亡者(ランス):叩きつけ","1240660":"C1240_ Poor Dead (Lance): Added Nagi -- c1240_貧民亡者(ランス):追加なぎ払い","1240700":"c1240_ poor Dead (machete): Flame vase -- c1240_貧民亡者(ナタ):火炎壺","1240710":"c1240_ poor Dead (machete): Oil pot -- c1240_貧民亡者(ナタ):油壺","1250100":"C1250_ Poor Dead Elite _ right Pay -- c1250_貧民亡者エリート_右払い","1250110":"C1250_ Poor dead Elite _ left pay -- c1250_貧民亡者エリート_左払い","1250120":"c1250_ Poor Dead Elite _1-1 hands Shiri (right) -- c1250_貧民亡者エリート_1-1両手袈裟斬り(右)","1250121":"c1250_ Poor Dead Elite _1-1 hands Shiri (left) -- c1250_貧民亡者エリート_1-1両手袈裟斬り(左)","1250130":"c1250_ Poor Dead Elite _1-2 hands Saigi (right) -- c1250_貧民亡者エリート_1-2両手薙ぎ払い(右)","1250131":"c1250_ Poor Dead Elite _1-2 hands Saigi (left) -- c1250_貧民亡者エリート_1-2両手薙ぎ払い(左)","1250140":"c1250_ Poor Dead Elite _1-3 hands Saigi (right) -- c1250_貧民亡者エリート_1-3両手薙ぎ払い(右)","1250141":"c1250_ Poor Dead Elite _1-3 hands Saigi (left) -- c1250_貧民亡者エリート_1-3両手薙ぎ払い(左)","1250150":"c1250_ Poor Dead Elite _2-1 rounded up -- c1250_貧民亡者エリート_2-1切り上げ","1250160":"c1250_ Poor Dead Elite _2-2 Shiri -- c1250_貧民亡者エリート_2-2袈裟斬り","1250170":"c1250_ Poor Dead Elite _2-3 Shiri -- c1250_貧民亡者エリート_2-3袈裟斬り","1250180":"c1250_ Poor Dead Elite _x (right) -- c1250_貧民亡者エリート_X斬り(右)","1250181":"c1250_ Poor dead Elite _x (left) -- c1250_貧民亡者エリート_X斬り(左)","1250190":"c1250_ Poor Dead Elite _x (lunge) (right) -- c1250_貧民亡者エリート_X斬り(突進)(右)","1250191":"c1250_ Poor Dead Elite _x (lunge) (left) -- c1250_貧民亡者エリート_X斬り(突進)(左)","1250200":"C1250_ Poor dead Elite _ hands down (right) -- c1250_貧民亡者エリート_両手斬り下ろし(右)","1250201":"C1250_ Poor dead Elite _ hands down (left) -- c1250_貧民亡者エリート_両手斬り下ろし(左)","1250230":"C1250_ Poor Dead Elite _ both hand thrusts (right) -- c1250_貧民亡者エリート_両手突き(右)","1250231":"C1250_ Poor Dead Elite _ both hand thrusts (left) -- c1250_貧民亡者エリート_両手突き(左)","1250240":"C1250_ Poor dead Elite _ left step attack -- c1250_貧民亡者エリート_左ステップ攻撃","1250250":"C1250_ Poor Dead Elite _ right-step attack -- c1250_貧民亡者エリート_右ステップ攻撃","1250260":"C1250_ Poor Dead Elite _ Ranbu 1-1: Right hand -- c1250_貧民亡者エリート_乱舞1-1:右手","1250261":"C1250_ Poor Dead Elite _ Ranbu 1-1: Left hand -- c1250_貧民亡者エリート_乱舞1-1:左手","1250270":"C1250_ Poor Dead Elite _ Ranbu 1-2: Right hand -- c1250_貧民亡者エリート_乱舞1-2:右手","1250271":"C1250_ Poor Dead Elite _ Ranbu 1-2: Left hand -- c1250_貧民亡者エリート_乱舞1-2:左手","1250280":"C1250_ Poor Dead Elite _ Ranbu 1-3: Right hand -- c1250_貧民亡者エリート_乱舞1-3:右手","1250281":"C1250_ Poor Dead Elite _ Ranbu 1-3: Left hand -- c1250_貧民亡者エリート_乱舞1-3:左手","1250700":"C1250_ Poor Dead Elite _ fire-blowing -- c1250_貧民亡者エリート_火吹き","1260100":"C1260_ Poor Dead _ Servant (saws) _1-1 both hand-out 1 -- c1260_貧民亡者_下男(ノコギリ)_1-1両手振り抜き1","1260110":"C1260_ Poor Dead _ Servant (saws) _1-2 both hand-out 2 -- c1260_貧民亡者_下男(ノコギリ)_1-2両手振り抜き2","1260120":"C1260_ Poor Dead _ Servant (Saws) _ Both hand grated -- c1260_貧民亡者_下男(ノコギリ)_両手振りおろし","1260130":"C1260_ Poor Dead _ Servant (SAW) _2-1 hand-grated -- c1260_貧民亡者_下男(ノコギリ)_2-1片手振りおろし","1260140":"C1260_ Poor Dead _ Servant (saws) _2-2 Bun -- c1260_貧民亡者_下男(ノコギリ)_2-2ぶん回し","1260150":"C1260_ Poor Dead _ Servant (Saws) _ Behind attack -- c1260_貧民亡者_下男(ノコギリ)_背後攻撃","1260160":"C1260_ Poor Dead _ Servant (Saws) _ _1 in rush attack -- c1260_貧民亡者_下男(ノコギリ)_ラッシュ攻撃_1段目","1260161":"C1260_ Poor Dead _ Servant (Saws) _ Rush Attack _2 -- c1260_貧民亡者_下男(ノコギリ)_ラッシュ攻撃_2段目","1260162":"C1260_ Poor Dead _ Servant (Saws) _ _3 in rush attack -- c1260_貧民亡者_下男(ノコギリ)_ラッシュ攻撃_3段目","1260163":"C1260_ Poor Dead _ Servant (Saws) _ Lash Attack _ slapping first stage -- c1260_貧民亡者_下男(ノコギリ)_ラッシュ攻撃_叩き1段目","1260164":"C1260_ Poor Dead _ Servant (Saws) _ Lash Attack _ slapping second stage -- c1260_貧民亡者_下男(ノコギリ)_ラッシュ攻撃_叩き2段目","1260165":"C1260_ Poor Dead _ Servant (Saws) _ Lash Attack _ slapping third stage -- c1260_貧民亡者_下男(ノコギリ)_ラッシュ攻撃_叩き3段目","1260180":"C1260_ Poor Dead _ Servant (Saws) _ Poised lunge (beating) -- c1260_貧民亡者_下男(ノコギリ)_構え突進(殴り)","1260181":"C1260_ Poor Dead _ Servant (Saws) _ poised lunge (pushing) -- c1260_貧民亡者_下男(ノコギリ)_構え突進(押し)","1260190":"C1260_ Poor Dead _ Servant (Saws) _ Pay from right (one hand): wait -- c1260_貧民亡者_下男(ノコギリ)_右から払い(片手):待機","1260191":"C1260_ Poor Dead _ Servant (Saws) _ Pay from left (one hand): wait -- c1260_貧民亡者_下男(ノコギリ)_左から払い(片手):待機","1260192":"C1260_ Poor Dead _ Servant (Saws) _ Pay from right (one hand): left-handed posture -- c1260_貧民亡者_下男(ノコギリ)_右から払い(片手):左払い姿勢","1260193":"C1260_ Poor Dead _ Servant (Saws) _ Pay from left (one hand): right-handed posture -- c1260_貧民亡者_下男(ノコギリ)_左から払い(片手):右払い姿勢","1260194":"C1260_ Poor Dead _ Servant (saws) _ Continuous Swing down: left-hand Posture _1 -- c1260_貧民亡者_下男(ノコギリ)_連続振り下ろし:左払い姿勢_1段目","1260195":"C1260_ Poor Dead _ Servant (saws) _ Continuous Swing down: left-hand position _2 -- c1260_貧民亡者_下男(ノコギリ)_連続振り下ろし:左払い姿勢_2段目","1260196":"C1260_ Poor Dead _ Servant (saws) _ Continuous Swing down: left-hand Posture _3 -- c1260_貧民亡者_下男(ノコギリ)_連続振り下ろし:左払い姿勢_3段目","1260300":"C1260_ Poor Dead _ Servant (mortar) _ Knocked back against -- c1260_貧民亡者_下男(臼)_叩き付け","1260310":"C1260_ Poor Dead _ Servant (mortar) _ Knocked back against 2 -- c1260_貧民亡者_下男(臼)_叩き付け2","1260311":"C1260_ Poor Dead _ Servant (mortar) _ Kari (bearers posture) -- c1260_貧民亡者_下男(臼)_飛び掛かり(担ぎ姿勢)","1260312":"C1260_ Poor Dead _ Servant (mortar) _ left knocked back against -- c1260_貧民亡者_下男(臼)_左叩き付け","1260313":"C1260_ Poor Dead _ Servant (mortar) _ Right knocked back against -- c1260_貧民亡者_下男(臼)_右叩き付け","1260320":"C1260_ Poor Dead _ Servant (mortar) _ Knocked back against (bearers posture) -- c1260_貧民亡者_下男(臼)_叩き付け(担ぎ姿勢)","1260700":"C1260_ Poor Dead _ Servant (mortar) _ a mortar throw (spot) -- c1260_貧民亡者_下男(臼)_臼投げ(その場)","1260701":"C1260_ Poor Dead _ Servant (mortar) _ a mortar throw (bearers) -- c1260_貧民亡者_下男(臼)_臼投げ(担ぎ姿勢)","1280100":"C1280_ Shin Ojo Knight (Straight Sword + shield): Right Kesa cut -- c1280_新王城騎士(直剣+盾):右袈裟切り","1280101":"C1280_ Shin Ojo Knight (Straight Sword + shield): Left Whack -- c1280_新王城騎士(直剣+盾):左薙ぎ","1280102":"C1280_ Shin Ojo Knight (Straight Sword + shield): depression thrust -- c1280_新王城騎士(直剣+盾):踏み込み突き","1280110":"C1280_ Shin Ojo Knight (Straight Sword + shield): Left Swing -- c1280_新王城騎士(直剣+盾):左横振り","1280111":"C1280_ Shin Ojo Knight (Straight Sword + shield): Right -- c1280_新王城騎士(直剣+盾):右横振り","1280120":"C1280_ Shin Ojo Knight (Straight Sword + shield): Rush Butt -- c1280_新王城騎士(直剣+盾):突進突き","1280130":"C1280_ Shin Ojo Knight (Straight Sword + shield): Shield Bash -- c1280_新王城騎士(直剣+盾):盾バッシュ","1280140":"C1280_ Shin Ojo Knight (Straight Sword + shield): thrust -- c1280_新王城騎士(直剣+盾):構え突き","1280150":"C1280_ Shin Ojo Knight (Straight Sword + shield): Roll up -- c1280_新王城騎士(直剣+盾):構え巻き上げ","1280160":"C1280_ Shin Ojo Knight (Straight Sword + shield): counterattack from endure -- c1280_新王城騎士(直剣+盾):耐えるからの反撃","1280170":"c1280_ New Ojo Knight (Straight Sword + shield): Left side attack -- c1280_新王城騎士(直剣+盾):左側面攻撃","1280180":"C1280_ Shin Ojo Knight (Straight Sword + shield): Right flank attack -- c1280_新王城騎士(直剣+盾):右側面攻撃","1280300":"C1280_ Shin Ojo Knight (Spear + shield): Guard Butt 1 -- c1280_新王城騎士(槍+盾):ガード突き1","1280301":"C1280_ Shin Ojo Knight (Spear + shield): Guard Butt 2 -- c1280_新王城騎士(槍+盾):ガード突き2","1280310":"C1280_ Shin Ojo Knight (Spear + shield): Poised rush thrust (last) -- c1280_新王城騎士(槍+盾):構え突進突き(最後)","1280311":"C1280_ Shin Ojo Knight (Spear + shield): Thrust Rush (during rush) -- c1280_新王城騎士(槍+盾):構え突進突き(突進中)","1280320":"c1280_ New Ojo Knight (Spear + shield): Shield Bash -- c1280_新王城騎士(槍+盾):盾バッシュ","1280330":"c1280_ New Ojo Knight (Spear + shield): Poised plunge thrust -- c1280_新王城騎士(槍+盾):構え飛び込み突き","1280340":"c1280_ New Ojo Knight (Spear + shield): stance short-range thrust -- c1280_新王城騎士(槍+盾):構え近距離突き","1280350":"C1280_ Shin Ojo Knight (Spear + shield): Withstand counterattack -- c1280_新王城騎士(槍+盾):耐える反撃","1280360":"C1280_ Shin Ojo Knight (Spear + shield): Infuser Butt -- c1280_新王城騎士(槍+盾):溜め突き","1280370":"C1280_ Shin Ojo Knight (Spear + shield): Saigi -- c1280_新王城騎士(槍+盾):薙ぎ払い","1280500":"C1280_ Shin Ojo Knight (large sword): slams -- c1280_新王城騎士(大剣):叩きつけ","1280510":"C1280_ Shin Ojo Knight (large sword): Right Saigi -- c1280_新王城騎士(大剣):右薙ぎ払い","1280520":"C1280_ Shin Ojo Knight (large sword): Left Saigi -- c1280_新王城騎士(大剣):左薙ぎ払い","1280530":"C1280_ Shin Ojo Knight (large sword): Rush Saigi -- c1280_新王城騎士(大剣):突進薙ぎ払い","1280540":"C1280_ Shin Ojo Knight (large sword): Infuser Butt -- c1280_新王城騎士(大剣):溜め突き","1280550":"c1280_ New Ojo Knight (large sword): Behind the attack -- c1280_新王城騎士(大剣):背後攻撃","1280560":"C1280_ Shin Ojo Knight (Great Sword): depression -- c1280_新王城騎士(大剣):踏み込み","1280570":"C1280_ Shin-Ojo Knight (large sword): stepping Round -- c1280_新王城騎士(大剣):踏み込み切り上げ","1280580":"C1280_ Shin Ojo Knight (large sword): Swing Down (reservoir) -- c1280_新王城騎士(大剣):振り下ろし(溜め)","1280590":"C1280_ Shin Ojo Knight (large sword): Whack Kesa (infuser): Wait -- c1280_新王城騎士(大剣):薙ぎ袈裟(溜め):待機","1280600":"C1280_ Shin Ojo Knight (large sword): thrusting -- c1280_新王城騎士(大剣):突き","1280610":"C1280_ Shin Ojo Knight (large sword): Reverse Whack: stepping Posture -- c1280_新王城騎士(大剣):逆薙ぎ:踏み込み姿勢","1280620":"C1280_ Shin Ojo Knight (large sword): pattern Extrusion -- c1280_新王城騎士(大剣):柄押し出し","1280630":"C1280_ Shin Ojo Knight (large sword): Whack Swinging: enduring posture -- c1280_新王城騎士(大剣):薙ぎ振り上げ:耐える姿勢","1280640":"C1280_ Shin Ojo Knight (large Sword): Shiri (left side): Wait -- c1280_新王城騎士(大剣):袈裟斬り(左側面):待機","1280650":"C1280_ Shin Ojo Knight (large sword): Reverse Kesa (right side): Wait -- c1280_新王城騎士(大剣):逆袈裟(右側面):待機","1280700":"C1280_ Shin Ojo Knight (bow): shooting -- c1280_新王城騎士(弓):射撃","1280701":"C1280_ Shin Ojo Knight (bow): Shooting Combo -- c1280_新王城騎士(弓):射撃コンボ","1280900":"C1280_ Shin Ojo Knight (sword): Guard -- c1280_新王城騎士(剣):ガード","1280910":"C1280_ Shin Ojo Knight (Spear): Guard -- c1280_新王城騎士(槍):ガード","1280920":"C1280_ Shin Ojo Knight (large sword): Guard -- c1280_新王城騎士(大剣):ガード","1290100":"C1290_ Ojo Deb (Long axe): Swing Down (Blade) -- c1290_王城デブ(長斧):思い切り振りおろし(刃)","1290110":"C1290_ Ojo Deb (Long Axe): Combo ①-1 Angled Swing (blade) -- c1290_王城デブ(長斧):コンボ①~1 斜めに振り上げ(刃)","1290111":"C1290_ Ojo Deb (Long Axe): Combo ①-2 small Saigi (Blade) -- c1290_王城デブ(長斧):コンボ①~2 小薙ぎ払い(刃)","1290112":"C1290_ Ojo Deb (Long Axe): Combo ①-3 small Saigi (Blade) -- c1290_王城デブ(長斧):コンボ①~3 小薙ぎ払い(刃)","1290120":"C1290_ Ojo Deb (Long Axe): Compact and grated (blade) -- c1290_王城デブ(長斧):コンパクトに振りおろし(刃)","1290130":"C1290_ Ojo Deb (Long Axe): Combo ②-1 Saigi (Blade) -- c1290_王城デブ(長斧):コンボ②~1 薙ぎ払い (刃)","1290131":"C1290_ Ojo Deb (Long Axe): Combo ②-2 Saigi (Blade) -- c1290_王城デブ(長斧):コンボ②~2 薙ぎ払い (刃)","1290132":"C1290_ Ojo Deb (Long Axe): Combo ②-2, grated from the reservoir (Blade) -- c1290_王城デブ(長斧):コンボ②~2 ちょい溜めからの振りおろし(刃)","1290140":"C1290_ Ojo Deb (Long Axe): Saigi from running (Blade) -- c1290_王城デブ(長斧):走りからの薙ぎ払い(刃)","1290150":"C1290_ Ojo Deb (Long Axe): Force -- c1290_王城デブ(長斧):フォース","1290160":"C1290_ Ojo Deb (Long Axe): Rotation attack Combo First stage: Rotating part (Blade) -- c1290_王城デブ(長斧):回転攻撃コンボ 1段目:回転部(刃)","1290161":"C1290_ Ojo Deb (Long Axe): Rotation attack Combo first stage: Pay part (Blade) -- c1290_王城デブ(長斧):回転攻撃コンボ 1段目:払い部(刃)","1290170":"C1290_ Ojo Deb (Long Axe): Rotation attack Combo Second stage: Rotating part (Blade) -- c1290_王城デブ(長斧):回転攻撃コンボ 2段目:回転部(刃)","1290171":"C1290_ Ojo Deb (Long Axe): Rotating attack Combo Second stage: Pay part (Blade) -- c1290_王城デブ(長斧):回転攻撃コンボ 2段目:払い部(刃)","1290180":"C1290_ Ojo Deb (Long Axe): Rotation attack Combo Third stage: rotating part (Blade) -- c1290_王城デブ(長斧):回転攻撃コンボ 3段目:回転部(刃)","1290181":"C1290_ Ojo Deb (Long Axe): Rotation attack combo third stage: Pay part (Blade) -- c1290_王城デブ(長斧):回転攻撃コンボ 3段目:払い部(刃)","1290190":"C1290_ Ojo (Long Axe): Miracle: The light of the pillar dancing -- c1290_王城デブ(長斧):奇蹟:光の柱乱舞 予兆","1290191":"C1290_ Ojo Deb (Long Axe): Miracles: Columns of light, dance pillar of Light -- c1290_王城デブ(長斧):奇蹟:光の柱乱舞 光の柱","1290192":"C1290_ Ojo Deb (Long Axe): Miracles: The Pillar of Light danced -- c1290_王城デブ(長斧):奇蹟:光の柱乱舞 着弾","1290193":"C1290_ Ojo (Long Axe): Miracle: A shock wave in the motion of a pillar of light -- c1290_王城デブ(長斧):奇蹟:光の柱乱舞 発動時の衝撃波","1290200":"C1290_ Ojo Deb (Long axe): Swinging Down (stick) -- c1290_王城デブ(長斧):思い切り振りおろし(棒)","1290210":"C1290_ Ojo Deb (Long Axe): Combo ①-1 Angled Swing (rod) -- c1290_王城デブ(長斧):コンボ①~1 斜めに振り上げ(棒)","1290211":"C1290_ Ojo Deb (Long Axe): Combo ①-2 small Saigi (stick) -- c1290_王城デブ(長斧):コンボ①~2 小薙ぎ払い(棒)","1290212":"C1290_ Ojo Deb (Long Axe): Combo ①-3 small Saigi (stick) -- c1290_王城デブ(長斧):コンボ①~3 小薙ぎ払い(棒)","1290220":"C1290_ Ojo Deb (Long Axe): compact and grated (stick) -- c1290_王城デブ(長斧):コンパクトに振りおろし(棒)","1290230":"C1290_ Ojo Deb (Long Axe): Combo ②-1 Saigi (stick) -- c1290_王城デブ(長斧):コンボ②~1 薙ぎ払い (棒)","1290231":"C1290_ Ojo Deb (Long Axe): Combo ②-2 Saigi (stick) -- c1290_王城デブ(長斧):コンボ②~2 薙ぎ払い (棒)","1290232":"C1290_ Ojo Deb (Long Axe): Combo ②-2, grated from the reservoir (stick) -- c1290_王城デブ(長斧):コンボ②~2 ちょい溜めからの振りおろし(棒)","1290240":"C1290_ Ojo Deb (Long Axe): Saigi from the Run (stick) -- c1290_王城デブ(長斧):走りからの薙ぎ払い(棒)","1290260":"C1290_ Ojo Deb (Long Axe): Rotation attack Combo First stage: Rotating section (rod) -- c1290_王城デブ(長斧):回転攻撃コンボ 1段目:回転部(棒)","1290261":"C1290_ Ojo Deb (Long Axe): Rotation attack Combo first stage: Pay part (rod) -- c1290_王城デブ(長斧):回転攻撃コンボ 1段目:払い部(棒)","1290270":"C1290_ Ojo Deb (Long Axe): Rotation attack Combo Second Stage: Rotating section (rod) -- c1290_王城デブ(長斧):回転攻撃コンボ 2段目:回転部(棒)","1290271":"C1290_ Ojo Deb (Long Axe): Rotating attack Combo Second stage: Pay part (rod) -- c1290_王城デブ(長斧):回転攻撃コンボ 2段目:払い部(棒)","1290280":"C1290_ Ojo Deb (Long Axe): Rotation attack Combo Third stage: Rotating section (rod) -- c1290_王城デブ(長斧):回転攻撃コンボ 3段目:回転部(棒)","1290281":"C1290_ Ojo Deb (Long Axe): Rotation attack combo third stage: Pay part (rod) -- c1290_王城デブ(長斧):回転攻撃コンボ 3段目:払い部(棒)","1290300":"C1290_ Ojo Deb (ax Nitori): Combo ① ~ 1 Right axe knocked back against 1 -- c1290_王城デブ(斧二刀流):コンボ①~1 右斧叩き付け1","1290301":"C1290_ Ojo Deb (ax Nitori): Combo ① ~ 2 Right axe knocked back against 2 -- c1290_王城デブ(斧二刀流):コンボ①~2 右斧叩き付け2","1290302":"C1290_ Ojo Deb (ax Nitori): Combo ①-3 left axe knocked back against (strong) -- c1290_王城デブ(斧二刀流):コンボ①~3 左斧叩き付け(強)","1290303":"C1290_ Ojo Deb (ax Nitori): Combo ①-4 Right axe (knocked back against) -- c1290_王城デブ(斧二刀流):コンボ①~4 右斧叩き付け(強)","1290304":"C1290_ Ojo Deb (ax Nitori): both axe grated -- c1290_王城デブ(斧二刀流):両斧振りおろし","1290310":"C1290_ Ojo Deb (ax Nitori): Both axe and grated ② -- c1290_王城デブ(斧二刀流):両斧振りおろし②","1290320":"C1290_ Ojo Deb (ax Nitori): Cut to tuck in both axes -- c1290_王城デブ(斧二刀流):両斧で挟み込むように切る","1290330":"C1290_ Ojo Deb (ax Nitori): Force -- c1290_王城デブ(斧二刀流):フォース","1290340":"C1290_ Ojo Deb (ax Nitori): Combo ② ~ 1 left ax sideways whack -- c1290_王城デブ(斧二刀流):コンボ②~1 左斧横薙ぎ","1290341":"C1290_ Ojo Deb (ax Nitori): Combo ② ~ 2 Nito Lateral Whack -- c1290_王城デブ(斧二刀流):コンボ②~2 二刀横薙ぎ","1290350":"C1290_ Ojo Deb (ax Nitori): Cross-slash with both axes _ right hand -- c1290_王城デブ(斧二刀流):両斧でクロス斬り_右手","1290351":"C1290_ Ojo Deb (ax Nitori): Cross-slash with both axes _ left hand -- c1290_王城デブ(斧二刀流):両斧でクロス斬り_左手","1290360":"C1290_ Ojo Deb (axe Nitori): Reverse cross Slash -- c1290_王城デブ(斧二刀流):前転逆クロス斬り","1290370":"C1290_ Ojo Deb (axe Nitori): Rotating both axe slash -- c1290_王城デブ(斧二刀流):回転両斧斬り","1290380":"C1290_ Ojo Deb (ax Nitori): Ax throwing right -- c1290_王城デブ(斧二刀流):斧投擲 右","1290381":"C1290_ Ojo Deb (ax Nitori): Ax throwing left -- c1290_王城デブ(斧二刀流):斧投擲 左","1300100":"C1300_ Black Knight: left Kesa cut -- c1300_黒騎士:左袈裟切り","1300101":"c1300_ Black Knight: Right Whack -- c1300_黒騎士:右薙ぎ","1300102":"c1300_ Black Knight: thrusting -- c1300_黒騎士:突き","1300103":"C1300_ Black Knight: Swing Down -- c1300_黒騎士:振り下ろし","1300104":"C1300_ Black Knight: Infuser Combo -- c1300_黒騎士:溜め斬り・コンボ","1300110":"C1300_ Black Knight: Infuser, simple -- c1300_黒騎士:溜め斬り・単","1300120":"C1300_ Black Knight: beat with a shield -- c1300_黒騎士:盾で殴る","1300121":"C1300_ Black Knight: Rush Butt -- c1300_黒騎士:突進突き","1300300":"C1300_ Black Knight (oversized sword): Pay: Wait -- c1300_黒騎士(特大剣):払い:待機","1300310":"C1300_ Black Knight (oversized sword): reversal: Payment Attitude -- c1300_黒騎士(特大剣):逆払い:払い姿勢","1300320":"C1300_ Black Knight (oversized sword): Pay: Attitude -- c1300_黒騎士(特大剣):払い:逆払い姿勢","1300330":"C1300_ Black Knight (oversized sword): Rotation swing down: pay attitude -- c1300_黒騎士(特大剣):回転振り下ろし:払い姿勢","1300340":"C1300_ Black Knight (oversized sword): Swing down: posture of reversed payment -- c1300_黒騎士(特大剣):振り下ろし:逆払い姿勢","1300350":"C1300_ Black Knight (oversized sword): Swing Down: Wait -- c1300_黒騎士(特大剣):振り下ろし:待機","1300360":"C1300_ Black Knight (oversized sword): Reverse payment: Swing down posture -- c1300_黒騎士(特大剣):逆払い:振り下ろし姿勢","1300370":"C1300_ Black Knight (oversized sword): poking: Waiting -- c1300_黒騎士(特大剣):突き:待機","1300380":"C1300_ Black Knight (oversized sword): Thrust: Posture -- c1300_黒騎士(特大剣):突き:逆払い姿勢","1300390":"C1300_ Black Knight (oversized sword): rotating Butt: Pay attitude -- c1300_黒騎士(特大剣):回転突き:払い姿勢","1300400":"C1300_ Black Knight (oversized sword): two or three steps to swing -- c1300_黒騎士(特大剣):2、3歩踏み込んで振り下ろす","1300410":"C1300_ Black Knight (oversized sword): two or three steps to poke -- c1300_黒騎士(特大剣):2、3歩踏み込んで突く","1300420":"C1300_ Black Knight (oversized sword): Beat with a shield -- c1300_黒騎士(特大剣):盾で殴る","1300430":"C1300_ Black Knight (oversized sword): Dragon Hunt, one-handed thrust -- c1300_黒騎士(特大剣):竜狩り・片手突き上げ","1300440":"C1300_ Black Knight (oversized sword): Dragon Hunt, two hands swing -- c1300_黒騎士(特大剣):竜狩り・両手振り上げ","1300441":"C1300_ Black Knight (oversized sword): Dragon Hunt, hands Up (preliminary operation) -- c1300_黒騎士(特大剣):竜狩り・両手振り上げ(予備動作)","1300450":"C1300_ Black Knight (oversized sword): behind reverse Whack -- c1300_黒騎士(特大剣):背後逆薙ぎ","1300500":"C1300_ Black Knight (axe): Right Kesa -- c1300_黒騎士(斧):右袈裟","1300510":"C1300_ Black Knight (axe): Left Kesa: Right Kesa Posture -- c1300_黒騎士(斧):左袈裟:右袈裟姿勢","1300520":"C1300_ Black Knight (Axe): swinging: Left Kesa posture -- c1300_黒騎士(斧):振り上げ:左袈裟姿勢","1300530":"C1300_ Black Knight (axe): slams: Left Kesa posture -- c1300_黒騎士(斧):叩きつけ:左袈裟姿勢","1300540":"C1300_ Black Knight (ax): Swing down and simply -- c1300_黒騎士(斧):振り下ろし・単","1300550":"C1300_ Black Knight (axe): swing-up -- c1300_黒騎士(斧):振り上げ・単","1300560":"C1300_ Black Knight (axe): Beat with a shield -- c1300_黒騎士(斧):盾で殴る","1300570":"C1300_ Black Knight (axe): Pay from the left: swing attitude -- c1300_黒騎士(斧):左から払う:振り上げ姿勢","1300580":"C1300_ Black Knight (axe): One or two steps to pay -- c1300_黒騎士(斧):1、2歩踏み込んで払う","1300590":"C1300_ Black Knight (axe): Two, three steps pounding -- c1300_黒騎士(斧):2、3歩踏み込んで叩きつける","1300600":"C1300_ Black Knight (ax): Dragon Hunt, jump and swing down -- c1300_黒騎士(斧):竜狩り・飛び上がって振り下ろし","1300610":"C1300_ Black Knight (axe): Dragon Hunt, hands up -- c1300_黒騎士(斧):竜狩り・両手振り上げ","1300611":"C1300_ Black Knight (axe): Dragon Hunt, hands Up (preliminary operation) -- c1300_黒騎士(斧):竜狩り・両手振り上げ(予備動作)","1300620":"C1300_ Black Knight (AX): Behind continuous attack -- c1300_黒騎士(斧):背後連続攻撃","1300621":"C1300_ Black Knight (AX): Behind continuous attack -- c1300_黒騎士(斧):背後連続攻撃_2撃目","1300630":"C1300_ Black Knight (axe): Slams (feint): Left Kesa Posture -- c1300_黒騎士(斧):叩きつけ(フェイント):左袈裟姿勢","1300700":"C1300_ Black Knight: one poke while guarding -- c1300_黒騎士:ガードしながら突く1","1300701":"C1300_ Black Knight: two poke while guarding -- c1300_黒騎士:ガードしながら突く2","1300702":"c1300_ Black Knight: Poke 3 while guarding -- c1300_黒騎士:ガードしながら突く3","1300703":"C1300_ Black Knight: (spear) Nagi combo -- c1300_黒騎士:(槍)なぎ払い・コンボ","1300710":"C1300_ Black Knight: Strong attack -- c1300_黒騎士:強攻撃","1300720":"C1300_ Black Knight: Two, three steps, poke in the momentum -- c1300_黒騎士:2、3歩踏み込んだ勢いで突く","1300730":"C1300_ Black Knight: (spear) Nagi -- c1300_黒騎士:(槍)なぎ払い・単","1300731":"C1300_ Black Knight: (spear) Nagi 2 -- c1300_黒騎士:(槍)なぎ払い2","1300732":"C1300_ Black Knight: (spear) thrust and Nagi -- c1300_黒騎士:(槍)突き・なぎ払いから","1300740":"C1300_ Black Knight: (spear) Nagi-strong -- c1300_黒騎士:(槍)なぎ払い・強","1300750":"C1300_ Black Knight: (spear) PC diversion/one-handed attack -- c1300_黒騎士:(槍)PC流用・片手攻撃","1300751":"C1300_ Black Knight: (spear) PC diversion/One-handed attack (preliminary operation) -- c1300_黒騎士:(槍)PC流用・片手攻撃 (予備動作)","1300760":"C1300_ Black Knight: (spear) PC Diversion/Jump Slash -- c1300_黒騎士:(槍)PC流用・ジャンプ斬り","1300770":"C1300_ Black Knight: (spear) rush with Shield -- c1300_黒騎士:(槍)盾を構えて突進","1300900":"C1300_ Black Knight: (spear) Shield -- c1300_黒騎士:(槍)盾","1310100":"C1310_ Dark Knight Beast: Sword Up -- c1310_ダークナイトビースト:斬り上げ","1310101":"C1310_ Dark Knight beast: Swinging from the sword -- c1310_ダークナイトビースト:斬り上げからの振りおろし","1310110":"C1310_ Dark Knight beast: Back Up -- c1310_ダークナイトビースト:後ろ斬り上げ","1310111":"C1310_ Dark Knight beast: Swing from behind -- c1310_ダークナイトビースト:後ろ斬り上げからの振りおろし","1310120":"C1310_ Dark Knight Beast: Whack Stage -- c1310_ダークナイトビースト:薙ぎ 初段","1310130":"C1310_ Dark Knight Beast: Whack next stage -- c1310_ダークナイトビースト:薙ぎ 次段","1310140":"C1310_ Dark Knight Beast: Left 90 ° swivel whack -- c1310_ダークナイトビースト:左90°旋回薙ぎ","1310150":"C1310_ Dark Knight Beast: Right 90 ° swivel whack -- c1310_ダークナイトビースト:右90°旋回薙ぎ","1310160":"C1310_ Dark Knight Beast: thrusting -- c1310_ダークナイトビースト:突き","1310170":"C1310_ Dark Knight beast: jumping and attacking -- c1310_ダークナイトビースト:跳びかかり攻撃","1310180":"C1310_ Dark Knight Beast: Breath -- c1310_ダークナイトビースト:ブレス","1310181":"C1310_ Dark Knight Beast: Breath (no damage version) -- c1310_ダークナイトビースト:ブレス(ダメージ無い版)","1310190":"C1310_ Dark Knight Beast: Left Whack -- c1310_ダークナイトビースト:左薙ぎ","1310200":"C1310_ Dark Knight Beast: Rush first stage -- c1310_ダークナイトビースト:ラッシュ1段目","1310201":"C1310_ Dark Knight Beast: Rush second Stage -- c1310_ダークナイトビースト:ラッシュ2段目","1310700":"C1310_ Dark Knight Beast: Cold air (for freezing) -- c1310_ダークナイトビースト:冷気(凍結用)","1310710":"C1310_ Dark Knight Beast: Cold (for decals) -- c1310_ダークナイトビースト:冷気(デカール用)","1320100":"Crystal Spear -- 結晶の槍","1320110":"A mass of drifting crystals -- 漂う結晶の塊","1320111":"MP recovery bullet elders of drifting crystal Mass -- 漂う結晶の塊 古老のMP回復弾","1320130":"Ally Buff -- 味方バフ","1320140":"High Speed straight line magic (impact) -- 高速直線魔法(着弾)","1320141":"High Speed straight line magic (remaining) -- 高速直線魔法(残存)","1320150":"Drenched crystal bullets (parent) -- 降り注ぐ結晶弾(親)","1320151":"Drenched Crystal bullets (child) -- 降り注ぐ結晶弾(子)","1320152":"Falling crystal bullets (explosion) -- 降り注ぐ結晶弾(爆発)","1320160":"Proximity explosion (parent) -- 近接爆発(親)","1320161":"Proximity explosion (child) -- 近接爆発(子)","1320170":"Crystal Wall (search) -- 結晶壁(検索)","1320190":"Crystal Storm Signs -- 結晶の嵐 予兆","1320191":"Crystal Storm Crystal Storm -- 結晶の嵐 結晶の嵐","1320192":"Crystal Storm Impact -- 結晶の嵐 着弾","1320193":"Shock wave during the triggering of crystal storms -- 結晶の嵐 発動時の衝撃波","1330100":"C1330_ Forest Keeper (Long axe): Swing Down (Blade) -- c1330_森の番人(長斧):振り下ろし(刃)","1330101":"C1330_ Forest Keeper (Long Axe): Pay (Blade) (for combo) -- c1330_森の番人(長斧):払い(刃)(コンボ用)","1330110":"C1330_ Forest Keeper (Long Axe): Nagi (Blade) -- c1330_森の番人(長斧):なぎ払い(刃)","1330120":"C1330_ Forest Keeper (Long Axe): Reverse Nagi (Blade) -- c1330_森の番人(長斧):逆なぎ払い(刃)","1330130":"C1330_ Forest Keeper (Long Axe): Execution attack (Blade) -- c1330_森の番人(長斧):処刑攻撃(刃)","1330140":"C1330_ Forest Keeper (Long axe): stepping Down (Blade) -- c1330_森の番人(長斧):踏み込み振り下ろし(刃)","1330150":"C1330_ Forest Keeper (Long Axe): Pre-kick -- c1330_森の番人(長斧):前蹴り","1330160":"C1330_ Forest Keeper (Long Axe): Endure (for counter) -- c1330_森の番人(長斧):耐える(カウンター用)","1330161":"C1330_ Forest Keeper (Long Axe): Head butt -- c1330_森の番人(長斧):頭突き","1330200":"C1330_ Forest Keeper (Long axe): Swing Down (stick) -- c1330_森の番人(長斧):振り下ろし(棒)","1330201":"C1330_ Forest Keeper (Long Axe): Pay (stick) (for combo) -- c1330_森の番人(長斧):払い(棒)(コンボ用)","1330210":"C1330_ Forest Keeper (Long Axe): Nagi (Rod) -- c1330_森の番人(長斧):なぎ払い(棒)","1330220":"C1330_ Forest Keeper (Long Axe): Reverse Nagi (stick) -- c1330_森の番人(長斧):逆なぎ払い(棒)","1330230":"C1330_ Forest Keeper (Long Axe): Execution Attack (rod) -- c1330_森の番人(長斧):処刑攻撃(棒)","1330240":"C1330_ Forest Keeper (Long axe): Stepping down (stick) -- c1330_森の番人(長斧):踏み込み振り下ろし(棒)","1330300":"C1330_ Forest Keeper (sword): DV Combo 1: Swing Down -- c1330_森の番人(大剣):DVコンボ1:振り下ろし","1330301":"C1330_ Forest Keeper (sword): DV Combo 2: Swing Down -- c1330_森の番人(大剣):DVコンボ2:振り下ろし","1330302":"C1330_ Forest Keeper (sword): DV Combo 3: Strong attack -- c1330_森の番人(大剣):DVコンボ3:強攻撃","1330310":"C1330_ Forest Keeper (large sword): both hands guillotine -- c1330_森の番人(大剣):両手ギロチン","1330320":"C1330_ Forest Keeper (sword): Pay (before-left) -- c1330_森の番人(大剣):払い(前~左)","1330330":"C1330_ The Keeper of the Forest (large sword): Reverse payment (front to right) -- c1330_森の番人(大剣):逆払い(前~右)","1330340":"C1330_ Forest Keeper (large sword): Asai -- c1330_森の番人(大剣):足払い","1330350":"The keeper of the C1330_ Forest (sword): Depression attack -- c1330_森の番人(大剣):踏み込み攻撃","1330360":"C1330_ Forest Keeper (sword): Endure (for counter) -- c1330_森の番人(大剣):耐える(カウンター用)","1330361":"C1330_ Forest Keeper (sword): Head Butt -- c1330_森の番人(大剣):頭突き","1340070":"C1340_ dead: Beat up _ First stage -- c1340_蝋の死人:殴る_一段目","1340071":"C1340_ dead: Beat up _ Two -- c1340_蝋の死人:殴る_二段目","1340080":"The dead of c1340_ wax: depression thrust -- c1340_蝋の死人:踏み込み突き刺し","1340090":"Dead of c1340_ Wax: Infuser beating -- c1340_蝋の死人:溜め殴り","1340700":"The dead of c1340_ wax: the arrow of Seoul -- c1340_蝋の死人:ソウルの矢","1340710":"The dead of c1340_ wax: A Spear of disturbed soul -- c1340_蝋の死人:乱れるソウルの槍","1340720":"C1340_ dead: Wax _ knocked back against -- c1340_蝋の死人:蝋弾_叩き付け","1340730":"C1340_ dead: Wax _ Saigi -- c1340_蝋の死人:蝋弾_薙ぎ払い","1350100":"c1350_ slave Spirit (Dagger): Swing down _1 -- c1350_奴隷霊(短剣):振り下ろし_1段目","1350110":"c1350_ slave Spirits (dagger): Swing Down -- c1350_奴隷霊(短剣):振り下ろし_2段目","1350120":"c1350_ slave Spirit (Dagger): Swing Down _3 -- c1350_奴隷霊(短剣):振り下ろし_3段目","1350150":"c1350_ slave Spirits (dagger): both -- c1350_奴隷霊(短剣):両手振り下ろし","1350160":"c1350_ slave Spirits (dagger): Running thrust -- c1350_奴隷霊(短剣):走り突き刺し","1350170":"c1350_ slave Spirit (Dagger): the _1 Stage -- c1350_奴隷霊(短剣):斬り払い_1段目","1350180":"c1350_ slave Spirit (Dagger): The Sword -- c1350_奴隷霊(短剣):斬り払い_2段目","1350300":"c1350_ slave spirits (without legs): lateral payment -- c1350_奴隷霊(足なし):横払い","1350310":"c1350_ slave spirits (without legs): front slash -- c1350_奴隷霊(足なし):正面斬り払い","1350320":"c1350_ slave spirits (without legs): piercing -- c1350_奴隷霊(足なし):突き刺し","1350330":"c1350_ slave spirits (without legs): Rampage shook _1 -- c1350_奴隷霊(足なし):暴れ振り払い_1段目","1350331":"c1350_ slave spirits (without legs): Rampage shook -- c1350_奴隷霊(足なし):暴れ振り払い_2段目","1350340":"c1350_ slave spirits (without legs): falling throw -- c1350_奴隷霊(足なし):落下投げ","1350341":"c1350_ slave spirits (without legs): throwing damage -- c1350_奴隷霊(足なし):投げダメージ","1350400":"c1350_ slave Spirit (Straight Sword): Take the right hand -- c1350_奴隷霊(直剣):右手斬りかかり","1350410":"c1350_ slave Spirit (Straight Sword): Right hand cut back -- c1350_奴隷霊(直剣):右手斬り返し","1350420":"c1350_ slave Spirit (Straight Sword): Right hand Swing -- c1350_奴隷霊(直剣):右手振り下ろし","1350430":"c1350_ slave Spirit (Straight sword): both -- c1350_奴隷霊(直剣):両手振り下ろし","1350440":"c1350_ slave Spirit (Straight sword): The running slash -- c1350_奴隷霊(直剣):走り斬りかかり","1350450":"c1350_ slave Spirit (Straight sword): protruding slash -- c1350_奴隷霊(直剣):突き出し斬り","1350460":"c1350_ Slave Spirits (Straight sword): shook -- c1350_奴隷霊(直剣):振り払い","1360100":"C1360_ Crucifixion dead A: Throwing transition 1 -- c1360_磔亡者A:投げ遷移1","1360110":"C1361_ Crucifixion dead A: throwing transition 2 -- c1361_磔亡者A:投げ遷移2","1360200":"C1362_ Crucifixion dead A: tossed -- c1362_磔亡者A:投げ","1370100":"C1370_ Crucifixion dead B: Thrusting (weakly) _ Tip -- c1370_磔亡者B:突き(弱)_先端","1370101":"C1370_ Crucifixion dead B: Thrusting (weakly) _ Sticky hands-tip -- c1370_磔亡者B:突き(弱)_もち手~先端","1370110":"C1370_ Crucifixion dead B: butting (strong) _ Tip -- c1370_磔亡者B:突き(強)_先端","1370111":"C1370_ Crucifixion dead B: Thrust (strong) _ Sticky hands-tip -- c1370_磔亡者B:突き(強)_もち手~先端","1370120":"C1370_ Crucifixion dead B: Lifting and thrusting _ tip -- c1370_磔亡者B:持ち上げて突き刺し_先端","1370121":"C1370_ Crucifixion dead B: Lifting and thrusting _ sticky hands-tip -- c1370_磔亡者B:持ち上げて突き刺し_もち手~先端","1370130":"C1370_ Crucifixion dead B: Pay in piles _ tip -- c1370_磔亡者B:杭で払う_先端","1370131":"C1370_ Crucifixion dead B: Pay in piles _ Sticky hands-tip -- c1370_磔亡者B:杭で払う_もち手~先端","1370140":"C1370_ Crucifixion dead B: knocked back against to lift _ tip -- c1370_磔亡者B:持ち上げて叩き付け_先端","1370141":"C1370_ Crucifixion dead B: Lifting knocked back against _ Sticky hands-tip -- c1370_磔亡者B:持ち上げて叩き付け_もち手~先端","1370150":"C1370_ Crucifixion dead B: Rush Butt (Continuous) _ Tip -- c1370_磔亡者B:突進突き(連続)_先端","1370151":"C1370_ Crucifixion dead B: Rush Butt (continuous) _ Sticky hands-tip -- c1370_磔亡者B:突進突き(連続)_もち手~先端","1370152":"C1370_ Crucifixion dead B: Rush Butt (Final) _ Tip -- c1370_磔亡者B:突進突き(最終)_先端","1380010":"The priest of the c1380_ snake: beating with a whip (weak) -- c1380_蛇人の司祭:鞭で殴る(弱)","1380020":"C1380_ Snake man priest: Nagi with whips -- c1380_蛇人の司祭:鞭でなぎ払う","1380700":"C1380_ Priest: Magic Attack (weak) -- c1380_蛇人の司祭:魔法攻撃(弱)","1380710":"Priest of the snake c1380_: the Magic Attack (strong) -- c1380_蛇人の司祭:魔法攻撃(強)","1390010":"C1390_ Snake Assassin (short blade): Continuous attack 1-1_ blow -- c1390_蛇人の暗殺者(短刃):連続攻撃1-1_一撃目","1390011":"C1390_ Snake Assassin (short blade): Continuous attack 1-1_ second -- c1390_蛇人の暗殺者(短刃):連続攻撃1-1_二撃目","1390020":"C1390_ Snake Assassin (short blade): Continuous attack 1-2a_ blow -- c1390_蛇人の暗殺者(短刃):連続攻撃1-2A_一撃目","1390021":"C1390_ Snake Assassin (short blade): Continuous attack 1-2a_ second -- c1390_蛇人の暗殺者(短刃):連続攻撃1-2A_二撃目","1390030":"c1390_ (short blade): Rapid Melee attack 1-1 -- c1390_蛇人の暗殺者(短刃):急接近攻撃1-1","1390040":"C1390_ Snake Assassin (short blade): Rapid Melee attack 1-2_ -- c1390_蛇人の暗殺者(短刃):急接近攻撃1-2_一撃目","1390041":"C1390_ Snake Assassin (short blade): Rapid approaching attack 1-2_ second hammer -- c1390_蛇人の暗殺者(短刃):急接近攻撃1-2_二撃目","1390042":"c1390_ (short blade): Quick approaching attack 1-2_ 3 -- c1390_蛇人の暗殺者(短刃):急接近攻撃1-2_三撃目","1390050":"c1390_ Assassin (Short Blade): Rapid Melee attack 1-3a -- c1390_蛇人の暗殺者(短刃):急接近攻撃1-3A","1390060":"C1390_ Snake Assassin (short blade): bit -- c1390_蛇人の暗殺者(短刃):噛み付き","1390070":"c1390_ (Short blade): The Fall attack 1-1 -- c1390_蛇人の暗殺者(短刃):斬り下がり攻撃1-1","1390080":"c1390_ Assassin (Short Blade): A Down-rise attack -- c1390_蛇人の暗殺者(短刃):ダウン起き上がり攻撃","1390090":"C1390_ Snake man Assassin (short blade): Bit (right): from a3000 -- c1390_蛇人の暗殺者(短刃):噛み付き(右前):a3000から","1390100":"C1390_ Snake Assassin (short blade): bit (left): from a3000 -- c1390_蛇人の暗殺者(短刃):噛み付き(左前):a3000から","1390110":"C1390_ Snake man Assassin (short blade): Bit (right): from a3005 -- c1390_蛇人の暗殺者(短刃):噛み付き(右前):a3005から","1390120":"C1390_ Snake Assassin (short blade): bit (left): from a3005 -- c1390_蛇人の暗殺者(短刃):噛み付き(左前):a3005から","1390200":"C1390_ the Assassin (Shorty): Pay: Wait -- c1390_蛇人の暗殺者(ショーテル):払い:待機","1390210":"C1390_ (Shorty): Reverse Payment: A payment attitude -- c1390_蛇人の暗殺者(ショーテル):逆払い:払い姿勢","1390220":"C1390_ (Shorty): Reverse Payment: Wait -- c1390_蛇人の暗殺者(ショーテル):逆払い:待機","1390230":"The assassin of the C1390_ (Shorty): Pay: Attitude -- c1390_蛇人の暗殺者(ショーテル):払い:逆払い姿勢","1390240":"The assassin of the C1390_ (Shorty): Deferred payment: A reversed payment stance -- c1390_蛇人の暗殺者(ショーテル):遅延払い:逆払い姿勢","1390250":"The assassin of the c1390_ Snake (Shorty): Quick approaching attack -- c1390_蛇人の暗殺者(ショーテル):急接近攻撃","1390260":"C1390_ The assassin of the Serpent (Shorty): Up and down attack -- c1390_蛇人の暗殺者(ショーテル):ダウン起き上がり攻撃","1390270":"C1390_ Serpent Assassin (Shorty): Bit from guard break -- c1390_蛇人の暗殺者(ショーテル):ガードブレイクからの噛み付き","1390280":"The assassin of the c1390_ Snake (Shorty): Swing Down -- c1390_蛇人の暗殺者(ショーテル):振り下ろし","1390400":"The assassin of C1390_ (common): Breath -- c1390_蛇人の暗殺者(共通):ブレス","1390410":"Assassins of C1390_ (common): Pay bit: Wait -- c1390_蛇人の暗殺者(共通):払い噛み付き:待機","1390411":"C1390_ Serpent Assassin (Common): bit: a3016 -- c1390_蛇人の暗殺者(共通):払い噛み付き:a3016から","1390500":"The assassin of the c1390_ Snake (Shorty): Guard -- c1390_蛇人の暗殺者(ショーテル):ガード","1390600":"C1390_ Snake Assassin (short blade): Paris Throwing damage -- c1390_蛇人の暗殺者(短刃):パリィ投げダメージ","1390900":"C1390_ Snake Assassin (short blade): Paris -- c1390_蛇人の暗殺者(短刃):パリィする","1391010":"Assassin of the C1391_ (Kusarigama): A continuous attack 1-1 -- c1391_蛇人の暗殺者(鎖鎌):連続攻撃1-1","1391020":"Assassin of the C1391_ (Kusarigama): A continuous attack 1-2 -- c1391_蛇人の暗殺者(鎖鎌):連続攻撃1-2","1391030":"C1391_ (Kusarigama): Kusarigama Swing (Medium range) -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌振り下ろし(中距離)","1391031":"C1391_ (Kusarigama): Kusarigama Swing (medium range) [Chara Atari No] -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌振り下ろし(中距離)【キャラアタリ無】","1391032":"The assassin of the C1391_ (Kusarigama): Kusarigama Swing (medium range) [Return sickle] -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌振り下ろし(中距離)【戻り鎌】","1391040":"C1391_ (Kusarigama): Kusarigama Swing (long distance) -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌振り下ろし(遠距離)","1391041":"Assassins of C1391_ (Kusarigama): Kusarigama (long distance) [Chara Atari No] -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌振り下ろし(遠距離)【キャラアタリ無】","1391042":"The assassin of the C1391_ (Kusarigama): Kusarigama (long distance) [return sickle] -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌振り下ろし(遠距離)【戻り鎌】","1391050":"C1391_ Snake man Assassin (Kusarigama): Kusarigama -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌払い","1391051":"Assassins of C1391_ (Kusarigama): Kusarigama (Chain part) -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌払い【鎖部分】","1391052":"C1391_ Serpent Assassin (Kusarigama): Kusarigama (through sickle) -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌払い【貫通鎌】","1391060":"C1391_ Snake man Assassin (Kusarigama): Poison Mist -- c1391_蛇人の暗殺者(鎖鎌):毒霧","1391070":"C1391_ (Kusarigama): A reverse payment (wait) -- c1391_蛇人の暗殺者(鎖鎌):逆払い(待機)","1391080":"Assassins of C1391_ (Kusarigama): Swing Down (reverse posture) -- c1391_蛇人の暗殺者(鎖鎌):振り下ろし(逆払い姿勢)","1391090":"C1391_ Serpent Assassin (Kusarigama): Kusarigama (a3004 attitude) -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌払い(a3004姿勢)","1391091":"C1391_ (Kusarigama): Kusarigama (a3004 posture) [Chain part] -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌払い(a3004姿勢)【鎖部分】","1391092":"Assassins of C1391_ (Kusarigama): Kusarigama (a3004 posture) [through sickle] -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌払い(a3004姿勢)【貫通鎌】","1391100":"C1391_ Snake man Assassin (Kusarigama): Right side reverse payment -- c1391_蛇人の暗殺者(鎖鎌):右側面逆払い","1391110":"C1391_ Snake Assassin (kusarigama): Left side payment -- c1391_蛇人の暗殺者(鎖鎌):左側面払い","1391120":"C1391_ Snake man Assassin (Kusarigama): Front bit -- c1391_蛇人の暗殺者(鎖鎌):正面噛み付き","1391130":"C1391_ (Kusarigama): Kusarigama Swing down and strong (medium distance) -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌振り下ろし・強(中距離)","1391131":"Assassins of C1391_ (Kusarigama): Kusarigama, strong (medium range) [Chara Atari No] -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌振り下ろし・強(中距離)【キャラアタリ無】","1391132":"The assassin of the C1391_ (Kusarigama): Kusarigama Swing down and strong (medium range) [Return sickle] -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌振り下ろし・強(中距離)【戻り鎌】","1391140":"The assassin of the C1391_ (Kusarigama): Kusarigama Swing (medium distance) [Return sickle] -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌振り下ろし(中遠距離)【戻り鎌】","1391141":"The assassin of the C1391_ (Kusarigama): Kusarigama (long distance) [return sickle] -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌振り下ろし(遠距離)【戻り鎌】","1391150":"The assassin of the C1391_ (Kusarigama): Kusarigama Swing down and strong (medium distance) [Return sickle] -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌振り下ろし・強(中遠距離)【戻り鎌】","1391151":"The assassin of the C1391_ (Kusarigama): Kusarigama and strong (long distance) [return sickle] -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌振り下ろし・強(遠距離)【戻り鎌】","1391200":"C1391_ Snake man Assassin (Kusarigama): Throwing -- c1391_蛇人の暗殺者(鎖鎌):投げ","1391201":"C1391_ Snake man Assassin (Kusarigama): Throwing damage -- c1391_蛇人の暗殺者(鎖鎌):投げダメージ","1410100":"c1410: Silver Knight: Slashing 1 (sword) -- c1410:銀騎士:斬撃1(剣)","1410101":"c1410: Silver Knight: Slashing 2 (sword) -- c1410:銀騎士:斬撃2(剣)","1410102":"c1410: Silver Knight: Slashing 3 (sword) -- c1410:銀騎士:斬撃3・連(剣)","1410103":"c1410: Silver Knight: Slashing 3/strength (sword) -- c1410:銀騎士:斬撃3・強(剣)","1410104":"c1410: Silver Knight: Thrust: Reverse Kesa Posture -- c1410:銀騎士:突き:逆袈裟姿勢","1410110":"c1410: Silver Knight: Depression Slashing (sword) -- c1410:銀騎士:踏み込み斬撃(剣)","1410120":"c1410: Silver Knight: Swing Down (sword) -- c1410:銀騎士:振り下ろし(剣)","1410130":"c1410: Silver Knight: Thrusting (sword) -- c1410:銀騎士:突き(剣)","1410140":"c1410: Silver Knights: Breaking with shields -- c1410:銀騎士:盾で崩す","1410150":"c1410: Silver Knight: Jump swing Down: Wait -- c1410:銀騎士:ジャンプ振り下ろし:待機","1410151":"c1410: Silver Knight: Jump swing Down: a3015 posture -- c1410:銀騎士:ジャンプ振り下ろし:a3015姿勢","1410160":"c1410: Silver Knight: Twist behind: Wait -- c1410:銀騎士:後ろひねり斬り:待機","1410170":"c1410: Silver Knight: Slash: Wait -- c1410:銀騎士:斬り下がり:待機","1410200":"c1410: Silver Knight: Thrust 1 (spear) -- c1410:銀騎士:突き1(槍)","1410201":"c1410: Silver Knight: Thrust 2 (Spear) -- c1410:銀騎士:突き2(槍)","1410202":"c1410: Silver Knight: Thrust 3/strong (spear) -- c1410:銀騎士:突き3・強(槍)","1410210":"c1410: Silver Knight: a stepping Spear -- c1410:銀騎士:踏み込み突き(槍)","1410220":"c1410: Silver Knight: Nagi (Spear) -- c1410:銀騎士:なぎ払い・強(槍)","1410221":"c1410: Silver Knight: Thrust from Nagi (spear) -- c1410:銀騎士:なぎ払いから突き(槍)","1410230":"c1410: Silver Knight: Destroy with Shield (spear) -- c1410:銀騎士:盾で崩す(槍)","1410240":"c1410: Silver Knight: Step back -- c1410:銀騎士:バックステップ払い","1410250":"c1410: Silver Knight: Small boost thrust -- c1410:銀騎士:小ブースト突き","1410260":"c1410: Silver Knight: Dragon Hunt thrust 1 -- c1410:銀騎士:竜狩り突き1","1410261":"c1410: Silver Knight: Dragon Hunt thrust 2 -- c1410:銀騎士:竜狩り突き2","1410270":"c1410: Silver Knight: Behind both hands: waiting -- c1410:銀騎士:背後両手払い:待機","1410300":"c1410: Silver Knight: Miyakonojo -- c1410:銀騎士:大弓発射","1410310":"c1410: Silver Knight: Miyakonojo -- c1410:銀騎士:大弓強射","1410500":"c1410: Silver Knight Guard -- c1410:銀騎士ガード","1470010":"c1470_ Wheel skeleton: Beat by hand (right hand) -- c1470_車輪スケルトン:手で殴る(右手)","1470011":"c1470_ Wheel skeleton: Beat by hand (left hand) -- c1470_車輪スケルトン:手で殴る(左手)","1470020":"c1470_ wheel skeleton: transformed into a wheel -- c1470_車輪スケルトン:車輪に変身","1470100":"c1470_ Wheel Skeleton: rotation -- c1470_車輪スケルトン:回転","2000010":"Wolf of c2000_: a flying attack -- c2000_蝕のオオカミ:飛びかかり攻撃","2000020":"Wolf of c2000_: Tackle attack -- c2000_蝕のオオカミ:タックル攻撃","2000030":"Wolf of c2000_: feint bite attack -- c2000_蝕のオオカミ:フェイント噛みつき攻撃","2000040":"Wolf of c2000_: Forward bit -- c2000_蝕のオオカミ:前方噛み付き","2000050":"Wolf of c2000_: Inverted attack on the belly -- c2000_蝕のオオカミ:腹下反転攻撃","2000060":"Wolf of c2000_: Right reversal attack -- c2000_蝕のオオカミ:右反転攻撃","2000070":"Wolf of c2000_: Left reversal attack -- c2000_蝕のオオカミ:左反転攻撃","2000080":"Wolf of c2000_: Falling bit -- c2000_蝕のオオカミ:噛み付き下がり","2000090":"Wolf of c2000_: bit back step -- c2000_蝕のオオカミ:噛み付きバックステップ","2000100":"Wolf of c2000_: Forward bit 2 -- c2000_蝕のオオカミ:前方噛み付き2","2000160":"Wolf of c2000_: 180 degrees turn -- c2000_蝕のオオカミ:180度ターン","2000170":"Wolf of c2000_: Right -- c2000_蝕のオオカミ:右旋回","2000180":"Wolf of c2000_: Left -- c2000_蝕のオオカミ:左旋回","2000190":"C2000_ 's Wolf: Walking _ before -- c2000_蝕のオオカミ:歩行_前","2000200":"Wolf of c2000_: Running before -- c2000_蝕のオオカミ:走行_前","2000300":"c2000_ (heat up): depression right Saigi -- c2000_蝕のオオカミ(ヒートアップ):踏み込み右薙ぎ払い","2000310":"c2000_ Wolf (heat up): Melee Combo: Right Saigi -- c2000_蝕のオオカミ(ヒートアップ):近接コンボ:右薙ぎ払い","2000320":"c2000_ Wolf (heat up): Melee Combo: Left Saigi -- c2000_蝕のオオカミ(ヒートアップ):近接コンボ:左薙ぎ払い","2000330":"c2000_ Wolf (heat up): Melee Combo: knocked back against -- c2000_蝕のオオカミ(ヒートアップ):近接コンボ:叩き付け","2000350":"c2000_ (heat up): attack from a 180-degree turn -- c2000_蝕のオオカミ(ヒートアップ):180度ターンからの攻撃","2000360":"c2000_ Wolf (heat up): Dash left -- c2000_蝕のオオカミ(ヒートアップ):ダッシュ左切り抜け","2000370":"c2000_ Wolf (heat up): Melee Combo: Left Saigi right 90 ° turn -- c2000_蝕のオオカミ(ヒートアップ):近接コンボ:左薙ぎ払い右90°ターン","2000380":"c2000_ Wolf (heat up): Melee Combo: Right Saigi left 90 ° turn -- c2000_蝕のオオカミ(ヒートアップ):近接コンボ:右薙ぎ払い左90°ターン","2000390":"Wolf of c2000_ (heat up): Left Kiri left 180 ° turn -- c2000_蝕のオオカミ(ヒートアップ):左切り払い左180°ターン","2000400":"c2000_ Wolf (heat up): Long distance Combo: Jump Butt -- c2000_蝕のオオカミ(ヒートアップ):遠距離コンボ:ジャンプ突き","2000410":"Wolf of c2000_ (heat up): Long distance Combo: knocked back against -- c2000_蝕のオオカミ(ヒートアップ):遠距離コンボ:叩き付け","2000420":"Wolf of c2000_ (heat up): Long distance Combo: Left Saigi -- c2000_蝕のオオカミ(ヒートアップ):遠距離コンボ:左薙ぎ払い","2000430":"Wolf of c2000_ (heat up): 180 degree turn attack -- c2000_蝕のオオカミ(ヒートアップ):180度ターン攻撃","2000440":"Wolf of c2000_ (heat up): Right reversal attack -- c2000_蝕のオオカミ(ヒートアップ):右反転攻撃","2000450":"Wolf of c2000_ (heat up): Left reversal attack -- c2000_蝕のオオカミ(ヒートアップ):左反転攻撃","2020010":"C2020_ dead Dog (normal): Bite 1 -- c2020_亡者犬(通常):噛みつき1","2020011":"C2020_ dead Dog (normal): Bite 2 -- c2020_亡者犬(通常):噛みつき2","2020020":"C2020_ dead Dog (normal): The flight from the suspended state -- c2020_亡者犬(通常):止まった状態からの飛びかかり","2020030":"C2020_ dead Dog (normal): Jump from running -- c2020_亡者犬(通常):走行からの飛びかかり","2020040":"C2020_ dead Dog (normal): bit combo First stage: from the Run -- c2020_亡者犬(通常):噛み付きコンボ1段目:走りから","2020050":"C2020_ dead Dog (normal): jump (Long distance) -- c2020_亡者犬(通常):飛びかかり(遠距離)","2020060":"C2020_ dead Dog (usually): from running (long distance) -- c2020_亡者犬(通常):飛びかかり(遠距離):走りから","2020070":"C2020_ dead Dog (normal): left curve bit -- c2020_亡者犬(通常):左カーブ噛み付き","2020080":"C2020_ dead Dog (normal): right curve bit -- c2020_亡者犬(通常):右カーブ噛み付き","2020110":"c2290_ Salivan Guard Dog: Bite 1 -- c2290_サリヴァーンの番犬:噛みつき1","2020111":"c2290_ Salivan watchdog: Bite 2 -- c2290_サリヴァーンの番犬:噛みつき2","2020120":"C2290_ Salivan's Guard dog: jumping from a parked state -- c2290_サリヴァーンの番犬:止まった状態からの飛びかかり","2020130":"C2290_ Salivan's Guard Dog: jumping from running -- c2290_サリヴァーンの番犬:走行からの飛びかかり","2020140":"c2290_ Salivan watchdog: bit combo first stage: from the Run -- c2290_サリヴァーンの番犬:噛み付きコンボ1段目:走りから","2020150":"c2290_ Salivan Guard Dog: Jump (long distance) -- c2290_サリヴァーンの番犬:飛びかかり(遠距離)","2020160":"c2290_ Salivan Guard Dog: Jump (Long distance): from running -- c2290_サリヴァーンの番犬:飛びかかり(遠距離):走りから","2020170":"C2290_ Salivan guard dogs: Left curve bit -- c2290_サリヴァーンの番犬:左カーブ噛み付き","2020180":"c2290_ Salivan Guard Dog: right curve bit -- c2290_サリヴァーンの番犬:右カーブ噛み付き","2021010":"C2021_ dead Dog (small): Bite 1 -- c2021_亡者犬(小):噛みつき1","2021011":"C2021_ dead Dog (small): Bite 2 -- c2021_亡者犬(小):噛みつき2","2021020":"C2021_ dead Dog (small): Jump from a stopped state -- c2021_亡者犬(小):止まった状態からの飛びかかり","2021030":"C2021_ dead Dog (small): Jump from running -- c2021_亡者犬(小):走行からの飛びかかり","2021040":"C2021_ dead Dog (small): bit combo First stage: from the Run -- c2021_亡者犬(小):噛み付きコンボ1段目:走りから","2021050":"C2021_ dead Dog (small): jump (Long distance) -- c2021_亡者犬(小):飛びかかり(遠距離)","2021060":"C2021_ dead Dog (small): from running (long distance) -- c2021_亡者犬(小):飛びかかり(遠距離):走りから","2021070":"C2021_ dead Dog (small): left curve bit -- c2021_亡者犬(小):左カーブ噛み付き","2021080":"C2021_ dead Dog (small): right curve bit -- c2021_亡者犬(小):右カーブ噛み付き","2030110":"c2030_ Salivan Reaper: Combo 1-1 One-handed rounding ① -- c2030_サリヴァーンの死神:コンボ1-1片手切り上げ①","2030120":"c2030_ Salivan Reaper: Combo 1-2 one handed rounding ② -- c2030_サリヴァーンの死神:コンボ1-2片手切り上げ②","2030130":"c2030_ Salivan Reaper: Combo 1-3 Hand Saigi -- c2030_サリヴァーンの死神:コンボ1-3片手薙ぎ払い","2030140":"C2030_ Salivan's death: a distance-packed attack -- c2030_サリヴァーンの死神:距離詰め攻撃","2030150":"c2030_ Salivan Reaper: Combo 2-1 reverse Kesa cut ① -- c2030_サリヴァーンの死神:コンボ2-1逆袈裟切り①","2030160":"c2030_ Salivan Reaper: Combo 2-2 reverse Kesa cut ② -- c2030_サリヴァーンの死神:コンボ2-2逆袈裟切り②","2030170":"c2030_ Salivan Reaper: Combo 2-3 Hand Rounding -- c2030_サリヴァーンの死神:コンボ2-3片手切り上げ","2030180":"c2030_ Salivan Reaper: Combo 2-4 Hand Saigi -- c2030_サリヴァーンの死神:コンボ2-4片手薙ぎ払い","2030190":"C2030_ Salivan's death: Strong attack -- c2030_サリヴァーンの死神:強攻撃","2030210":"C2030_ Salivan's death: the Revolving arts -- c2030_サリヴァーンの死神:回転アーツ","2030220":"The death of c2030_ Salivan: the rotating arts (finish) -- c2030_サリヴァーンの死神:回転アーツ(フィニッシュ)","2030310":"c2030_ Salivan Reaper: Combo 1-1 Both hands rounded up ①: Blade -- c2030_サリヴァーンの死神:コンボ1-1両手切り上げ①:刃","2030311":"c2030_ Salivan Reaper: Combo 1-1 Both hands rounded up ①: hilt -- c2030_サリヴァーンの死神:コンボ1-1両手切り上げ①:柄","2030320":"c2030_ Salivan Reaper: Combo 1-2 Hands up ②: Blade -- c2030_サリヴァーンの死神:コンボ1-2両手切り上げ②:刃","2030321":"c2030_ Salivan Reaper: Combo 1-2 hands-up ②: Handle -- c2030_サリヴァーンの死神:コンボ1-2両手切り上げ②:柄","2030330":"c2030_ Salivan Reaper: Combo 1-3 One handed rounding ①: Blade -- c2030_サリヴァーンの死神:コンボ1-3片手切り上げ①:刃","2030331":"c2030_ Salivan Reaper: Combo 1-3 One handed rounding ①: hilt -- c2030_サリヴァーンの死神:コンボ1-3片手切り上げ①:柄","2030340":"c2030_ Salivan Reaper: Combo 1-4 hand rounded ②: Blade -- c2030_サリヴァーンの死神:コンボ1-4片手切り上げ②:刃","2030341":"c2030_ Salivan Reaper: Combo 1-4 One handed rounding ②: hilt -- c2030_サリヴァーンの死神:コンボ1-4片手切り上げ②:柄","2030350":"c2030_ Salivan Reaper: Combo 1-5 Two-handed devaluation: Blade -- c2030_サリヴァーンの死神:コンボ1-5両手切り下げ:刃","2030351":"The death of c2030_ Salivan: Combo 1-5 Two-handed devaluation: hilt -- c2030_サリヴァーンの死神:コンボ1-5両手切り下げ:柄","2030360":"c2030_ Salivan Reaper: Combo 2-1 hands down: Blade -- c2030_サリヴァーンの死神:コンボ2-1両手踏み込み切り:刃","2030361":"c2030_ Salivan Reaper: Combo 2-1 hands down: Handle -- c2030_サリヴァーンの死神:コンボ2-1両手踏み込み切り:柄","2030370":"c2030_ Salivan Reaper: Combo 2-2 hand Saigi: Blade -- c2030_サリヴァーンの死神:コンボ2-2片手薙ぎ払い:刃","2030371":"c2030_ Salivan Reaper: Combo 2-2 hand Saigi: Hilt -- c2030_サリヴァーンの死神:コンボ2-2片手薙ぎ払い:柄","2030380":"C2030_ Salivan's death: two-handed distance-packed attack: Blade -- c2030_サリヴァーンの死神:両手距離詰め攻撃:刃","2030381":"C2030_ Salivan's death: two-handed distance-packed attack: hilt -- c2030_サリヴァーンの死神:両手距離詰め攻撃:柄","2030390":"c2030_ Salivan Reaper: Combo 3-1 Two-handed attack: Blade -- c2030_サリヴァーンの死神:コンボ3-1両手引き寄せ攻撃:刃","2030391":"c2030_ Salivan Reaper: Combo 3-1 hand-drawn attack: hilt -- c2030_サリヴァーンの死神:コンボ3-1両手引き寄せ攻撃:柄","2030400":"c2030_ Salivan Reaper: Combo 3-2 both hands Saigi: Blade -- c2030_サリヴァーンの死神:コンボ3-2両手薙ぎ払い:刃","2030401":"c2030_ Salivan Reaper: Combo 3-2 Both hands Saigi: hilt -- c2030_サリヴァーンの死神:コンボ3-2両手薙ぎ払い:柄","2030410":"c2030_ Salivan Reaper: Combo 3-3 Two-handed lift: Blade -- c2030_サリヴァーンの死神:コンボ3-3両手斬り上げ:刃","2030411":"C2030_ Salivan's death: Combo 3-3 Hands up: Handle -- c2030_サリヴァーンの死神:コンボ3-3両手斬り上げ:柄","2030420":"The death of c2030_ Salivan: A round attack: Blade -- c2030_サリヴァーンの死神:回りこみ攻撃:刃","2030421":"The death of c2030_ Salivan: A round attack: pattern -- c2030_サリヴァーンの死神:回りこみ攻撃:柄","2030430":"c2030_ Salivan Reaper: Extrusion attack: Blade -- c2030_サリヴァーンの死神:押し出し攻撃:刃","2030431":"c2030_ Salivan Reaper: Extruded attack: Hilt -- c2030_サリヴァーンの死神:押し出し攻撃:柄","2030440":"C2030_ Salivan's Reaper: Distance packed strong attack: Blade -- c2030_サリヴァーンの死神:距離詰め強攻撃:刃","2030450":"C2030_ Salivan's death: [Miracle] dark Moon Light Sword -- c2030_サリヴァーンの死神:【奇跡】暗月の光の剣","2030900":"C2030_ Salivan's Reaper: (spear) Shield -- c2030_サリヴァーンの死神:(槍)盾","2040100":"Right hand slams -- 右手叩きつけ","2040110":"Left hand slams -- 左手叩きつけ","2040120":"Right hand finish -- 右手フィニッシュ","2040130":"Rising body Press -- 立ち上がりボディプレス","2040140":"Right direction -- 倒れ込み(右方向)","2040150":"Collapsed (right direction) ② -- 倒れ込み(右方向)②","2040160":"Fall Down (left) -- 倒れ込み(左方向)","2040170":"Collapsed (left direction) ② -- 倒れ込み(左方向)②","2040180":"Butt Press -- お尻プレス","2040200":"Start throwing -- 投げ始動","2040201":"Throwing attack (no pressure) -- 投げ攻撃(圧迫ダメ―ジ)","2040202":"Throwing attack (finish) -- 投げ攻撃(フィニッシュ)","2040210":"Right payment -- 右払い","2040220":"Left payment -- 左払い","2060010":"Right whack -- 右手薙ぎ","2060020":"Left hand Whack -- 左手薙ぎ","2060030":"Throwing start technique (jumped) -- 投げ始動技(飛びつき)","2060040":"Throwing start Technique (melee) -- 投げ始動技(近接)","2060070":"Rush _1 -- ラッシュ_1段目","2060080":"Melee Maggots -- 近接ウジ吐き","2060090":"Body throwing -- 本体出現投げ","2060100":"Throwing attack (pressure damage) -- 投げ攻撃(圧迫ダメージ)","2070010":"C2070_ Prisoner of the Dungeon (bare hands): Right hand scratching ① -- c2070_地下牢の囚人(素手):右手引っ掻き①","2070020":"C2070_ Prisoner of the Dungeon (bare hands): Right hand scratching ② -- c2070_地下牢の囚人(素手):右手引っ掻き②","2070030":"Prisoner of c2070_ Dungeon (bare hands): Left hand scratching -- c2070_地下牢の囚人(素手):左手引っ掻き","2070040":"Prisoner of c2070_ Dungeon (bare hands): continuous scratching ① -- c2070_地下牢の囚人(素手):連続引っ掻き①","2070041":"Prisoner of c2070_ Dungeon (bare hands): continuous scratching ② -- c2070_地下牢の囚人(素手):連続引っ掻き②","2070042":"Prisoner of c2070_ Dungeon (bare hands): continuous scratching ③ -- c2070_地下牢の囚人(素手):連続引っ掻き③","2070043":"Prisoner of c2070_ Dungeon (bare hands): continuous scratching ④ -- c2070_地下牢の囚人(素手):連続引っ掻き④","2070060":"C2070_ Prisoner of the Dungeon (bare hands): Grab attack ① -- c2070_地下牢の囚人(素手):掴み攻撃①","2070070":"C2070_ Prisoner of the Dungeon (bare hands): Grab attack ② -- c2070_地下牢の囚人(素手):掴み攻撃②","2070080":"Prisoner of the c2070_ Dungeon (bare hands): Fall attack -- c2070_地下牢の囚人(素手):倒れ込み攻撃","2070090":"C2070_ Prisoner of the Dungeon (bare hands): jumping -- c2070_地下牢の囚人(素手):跳びかかり","2070200":"Prisoner of the C2070_ Dungeon (Spear): poked ① -- c2070_地下牢の囚人(槍):突き①","2070210":"Prisoner of the C2070_ Dungeon (Spear): poked ② -- c2070_地下牢の囚人(槍):突き②","2070220":"C2070_ Prisoner of the Dungeon (Spear): Thrust down -- c2070_地下牢の囚人(槍):突き下ろし","2070230":"Prisoner of the C2070_ Dungeon (spear): Saigi -- c2070_地下牢の囚人(槍):薙ぎ払い","2070240":"Prisoner of c2070_ Dungeon (Spear): Left hand scratching -- c2070_地下牢の囚人(槍):左手引っ掻き","2070260":"Prisoner of the C2070_ Dungeon (Spear): Dragon Weapon (weapon) -- c2070_地下牢の囚人(槍):ドラゴンウェポン(武器)","2070400":"Prisoner of the c2070_ Dungeon (Dagger): Crossing ① -- c2070_地下牢の囚人(短剣):横切り①","2070410":"Prisoner of the c2070_ Dungeon (Dagger): Crossing ② -- c2070_地下牢の囚人(短剣):横切り②","2070420":"Prisoner of the c2070_ Dungeon (Dagger): Crossing ③ -- c2070_地下牢の囚人(短剣):横切り③","2070430":"Prisoner of the c2070_ Dungeon (Dagger): Cut down ① -- c2070_地下牢の囚人(短剣):切り下ろし①","2070440":"Prisoner of the c2070_ Dungeon (Dagger): Cut down ② -- c2070_地下牢の囚人(短剣):切り下ろし②","2070450":"Prisoner of the c2070_ Dungeon (Dagger): Continuous thrust ① -- c2070_地下牢の囚人(短剣):連続突き①","2070451":"Prisoner of the c2070_ Dungeon (Dagger): Continuous thrust ② -- c2070_地下牢の囚人(短剣):連続突き②","2070452":"Prisoner of the c2070_ Dungeon (Dagger): Continuous thrust ③ -- c2070_地下牢の囚人(短剣):連続突き③","2070470":"Prisoner of c2070_ Dungeon (Dagger): Continuous slash ① -- c2070_地下牢の囚人(短剣):連続斬り①","2070471":"Prisoner of c2070_ Dungeon (Dagger): Continuous slash ② -- c2070_地下牢の囚人(短剣):連続斬り②","2070472":"Prisoner of c2070_ Dungeon (Dagger): Continuous slash ③ -- c2070_地下牢の囚人(短剣):連続斬り③","2070473":"Prisoner of c2070_ Dungeon (Dagger): Continuous slash ④ -- c2070_地下牢の囚人(短剣):連続斬り④","2070700":"Breath -- ブレス","2070710":"Dragon Weapon (Magic) -- ドラゴンウェポン(魔法)","2080100":"C2080_ dead Dog (maggots belly): Bite 1 -- c2080_亡者犬(蛆腹):噛みつき1","2080110":"C2080_ dead Dog (maggots belly): Bite 2 -- c2080_亡者犬(蛆腹):噛みつき2","2080120":"C2080_ dead Dog (maggots belly): Bite rush -- c2080_亡者犬(蛆腹):噛みつきラッシュ","2080130":"C2080_ dead Dog (Maggots belly): Poison blood spitting -- c2080_亡者犬(蛆腹):毒血吐き","2080140":"C2080_ dead Dog (maggots belly): throwing transition -- c2080_亡者犬(蛆腹):投げ遷移","2080141":"C2080_ dead Dog (maggots belly): throwing (squeezing) -- c2080_亡者犬(蛆腹):投げ(圧迫)","2090100":"c2090_ Dragon: Lining -- c2090_竜の御使:裏打ち","2090110":"c2090_ Dragon: Attack _1 on the spot -- c2090_竜の御使:その場で伸びる攻撃_1撃目","2090111":"c2090_ Dragon: Attack on the spot -- c2090_竜の御使:その場で伸びる攻撃_2撃目","2090120":"The use of the c2090_ Dragon: a stretch attack -- c2090_竜の御使:伸びる攻撃","2090130":"The use of the c2090_ Dragon: Thrusting stick -- c2090_竜の御使:杖突き刺し","2090140":"The c2090_ of the Dragon: the tail payment _ the whole tail -- c2090_竜の御使:尻尾払い_尻尾全体","2090141":"c2090_ Dragon: Tail tip -- c2090_竜の御使:尻尾払い_尻尾先端","2090150":"The use of the c2090_ Dragon: the reservoir beating -- c2090_竜の御使:溜め叩き潰し","2090160":"c2090_ Dragon: Additional payment -- c2090_竜の御使:追加払い","2090170":"c2090_ Dragon: knocked back against -- c2090_竜の御使:叩き付け","2090180":"The use of the c2090_ Dragon: trampling weapons -- c2090_竜の御使:踏みつけ_武器","2090181":"The use of the c2090_ Dragon: trampled left foot -- c2090_竜の御使:踏みつけ_左足","2090182":"The use of c2090_ Dragon: trampling _ right foot -- c2090_竜の御使:踏みつけ_右足","2090183":"The use of the c2090_ Dragon: Trampling _ Body -- c2090_竜の御使:踏みつけ_身体","2090190":"c2090_ Dragon: Baby -- c2090_竜の御使:あかちゃんつぶし","2090300":"c2090_ Dragon: Neck whack Bit -- c2090_竜の御使:首薙ぎ噛み付き","2090301":"c2090_ Dragon: Neck whack Bit chase -- c2090_竜の御使:首薙ぎ噛み付き・追撃","2090310":"c2090_ Dragon: Front Jump bit _ mouth -- c2090_竜の御使:前ジャンプ噛み付き_口","2090311":"c2090_ Dragon: Front Jump bit _ left hand -- c2090_竜の御使:前ジャンプ噛み付き_左手","2090312":"c2090_ Dragon: Front Jump bit _ right hand -- c2090_竜の御使:前ジャンプ噛み付き_右手","2090313":"c2090_ Dragon: Front jump bit body -- c2090_竜の御使:前ジャンプ噛み付き_身体","2090320":"c2090_ Dragon: Crush -- c2090_竜の御使:叩き潰し","2090330":"c2090_ Dragon: Whack Bit _ whack -- c2090_竜の御使:薙ぎ噛み付き_薙ぎ","2090331":"c2090_ Dragon: Whack bit _ bite -- c2090_竜の御使:薙ぎ噛み付き_噛みつき","2090340":"The use of c2090_ Dragon: Rush -- c2090_竜の御使:突進","2090341":"C2090_ Dragon: Rush _ Bite -- c2090_竜の御使:突進_噛みつき","2090350":"c2090_ Dragon: Through inversion _ bite -- c2090_竜の御使:通り抜け反転_噛みつき","2090351":"The use of the c2090_ Dragon: through inversion _ body -- c2090_竜の御使:通り抜け反転_身体","2090360":"c2090_ Dragon: Tail Saigi 360 ° _ Tail -- c2090_竜の御使:尻尾薙ぎ払い360°_尻尾","2090361":"c2090_ Dragon: 360 ° _ Body Saigi Tail -- c2090_竜の御使:尻尾薙ぎ払い360°_身体","2090370":"The Angel of the c2090_ Dragon: Tail turned tail -- c2090_竜の御使:尻尾振り向き_尻尾","2090371":"c2090_ Dragon: Tail turned _ slams -- c2090_竜の御使:尻尾振り向き_叩きつけ","2090380":"c2090_ Dragon: Standing rampage _ Bite -- c2090_竜の御使:立ち暴れ_噛みつき","2090381":"c2090_ Dragon: Standing rampage _1 -- c2090_竜の御使:立ち暴れ_1撃目","2090382":"c2090_ Dragon: Standing rampage -- c2090_竜の御使:立ち暴れ_2撃目","2090383":"c2090_ Dragon: Standing Rampage _3 -- c2090_竜の御使:立ち暴れ_3撃目","2090384":"c2090_ Dragon: Standing rampage _4 -- c2090_竜の御使:立ち暴れ_4撃目","2090385":"c2090_ Dragon: Standing rampage _5 -- c2090_竜の御使:立ち暴れ_5撃目","2090390":"c2090_ Dragon: Airborne Breath _ Body -- c2090_竜の御使:空中ブレス_身体","2090391":"c2090_ Dragon: Aerial Breath _ Right hand -- c2090_竜の御使:空中ブレス_右手","2090392":"c2090_ Dragon: Aerial Breath _ Left hand -- c2090_竜の御使:空中ブレス_左手","2090700":"The use of c2090_ Dragon: Straight Breath -- c2090_竜の御使:直線ブレス","2090710":"The use of c2090_ Dragon: Whack Breath -- c2090_竜の御使:薙ぎブレス","2090720":"c2090_ Dragon: Aerial Breath -- c2090_竜の御使:空中ブレス","2100100":"c2100_ drifting: A flying attack -- c2100_漂うもの:飛びかかり攻撃","2100110":"c2100_ drifting: Jump-throwing transition -- c2100_漂うもの:ジャンプ投げ遷移","2100120":"c2100_ drifting: Rising dash attack -- c2100_漂うもの:立ち上がりダッシュ攻撃","2100130":"c2100_ drifting: The right hand one that rages on the spot -- c2100_漂うもの:その場で暴れる右手1","2100131":"c2100_ drifting: Right hand 2_1 on the spot -- c2100_漂うもの:その場で暴れる右手2_1","2100132":"c2100_ drifting: Right hand 2_2 on the spot -- c2100_漂うもの:その場で暴れる右手2_2","2100133":"c2100_ drifting: The right hand that rages on the spot -- c2100_漂うもの:その場で暴れる右手3","2100134":"c2100_ drifting: The right hand that rages on the spot 7 -- c2100_漂うもの:その場で暴れる右手7","2100135":"c2100_ drifting: Right hand 9_1 on the spot -- c2100_漂うもの:その場で暴れる右手9_1","2100136":"c2100_ drifting: Right hand 9_2 on the spot -- c2100_漂うもの:その場で暴れる右手9_2","2100137":"c2100_: A violent right hand on the spot 10 -- c2100_漂うもの:その場で暴れる右手10","2100138":"c2100_ drifting: One left hand violent on the spot -- c2100_漂うもの:その場で暴れる左手1","2100139":"c2100_ drifting: The left hand 2_1 violent on the spot -- c2100_漂うもの:その場で暴れる左手2_1","2100140":"c2100_ drifting: The left hand 2_2 violent on the spot -- c2100_漂うもの:その場で暴れる左手2_2","2100141":"c2100_ drifting: The left hand violent on the spot -- c2100_漂うもの:その場で暴れる左手3","2100142":"c2100_ drifting: The left hand violent on the spot 4 -- c2100_漂うもの:その場で暴れる左手4","2100143":"c2100_ drifting: The left hand nine violent on the spot -- c2100_漂うもの:その場で暴れる左手9","2100144":"C2100_: The left hand ten violent on the spot -- c2100_漂うもの:その場で暴れる左手10","2100700":"c2100_ Drifting stuff: spitting -- c2100_漂うもの:吐き","2110010":"Bite 1 -- かみつき1","2110020":"Bite 2 -- かみつき2","2110030":"Kari -- 飛び掛かり","2110040":"Scratching -- 引っ掻き","2110050":"Per -- 体当たり","2110060":"Large bite -- 大口噛みつき","2120010":"Right scratching -- 右引っ掻き","2120020":"Left scratching -- 左引っ掻き","2120030":"Pre Kick -- 前蹴り","2120040":"Rolling Sobat -- ローリングソバット","2120050":"Hug: Throwing Start -- 抱きつく:投げ始動","2120051":"Hug: Throwing damage -- 抱きつく:投げダメージ","2120110":"Jumped: Throwing start -- 飛びつき:投げ始動","2120111":"Jumped: Throwing damage -- 飛びつき:投げダメージ","2120120":"Rear bit: Throwing start -- 背面噛み付き:投げ始動","2120121":"Rear bit: Throw damage -- 背面噛み付き:投ダメージ","2120130":"Spitting Spit -- 唾吐き","2120210":"Mimicry throw 1: Start throwing -- 擬態投げ1:投げ始動","2120211":"Mimicry throw 1: Throwing damage -- 擬態投げ1:投げダメージ","2120220":"Mimicry throw 2: Start throwing -- 擬態投げ2:投げ始動","2120221":"Mimicry throw 2: Throwing damage -- 擬態投げ2:投ダメージ","2130010":"Before ① to shove a bone -- 骨を突き出す① 前","2130020":"After ② to shove the bone -- 骨を突き出す② 後","2130030":"Shove a bone in all directions -- 全方向に骨を突き出す","2130040":"Falling into a crowded attack -- 倒れこみ攻撃","2130041":"Fallen into a crowded attack -- 倒れこみ攻撃_投げ","2130050":"③ left to shove bones -- 骨を突き出す③ 左","2130060":"④ right to shove a bone -- 骨を突き出す④ 右","2130070":"Special waiting → Drop throw judgment -- 特殊待機→落下投げ 判定","2130071":"Special wait → drop throwing -- 特殊待機→落下投げ 投げ","2140010":"Petrified Breath -- 石化ブレス","2140020":"Jump & Breath -- ジャンプ&ブレス","2140021":"Jump & Breath Landing -- ジャンプ&ブレス 着弾","2150010":"Disappear -- 消える","2160010":"① (small): hitting with a cane -- 蝕を呼ぶもの(小):杖で殴る①","2160011":"② (small): hitting with a cane -- 蝕を呼ぶもの(小):杖で殴る②","2180010":"c2180_ Maggots: Head Butt -- c2180_蛆人:頭突き","2180020":"C2180_ Maggots: Heavily -- c2180_蛆人:のしかかり","2180030":"c2180_ Maggots: Kari -- c2180_蛆人:飛び掛かり","2180031":"C2180_ maggots: Jumping two steps -- c2180_蛆人:跳びかかり2段","2180040":"C2180_ Maggots: Vomit spitting -- c2180_蛆人:ゲロ吐き","2180050":"C2180_ Maggots: high-speed Shaktori scratching (Shidara) -- c2180_蛆人:高速シャクトリ引っかき(四段目)","2180110":"C2180_ Maggots: Magic -- c2180_蛆人:魔法","2180200":"C2180_ Maggots: Fire spreading -- c2180_蛆人:延焼","2190100":"C2190_ Gargoyle (Light): Saigi [Weapon] -- c2190_ガーゴイル(灯火):薙ぎ払い【武器】","2190110":"C2190_ Gargoyle (Light): slams [weapon] -- c2190_ガーゴイル(灯火):叩きつけ【武器】","2190120":"C2190_ Gargoyle (Light): Guard posture: slams [weapon] -- c2190_ガーゴイル(灯火):ガード体勢:叩きつけ【武器】","2190130":"C2190_ Gargoyle (Light): Guard Posture: Large ignition [weapon] -- c2190_ガーゴイル(灯火):ガード体勢:大発火【武器】","2190140":"C2190_ Gargoyle (Light): Slams from the sky [weapon] -- c2190_ガーゴイル(灯火):上空から叩きつけ【武器】","2190141":"C2190_ Gargoyle (Light): Slams from the sky [body] -- c2190_ガーゴイル(灯火):上空から叩きつけ【体】","2190150":"C2190_ Gargoyle (Light): Fire attack from above [weapon] -- c2190_ガーゴイル(灯火):上空から発火攻撃【武器】","2190151":"C2190_ Gargoyle (Light): Fire attack from the sky [body] -- c2190_ガーゴイル(灯火):上空から発火攻撃【体】","2190160":"C2190_ Gargoyle (Light): Inverted from the sky [weapon] -- c2190_ガーゴイル(灯火):上空から反転して叩きつけ【武器】","2190161":"C2190_ Gargoyle (Light): Inverted from the sky [body] -- c2190_ガーゴイル(灯火):上空から反転して叩きつけ【体】","2190170":"C2190_ Gargoyle (Light): Additional Saigi [weapon] -- c2190_ガーゴイル(灯火):追加薙ぎ払い【武器】","2190180":"C2190_ Gargoyle (Light): previous step slapping [weapon] -- c2190_ガーゴイル(灯火):前ステップ叩き【武器】","2190181":"C2190_ Gargoyle (Light): Front step slapping [body] -- c2190_ガーゴイル(灯火):前ステップ叩き【体】","2190190":"C2190_ Gargoyle (Light): Whack falling [weapon] -- c2190_ガーゴイル(灯火):薙ぎ下がり【武器】","2190191":"C2190_ Gargoyle (Light): Whack falling [body] -- c2190_ガーゴイル(灯火):薙ぎ下がり【体】","2190300":"C2190_ Gargoyle (Spear): Thrust 1-1 [Weapon] -- c2190_ガーゴイル(槍):突き1-1【武器】","2190301":"C2190_ Gargoyle (Spear): Thrust 1-2: Strong thrust [Weapon] -- c2190_ガーゴイル(槍):突き1-2:強突き【武器】","2190302":"C2190_ Gargoyle (Spear): Butt 1-3: Poke slams [weapon: thrust] -- c2190_ガーゴイル(槍):突き1-3:突き飛行叩きつけ【武器:突き】","2190303":"C2190_ Gargoyle (Spear): Butt 1-3: Poke slams [weapon: slapping] -- c2190_ガーゴイル(槍):突き1-3:突き飛行叩きつけ【武器:叩き】","2190304":"C2190_ Gargoyle (Spear): Butt 1-3: Poke slams [body] -- c2190_ガーゴイル(槍):突き1-3:突き飛行叩きつけ【体】","2190310":"C2190_ Gargoyle (Spear): rush [Weapon] -- c2190_ガーゴイル(槍):突進【武器】","2190311":"C2190_ Gargoyle (Spear): Rush [body] -- c2190_ガーゴイル(槍):突進【体】","2190320":"C2190_ Gargoyle (Spear): Guard Posture: Shield tock [Weapon] -- c2190_ガーゴイル(槍):ガード体勢:盾チク【武器】","2190321":"C2190_ Gargoyle (Spear): Guard Posture: Shield tock [pre-piercing swing attack] -- c2190_ガーゴイル(槍):ガード体勢:盾チク【突き刺し前振り回し攻撃】","2190330":"C2190_ Gargoyle (Spear): Guard Posture: rush [weapon] -- c2190_ガーゴイル(槍):ガード体勢:突進【武器】","2190331":"C2190_ Gargoyle (Spear): Guard Posture: rush [body] -- c2190_ガーゴイル(槍):ガード体勢:突進【体】","2190340":"C2190_ Gargoyle (Spear): Swinging from the sky [weapon] -- c2190_ガーゴイル(槍):上空から振り上げ【武器】","2190341":"C2190_ Gargoyle (Spear): Swinging from the sky [body] -- c2190_ガーゴイル(槍):上空から振り上げ【体】","2190350":"C2190_ Gargoyle (Spear): Dive attack [weapon] aiming from the sky -- c2190_ガーゴイル(槍):上空から狙って急降下攻撃【武器】","2190351":"C2190_ Gargoyle (Spear): Dive attack [body] aiming from the sky -- c2190_ガーゴイル(槍):上空から狙って急降下攻撃【体】","2190360":"C2190_ Gargoyle (Spear): continuous thrust from the Sky 1 [weapon] -- c2190_ガーゴイル(槍):上空から連続突き1【武器】","2190361":"C2190_ Gargoyle (Spear): continuous thrust from the Sky 2 [weapon] -- c2190_ガーゴイル(槍):上空から連続突き2【武器】","2190362":"C2190_ Gargoyle (Spear): continuous thrust from the Sky 3 [weapon] -- c2190_ガーゴイル(槍):上空から連続突き3【武器】","2190363":"C2190_ Gargoyle (Spear): continuous thrust from the sky [body] -- c2190_ガーゴイル(槍):上空から連続突き【体】","2190370":"C2190_ Gargoyle (Spear): Additional whack [weapon] -- c2190_ガーゴイル(槍):追加薙ぎ【武器】","2190380":"C2190_ Gargoyle (Spear): gliding thrust [weapon] -- c2190_ガーゴイル(槍):滑空突き【武器】","2190381":"C2190_ Gargoyle (Spear): gliding thrusting [flying body] -- c2190_ガーゴイル(槍):滑空突き【飛行中体】","2190382":"C2190_ Gargoyle (Spear): gliding thrust [body] -- c2190_ガーゴイル(槍):滑空突き【体】","2190600":"c2190_ Gargoyle (Common): Wings -- c2190_ガーゴイル(共通):翼","2190700":"C2190_ Gargoyle (Light): Saigi: Fire Bullets -- c2190_ガーゴイル(灯火):薙ぎ払い:炎弾","2190701":"C2190_ Gargoyle (Light): Saigi: Flames then (fire splashes) -- c2190_ガーゴイル(灯火):薙ぎ払い:炎弾その後(火飛沫)","2190710":"C2190_ Gargoyle (Light): Slams (fire splashes) -- c2190_ガーゴイル(灯火):叩きつけ:(火飛沫)","2190720":"C2190_ Gargoyle: Guard Posture: Large ignition -- c2190_ガーゴイル(灯火):ガード体勢:大発火","2190730":"C2190_ Gargoyle (Light): Fire attack from above -- c2190_ガーゴイル(灯火):上空から発火攻撃","2190900":"C2190_ Gargoyle (Light): Guard -- c2190_ガーゴイル(灯火):ガード","2190901":"C2190_ Gargoyle (Light): Guard (Strong) -- c2190_ガーゴイル(灯火):ガード(強)","2200110":"C2200_a3001_ slams A -- c2200_a3001_叩きつけA","2200120":"C2200_a3002_ stretched up pounding 1 -- c2200_a3002_伸び上がって叩きつける1","2200130":"C2200_a3003_ stretched up and pounding 2 -- c2200_a3003_伸び上がって叩きつける2","2200140":"c2200_a3004_ bit -- c2200_a3004_噛み付き","2201100":"C2201_a3000_ Dive into the ground -- c2201_a3000_地中に潜る","2201110":"C2201_a3001_ slams A -- c2201_a3001_叩きつけA","2201120":"C2201_a3002_ stretched up pounding 1 -- c2201_a3002_伸び上がって叩きつける1","2201130":"C2201_a3003_ stretched up and pounding 2 -- c2201_a3003_伸び上がって叩きつける2","2201140":"c2201_a3004_ bit -- c2201_a3004_噛み付き","2201150":"c2201_a3005_ Rush bit (throwing and grabbing) -- c2201_a3005_突進噛み付き(投げ・つかみ)","2201151":"c2201_a3005_ Rush bit (throwing and fuselage damage) -- c2201_a3005_突進噛み付き(投げ・胴体ダメージ)","2201152":"c2201_a3005_ Rush bit (throwing and throwing damage) -- c2201_a3005_突進噛み付き(投げ・投げダメージ)","2201300":"C2201_a100_3000_ out on the ground -- c2201_a100_3000_地上に出る","2210100":"c2210_ Zombie Crow (Dagger Downer): Sticking out -- c2210_ゾンビカラス(短剣ダウナー):突き出し","2210110":"c2210_ Zombie Crow (Dagger Downer): The Sword Falling -- c2210_ゾンビカラス(短剣ダウナー):斬り下がり","2210120":"c2210_ Zombie Crow (Dagger Downer): Single slash -- c2210_ゾンビカラス(短剣ダウナー):単発斬り","2210200":"c2210_ Zombie Crow (Scythe Downer): Saigi -- c2210_ゾンビカラス(大鎌ダウナー):薙ぎ払い","2210210":"c2210_ Zombie Crow (Scythe Downer): slams -- c2210_ゾンビカラス(大鎌ダウナー):叩きつけ","2210220":"c2210_ Zombie Crow (Scythe Downer): Extrusion -- c2210_ゾンビカラス(大鎌ダウナー):押し出し","2210300":"c2210_ Zombie Crow (Dagger Upper): Ran through rush-1 -- c2210_ゾンビカラス(短剣アッパー):走り抜けラッシュ - 1","2210301":"c2210_ Zombie Crow (Dagger Upper): Ran through the rush-2 -- c2210_ゾンビカラス(短剣アッパー):走り抜けラッシュ - 2","2210302":"c2210_ Zombie Crow (Dagger Upper): Ran through rush-3 -- c2210_ゾンビカラス(短剣アッパー):走り抜けラッシュ - 3","2210303":"c2210_ Zombie Crow (Dagger Upper): Ran through rush-4 -- c2210_ゾンビカラス(短剣アッパー):走り抜けラッシュ - 4","2210304":"c2210_ Zombie Crow (Dagger Upper): Ran through rush-5 -- c2210_ゾンビカラス(短剣アッパー):走り抜けラッシュ - 5","2210310":"c2210_ Zombie Crow (Dagger Upper): Take a stab with a jump-1 -- c2210_ゾンビカラス(短剣アッパー):跳びかかり付き刺し - 1","2210311":"c2210_ Zombie Crow (Dagger Upper): Take a stab with a jump-2 -- c2210_ゾンビカラス(短剣アッパー):跳びかかり付き刺し - 2","2210320":"c2210_ Zombie Crow (dagger Upper): Jumping attack -- c2210_ゾンビカラス(短剣アッパー):跳躍攻撃","2210330":"c2210_ Zombie Crow (Dagger Upper): Right Hand daggers Combo 1 -- c2210_ゾンビカラス(短剣アッパー):右手短剣払いコンボ1","2210340":"c2210_ Zombie Crow (Dagger Upper): Right Hand daggers Combo 2 -- c2210_ゾンビカラス(短剣アッパー):右手短剣払いコンボ2","2210350":"c2210_ Zombie Crow (Dagger Upper): Right Hand daggers Combo 3-1 -- c2210_ゾンビカラス(短剣アッパー):右手短剣払いコンボ3 - 1","2210351":"c2210_ Zombie Crow (Dagger Upper): Right Hand daggers Combo 3-2 -- c2210_ゾンビカラス(短剣アッパー):右手短剣払いコンボ3 - 2","2210352":"c2210_ Zombie Crow (Dagger Upper): Right Hand daggers Combo 3-3 -- c2210_ゾンビカラス(短剣アッパー):右手短剣払いコンボ3 - 3","2210353":"c2210_ Zombie Crow (Dagger Upper): Right Hand daggers Combo 3-4 -- c2210_ゾンビカラス(短剣アッパー):右手短剣払いコンボ3 - 4","2210354":"c2210_ Zombie Crow (Dagger Upper): Right Hand daggers Combo 3-5 -- c2210_ゾンビカラス(短剣アッパー):右手短剣払いコンボ3 - 5","2210360":"c2210_ Zombie Crow (Dagger Upper): Anti-aircraft attack-1 -- c2210_ゾンビカラス(短剣アッパー):対空攻撃 - 1","2210361":"c2210_ Zombie Crow (Dagger Upper): Anti-aircraft attack-2 -- c2210_ゾンビカラス(短剣アッパー):対空攻撃 - 2","2210362":"c2210_ Zombie Crow (Dagger Upper): Anti-aircraft attack-3 -- c2210_ゾンビカラス(短剣アッパー):対空攻撃 - 3","2210363":"c2210_ Zombie Crow (Dagger Upper): Anti-aircraft attack-4 -- c2210_ゾンビカラス(短剣アッパー):対空攻撃 - 4","2210364":"c2210_ Zombie Crow (Dagger Upper): Anti-aircraft attack-5 (left hand) -- c2210_ゾンビカラス(短剣アッパー):対空攻撃 - 5 (左手)","2210365":"c2210_ Zombie Crow (Dagger Upper): Anti-aircraft attack-6 (right hand) -- c2210_ゾンビカラス(短剣アッパー):対空攻撃 - 6 (右手)","2210370":"c2210_ Zombie Crow (Dagger Upper): 3 consecutive attacks left -- c2210_ゾンビカラス(短剣アッパー):3連撃 左","2210371":"c2210_ Zombie Crow (Dagger Upper): Triple Hammer Right -- c2210_ゾンビカラス(短剣アッパー):3連撃 右","2210400":"c2210_ Zombie Crow (scythe Upper): Jumping and lowering -- c2210_ゾンビカラス(大鎌アッパー):跳びかかり振りおろし","2210410":"c2210_ Zombie Crow (Scythe Upper): Run Kari attack -- c2210_ゾンビカラス(大鎌アッパー):走り飛び掛かり攻撃","2210420":"c2210_ Zombie Crow (Scythe Upper): Saigi First Stage -- c2210_ゾンビカラス(大鎌アッパー):薙ぎ払い1段目","2210430":"c2210_ Zombie Crow (Scythe Upper): Saigi Second Stage -- c2210_ゾンビカラス(大鎌アッパー):薙ぎ払い2段目","2210440":"c2210_ Zombie Crow (Scythe Upper): Shiri -- c2210_ゾンビカラス(大鎌アッパー):袈裟斬り","2210450":"c2210_ Zombie Crow (Scythe Upper): 3 consecutive knocked back against (1st half) -- c2210_ゾンビカラス(大鎌アッパー):3連叩き付け(前半1)","2210451":"c2210_ Zombie Crow (Scythe Upper): 3 consecutive knocked back against (first half 2) -- c2210_ゾンビカラス(大鎌アッパー):3連叩き付け(前半2)","2210460":"c2210_ Zombie Crow (Scythe Upper): 3 consecutive knocked back against (late whack) -- c2210_ゾンビカラス(大鎌アッパー):3連叩き付け(後半薙ぎ)","2210470":"c2210_ Zombie Crow (Scythe Upper): Additional jump attacks -- c2210_ゾンビカラス(大鎌アッパー):追加ジャンプ攻撃","2210500":"c2210_ Zombie Crow (Cane upper): Insane -- c2210_ゾンビカラス(杖アッパー):発狂させ","2210510":"c2210_ Zombie Crow (Cane upper): Magic (Reserve) -- c2210_ゾンビカラス(杖アッパー):魔法(予備)","2210520":"c2210_ Zombie Crow (Cane upper): Slams with cane -- c2210_ゾンビカラス(杖アッパー):杖での叩きつけ","2210530":"c2210_ Zombie Crow (Cane upper): Nagi with a cane -- c2210_ゾンビカラス(杖アッパー):杖でのなぎ払い","2210540":"c2210_ Zombie Crow (Cane upper): Magic (Saigi) -- c2210_ゾンビカラス(杖アッパー):魔法(薙ぎ払い)","2230100":"c2230_ Shing: Pressed against baked -- c2230_獄吏:焼きごて押し付け","2230101":"c2230_ Shing: Pressed against a baking iron _ flipped judgment -- c2230_獄吏:焼きごて押し付け_弾かれ判定","2230110":"C2230_ Shing: Bake and move forward -- c2230_獄吏:焼きごて構えて前進","2230111":"c2230_ Shing: A baking iron poised to move forward _ determined -- c2230_獄吏:焼きごて構えて前進_弾かれ判定","2230120":"c2230_ Shing: Petrified Mist (anterior) (head butt) -- c2230_獄吏:石化の霧(前方)(頭突き)","2230130":"c2230_ Shing: Burned and pressed -- c2230_獄吏:焼きごてを押し付ける","2230131":"c2230_ Shing: Pressing a baking iron _ flipped judgment -- c2230_獄吏:焼きごてを押し付ける_弾かれ判定","2230200":"c2230_ Shing: Petrified Mist (forward) -- c2230_獄吏:石化の霧(前方)","2230210":"c2230_ Shing: Petrified Mist (range) -- c2230_獄吏:石化の霧(範囲)","2230300":"c2230_ Shing: Grilled and tossed (frontal damage) -- c2230_獄吏:焼きごて投げ(前面ダメージ)","2230310":"c2230_ Shing: Grilled and tossed (back damage) -- c2230_獄吏:焼きごて投げ(背面ダメージ)","2230700":"Quick Turn Nakaishi breath (right turn) -- クイックターン中石化ブレス(右回転)","2230701":"Quick Turn Nakaishi breath (left turn) -- クイックターン中石化ブレス(左回転)","2230900":"Long Distance Magic: A spear of diffuse flames -- 遠距離魔法:拡散する炎の槍","2230910":"Long distance Magic: Diffuse Spear of Fire (pointer) -- 遠距離魔法:拡散する炎の槍(ポインター)","2240100":"C2240_ Full Armor Beast: knocked back against Combo First (weapon): after Hu -- c2240_フルアーマー獣:叩き付けコンボ初撃(武器):HU後","2240102":"C2240_ Full Armor Beast: knocked back against combo second firing (weapon): after Hu -- c2240_フルアーマー獣:叩き付けコンボ2撃目(武器):HU後","2240110":"c2240_ Full Armor: Ground sharpener Whack (weapon): Hu after -- c2240_フルアーマー獣:地削り薙ぎ(武器):HU後","2240111":"c2240_ Full Armor: ground scraping whack (body): After Hu -- c2240_フルアーマー獣:地削り薙ぎ(体):HU後","2240120":"C2240_ Full Armor Beast: per Body (during rush): after Hu -- c2240_フルアーマー獣:体当たり(突進時):HU後","2240121":"C2240_ Full Armor Beast: per Body (raised): After Hu -- c2240_フルアーマー獣:体当たり(かち上げ):HU後","2240130":"C2240_ Full Armor Beast: Body Press (body): After Hu -- c2240_フルアーマー獣:ボディプレス(体):HU後","2240131":"C2240_ Full Armor Beast: Body Press (weapon part, foot): Hu after -- c2240_フルアーマー獣:ボディプレス(武器部分、足):HU後","2240140":"C2240_ Full Armor Beast: Turning Attack (right): after Hu -- c2240_フルアーマー獣:旋回攻撃(右):HU後","2240150":"C2240_ Full Armor Beast: Turning Attack (left): after Hu -- c2240_フルアーマー獣:旋回攻撃(左):HU後","2240151":"C2240_ Full Armor Beast: Hammer (Arms): Around Hu -- c2240_フルアーマー獣:鉄槌(腕):HU前後","2240153":"C2240_ Full Armor Beast: longitudinal slapping: Before Hu -- c2240_フルアーマー獣:縦叩き:HU前","2240154":"C2240_ Full Armor Beast: Butt: Before Hu -- c2240_フルアーマー獣:突き:HU前","2240155":"C2240_ Full Armor Beast: Launch attack: Before Hu -- c2240_フルアーマー獣:打ち上げ攻撃:HU前","2240156":"C2240_ Full Armor Beast: Right tricky Kesa first Hammer (weapon): Hu after -- c2240_フルアーマー獣:右トリッキー袈裟初撃(武器):HU後","2240157":"C2241_ Full Armor Beast: Right tricky Kesa first Hammer (body): After Hu -- c2241_フルアーマー獣:右トリッキー袈裟初撃(体):HU後","2240158":"C2240_ Full Armor Beast: Right tricky Kesa second firing (weapon): Hu after -- c2240_フルアーマー獣:右トリッキー袈裟2撃目(武器):HU後","2240159":"C2240_ Full Armor Beast: Right tricky Kesa second firing (body): After Hu -- c2240_フルアーマー獣:右トリッキー袈裟2撃目(体):HU後","2240160":"C2240_ Full Armor Beast: Left Tricky Kesa First (weapon): Hu after -- c2240_フルアーマー獣:左トリッキー袈裟初撃(武器):HU後","2240161":"C2241_ Full Armor Beast: Left Tricky Kesa first Hammer (body): After Hu -- c2241_フルアーマー獣:左トリッキー袈裟初撃(体):HU後","2240162":"C2240_ Full Armor Beast: Left Tricky Kesa second firing (weapon): Hu after -- c2240_フルアーマー獣:左トリッキー袈裟2撃目(武器):HU後","2240163":"C2240_ Full Armor Beast: Left Tricky Kesa second firing (body): After Hu -- c2240_フルアーマー獣:左トリッキー袈裟2撃目(体):HU後","2240164":"C2240_ Full Armor Beast: per sprinter (weapon): after Hu -- c2240_フルアーマー獣:短距離体当たり(武器):HU後","2240165":"C2241_ Full Armor Beast: short-range Body (body): After Hu -- c2241_フルアーマー獣:短距離体当たり(体):HU後","2240166":"C2240_ Full Armor Beast: Rush (Retrospective) (Weapon 1): After Hu -- c2240_フルアーマー獣:突進(振り返り)(武器1):HU後","2240167":"C2240_ Full Armor Beast: Rush (Retrospective) (Weapon 2): After Hu -- c2240_フルアーマー獣:突進(振り返り)(武器2):HU後","2240168":"C2241_ Full Armor Beast: Rush (Retrospective) (Body 1): After Hu -- c2241_フルアーマー獣:突進(振り返り)(体1):HU後","2240169":"C2242_ Full Armor Beast: Rush (Retrospective) (Body 2): After Hu -- c2242_フルアーマー獣:突進(振り返り)(体2):HU後","2240170":"C2240_ Full Armor Beast: Rush (Continuous) (Weapon 1): After Hu -- c2240_フルアーマー獣:突進(連続)(武器1):HU後","2240171":"C2240_ Full Armor Beast: Rush (Continuous) (Weapon 2): After Hu -- c2240_フルアーマー獣:突進(連続)(武器2):HU後","2240172":"C2241_ Full Armor Beast: Rush (Continuous) (body 1): After Hu -- c2241_フルアーマー獣:突進(連続)(体1):HU後","2240173":"C2242_ Full Armor Beast: Rush (Continuous) (body 2): After Hu -- c2242_フルアーマー獣:突進(連続)(体2):HU後","2240174":"C2240_ Full Armor Beast: Turned Step (weapon): Before Hu -- c2240_フルアーマー獣:振り向き前ステップ(武器):HU前","2240175":"C2241_ Full Armor Beast: Turned Step (body): Before Hu -- c2241_フルアーマー獣:振り向き前ステップ(体):HU前","2240176":"C2240_ Full Armor Beast: Snowstorm breath: After Hu -- c2240_フルアーマー獣:吹雪ブレス:HU後","2240177":"C2240_ Full Armor Beast: lateral Saigi (weapon): Hu Mae -- c2240_フルアーマー獣:横薙ぎ払い(武器):HU前","2240179":"C2240_ Full Armor Beast: knocked back against (for combo) (weapon): Before Hu -- c2240_フルアーマー獣:叩き付け(コンボ用)(武器):HU前","2240181":"C2240_ Full Armor Beast: lateral Saigi (for combo) (weapon): Before Hu -- c2240_フルアーマー獣:横薙ぎ払い(コンボ用)(武器):HU前","2240183":"C2240_ Full Armor Beast: Blizzard Breath (Aura): After Hu -- c2240_フルアーマー獣:吹雪ブレス(オーラ):HU後","2240250":"C2240_ Full Armor Beast: right foot general purpose -- c2240_フルアーマー獣:右足汎用","2240251":"C2240_ Full Armor Beast: Left Foot General -- c2240_フルアーマー獣:左足汎用","2240260":"C2240_ Full Armor Beast: cold (for decals) -- c2240_フルアーマー獣:冷気(デカール用)","2250100":"c2250_ Tindalos: Bit from the top (depression) -- c2250_ティンダロス:上から噛み付き(踏み込み大)","2250101":"c2250_ Tindalos: From the top bit (depression) (body) -- c2250_ティンダロス:上から噛み付き(踏み込み大)(体)","2250102":"c2250_ Tindalos: From the top bit (depression) (right) -- c2250_ティンダロス:上から噛み付き(踏み込み大)(右手)","2250103":"c2250_ Tindalos: From the top bit (depression) (left hand) -- c2250_ティンダロス:上から噛み付き(踏み込み大)(左手)","2250110":"c2250_ Tindalos: Close bit (from right): wait -- c2250_ティンダロス:至近噛み付き(右から):待機","2250111":"c2250_ Tindalos: Close bit (right): Wait (body) -- c2250_ティンダロス:至近噛み付き(右から):待機(体)","2250112":"c2250_ Tindalos: Close bit (right): wait -- c2250_ティンダロス:至近噛み付き(右から):待機(右手)","2250113":"c2250_ Tindalos: Close bit (right): Wait (left) -- c2250_ティンダロス:至近噛み付き(右から):待機(左手)","2250120":"c2250_ Tindalos: Bit from the right: wait -- c2250_ティンダロス:右から噛み付き:待機","2250121":"c2250_ Tindalos: Bit from right: wait (body) -- c2250_ティンダロス:右から噛み付き:待機(体)","2250122":"c2250_ Tindalos: Bit from right: wait (right) -- c2250_ティンダロス:右から噛み付き:待機(右手)","2250123":"c2250_ Tindalos: Bit from right: wait (left hand) -- c2250_ティンダロス:右から噛み付き:待機(左手)","2250130":"c2250_ Tindalos: Bit from the left: wait -- c2250_ティンダロス:左から噛み付き:待機","2250131":"c2250_ Tindalos: Bit from the left: Wait (body) -- c2250_ティンダロス:左から噛み付き:待機(体)","2250132":"c2250_ Tindalos: Bit from the left: wait (left hand) -- c2250_ティンダロス:左から噛み付き:待機(左手)","2250133":"c2250_ Tindalos: Bit from the left: wait (left hand) -- c2250_ティンダロス:左から噛み付き:待機(左手)","2250140":"c2250_ Tindalos: Bit Dive -- c2250_ティンダロス:飛び込み噛み付き","2250141":"c2250_ Tindalos: Dive bit (body) -- c2250_ティンダロス:飛び込み噛み付き(体)","2250142":"c2250_ Tindalos: Bit dive (right) -- c2250_ティンダロス:飛び込み噛み付き(右手)","2250143":"c2250_ Tindalos: Bit dive (left hand) -- c2250_ティンダロス:飛び込み噛み付き(左手)","2250144":"c2250_ Tindalos: Bit dive (right foot) -- c2250_ティンダロス:飛び込み噛み付き(右足)","2250145":"c2250_ Tindalos: Bit dive (left foot) -- c2250_ティンダロス:飛び込み噛み付き(左足)","2250150":"c2250_ Tindalos: Flipping from the plunge -- c2250_ティンダロス:飛び込みからの反転","2250151":"c2250_ Tindalos: Flipped from the plunge (right) -- c2250_ティンダロス:飛び込みからの反転(右手)","2250152":"c2250_ Tindalos: Flipping from the dive (left hand) -- c2250_ティンダロス:飛び込みからの反転(左手)","2250153":"c2250_ Tindalos: Flipped from the plunge (right foot) -- c2250_ティンダロス:飛び込みからの反転(右足)","2250154":"c2250_ Tindalos: Flipped from the dive (left foot) -- c2250_ティンダロス:飛び込みからの反転(左足)","2250160":"c2250_ Tindalos: Bit to the right side -- c2250_ティンダロス:右側面へ噛み付き","2250161":"c2250_ Tindalos: Bit (body) to the right side -- c2250_ティンダロス:右側面へ噛み付き(体)","2250162":"c2250_ Tindalos: bit (right hand) to the right side -- c2250_ティンダロス:右側面へ噛み付き(右手)","2250163":"c2250_ Tindalos: Bit to the right side (left) -- c2250_ティンダロス:右側面へ噛み付き(左手)","2250164":"c2250_ Tindalos: Bit to the right side -- c2250_ティンダロス:右側面へ噛み付き(右足)","2250165":"c2250_ Tindalos: Bit (left foot) to the right side -- c2250_ティンダロス:右側面へ噛み付き(左足)","2250170":"c2250_ Tindalos: Bit to the left side -- c2250_ティンダロス:左側面へ噛み付き","2250171":"c2250_ Tindalos: Bit (body) to the left side -- c2250_ティンダロス:左側面へ噛み付き(体)","2250172":"c2250_ Tindalos: bit (right hand) to the left side -- c2250_ティンダロス:左側面へ噛み付き(右手)","2250173":"c2250_ Tindalos: Bit to left side (left) -- c2250_ティンダロス:左側面へ噛み付き(左手)","2250174":"c2250_ Tindalos: Bit to the left side (right foot) -- c2250_ティンダロス:左側面へ噛み付き(右足)","2250175":"c2250_ Tindalos: bit to left side -- c2250_ティンダロス:左側面へ噛み付き(左足)","2250180":"c2250_ Tindalos: Open Mouth and Rush -- c2250_ティンダロス:口を開けて突進","2250181":"c2250_ Tindalos: Open mouth and Rush (right hand) -- c2250_ティンダロス:口を開けて突進(右手)","2250182":"c2250_ Tindalos: Open mouth and Rush (left hand) -- c2250_ティンダロス:口を開けて突進(左手)","2250183":"c2250_ Tindalos: Open mouth and Rush (right foot) -- c2250_ティンダロス:口を開けて突進(右足)","2250184":"c2250_ Tindalos: Open mouth and Rush (left foot) -- c2250_ティンダロス:口を開けて突進(左足)","2250185":"c2250_ Tindalos: Throwing damage -- c2250_ティンダロス:投げダメージ","2250186":"c2250_ Tindalos: Throwing Damage 2 -- c2250_ティンダロス:投げダメージ2","2250187":"c2250_ Tindalos: Throwing Damage 3 -- c2250_ティンダロス:投げダメージ3","2250190":"c2250_ Tindalos: Lunge attack: bit 1 -- c2250_ティンダロス:突進攻撃:噛み付き1","2250191":"c2250_ Tindalos: Lunge attack: Bit 2 -- c2250_ティンダロス:突進攻撃:噛み付き2","2250192":"c2250_ Tindalos: Lunge attack: Bit 3 (finishes on -- c2250_ティンダロス:突進攻撃:噛み付き3(フィニッ","2250193":"c2250_ Tindalos: Rush attack: Bit (body) -- c2250_ティンダロス:突進攻撃:噛み付き(体)","2250194":"c2250_ Tindalos: Rush attack: bit (right hand) -- c2250_ティンダロス:突進攻撃:噛み付き(右手)","2250195":"c2250_ Tindalos: Rush attack: bit (left hand) -- c2250_ティンダロス:突進攻撃:噛み付き(左手)","2250196":"c2250_ Tindalos: Rush attack: Bit (right foot) -- c2250_ティンダロス:突進攻撃:噛み付き(右足)","2250197":"c2250_ Tindalos: Lunge attack: bit (left foot) -- c2250_ティンダロス:突進攻撃:噛み付き(左足)","2250200":"c2250_ Tindalos: Bit (strong): a3003 Posture -- c2250_ティンダロス:噛み付き(強):a3003姿勢","2250201":"c2250_ Tindalos: Bit (strong): a3003 Posture (body) -- c2250_ティンダロス:噛み付き(強):a3003姿勢(体)","2250202":"c2250_ Tindalos: Bit (strong): a3003 Posture (right) -- c2250_ティンダロス:噛み付き(強):a3003姿勢(右手)","2250203":"c2250_ Tindalos: Bit (strong): a3003 posture (left) -- c2250_ティンダロス:噛み付き(強):a3003姿勢(左手)","2250210":"c2250_ Tindalos: Writhes around on his back: head -- c2250_ティンダロス:仰向けでのたうち回る:頭","2250211":"c2250_ Tindalos: Writhes around on his back: right hand -- c2250_ティンダロス:仰向けでのたうち回る:右手","2250212":"c2250_ Tindalos: Writhes around on his back: left hand -- c2250_ティンダロス:仰向けでのたうち回る:左手","2250213":"c2250_ Tindalos: Writhes around on his back: right foot -- c2250_ティンダロス:仰向けでのたうち回る:右足","2250214":"c2250_ Tindalos: Writhes around on his back: left foot -- c2250_ティンダロス:仰向けでのたうち回る:左足","2250215":"c2250_ Tindalos: Writhes around on his back: tail -- c2250_ティンダロス:仰向けでのたうち回る:尻尾","2250700":"c2250_ Tindalos: Lightning breath: Direct hit -- c2250_ティンダロス:雷ブレス:直撃","2250701":"c2250_ Tindalos: Lightning Breath: Derived 1 -- c2250_ティンダロス:雷ブレス:派生1","2250702":"c2250_ Tindalos: Lightning Breath: Derived 2 (water only) -- c2250_ティンダロス:雷ブレス:派生2(水場のみ)","2250703":"c2250_ Tindalos: Lightning Breath: Derived 3 (water only) -- c2250_ティンダロス:雷ブレス:派生3(水場のみ)","2250704":"c2250_ Tindalos: Lightning Breath: Derived 4 (water only) -- c2250_ティンダロス:雷ブレス:派生4(水場のみ)","2260700":"C2260_: Barista Launches -- c2260_三連バリスタ:バリスタ発射","2270010":"c2270_ Stench Crab: Right scissors _ swing down near face -- c2270_死臭蟹:右鋏_顔付近振り下ろし","2270020":"c2270_ Stench Crab: Right Shears _ thrusting -- c2270_死臭蟹:右鋏_突き刺し","2270030":"c2270_ Stench Crab: Right Shears _ depression Piercing -- c2270_死臭蟹:右鋏_踏み込み突刺し","2270040":"c2270_ Stench Crab: Left shears _ face near Chockin -- c2270_死臭蟹:左鋏_顔付近ちょっきん","2270050":"c2270_ Stench Crab: Left shears _ poked -- c2270_死臭蟹:左鋏_突き","2270060":"c2270_ Stench Crab: Left shears _ diagonal Continuous attack (1 ~ two) -- c2270_死臭蟹:左鋏_斜め連続攻撃(一~二段目)","2270080":"c2270_ Stench Crab: Right Shears _ Saigi -- c2270_死臭蟹:右鋏_薙ぎ払い","2270090":"c2270_ Stench Crab: Left and Right scissors lash (1-two) -- c2270_死臭蟹:左右ハサミラッシュ(左鋏_一~二段目)","2270091":"c2270_ Stench Crab: Left and right scissors rush (Sandanme) -- c2270_死臭蟹:左右ハサミラッシュ(右鋏_三段目)","2270092":"c2270_ Stench Crab: Left and right scissors rush (Shidara) -- c2270_死臭蟹:左右ハサミラッシュ(左鋏_四段目)","2270093":"c2270_ Stench Crab: Left and right scissors rush (Guarder) -- c2270_死臭蟹:左右ハサミラッシュ(右鋏_五段目)","2270100":"c2270_ Stench Crab: General Press -- c2270_死臭蟹:全身プレス","2270110":"c2270_ Stench crab: Bubble spitting -- c2270_死臭蟹:泡吐き","2270120":"c2270_ Stench Crab: Right side attack (medium range) -- c2270_死臭蟹:右側面攻撃(中距離)","2270130":"c2270_ Stench Crab: Right side attack (long distance) -- c2270_死臭蟹:右側面攻撃(遠距離)","2270140":"c2270_ Stench Crab: Left side attack (medium range) -- c2270_死臭蟹:左側面攻撃(中距離)","2270150":"c2270_ Stench Crab: Left side attack (long distance) -- c2270_死臭蟹:左側面攻撃(遠距離)","2270200":"c2270_ Stench Crab: Throwing start -- c2270_死臭蟹:投げ始動","2270201":"c2270_ Stench Crab: Throwing attack (sandwiching) -- c2270_死臭蟹:投げ攻撃(挟み付け)","2270202":"c2270_ Stench Crab: Throwing attack (finish) -- c2270_死臭蟹:投げ攻撃(フィニッシュ)","2271010":"c2271_ Stench Crab (small) _ Chockin with right shears -- c2271_死臭蟹(小)_右鋏でちょっきん","2271020":"c2271_ Stench Crab (small) _ Chockin with left shears -- c2271_死臭蟹(小)_左鋏でちょっきん","2271030":"c2271_ Stench Crab (small) _ hit with both scissors (right) -- c2271_死臭蟹(小)_両ハサミで殴る(右手)","2271031":"c2271_ Stench Crab (small) _ with both scissors (left hand) -- c2271_死臭蟹(小)_両ハサミで殴る(左手)","2271040":"c2271_ Stench Crab (small) _ right-side attack (medium range) -- c2271_死臭蟹(小)_右側面攻撃(中距離)","2271050":"c2271_ Stench Crab (small) _ Left side attack (medium range) -- c2271_死臭蟹(小)_左側面攻撃(中距離)","3020100":"Bare Hands _ Right hook -- 素手_右フック","3020110":"Bare hands _ Left hand slams: left arm -- 素手_左手叩きつけ:左腕","3020111":"Bare hands _ The left hand slams: knees -- 素手_左手叩きつけ:両膝","3020120":"Bare hands _ both hand grated -- 素手_両手振りおろし","3020130":"Saigi about Bare hands _ left elbow: Ling -- 素手_左肘をついての薙ぎ払い:肘鉄","3020131":"Saigi about Bare hands _ left elbow: Saigi -- 素手_左肘をついての薙ぎ払い:薙ぎ払い","3020140":"Bare hands _ Left foot crushing -- 素手_左足踏み潰し","3020150":"Bare hands _ Right foot crush -- 素手_右足踏み潰し","3020160":"Bare Hands _ Explore action -- 素手_探りアクション","3020170":"Transition to bare hands _ throw -- 素手_投げへの遷移","3020171":"Bare hands _ Throwing damage -- 素手_投げダメージ","3020180":"Bare hands _ Turned Saigi -- 素手_振り向き薙ぎ払い","3020190":"Bare hands _ ground crushed: slams -- 素手_地面砕き:叩きつけ","3020191":"Bare hands _ ground crushed: crushed -- 素手_地面砕き:砕き","3020200":"Bare hands rampage: 1 shot left foot trampled -- 素手_大暴れ:1撃目左足踏みつけ","3020201":"Bare Hands _ Rampage: 2-hammer right foot trampling -- 素手_大暴れ:2撃目右足踏みつけ","3020202":"Bare Hands _ Rampage: 3rd Hammer left arm Saigi -- 素手_大暴れ:3撃目左腕薙ぎ払い","3020203":"Bare Hands _ Rampage: 4-shot left foot depression -- 素手_大暴れ:4撃目左足踏み込み","3020204":"Bare Hands _ Rampage: 5 Hammer right hook -- 素手_大暴れ:5撃目右フック","3020205":"Bare Hands _ Rampage: 6th Hammer Right Back Fist -- 素手_大暴れ:6撃目右裏拳","3020206":"Bare Hands _ Rampage: 7th Hammer left hook -- 素手_大暴れ:7撃目左フック","3020207":"Bare Hands _ Rampage: 8th Hammer left Fist -- 素手_大暴れ:8撃目左裏拳","3020208":"Bare Hands _ Rampage: 9th Hammer Right Saigi -- 素手_大暴れ:9撃目右薙ぎ払い","3020300":"Saigi The Iron Sphere _ right -- 鉄球_右薙ぎ払い","3020310":"Saigi The Iron Sphere _ left -- 鉄球_左薙ぎ払い","3020320":"Iron Ball _ Iron Ball -- 鉄球_鉄球振りおろし","3020330":"Iron Sphere _ Swing down: Left -- 鉄球_鉄球振り下ろし:左","3020340":"Iron Sphere _ Swing down: Right -- 鉄球_鉄球振り下ろし:右","3020350":"Iron Sphere _ Right foot crush -- 鉄球_右足踏み潰し","3020360":"Iron Sphere _ Left foot crushing -- 鉄球_左足踏み潰し","3020370":"Iron Sphere Bun -- 鉄球_鉄球ぶん回し","3020500":"Iron Sphere _ General pressure -- 鉄球_汎用風圧","3021100":"C3020_ Golem (Large): right leg trampling -- c3020_ゴーレム(大):右足踏みつけ","3021101":"C3020_ Golem (Large): Right foot trampled (wind pressure) -- c3020_ゴーレム(大):右足踏みつけ(風圧)","3021110":"C3020_ Golem (Large): Left foot trampled -- c3020_ゴーレム(大):左足踏みつけ","3021111":"C3020_ Golem (Large): Left foot trampled (wind pressure) -- c3020_ゴーレム(大):左足踏みつけ(風圧)","3021120":"C3020_ Golem (Large): grated both hand and hand 1 -- c3020_ゴーレム(大):両手振りおろし1","3021121":"C3020_ Golem (Large): both hand-in-hand 1 (wind pressure) -- c3020_ゴーレム(大):両手振りおろし1(風圧)","3021130":"C3020_ Golem (Large): Both hand and hand grated 2 -- c3020_ゴーレム(大):両手振りおろし2","3021131":"C3020_ Golem (Large): Both hand and hand 2 (wind pressure) -- c3020_ゴーレム(大):両手振りおろし2(風圧)","3021140":"C3020_ Golem (Large): Right hand (forward) -- c3020_ゴーレム(大):右手払い(前方)","3021150":"C3020_ Golem (Large): Right hand (rear) -- c3020_ゴーレム(大):右手払い(後方)","3021300":"C3020_ Golem (dai): Altar slapping -- c3020_ゴーレム(大):祭壇叩き","3021301":"C3020_ Golem (Large): Altar slapping (wind pressure) -- c3020_ゴーレム(大):祭壇叩き(風圧)","3021310":"C3020_ Golem (Large): Altar whack -- c3020_ゴーレム(大):祭壇薙ぎ","3021500":"C3020_ Golem (Large): right hand beating -- c3020_ゴーレム(大):右手前殴り","3021501":"C3020_ Golem (Large): Right hand punch (wind pressure) -- c3020_ゴーレム(大):右手前殴り(風圧)","3021510":"C3020_ Golem (Large): Right Saigi -- c3020_ゴーレム(大):右薙ぎ払い","3021520":"C3020_ Golem (Large): left-hand beating -- c3020_ゴーレム(大):左手前殴り","3021521":"C3020_ Golem (Large): Front left punch (wind pressure) -- c3020_ゴーレム(大):左手前殴り(風圧)","3021530":"C3020_ Golem (Large): Left Saigi -- c3020_ゴーレム(大):左薙ぎ払い","3021540":"C3020_ Golem (Large): Both sides of the front beating -- c3020_ゴーレム(大):両手前殴り","3021541":"C3020_ Golem (Large): Both sides beating (wind pressure) -- c3020_ゴーレム(大):両手前殴り(風圧)","3021550":"C3020_ Golem (Large): Head butt -- c3020_ゴーレム(大):頭突き","3021560":"C3020_ Golem (Large): Right-hand bridge beating -- c3020_ゴーレム(大):右手橋殴り","3021580":"C3020_ Golem (Large): Two-handed bridge punch -- c3020_ゴーレム(大):両手橋殴り","3021590":"C3020_ Golem (Large): Right-hand bridge Saigi (beating) -- c3020_ゴーレム(大):右手橋薙ぎ払い(殴り)","3021591":"C3020_ Golem (Large): Right-hand bridge Saigi (payable) -- c3020_ゴーレム(大):右手橋薙ぎ払い(払い)","3021600":"C3020_ Golem (Large): Left hand Dast Shute -- c3020_ゴーレム(大):左手ダストシュート殴り","3021700":"C3020_ Golem (Large): right hand beating -- c3020_ゴーレム(大):右手前殴り","3021701":"C3020_ Golem (Large): Right hand punch (wind pressure) -- c3020_ゴーレム(大):右手前殴り(風圧)","3021710":"C3020_ Golem (Large): Both hand and hand grated -- c3020_ゴーレム(大):両手振りおろし","3021711":"C3020_ Golem (Large): Both hand and hand (wind pressure) -- c3020_ゴーレム(大):両手振りおろし(風圧)","3021720":"C3020_ Golem (Large): Left hand Saigi knocked back against part -- c3020_ゴーレム(大):左手薙ぎ払い 叩き付け部分","3021721":"C3020_ Golem (Large): Left hand Saigi knocked back against partial wind pressure -- c3020_ゴーレム(大):左手薙ぎ払い 叩き付け部分 風圧","3021722":"C3020_ Golem (Large): Left hand Saigi Saigi -- c3020_ゴーレム(大):左手薙ぎ払い 薙ぎ払い","3021730":"C3020_ Golem (Large): Right hand Saigi -- c3020_ゴーレム(大):右手薙ぎ払い","3021740":"C3020_ Golem (Large): The right hand of the enshrined punch -- c3020_ゴーレム(大):安置パンチ右手","3021750":"C3020_ Golem (Large): The left hand of the morgue punch -- c3020_ゴーレム(大):安置パンチ左手","3021760":"C3020_ Golem (Large): left-hand beating -- c3020_ゴーレム(大):左手前殴り","3021761":"C3020_ Golem (Large): Front left punch (wind pressure) -- c3020_ゴーレム(大):左手前殴り(風圧)","3021770":"C3020_ Golem (Large): Right hand grip -- c3020_ゴーレム(大):右手安置掴み","3021780":"C3020_ Golem (Large): Left hand grip -- c3020_ゴーレム(大):左手安置掴み","3040010":"The warden of the c3040_ Abyss: the Rush Whack Dagger -- c3040_深淵の監視者:突進薙ぎ 短剣","3040011":"Warden of the c3040_ Abyss: Whack the rush -- c3040_深淵の監視者:突進薙ぎ 斬り払い","3040020":"Warden of the c3040_ Abyss: the Sword up -- c3040_深淵の監視者:斬り上げ","3040030":"Warden of the c3040_ Abyss: under the butt -- c3040_深淵の監視者:下突き","3040040":"The warden of the c3040_ Abyss: the reservoir thrust -- c3040_深淵の監視者:溜め突き","3040041":"The warden of the c3040_ Abyss: the Infuser Dash -- c3040_深淵の監視者:溜め突き ダッシュ","3040042":"The warden of the c3040_ Abyss: Infuser Guard -- c3040_深淵の監視者:溜め突き ガード","3040050":"Observer of the c3040_ Abyss: Shiri -- c3040_深淵の監視者:袈裟斬り","3040051":"Observer of the c3040_ abyss: lateral whack -- c3040_深淵の監視者:横薙ぎ","3040052":"Observer of the Abyss of c3040_: slams -- c3040_深淵の監視者:叩きつけ","3040060":"Warden of the c3040_ Abyss: the forward slash -- c3040_深淵の監視者:前転斬り","3040070":"Warden of the c3040_ Abyss: A slew of attacking turns -- c3040_深淵の監視者:切り抜け攻撃 旋回","3040071":"Warden of the c3040_ Abyss: the attack dash -- c3040_深淵の監視者:切り抜け攻撃 ダッシュ","3040080":"Observer of the c3040_ Abyss: Continuous Attack longsword -- c3040_深淵の監視者:連続攻撃 長剣","3040081":"Warden of the c3040_ Abyss: a succession attack dagger -- c3040_深淵の監視者:連続攻撃 短剣","3040082":"Observer of the c3040_ Abyss: Continuous attack tightening -- c3040_深淵の監視者:連続攻撃締め","3040090":"Warden of the c3040_ Abyss: short distance restraint -- c3040_深淵の監視者:近距離牽制","3040100":"The observer of the c3040_ Abyss: the Sword -- c3040_深淵の監視者:斬り払い","3040101":"The observer of the c3040_ Abyss: Dagger Stab -- c3040_深淵の監視者:短剣刺し","3040102":"Observer of the c3040_ Abyss: Swinging -- c3040_深淵の監視者:振り上げ","3040910":"Warden of the c3040_ Abyss: Middle Range Combo First stage -- c3040_深淵の監視者:中距離コンボ 1段目","3040911":"Observer of the c3040_ Abyss: Second Stage Combo -- c3040_深淵の監視者:中距離コンボ 2段目","3040920":"Observer of the c3040_ Abyss: Dust Makiage -- c3040_深淵の監視者:土埃まきあげ","3040930":"The warden of the c3040_ Abyss: the reservoir thrust -- c3040_深淵の監視者:溜め突き","3040940":"Warden of the c3040_ Abyss: The first stage of the short range combo -- c3040_深淵の監視者:近距離コンボ 1段目","3040941":"Warden of the c3040_ Abyss: Second stage of the short range combo -- c3040_深淵の監視者:近距離コンボ 2段目","3040942":"Warden of the c3040_ Abyss: The third stage of the short range combo -- c3040_深淵の監視者:近距離コンボ 3段目","3040950":"Warden of the c3040_ Abyss: attack -- c3040_深淵の監視者:切り抜け攻撃","3040960":"Observer of c3040_ Abyss: Positioning change -- c3040_深淵の監視者:ポジショニング替え","3040970":"Warden of the c3040_ Abyss: from left to right -- c3040_深淵の監視者:左から右の斬り払い","3040980":"Warden of the c3040_ Abyss: Attack from the right -- c3040_深淵の監視者:右からの斬り攻撃","3040990":"The observer of the c3040_ Abyss: The attack from the run -- c3040_深淵の監視者:走りからの攻撃","3050100":"c3050_ Ash Daemon: Combo 1-1 Saigi -- c3050_灰のデーモン:コンボ1-1薙ぎ払い","3050101":"c3050_ Ash Daemon: Combo 1-2 slams (center) -- c3050_灰のデーモン:コンボ1-2叩きつけ(中心部)","3050102":"c3050_ Ash Daemon: Combo 1-2 slams (outer circle) -- c3050_灰のデーモン:コンボ1-2叩きつけ(外円部)","3050110":"c3050_ Ash Daemon: Combo 1-2 Reverse Payment -- c3050_灰のデーモン:コンボ1-2逆払い","3050120":"c3050_ Ash daemon: Hammered slams (arms lengthwise, center) -- c3050_灰のデーモン:槌叩きつけ(武器縦持ち、中心部)","3050121":"c3050_ Ash daemon: Hammered slams (weapon vertical, outer circle) -- c3050_灰のデーモン:槌叩きつけ(武器縦持ち、外円部)","3050130":"c3050_ Ash daemon: Hammered and dropped (to the left, center) -- c3050_灰のデーモン:槌持ち上げ落とし(左側へ、中心部)","3050131":"c3050_ Ash daemon: Hammered and dropped (to the left, out of the circle) -- c3050_灰のデーモン:槌持ち上げ落とし(左側へ、外円部)","3050140":"c3050_ Ash daemon: slams (right, center) -- c3050_灰のデーモン:叩きつけ(右側へ、中心部)","3050141":"c3050_ Ash Daemon: slams (to the right, out of the circle) -- c3050_灰のデーモン:叩きつけ(右側へ、外円部)","3050150":"c3050_ Ash daemon: Hammered Lift Drop (center) -- c3050_灰のデーモン:槌持ち上げ落とし(中心部)","3050151":"c3050_ Ash daemon: Hammered Lift Drop (outer circle) -- c3050_灰のデーモン:槌持ち上げ落とし(外円部)","3050160":"c3050_ Ash daemon: slams (center) -- c3050_灰のデーモン:叩きつけ(中心部)","3050161":"c3050_ Ash daemon: slams (outer circle) -- c3050_灰のデーモン:叩きつけ(外円部)","3050170":"c3050_ Ash Daemon: Add Bun slams -- c3050_灰のデーモン:追加ぶん回し叩きつけ","3050171":"c3051_ Ash Daemon: Add Bun slams 2 -- c3051_灰のデーモン:追加ぶん回し叩きつけ2","3050172":"C3052_ Ash Daemon: Additional Bun slams 3 (center) -- c3052_灰のデーモン:追加ぶん回し叩きつけ3(中心部)","3050173":"C3052_ Ash Daemon: Additional Bun slams 3 (outer circle) -- c3052_灰のデーモン:追加ぶん回し叩きつけ3(外円部)","3050700":"c3050_ Ash daemon: Broad Breath (straight wind 1) -- c3050_灰のデーモン:広範囲ブレス(直風1)","3050710":"c3050_ Ash Daemon: Immediate Breath (straight wind) -- c3050_灰のデーモン:直下ブレス(直風)","3050730":"c3050_ Ash Daemon: Lava meteor -- c3050_灰のデーモン:溶岩メテオ","3050740":"c3050_ Ash daemon: Lava tsunami -- c3050_灰のデーモン:溶岩津波","3060010":"Combo 1_ both hands: Saigi -- コンボ1_両手:薙ぎ払い","3060011":"Combo 1_ both hands: slams -- コンボ1_両手:叩きつけ","3060020":"Rush: Per body -- 突進:体当たり","3060030":"Close-Up lowering -- 近距離打ちおろし","3060040":"Distance slams -- 距離詰め叩きつけ","3060050":"The first hammer -- 叩きつけ三連・初撃","3060051":"A triple -- 叩きつけ三連・弐撃","3060052":"Tri-Final Attack -- 叩きつけ三連・終撃","3060060":"Ground running Hatake -- 地走薙","3060700":"Breath: Fire -- ブレス:出火","3070010":"c3070_ Daemon priest: grated 1 -- c3070_デーモン司祭:振りおろし1","3070020":"c3070_ daemon priest: grated 2 -- c3070_デーモン司祭:振りおろし2","3070030":"c3070_ Daemon priest: grated -- c3070_デーモン司祭:振りおろし","3070700":"c3070_ Demon Priest: The Fire ball of chaos -- c3070_デーモン司祭:混沌の火球","3070710":"c3070_ daemon priest: Chaos Fireball (second) -- c3070_デーモン司祭:混沌の火球(2発目)","3070720":"c3070_ Daemon Priest: The Great Storm of Chaos -- c3070_デーモン司祭:混沌の大嵐","3080700":"Butterfly of c3080_: Scales rain -- c3080_蝕の蝶:鱗粉の雨","3080710":"Butterfly of c3080_: The Big God soldier laser -- c3080_蝕の蝶:巨神兵レーザー","3080720":"Butterfly of c3080_: high-speed explosion -- c3080_蝕の蝶:低速大爆発蝕弾","3090010":"c3090_: Violent -- c3090_牢蜘蛛:暴れる","3100010":"c3100_ crystal Lizard God: Right S-Saigi -- c3100_結晶トカゲの神:右S字薙ぎ払い","3100011":"c3100_ crystal Lizard God: Right S-Saigi _ Crystal -- c3100_結晶トカゲの神:右S字薙ぎ払い_結晶","3100020":"c3100_ crystal Lizard God: Left S-shaped Saigi -- c3100_結晶トカゲの神:左S字薙ぎ払い","3100021":"c3100_ crystal Lizard God: Left S-shaped Saigi _ Crystal -- c3100_結晶トカゲの神:左S字薙ぎ払い_結晶","3100030":"c3100_ crystal lizard God: Left tail attack -- c3100_結晶トカゲの神:左尻尾攻撃","3100040":"c3100_ crystal lizard God: Right tail attack -- c3100_結晶トカゲの神:右尻尾攻撃","3100050":"c3100_ crystal lizard God: crushing both hands -- c3100_結晶トカゲの神:両手叩き潰し","3100051":"c3100_ crystal lizard God: both hands crushed -- c3100_結晶トカゲの神:両手叩き潰し_結晶","3100060":"c3100_ crystal Lizard God: Plunge attack -- c3100_結晶トカゲの神:飛び込み攻撃","3100061":"c3100_ crystal Lizard God: Plunge attack _ Crystals -- c3100_結晶トカゲの神:飛び込み攻撃_結晶","3100070":"c3100_ crystal lizard God: Breath -- c3100_結晶トカゲの神:ブレス","3100080":"c3100_ crystal lizard God: Right scratching -- c3100_結晶トカゲの神:右引っ掻き","3100090":"c3100_ crystal lizard God: Left scratching -- c3100_結晶トカゲの神:左引っ掻き","3100100":"c3100_ Crystal lizard God: start of rotation (long distance) -- c3100_結晶トカゲの神:回転開始(遠距離)","3100110":"c3100_ crystal lizard God: spinning -- c3100_結晶トカゲの神:回転","3100120":"c3100_ crystal lizard God: Rotation complete -- c3100_結晶トカゲの神:回転完了","3100130":"c3100_ crystal lizard God: Rotation complete (reversal) -- c3100_結晶トカゲの神:回転完了(反転)","3100140":"c3100_ crystal lizard God: bit -- c3100_結晶トカゲの神:噛み付き","3100200":"c3100_ crystal lizard God: for breath -- c3100_結晶トカゲの神:ブレス用","3110010":"Spider of c3110_: bit -- c3110_蝕の蜘蛛:噛み付き","3110020":"Spider of c3110_: bit: Depression -- c3110_蝕の蜘蛛:噛み付き:踏み込み小","3110030":"Spider of c3110_: Crush with Arms: mouth -- c3110_蝕の蜘蛛:腕で叩き潰す:口","3110031":"Spider of c3110_: arms crushed by arms -- c3110_蝕の蜘蛛:腕で叩き潰す:腕","3110032":"Spider of c3110_: crushing with Arms: depression Small: Mouth -- c3110_蝕の蜘蛛:腕で叩き潰す:踏み込み小:口","3110033":"Spider of c3110_: crushing with Arms: stepping Small: Arms -- c3110_蝕の蜘蛛:腕で叩き潰す:踏み込み小:腕","3110040":"Spider of c3110_: Kari: High -- c3110_蝕の蜘蛛:飛び掛かり:高い","3110060":"Spider of c3110_: bit: Right side -- c3110_蝕の蜘蛛:噛み付き:右側面","3110070":"Spider of c3110_: bit: Left side -- c3110_蝕の蜘蛛:噛み付き:左側面","3110080":"Spider of c3110_: bit ② -- c3110_蝕の蜘蛛:噛み付き②","3110090":"Spider of c3110_: rampage: the mouth -- c3110_蝕の蜘蛛:暴れまわる:口","3110091":"Spider of c3110_: rampage: Left and right hind -- c3110_蝕の蜘蛛:暴れまわる:左右後足","3110092":"Spider of c3110_: rampage: the left leg -- c3110_蝕の蜘蛛:暴れまわる:左中足","3110093":"Spider of c3110_: rampage: Four Legs -- c3110_蝕の蜘蛛:暴れまわる:前四本足","3110700":"Spider of c3110_: Exhale: Ground -- c3110_蝕の蜘蛛:蝕を吐く:地面","3110710":"c3110_: Smoke Screen -- c3110_蝕の蜘蛛:煙幕","3110800":"c3110_ common attack [obj good small, large] -- c3110_共通攻撃【OBJダメ小・大型】","3120010":"c3120_ Mori no sacred beast: Beat with a cane -- c3120_森の霊獣:杖で殴る","3120020":"c3120_ Mori no sacred beast: Hit with a cane: depression -- c3120_森の霊獣:杖で殴る:踏み込み大","3120030":"C3120_ Forest Sacred Beast: Beat with a cane: left and right side -- c3120_森の霊獣:杖で殴る:左右側面","3120040":"c3120_ Mori no sacred Beast: Bun Cane: Depression -- c3120_森の霊獣:杖をぶん回す:踏み込み大","3120050":"c3120_ Mori no sacred beast: Punch with a cane: depression small -- c3120_森の霊獣:杖で殴る:踏み込み小","3120060":"Sacred Beast of c3120_ Forest: shaking with a cane: Bun posture -- c3120_森の霊獣:杖で振りおろし:ぶん回し姿勢","3120500":"c3120_ Mori no sacred beast: Cane common knocked back against shock wave: small -- c3120_森の霊獣:杖共通叩き付け衝撃波:小","3120510":"c3120_ Mori no sacred beast: Cane common knocked back against shock wave: large -- c3120_森の霊獣:杖共通叩き付け衝撃波:大","3120700":"Sacred Beast of c3120_ Forest: Magic 1: Force -- c3120_森の霊獣:魔法1:フォース","3120710":"c3120_ Mori no sacred Beast: Magic 2: Soul Restraints -- c3120_森の霊獣:魔法2:魂縛り","3140010":"Caries dripping _ for decals -- 蝕ポタポタ_デカール用","3140100":"Straight Breath _ Head -- 直線ブレス_頭","3140110":"Saigi Breath _ Head -- 薙ぎ払いブレス_頭","3140120":"Bit _ head -- 噛み付き_頭","3140121":"Bit _ Neck -- 噛み付き_首","3140130":"Scratching _ Feet -- 引っ掻き_足","3140131":"Scratching _ Blast -- 引っ掻き_爆風","3140140":"Right squished _ feet -- 右踏み付け_足","3140141":"Right squished _ Blast -- 右踏み付け_爆風","3140150":"Left squished _ feet -- 左踏み付け_足","3140151":"Left squished _ Blast -- 左踏み付け_爆風","3140160":"A tail payment -- 尻尾払い","3140170":"Rush Bit _ Head -- 突進噛み付き_頭","3140171":"Rush Bit _ Neck -- 突進噛み付き_首","3140180":"Immediate breath _ Foot -- 直下ブレス_足","3140181":"Immediate breath _ Blast -- 直下ブレス_爆風","3140190":"Glide Breath _ Head -- 滑空ブレス_頭","3140191":"Glide Breath _ Neck -- 滑空ブレス_首","3140192":"Glide Breath _ feet -- 滑空ブレス_足","3140193":"Glide Breath _ Blast -- 滑空ブレス_爆風","3140200":"Right bit _ head -- 右旋回噛み付き_頭","3140201":"Right bit _ neck -- 右旋回噛み付き_首","3140210":"Left bit _ head -- 左旋回噛み付き_頭","3140211":"Left bit _ neck -- 左旋回噛み付き_首","3140500":"Straight Breath _ Breath -- 直線ブレス_ブレス","3140502":"Straight Breath _ Breath (impact) -- 直線ブレス_ブレス(着弾)","3140510":"Saigi Bless _ Breath -- 薙ぎ払いブレス_ブレス","3140512":"Saigi Breath _ Breath (impact) -- 薙ぎ払いブレス_ブレス(着弾)","3140520":"Immediate breath _ Breath -- 直下ブレス_ブレス","3140522":"Immediate breath _ Breath (impact) -- 直下ブレス_ブレス(着弾)","3140530":"Glide Breath _ Breath -- 滑空ブレス_ブレス","3140532":"Glide Breath _ Breath (impact) -- 滑空ブレス_ブレス(着弾)","3140540":"Event ①: Hashimoto _ Swirling Breath _ bless ① -- イベント①:橋下_旋回ブレス_ブレス①","3140542":"Event ①: Hashimoto _ Swirling Breath _ breath ① (Impact) -- イベント①:橋下_旋回ブレス_ブレス①(着弾)","3140550":"Event ①: Hashimoto _ Swirling Breath _ bless ② -- イベント①:橋下_旋回ブレス_ブレス②","3140552":"Event ①: Hashimoto _ Swirling Breath _ breath ② (Impact) -- イベント①:橋下_旋回ブレス_ブレス②(着弾)","3140560":"Event ②: Climb 2_ appearance _ on tower → Square _ breath -- イベント②:登る2_登場_塔上→広場_ブレス","3140562":"Event ②: Climb 2_ appearance _ on tower → Square _ breath (impact) -- イベント②:登る2_登場_塔上→広場_ブレス(着弾)","3140570":"Event ②: Climb 2_ another tower → square → breath withdrawal _ breath -- イベント②:登る2_別塔→広場→ブレス撤退_ブレス","3140572":"Event ②: Climb 2_ another tower → square → breath withdrawal _ breath (impact) -- イベント②:登る2_別塔→広場→ブレス撤退_ブレス(着弾)","3140580":"Rampage Breath A (breath _max) -- 暴れブレスA(ブレス_MAX)","3140581":"Rampage Breath A (ground) -- 暴れブレスA(地面)","3140582":"Rampage Breath A (ground _ decal) -- 暴れブレスA(地面_デカール)","3140583":"Rampage Breath A (breath _ ①) -- 暴れブレスA(ブレス_①)","3140584":"Rampage Breath A (breath _ ②) -- 暴れブレスA(ブレス_②)","3140585":"Rampage Breath A (breath _ ③) -- 暴れブレスA(ブレス_③)","3140586":"Rampage Breath A (breath _ ④) -- 暴れブレスA(ブレス_④)","3140587":"Rampage Breath A (breath _ ⑤) -- 暴れブレスA(ブレス_⑤)","3140588":"Rampage Breath A (breath _ ⑥) -- 暴れブレスA(ブレス_⑥)","3140590":"Rampage Breath B (Breath _max) -- 暴れブレスB(ブレス_MAX)","3140591":"Rampage Breath B (ground) -- 暴れブレスB(地面)","3140592":"Rampage Breath B (ground _ Decal) -- 暴れブレスB(地面_デカール)","3140593":"Rampage Breath B (Breath _ ①) -- 暴れブレスB(ブレス_①)","3140594":"Rampage Breath B (Breath _ ②) -- 暴れブレスB(ブレス_②)","3140595":"Rampage Breath B (Breath _ ③) -- 暴れブレスB(ブレス_③)","3140596":"Rampage Breath B (Breath _ ④) -- 暴れブレスB(ブレス_④)","3140597":"Rampage Breath B (Breath _ ⑤) -- 暴れブレスB(ブレス_⑤)","3140598":"Rampage Breath B (Breath _ ⑥) -- 暴れブレスB(ブレス_⑥)","3140630":"Rampage Breath B (ground _ Aisle) -- 暴れブレスB(地面_通路)","3140631":"Rampage Breath B (ground _ Passage decal) -- 暴れブレスB(地面_通路デカール)","3140660":"Withdrawal breath (breath _max) -- 撤退ブレス(ブレス_MAX)","3140661":"Withdrawal Breath (Breath _ ①) -- 撤退ブレス(ブレス_①)","3140662":"Withdrawal Breath (Breath _ ②) -- 撤退ブレス(ブレス_②)","3140663":"Withdrawal Breath (Breath _ ③) -- 撤退ブレス(ブレス_③)","3140664":"Withdrawal Breath (Breath _ ④) -- 撤退ブレス(ブレス_④)","3140665":"Withdrawal Breath (Breath _ ⑤) -- 撤退ブレス(ブレス_⑤)","3140666":"Withdrawal Breath (Breath _ ⑥) -- 撤退ブレス(ブレス_⑥)","3140667":"Withdrawal breath (ground _ Passage) -- 撤退ブレス(地面_通路)","3140668":"Withdrawal breath (ground _ passage decal) -- 撤退ブレス(地面_通路デカール)","3140670":"Bonfire Breath (Breath _max) -- 篝火ブレス(ブレス_MAX)","3140671":"Bonfire Bless (Breath _ ①) -- 篝火ブレス(ブレス_①)","3140672":"Bonfire Bless (Breath _ ②) -- 篝火ブレス(ブレス_②)","3140673":"Bonfire Bless (Breath _ ③) -- 篝火ブレス(ブレス_③)","3140674":"Bonfire Bless (Breath _ ④) -- 篝火ブレス(ブレス_④)","3140675":"Bonfire Bless (Breath _ ⑤) -- 篝火ブレス(ブレス_⑤)","3140676":"Bonfire Bless (Breath _ ⑥) -- 篝火ブレス(ブレス_⑥)","3140677":"Bonfire Breath (Ground _ Passage) -- 篝火ブレス(地面_通路)","3140678":"Bonfire Breath (ground _ passage decal) -- 篝火ブレス(地面_通路デカール)","3140680":"Left side breath (breath _max) -- 左側面ブレス(ブレス_MAX)","3140681":"Left Side Breath (breath _ ①) -- 左側面ブレス(ブレス_①)","3140682":"Left Side Breath (breath _ ②) -- 左側面ブレス(ブレス_②)","3140683":"Left Side Breath (breath _ ③) -- 左側面ブレス(ブレス_③)","3140684":"Left Side Breath (breath _ ④) -- 左側面ブレス(ブレス_④)","3140685":"Left Side Breath (breath _ ⑤) -- 左側面ブレス(ブレス_⑤)","3140686":"Left Side Breath (breath _ ⑥) -- 左側面ブレス(ブレス_⑥)","3140687":"Left Side breath (ground _ Aisle) -- 左側面ブレス(地面_通路)","3140688":"Left Side breath (ground _ passage decal) -- 左側面ブレス(地面_通路デカール)","3140700":"Event ①: Hashimoto _ appeared _ Feet -- イベント①:橋下_登場_足","3140701":"Event ①: Hashimoto _ appeared _ Blast (left) -- イベント①:橋下_登場_爆風(左)","3140702":"Event ①: Hashimoto _ appeared _ Blast (right) -- イベント①:橋下_登場_爆風(右)","3140710":"Event ①: Hashimoto _ Circling Breath _ feet -- イベント①:橋下_旋回ブレス_足","3140711":"Event ①: Hashimoto _ Swirling Breath _ blast -- イベント①:橋下_旋回ブレス_爆風","3160010":"C3160_ Dragon's Guardian Knight: advancethe -- c3160_竜の守護騎士:走り込み振りおろし","3160020":"The Guardian Knight of the c3160_ Dragon: Crossing _1 -- c3160_竜の守護騎士:横切り_1段目","3160021":"The Guardian Knight of the c3160_ Dragon: cross-stage -- c3160_竜の守護騎士:横切り_2段目","3160030":"C3160_ Dragon's Guardian Knight: Shield bash -- c3160_竜の守護騎士:シールドバッシュ","3160031":"C3160_ Dragon's Guardian Knight: Axe Swing -- c3160_竜の守護騎士:斧振り降ろし","3160040":"C3160_ Dragon's Guardian Knight: Axe turned attack -- c3160_竜の守護騎士:斧振り向き攻撃","3160050":"C3160_ Dragon's Guardian Knight: Shield turned attack -- c3160_竜の守護騎士:盾振り向き攻撃","3160200":"C3160_ Dragon's Guardian Knight: [HU] Jump Shield knocked back against -- c3160_竜の守護騎士:[HU]ジャンプ盾叩き付け","3160210":"C3160_ Dragon's Guardian Knight: [HU] Derived Sword -- c3160_竜の守護騎士:[HU]派生斬り","3160220":"C3160_ Dragon's Guardian Knight: [HU] Shield knocked back against -- c3160_竜の守護騎士:[HU]盾叩き付け","3160230":"C3160_ Dragon's Guardian Knight: [HU] Shield Bash added -- c3160_竜の守護騎士:[HU]シールドバッシュ追加","3160240":"C3160_ Dragon's Guardian Knight: [HU] Shield Combo 1 -- c3160_竜の守護騎士:[HU]盾コンボ1","3160250":"C3160_ Dragon's Guardian Knight: [HU] Shield guillotine -- c3160_竜の守護騎士:[HU]盾ギロチン","3160260":"C3160_ Dragon's Guardian Knight: [HU] Gurdcancell Bash -- c3160_竜の守護騎士:[HU]ガードキャンセルバッシュ","3160270":"C3160_ Dragon's Guardian Knight: Arts _ Rush Dragon Hunt: Assault -- c3160_竜の守護騎士:アーツ_突進竜狩り:突撃","3160280":"C3160_ Dragon's patron Knight: arts _ extensive whack -- c3160_竜の守護騎士:アーツ_広範囲薙ぎ","3160290":"C3160_ Dragon's Guardian Knight: the Arts _ Shockwave: Axe -- c3160_竜の守護騎士:アーツ_衝撃波:斧","3160300":"C3160_ Dragon's Guardian Knight: arts _ Jump Guillotine -- c3160_竜の守護騎士:アーツ_ジャンプギロチン","3160700":"C3160_ Dragon's Guardian Knight: Shockwave -- c3160_竜の守護騎士:衝撃波","3160900":"Guardian Knight of the C3160_ Dragon: Guard -- c3160_竜の守護騎士:ガード","3170010":"Slashing 1 -- 斬撃1","3170011":"Slashing 2 -- 斬撃2","3170012":"Slashing 3 -- 斬撃3","3170013":"Slashing 4 -- 斬撃4","3170020":"Poke a Pause -- 間合いを詰めて突く","3170030":"Both hand-held strength 1 -- 両手持ちして強斬り1","3170031":"Both hand-held strength 2 -- 両手持ちして強斬り2","3170040":"Pre Kick -- 前蹴り","3170050":"Absorbing Soul Grab -- 吸魂掴みかかり","3170051":"Soul-grabbing: throwing damage -- 吸魂掴みかかり:投げダメージ","3170060":"Cancel Soul Grab -- キャンセル吸魂掴み","3170070":"Right side to attack -- 右側面~後背攻撃","3170080":"Left side to attack -- 左側面~後背攻撃","3170090":"Soul Grip: Guard Posture -- 吸魂掴み:ガード姿勢","3170100":"Cancel Kick -- キャンセル蹴り","3170110":"Jump skewered -- ジャンプ串刺し","3170120":"Dash Whack -- ダッシュ薙ぎ","5010010":"C5010_ Storm King: a3000_ Storm whack: Sword damage -- c5010_嵐の王:a3000_嵐薙ぎ:剣ダメージ","5010020":"C5010_ Storm King: A3001_ Storm whack second stage: Sword damage -- c5010_嵐の王:a3001_嵐薙ぎ2段目:剣ダメージ","5010030":"C5010_ Storm King: A3002_ Storm whack: Sword damage -- c5010_嵐の王:a3002_嵐薙ぎ振り下ろし:剣ダメージ","5010040":"C5010_ the King of storms: a3003_ one-handed Shiri ① -- c5010_嵐の王:a3003_片手袈裟斬り①","5010050":"C5010_ the King of storms: a3004_ both hands left Kesa -- c5010_嵐の王:a3004_両手左袈裟","5010060":"King of the c5010_ storm: a3005_ both hands thrust -- c5010_嵐の王:a3005_両手突き","5010070":"King of C5010_ Storm: The a3006_ of the deadly -- c5010_嵐の王:a3006_必殺の突き","5010080":"C5010_ Storm King: A3008_ two-handed 一閃 -- c5010_嵐の王:a3008_両手横一閃","5010090":"King of C5010_ Storm: a3009_ both -- c5010_嵐の王:a3009_両手振り降ろし","5010100":"King of c5010_ Storm: a3010_ left foot down -- c5010_嵐の王:a3010_左足踏み下ろし雷撃","5010110":"C5010_ Storm King: A3011_ turned attack -- c5010_嵐の王:a3011_振り向き攻撃","5010120":"King of C5010_ Storm: a3013_ both hand thrust combo ③ -- c5010_嵐の王:a3013_両手突きコンボ③","5010130":"c5010_ King of the Storm: a3014_ two-handed left pay -- c5010_嵐の王:a3014_両手左払い","5010140":"King of c5010_ Storm: a3015_ right foot down -- c5010_嵐の王:a3015_右足踏み下ろし雷撃","5010150":"C5010_ Storm King: a3016_ small dash rush & Flip -- c5010_嵐の王:a3016_小ダッシュ突進&反転","5010160":"King of c5010_ Storm: a3017_ Depression -- c5010_嵐の王:a3017_踏み込み払い","5010200":"King of c5010_ Storm: a3007_ Gwin throwing: grasping judgment -- c5010_嵐の王:a3007_グウィン投げ:掴み判定","5010201":"C5010_ Storm King: a3007_ Gwin Throwing: Explosion -- c5010_嵐の王:a3007_グウィン投げ:爆発","5010210":"King of C5010_ Storm: Rush from A3018_ floating -- c5010_嵐の王:a3018_浮遊からの突進","5010220":"C5010_ the King of storms: a3019_ thrust at Lightning -- c5010_嵐の王:a3019_雷で突き刺す","5010700":"C5010_ Storm King: a3000_ widespread storm whack: bullet damage -- c5010_嵐の王:a3000_広範囲嵐薙ぎ:弾丸ダメージ","5010710":"C5010_ Storm King: a3001_ wide Storm whack second stage: bullet damage -- c5010_嵐の王:a3001_広範囲嵐薙ぎ2段目:弾丸ダメージ","5010720":"King of the c5010_ storm: a3002_: Bullet Damage -- c5010_嵐の王:a3002_遠距離振り降ろし:弾丸ダメージ","5020010":"Right hook -- 右フック","5020020":"Kari: Right -- 飛び掛かり:右","5020030":"Hands slams: Right -- 両手叩きつけ:右","5020040":"Left hook to right side -- 右側面へ左フック","5020050":"Right hook to left side -- 左側面へ右フック","5020060":"Jump up and crush on Wings: Right -- 翼で飛び上がって叩き潰し:右","5030100":"c5030: a3000 Other ground payment 1 -- c5030:a3000ほか 地上払い1","5030110":"c5030: a3001 Swing attack: Pay -- c5030:a3001旋回攻撃:払い","5030111":"c5030: a3001 Swing attack: per body -- c5030:a3001旋回攻撃:体当たり","5030120":"c5030: a3002 trampled (left foot): Direct hit -- c5030:a3002踏みつけ(左足):直撃","5030121":"c5030: a3002 trampled (left foot): Blast -- c5030:a3002踏みつけ(左足):爆風","5030130":"c5030: a3003 Other flying attack: thrusting -- c5030:a3003ほか 飛びかかり攻撃:突き","5030131":"c5030: a3003 Other flying attacks: per body -- c5030:a3003ほか 飛びかかり攻撃:体当たり","5030140":"c5030: a3004, ground swing down: simple -- c5030:a3004ほか 地上振り下ろし:単","5030150":"c5030: a3005: Pay: For jumping -- c5030:a3005:払い:飛びかかり用","5030160":"c5030: a3007: Ground small setback & forward thrust -- c5030:a3007:地上小後退&前進突き","5030170":"c5030: a3008: Ground Small retreat Breath: Root -- c5030:a3008:地上小後退ブレス:根本","5030171":"c5030: a3008: Ground Small retreat breath: Middle -- c5030:a3008:地上小後退ブレス:真ん中","5030172":"c5030: a3008: Ground Small retreat Breath: Tip -- c5030:a3008:地上小後退ブレス:先端","5030180":"c5030: a3009: Jumped bless -- c5030:a3009:飛び上がりブレス","5030190":"c5030: a3011: Jump over: Rush on takeoff -- c5030:a3011:飛び越える:離陸時の突進","5030200":"c5030: a3012: Swing down: for jumping -- c5030:a3012:振り下ろし:飛びかかり用","5030201":"c5030: a3013: Ground payment 1 -- c5030:a3013:地上払い1","5030210":"c5030: a3014: Ground payment 2 -- c5030:a3014:地上払い2","5030220":"c5030: a3015: Ground down -- c5030:a3015:地上振り下ろし","5030221":"c5030: a3015: Ground Down (single) -- c5030:a3015:地上振り下ろし(単)","5030230":"c5030: a3017: Trampled (right foot): direct hit -- c5030:a3017:踏みつけ(右足):直撃","5030231":"c5030: a3017: Trampled (right foot): Blast -- c5030:a3017:踏みつけ(右足):爆風","5030240":"c5030: a3018: Pounce attack (Close range): Thrust -- c5030:a3018:飛びかかり攻撃(近距離):突き","5030241":"c5030: a3018: Flying Attack (close range): per body -- c5030:a3018:飛びかかり攻撃(近距離):体当たり","5030250":"c5030: a3019: Ground Down (simple: Distance Bali 2) -- c5030:a3019:地上振り下ろし(単:距離バリ2)","5030260":"c5030: a3021: Shaking down a3000 (from a3011) -- c5030:a3021:振り下ろしa3000(a3011から繋がる版)","5030270":"c5030: a3022: Shaking down a3006 (from a3011) -- c5030:a3022:振り下ろしa3006(a3011から繋がる版)","5030800":"c5030: General crush: Right foot Hit -- c5030:汎用 押しつぶし:右足直撃","5030810":"c5030: General crush: Right foot blast -- c5030:汎用 押しつぶし:右足爆風","5030820":"c5030: General crush: Left foot hit -- c5030:汎用 押しつぶし:左足直撃","5030830":"c5030: General crush: Left foot blast -- c5030:汎用 押しつぶし:左足爆風","5030835":"c5030: General crush: Body hit -- c5030:汎用 押しつぶし:胴体直撃","5030840":"C5030: General entrainment: Neck to face -- c5030:汎用 巻き込み:首~顔","5030850":"C5030: General entrainment: Right foot -- c5030:汎用 巻き込み:右足","5030860":"C5030: General entrainment: Left foot -- c5030:汎用 巻き込み:左足","5110010":"C5110_ rushes Combo ② (Saigi) -- c5110_突進コンボ②(薙ぎ払い)","5110020":"c5110_ Jump Attack -- c5110_ジャンプ攻撃","5110030":"c5110_ Punch (Hook at close range) -- c5110_パンチ(近距離でのフック)","5110040":"c5110_ Triple Combo ① (Saigi from left hand) -- c5110_三連コンボ①(左手からの薙ぎ払い)","5110050":"c5110_ Triple Combo ② (tackle) -- c5110_三連コンボ②(タックル)","5110060":"c5110_ Triple Combo ③ (TS) -- c5110_三連コンボ③(石突での振り下し)","5110070":"c5110_ Melee Combo ① (thrust attack) -- c5110_近接コンボ①(突き出し攻撃)","5110080":"c5110_ Melee Combo ② (jump-up attack) 1_ -- c5110_近接コンボ②(跳ね上げ攻撃)1_振り下ろし","5110090":"c5110_ Backward attack -- c5110_後方攻撃","5110100":"c5110_ throwing Transition Attack ① _ grabs -- c5110_投げ遷移攻撃①_掴み","5110110":"c5110_ Lateral Step Sword -- c5110_横ステップ斬り抜け","5110120":"c5110_ Melee Combo B ① (thrust) -- c5110_近接コンボB①(突き)","5110130":"c5110_ Melee Combo B ②-1 (thrust) -- c5110_近接コンボB②-1(突き)","5110140":"c5110_ Melee Combo B ②-2 (slams) -- c5110_近接コンボB②-2(叩きつけ)","5110200":"c5110_ Heat-up transition attack -- c5110_ヒートアップ遷移攻撃","5110300":"c5110_ Heat up combo a ① (piercing) -- c5110_ヒートアップコンボA①(突き刺し)","5110310":"c5110_ heat up attack: Combo a ② (bouncing up) -- c5110_ヒートアップ攻撃:コンボA②(跳ね上げ)","5110330":"c5110_ heat up attack: Combo B ② (return Saigi) -- c5110_ヒートアップ攻撃:コンボB②(返しの薙ぎ払い)","5110340":"c5110_ heat up attack: Combo B ③ (left hand slams) -- c5110_ヒートアップ攻撃:コンボB③(左手の叩きつけ)","5110350":"c5110_ heat up attack: Combo C ① (right hand jump ⇒ thrusting) -- c5110_ヒートアップ攻撃:コンボC①(右手ジャンプ⇒突き刺し )","5110351":"c5110_ heat up attack: Combo C ① (right hand jump ⇒ Piercing) _ Left hand judgment -- c5110_ヒートアップ攻撃:コンボC①(右手ジャンプ⇒突き刺し )_左手判定","5110360":"c5110_ heat up attack: Combo C ② (left hand Saigi) -- c5110_ヒートアップ攻撃:コンボC②(左手の薙ぎ払い)","5110370":"c5110_ heat up attack: Backward attack ① (tail, slams) -- c5110_ヒートアップ攻撃:後方攻撃①(尻尾、叩きつけ)","5110380":"c5110_ heat up attack: Rear attack ② (right hand Saigi, range) -- c5110_ヒートアップ攻撃:後方攻撃②(右手薙ぎ払い、範囲)","5110391":"c5110_ heat up attack: ⇒ slams _ range with tail & left body -- c5110_ヒートアップ攻撃:尻尾&左手で上体起こし⇒叩きつけ_範囲","5110400":"c5110_ Heat-up attack: Transition attack to throw ① -- c5110_ヒートアップ攻撃:投げ①への遷移攻撃","5110420":"c5110_ heat up attack: Walk/Tail Attack _ Swing -- c5110_ヒートアップ攻撃:歩行/尻尾攻撃_振り","5110430":"c5110_ heat up attack: Medium/Long Distance/Saigi _ arm -- c5110_ヒートアップ攻撃:中遠距離用/薙ぎ払い_腕","5110431":"c5110_ heat up attack: Medium/Long Distance/Saigi _ slashing -- c5110_ヒートアップ攻撃:中遠距離用/薙ぎ払い_斬撃","5110441":"c5110_ heat up attack: Melee attack _ Snake Spirit Arm -- c5110_ヒートアップ攻撃:近接攻撃_蛇霊腕","5110700":"c5110_ Throwing damage -- c5110_投げダメージ","5110710":"c5110_ heat up attack: Throwing damage _ slams ① -- c5110_ヒートアップ攻撃:投げダメージ_叩きつけ①","5110711":"c5110_ heat up attack: Throwing damage _ slams ② -- c5110_ヒートアップ攻撃:投げダメージ_叩きつけ②","5110712":"c5110_ heat up attack: Throwing damage _ slams ③ -- c5110_ヒートアップ攻撃:投げダメージ_叩きつけ③","5110713":"c5110_ heat up attack: Throw damage _ Finish -- c5110_ヒートアップ攻撃:投げダメージ_フィニッシュ","5110900":"c5110_ heat up caries breath -- c5110_ヒートアップ蝕ブレス","5120010":"c5120_ Snake Spirits: Frontal melee attack _ head knocked back against -- c5120_蛇霊:正面近接攻撃_頭叩き付け","5120011":"c5120_ Snake Spirit: Frontal melee attack _ head lateral shaking -- c5120_蛇霊:正面近接攻撃_頭横振り","5120012":"c5120_ Snake Spirits: Frontal melee Attack _ head + neck knocked back against -- c5120_蛇霊:正面近接攻撃_頭+首叩き付け","5120013":"c5120_ Snake Spirits: Frontal melee Attack _ head + neck knocked back against Shockwave -- c5120_蛇霊:正面近接攻撃_頭+首叩き付け衝撃波","5120020":"c5120_ Snake Spirit: Combo First hammer (right hand Saigi) -- c5120_蛇霊:コンボ初撃(右手薙ぎ払い)","5120030":"c5120_ Snake Spirit: Combo 2 firing (left hand Saigi) -- c5120_蛇霊:コンボ2撃目(左手薙ぎ払い)","5120040":"C5120_ Snake Spirits: Range Turning Attack _ Body Press _ Head -- c5120_蛇霊:範囲旋回攻撃_ボディープレス_頭部","5120041":"C5120_ Snake Spirits: Range Turning Attack _ body Press _ abdomen -- c5120_蛇霊:範囲旋回攻撃_ボディープレス_腹部","5120042":"C5120_ Snake Spirits: Range Turning Attack _ Body Press _ Shockwave -- c5120_蛇霊:範囲旋回攻撃_ボディープレス_衝撃波","5120050":"c5120_ Snake Spirit: per body (rush) -- c5120_蛇霊:体当たり(突進)","5120060":"c5120_ Snake Spirits: Backward bite attack (left) -- c5120_蛇霊:後方噛みつき攻撃(左)","5120070":"c5120_ Snake Spirits: Backward bite attack (right) -- c5120_蛇霊:後方噛みつき攻撃(右)","5120080":"c5120_ Snake spirit: bit attack first stage -- c5120_蛇霊:噛み付き攻撃1段目","5120090":"c5120_ Snake Spirit: bit attack second stage -- c5120_蛇霊:噛み付き攻撃2段目","5120100":"c5120_ Snake spirits: caries breath -- c5120_蛇霊:蝕ブレス","5120110":"c5120_ Snake Spirit: Tail attack -- c5120_蛇霊:尻尾攻撃","5120120":"c5120_ Snake Spirits: turned knocked back against: Head knocked back against -- c5120_蛇霊:振り向き叩き付け:頭叩き付け","5120121":"c5120_ Snake Spirits: turned knocked back against: lunge -- c5120_蛇霊:振り向き叩き付け:突進","5120130":"c5120_ Snake spirit: bit tail: bit first stage -- c5120_蛇霊:噛み付き尻尾払い:噛み付き1段目","5120131":"c5120_ Snake spirit: bit tail: bit second stage -- c5120_蛇霊:噛み付き尻尾払い:噛み付き2段目","5120132":"c5120_: Bit tail attack: tail -- c5120_蛇霊:噛み付き尻尾攻撃:尻尾","5120140":"C5120_ Snake Spirits: bit loop: bit 1st Stage -- c5120_蛇霊:噛み付きループ:噛み付き1段目","5120141":"C5120_ Snake Spirits: bit loop: bit second stage -- c5120_蛇霊:噛み付きループ:噛み付き2段目","5120142":"C5120_ Snake Spirits: bit loop: bit third stage -- c5120_蛇霊:噛み付きループ:噛み付き3段目","5120710":"c5120_: Caries explosion -- c5120_蛇霊:蝕爆発","5120720":"c5120_ Snake Spirits: caries accumulation -- c5120_蛇霊:蝕溜まり","5120800":"c5120_ Snake Spirit: Walking Torso -- c5120_蛇霊:歩行胴体","5120801":"c5120_ Snake Spirit: Walking right hand -- c5120_蛇霊:歩行右手","5120802":"c5120_ Snake Spirit: Walking left hand -- c5120_蛇霊:歩行左手","5120810":"c5120_ Snake Spirit: Traveling Torso -- c5120_蛇霊:走行胴体","5120811":"c5120_ Snake Spirit: Traveling right hand -- c5120_蛇霊:走行右手","5120812":"c5120_ Snake Spirit: Traveling left hand -- c5120_蛇霊:走行左手","5140010":"Right hand: Shiri (avoidance included) -- 右手:右回り込み袈裟斬り(回避込み)","5140020":"Left-hand thrust (evasion included) -- 左手:左回り込み突き刺し(回避込み)","5140030":"Right hand: Jump forward dive slash -- 右手:前方ジャンプ飛び込み斬り","5140040":"Right hand: Shiri 1 -- 右手:袈裟斬り1","5140050":"Right hand: Shiri 2 -- 右手:袈裟斬り2","5140060":"Right hand: Shiri 3 -- 右手:袈裟斬り3","5140070":"Left hand: Piercing (throwing start technique) -- 左手:突き刺し(投げ始動技)","5140071":"Left hand: piercing (throwing damage) -- 左手:突き刺し(投げダメージ)","5140072":"Left hand: piercing (throwing damage deadline) -- 左手:突き刺し(投げダメージ〆)","5140080":"Left hand: Piercing -- 左手:突き刺し","5140110":"Right hand: Clockwise Shiri (attack) -- 右手:右回り込み袈裟斬り(攻撃)","5140120":"Left hand: thrust (Attack) -- 左手:左回り込み突き刺し(攻撃)","5140330":"Right hand: Jump forward dive slash -- 右手:前方ジャンプ飛び込み斬り","5140340":"Left hand: Forward jump dive left thrusting -- 左手:前方ジャンプ飛び込み左突き刺し","5140350":"Right hand: Backward jump flapping back falling right hand slash -- 右手:後方ジャンプ羽ばたき後ろ下がり右手斬り","5140360":"Left hand: upward jump flapping -- 左手:上方ジャンプ羽ばたき左突き刺し","5150100":"c5150_ Saliva: Stick a cane -- c5150_サリヴァ―ン:杖を突きたてる","5150110":"c5150_ Saliva: Climb slams and right -- c5150_サリヴァ―ン:上昇叩きつけ・右","5150120":"c5150_ Saliva: Swinging Right -- c5150_サリヴァ―ン:振り上げ・右","5150130":"c5150_ Saliva: Ascent slams, left -- c5150_サリヴァ―ン:上昇叩きつけ・左","5150140":"c5150_ Saliva: Swinging left -- c5150_サリヴァ―ン:振り上げ・左","5150150":"c5150_ Saliva: Forward Thrust: Cane -- c5150_サリヴァ―ン:前進突き:杖","5150151":"c5150_ Saliva: Forward Thrust: Body -- c5150_サリヴァ―ン:前進突き:体","5150160":"c5150_ Saliva: Whack attack: Whack -- c5150_サリヴァ―ン:薙ぎ攻撃:薙ぎ","5150170":"c5150_ Saliva: Rear Swing -- c5150_サリヴァ―ン:背面振り上げ","5150180":"c5150_ Saliva: U-turn Iaido -- c5150_サリヴァ―ン:Uターン居合","5150190":"c5150_ Saliva: Dive: At the time of appearance -- c5150_サリヴァ―ン:潜航:出現時","5150200":"c5150_ Saliva: Tail Furi -- c5150_サリヴァ―ン:尻尾振り逃げ","5150700":"c5150_ Saliva: Induction Bullet -- c5150_サリヴァ―ン:誘導弾","5150710":"c5150_ Saliva: Whack: Magic shot -- c5150_サリヴァ―ン:薙ぎ:魔法散弾","5150720":"c5150_ Saliva: Magic Penetrating Bullets -- c5150_サリヴァ―ン:魔法貫通弾","5150740":"c5150_ Saliva: NITs self-centered explosion -- c5150_サリヴァ―ン:ニト自己中心爆発","5160010":"King of c5160_: Right hand knocked back against (before HU) -- c5160_死霊の王:右手叩き付け(HU前)","5160020":"King of c5160_: Right hand Saigi (before HU) -- c5160_死霊の王:右手薙ぎ払い(HU前)","5160030":"King of the c5160_: Left hand knocked back against (before HU) -- c5160_死霊の王:左手叩き付け(HU前)","5160040":"King of the C5160_: Skeleton Resurrection (before HU) -- c5160_死霊の王:スケルトン復活(HU前)","5160050":"C5160_ King: Forward Attack-right hand (before HU) -- c5160_死霊の王:前進攻撃 - 右手(HU前)","5160051":"C5160_ King: Forward attack-left hand (before HU) -- c5160_死霊の王:前進攻撃 - 左手(HU前)","5160060":"King of the c5160_: Miasma breath (before HU): Outbreak bullet -- c5160_死霊の王:瘴気ブレス(HU前):発生弾","5160061":"King of the c5160_: Miasma breath (before HU): Diffusion bullets -- c5160_死霊の王:瘴気ブレス(HU前):拡散弾","5160070":"King of the c5160_: Tomb King (before Hu) -- c5160_死霊の王:墓王剣取り出し(HU前)","5160080":"King of the c5160_: Tomb King Sword eject attack A (before HU) -- c5160_死霊の王:墓王剣取り出し攻撃A(HU前)","5160090":"King of the c5160_: Tomb King Sword eject attack B (before HU) -- c5160_死霊の王:墓王剣取り出し攻撃B(HU前)","5160300":"King of the c5160_: the grave elementalers of the tomb King (after Hu) -- c5160_死霊の王:墓王の大剣舞 突き刺し(HU後)","5160301":"King of the c5160_: The elementalers of the Grave King (after Hu) -- c5160_死霊の王:墓王の大剣舞 突き刺し爆発(HU後)","5160302":"King of c5160_: Tomb of the Grave King Elementalers Grave King sword (after Hu) -- c5160_死霊の王:墓王の大剣舞 墓王剣(HU後)","5160303":"King of the c5160_: the grave elementalers of the tomb king -- c5160_死霊の王:墓王の大剣舞 突出剣","5160313":"King of the c5160_: Right hand Sword attack (after Hu) -- c5160_死霊の王:右手剣定点攻撃(HU後)","5160320":"C5160_ King: Right hand sword Nagi (after Hu) -- c5160_死霊の王:右手剣なぎ払い(HU後)","5160330":"King of the c5160_: the left hand slams (after Hu) -- c5160_死霊の王:左手叩きつけ(HU後)","5160340":"King of c5160_: Forward attack (after Hu) _ Right hand -- c5160_死霊の王:前進攻撃(HU後)_右手","5160341":"King of c5160_: Forward attack (after Hu) _ Left hand -- c5160_死霊の王:前進攻撃(HU後)_左手","5160350":"The King of c5160_: Skeleton Resurrection -- c5160_死霊の王:スケルトン復活","5160360":"King of c5160_: Book -- c5160_死霊の王:予約","5160370":"King of c5160_: Right hand Saigi added (before HU) -- c5160_死霊の王:右手薙ぎ払い追加(HU前)","5160380":"King of c5160_: shifted hands slams (before Hu) _ Right hand -- c5160_死霊の王:ずらし両手叩きつけ(HU前)_右手","5160381":"King of c5160_: shifted hands slams (before Hu) _ Left hand -- c5160_死霊の王:ずらし両手叩きつけ(HU前)_左手","5160390":"King of the c5160_: The Rush (before Hu) _ Body -- c5160_死霊の王:突進(HU前)_体","5160391":"King of the c5160_: The Rush (before Hu) _ right arm -- c5160_死霊の王:突進(HU前)_右腕","5160392":"King of c5160_: Rush (before Hu) _ left arm -- c5160_死霊の王:突進(HU前)_左腕","5160400":"King of the c5160_: miasma (after HU): Outbreak bullet -- c5160_死霊の王:瘴気ブレス(HU後):発生弾","5160401":"King of c5160_: Miasma (after HU): diffusion bullets -- c5160_死霊の王:瘴気ブレス(HU後):拡散弾","5160410":"King of the c5160_: two-slash (after Hu) -- c5160_死霊の王:2連斬り(HU後)","5160420":"King of the c5160_: Right hand sword thrust (after Hu) -- c5160_死霊の王:右手剣刺突(HU後)","5160430":"King of the c5160_: The rush (after Hu) _ body -- c5160_死霊の王:突進(HU後)_体","5160431":"King of c5160_: Rush (after Hu) _ Left hand -- c5160_死霊の王:突進(HU後)_左手","5160432":"King of c5160_: Rush (after Hu) _ Right Hand Sword -- c5160_死霊の王:突進(HU後)_右手剣","5160700":"King of c5160_: Drifting miasma -- c5160_死霊の王:漂う瘴気","5170010":"c5170_ patron gu long: breath -- c5170_守護の古龍:ブレス","5180010":"c5180: a3000 right foot crush -- c5180:a3000右足踏み潰し","5180020":"c5180: a3001 left foot crushing -- c5180:a3001左足踏み潰し","5180030":"c5180: a3002 right hand slapping crush -- c5180:a3002右手叩き潰し","5180040":"c5180: a3003 left hand beating crush -- c5180:a3003左手叩き潰し","5180050":"c5180: a3004 Right-hand Saigi -- c5180:a3004右手薙ぎ払い","5180060":"c5180: a3005 left hand Saigi -- c5180:a3005左手薙ぎ払い","5180070":"c5180: a3006 Hip Drop -- c5180:a3006ヒップドロップ","5180080":"C5180: a3007 Rising hip drop -- c5180:a3007立ち上がりヒップドロップ","5180090":"c5180: a3008 two-handed crush -- c5180:a3008両手叩き潰し","5180100":"c5180: a3009 Right-hand rotation attack -- c5180:a3009右手回転攻撃","5180110":"c5180: a3010 left hand rotation attack -- c5180:a3010左手回転攻撃","5180120":"c5180: a3011 stomping crush: Belly near: Right hit -- c5180:a3011踏み潰し:腹付近:右直撃","5180130":"c5180: a3012 on foot: distant front: Left foot hit -- c5180:a3012足で叩き潰す:遠距離正面:左足直撃","5180140":"c5180: a3000 right foot crush: Second hammer -- c5180:a3000右足踏み潰し:二撃目","5180150":"c5180: a3001 left foot crushing: Second hammer -- c5180:a3001左足踏み潰し:二撃目","5180160":"c5180: a3002 right hand crush: Second Hammer -- c5180:a3002右手叩き潰し:二撃目","5180170":"c5180: a3003 left hand crush: Second Hammer -- c5180:a3003左手叩き潰し:二撃目","5180180":"Rush Crush -- 突進叩き潰し","5180300":"Right-turn attack: arm -- 右回転攻撃:右腕","5180301":"Right turning attack: belly arm -- 右回転攻撃:腹腕","5180310":"Left arm rotation attack -- 左回転攻撃:左腕","5180311":"Left turn attack: Belly arm -- 左回転攻撃:腹腕","5180340":"Ground gouge: The belly arm slams -- 地面えぐり:腹腕叩きつけ","5180341":"Ground Gouge: Gouge -- 地面えぐり:えぐり取り","5180350":"Hip Drop -- ヒップドロップ","5180370":"Get up and tumble -- 立ち上がって転倒","5180380":"Belly arm Continuous slams: 4 consecutive -- 腹腕連続叩きつけ:4連続","5180390":"Rush: belly Arms Saigi blow eyes -- 突進:腹腕薙ぎ払い一撃目","5180391":"Rush: Belly arm Saigi Second hammer -- 突進:腹腕薙ぎ払い二撃目","5180392":"Rush: Belly Arm slams -- 突進:腹腕叩きつけ","5180400":"Real crush: slams -- 実潰し:叩きつけ","5180401":"Actual Crush: Rubbed -- 実潰し:擦り付ける","5180410":"c5180: a1003010_ Throw -- c5180:a1003010_投げ","5180411":"c5180: a1003010_ Throwing damage -- c5180:a1003010_投げダメージ","5180420":"Slams: Combo Stage -- 叩きつけ:コンボ初段","5180430":"Real throw -- 実投げ","5180440":"Right foot crushing -- 右足踏み潰し:右足","5180441":"Right foot crushing: a blow to the belly -- 右足踏み潰し:腹腕一撃目","5180442":"Right foot crush: Belly arm Second Hammer -- 右足踏み潰し:腹腕二撃目","5180450":"Left foot crushing -- 左足踏み潰し:左足","5180451":"Left foot crushing: belly blow -- 左足踏み潰し:腹腕一撃目","5180452":"Left foot crushing: Belly arm second Hammer -- 左足踏み潰し:腹腕二撃目","5180460":"Right hand crush: Right hand -- 右手叩き潰し:右手","5180461":"Right hand crush: Belly blow -- 右手叩き潰し:腹腕一撃目","5180462":"Right hand crush: two-eyed belly -- 右手叩き潰し:腹腕二撃目","5180470":"Left hand crush: Left hand -- 左手叩き潰し:左手","5180471":"Crushing the left hand: a blow on his belly -- 左手叩き潰し:腹腕一撃目","5180472":"Crushing the left hand: two eyes on the belly -- 左手叩き潰し:腹腕二撃目","5180800":"c5180: Generic: Mystery Juice: Bullet -- c5180:汎用:謎の汁:弾丸","5180900":"Fuselage General: Scratch -- 胴体汎用:かすり","5180901":"Fuselage General: Shockwave -- 胴体汎用:衝撃波","5180902":"Fuselage General: Blast -- 胴体汎用:爆風","5180910":"Right arm general purpose: scratch -- 右腕汎用:かすり","5180911":"Right Palm General: Shockwave -- 右手のひら汎用:衝撃波","5180920":"Left arm General: Scratch -- 左腕汎用:かすり","5180921":"Left Palm General: Shockwave -- 左手のひら汎用:衝撃波","5180930":"Right foot general purpose: scratch -- 右足汎用:かすり","5180931":"Right Palm General: Shockwave -- 右足のひら汎用:衝撃波","5180940":"Left foot general: Scratch -- 左足汎用:かすり","5180941":"Left Palm General: Shockwave -- 左足のひら汎用:衝撃波","5180950":"Abdominal hand: Scratch -- 腹手汎用:かすり","5180951":"Belly-Palm Versatile: Shockwave -- 腹手のひら汎用:衝撃波","5190010":"King of the c5190_: The shaking: the front -- c5190_廃都の孤王:振りおろし:正面","5190011":"King of the c5190_: shaking: the front: Blast -- c5190_廃都の孤王:振りおろし:正面:爆風","5190020":"King of the c5190_: thrust: Around right foot -- c5190_廃都の孤王:突き刺し:右足周辺","5190021":"King of the c5190_: piercing: The right foot around: blast -- c5190_廃都の孤王:突き刺し:右足周辺:爆風","5190030":"King of c5190_: piercing: Around the left foot -- c5190_廃都の孤王:突き刺し:左足周辺","5190031":"King of the c5190_: thrust: Around the left leg: blast -- c5190_廃都の孤王:突き刺し:左足周辺:爆風","5190040":"King of c5190_: Thrust -- c5190_廃都の孤王:突き","5190041":"King of the c5190_: Thrust: Blast -- c5190_廃都の孤王:突き:爆風","5190050":"King of c5190_: Continuous attack 1-1: Payment -- c5190_廃都の孤王:連続攻撃1-1:払い","5190051":"King of c5190_: Continuous Attack 1-2: Payment -- c5190_廃都の孤王:連続攻撃1-2:払い","5190052":"King of c5190_: Continuous attack 1-1: Pay: Blast -- c5190_廃都の孤王:連続攻撃1-1:払い:爆風","5190053":"King of c5190_: Continuous Attack 1-2: Pay: Blast -- c5190_廃都の孤王:連続攻撃1-2:払い:爆風","5190300":"King of c5190_: Continuous attack 1-1: Nagi -- c5190_廃都の孤王:連続攻撃1-1:なぎ払い","5190301":"King of c5190_: Continuous Attack 1-2: Inverse Nagi -- c5190_廃都の孤王:連続攻撃1-2:逆なぎ払い","5190310":"King of c5190_: Continuous Attack 2-1: Inverse Nagi -- c5190_廃都の孤王:連続攻撃2-1:逆なぎ払い","5190311":"King of c5190_: Continuous Attack 2-2: Thrust -- c5190_廃都の孤王:連続攻撃2-2:突き","5190312":"King of c5190_: Continuous Attack 2-1: Inverse Nagi: Blast -- c5190_廃都の孤王:連続攻撃2-1:逆なぎ払い:爆風","5190313":"King of c5190_: Continuous Attack 2-2: Thrust: Blast -- c5190_廃都の孤王:連続攻撃2-2:突き:爆風","5190320":"C5190_: The king of the disused city -- c5190_廃都の孤王:振りおろし","5190321":"King of the c5190_: the blast -- c5190_廃都の孤王:振りおろし:爆風","5190330":"King of c5190_: Pay with the left hand -- c5190_廃都の孤王:左手で払う","5190340":"King of c5190_: Thrust -- c5190_廃都の孤王:突き","5190341":"King of the c5190_: Thrust: Blast -- c5190_廃都の孤王:突き:爆風","5190350":"King of c5190_: Reverse payment: Right side -- c5190_廃都の孤王:逆払い:右側面","5190360":"King of the c5190_: the left side -- c5190_廃都の孤王:振りおろし:左側面","5190361":"King of the c5190_: the left side: the blast -- c5190_廃都の孤王:振りおろし:左側面:爆風","5190700":"King of c5190_: squeezing out loud -- c5190_廃都の孤王:大声を絞り出す","5190710":"C5190_ King of the disused city: Kensaki Shockwave -- c5190_廃都の孤王:剣先衝撃波","5200010":"c5200_ deb Daemon: Right Nagi -- c5200_デブデーモン:右なぎ払い","5200020":"c5200_ Deb Daemon: Left Nagi -- c5200_デブデーモン:左なぎ払い","5200030":"c5200_ deb daemon: Feet Right Nagi -- c5200_デブデーモン:足元右なぎ払い","5200040":"c5200_ Deb Daemon: Primary seal -- c5200_デブデーモン:一次封印","5200050":"c5200_ deb daemon: feet left Nagi -- c5200_デブデーモン:足元左なぎ払い","5200060":"c5200_ deb Daemon: underfoot knocked back against -- c5200_デブデーモン:足元叩き付け","5200070":"c5200_ Fat daemon: Medium range swing down -- c5200_デブデーモン:中距離振り下ろし","5200080":"c5200_ Fat daemon: Long distance swing down -- c5200_デブデーモン:遠距離振り下ろし","5200090":"c5200_ Deb Daemon: Hip drop -- c5200_デブデーモン:ヒップドロップ","5200200":"c5200_ Deb Daemon: right rear Nagi -- c5200_デブデーモン:右後方なぎ払い","5200210":"c5200_ deb Daemon: battering slugfest Combo First stage -- c5200_デブデーモン:大槌乱打コンボ1段目","5200211":"c5200_ deb Daemon: slugfest Combo -- c5200_デブデーモン:大槌乱打コンボ2・3段目","5200212":"c5200_ Deb Daemon: The slugfest combo Fourth stage -- c5200_デブデーモン:大槌乱打コンボ4段目","5200220":"c5200_ deb Daemon: Saigi Otsuchi -- c5200_デブデーモン:大槌薙ぎ払い","5200230":"c5200_ Deb: Hit the ground with your left hand -- c5200_デブデーモン:左手で地面を叩く","5200240":"c5200_ Deb: Pay the ground with your left hand (change direction) -- c5200_デブデーモン:左手で地面を払う(向き変え)","5200250":"c5200_ Deb Daemon: knocked back against Otsuchi -- c5200_デブデーモン:大槌叩き付け","5220700":"Fireball -- 火球","5220800":"Curse helmeted -- 呪詛の号令","5221700":"Fireball -- 火球","5221710":"Force -- フォース","5221800":"Curse _ Parents -- 呪詛_親","5222700":"Fireball -- 火球","5223700":"Fireball -- 火球","5230010":"Pay with a tail: Wait a -- 尻尾で払う:待機A","5230070":"Passage Breath 1: Wait C -- 通路ブレス1:待機C","5230071":"Passage Breath 1: Standby c_ Impact 1 -- 通路ブレス1:待機C_着弾1","5230072":"Passage Breath 1: Standby c_ Impact 2 -- 通路ブレス1:待機C_着弾2","5230130":"Outside stair breath: wait F -- 外階段ブレス:待機F","5230160":"Loft Scratch: Wait F -- ロフトひっかき:待機F","5230170":"2f Attack: Wait E -- 2F攻撃:待機E","5230200":"Outside stair breath: wait g -- 外階段ブレス:待機G","5230210":"Bell tower Breath: Wait F -- 鐘楼ブレス:待機F","5230220":"Bell tower Breath: Wait g -- 鐘楼ブレス:待機G","5230230":"Pocket Scratch: Wait C -- 懐ひっかき:待機C","5230240":"1f attack: Wait D -- 1F攻撃:待機D","5230250":"Poke/Single Passage breath 2: Wait C -- 突く・単通路ブレス2:待機C","5230260":"Passage Breath 3: Wait C -- 通路ブレス3:待機C","5230261":"Passage Breath 3: Standby c_ Impact 1 -- 通路ブレス3:待機C_着弾1","5230270":"Crush: Wait C -- 叩き潰し:待機C","5230280":"Chasing PC while blessing -- ブレスしつつPCを追う","5230320":"Breath down the stairs: wait D -- 階段下方にブレス:待機D","5240100":"c5240_ Moonlight Witch: Torch Always damage -- c5240_月光の魔女:松明常時ダメージ","5240200":"c5240_ Moonlight Witch: Long Distance Magic (pillar) -- c5240_月光の魔女:掲げ時 遠距離魔法(火柱)","5240201":"c5240_ Moonlight Witch: Long Distance Magic (burning) -- c5240_月光の魔女:掲げ時 遠距離魔法(燃焼)","5240210":"C5240_ Moonlight Witch: Pillar -- c5240_月光の魔女:掲げ時 火柱","5240211":"C5240_ Moonlight Witch: Pillar (Burning) -- c5240_月光の魔女:掲げ時 火柱(燃焼)","5240220":"c5240_ Moonlight Witch: Induction Bullet -- c5240_月光の魔女:掲げ時 誘導弾","5240230":"c5240_ Moonlight Witch: Spreading bullets -- c5240_月光の魔女:掲げ時 拡散弾","5240300":"The Witch of the c5240_ Moonlight: grasping stab thrust (throwing transition) -- c5240_月光の魔女:掴み刺突(投げ遷移)","5240301":"c5240_ Moonlight Witch: Grab Stab thrust (throw _ burning damage) -- c5240_月光の魔女:掴み刺突(投げ_燃焼ダメージ)","5240302":"c5240_ Moonlight Witch: Grab Stab thrust (throw _ knocked back against damage) -- c5240_月光の魔女:掴み刺突(投げ_叩き付けダメージ)","5240310":"c5240_ Moonlight Witch: Swirling attack -- c5240_月光の魔女:旋回攻撃","5240320":"c5240_ Moonlight Witch: Attack 1 -- c5240_月光の魔女:攻撃1","5240330":"c5240_ Moonlight Witch: Attack 2 -- c5240_月光の魔女:攻撃2","5240340":"c5240_ Moonlight Witch: Attack 3 -- c5240_月光の魔女:攻撃3","5250100":"Prince of Darkness C5250_ (brother): Whack -- c5250_闇の双皇子(兄):薙ぎ","5250110":"C5250_ of Darkness (brother): Reverse whack -- c5250_闇の双皇子(兄):逆薙ぎ","5250120":"Prince of Darkness C5250_ (brother): Swing down -- c5250_闇の双皇子(兄):振り下ろし","5250130":"Prince of Darkness C5250_ (brother): Strong attack -- c5250_闇の双皇子(兄):強攻撃","5250131":"C5250_ of Darkness (elder brother): Strong attack: Shockwave -- c5250_闇の双皇子(兄):強攻撃:衝撃波","5250140":"C5250_ of Darkness (brother): Thrusting -- c5250_闇の双皇子(兄):突き","5250150":"Prince of Darkness C5250_ (brother): Turning: Right -- c5250_闇の双皇子(兄):旋回払い:右","5250160":"C5250_ of Darkness (elder brother): Turning payment: Left -- c5250_闇の双皇子(兄):旋回払い:左","5250170":"C5250_ of Darkness (brother): Fall attack -- c5250_闇の双皇子(兄):落下攻撃","5250180":"C5250_ of Darkness (elder brother): Behind the attack -- c5250_闇の双皇子(兄):背後攻撃","5250190":"Prince of Darkness C5250_ (brother): Right side attack -- c5250_闇の双皇子(兄):右側面攻撃","5250200":"Prince of Darkness C5250_ (brother): left side attack -- c5250_闇の双皇子(兄):左側面攻撃","5251900":"Prince of Darkness C5251_ (brother): Guard -- c5251_闇の双皇子(弟):ガード","5260100":"First step, two-handed combo -- 足元両手叩きつけコンボ1段目","5260110":"Second Step (back) -- 足元両手叩きつけコンボ2段目(背面)","5260120":"Second step (right side) -- 足元両手叩きつけコンボ2段目(右側面)","5260130":"The second step (back) from the standby combo two hands slams -- 足元両手叩きつけコンボ2段目(背面)待機から","5260140":"One-handed slams -- 片手叩きつけ","5260150":"Second stage slams one hand -- 片手叩きつけ2段目","5260160":"Left from one-handed slams -- 片手叩きつけからの左旋回斬り上げ","5260170":"Saigi right from one-handed slams -- 片手叩きつけからの右薙ぎ払い","5260180":"Attack behind -- 背後攻撃","5260190":"Turned -- 振り向き払い","5260200":"Move attack -- 移動攻撃","5260210":"Nagi Combo First Stage -- なぎ払いコンボ1段目","5260220":"Additional cut-up -- 追加斬り上げ","5260230":"Front Vertical Whack 1 -- 正面縦薙ぎ1","5260240":"Front longitudinal whack (reverse) -- 正面縦薙ぎ(逆)","5260250":"Front longitudinal whack (reverse) -- 正面縦薙ぎ(逆々)","5260260":"Rampage rush: Saigi right → Left -- 暴れラッシュ:薙ぎ払い右→左","5260261":"Rampage rush: Saigi Left → Right -- 暴れラッシュ:薙ぎ払い左→右","5260262":"Wild Rush: Swing Down -- 暴れラッシュ:振り下ろし","5260263":"Wild rush: Beat Down -- 暴れラッシュ:叩き下し","5260270":"Jump Hammer -- ジャンプ鉄槌","5260400":"Weapon Swing Wind pressure (general purpose) -- 武器振り風圧(汎用)","5260500":"Hu explosion -- HU爆発","5270000":"c5270_ Tracker _3000 The butt -- c5270_追跡者_3000倒れ込み突き","5270010":"c5270_ tracker _3001 Saigi from falling butt -- c5270_追跡者_3001倒れ込み突きからの薙ぎ払い","5270020":"c5270_ Tracker _3002 right hand slams from fallen butt -- c5270_追跡者_3002倒れ込み突きからの右手叩きつけ","5270030":"c5270_ Tracker _3003 behind the attack -- c5270_追跡者_3003背後叩きつけ攻撃","5270040":"C5270_, a leftist attack from _3004 slams -- c5270_追跡者_3004叩きつけからの左派生攻撃 1撃目","5270041":"Second-wing attack from c5270_ tracker _3004 slams -- c5270_追跡者_3004叩きつけからの左派生攻撃 2撃目","5270050":"Frontal derivation attack from c5270_ tracker _3005 -- c5270_追跡者_3005叩きつけからの正面派生攻撃","5270060":"Right-derived attack from c5270_ tracker _3006 -- c5270_追跡者_3006叩きつけからの右派生攻撃","5270070":"c5270_ Tracker _3007 Slap -- c5270_追跡者_3007裏ビンタ","5270080":"c5270_ Tracker _3008 Saigi (tie from back slap) -- c5270_追跡者_3008薙ぎ払い(裏ビンタからの繋ぎ)","5270090":"c5270_ Tracker _3009 Kesa cut -- c5270_追跡者_3009袈裟切り","5270100":"c5270_ Tracker _3010 Rising Saigi attack -- c5270_追跡者_3010立ち上がり薙ぎ払い攻撃","5270110":"c5270_ Tracker _3011 frontal slams attack -- c5270_追跡者_3011正面叩きつけ攻撃","5270120":"c5270_ Tracker _3012 Saigi. -- c5270_追跡者_3012薙ぎ払い","5270130":"c5270_ Tracker _3013 Rising one-handed -- c5270_追跡者_3013立ち上がり片手振りおろし攻撃","5270140":"c5270_ Tracker _3014 explosion -- c5270_追跡者_3014蝕爆発","5270150":"C5270_ Tracker _3015 left attack (90 degrees turning) -- c5270_追跡者_3015左旋回攻撃(90度旋回)","5270151":"C5270_ Tracker _3015 left attack (90 degrees turning) pillar -- c5270_追跡者_3015左旋回攻撃(90度旋回) 火柱","5270160":"c5270_ Tracker _3016-derived combo 1 -- c5270_追跡者_3016突き派生コンボ1","5270170":"c5270_ Tracker _3017-derived combo 2 -- c5270_追跡者_3017突き派生コンボ2","5270180":"c5270_ Tracker _3018-derived combo 3 -- c5270_追跡者_3018突き派生コンボ3","5270190":"c5270_ Tracker _3019 continuous slap first shot -- c5270_追跡者_3019連続ビンタ 1打目","5270191":"c5270_ Tracker _3019 continuous slap second shot -- c5270_追跡者_3019連続ビンタ 2打目","5270200":"c5270_ Tracker _3020 The left step rotation slash -- c5270_追跡者_3020左ステップ回転斬り","5270210":"c5270_ Tracker _3021 the right step slash -- c5270_追跡者_3021右ステップ斬り","5270220":"c5270_ Tracker _3022 Jump attack -- c5270_追跡者_3022ジャンプ攻撃","5270230":"c5270_ Tracker _3023 Attack 1 -- c5270_追跡者_3023ラッシュ攻撃 1撃目","5270231":"C5270_ Tracker _3023 Attack second firing -- c5270_追跡者_3023ラッシュ攻撃 2撃目","5270232":"c5270_ Tracker, _3023 attack, the third firing. -- c5270_追跡者_3023ラッシュ攻撃 3撃目","5270233":"c5270_ Tracker, _3023 attack, four firing eyes. -- c5270_追跡者_3023ラッシュ攻撃 4撃目","5270234":"c5270_ Tracker, _3023 attack, five firing eyes. -- c5270_追跡者_3023ラッシュ攻撃 5撃目","5270235":"C5270_ Tracker _3023 Attack 6 firing -- c5270_追跡者_3023ラッシュ攻撃 6撃目","5270236":"c5270_ Tracker _3023 attack 7th -- c5270_追跡者_3023ラッシュ攻撃 7撃目","5270240":"c5270_ Tracker _3024 Horizontal Slash combo 1 -- c5270_追跡者_3024水平斬りコンボ1","5270250":"c5270_ Tracker _3025 Horizontal Slash combo 2 -- c5270_追跡者_3025水平斬りコンボ2","5270260":"c5270_ Tracker _3026 Horizontal Slash combo 3 -- c5270_追跡者_3026水平斬りコンボ3","5270270":"c5270_ Tracker _3027 Startup technique -- c5270_追跡者_3027投げ始動技","5270320":"C5270_ Tracker _3032 Attack _ Finish -- c5270_追跡者_3032突進攻撃_フィニッシュ","5270330":"c5270_ Tracker _3033 Foot Sword -- c5270_追跡者_3033足元斬り","5270410":"_4100 Attack by c5270_ Tracker -- c5270_追跡者_4100投げ攻撃","5270500":"c5270_ tracker _100_3000 [HU] fall-down thrust sword -- c5270_追跡者_100_3000[HU]倒れ込み突き二段 炎剣","5270501":"c5270_ tracker _100_3000 [HU] fall into a two-stage caries sword -- c5270_追跡者_100_3000[HU]倒れ込み突き二段 蝕剣","5270510":"c5270_ tracker _100_3001 [HU] behind the attack two-stage caries sword -- c5270_追跡者_100_3001[HU]背後叩きつけ攻撃二段 蝕剣","5270511":"c5270_ tracker _100_3001 [HU] slams attack two-tiered fire sword -- c5270_追跡者_100_3001[HU]背後叩きつけ攻撃二段 炎剣","5270520":"c5270_ tracker _100_3002 [HU] Eclipse explosion two-stage warning -- c5270_追跡者_100_3002[HU]蝕爆発二段 予兆爆発","5270521":"c5270_ tracker _100_3002 [HU] Eclipse explosion stage explosion -- c5270_追跡者_100_3002[HU]蝕爆発二段 爆発","5270522":"c5270_ tracker _100_3002 [HU] caries explosion two-stage caries sword -- c5270_追跡者_100_3002[HU]蝕爆発二段 蝕剣","5270530":"c5270_ tracker _100_3003 [HU] Right Saigi -- c5270_追跡者_100_3003[HU]右薙ぎ払い","5270540":"c5270_ tracker _100_3004 [HU] left Saigi -- c5270_追跡者_100_3004[HU]左薙ぎ払い","5270550":"c5270_ tracker _100_3005 [HU] Saigi 1 second firing -- c5270_追跡者_100_3005[HU]二連薙ぎ払い 1撃目","5270551":"c5270_ tracker _100_3005 [HU] double Saigi second firing -- c5270_追跡者_100_3005[HU]二連薙ぎ払い 2撃目","5270560":"c5270_ tracker _100_3006 [HU] Saigi -- c5270_追跡者_100_3006[HU]薙ぎ払い","5270570":"c5270_ tracker _100_3007 [HU] throwing start and caries sword two simultaneous -- c5270_追跡者_100_3007[HU]投げ始動技 蝕剣 2本同時","5270571":"c5270_ tracker _100_3007 [HU] throwing starter fire Sword two simultaneously -- c5270_追跡者_100_3007[HU]投げ始動技 炎剣 2本同時","5270580":"c5270_ tracker _100_3008 [HU] Rise of the Shook sword -- c5270_追跡者_100_3008[HU]立ち上がり二連振り払い 蝕剣","5270581":"c5270_ tracker _100_3008 [HU] Rise of the Shook sword -- c5270_追跡者_100_3008[HU]立ち上がり二連振り払い 炎剣","5270590":"c5270_ tracker _100_3009 [HU] frontal slams 2 simultaneous attack of caries sword -- c5270_追跡者_100_3009[HU]正面叩きつけ攻撃 蝕剣 2本同時","5270591":"c5270_ tracker _100_3009 [HU] frontal slams attack fire sword two simultaneous -- c5270_追跡者_100_3009[HU]正面叩きつけ攻撃 炎剣 2本同時","5270600":"c5270_ tracker _100_3010 [HU] The left-wing raw attack from a slams -- c5270_追跡者_100_3010[HU]叩きつけからの左派生攻撃 1撃目","5270601":"c5270_ tracker _100_3010 [HU] second-wing attack from the slams -- c5270_追跡者_100_3010[HU]叩きつけからの左派生攻撃 2撃目","5270610":"Front-derived attack from c5270_ tracker _100_3011 [HU] slams -- c5270_追跡者_100_3011[HU]叩きつけからの正面派生攻撃","5270620":"Right-derived attack from c5270_ tracker _100_3012 [HU] slams -- c5270_追跡者_100_3012[HU]叩きつけからの右派生攻撃","5270630":"c5270_ tracker _100_3013 [HU] both the rise and -- c5270_追跡者_100_3013[HU]立ち上がり両手振りおろし攻撃 蝕剣 2本同時","5270631":"c5270_ tracker _100_3013 [HU] both hand-in-hand hand-attack Fire Sword two simultaneous -- c5270_追跡者_100_3013[HU]立ち上がり両手振りおろし攻撃 炎剣 2本同時","5270640":"c5270_ tracker _100_3014 [HU] left step rotation sword -- c5270_追跡者_100_3014[HU]左ステップ回転斬り 蝕剣","5270641":"c5270_ tracker _100_3014 [HU] left step rotation Sword of Flame -- c5270_追跡者_100_3014[HU]左ステップ回転斬り 炎剣","5270650":"c5270_ tracker _100_3015 [HU] Right step sword of Flame -- c5270_追跡者_100_3015[HU]右ステップ斬り 炎剣","5270651":"c5270_ tracker _100_3015 [HU] Right step sword of caries -- c5270_追跡者_100_3015[HU]右ステップ斬り 蝕剣","5270660":"c5270_ tracker _100_3016 [HU] rush attack 1 caries -- c5270_追跡者_100_3016[HU]ラッシュ攻撃 1蝕","5270661":"c5270_ tracker _100_3016 [HU] Rush Attack 2 Flames -- c5270_追跡者_100_3016[HU]ラッシュ攻撃 2炎","5270662":"c5270_ tracker _100_3016 [HU] rush Attack 3 caries -- c5270_追跡者_100_3016[HU]ラッシュ攻撃 3蝕","5270663":"c5270_ tracker _100_3016 [HU] Rush Attack 4 Flames -- c5270_追跡者_100_3016[HU]ラッシュ攻撃 4炎","5270664":"c5270_ tracker _100_3016 [HU] Rush Attack 5 Flames -- c5270_追跡者_100_3016[HU]ラッシュ攻撃 5炎","5270665":"c5270_ tracker _100_3016 [HU] lash attack 6 caries -- c5270_追跡者_100_3016[HU]ラッシュ攻撃 6蝕","5270666":"c5270_ tracker _100_3016 [HU] Rush Attack 7 Flames -- c5270_追跡者_100_3016[HU]ラッシュ攻撃 7炎","5270667":"c5270_ tracker _100_3016 [HU] rush attack 8 caries -- c5270_追跡者_100_3016[HU]ラッシュ攻撃 8蝕","5270668":"c5270_ tracker _100_3016 [HU] Rush Attack 9 Flames -- c5270_追跡者_100_3016[HU]ラッシュ攻撃 9炎","5270670":"c5270_ tracker _100_3017 [HU] Triple combo 1 Eclipse 2 simultaneous -- c5270_追跡者_100_3017[HU]三連コンボ 1蝕 2本同時","5270671":"c5270_ tracker _100_3017 [HU] Triple combo 1 Flame 2 simultaneous -- c5270_追跡者_100_3017[HU]三連コンボ 1炎 2本同時","5270672":"c5270_ tracker _100_3017 [HU] Triple combo 2 Flames two at a time -- c5270_追跡者_100_3017[HU]三連コンボ 2炎 2本同時","5270673":"c5270_ tracker _100_3017 [HU] Triple combo 2 caries 2 simultaneous -- c5270_追跡者_100_3017[HU]三連コンボ 2蝕 2本同時","5270674":"c5270_ tracker _100_3017 [HU] Triple combo 3 caries 2 simultaneous -- c5270_追跡者_100_3017[HU]三連コンボ 3蝕 2本同時","5270675":"c5270_ tracker _100_3017 [HU] Triple combo 3 Flames two at a time -- c5270_追跡者_100_3017[HU]三連コンボ 3炎 2本同時","5270680":"c5270_ tracker _100_3018 [HU] Rotation attack _ Starting Flame Sword -- c5270_追跡者_100_3018[HU]回転攻撃_始動 炎剣","5270681":"c5270_ tracker _100_3018 [HU] Rotation attack _ Starting caries Sword -- c5270_追跡者_100_3018[HU]回転攻撃_始動 蝕剣","5270690":"c5270_ tracker _100_3019 [HU] rotation attack loop caries Sword two simultaneous -- c5270_追跡者_100_3019[HU]回転攻撃ループ 蝕剣 2本同時","5270691":"c5270_ tracker _100_3019 [HU] rotation attack loop Flame Sword two simultaneous -- c5270_追跡者_100_3019[HU]回転攻撃ループ 炎剣 2本同時","5270700":"c5270_ tracker _100_3020 [HU] Revolving attack _ Finish caries Sword -- c5270_追跡者_100_3020[HU]回転攻撃_フィニッシュ 蝕剣","5270701":"c5270_ tracker _100_3020 [HU] Rotation attack _ Finish Flame Sword -- c5270_追跡者_100_3020[HU]回転攻撃_フィニッシュ 炎剣","5270710":"c5270_ tracker _100_3021 [HU] jump attack Flame Stab -- c5270_追跡者_100_3021[HU]ジャンプ攻撃 炎刺し","5270711":"c5270_ tracker _100_3021 [HU] Jump attack caries -- c5270_追跡者_100_3021[HU]ジャンプ攻撃 蝕払い","5270720":"c5270_ tracker _100_3022 [HU] right attack (90 degree swivel) caries Sword -- c5270_追跡者_100_3022[HU]右旋回攻撃(90度旋回) 蝕剣","5270721":"c5270_ tracker _100_3022 [HU] right attack (90 degree turning) caries column -- c5270_追跡者_100_3022[HU]右旋回攻撃(90度旋回) 蝕柱","5270730":"c5270_ tracker _100_3023 [HU] left attack (90 degree swivel) Flame Sword -- c5270_追跡者_100_3023[HU]左旋回攻撃(90度旋回) 炎剣","5270731":"c5270_ tracker _100_3023 [HU] left attack (90 degree turning) Flame pillar -- c5270_追跡者_100_3023[HU]左旋回攻撃(90度旋回) 炎柱","5270740":"c5270_ tracker _100_3024 [HU] frontal thrust attack caries Sword -- c5270_追跡者_100_3024[HU]正面突き攻撃 蝕剣","5270750":"c5270_ tracker _100_3025 [HU] turned Saigi 1 two simultaneous caries -- c5270_追跡者_100_3025[HU]振り向き薙ぎ払い 1蝕 2本同時","5270751":"c5270_ tracker _100_3025 [HU] turned Saigi 1 Flames 2 simultaneous -- c5270_追跡者_100_3025[HU]振り向き薙ぎ払い 1炎 2本同時","5270900":"c5270_ Tracker _1500 Heat-up transition caries Vortex -- c5270_追跡者_1500ヒートアップ遷移 蝕の渦"},"AtkParam_Pc":{"0":"Dummy Bullets -- ダミー弾丸","4":"Automatic Cyclic object destruction -- 自動巡回オブジェ破壊用","5":"Dummy attack to keep bullets out -- 弾丸出し続ける用ダミー攻撃","10":"Pc_ Common _ Egg attack -- PC_共通_卵攻撃","40":"Common attack [Ladder _ right Punch] -- 共通攻撃【ハシゴ_右パンチ】","41":"Common attack [ladder _ Right Kick] -- 共通攻撃【ハシゴ_右キック】","42":"Common attack [Ladder _ left Punch] -- 共通攻撃【ハシゴ_左パンチ】","43":"Common attack [Ladder _ left Kick] -- 共通攻撃【ハシゴ_左キック】","44":"Common attack [Ladder _ Slide down] -- 共通攻撃【ハシゴ_滑り降り】","101":"System: Attack magnification for menu display -- 【システム】メニュー表示用攻撃倍率","200":"Common attack [falling] _ Attack Armor -- 共通攻撃【落下】_攻撃防具","201":"Common attack [Landing] _ Attack Armor -- 共通攻撃【着地】_攻撃防具","202":"Common attack [Thud landing] _ attack Armor -- 共通攻撃【ドスン着地】_攻撃防具","203":"Common attack (Fall Landing) _ Attack Armor -- 共通攻撃【転倒着地】_攻撃防具","204":"Common attack [Rolling] _ Attack Armor -- 共通攻撃【ローリング】_攻撃防具","205":"Common attack [Summon] _ Attack Armor -- 共通攻撃【召喚】_攻撃防具","206":"Common attack [falling on back] _ Attack Armor -- 共通攻撃【仰向け落下】_攻撃防具","210":"Common attack [before push] _ attack Armor -- 共通攻撃【プッシュ前】_攻撃防具","211":"Common attack [later blows] _ attack Armor -- 共通攻撃【後へ吹っ飛ぶ】_攻撃防具","212":"Common attack [吹tsu飛bimasu] _ Attack Armor -- 共通攻撃【前に吹っ飛び】_攻撃防具","213":"Common attacks [after push] _ attack Armor -- 共通攻撃【プッシュ後】_攻撃防具","220":"Common attack [throwing] _ Attack armor -- 共通攻撃【投げ】_攻撃防具","221":"Common attack [Strong throw] _ Attack Armor -- 共通攻撃【強投げ】_攻撃防具","222":"Common attack [Paris slams] _ Attack armor -- 共通攻撃【パリィ叩きつけ】_攻撃防具","300":"Common attack [falling] -- 共通攻撃【落下】","301":"Common attack [landing] -- 共通攻撃【着地】","302":"Common attack [Thud landing] -- 共通攻撃【ドスン着地】","303":"Common attack (Fall Landing) -- 共通攻撃【転倒着地】","304":"Common attack [rolling] -- 共通攻撃【ローリング】","305":"Common attack [Summon] -- 共通攻撃【召喚】","306":"Common attack [falling on back] -- 共通攻撃【仰向け落下】","310":"Common attack [before push] -- 共通攻撃【プッシュ前】","311":"Common attack [later blows] -- 共通攻撃【後へ吹っ飛ぶ】","312":"Common attack [吹tsu飛bimasu] -- 共通攻撃【前に吹っ飛び】","313":"Common attack after push -- 共通攻撃【プッシュ後】","320":"Common attack [throwing] -- 共通攻撃【投げ】","321":"Common attack [strong throw] -- 共通攻撃【強投げ】","322":"Common attack [Paris slams] -- 共通攻撃【パリィ叩きつけ】","900":"return blood of Poison -- 毒の返り血","1050":"Damage for throwing knives -- 投げナイフ用ダメージ","1052":"Fire Bottle Damage -- 火炎瓶用ダメージ","1054":"Black Flame Bottle Damage -- 黒火炎瓶用ダメージ","1055":"Flame Bottle Body -- 火炎瓶本体","1200":"Quick Throw knife damage -- クイック投げナイフ用ダメージ","1201":"Test: Poison-throwing knife damage -- テスト:毒投げナイフ用ダメージ","2000":"Ordinary arrows -- 普通の矢","2010":"Ordinary arrow _ Move shot -- 普通の矢_移動撃ち","2020":"normal arrows Diffuse -- 普通の矢_拡散","2030":"Normal arrow Fire -- 普通の矢_連射","2100":"Big arrows -- 大きな矢","2200":"Feather Arrow -- 羽根矢","2300":"Arrows -- 火矢","2400":"Poison -- 毒矢","2410":"Mantella _ Moving Shot -- 毒矢_移動撃ち","2420":"Mantella _ Diffuse -- 毒矢_拡散","2430":"Mantella _ Blazing -- 毒矢_連射","2500":"Mon Mitsuya -- 月光矢","2600":"Tree Arrow -- 木の矢","2700":"The Dragon Hunting Oya -- 竜狩りの大矢","2710":"The Dragon hunting of Ohya _ through bullets -- 竜狩りの大矢_貫通弾","10000":"Soul Arrow -- ソウルの矢","10001":"Seoul Arrow Double Chanting -- ソウルの矢二重詠唱","10010":"Strong Soul Arrow -- 強いソウルの矢","10020":"Seoul's Thick Arrow -- ソウルの太矢","10021":"Seoul Heavy Arrow Double chanting -- ソウルの太矢二重詠唱","10022":"Double chanting in Seoul -- ソウルの太矢二重詠唱派生","10030":"Strong Soul -- 強いソウルの太矢","10080":"En bullet D -- EN弾D","10090":"En bullet D2 -- EN弾D2","10100":"The mass of the chasing soul -- 追尾するソウルの塊","10101":"The mass of the chasing soul: bullets -- 追尾するソウルの塊:弾","10110":"The Great Sword of Seoul (right) -- ソウルの大剣(右)","10111":"The Great Sword of Seoul (left) -- ソウルの大剣(左)","10120":"Quick Soul Arrow -- クイックソウルの矢","12000":"Summon One -- 召喚1","12001":"1_ Summon Resonance Lv1 -- 召喚1_共鳴LV1","12002":"1_ Summon Resonance Lv2 -- 召喚1_共鳴LV2","12003":"1_ Summon Resonance Lv3 -- 召喚1_共鳴LV3","12010":"Summon 2 -- 召喚2","12011":"2_ Summon Resonance Lv1 -- 召喚2_共鳴LV1","12012":"2_ Summon Resonance Lv2 -- 召喚2_共鳴LV2","12013":"2_ Summon Resonance Lv3 -- 召喚2_共鳴LV3","13000":"Fireball -- 火球","13001":"Fireball Double Chanting -- 火球二重詠唱","13002":"Fire Ball double chanting derivation -- 火球二重詠唱派生","13010":"Fireball -- 火の玉","13011":"Fireball Double Chanting -- 火の玉二重詠唱","13012":"Fireball Double Chanting Derivation -- 火の玉二重詠唱派生","13020":"A strong fireball -- 強い火の玉","13030":"Chaos _ Fireball -- カオス_ファイアボール","13040":"Chaos _ Fire Ball [lava] -- カオス_ファイアボール【溶岩】","14000":"Fire -- 発火","14001":"Firing double Chanting -- 発火二重詠唱","14010":"Proximity Flames 2 -- 近接炎2","14020":"Proximity Flames 3 -- 近接炎3","15000":"Firestorm 1 -- ファイアストーム1","15001":"Firestorm 1 Double Chant -- ファイアストーム1二重詠唱","15010":"Firestorm 2 -- ファイアストーム2","15020":"Chaos _ Firestorm -- カオス_ファイアストーム","15030":"Chaos _ Firestorm [lava] -- カオス_ファイアストーム【溶岩】","16000":"Lightning 1 [Parent] -- 雷1【親】","16001":"Thunder 1 [Child] -- 雷1【子】","16002":"Thunder 1 [grandchild] -- 雷1【孫】","16003":"Thunder 1 [grandson] -- 雷1【曾孫】","16004":"Thunder 1 [Genn] -- 雷1【玄孫】","16005":"Thunder 1 [grandchild coming] -- 雷1【来孫】","16010":"Lightning 1 [Close range] -- 雷1【近距離】","16100":"Lightning 2 [Parent] -- 雷2【親】","16110":"Thunder 2 [Child] -- 雷2【子】","16120":"Thunder 2 [grandchild] -- 雷2【孫】","16130":"Thunder 2 [grandson] -- 雷2【曾孫】","16140":"Thunder 2 [Genn] -- 雷2【玄孫】","16150":"Thunder 2 [grandson coming] -- 雷2【来孫】","16200":"Thunder 3 [Parent] -- 雷3【親】","16210":"Thunder 3 [Child] -- 雷3【子】","16220":"Thunder 3 [grandchild] -- 雷3【孫】","16230":"Thunder 3 [grandson] -- 雷3【曾孫】","16240":"Thunder 3 [Genn] -- 雷3【玄孫】","16250":"Thunder 3 [grandson coming] -- 雷3【来孫】","17000":"Causal retribution -- 因果応報","19000":"Force One -- フォース1","19001":"Force 1 Double Chant -- フォース1二重詠唱","19010":"Force Two -- フォース2","19011":"Force 2_ Resonance Lv1 -- フォース2_共鳴LV1","19012":"Force 2_ Resonance Lv2 -- フォース2_共鳴LV2","19013":"Force 2_ Resonance Lv3 -- フォース2_共鳴LV3","19014":"Force 2_ Resonance Lv4 -- フォース2_共鳴LV4","19020":"Force three -- フォース3","19021":"Force 3_ Resonance Lv1 -- フォース3_共鳴LV1","19022":"Force 3_ Resonance Lv2 -- フォース3_共鳴LV2","19023":"Force 3_ Resonance Lv3 -- フォース3_共鳴LV3","19024":"Force 3_ Resonance Lv4 -- フォース3_共鳴LV4","20000":"Seoul Drain 1 -- ソウルドレイン1","20010":"Soul Drain 2 -- ソウルドレイン2","21000":"Flame radiation -- 火炎放射","22000":"Fire Whip -- 炎のムチ","23000":"Chaos _ The Whip of flames -- カオス_炎のムチ","23010":"Chaos _ A whip of flames [lava] -- カオス_炎のムチ【溶岩】","24000":"Crystal Beam -- 結晶ビーム","25000":"[DLC] Dark Ball -- 【DLC】闇の玉","26000":"[DLC] Splash of Darkness -- 【DLC】闇の飛沫","27000":"[DLC] chasing people -- 【DLC】追う者たち","28000":"[DLC] Black Flame -- 【DLC】黒炎","30000":"Funnel -- ファンネル","30001":"Energetic ball attack Lv1 -- 元気玉攻撃Lv1","30002":"Energetic ball attack Lv2 -- 元気玉攻撃Lv2","30003":"Energetic ball attack Lv3 -- 元気玉攻撃Lv3","30004":"Machine gun -- マシンガン","30005":"Through beam -- 貫通ビーム","30006":"Fire Bolt -- ファイアボルト","30007":"Thunder 1_ resonance Lv2 [parent] -- 雷1_共鳴LV2【親】","30008":"Thunder 1_ Resonance Lv2 【 child 】 -- 雷1_共鳴LV2【子】","30009":"Thunder 1_ resonance Lv2 [grandchild] -- 雷1_共鳴LV2【孫】","30010":"Thunder 1_ resonance Lv2 [grandson] -- 雷1_共鳴LV2【曾孫】","30011":"Thunder 1_ resonance Lv2 [Genn] -- 雷1_共鳴LV2【玄孫】","30012":"Thunder 1_ resonance Lv2 [coming grandchild] -- 雷1_共鳴LV2【来孫】","30013":"Thunder 1_ resonance Lv3 [parent] -- 雷1_共鳴LV3【親】","30014":"Thunder 1_ Resonance Lv3 【 child 】 -- 雷1_共鳴LV3【子】","30015":"Thunder 1_ resonance Lv3 [grandchild] -- 雷1_共鳴LV3【孫】","30016":"Thunder 1_ resonance Lv3 [grandson] -- 雷1_共鳴LV3【曾孫】","30017":"Thunder 1_ resonance Lv3 [Genn] -- 雷1_共鳴LV3【玄孫】","30018":"Thunder 1_ resonance Lv3 [coming grandchild] -- 雷1_共鳴LV3【来孫】","30019":"Thunder 1_ resonance lv4 [parent] -- 雷1_共鳴LV4【親】","30020":"Thunder 1_ Resonance lv4 【 child 】 -- 雷1_共鳴LV4【子】","30021":"Thunder 1_ resonance lv4 [grandchild] -- 雷1_共鳴LV4【孫】","30022":"Thunder 1_ resonance lv4 [grandson] -- 雷1_共鳴LV4【曾孫】","30023":"Thunder 1_ resonance lv4 [Genn] -- 雷1_共鳴LV4【玄孫】","30024":"Thunder 1_ resonance lv4 [coming grandchild] -- 雷1_共鳴LV4【来孫】","30025":"Thunder 1_ resonance lv5 [parent] -- 雷1_共鳴LV5【親】","30026":"Thunder 1_ Resonance lv5 【 child 】 -- 雷1_共鳴LV5【子】","30027":"Thunder 1_ resonance lv5 [grandchild] -- 雷1_共鳴LV5【孫】","30028":"Thunder 1_ resonance lv5 [grandson] -- 雷1_共鳴LV5【曾孫】","30029":"Thunder 1_ resonance lv5 [Genn] -- 雷1_共鳴LV5【玄孫】","30030":"Thunder 1_ resonance lv5 [coming grandchild] -- 雷1_共鳴LV5【来孫】","30900":"Recovery: Recover Yourself -- 回復:自分回復","30901":"Recovery: Ambient Recovery -- 回復:周囲回復","31100":"A firm vow -- 固い誓い","900000":"Bomb ritual: Explosive bullets around -- ボム儀式:周囲爆発弾","910000":"Bomb ritual: Target Search Bullets _ host lv.20 or less -- ボム儀式:ターゲット検索弾_ホストLv.20 以下","910100":"Bomb ritual: Target Search Bullets _ host lv.40 or less -- ボム儀式:ターゲット検索弾_ホストLv.40 以下","910200":"Bomb ritual: Target Search Bullets _ host lv.60 or less -- ボム儀式:ターゲット検索弾_ホストLv.60 以下","910300":"Bomb ritual: Target Search Bullets _ host lv.80 or less -- ボム儀式:ターゲット検索弾_ホストLv.80 以下","910400":"Bomb ritual: Target Search Bullets _ host lv.100 or less -- ボム儀式:ターゲット検索弾_ホストLv.100 以下","910500":"Bomb ritual: Target Search Bullets _ host lv.120 or less -- ボム儀式:ターゲット検索弾_ホストLv.120 以下","910600":"Bomb ritual: Target Search Bullets _ host lv.140 or less -- ボム儀式:ターゲット検索弾_ホストLv.140 以下","910700":"Bomb ritual: Target Search Bullets _ host lv.160 or less -- ボム儀式:ターゲット検索弾_ホストLv.160 以下","910800":"Bomb ritual: Target Search Bullets _ host lv.180 or less -- ボム儀式:ターゲット検索弾_ホストLv.180 以下","910900":"Bomb ritual: Target Search Bullets _ host lv.200 or less -- ボム儀式:ターゲット検索弾_ホストLv.200 以下","911000":"Bomb ritual: Target Search Bullets _ host lv.250 or less -- ボム儀式:ターゲット検索弾_ホストLv.250 以下","911100":"Bomb ritual: Target Search Bullets _ host lv.300 or less -- ボム儀式:ターゲット検索弾_ホストLv.300 以下","911200":"Bomb ritual: Target Search Bullets _ host lv.400 or less -- ボム儀式:ターゲット検索弾_ホストLv.400 以下","911300":"Bomb ritual: Target Search Bullets _ host lv.500 or less -- ボム儀式:ターゲット検索弾_ホストLv.500 以下","911400":"Bomb ritual: Target Search Bullets _ host lv.600 or less -- ボム儀式:ターゲット検索弾_ホストLv.600 以下","911500":"Bomb ritual: Target Search Bullets _ host lv.700 or less -- ボム儀式:ターゲット検索弾_ホストLv.700 以下","911600":"Bomb ritual: Target Search Bullets _ host lv.800 or less -- ボム儀式:ターゲット検索弾_ホストLv.800 以下","2000000":"Dagger _ one hand usually 1 -- 短剣_片手通常1","2000010":"Dagger _ one hand usually two -- 短剣_片手通常2","2000020":"Dagger _ one hand usually three -- 短剣_片手通常3","2000030":"Dagger _ One handed jump -- 短剣_片手ジャンプ1","2000040":"Dagger _ one-handed fall loop -- 短剣_片手落下ループ","2000050":"Dagger _ one-handed fall landing -- 短剣_片手落下着地","2000100":"Dagger _ one-handed entertainment 1 -- 短剣_片手タメ1","2000105":"Dagger _ one-handed Entertainment 1 MAX -- 短剣_片手タメ1最大","2000110":"Dagger _ one-handed Entertainment 2 -- 短剣_片手タメ2","2000115":"Dagger _ one-handed Entertainment 2 Max -- 短剣_片手タメ2最大","2000200":"Dagger _ Two hands usually one -- 短剣_両手通常1","2000210":"Dagger _ Two Hands usually 2 -- 短剣_両手通常2","2000220":"Dagger _ Two hands usually three -- 短剣_両手通常3","2000230":"Dagger _ two-handed jump -- 短剣_両手ジャンプ1","2000240":"Dagger _ two-handed fall loop -- 短剣_両手落下ループ","2000250":"Dagger _ two-handed fall landing -- 短剣_両手落下着地","2000300":"Dagger _ two-handed entertainment 1 -- 短剣_両手タメ1","2000305":"Dagger _ two-handed entertainment 1 MAX -- 短剣_両手タメ1最大","2000310":"Dagger _ two-handed Entertainment 2 -- 短剣_両手タメ2","2000315":"Dagger _ two-handed entertainment max -- 短剣_両手タメ2最大","2000400":"Dagger _ Left Hand -- 短剣_左手","2000410":"Dagger _ one hand close -- 短剣_片手近距離","2000420":"Dagger _ Both hands close -- 短剣_両手近距離","2000430":"Dagger _ one-handed guard -- 短剣_片手ガード","2000440":"Dagger _ Both hands Guard -- 短剣_両手ガード","2000450":"Dagger _ Paris -- 短剣_パリィ","2000470":"Dagger _ Large Throw -- 短剣_大型投げ","2000490":"Dagger _ Falling Throw -- 短剣_落下投げ","2000500":"Behind the Dagger -- 短剣_背後","2000505":"Dagger _ Strengthening behind -- 短剣_強化背後","2000510":"Dagger _ after Paris -- 短剣_パリィ後","2000515":"Dagger _ After strengthening Paris -- 短剣_強化パリィ後","2000516":"Dagger _ After strengthening Paris _ two -- 短剣_強化パリィ後_二段目","2000520":"Dagger _ one handed Dash -- 短剣_片手ダッシュ","2000530":"Dagger _ both hands dash -- 短剣_両手ダッシュ","2000540":"Dagger _ one hand step before -- 短剣_片手ステップ前","2000580":"Dagger _ Hands before step -- 短剣_両手ステップ前","2000600":"Dagger _ Parigard -- 短剣_パリィガード","2000610":"Dagger _ Behind the transition -- 短剣_背後遷移","2000615":"Dagger _ Behind Transition _ missed -- 短剣_背後遷移_空振り","2000700":"Dagger _ Arts _ Strong rock Step -- 短剣_アーツ_強ロックステップ","2001300":"[72] Dagger _ two-handed entertainment 1 -- 【72】短刀_両手タメ1","2001310":"[72] Dagger _ two-handed Entertainment 2 -- 【72】短刀_両手タメ2","2002100":"[73] Soul-one-handed entertainment 1 -- 【73】吸魂_片手タメ1","2002110":"[73] Soul-one-handed entertainment 2 -- 【73】吸魂_片手タメ2","2002300":"[73] Soul-absorbing, two-handed entertainment 1 -- 【73】吸魂_両手タメ1","2002310":"[73] Soul-absorbing two-handed entertainment 2 -- 【73】吸魂_両手タメ2","2003100":"[120] A ghost knife _ one-handed entertainment 1 -- 【120】死霊のナイフ_片手タメ1","2003110":"[120] A ghost knife _ one-handed Entertainment 2 -- 【120】死霊のナイフ_片手タメ2","2003300":"【 120 】 Ghost Knife _ two-handed entertainment 1 -- 【120】死霊のナイフ_両手タメ1","2003310":"【 120 】 Ghost Knife _ two-handed Entertainment 2 -- 【120】死霊のナイフ_両手タメ2","2004100":"[130] Kieran Dagger _ one-handed entertainment 1 -- 【130】キアランの短剣_片手タメ1","2004110":"[130] Kieran Dagger _ one-handed Entertainment 2 -- 【130】キアランの短剣_片手タメ2","2004300":"[130] Kieran Dagger _ two-handed entertainment 1 -- 【130】キアランの短剣_両手タメ1","2004310":"[130] Kieran Dagger _ two-handed Entertainment 2 -- 【130】キアランの短剣_両手タメ2","2300000":"Straight Sword _ one hand usually 1 -- 直剣_片手通常1","2300010":"Straight Sword _ one hand usually two -- 直剣_片手通常2","2300020":"Straight Sword _ one hand usually three -- 直剣_片手通常3","2300030":"Straight Sword _ One handed jump -- 直剣_片手ジャンプ1","2300040":"Straight Sword _ one-handed fall loop -- 直剣_片手落下ループ","2300050":"Straight Sword _ one-handed fall landing -- 直剣_片手落下着地","2300100":"Straight Sword _ one-handed entertainment 1 -- 直剣_片手タメ1","2300105":"Straight Sword _ one-handed 1_ maximum attack -- 直剣_片手タメ1_最大攻撃","2300110":"Straight Sword _ one-handed Entertainment 2 -- 直剣_片手タメ2","2300115":"Straight Sword _ one-handed 2_ maximum attack -- 直剣_片手タメ2_最大攻撃","2300200":"Straight Sword _ Two hands usually one -- 直剣_両手通常1","2300210":"Straight Swords _ Two hands usually -- 直剣_両手通常2","2300220":"Straight Swords _ Two hands usually three -- 直剣_両手通常3","2300230":"Straight Sword _ two-handed jump -- 直剣_両手ジャンプ1","2300240":"Straight Sword _ two-handed fall loop -- 直剣_両手落下ループ","2300250":"Straight Sword _ two-handed fall landing -- 直剣_両手落下着地","2300300":"Straight Sword _ two-handed entertainment 1 -- 直剣_両手タメ1","2300305":"Straight Sword _ two-handed entertainment 1 MAX -- 直剣_両手タメ1最大","2300310":"Straight Sword _ two-handed Entertainment 2 -- 直剣_両手タメ2","2300315":"Straight Sword _ two-handed, maximum -- 直剣_両手タメ2最大","2300400":"Straight Sword _ left hand -- 直剣_左手","2300410":"Straight Sword _ one hand close -- 直剣_片手近距離","2300420":"Straight Sword _ both hands close -- 直剣_両手近距離","2300430":"Straight Sword _ one-handed guard -- 直剣_片手ガード","2300440":"Straight Sword _ two handed guards -- 直剣_両手ガード","2300450":"Straight Sword _ Paris -- 直剣_パリィ","2300470":"Straight Sword _ Large Throw -- 直剣_大型投げ","2300490":"Straight Sword _ Falling Throw -- 直剣_落下投げ","2300500":"Straight Sword _ behind -- 直剣_背後","2300505":"Straight Swords _ crouching behind -- 直剣_背後しゃがみ","2300506":"Straight Sword _ reinforced behind -- 直剣_強化背後","2300510":"Straight Sword _ after Paris -- 直剣_パリィ後","2300515":"Straight Sword _ after strengthening Paris -- 直剣_強化パリィ後","2300516":"Paris Straight Sword _ after strengthening _ two -- 直剣_強化パリィ後_二段目","2300520":"Straight Sword _ one-handed Dash -- 直剣_片手ダッシュ","2300530":"Straight Sword _ both hands dash -- 直剣_両手ダッシュ","2300540":"Straight Sword _ one hand step before -- 直剣_片手ステップ前","2300580":"Straight Sword _ Two hands before step -- 直剣_両手ステップ前","2300600":"Straight Sword _ Parigard -- 直剣_パリィガード","2300610":"Straight Sword _ Behind the transition -- 直剣_背後遷移","2300615":"Straight Sword _ Behind the transition _ missed -- 直剣_背後遷移_空振り","2300720":"Straight Sword _ Weak -- 直剣_構え弱","2300722":"Straight Sword _ Strong poised -- 直剣_構え強","2301100":"[53] Broad _ one-handed entertainment 1 -- 【53】ブロード_片手タメ1","2301540":"[53] Broad _ one-handed step before -- 【53】ブロード_片手ステップ前","2301580":"[53] Broad _ both hands before step -- 【53】ブロード_両手ステップ前","2302100":"[54] Straight Sword: one-handed entertainment 1 -- 【54】刺突直剣_片手タメ1","2302110":"[54] Straight Sword: one-handed Entertainment 2 -- 【54】刺突直剣_片手タメ2","2302300":"[54] Straight Swords _ two-handed entertainment 1 -- 【54】刺突直剣_両手タメ1","2302310":"[54] Straight Swords _ two-handed Entertainment 2 -- 【54】刺突直剣_両手タメ2","2302580":"[54] Thrust Straight Sword _ before both hands step -- 【54】刺突直剣_両手ステップ前","2303100":"[55] Hero's Sword _ one-handed entertainment 1 -- 【55】英雄の剣_片手タメ1","2303110":"[55] Hero's Sword _ one-handed Entertainment 2 -- 【55】英雄の剣_片手タメ2","2303300":"[55] Hero's Sword _ two-handed entertainment 1 -- 【55】英雄の剣_両手タメ1","2303310":"[55] Hero's Sword _ two-handed Entertainment 2 -- 【55】英雄の剣_両手タメ2","2304100":"[57] Dark _ one-handed entertainment 1 -- 【57】ダーク_片手タメ1","2304110":"[57] Dark _ one-handed Entertainment 2 -- 【57】ダーク_片手タメ2","2304300":"[57] Dark _ two-handed entertainment 1 -- 【57】ダーク_両手タメ1","2304310":"[57] Dark _ two-handed Entertainment 2 -- 【57】ダーク_両手タメ2","2305100":"[58] Sword of the old dragon _ one-handed entertainment 1 -- 【58】古竜の剣_片手タメ1","2305110":"[58] Sword of the old dragon _ one-handed Entertainment 2 -- 【58】古竜の剣_片手タメ2","2305300":"[58] Sword of the old Dragon _ two-handed entertainment 1 -- 【58】古竜の剣_両手タメ1","2305310":"[58] Sword of the old Dragon _ two-handed Entertainment 2 -- 【58】古竜の剣_両手タメ2","2305320":"[58] Sword of the old Dragon _ two-handed Entertainment 1/Magic Sword Trigger -- 【58】古竜の剣_両手タメ1/魔法剣発動時","2305330":"[58] Sword of the old Dragon _ two-handed Entertainment 2/Magic Sword -- 【58】古竜の剣_両手タメ2/魔法剣発動時","2305580":"[58] Sword of the old Dragon _ Two hands before step -- 【58】古竜の剣_両手ステップ前","2305800":"[58] Sword of the old Dragon _ Magic Attack -- 【58】古竜の剣_魔法攻撃","2500000":"Large Sword _ one hand usually 1 -- 大剣_片手通常1","2500010":"Large Sword _ one hand usually two -- 大剣_片手通常2","2500020":"Large Sword _ one hand usually three -- 大剣_片手通常3","2500030":"Big Sword _ One handed jump -- 大剣_片手ジャンプ1","2500040":"Large Sword _ One handed fall loop -- 大剣_片手落下ループ","2500050":"Big Sword _ one-handed fall landing -- 大剣_片手落下着地","2500100":"Big Sword _ one-handed entertainment 1 -- 大剣_片手タメ1","2500105":"Large Sword _ one hand entertainment maximum -- 大剣_片手タメ1最大","2500110":"Big Sword _ one hand Entertainment 2 -- 大剣_片手タメ2","2500115":"Big Sword _ one hand entertainment 2 max -- 大剣_片手タメ2最大","2500200":"Large Sword _ Two hands usually one -- 大剣_両手通常1","2500210":"Large Swords _ Two hands usually -- 大剣_両手通常2","2500220":"Large Swords _ Two hands usually three -- 大剣_両手通常3","2500230":"Large Sword _ two-handed jump 1 -- 大剣_両手ジャンプ1","2500240":"Large Sword _ two-handed fall loop -- 大剣_両手落下ループ","2500250":"Large Sword _ two-handed fall landing -- 大剣_両手落下着地","2500300":"Large Sword _ two-handed entertainment 1 -- 大剣_両手タメ1","2500305":"Large Sword _ two-handed entertainment 1 MAX -- 大剣_両手タメ1最大","2500310":"Large Sword _ two-handed Entertainment 2 -- 大剣_両手タメ2","2500315":"Large Sword _ two-handed entertainment maximum -- 大剣_両手タメ2最大","2500400":"Big Sword _ Left hand -- 大剣_左手","2500410":"Large Sword _ one hand close -- 大剣_片手近距離","2500420":"Large Sword _ both hands close -- 大剣_両手近距離","2500430":"Large Sword _ one handed guard -- 大剣_片手ガード","2500440":"Large Sword _ both hands Guard -- 大剣_両手ガード","2500450":"Big Sword _ Paris -- 大剣_パリィ","2500470":"Large Sword _ Large throw -- 大剣_大型投げ","2500490":"Large Sword _ Falling throw -- 大剣_落下投げ","2500500":"Behind the Great Sword -- 大剣_背後","2500505":"Great Sword _ reinforced behind -- 大剣_強化背後","2500510":"Large Sword _ after Paris -- 大剣_パリィ後","2500515":"Great swords _ after strengthening Paris -- 大剣_強化パリィ後","2500516":"Paris _ Two after the Great sword _ -- 大剣_強化パリィ後_二段目","2500520":"Big Sword _ One handed Dash -- 大剣_片手ダッシュ","2500530":"Big Sword _ both hands dash -- 大剣_両手ダッシュ","2500540":"Big Sword _ one hand step before -- 大剣_片手ステップ前","2500580":"Large Sword _ Two hands before step -- 大剣_両手ステップ前","2500600":"Big Sword _ Parigard -- 大剣_パリィガード","2500610":"Big Sword _ Behind the transition -- 大剣_背後遷移","2500615":"Big Sword _ Behind the transition _ missed -- 大剣_背後遷移_空振り","2501100":"[80] Black Knight's Great Sword _ one-handed entertainment 1 -- 【80】黒騎士の大剣_片手タメ1","2501110":"[80] Black Knight's Great Sword _ one-handed Entertainment 2 -- 【80】黒騎士の大剣_片手タメ2","2501300":"[80] Black Knight's Great Sword _ two-handed entertainment 1 -- 【80】黒騎士の大剣_両手タメ1","2502000":"Framberger _ one-handed usually 1 -- フランベルジェ_片手通常1","2502010":"Framberger _ one hand usually two -- フランベルジェ_片手通常2","2502020":"Framberger _ one-handed usually three -- フランベルジェ_片手通常3","2502030":"Framberger _ one-handed jump 1 -- フランベルジェ_片手ジャンプ1","2502040":"Framberger _ one-handed fall loop -- フランベルジェ_片手落下ループ","2502050":"Framberger _ one-handed fall landing -- フランベルジェ_片手落下着地","2502100":"Framberger _ one-handed entertainment 1 -- フランベルジェ_片手タメ1","2502110":"Framberger _ one-handed Entertainment 2 -- フランベルジェ_片手タメ2","2502200":"Framberger _ Two hands usually one -- フランベルジェ_両手通常1","2502210":"Framberger _ Two Hands usually 2 -- フランベルジェ_両手通常2","2502220":"Framberger _ Two hands usually three -- フランベルジェ_両手通常3","2502230":"Framberger _ two-handed jump 1 -- フランベルジェ_両手ジャンプ1","2502240":"Framberger _ Two-handed hand-dropping loop -- フランベルジェ_両手手落下ループ","2502250":"Framberger _ Both hands fall landing -- フランベルジェ_両手手落下着地","2502300":"Framberger _ two-handed entertainment 1 -- フランベルジェ_両手タメ1","2502310":"Framberger _ two-handed Entertainment 2 -- フランベルジェ_両手タメ2","2502400":"Framberger _ Left Hand -- フランベルジェ_左手","2502520":"Framberger _ one-handed Dash -- フランベルジェ_片手ダッシュ","2502530":"Framberger _ Both hands dash -- フランベルジェ_両手ダッシュ","2502540":"Framberger _ one handed step ahead -- フランベルジェ_片手ステップ前","2502580":"Framberger _ Both hands step ahead -- フランベルジェ_両手ステップ前","2503100":"[77] Large Sword of stone _ one-handed entertainment 1 -- 【77】石の大剣_片手タメ1","2503110":"[77] Large Sword of stone _ one-handed Entertainment 2 -- 【77】石の大剣_片手タメ2","2504100":"[79] Moonlight _ one-handed entertainment 1 -- 【79】ムーンライト_片手タメ1","2504110":"[79] Moonlight _ one-handed Entertainment 2 -- 【79】ムーンライト_片手タメ2","2504120":"[79] Moonlight _ one-handed Entertainment 1/Magic Sword Trigger -- 【79】ムーンライト_片手タメ1/魔法剣発動時","2504130":"[79] Moonlight _ one-handed Entertainment 2/Magic Sword Trigger -- 【79】ムーンライト_片手タメ2/魔法剣発動時","2504300":"[79] Moonlight _ two-handed entertainment 1 -- 【79】ムーンライト_両手タメ1","2504310":"[79] Moonlight _ two-handed Entertainment 2 -- 【79】ムーンライト_両手タメ2","2504320":"[79] Moonlight _ two-handed Entertainment 1/Magic Sword Trigger -- 【79】ムーンライト_両手タメ1/魔法剣発動時","2504330":"[79] Moonlight _ two-hand entertainment 2/Magic Sword Trigger -- 【79】ムーンライト_両手タメ2/魔法剣発動時","2504800":"[79] Moonlight _ one hand _ Magic attack -- 【79】ムーンライト_片手_魔法攻撃","2504801":"[79] Moonlight _ Both Hands _ Magic attack -- 【79】ムーンライト_両手_魔法攻撃","2505100":"[74] Claymore _ one-handed entertainment 1 -- 【74】クレイモア_片手タメ1","2505110":"[74] Claymore _ one-handed Entertainment 2 -- 【74】クレイモア_片手タメ2","2505580":"[74] Claymore _ two-handed step before -- 【74】クレイモア_両手ステップ前","2507100":"[97] The great _ one-handed entertainment 1 -- 【97】大王_片手タメ1","2507110":"[97] The great _ one-handed Entertainment 2 -- 【97】大王_片手タメ2","2507300":"[97] Great _ two-handed entertainment 1 -- 【97】大王_両手タメ1","2507310":"[97] Great _ two-handed Entertainment 2 -- 【97】大王_両手タメ2","2508100":"[131] al-Triana (erosion) _ one-handed entertainment 1 -- 【131】アルトリウス(侵食)_片手タメ1","2508300":"[131] al-Triana (erosion) _ two-handed entertainment 1 -- 【131】アルトリウス(侵食)_両手タメ1","2509300":"[135] Black Dragon Large Sword _ two-handed entertainment 1 -- 【135】黒竜の大剣_両手タメ1","2509320":"[135] Black Dragon Large Sword _ two-hand entertainment 1/Magic Sword Trigger -- 【135】黒竜の大剣_両手タメ1/魔法剣発動時","2509800":"[135] Black Dragon Large Sword _ both hands _ Magic attack -- 【135】黒竜の大剣_両手_魔法攻撃","2600000":"Oversized Sword _ one hand usually 1 -- 特大剣_片手通常1","2600001":"Oversized Sword _ One handed usually 1_ range -- 特大剣_片手通常1_範囲","2600010":"Oversized Sword _ one hand usually two -- 特大剣_片手通常2","2600020":"Oversized Sword _ one hand usually three -- 特大剣_片手通常3","2600030":"Oversized Sword _ One handed jump -- 特大剣_片手ジャンプ1","2600040":"Oversized Sword _ One handed fall loop -- 特大剣_片手落下ループ","2600050":"Oversized Sword _ one-handed fall landing -- 特大剣_片手落下着地","2600100":"Oversized Sword _ one-handed entertainment 1 -- 特大剣_片手タメ1","2600105":"Oversized Sword _ one-handed entertainment 1_ Max -- 特大剣_片手タメ1_最大","2600110":"Oversized Sword _ one-handed Entertainment 2 -- 特大剣_片手タメ2","2600115":"Oversized Sword _ one-handed entertainment 2_ Max -- 特大剣_片手タメ2_最大","2600200":"Oversized Sword _ Two hands usually one -- 特大剣_両手通常1","2600210":"Oversized Swords _ Two hands usually 2 -- 特大剣_両手通常2","2600220":"Oversized Swords _ Two hands usually three -- 特大剣_両手通常3","2600230":"Oversized Sword _ two-handed jump 1 -- 特大剣_両手ジャンプ1","2600240":"Oversized Sword _ two-handed fall loop -- 特大剣_両手落下ループ","2600250":"Oversized Sword _ two-handed fall landing -- 特大剣_両手落下着地","2600300":"Oversized Sword _ two-handed entertainment 1 -- 特大剣_両手タメ1","2600305":"Oversized Sword _ two-handed entertainment 1 MAX -- 特大剣_両手タメ1最大","2600310":"Oversized Sword _ two-handed Entertainment 2 -- 特大剣_両手タメ2","2600315":"Oversized Sword _ two-handed maximum -- 特大剣_両手タメ2最大","2600400":"Oversized Sword _ left hand -- 特大剣_左手","2600410":"Oversized Sword _ one hand close -- 特大剣_片手近距離","2600420":"Oversized Sword _ both hands close -- 特大剣_両手近距離","2600430":"Oversized Sword _ One handed guard -- 特大剣_片手ガード","2600440":"Oversized Sword _ two handed guards -- 特大剣_両手ガード","2600450":"Oversized Sword _ Paris -- 特大剣_パリィ","2600470":"Oversized Sword _ Large throw -- 特大剣_大型投げ","2600490":"Oversized Sword _ Falling throw -- 特大剣_落下投げ","2600500":"Behind the oversized sword -- 特大剣_背後","2600501":"An oversized sword _ behind the two firing eyes -- 特大剣_背後_二撃目","2600505":"Oversized swords _ Reinforced behind -- 特大剣_強化背後","2600506":"Oversized Swords _ Reinforced behind _ Two -- 特大剣_強化背後_二段目","2600510":"Oversized Sword _ after Paris -- 特大剣_パリィ後","2600511":"Oversized Sword _ Paris after second firing -- 特大剣_パリィ後_二撃目","2600515":"Oversized Sword _ after strengthening Paris -- 特大剣_強化パリィ後","2600516":"Paris Oversized Sword _ after strengthening _ two -- 特大剣_強化パリィ後_二段目","2600517":"Paris Oversized Sword _ after strengthening _ Sandanme -- 特大剣_強化パリィ後_三段目","2600520":"Oversized Sword _ one handed Dash -- 特大剣_片手ダッシュ","2600530":"Oversized Sword _ both hands dash -- 特大剣_両手ダッシュ","2600540":"Oversized Sword _ one hand step before -- 特大剣_片手ステップ前","2600580":"Oversized Sword _ Two hands before step -- 特大剣_両手ステップ前","2600600":"Oversized Sword _ Parigard -- 特大剣_パリィガード","2600610":"Oversized Sword _ Behind the transition -- 特大剣_背後遷移","2600615":"Oversized Sword _ behind transition _ missed -- 特大剣_背後遷移_空振り","2600700":"Oversized Sword _ tread rotation attack -- 特大剣_踏込回転攻撃","2600701":"Oversized Sword _ Tread launch attack -- 特大剣_踏込打ち上げ攻撃","2600702":"Oversized Sword _ Tread Nagi: first half -- 特大剣_踏込なぎ払い:前半","2600780":"Oversized Sword _ Blown away -- 特大剣_吹き飛ばし","2600790":"Oversized Sword _ directing slams -- 特大剣_演出叩きつけ","2601300":"[98] Large Sword of the old Dragon _ two-handed entertainment 1 -- 【98】古竜の大剣_両手タメ1","2602100":"[95] Great Sword _ one-handed entertainment 1 -- 【95】グレートソード_片手タメ1","2602300":"[95] Great Sword _ two-handed entertainment 1 -- 【95】グレートソード_両手タメ1","2603100":"[96] Daemon Hatchet _ one-handed entertainment 1 -- 【96】デーモンの鉈_片手タメ1","2603300":"[96] Daemon Hatchet _ two-handed entertainment 1 -- 【96】デーモンの鉈_両手タメ1","2604300":"[128] Black Knight's oversized sword _ two-handed entertainment 1 -- 【128】黒騎士の特大剣_両手タメ1","2700000":"Stabbing Sword _ one hand usually 1 -- 刺剣_片手通常1","2700010":"Stabbing Sword _ one hand usually two -- 刺剣_片手通常2","2700020":"Stabbing Sword _ one hand usually three -- 刺剣_片手通常3","2700030":"Stab Sword _ One handed jump -- 刺剣_片手ジャンプ1","2700040":"Stab Sword _ One handed fall loop -- 刺剣_片手落下ループ","2700050":"Stab Sword _ one-handed fall landing -- 刺剣_片手落下着地","2700100":"Stab Sword _ one-handed entertainment 1 -- 刺剣_片手タメ1","2700105":"Stab Sword _ one-handed 1_ maximum -- 刺剣_片手タメ1_最大","2700110":"Stab Sword _ one hand Entertainment 2 -- 刺剣_片手タメ2","2700115":"Stab Sword _ one-handed 2_ maximum -- 刺剣_片手タメ2_最大","2700200":"Stab Sword _ Two hands usually one -- 刺剣_両手通常1","2700210":"Stab Sword _ Two hands usually 2 -- 刺剣_両手通常2","2700220":"Stab Sword _ Two hands usually three -- 刺剣_両手通常3","2700230":"Stabbing Sword _ two-handed jump -- 刺剣_両手ジャンプ1","2700240":"Stabbing Sword _ two-handed fall loop -- 刺剣_両手落下ループ","2700250":"Stabbing Sword _ two-handed fall landing -- 刺剣_両手落下着地","2700300":"Stabbing Sword _ two-handed entertainment 1 -- 刺剣_両手タメ1","2700305":"Stabbing Sword _ two-handed 1_ Max -- 刺剣_両手タメ1_最大","2700310":"Stabbing Sword _ two-handed Entertainment 2 -- 刺剣_両手タメ2","2700315":"Stabbing Sword _ two-handed 2_ Max -- 刺剣_両手タメ2_最大","2700400":"Stab Sword _ Left hand -- 刺剣_左手","2700410":"Stab Sword _ one hand close -- 刺剣_片手近距離","2700420":"Stab Sword _ both hands close -- 刺剣_両手近距離","2700430":"Stab Sword _ One handed guard -- 刺剣_片手ガード","2700440":"Piercing Sword _ Both hands Guard -- 刺剣_両手ガード","2700450":"Stabbing Sword _ Paris -- 刺剣_パリィ","2700460":"Stinging Sword _ Guard during attack -- 刺剣_ガード中攻撃","2700470":"Stinging Sword _ Large Throw -- 刺剣_大型投げ","2700490":"Stabbing Sword _ Falling throw -- 刺剣_落下投げ","2700500":"Stinging Sword _ behind -- 刺剣_背後","2700505":"Stinging Sword _ reinforced behind -- 刺剣_強化背後","2700510":"Stabbing Sword _ after Paris -- 刺剣_パリィ後","2700515":"Stabbing Sword _ after strengthening Paris -- 刺剣_強化パリィ後","2700516":"Stabbing Sword _ After strengthening Paris _ two -- 刺剣_強化パリィ後_二段目","2700520":"Stab Sword _ one handed Dash -- 刺剣_片手ダッシュ","2700530":"Stab Sword _ both hands dash -- 刺剣_両手ダッシュ","2700540":"Stab Sword _ one hand step before -- 刺剣_片手ステップ前","2700580":"Stab Sword _ Two hands before step -- 刺剣_両手ステップ前","2700600":"Stabbing Sword _ Parigard -- 刺剣_パリィガード","2700610":"Stab Sword _ Behind the transition -- 刺剣_背後遷移","2700615":"Stab Sword _ Behind the transition _ missed -- 刺剣_背後遷移_空振り","2700720":"Stinging Sword _ Weak -- 刺剣_構え弱","2700730":"Stinging Sword _ Strong: Continuous Protrusion -- 刺剣_構え強:連続突","2700731":"Stinging Sword _ Strong: Final stage of continuous protrusion -- 刺剣_構え強:連続突最終段","2701100":"[119] Mail Breaker _ one-handed entertainment 1 -- 【119】メイルブレイカー_片手タメ1","2701110":"[119] Mail Breaker _ one-handed Entertainment 2 -- 【119】メイルブレイカー_片手タメ2","2701300":"[119] Mail Breaker _ two-handed entertainment 1 -- 【119】メイルブレイカー_両手タメ1","2701310":"[119] Mail Breaker _ two-handed Entertainment 2 -- 【119】メイルブレイカー_両手タメ2","2702100":"[113] Estoc _ one-handed entertainment 1 -- 【113】エストック_片手タメ1","2702110":"[113] Estoc _ one-handed Entertainment 2 -- 【113】エストック_片手タメ2","2702300":"[113] Estoc _ two-handed entertainment 1 -- 【113】エストック_両手タメ1","2702310":"[113] Estoc _ two-handed Entertainment 2 -- 【113】エストック_両手タメ2","2703100":"[114] Belka _ one-handed entertainment 1 -- 【114】ベルカ_片手タメ1","2703110":"[114] Belka _ one-handed Entertainment 2 -- 【114】ベルカ_片手タメ2","2703300":"[114] Belka _ two-handed entertainment 1 -- 【114】ベルカ_両手タメ1","2703310":"[114] Belka _ two-handed Entertainment 2 -- 【114】ベルカ_両手タメ2","2800000":"Song Sword _ one hand usually 1 -- 曲剣_片手通常1","2800010":"Song Sword _ one hand usually two -- 曲剣_片手通常2","2800020":"Song Sword _ one hand usually three -- 曲剣_片手通常3","2800030":"Song Sword _ One handed jump -- 曲剣_片手ジャンプ1","2800040":"Song Sword _ One Handed fall loop -- 曲剣_片手落下ループ","2800050":"Song Sword _ one-handed fall landing -- 曲剣_片手落下着地","2800100":"Song Sword _ one-handed entertainment 1 -- 曲剣_片手タメ1","2800101":"Song Sword _ one-handed Entertainment 1 (second hammer) -- 曲剣_片手タメ1(二撃目)","2800105":"Song Sword _ one-handed 1_ Max -- 曲剣_片手タメ1_最大","2800106":"Song Sword _ one-handed 1_ Max (second hammer) -- 曲剣_片手タメ1_最大(二撃目)","2800110":"Song Sword _ one hand Entertainment 2 -- 曲剣_片手タメ2","2800115":"Song Sword _ one-handed 2_ Max -- 曲剣_片手タメ2_最大","2800200":"Song Sword _ Two Hands usually one -- 曲剣_両手通常1","2800210":"Song Sword _ Two Hands usually 2 -- 曲剣_両手通常2","2800220":"Song Sword _ Two Hands usually three -- 曲剣_両手通常3","2800230":"Song Sword _ two-handed jump 1 -- 曲剣_両手ジャンプ1","2800240":"Song Sword _ two-handed fall loop -- 曲剣_両手落下ループ","2800250":"Song Sword _ two-handed fall landing -- 曲剣_両手落下着地","2800300":"Song Sword _ two-handed entertainment 1 -- 曲剣_両手タメ1","2800301":"Song Sword _ two-handed Entertainment 1 (second hammer) -- 曲剣_両手タメ1(二撃目)","2800305":"Song Sword _ two-handed 1_ Max -- 曲剣_両手タメ1_最大","2800306":"Song Sword _ two-handed 1_ Max (second hammer) -- 曲剣_両手タメ1_最大(二撃目)","2800310":"Song Sword _ two-handed Entertainment 2 -- 曲剣_両手タメ2","2800315":"Song Sword _ two-handed 2_ Max -- 曲剣_両手タメ2_最大","2800400":"Song Sword _ Left Hand -- 曲剣_左手","2800410":"Song Sword _ one hand close -- 曲剣_片手近距離","2800420":"Song Sword _ both hands close -- 曲剣_両手近距離","2800430":"Song Sword _ One handed guard -- 曲剣_片手ガード","2800440":"Song Sword _ Hands-on guard -- 曲剣_両手ガード","2800450":"Song Sword _ Paris -- 曲剣_パリィ","2800470":"Song Sword _ Large Throw -- 曲剣_大型投げ","2800490":"Song Sword _ Falling Throw -- 曲剣_落下投げ","2800500":"Behind the song Sword -- 曲剣_背後","2800505":"Song Sword _ Strengthening behind -- 曲剣_強化背後","2800510":"Song Sword _ after Paris -- 曲剣_パリィ後","2800515":"Song Sword _ after strengthening Paris -- 曲剣_強化パリィ後","2800516":"Paris Song Sword _ after strengthening _ two -- 曲剣_強化パリィ後_二段目","2800520":"Song Sword _ one handed Dash -- 曲剣_片手ダッシュ","2800530":"Song Sword _ both hands dash -- 曲剣_両手ダッシュ","2800540":"Song Sword _ one hand step before -- 曲剣_片手ステップ前","2800580":"Song Sword _ Two Hands before step -- 曲剣_両手ステップ前","2800600":"Song Sword _ Parigard -- 曲剣_パリィガード","2800610":"Song Sword _ Behind the transition -- 曲剣_背後遷移","2800615":"Song Sword _ Behind the transition _ missed -- 曲剣_背後遷移_空振り","2802100":"[100] Song of Evil sword _ one-handed entertainment 1 -- 【100】死霊の曲剣_片手タメ1","2802110":"[100] Song of the Evil sword _ one-handed Entertainment 2 -- 【100】死霊の曲剣_片手タメ2","2802300":"[100] Song of Evil sword _ two-handed entertainment 1 -- 【100】死霊の曲剣_両手タメ1","2802310":"[100] Song of Evil sword _ two-handed Entertainment 2 -- 【100】死霊の曲剣_両手タメ2","2803100":"[101] Elemia _ one-handed entertainment 1 -- 【101】エレーミア_片手タメ1","2803110":"[101] Elemia _ one-handed Entertainment 2 -- 【101】エレーミア_片手タメ2","2803300":"[101] Elemia _ two-handed entertainment 1 -- 【101】エレーミア_両手タメ1","2803310":"[101] Elemia _ two-handed Entertainment 2 -- 【101】エレーミア_両手タメ2","2804100":"[56] Krag _ one-handed entertainment 1 -- 【56】クラーグ_片手タメ1","2804110":"[56] Krag _ one-handed Entertainment 2 -- 【56】クラーグ_片手タメ2","2804300":"[56] Krag _ two-handed entertainment 1 -- 【56】クラーグ_両手タメ1","2804310":"[56] Krag _ two-handed Entertainment 2 -- 【56】クラーグ_両手タメ2","2805100":"[132] Kieran Song Sword _ one-handed entertainment 1 -- 【132】キアランの曲剣_片手タメ1","2805110":"[132] Kieran Song Sword _ one-handed Entertainment 2 -- 【132】キアランの曲剣_片手タメ2","2805300":"[132] Kieran Song Sword _ two-handed entertainment 1 -- 【132】キアランの曲剣_両手タメ1","2805310":"[132] Kieran Song Sword _ two-handed Entertainment 2 -- 【132】キアランの曲剣_両手タメ2","2805311":"[132] Kieran Song Sword _ two-handed 2_ two -- 【132】キアランの曲剣_両手タメ2_二段目","2805400":"[132] Kieran Song Sword _ left hand _ usually -- 【132】キアランの曲剣_左手_通常","2805401":"[132] Kieran Song Sword _ The Left hand _ the entertainment -- 【132】キアランの曲剣_左手_タメ","2806620":"[137] Song Sword bi-Sword _ 1_ left hand Combo -- 【137】曲剣双剣_双剣左コンボ1_右手","2806621":"[137] Song Sword bi-Sword _ 1_ left hand Combo -- 【137】曲剣双剣_双剣左コンボ1_左手","2806630":"[137] Song Sword bi-Sword _ 2_ left hand Combo -- 【137】曲剣双剣_双剣左コンボ2_右手","2806631":"[137] Song Sword bi-Sword _ 2_ left hand Combo -- 【137】曲剣双剣_双剣左コンボ2_左手","2806640":"[137] Song Sword bi-Sword _ 3_ left hand Combo -- 【137】曲剣双剣_双剣左コンボ3_右手","2806641":"[137] Song Sword bi-Sword _ 3_ left hand Combo -- 【137】曲剣双剣_双剣左コンボ3_左手","2806740":"[137] Song Sword Twin Sword (right hand) -- 【137】曲剣双剣_回転中(右手)","2806741":"[137] Song Sword Twin Sword _ spinning (left hand) -- 【137】曲剣双剣_回転中(左手)","2806744":"[137] Song Sword Twin Sword _ Rotation strength (right hand) -- 【137】曲剣双剣_回転強(右手)","2806745":"[137] Song Sword Twin Sword _ rotation strength (left hand) -- 【137】曲剣双剣_回転強(左手)","2806750":"[137] Song Sword Twin Sword _ Double Sword dash (right hand) -- 【137】曲剣双剣_双剣ダッシュ(右手)","2806751":"[137] Song Sword Twin Sword (left hand) -- 【137】曲剣双剣_双剣ダッシュ(左手)","2806760":"[137] Song Sword Twin Sword (right hand) -- 【137】曲剣双剣_双剣ステップ前(右手)","2806761":"[137] Song Sword Twin Sword (left hand) -- 【137】曲剣双剣_双剣ステップ前(左手)","2901100":"[89] Each other sword _ one-handed entertainment 1 -- 【89】居合い刀_片手タメ1","2901110":"[89] Each other sword _ one-handed Entertainment 2 -- 【89】居合い刀_片手タメ2","2901300":"[89] Each other sword _ two-handed entertainment 1 -- 【89】居合い刀_両手タメ1","2901310":"[89] Each other sword _ two-handed Entertainment 2 -- 【89】居合い刀_両手タメ2","2902100":"[90] Shigurui Sword _ one-handed Entertainment 2 -- 【90】シグルイ刀_片手タメ2","2902105":"[90] Shigurui Sword _ one-handed 2_ maximum -- 【90】シグルイ刀_片手タメ2_最大","2902110":"[90] Shigurui Sword _ one-handed entertainment 1 -- 【90】シグルイ刀_片手タメ1","2902115":"[90] Shigurui Sword _ one-handed 1_ maximum -- 【90】シグルイ刀_片手タメ1_最大","2902300":"[90] Shigurui Sword _ two-handed entertainment 1 -- 【90】シグルイ刀_両手タメ1","2902305":"[90] Shigurui Sword _ two-handed 1_ maximum -- 【90】シグルイ刀_両手タメ1_最大","2902310":"[90] Shigurui Sword _ two-handed Entertainment 2 -- 【90】シグルイ刀_両手タメ2","2902315":"[90] Shigurui Sword _ two-handed 2_ maximum -- 【90】シグルイ刀_両手タメ2_最大","3000000":"Axe _ one hand usually 1 -- 斧_片手通常1","3000010":"Axe _ one hand usually two -- 斧_片手通常2","3000020":"Axe _ one hand usually three -- 斧_片手通常3","3000030":"Axe _ One handed jump -- 斧_片手ジャンプ1","3000040":"Axe _ One handed fall loop -- 斧_片手落下ループ","3000050":"Ax _ one-handed fall landing -- 斧_片手落下着地","3000100":"Axe _ one-handed entertainment 1 -- 斧_片手タメ1","3000105":"Axe _ one-handed 1_ maximum -- 斧_片手タメ1_最大","3000110":"Axe _ one-handed Entertainment 2 -- 斧_片手タメ2","3000115":"Axe _ one-handed 2_ maximum -- 斧_片手タメ2_最大","3000200":"Axe _ Two hands usually one -- 斧_両手通常1","3000210":"Axe _ Two Hands usually -- 斧_両手通常2","3000220":"Axe _ Two hands usually three -- 斧_両手通常3","3000230":"Axe _ two-handed jump 1 -- 斧_両手ジャンプ1","3000240":"Axe _ two-handed fall loop -- 斧_両手落下ループ","3000250":"Axe _ two-handed fall landing -- 斧_両手落下着地","3000300":"Axe _ two-handed entertainment 1 -- 斧_両手タメ1","3000305":"Axe _ two-handed 1_ Max -- 斧_両手タメ1_最大","3000310":"Axe _ two-handed Entertainment 2 -- 斧_両手タメ2","3000315":"Axe _ two-handed 2_ Max -- 斧_両手タメ2_最大","3000400":"Axe _ Left Hand -- 斧_左手","3000410":"Axe _ one hand close -- 斧_片手近距離","3000420":"Axe _ Both hands close -- 斧_両手近距離","3000430":"Axe _ One handed guard -- 斧_片手ガード","3000440":"Axe _ Both hands Guard -- 斧_両手ガード","3000450":"Axe _ Paris -- 斧_パリィ","3000470":"Axe _ Large Throw -- 斧_大型投げ","3000490":"Axe _ Falling Throw -- 斧_落下投げ","3000500":"Behind the axe -- 斧_背後","3000501":"Behind the ax _ the second hammer -- 斧_背後_二撃目","3000505":"Axe _ Reinforced behind -- 斧_強化背後","3000506":"Axe _ Strengthens behind _ Two -- 斧_強化背後_二段目","3000510":"Ax _ after Paris -- 斧_パリィ後","3000511":"Axe _ after Paris _ second firing -- 斧_パリィ後_二撃目","3000515":"Paris Axe _ After strengthening -- 斧_強化パリィ後","3000516":"Ax _ After strengthening Paris _ two -- 斧_強化パリィ後_二段目","3000517":"Ax _ After strengthening Paris _ Sandanme -- 斧_強化パリィ後_三段目","3000520":"Axe _ One handed Dash -- 斧_片手ダッシュ","3000530":"Axe _ Both hands dash -- 斧_両手ダッシュ","3000540":"Axe _ one hand step before -- 斧_片手ステップ前","3000580":"Axe _ Hands before step -- 斧_両手ステップ前","3000600":"Axe _ Parigard -- 斧_パリィガード","3000610":"Ax _ Behind the transition -- 斧_背後遷移","3000615":"Ax _ Behind Transition _ missed -- 斧_背後遷移_空振り","3000620":"Axe _ the directing slams -- 斧_演出叩きつけ","3000700":"Axe _ War Cry _ Shockwave -- 斧_ウォークライ_衝撃波","3000800":"Axe _ War Cry _ one-handed entertainment 1 -- 斧_ウォークライ_片手タメ1","3000805":"Axe _ War Cry _ one-handed 1_ maximum -- 斧_ウォークライ_片手タメ1_最大","3000806":"Axe _ War Cry _ one-handed 1_ tackle 1 -- 斧_ウォークライ_片手タメ1_タックル1","3000807":"Axe _ War Cry _ one-handed 1_ tackle 2 -- 斧_ウォークライ_片手タメ1_タックル2","3000810":"Axe _ War Cry _ one-handed Entertainment 2 -- 斧_ウォークライ_片手タメ2","3000815":"Axe _ War Cry _ one-handed 2_ maximum -- 斧_ウォークライ_片手タメ2_最大","3000900":"Axe _ War Cry _ two-handed entertainment 1 -- 斧_ウォークライ_両手タメ1","3000905":"Axe _ War Cry _ two-handed 1_ maximum -- 斧_ウォークライ_両手タメ1_最大","3000906":"Axe _ War Cry _ two-handed 1_ tackle 1 -- 斧_ウォークライ_両手タメ1_タックル1","3000907":"Axe _ War Cry _ two-handed 1_ tackle 2 -- 斧_ウォークライ_両手タメ1_タックル2","3000910":"Axe _ War Cry _ two-handed Entertainment 2 -- 斧_ウォークライ_両手タメ2","3000915":"Axe _ War Cry _ two-handed 2_ maximum -- 斧_ウォークライ_両手タメ2_最大","3001700":"[138] Twin Sword axe: Fat _ 1_ Left hand Combo -- 【138】双剣斧:デブ_双剣左コンボ1_右手","3001701":"[138] Twin Sword axe: Fat _ 1_ Left hand Combo -- 【138】双剣斧:デブ_双剣左コンボ1_左手","3001710":"[138] Twin Sword axe: Fat _ 2_ Left hand Combo -- 【138】双剣斧:デブ_双剣左コンボ2_右手","3001711":"[138] Twin Sword axe: Fat _ 2_ Left hand Combo -- 【138】双剣斧:デブ_双剣左コンボ2_左手","3001720":"[138] Twin Sword axe: Fat _ 3_ Left hand Combo -- 【138】双剣斧:デブ_双剣左コンボ3_右手","3001721":"[138] Twin Sword axe: Fat _ 3_ Left hand Combo -- 【138】双剣斧:デブ_双剣左コンボ3_左手","3001730":"[138] Twin Sword axe: Fat _ bi-Sword dash (right) -- 【138】双剣斧:デブ_双剣ダッシュ(右手)","3001731":"[138] Twin Sword axe: Fat _ bi-Sword dash (left hand) -- 【138】双剣斧:デブ_双剣ダッシュ(左手)","3001740":"[138] Twin Sword axe: Fat _ double-handed (right hand) -- 【138】双剣斧:デブ_双剣ステップ前(右手)","3001741":"[138] Sword axe: Fat _ bi-Sword step before (left hand) -- 【138】双剣斧:デブ_双剣ステップ前(左手)","3001800":"[138] Twin Sword axe: fat _ spinning (right hand) -- 【138】双剣斧:デブ_回転中(右手)","3001801":"[138] Twin Sword axe: fat _ spinning (left hand) -- 【138】双剣斧:デブ_回転中(左手)","3001820":"[138] Twin Sword axe: fat (right hand) -- 【138】双剣斧:デブ_回転強(右手)","3001821":"[138] Twin Sword axe: fat (left hand) -- 【138】双剣斧:デブ_回転強(左手)","3010000":"[102] Hand _ one hand usually 1 -- 【102】ハンド_片手通常1","3010010":"[102] Hand _ one hand usually two -- 【102】ハンド_片手通常2","3010020":"[102] Hand _ one hand usually three -- 【102】ハンド_片手通常3","3010100":"[102] Hand _ one-handed entertainment 1 -- 【102】ハンド_片手タメ1","3010110":"[102] Hand _ one-handed Entertainment 2 -- 【102】ハンド_片手タメ2","3010200":"[102] Hands _ usually one hand -- 【102】ハンド_両手通常1","3010210":"[102] Hand _ usually two hands -- 【102】ハンド_両手通常2","3010220":"[102] Hand _ usually three hands -- 【102】ハンド_両手通常3","3010300":"[102] Hand _ two-handed entertainment 1 -- 【102】ハンド_両手タメ1","3010310":"[102] Hand _ two-handed Entertainment 2 -- 【102】ハンド_両手タメ2","3010400":"[102] Hand _ left hand -- 【102】ハンド_左手","3020100":"[104] Iron Ax _ one-handed entertainment 1 -- 【104】アイアンアクス_片手タメ1","3020110":"[104] Iron Ax _ one-handed Entertainment 2 -- 【104】アイアンアクス_片手タメ2","3020120":"[104] Iron Ax _ one-handed Entertainment 1/Magic Sword Trigger -- 【104】アイアンアクス_片手タメ1/魔法剣発動時","3020130":"[104] Iron Ax _ one-handed Entertainment 2/Magic Sword Trigger -- 【104】アイアンアクス_片手タメ2/魔法剣発動時","3020300":"[104] Iron Ax _ two-handed entertainment 1 -- 【104】アイアンアクス_両手タメ1","3020301":"[104] Iron Ax _ two-handed 1_ around -- 【104】アイアンアクス_両手タメ1_周辺","3020310":"[104] Iron Ax _ two-handed Entertainment 2 -- 【104】アイアンアクス_両手タメ2","3020800":"[104] Iron Ax _ one hand _ Magic attack -- 【104】アイアンアクス_片手_魔法攻撃","3030100":"[103] Big knife _ one-handed entertainment 1 -- 【103】大包丁_片手タメ1","3030110":"[103] Big knife _ one-handed Entertainment 2 -- 【103】大包丁_片手タメ2","3030300":"[103] Large knife _ two-handed entertainment 1 -- 【103】大包丁_両手タメ1","3030310":"[103] Large knife _ two-handed Entertainment 2 -- 【103】大包丁_両手タメ2","3040100":"[125] Gargoyle Tail Ax _ one-handed entertainment 1 -- 【125】ガーゴイルの尾斧_片手タメ1","3040110":"[125] Gargoyle Tail Ax _ one-handed Entertainment 2 -- 【125】ガーゴイルの尾斧_片手タメ2","3040300":"[125] Gargoyle Tail Ax _ two-handed entertainment 1 -- 【125】ガーゴイルの尾斧_両手タメ1","3040310":"[125] Gargoyle Tail Ax _ two-handed Entertainment 2 -- 【125】ガーゴイルの尾斧_両手タメ2","3200000":"Large Ax _ one hand usually 1 -- 大斧_片手通常1","3200001":"Large ax _ One handed usually 1_ range -- 大斧_片手通常1_範囲","3200010":"Large Ax _ one hand usually two -- 大斧_片手通常2","3200020":"Large Ax _ one hand usually three -- 大斧_片手通常3","3200030":"Large ax _ one handed jump -- 大斧_片手ジャンプ1","3200040":"Large ax _ One handed fall loop -- 大斧_片手落下ループ","3200050":"Large ax _ one-handed fall landing -- 大斧_片手落下着地","3200100":"Large ax _ one-handed entertainment 1 -- 大斧_片手タメ1","3200101":"Large ax _ one-handed 1_ around (small) -- 大斧_片手タメ1_周辺(小)","3200105":"Large ax _ one-handed 1_ maximum -- 大斧_片手タメ1_最大","3200110":"Large ax _ one-handed Entertainment 2 -- 大斧_片手タメ2","3200115":"Large ax _ one-handed 2_ maximum -- 大斧_片手タメ2_最大","3200200":"Large Ax _ Two hands usually one -- 大斧_両手通常1","3200210":"Large Axe _ Two hands usually -- 大斧_両手通常2","3200220":"Large Ax _ Two hands usually three -- 大斧_両手通常3","3200230":"Large ax _ two-handed jump 1 -- 大斧_両手ジャンプ1","3200240":"Large axe _ two-handed fall loop -- 大斧_両手落下ループ","3200250":"Large ax _ two-handed fall landing -- 大斧_両手落下着地","3200300":"Large ax _ Both hands 1_ Center -- 大斧_両手タメ1_中心","3200301":"Large Axe _ both hands around 1_ -- 大斧_両手タメ1_周辺","3200305":"Large ax _ two-handed 1_ Center _ maximum -- 大斧_両手タメ1_中心_最大","3200310":"Large ax _ two-handed Entertainment 2 -- 大斧_両手タメ2","3200315":"Large ax _ two-handed 2_ Max -- 大斧_両手タメ2_最大","3200400":"Large Axe _ Left hand -- 大斧_左手","3200410":"Large Axe _ one hand close -- 大斧_片手近距離","3200420":"Large Axe _ both hands close -- 大斧_両手近距離","3200430":"Large Axe _ One handed guard -- 大斧_片手ガード","3200440":"Large Axe _ two handed guards -- 大斧_両手ガード","3200450":"Large Axe _ Paris -- 大斧_パリィ","3200470":"Large Axe _ Large throw -- 大斧_大型投げ","3200490":"Large Axe _ Falling throw -- 大斧_落下投げ","3200500":"Large ax _ behind -- 大斧_背後","3200501":"Large ax _ Behind the second hammer -- 大斧_背後_二撃目","3200505":"Large ax _ Reinforced behind -- 大斧_強化背後","3200506":"Large Ax _ reinforced behind _ Two -- 大斧_強化背後_二段目","3200510":"Large ax _ after Paris -- 大斧_パリィ後","3200511":"Large Ax _ after Paris _ Second hammer -- 大斧_パリィ後_二撃目","3200515":"Large ax _ after strengthening Paris -- 大斧_強化パリィ後","3200516":"Paris Large Ax _ after strengthening _ two -- 大斧_強化パリィ後_二段目","3200517":"Paris Large Ax _ after strengthening _ Sandanme -- 大斧_強化パリィ後_三段目","3200520":"Large Axe _ one handed Dash -- 大斧_片手ダッシュ","3200530":"Large axe _ both hands dash -- 大斧_両手ダッシュ","3200540":"Large Axe _ one hand step before -- 大斧_片手ステップ前","3200580":"Large Ax _ Two hands before step -- 大斧_両手ステップ前","3200600":"Large Axe _ Parigard -- 大斧_パリィガード","3200610":"Large ax _ Behind the transition -- 大斧_背後遷移","3200615":"Large ax _ Behind the transition _ missed -- 大斧_背後遷移_空振り","3201300":"[106] Large axe of the Dragon King _ two-handed entertainment 1 -- 【106】竜王の大斧_両手タメ1","3201301":"[106] Large axe of the King's Dragon _ both hands around 1_ -- 【106】竜王の大斧_両手タメ1_周辺","3201310":"[106] Large ax of the Dragon King _ two-handed entertainment -- 【106】竜王の大斧_両手タメ2","3201320":"[106] Large axe of the dragon -- 【106】竜王の大斧_両手タメ1/魔法剣発動時","3201330":"[106] Big axe of the Dragon -- 【106】竜王の大斧_両手タメ2/魔法剣発動時","3201800":"[106] Dragon King's large Axe _ both hands _ Magic attack -- 【106】竜王の大斧_両手_魔法攻撃","3202100":"[105] Demon's Large axe _ one-handed entertainment 1 -- 【105】デーモンの大斧_片手タメ1","3202110":"[105] Demon's Large axe _ one-handed Entertainment 2 -- 【105】デーモンの大斧_片手タメ2","3202300":"[105] Demon's Great axe _ two-handed entertainment 1 -- 【105】デーモンの大斧_両手タメ1","3202310":"[105] Demon's Large axe _ two-handed Entertainment 2 -- 【105】デーモンの大斧_両手タメ2","3203000":"[107] Black Knight's large axe _ one hand usually 1 -- 【107】黒騎士の大斧_片手通常1","3203010":"[107] Black Knight's large axe _ one hand usually two -- 【107】黒騎士の大斧_片手通常2","3203020":"[107] Black Knight's great Axe _ one hand usually three -- 【107】黒騎士の大斧_片手通常3","3203100":"[107] Black Knight's Great Axe _ one-handed entertainment 1 -- 【107】黒騎士の大斧_片手タメ1","3203110":"[107] Black Knight's Great Axe _ one-handed Entertainment 2 -- 【107】黒騎士の大斧_片手タメ2","3203200":"[107] Black Knight's large axe _ Two hands usually one -- 【107】黒騎士の大斧_両手通常1","3203210":"[107] Black Knight's large axe _ Two hands usually -- 【107】黒騎士の大斧_両手通常2","3203220":"[107] Black Knight's large axe _ Two hands usually three -- 【107】黒騎士の大斧_両手通常3","3203300":"[107] Black Knight's Great Axe _ two-handed entertainment 1 -- 【107】黒騎士の大斧_両手タメ1","3203310":"[107] Black Knight's Great Axe _ two-handed Entertainment 2 -- 【107】黒騎士の大斧_両手タメ2","3204100":"[133] Dogu Celts _ one-handed entertainment 1 -- 【133】土偶の石斧_片手タメ1","3204110":"[133] Dogu Celts _ one-handed Entertainment 2 -- 【133】土偶の石斧_片手タメ2","3204300":"[133] Dogu Celts _ two-handed entertainment 1 -- 【133】土偶の石斧_両手タメ1","3204310":"[133] Dogu Celts _ two-handed Entertainment 2 -- 【133】土偶の石斧_両手タメ2","3300000":"Mallet _ one hand usually 1 -- 槌_片手通常1","3300010":"Mallet _ one hand usually two -- 槌_片手通常2","3300020":"Mallet _ one hand usually three -- 槌_片手通常3","3300030":"Mallet _ One handed jump -- 槌_片手ジャンプ1","3300040":"Mallet _ one-handed fall loop -- 槌_片手落下ループ","3300050":"Mallet _ one-handed fall landing -- 槌_片手落下着地","3300100":"Mallet _ one-handed entertainment 1 -- 槌_片手タメ1","3300105":"Mallet _ one-handed entertainment 1_ Max -- 槌_片手タメ1_最大","3300110":"Mallet _ one-handed Entertainment 2 -- 槌_片手タメ2","3300115":"Mallet _ one-handed entertainment 2_ Max -- 槌_片手タメ2_最大","3300200":"Mallet _ Two hands usually one -- 槌_両手通常1","3300210":"Mallet _ Two Hands usually 2 -- 槌_両手通常2","3300220":"Mallet _ Two hands usually three -- 槌_両手通常3","3300230":"Mallet _ two-handed jump 1 -- 槌_両手ジャンプ1","3300240":"Mallet _ two-handed fall loop -- 槌_両手落下ループ","3300250":"Mallet _ two-handed fall landing -- 槌_両手落下着地","3300300":"Mallet _ two-handed entertainment 1 -- 槌_両手タメ1","3300305":"Mallet _ two-handed 1_ maximum -- 槌_両手タメ1_最大","3300310":"Mallet _ two-handed Entertainment 2 -- 槌_両手タメ2","3300315":"Mallet _ two-handed 2_ maximum -- 槌_両手タメ2_最大","3300400":"Mallet _ Left Hand -- 槌_左手","3300410":"Mallet _ one hand close -- 槌_片手近距離","3300420":"Mallet _ Both hands close -- 槌_両手近距離","3300430":"Mallet _ One handed guard -- 槌_片手ガード","3300440":"Mallet _ Both hands Guard -- 槌_両手ガード","3300450":"Mallet _ Paris -- 槌_パリィ","3300470":"Mallet _ Large Throw -- 槌_大型投げ","3300490":"Mallet _ Falling Throw -- 槌_落下投げ","3300500":"Mallet _ behind -- 槌_背後","3300501":"The mallet _ Behind the second hammer -- 槌_背後_二撃目","3300505":"Mallet _ Reinforced behind -- 槌_強化背後","3300506":"Mallet _ Reinforced behind _ Two -- 槌_強化背後_二段目","3300510":"Mallet _ After Paris -- 槌_パリィ後","3300511":"Mallet _ Paris after second firing -- 槌_パリィ後_二撃目","3300515":"Paris after hammering _ strengthens -- 槌_強化パリィ後","3300516":"Paris hammered _ strengthens after _ Two -- 槌_強化パリィ後_二段目","3300517":"Paris hammered _ Strengthens after _ Sandanme -- 槌_強化パリィ後_三段目","3300520":"Mallet _ one-handed Dash -- 槌_片手ダッシュ","3300530":"Mallet _ Both hands dash -- 槌_両手ダッシュ","3300540":"Mallet _ one hand step before -- 槌_片手ステップ前","3300580":"Mallet _ Both hands step forward -- 槌_両手ステップ前","3300600":"Mallet _ Parigard -- 槌_パリィガード","3300610":"Hammer _ Behind Transition -- 槌_背後遷移","3300615":"Hammer _ Behind Transition _ missed -- 槌_背後遷移_空振り","3301000":"[60] War picks _ one hand usually 1 -- 【60】ウォーピック_片手通常1","3301010":"[60] War picks _ one hand usually two -- 【60】ウォーピック_片手通常2","3301020":"[60] War picks _ one hand usually three -- 【60】ウォーピック_片手通常3","3301030":"[60] War pick _ one handed jump -- 【60】ウォーピック_片手ジャンプ1","3301040":"[60] War pick _ one-handed fall loop -- 【60】ウォーピック_片手落下ループ","3301050":"[60] War pick _ one-handed fall landing -- 【60】ウォーピック_片手落下着地","3301100":"[60] War pick _ one-handed entertainment 1 -- 【60】ウォーピック_片手タメ1","3301110":"[60] War pick _ one-handed Entertainment 2 -- 【60】ウォーピック_片手タメ2","3301200":"[60] War pick _ two hands usually one -- 【60】ウォーピック_両手通常1","3301210":"[60] War pick _ Two hands usually 2 -- 【60】ウォーピック_両手通常2","3301220":"[60] War pick _ two hands usually three -- 【60】ウォーピック_両手通常3","3301230":"[60] War Pick _ two-handed jump 1 -- 【60】ウォーピック_両手ジャンプ1","3301240":"[60] War Pick _ two-handed fall loop -- 【60】ウォーピック_両手落下ループ","3301250":"[60] War Pick _ two-handed fall landing -- 【60】ウォーピック_両手落下着地","3301300":"[60] War Pick _ two-handed entertainment 1 -- 【60】ウォーピック_両手タメ1","3301310":"[60] War Pick _ two-handed Entertainment 2 -- 【60】ウォーピック_両手タメ2","3301400":"[60] War picks _ left hand -- 【60】ウォーピック_左手","3301490":"[60] War pick _ falling Throw -- 【60】ウォーピック_落下投げ","3301500":"[60] War picks _ behind -- 【60】ウォーピック_背後","3301501":"[60] War pick _ behind the second hammer -- 【60】ウォーピック_背後_二撃目","3301505":"[60] War pick _ reinforced behind -- 【60】ウォーピック_強化背後","3301506":"[60] War Pick _ reinforced behind _ Two -- 【60】ウォーピック_強化背後_二段目","3301510":"[60] War pick _ after Paris -- 【60】ウォーピック_パリィ後","3301511":"[60] War Pick _ Paris after the second hammer -- 【60】ウォーピック_パリィ後_二撃目","3301515":"[60] War pick _ after strengthening Paris -- 【60】ウォーピック_強化パリィ後","3301516":"[60] War pick _ after strengthening Paris _ two -- 【60】ウォーピック_強化パリィ後_二段目","3301517":"[60] War pick _ after strengthening Paris _ Sandanme -- 【60】ウォーピック_強化パリィ後_三段目","3301520":"[60] War pick _ one-handed Dash -- 【60】ウォーピック_片手ダッシュ","3301530":"[60] War Pick _ both hands Dash -- 【60】ウォーピック_両手ダッシュ","3301540":"[60] War pick _ one handed step before -- 【60】ウォーピック_片手ステップ前","3301580":"[60] War Pick _ two-handed step before -- 【60】ウォーピック_両手ステップ前","3302000":"【 】 Club _ one hand usually 1 -- 【 】クラブ_片手通常1","3302010":"【 】 Club _ one hand usually two -- 【 】クラブ_片手通常2","3302020":"Club _ one hand usually three -- 【 】クラブ_片手通常3","3302100":"Club _ one-handed entertainment 1 -- 【 】クラブ_片手タメ1","3302200":"【 】 Club _ both hands usually one -- 【 】クラブ_両手通常1","3302210":"【 】 Club _ both hands usually two -- 【 】クラブ_両手通常2","3302220":"【 】 Club _ Two hands usually three -- 【 】クラブ_両手通常3","3302300":"【 】 Club _ two-handed entertainment 1 -- 【 】クラブ_両手タメ1","3302400":"Club _ Left Hand -- 【 】クラブ_左手","3303000":"[61] Pickaxe _ one hand usually 1 -- 【61】つるはし_片手通常1","3303010":"[61] Pickaxe _ one hand usually two -- 【61】つるはし_片手通常2","3303020":"[61] Pickaxe _ one hand usually three -- 【61】つるはし_片手通常3","3303030":"[61] Pickaxe _ one-handed jump 1 -- 【61】つるはし_片手ジャンプ1","3303040":"[61] Pickaxe _ one-handed fall loop -- 【61】つるはし_片手落下ループ","3303050":"[61] Pickaxe _ one-handed fall landing -- 【61】つるはし_片手落下着地","3303100":"[61] Pickaxe _ one-handed entertainment 1 -- 【61】つるはし_片手タメ1","3303110":"[61] Pickaxe _ one-handed Entertainment 2 -- 【61】つるはし_片手タメ2","3303200":"[61] Pickaxe _ both hands usually one -- 【61】つるはし_両手通常1","3303210":"[61] Pickaxe _ Two hands usually 2 -- 【61】つるはし_両手通常2","3303220":"[61] Pickaxe _ Two hands usually three -- 【61】つるはし_両手通常3","3303230":"[61] Pickaxe _ two-handed jump 1 -- 【61】つるはし_両手ジャンプ1","3303240":"[61] Pickaxe _ two-handed fall loop -- 【61】つるはし_両手落下ループ","3303250":"[61] Pickaxe _ two-handed fall landing -- 【61】つるはし_両手落下着地","3303300":"[61] Pickaxe _ two-handed entertainment 1 -- 【61】つるはし_両手タメ1","3303310":"[61] Pickaxe _ two-handed Entertainment 2 -- 【61】つるはし_両手タメ2","3303400":"[61] Pickaxe _ Left Hand -- 【61】つるはし_左手","3303490":"[61] Pickaxe _ Falling throw -- 【61】つるはし_落下投げ","3303500":"[61] Pickaxe _ behind -- 【61】つるはし_背後","3303501":"[61] Pickaxe _ Behind the second hammer -- 【61】つるはし_背後_二撃目","3303505":"[61] Pickaxe _ Reinforced behind -- 【61】つるはし_強化背後","3303506":"[61] Pickaxe _ reinforced behind _ Two -- 【61】つるはし_強化背後_二段目","3303510":"[61] Pickaxe _ after Paris -- 【61】つるはし_パリィ後","3303511":"[61] Pickaxe _ after Paris _ Second hammer -- 【61】つるはし_パリィ後_二撃目","3303515":"[61] Pickaxe _ After strengthening Paris -- 【61】つるはし_強化パリィ後","3303516":"[61] Pickaxe _ After strengthening Paris _ two -- 【61】つるはし_強化パリィ後_二段目","3303517":"[61] Pickaxe _ After strengthening Paris _ Sandanme -- 【61】つるはし_強化パリィ後_三段目","3303520":"[61] Pickaxe _ one-handed Dash -- 【61】つるはし_片手ダッシュ","3303530":"[61] Pickaxe _ both hands dash -- 【61】つるはし_両手ダッシュ","3303540":"[61] Pickaxe _ one hand step before -- 【61】つるはし_片手ステップ前","3303580":"[61] Pickaxe _ two-handed step before -- 【61】つるはし_両手ステップ前","3500000":"Otsuchi _ one hand usually 1 -- 大槌_片手通常1","3500010":"Otsuchi _ one hand usually two -- 大槌_片手通常2","3500020":"Otsuchi _ one hand usually three -- 大槌_片手通常3","3500030":"Otsuchi _ One handed jump -- 大槌_片手ジャンプ1","3500040":"Otsuchi _ one-handed fall loop -- 大槌_片手落下ループ","3500050":"Otsuchi _ one-handed fall landing -- 大槌_片手落下着地","3500100":"Otsuchi _ one-handed entertainment 1 -- 大槌_片手タメ1","3500101":"Otsuchi _ one-handed 1_ around (small) -- 大槌_片手タメ1_周辺(小)","3500105":"Otsuchi _ one-handed entertainment 1_ Max -- 大槌_片手タメ1_最大","3500110":"Otsuchi _ one-handed Entertainment 2 -- 大槌_片手タメ2","3500115":"Otsuchi _ one-handed entertainment 2_ Max -- 大槌_片手タメ2_最大","3500200":"Otsuchi _ Two Hands usually -- 大槌_両手通常1","3500210":"Otsuchi _ Two Hands usually -- 大槌_両手通常2","3500220":"A sledgehammer _ usually three hands -- 大槌_両手通常3","3500230":"Otsuchi _ two-handed jump -- 大槌_両手ジャンプ1","3500240":"Otsuchi _ two-handed fall loop -- 大槌_両手落下ループ","3500250":"Otsuchi _ two-handed fall landing -- 大槌_両手落下着地","3500300":"Otsuchi _ Both Hands 1_ Center -- 大槌_両手タメ1_中心","3500301":"Otsuchi _ two-handed 1_ around -- 大槌_両手タメ1_周辺","3500305":"Otsuchi _ two-handed 1_ Center _ maximum -- 大槌_両手タメ1_中心_最大","3500310":"Otsuchi _ two-handed Entertainment 2 -- 大槌_両手タメ2","3500315":"Otsuchi _ two-handed 2_ maximum -- 大槌_両手タメ2_最大","3500400":"Otsuchi _ Left Hand -- 大槌_左手","3500410":"Otsuchi _ one hand close -- 大槌_片手近距離","3500420":"Otsuchi _ Both hands close -- 大槌_両手近距離","3500430":"Otsuchi _ one-handed guard -- 大槌_片手ガード","3500440":"Otsuchi _ two-handed guards -- 大槌_両手ガード","3500450":"Otsuchi _ Paris -- 大槌_パリィ","3500470":"Otsuchi _ Large Throw -- 大槌_大型投げ","3500490":"Otsuchi _ Falling Throw -- 大槌_落下投げ","3500500":"Otsuchi _ Behind -- 大槌_背後","3500501":"The sledgehammer _ behind the second hammer -- 大槌_背後_二撃目","3500505":"Otsuchi _ Reinforced behind -- 大槌_強化背後","3500506":"Two _ Strengthens behind _ -- 大槌_強化背後_二段目","3500510":"Otsuchi _ After Paris -- 大槌_パリィ後","3500511":"Otsuchi _ Paris _ Second Hammer -- 大槌_パリィ後_二撃目","3500515":"Otsuchi _ After strengthening Paris -- 大槌_強化パリィ後","3500516":"Paris _ Two after battering _ -- 大槌_強化パリィ後_二段目","3500517":"Paris _ Sandanme after battering _ -- 大槌_強化パリィ後_三段目","3500520":"Otsuchi _ one-handed Dash -- 大槌_片手ダッシュ","3500530":"The sledgehammer _ both hands dash -- 大槌_両手ダッシュ","3500540":"Otsuchi _ one hand step before -- 大槌_片手ステップ前","3500580":"The sledgehammer _ Two hands step ahead -- 大槌_両手ステップ前","3500600":"Otsuchi _ Parigard -- 大槌_パリィガード","3500610":"Otsuchi _ Behind the transition -- 大槌_背後遷移","3500800":"Otsuchi _ Magic Attack -- 大槌_魔法攻撃","3502100":"[124] Bango soldier _ one-handed entertainment 1 -- 【124】蛮兵_片手タメ1","3502110":"[124] Bango soldier _ one-handed Entertainment 2 -- 【124】蛮兵_片手タメ2","3502300":"[124] Bango soldiers _ Both hands 1_ Center -- 【124】蛮兵_両手タメ1_中心","3502310":"[124] Bango soldiers _ two-handed Entertainment 2 -- 【124】蛮兵_両手タメ2","3503100":"[70] Sumo _ one-handed entertainment 1 -- 【70】スモウ_片手タメ1","3503300":"[70] Sumo _ Both hands 1_ Center -- 【70】スモウ_両手タメ1_中心","3600000":"Spear _ one hand usually 1 -- 槍_片手通常1","3600010":"Spear _ one hand usually two -- 槍_片手通常2","3600020":"Spear _ one hand usually three -- 槍_片手通常3","3600030":"Spear _ One handed jump -- 槍_片手ジャンプ1","3600040":"Spear _ One Handed fall loop -- 槍_片手落下ループ","3600050":"Spear _ one-handed fall landing -- 槍_片手落下着地","3600100":"Spear _ one-handed entertainment 1 -- 槍_片手タメ1","3600105":"Spear _ one-handed Entertainment 1 MAX -- 槍_片手タメ1最大","3600110":"Spear _ one-handed Entertainment 2 -- 槍_片手タメ2","3600115":"Spear _ one-handed Entertainment 2 Max -- 槍_片手タメ2最大","3600200":"Spear _ Two hands usually one -- 槍_両手通常1","3600210":"Spear _ Two Hands usually 2 -- 槍_両手通常2","3600220":"Spear _ Two hands usually three -- 槍_両手通常3","3600230":"Spear _ two-handed jump 1 -- 槍_両手ジャンプ1","3600240":"Spear _ two-handed fall loop -- 槍_両手落下ループ","3600250":"Spear _ two-handed fall landing -- 槍_両手落下着地","3600300":"Spear _ two-handed entertainment 1 -- 槍_両手タメ1","3600305":"Spear _ two-handed entertainment 1 MAX -- 槍_両手タメ1最大","3600310":"Spear _ two-handed Entertainment 2 -- 槍_両手タメ2","3600315":"Spear _ two-handed entertainment max -- 槍_両手タメ2最大","3600400":"Spear _ Left Hand -- 槍_左手","3600410":"Spear _ one hand short distance -- 槍_片手近距離","3600420":"Spear _ Both hands close -- 槍_両手近距離","3600430":"Spear _ one-handed guard -- 槍_片手ガード","3600440":"Spear _ Both hands Guard -- 槍_両手ガード","3600450":"Spear _ Paris -- 槍_パリィ","3600460":"Spear _ Guard during attack -- 槍_ガード中攻撃","3600470":"Spear _ Large Throw -- 槍_大型投げ","3600490":"Spear _ Falling Throw -- 槍_落下投げ","3600500":"Behind the Spear -- 槍_背後","3600505":"Spear _ Strengthening behind -- 槍_強化背後","3600510":"Spear _ after Paris -- 槍_パリィ後","3600515":"Spear _ After strengthening Paris -- 槍_強化パリィ後","3600516":"Spear _ After strengthening Paris _ two -- 槍_強化パリィ後_二段目","3600520":"Spear _ one-handed Dash -- 槍_片手ダッシュ","3600530":"Spear _ Both hands dash -- 槍_両手ダッシュ","3600540":"Spear _ one hand step before -- 槍_片手ステップ前","3600600":"Spear _ Parigard -- 槍_パリィガード","3600610":"Spear _ Behind the transition -- 槍_背後遷移","3600615":"The spear _ Behind the transition _ missed -- 槍_背後遷移_空振り","3600720":"Spear _ Weak poised -- 槍_構え弱","3600722":"Spear _ Strong -- 槍_構え強","3600723":"Spear _ Holding Strong _ Continuous attack -- 槍_構え強_連撃","3600790":"Spear _ Bunk Attack -- 槍_二段攻撃","3600800":"Spear assault: A continuous hit -- 槍_突撃:連続ヒット","3600810":"Spear assault: No continuous hit motion -- 槍_突撃:連続ヒットモーションなし","3600820":"Spear assault: Continuous hit last thrust -- 槍_突撃:連続ヒットラスト突き","3601000":"Spear _ one hand usually 1 (stick) -- 槍_片手通常1(棒)","3601010":"Spear _ one hand usually 2 (stick) -- 槍_片手通常2(棒)","3601020":"Spear _ one hand usually three (stick) -- 槍_片手通常3(棒)","3601030":"Spear _ one-handed jump 1 (stick) -- 槍_片手ジャンプ1(棒)","3601040":"Spear _ One Handed Fall loop (stick) -- 槍_片手落下ループ(棒)","3601050":"Spear _ one-handed fall landing (stick) -- 槍_片手落下着地(棒)","3601100":"Spear _ one-handed entertainment 1 (stick) -- 槍_片手タメ1(棒)","3601105":"Spear _ one-handed entertainment 1 max (stick) -- 槍_片手タメ1最大(棒)","3601110":"Spear _ one hand Entertainment 2 (stick) -- 槍_片手タメ2(棒)","3601115":"Spear _ one hand Entertainment 2 max (stick) -- 槍_片手タメ2最大(棒)","3601200":"Spear _ Two hands usually one (stick) -- 槍_両手通常1(棒)","3601210":"Spear _ Two Hands usually 2 (stick) -- 槍_両手通常2(棒)","3601220":"Spear _ Two Hands usually 3 (stick) -- 槍_両手通常3(棒)","3601230":"Spear _ two-handed jump 1 (stick) -- 槍_両手ジャンプ1(棒)","3601240":"Spear _ two-handed Fall loop (stick) -- 槍_両手落下ループ(棒)","3601250":"Spear _ two-handed fall landing (stick) -- 槍_両手落下着地(棒)","3601300":"Spear _ two-handed Entertainment 1 (stick) -- 槍_両手タメ1(棒)","3601305":"Spear _ two-handed one maximum (stick) -- 槍_両手タメ1最大(棒)","3601310":"Spear _ two-handed Entertainment 2 (stick) -- 槍_両手タメ2(棒)","3601315":"Spear _ two-handed maximum (stick) -- 槍_両手タメ2最大(棒)","3601460":"Spear _ Guard during attack (stick) -- 槍_ガード中攻撃(棒)","3601520":"Spear _ one-handed dash (stick) -- 槍_片手ダッシュ(棒)","3601530":"Spear _ both Hands dash (stick) -- 槍_両手ダッシュ(棒)","3601540":"Spear _ one hand step before (stick) -- 槍_片手ステップ前(棒)","3601600":"Spear _ Parigard (stick) -- 槍_パリィガード(棒)","3601610":"Spear _ Behind the Transition (stick) -- 槍_背後遷移(棒)","3601615":"Spear _ Behind the transition _ missed (stick) -- 槍_背後遷移_空振り(棒)","3601720":"Spear _ Weak (stick) -- 槍_構え弱(棒)","3601722":"Spear _ Strong (stick) -- 槍_構え強(棒)","3601723":"Spear _ strong _ Continuous Hammer (stick) -- 槍_構え強_連撃(棒)","3601790":"Spear _ Bunk Attack (bar) -- 槍_二段攻撃(棒)","3601800":"Spear _ Assault: Continuous hit (stick) -- 槍_突撃:連続ヒット(棒)","3601810":"Spear assault: Continuous hit final stage (bar) -- 槍_突撃:連続ヒット最終段(棒)","3601820":"Spear assault: Continuous hit last thrust (stick) -- 槍_突撃:連続ヒットラスト突き(棒)","3602100":"[65] Rectangular Six _ one-handed entertainment 1 -- 【65】六目_片手タメ1","3602101":"[65] Rectangular Six _ one-handed 1_ second hammer -- 【65】六目_片手タメ1_二撃目","3602110":"[65] Rectangular Six _ one-handed Entertainment 2 -- 【65】六目_片手タメ2","3603300":"[68] Spear of the Dragon hunting _ two-handed entertainment 1 -- 【68】竜狩りの槍_両手タメ1","3603310":"[68] Dragon Hunting Spear _ two-handed Entertainment 2 -- 【68】竜狩りの槍_両手タメ2","3604100":"[63] Partisan _ one-handed entertainment 1 -- 【63】パルチザン_片手タメ1","3604110":"[63] Partisan _ one-handed Entertainment 2 -- 【63】パルチザン_片手タメ2","3604300":"[63] Partisan _ two-handed entertainment 1 -- 【63】パルチザン_両手タメ1","3604310":"[63] Partisan _ two-handed Entertainment 2 -- 【63】パルチザン_両手タメ2","3605100":"[64] Demon Spear _ one-handed entertainment 1 -- 【64】デーモンの槍_片手タメ1","3605110":"[64] Demon Spear _ one-handed Entertainment 2 -- 【64】デーモンの槍_片手タメ2","3605300":"[64] Demon Spear _ two-handed entertainment 1 -- 【64】デーモンの槍_両手タメ1","3605310":"[64] Demon Spear _ two-handed Entertainment 2 -- 【64】デーモンの槍_両手タメ2","3606100":"[66] Silver Knight Spear _ one-handed entertainment 1 -- 【66】銀騎士の槍_片手タメ1","3606110":"[66] Silver Knight Spear _ one-handed Entertainment 2 -- 【66】銀騎士の槍_片手タメ2","3606300":"[66] Silver Knight Spear _ two-handed entertainment 1 -- 【66】銀騎士の槍_両手タメ1","3606310":"[66] Silver Knight Spear _ two-handed Entertainment 2 -- 【66】銀騎士の槍_両手タメ2","3608100":"[67] Pike _ one-handed entertainment 1 -- 【67】パイク_片手タメ1","3608110":"[67] Pike _ one-handed Entertainment 2 -- 【67】パイク_片手タメ2","3608300":"[67] Pike _ two-handed entertainment 1 -- 【67】パイク_両手タメ1","3608310":"[67] Pike _ two-handed Entertainment 2 -- 【67】パイク_両手タメ2","3608520":"[67] Pike _ one-handed Dash -- 【67】パイク_片手ダッシュ","3608521":"[67] Pike _ one-handed dash (stop) -- 【67】パイク_片手ダッシュ(止め)","3608530":"[67] Pike _ both hands dash -- 【67】パイク_両手ダッシュ","3608531":"[67] Pike _ both hands dash (stop) -- 【67】パイク_両手ダッシュ(止め)","3800000":"Axe Spear _ one hand usually 1 -- 斧槍_片手通常1","3800010":"Axe Spear _ one hand usually two -- 斧槍_片手通常2","3800020":"Axe Spear _ one hand usually three -- 斧槍_片手通常3","3800030":"Axe Spear _ One handed jump -- 斧槍_片手ジャンプ1","3800040":"Axe Spear _ One handed fall loop -- 斧槍_片手落下ループ","3800050":"Axe Spear _ one-handed fall landing -- 斧槍_片手落下着地","3800100":"Axe Spear _ one-handed entertainment 1 -- 斧槍_片手タメ1","3800105":"Axe Spear _ one-handed 1_ maximum -- 斧槍_片手タメ1_最大","3800110":"Axe Spear _ one-handed Entertainment 2 -- 斧槍_片手タメ2","3800115":"Axe Spear _ one-handed 2_ maximum -- 斧槍_片手タメ2_最大","3800200":"Axe Spear _ Two hands usually one -- 斧槍_両手通常1","3800210":"Axe Spear _ Two hands usually -- 斧槍_両手通常2","3800220":"Axe Spear _ Two hands usually three -- 斧槍_両手通常3","3800230":"Axe Spear _ two-handed jump 1 -- 斧槍_両手ジャンプ1","3800240":"Axe Spear _ two-handed fall loop -- 斧槍_両手落下ループ","3800250":"Axe Spear _ two-handed fall landing -- 斧槍_両手落下着地","3800300":"Axe Spear _ two-handed entertainment 1 -- 斧槍_両手タメ1","3800305":"Axe Spear _ two-handed 1_ Max -- 斧槍_両手タメ1_最大","3800310":"Axe Spear _ two-handed Entertainment 2 -- 斧槍_両手タメ2","3800315":"Axe Spear _ two-handed 2_ Max -- 斧槍_両手タメ2_最大","3800400":"Axe Spear _ Left hand -- 斧槍_左手","3800410":"Axe Spear _ one hand close -- 斧槍_片手近距離","3800420":"Axe Spear _ both hands close -- 斧槍_両手近距離","3800430":"Axe Spear _ one-handed guard -- 斧槍_片手ガード","3800440":"Axe Spear _ two handed guards -- 斧槍_両手ガード","3800450":"Axe Spear _ Paris -- 斧槍_パリィ","3800470":"Axe Spear _ Large Throw -- 斧槍_大型投げ","3800490":"Axe Spear _ Falling Throw -- 斧槍_落下投げ","3800500":"Axe Spear _ behind -- 斧槍_背後","3800505":"Axe Spear _ Reinforced behind -- 斧槍_強化背後","3800510":"Axe Spear _ after Paris -- 斧槍_パリィ後","3800515":"Axe Spear _ after strengthening Paris -- 斧槍_強化パリィ後","3800516":"Ax Spear _ After strengthening Paris _ two -- 斧槍_強化パリィ後_二段目","3800520":"Axe Spear _ one handed Dash -- 斧槍_片手ダッシュ","3800530":"Axe Spear _ both hands dash -- 斧槍_両手ダッシュ","3800540":"Axe Spear _ one hand step before -- 斧槍_片手ステップ前","3800580":"Axe Spear _ Hands before step -- 斧槍_両手ステップ前","3800600":"Axe Spear _ Parigard -- 斧槍_パリィガード","3800610":"Axe Spear _ Behind the transition -- 斧槍_背後遷移","3800720":"Axe Spear _ poised weak attack -- 斧槍_構え弱攻撃","3801000":"【 】 Size (slashing) _ one hand usually 1 -- 【 】サイズ(斬撃)_片手通常1","3801010":"【 】 Size (slashing) _ one hand usually two -- 【 】サイズ(斬撃)_片手通常2","3801020":"【 】 Size (slashing) _ one hand usually three -- 【 】サイズ(斬撃)_片手通常3","3801030":"【 】 Size (slashing) _ one-handed jump -- 【 】サイズ(斬撃)_片手ジャンプ1","3801040":"【 】 Size (slashing) _ one-handed fall loop -- 【 】サイズ(斬撃)_片手落下ループ","3801050":"【 】 Size (slashing) _ one-handed fall landing -- 【 】サイズ(斬撃)_片手落下着地","3801100":"【 】 Size (slashing) _ one-handed entertainment 1 -- 【 】サイズ(斬撃)_片手タメ1","3801110":"【 】 Size (slashing) _ one-handed Entertainment 2 -- 【 】サイズ(斬撃)_片手タメ2","3801200":"【 】 Size (slashing) _ Two hands usually one -- 【 】サイズ(斬撃)_両手通常1","3801210":"【 】 Size (slashing) _ Two hands usually 2 -- 【 】サイズ(斬撃)_両手通常2","3801220":"【 】 Size (slashing) _ Two hands usually three -- 【 】サイズ(斬撃)_両手通常3","3801230":"【 】 Size (slashing) _ two-handed jump 1 -- 【 】サイズ(斬撃)_両手ジャンプ1","3801240":"【 】 Size (slashing) _ Both hands Fall loop -- 【 】サイズ(斬撃)_両手落下ループ","3801250":"【 】 Size (slashing) _ Both hands fall landing -- 【 】サイズ(斬撃)_両手落下着地","3801300":"【 】 Size (slashing) _ two-handed entertainment 1 -- 【 】サイズ(斬撃)_両手タメ1","3801310":"【 】 Size (slashing) _ two-handed Entertainment 2 -- 【 】サイズ(斬撃)_両手タメ2","3801520":"【 】 Size (slashing) _ one-handed Dash -- 【 】サイズ(斬撃)_片手ダッシュ","3801530":"【 】 Size (slashing) _ Both hands Dash -- 【 】サイズ(斬撃)_両手ダッシュ","3801540":"[] Size (slashing) _ one hand step before -- 【 】サイズ(斬撃)_片手ステップ前","3802000":"[109] Lucerne _ one hand usually 1 -- 【109】ルッツェルン(刺突)_片手通常1","3802010":"[109] Lucerne (thrust) _ one hand usually two -- 【109】ルッツェルン(刺突)_片手通常2","3802020":"[109] Lucerne (thrust) _ one hand usually three -- 【109】ルッツェルン(刺突)_片手通常3","3802030":"[109] Lucerne (one-handed jump) -- 【109】ルッツェルン(刺突)_片手ジャンプ1","3802040":"[109] Lucerne (Thrust) _ one-handed fall loop -- 【109】ルッツェルン(刺突)_片手落下ループ","3802050":"[109] Lucerne (Thrust) _ one-handed fall landing -- 【109】ルッツェルン(刺突)_片手落下着地","3802100":"[109] Lucerne _ one-handed entertainment 1 -- 【109】ルッツェルン(刺突)_片手タメ1","3802110":"[109] Lucerne (Thrust) _ one-handed Entertainment 2 -- 【109】ルッツェルン(刺突)_片手タメ2","3802200":"[109] Lucerne (Thrust) _ Two hands usually one -- 【109】ルッツェルン(刺突)_両手通常1","3802210":"[109] Lucerne (Thrust) _ Two hands usually -- 【109】ルッツェルン(刺突)_両手通常2","3802220":"[109] Lucerne (stabbing) _ Two hands usually three -- 【109】ルッツェルン(刺突)_両手通常3","3802230":"[109] Lucerne (Thrust) _ two-handed jump 1 -- 【109】ルッツェルン(刺突)_両手ジャンプ1","3802240":"[109] Lucerne (Thrust) _ Both hands Fall loop -- 【109】ルッツェルン(刺突)_両手落下ループ","3802250":"[109] Lucerne (Thrust) _ two-handed fall landing -- 【109】ルッツェルン(刺突)_両手落下着地","3802300":"[109] Lucerne (stabbing) _ two-handed entertainment 1 -- 【109】ルッツェルン(刺突)_両手タメ1","3802310":"[109] Lucerne (Stab) _ two-handed Entertainment 2 -- 【109】ルッツェルン(刺突)_両手タメ2","3802400":"[109] Lucerne _ Left Hand -- 【109】ルッツェルン(刺突)_左手","3802490":"[109] Lucerne (thrust) _ Falling throw -- 【109】ルッツェルン(刺突)_落下投げ","3802500":"[109] Lucerne (thrust) _ Behind -- 【109】ルッツェルン(刺突)_背後","3802505":"[109] Lucerne (thrust) _ Behind the reinforcement -- 【109】ルッツェルン(刺突)_強化背後","3802510":"[109] Lucerne (stabbing) _ after Paris -- 【109】ルッツェルン(刺突)_パリィ後","3802515":"[109] Lucerne (stabbing) _ After strengthening Paris -- 【109】ルッツェルン(刺突)_強化パリィ後","3802516":"[109] Lucerne (stabbing) _ After strengthening Paris _ two -- 【109】ルッツェルン(刺突)_強化パリィ後_二段目","3802520":"[109] Lucerne (Thrust) _ one-handed Dash -- 【109】ルッツェルン(刺突)_片手ダッシュ","3802530":"[109] Lucerne (Thrust) _ Both hands Dash -- 【109】ルッツェルン(刺突)_両手ダッシュ","3802540":"[109] Lucerne (needle thrust) _ one hand step before -- 【109】ルッツェルン(刺突)_片手ステップ前","3802580":"[109] Lucerne (Thrust) _ before both hands step -- 【109】ルッツェルン(刺突)_両手ステップ前","3803100":"[110] Giant's hull bird _ one-handed entertainment 1 -- 【110】巨人のハルバード_片手タメ1","3803110":"[110] Giant's hull bird _ one-handed Entertainment 2 -- 【110】巨人のハルバード_片手タメ2","3803300":"[110] Giant's hull bird _ two-handed entertainment 1 -- 【110】巨人のハルバード_両手タメ1","3803310":"[110] Giant's hull bird _ two-handed Entertainment 2 -- 【110】巨人のハルバード_両手タメ2","3804100":"[111] Dress _ one-handed entertainment 1 -- 【111】ドレス_片手タメ1","3804110":"[111] Dress _ one-handed Entertainment 2 -- 【111】ドレス_片手タメ2","3804300":"[111] Dress _ two-handed entertainment 1 -- 【111】ドレス_両手タメ1","3804310":"[111] Dress _ two-handed Entertainment 2 -- 【111】ドレス_両手タメ2","3805100":"[112] Black Knight Axe Spear _ one-handed entertainment 1 -- 【112】黒騎士の斧槍_片手タメ1","3805300":"[112] Black Knight Axe Spear _ two-handed entertainment 1 -- 【112】黒騎士の斧槍_両手タメ1","3805310":"[112] Black Knight Axe Spear _ two-handed Entertainment 2 -- 【112】黒騎士の斧槍_両手タメ2","4100100":"Catalyst _ One-handed entertainment 1 -- 触媒_片手タメ1","4100300":"Catalyst _ Two-handed entertainment 1 -- 触媒_両手タメ1","4100400":"Catalyst _ Left Hand -- 触媒_左手","4100430":"Catalyst _ one-handed guard -- 触媒_片手ガード","4100440":"Catalysts _ two-handed guards -- 触媒_両手ガード","4100610":"Catalyst _ Behind the transition -- 触媒_背後遷移","4101100":"Cane _ one-handed entertainment 1 -- 杖_片手タメ1","4101300":"Cane _ two-handed entertainment 1 -- 杖_両手タメ1","4101400":"Cane _ Left Hand -- 杖_左手","4102100":"[127] Spear Cane _ one-handed entertainment 1 -- 【127】槍杖_片手タメ1","4102300":"[127] Spear Cane _ two-handed entertainment 1 -- 【127】槍杖_両手タメ1","4102400":"[127] Spear Cane _ left hand -- 【127】槍杖_左手","4103100":"[121] Lantern _ one-handed entertainment 1 -- 【121】ランタン_片手タメ1","4103300":"[121] Lantern _ two-handed entertainment 1 -- 【121】ランタン_両手タメ1","4103400":"[121] Lantern _ left Hand -- 【121】ランタン_左手","4103410":"[121] Lantern _ one hand close -- 【121】ランタン_片手近距離","4103420":"[121] Lantern _ both hands close range -- 【121】ランタン_両手近距離","4104100":"[136] Lord of the Abyss _ one-handed entertainment 1 -- 【136】深淵の主_片手タメ1","4104110":"[136] Lord of the Abyss _ one-handed Entertainment 2 -- 【136】深淵の主_片手タメ2","4104300":"[136] Lord of the Abyss _ two-handed entertainment 1 -- 【136】深淵の主_両手タメ1","4104310":"[136] Lord of the Abyss _ two-handed Entertainment 2 -- 【136】深淵の主_両手タメ2","4104400":"[136] Lord of the Abyss _ left hand -- 【136】深淵の主_左手","4200000":"Fist _ one hand usually 1 -- 拳_片手通常1","4200010":"Fist _ one hand usually two -- 拳_片手通常2","4200020":"Fist _ one hand usually three -- 拳_片手通常3","4200030":"Fist _ One handed jump -- 拳_片手ジャンプ1","4200040":"Fist _ One handed fall loop -- 拳_片手落下ループ","4200050":"Fist _ one-handed fall landing -- 拳_片手落下着地","4200100":"Fist _ one-handed entertainment 1 -- 拳_片手タメ1","4200105":"Fist _ one-handed 1_ maximum -- 拳_片手タメ1_最大","4200110":"Fist _ one-handed Entertainment 2 -- 拳_片手タメ2","4200115":"Fist _ one-handed 2_ maximum -- 拳_片手タメ2_最大","4200400":"Fist _ Left Hand -- 拳_左手","4200410":"Fist _ one hand close -- 拳_片手近距離","4200430":"Fist _ one-handed guard -- 拳_片手ガード","4200450":"Fist _ Paris -- 拳_パリィ","4200470":"Fist _ Large Throw -- 拳_大型投げ","4200490":"Fist _ Drop Throw -- 拳_落下投げ","4200500":"Fist _ behind -- 拳_背後","4200501":"Fist _ Behind the second hammer -- 拳_背後_二撃目","4200505":"Fist _ Strengthening behind -- 拳_強化背後","4200510":"Fist _ after Paris -- 拳_パリィ後","4200511":"Fist _ Paris _ Second Hammer -- 拳_パリィ後_二撃目","4200515":"Fist _ after strengthening Paris -- 拳_強化パリィ後","4200516":"Paris Fist _ strengthens after _ Two -- 拳_強化パリィ後_二段目","4200517":"Paris Fist _ strengthens after _ Sandanme -- 拳_強化パリィ後_三段目","4200520":"Fist _ one handed Dash -- 拳_片手ダッシュ","4200540":"Fist _ one hand step before -- 拳_片手ステップ前","4200600":"Fist _ Parigard -- 拳_パリィガード","4200610":"Fist _ Behind the transition -- 拳_背後遷移","4200615":"Fist _ Behind Transition _ missed -- 拳_背後遷移_空振り","4200700":"Fist _ Ladder right hand attack -- 拳_ハシゴ右手攻撃","4200701":"Fist _ Ladder left hand attack -- 拳_ハシゴ左手攻撃","4200702":"Fist _ Ladder right foot attack -- 拳_ハシゴ右足攻撃","4200703":"Fist _ Ladder left foot attack -- 拳_ハシゴ左足攻撃","4200900":"[117] Dragon Fist _ one hand usually -- 【117】竜拳_片手通常","4200901":"[117] Dragon Fist _ one hand large -- 【117】竜拳_片手大","4200902":"[117] Dragon Fist _ left hand -- 【117】竜拳_左手","4200903":"[117] Dragon Fist _ one-handed Dash -- 【117】竜拳_片手ダッシュ","4200904":"[117] Dragon Fist _ one handed step -- 【117】竜拳_片手ステップ","4200905":"[117] Dragon Fist _ one-handed jump attack -- 【117】竜拳_片手ジャンプ攻撃","4200906":"[117] Dragon Fist _ one-handed fall attack -- 【117】竜拳_片手落下中攻撃","4200907":"[117] Dragon Fist _ one-handed fall attack _ around -- 【117】竜拳_片手落下攻撃_周辺","4202000":"[86] Nails _ one hand usually 1 -- 【86】かぎ爪_片手通常1","4202010":"[86] Claws _ one hand usually two -- 【86】かぎ爪_片手通常2","4202020":"[86] Claws _ one hand usually three -- 【86】かぎ爪_片手通常3","4202030":"[86] Claws _ one-handed jump 1 -- 【86】かぎ爪_片手ジャンプ1","4202040":"[86] Claws _ one-handed fall loop -- 【86】かぎ爪_片手落下ループ","4202050":"[86] Claws _ one-handed fall landing -- 【86】かぎ爪_片手落下着地","4202100":"[86] Claws _ one-handed entertainment 1 -- 【86】かぎ爪_片手タメ1","4202110":"[86] Claw nails _ one-handed Entertainment 2 -- 【86】かぎ爪_片手タメ2","4202400":"[86] Claws _ left Hand -- 【86】かぎ爪_左手","4202490":"[86] Claws _ falling throws -- 【86】かぎ爪_落下投げ","4202500":"[86] Claws _ behind -- 【86】かぎ爪_背後","4202501":"[86] Claw _ behind _ Second Hammer -- 【86】かぎ爪_背後_二撃目","4202505":"[86] Claws _ reinforced behind -- 【86】かぎ爪_強化背後","4202510":"[86] Claws _ after Paris -- 【86】かぎ爪_パリィ後","4202511":"[86] Claw _ Paris After _ Second hammer -- 【86】かぎ爪_パリィ後_二撃目","4202515":"[86] Claws _ after strengthening Paris -- 【86】かぎ爪_強化パリィ後","4202516":"[86] Claws _ after strengthening Paris _ two -- 【86】かぎ爪_強化パリィ後_二段目","4202517":"[86] Claws _ After strengthening Paris _ Sandanme -- 【86】かぎ爪_強化パリィ後_三段目","4202520":"[86] Claws _ one-handed Dash -- 【86】かぎ爪_片手ダッシュ","4202540":"[86] Claws _ one hand step before -- 【86】かぎ爪_片手ステップ前","4203100":"[123] Dark Han _ one-handed entertainment 1 -- 【123】ダークハン_片手タメ1","4203110":"[123] Dark Han _ one-handed Entertainment 2 -- 【123】ダークハン_片手タメ2","4203120":"[123] Dark Hand _ one-handed Entertainment 1/Magic Trigger -- 【123】ダークハンド_片手タメ1/魔法発動時","4203130":"[123] Dark Hand _ one-handed Entertainment 2/Magic Trigger -- 【123】ダークハンド_片手タメ2/魔法発動時","4203400":"[123] Dark hand _ left hand -- 【123】ダークハンド_左手","4203405":"[123] Dark Hand _ Left hand/Magic Trigger -- 【123】ダークハンド_左手/魔法発動時","4203430":"[123] Dark Hand _ one-handed guard -- 【123】ダークハンド_片手ガード","4204100":"[87] Large keel _ one-handed entertainment 1 -- 【87】大竜骨_片手タメ1","4204110":"[87] Large keel _ one-handed Entertainment 2 -- 【87】大竜骨_片手タメ2","4300000":"Whip _ one hand usually 1 -- 鞭_片手通常1","4300010":"Whip _ one hand usually two -- 鞭_片手通常2","4300020":"Whip _ one hand usually three -- 鞭_片手通常3","4300030":"Whip _ One handed jump -- 鞭_片手ジャンプ1","4300040":"Whip _ one-handed fall loop -- 鞭_片手落下ループ","4300050":"Whip _ one-handed fall landing -- 鞭_片手落下着地","4300100":"Whip _ one-handed entertainment 1 -- 鞭_片手タメ1","4300110":"Whip _ one-handed Entertainment 2 -- 鞭_片手タメ2","4300200":"Whip _ Two hands usually one -- 鞭_両手通常1","4300210":"Whips _ Two hands usually 2 -- 鞭_両手通常2","4300220":"Whip _ Two hands usually three -- 鞭_両手通常3","4300230":"Whip _ two-handed jump 1 -- 鞭_両手ジャンプ1","4300240":"Whip _ two-handed fall loop -- 鞭_両手落下ループ","4300250":"Whip _ two-handed fall landing -- 鞭_両手落下着地","4300300":"Whip _ two-handed entertainment 1 -- 鞭_両手タメ1","4300310":"Whip _ two-handed Entertainment 2 -- 鞭_両手タメ2","4300400":"Whip _ Left Hand -- 鞭_左手","4300410":"Whip _ one hand close -- 鞭_片手近距離","4300420":"Whip _ both hands close -- 鞭_両手近距離","4300430":"Whip _ one-handed guard -- 鞭_片手ガード","4300440":"Whip _ Both hands guard -- 鞭_両手ガード","4300450":"Whips _ Paris -- 鞭_パリィ","4300520":"Whip _ one-handed Dash -- 鞭_片手ダッシュ","4300530":"Whip _ both hands dash -- 鞭_両手ダッシュ","4300540":"Whip _ one hand step before -- 鞭_片手ステップ前","4300580":"Whip _ hands before step -- 鞭_両手ステップ前","4300600":"Whip _ Behind the transition -- 鞭_背後遷移","4400000":"Bow _ one hand usually -- 弓_片手通常","4400100":"Bow _ one-handed entertainment -- 弓_片手タメ","4400200":"Bow _ Both hands usually -- 弓_両手通常","4400300":"Bow _ hands-on entertainment -- 弓_両手タメ","4400400":"Bow _ Left Hand -- 弓_左手","4400410":"Bow _ one hand close -- 弓_片手近距離","4400420":"Bow _ Both hands close -- 弓_両手近距離","4400430":"Bow _ one-handed guard -- 弓_片手ガード","4400440":"Bow _ two-handed guards -- 弓_両手ガード","4400450":"Bows _ Paris -- 弓_パリィ","4400500":"Bow _ Behind -- 弓_背後","4400510":"Bows _ After Paris -- 弓_パリィ後","4400520":"Bow _ one-handed Dash -- 弓_片手ダッシュ","4400530":"Bow _ Both hands dash -- 弓_両手ダッシュ","4400540":"Bow _ one hand step before -- 弓_片手ステップ前","4400580":"Bow _ Hands before step -- 弓_両手ステップ前","4400600":"Bow _ Behind the transition -- 弓_背後遷移","4600000":"Crossbow _ one hand usually -- 弩_片手通常","4600100":"Crossbow _ one-handed entertainment -- 弩_片手タメ","4600200":"Crossbow _ Both hands usually -- 弩_両手通常","4600300":"Crossbow _ hands-on entertainment -- 弩_両手タメ","4600400":"Crossbow _ Left Hand -- 弩_左手","4600410":"Crossbow _ one-handed close -- 弩_片手近距離","4600420":"Crossbow _ Both hands close -- 弩_両手近距離","4600430":"Crossbow _ one-handed guard -- 弩_片手ガード","4600440":"Crossbow _ two-handed guards -- 弩_両手ガード","4600450":"Crossbow _ Paris -- 弩_パリィ","4600500":"Crossbow _ behind -- 弩_背後","4600510":"Crossbow _ After Paris -- 弩_パリィ後","4600520":"Crossbow _ one-handed Dash -- 弩_片手ダッシュ","4600530":"Crossbow _ Both hands dash -- 弩_両手ダッシュ","4600540":"Crossbow _ one handed step ahead -- 弩_片手ステップ前","4600580":"Crossbow _ Both hands step ahead -- 弩_両手ステップ前","4600600":"Crossbow _ Parigard -- 弩_パリィガード","4600610":"Crossbow _ Behind the transition -- 弩_背後遷移","4700000":"Large Shield _ one hand usually 1 -- 大型盾_片手通常1","4700030":"Large Shield _ one handed jump -- 大型盾_片手ジャンプ1","4700040":"Large Shield _ one handed fall loop -- 大型盾_片手落下ループ","4700050":"Large Shield _ one-handed fall landing -- 大型盾_片手落下着地","4700100":"Large Shield _ one-handed entertainment 1 -- 大型盾_片手タメ1","4700200":"Large Shield _ Two hands usually one -- 大型盾_両手通常1","4700230":"Large Shield _ two-handed jump 1 -- 大型盾_両手ジャンプ1","4700240":"Large Shield _ two-handed fall loop -- 大型盾_両手落下ループ","4700250":"Large Shield _ two-handed fall landing -- 大型盾_両手落下着地","4700300":"Large Shield _ two-handed entertainment 1 -- 大型盾_両手タメ1","4700400":"Large Shield _ left hand -- 大型盾_左手","4700410":"Large Shield _ one hand close -- 大型盾_片手近距離","4700420":"Large Shield _ both hands close -- 大型盾_両手近距離","4700430":"Large Shield _ one handed guard -- 大型盾_片手ガード","4700440":"Large Shield _ two-handed guard -- 大型盾_両手ガード","4700520":"Large Shield _ one-handed Dash -- 大型盾_片手ダッシュ","4700521":"Large Shield _ One handed dash _ Dash -- 大型盾_片手ダッシュ_ダッシュ中","4700530":"Large shield _ both hands dash -- 大型盾_両手ダッシュ","4700531":"Large shield _ Both hands dash _ Dash -- 大型盾_両手ダッシュ_ダッシュ中","4700540":"Large Shield _ one hand step before -- 大型盾_片手ステップ前","4700580":"Large Shield _ Two hands before step -- 大型盾_両手ステップ前","4700600":"Large Shields _ Parigard -- 大型盾_パリィガード","4700601":"Large Shield _ General range -- 大型盾_汎用範囲","4700610":"Large Shield _ behind the transition -- 大型盾_背後遷移","4702100":"[126] Wheel _ one-handed entertainment 1 -- 【126】車輪_片手タメ1","4702110":"[126] Wheel _ one-handed Entertainment 2 -- 【126】車輪_片手タメ2","4702300":"[126] Wheels _ two-handed entertainment 1 -- 【126】車輪_両手タメ1","4702310":"[126] Wheels _ two-handed Entertainment 2 -- 【126】車輪_両手タメ2","4800000":"Shield _ one hand usually 1 -- 盾_片手通常1","4800010":"Shield _ one hand usually two -- 盾_片手通常2","4800020":"Shields _ one hand usually three -- 盾_片手通常3","4800030":"Shield _ One handed jump -- 盾_片手ジャンプ1","4800040":"Shield _ one-handed fall loop -- 盾_片手落下ループ","4800050":"Shield _ one-handed fall landing -- 盾_片手落下着地","4800100":"Shield _ one-handed entertainment 1 -- 盾_片手タメ1","4800110":"Shield _ one-handed Entertainment 2 -- 盾_片手タメ2","4800200":"Shield _ Two hands usually one -- 盾_両手通常1","4800210":"Shield _ Two hands usually 2 -- 盾_両手通常2","4800220":"Shields _ Two hands usually three -- 盾_両手通常3","4800230":"Shield _ two-handed jump 1 -- 盾_両手ジャンプ1","4800240":"Shield _ two-handed fall loop -- 盾_両手落下ループ","4800250":"Shield _ two-handed fall landing -- 盾_両手落下着地","4800300":"Shield _ two-handed entertainment 1 -- 盾_両手タメ1","4800301":"Shield _ two-handed 1_ Dash -- 盾_両手タメ1_ダッシュ中","4800310":"Shield _ two-handed Entertainment 2 -- 盾_両手タメ2","4800400":"Shield _ Left Hand -- 盾_左手","4800410":"Shield _ one hand close -- 盾_片手近距離","4800420":"Shield _ both hands close -- 盾_両手近距離","4800430":"Shield _ One handed guard -- 盾_片手ガード","4800440":"Shield _ Both hands guard -- 盾_両手ガード","4800450":"Shields _ Paris -- 盾_パリィ","4800520":"Shield _ one-handed Dash -- 盾_片手ダッシュ","4800521":"Shields _ one-handed dash _ in dash -- 盾_片手ダッシュ_ダッシュ中","4800530":"Shield _ both hands dash -- 盾_両手ダッシュ","4800531":"Shields _ Both hands dash _ in Dash -- 盾_両手ダッシュ_ダッシュ中","4800540":"Shield _ one hand step before -- 盾_片手ステップ前","4800580":"Shield _ Two hands before step -- 盾_両手ステップ前","4800600":"Shields _ Parigard -- 盾_パリィガード","4800610":"Shield behind transition -- 盾_背後遷移","4800780":"Shield _ Blown attack -- 盾_吹き飛ばし攻撃","4802100":"[92] Crystal Ring Shield _ one-handed entertainment 1 -- 【92】水晶輪の盾_片手タメ1","4802110":"[92] Crystal Ring Shield _ one-handed Entertainment 2 -- 【92】水晶輪の盾_片手タメ2","4802120":"[92] Crystal Ring Shield _ one-handed Entertainment 1/Magic Sword Trigger -- 【92】水晶輪の盾_片手タメ1/魔法剣発動時","4802130":"[92] Crystal Ring Shield _ one-handed Entertainment 2/Magic Sword Trigger -- 【92】水晶輪の盾_片手タメ2/魔法剣発動時","4802300":"[92] Crystal Ring Shield _ two-handed entertainment 1 -- 【92】水晶輪の盾_両手タメ1","4802310":"[92] Crystal Ring Shield _ two-handed Entertainment 2 -- 【92】水晶輪の盾_両手タメ2","4802320":"[92] Crystal Ring Shield _ two-handed One/magic sword trigger -- 【92】水晶輪の盾_両手タメ1/魔法剣発動時","4802330":"[92] Crystal Ring Shield _ two-handed 2/magic Sword Trigger -- 【92】水晶輪の盾_両手タメ2/魔法剣発動時","4802400":"[92] Crystal ring Shield _ left hand -- 【92】水晶輪の盾_左手","4802405":"[92] Crystal ring Shield _ left Hand/Magic Sword Trigger -- 【92】水晶輪の盾_左手/魔法剣発動時","4802800":"[92] Crystal Ring Shield _ Magic Sword -- 【92】水晶輪の盾_魔法剣","4803000":"[93] Spike _ one hand usually 1 -- 【93】スパイク_片手通常1","4803010":"[93] Spikes _ one hand usually two -- 【93】スパイク_片手通常2","4803020":"[93] Spike _ one hand usually three -- 【93】スパイク_片手通常3","4803030":"[93] Spike _ one-handed jump 1 -- 【93】スパイク_片手ジャンプ1","4803040":"[93] Spike _ one-handed fall loop -- 【93】スパイク_片手落下ループ","4803050":"[93] Spike _ one-handed fall landing -- 【93】スパイク_片手落下着地","4803100":"[93] Spike _ one-handed entertainment 1 -- 【93】スパイク_片手タメ1","4803110":"[93] Spike _ one-handed Entertainment 2 -- 【93】スパイク_片手タメ2","4803200":"[93] Spike _ both hands usually one -- 【93】スパイク_両手通常1","4803210":"[93] Spike _ Two hands usually 2 -- 【93】スパイク_両手通常2","4803220":"[93] Spike _ Two hands usually three -- 【93】スパイク_両手通常3","4803230":"[93] Spike _ two-handed jump 1 -- 【93】スパイク_両手ジャンプ1","4803240":"[93] Spike _ Both hands Fall loop -- 【93】スパイク_両手落下ループ","4803250":"[93] Spike _ Two-handed fall landing -- 【93】スパイク_両手落下着地","4803300":"[93] Spike _ two-handed entertainment 1 -- 【93】スパイク_両手タメ1","4803301":"[93] Spike _ two-handed 1_ Dash -- 【93】スパイク_両手タメ1_ダッシュ中","4803310":"[93] Spike _ two-handed Entertainment 2 -- 【93】スパイク_両手タメ2","4803400":"[93] Spike _ Left hand -- 【93】スパイク_左手","4803410":"[93] Spike _ one hand close -- 【93】スパイク_片手近距離","4803420":"[93] Spikes _ both hands close -- 【93】スパイク_両手近距離","4803430":"[93] Spike _ one-handed guard -- 【93】スパイク_片手ガード","4803440":"[93] Spike _ Both hands guard -- 【93】スパイク_両手ガード","4803450":"[93] Spike _ Paris -- 【93】スパイク_パリィ","4803520":"[93] Spike _ one-handed Dash -- 【93】スパイク_片手ダッシュ","4803521":"[93] Spike _ one-handed dash _ in dash -- 【93】スパイク_片手ダッシュ_ダッシュ中","4803530":"[93] Spike _ both hands dash -- 【93】スパイク_両手ダッシュ","4803531":"[93] Spike _ Both hands dash _ Dash -- 【93】スパイク_両手ダッシュ_ダッシュ中","4803540":"[93] Spike _ one hand step before -- 【93】スパイク_片手ステップ前","4803580":"[93] Spike _ two-handed step before -- 【93】スパイク_両手ステップ前","4803600":"[93] Spike _ Parigard -- 【93】スパイク_パリィガード","4900400":"Torch _ Left Hand -- 松明_左手","5000000":"Sickle _ one hand usually 1 -- 鎌_片手通常1","5000010":"Sickle _ one hand usually two -- 鎌_片手通常2","5000020":"Sickle _ one hand usually three -- 鎌_片手通常3","5000030":"Sickle _ One handed jump -- 鎌_片手ジャンプ1","5000040":"Sickle _ One handed fall loop -- 鎌_片手落下ループ","5000050":"Sickle _ one-handed fall landing -- 鎌_片手落下着地","5000100":"Sickle _ one-handed entertainment 1 -- 鎌_片手タメ1","5000105":"Sickle _ one-handed 1_ maximum -- 鎌_片手タメ1_最大","5000110":"Sickle _ one-handed Entertainment 2 -- 鎌_片手タメ2","5000115":"Sickle _ one-handed 2_ maximum -- 鎌_片手タメ2_最大","5000200":"Sickle _ Two hands usually one -- 鎌_両手通常1","5000210":"Sickle _ Two Hands usually 2 -- 鎌_両手通常2","5000220":"Sickle _ Two hands usually three -- 鎌_両手通常3","5000230":"Sickle _ two-handed jump -- 鎌_両手ジャンプ1","5000240":"Sickle _ two-handed fall loop -- 鎌_両手落下ループ","5000250":"Sickle _ two-handed fall landing -- 鎌_両手落下着地","5000300":"Sickle _ two-handed entertainment 1 -- 鎌_両手タメ1","5000305":"Sickle _ two-handed 1_ Max -- 鎌_両手タメ1_最大","5000310":"Sickle _ two-handed Entertainment 2 -- 鎌_両手タメ2","5000315":"Sickle _ two-handed 2_ Max -- 鎌_両手タメ2_最大","5000400":"Sickle _ Left Hand -- 鎌_左手","5000410":"Sickle _ one hand close -- 鎌_片手近距離","5000420":"Sickle _ Both hands close -- 鎌_両手近距離","5000430":"Sickle _ One handed guard -- 鎌_片手ガード","5000440":"Sickle _ Both hands guard -- 鎌_両手ガード","5000450":"Sickle _ Paris -- 鎌_パリィ","5000470":"Sickle _ Large Throw -- 鎌_大型投げ","5000490":"Sickle _ Fall Throw -- 鎌_落下投げ","5000500":"Behind the Sickle -- 鎌_背後","5000505":"Sickle _ Reinforced behind -- 鎌_強化背後","5000510":"Sickle _ after Paris -- 鎌_パリィ後","5000515":"Paris after strengthening sickle -- 鎌_強化パリィ後","5000516":"Sickle _ After strengthening Paris _ two -- 鎌_強化パリィ後_二段目","5000520":"Sickle _ one-handed Dash -- 鎌_片手ダッシュ","5000530":"Sickle _ Both hands dash -- 鎌_両手ダッシュ","5000540":"Sickle _ one hand step before -- 鎌_片手ステップ前","5000580":"Sickle _ hands before step -- 鎌_両手ステップ前","5000600":"Sickle _ Parigard -- 鎌_パリィガード","5001000":"Sickle _ one hand usually 1 (stick) -- 鎌_片手通常1(棒)","5001010":"Sickle _ one hand usually 2 (stick) -- 鎌_片手通常2(棒)","5001020":"Sickle _ one hand usually 3 (stick) -- 鎌_片手通常3(棒)","5001030":"Sickle _ one-handed jump 1 (stick) -- 鎌_片手ジャンプ1(棒)","5001040":"Sickle _ One handed Fall loop (stick) -- 鎌_片手落下ループ(棒)","5001050":"Sickle _ one-handed fall landing (rod) -- 鎌_片手落下着地(棒)","5001100":"Sickle _ one-handed entertainment 1 (stick) -- 鎌_片手タメ1(棒)","5001105":"Sickle _ one-handed 1_ max (stick) -- 鎌_片手タメ1_最大(棒)","5001110":"Sickle _ one hand Entertainment 2 (stick) -- 鎌_片手タメ2(棒)","5001115":"Sickle _ one-handed 2_ max (stick) -- 鎌_片手タメ2_最大(棒)","5001200":"Sickle _ Two Hands usually 1 (stick) -- 鎌_両手通常1(棒)","5001210":"Sickle _ Two Hands usually 2 (stick) -- 鎌_両手通常2(棒)","5001220":"Sickle _ Two Hands usually 3 (stick) -- 鎌_両手通常3(棒)","5001230":"Sickle _ two-handed jump 1 (stick) -- 鎌_両手ジャンプ1(棒)","5001240":"Sickle _ two-handed fall loop (rod) -- 鎌_両手落下ループ(棒)","5001250":"Sickle _ two-handed fall landing (rod) -- 鎌_両手落下着地(棒)","5001300":"Sickle _ two-handed Entertainment 1 (stick) -- 鎌_両手タメ1(棒)","5001305":"Sickle _ two-handed 1_ max (stick) -- 鎌_両手タメ1_最大(棒)","5001310":"Sickle _ two-handed Entertainment 2 (stick) -- 鎌_両手タメ2(棒)","5001315":"Sickle _ two-handed 2_ max (stick) -- 鎌_両手タメ2_最大(棒)","5001410":"Sickle _ one hand short distance (stick) -- 鎌_片手近距離(棒)","5001420":"Sickle _ Both hands short distance (stick) -- 鎌_両手近距離(棒)","5001430":"Sickle _ one-handed guard (stick) -- 鎌_片手ガード(棒)","5001440":"Sickle _ Two-handed guard (stick) -- 鎌_両手ガード(棒)","5001450":"Sickle _ Paris (stick) -- 鎌_パリィ(棒)","5001470":"Sickle _ Large throw (stick) -- 鎌_大型投げ(棒)","5001490":"Sickle _ Fall Throw (stick) -- 鎌_落下投げ(棒)","5001500":"Sickle _ Behind (stick) -- 鎌_背後(棒)","5001505":"Sickle _ Reinforced behind (stick) -- 鎌_強化背後(棒)","5001510":"Sickle _ Paris (stick) -- 鎌_パリィ後(棒)","5001515":"Sickle _ After strengthening Paris (bar) -- 鎌_強化パリィ後(棒)","5001516":"Sickle _ After strengthening Paris _ Two (bar) -- 鎌_強化パリィ後_二段目(棒)","5001520":"Sickle _ one-handed dash (stick) -- 鎌_片手ダッシュ(棒)","5001530":"Sickle _ both hands dash (stick) -- 鎌_両手ダッシュ(棒)","5001540":"Sickle _ one hand step before (stick) -- 鎌_片手ステップ前(棒)","5001580":"Sickle _ two-handed step before (stick) -- 鎌_両手ステップ前(棒)","5001600":"Sickle _ Parigard (stick) -- 鎌_パリィガード(棒)","5100000":"A single hand usually one sword -- 大曲剣_片手通常1","5100001":"One-handed sword _ usually 1_ range -- 大曲剣_片手通常1_範囲","5100010":"One-handed sword _ usually two -- 大曲剣_片手通常2","5100020":"One-handed sword _ usually three -- 大曲剣_片手通常3","5100030":"One-handed Jump 1 -- 大曲剣_片手ジャンプ1","5100040":"One-handed Fall loop -- 大曲剣_片手落下ループ","5100050":"One-handed fall landing -- 大曲剣_片手落下着地","5100100":"One-handed Entertainment 1 -- 大曲剣_片手タメ1","5100105":"One-handed 1_ Max -- 大曲剣_片手タメ1_最大","5100110":"One-handed Entertainment 2 -- 大曲剣_片手タメ2","5100115":"One-handed 2_ Max -- 大曲剣_片手タメ2_最大","5100200":"Two-handed sword _ usually one -- 大曲剣_両手通常1","5100210":"One-handed sword _ two hands usually -- 大曲剣_両手通常2","5100220":"Masterpiece Sword _ Two hands usually three -- 大曲剣_両手通常3","5100230":"Two-handed jump one sword -- 大曲剣_両手ジャンプ1","5100240":"Two-handed Fall loop -- 大曲剣_両手落下ループ","5100250":"Two-handed fall landing -- 大曲剣_両手落下着地","5100300":"A sword with two hands -- 大曲剣_両手タメ1","5100305":"Masterpiece Sword _ two-handed 1_ Max -- 大曲剣_両手タメ1_最大","5100310":"A sword with two hands -- 大曲剣_両手タメ2","5100315":"Masterpiece Sword _ two-handed 2_ Max -- 大曲剣_両手タメ2_最大","5100400":"The left hand -- 大曲剣_左手","5100410":"One-handed Sword -- 大曲剣_片手近距離","5100420":"Two-handed Sword -- 大曲剣_両手近距離","5100430":"One-handed guard -- 大曲剣_片手ガード","5100440":"A masterpiece Sword _ two handed guards -- 大曲剣_両手ガード","5100450":"A Paris Sword -- 大曲剣_パリィ","5100470":"A large throw -- 大曲剣_大型投げ","5100490":"A cast sword _ a falling throw -- 大曲剣_落下投げ","5100500":"Behind the Sword -- 大曲剣_背後","5100501":"Behind the Sword _ the second hammer -- 大曲剣_背後_二撃目","5100505":"A masterpiece behind the reinforcement -- 大曲剣_強化背後","5100506":"Two Sword _ Reinforced behind _ -- 大曲剣_強化背後_二段目","5100510":"Paris after the sword -- 大曲剣_パリィ後","5100511":"A Paris Sword _ second Hammer -- 大曲剣_パリィ後_二撃目","5100515":"A Paris after strengthening the sword -- 大曲剣_強化パリィ後","5100516":"A-Paris Sword _ after strengthening two -- 大曲剣_強化パリィ後_二段目","5100517":"A-Paris Sword _ after strengthening Sandanme -- 大曲剣_強化パリィ後_三段目","5100520":"One-handed Dash -- 大曲剣_片手ダッシュ","5100530":"Two-handed Dash -- 大曲剣_両手ダッシュ","5100540":"One hand step before the sword -- 大曲剣_片手ステップ前","5100580":"Two-handed sword before step -- 大曲剣_両手ステップ前","5100600":"A Parigard Sword -- 大曲剣_パリィガード","5100610":"Behind the transition -- 大曲剣_背後遷移","5100615":"The behind-the-back transition _ missed -- 大曲剣_背後遷移_空振り","5100700":"Masterpiece: the first half -- 大曲剣_回転:前半","5100710":"A Nagi-Spinning sword -- 大曲剣_回転なぎ払い","5100720":"Masterpiece Sword _ Spinning slams -- 大曲剣_回転叩きつけ","5101100":"[116] Tomb King Song Sword _ one-handed entertainment 1 -- 【116】墓王の曲剣_片手タメ1","5101110":"[116] Tomb King Song Sword _ one-handed Entertainment 2 -- 【116】墓王の曲剣_片手タメ2","5101300":"[116] Tomb King Song Sword _ two-handed entertainment 1 -- 【116】墓王の曲剣_両手タメ1","5101310":"[116] Tomb King Song Sword _ two-handed Entertainment 2 -- 【116】墓王の曲剣_両手タメ2"},"AttackElementCorrectParam":{},"BehaviorParam":{"0":"For testing -- テスト用","5":"Disabled behavior [System] -- 無効行動【システム】","7":"Pc_sossign [System] -- PC_SOSsign【システム】","12":"Kickout [System] -- kickout【システム】","13":"Leavesession [System] -- leaveSession【システム】","15":"Black_soulsign [System] -- Black_Soulsign【システム】","16":"Intrusion System -- 乱入【システム】","17":"Bloodsign [System] -- bloodSign【システム】","50":"Bonfire effect -- かがり火効果","101":"Ghost weakening [System] -- ゴースト弱体化【システム】","102":"Black reinforcement [System] -- ブラック強化【システム】","201":"【 QWC 】 Area _npc_ + 1 -- 【QWC】エリア_NPC_+1","202":"【 QWC 】 Area _npc_ + 2 -- 【QWC】エリア_NPC_+2","203":"【 QWC 】 Area _npc_ + 3 -- 【QWC】エリア_NPC_+3","206":"【 QWC 】 Area _npc_-1 -- 【QWC】エリア_NPC_-1","207":"【 QWC 】 Area _NPC_-2 -- 【QWC】エリア_NPC_-2","208":"【 QWC 】 Area _NPC_-3 -- 【QWC】エリア_NPC_-3","211":"[QWC] Area _ black _ + 1 -- 【QWC】エリア_ブラック_+1","212":"[QWC] Area _ black _ + 2 -- 【QWC】エリア_ブラック_+2","221":"[QWC] Area _ white _ + 1 -- 【QWC】エリア_ホワイト_+1","222":"[QWC] Area _ white _ + 2 -- 【QWC】エリア_ホワイト_+2","231":"[QWC] Area _ gray _ + 1 -- 【QWC】エリア_グレイ_+1","232":"[QWC] Area _ gray _ + 2 -- 【QWC】エリア_グレイ_+2","236":"[QWC] Area _ gray _-1 -- 【QWC】エリア_グレイ_-1","237":"[QWC] Area _ gray _-2 -- 【QWC】エリア_グレイ_-2","311":"[QWC] Player _ black _ + 1 -- 【QWC】プレイヤー_ブラック_+1","312":"[QWC] Player _ black _ + 2 -- 【QWC】プレイヤー_ブラック_+2","321":"[QWC] Player _ white _ + 1 -- 【QWC】プレイヤー_ホワイト_+1","322":"[QWC] Player _ white _ + 2 -- 【QWC】プレイヤー_ホワイト_+2","331":"[QWC] Player _ gray _ + 1 -- 【QWC】プレイヤー_グレイ_+1","332":"[QWC] Player _ gray _ + 2 -- 【QWC】プレイヤー_グレイ_+2","336":"[QWC] Player _ gray _-1 -- 【QWC】プレイヤー_グレイ_-1","337":"[QWC] Player _ gray _-2 -- 【QWC】プレイヤー_グレイ_-2","1000":"Behavior ID for scales of butterfly poison in caries (for bullet generation from special effects) -- 蝕の蝶毒の鱗粉用行動ID(特殊効果から弾丸発生用)","1010":"C1310_ Dark Knight Beast: Action ID for cold air (for freezing) -- c1310_ダークナイトビースト:冷気用行動ID(凍結用)","1011":"C1310_ Dark Knight Beast: Action ID for cold air (for decal) -- c1310_ダークナイトビースト:冷気用行動ID(デカール用)","1020":"C5240_ Moonlight Witches _ Torches -- c5240_月光の魔女_松明","1030":"C5220_ Cardinal _ Curse -- c5220_枢機卿団_呪詛","1040":"C2240_ Full Armor Beast: Action ID for cold air (for decal) -- c2240_フルアーマー獣:冷気用行動ID(デカール用)","1050":"c3140_ (Ojo 1) _ Dripping (for decal) -- c3140_ヘルカイト(王城1)_蝕ポタポタ(デカール用)","1060":"c5120_ Snake Spirits: caries reservoir bullets -- c5120_蛇霊:蝕溜まり弾丸","3000":"Common attack [feet, large damage, human type] -- 共通攻撃【足元・大ダメージ・人型】","3001":"Common attack [center, large damage, human type] -- 共通攻撃【中心・大ダメージ・人型】","3002":"Common attack [feet, small damage, human type] -- 共通攻撃【足元・小ダメージ・人型】","3003":"Common attack [Center, small damage, human type] -- 共通攻撃【中心・小ダメージ・人型】","3010":"Common attack [Center, no damage, human type] -- 共通攻撃【中心・ダメージなし・人型】","3011":"Common attack [back, no damage, human type] -- 共通攻撃【背中・ダメージなし・人型】","3012":"Common attack [belly, no damage, human type] -- 共通攻撃【お腹・ダメージなし・人型】","3013":"Common attack [step, no damage, human type] -- 共通攻撃【足元・ダメージなし・人型】","3020":"Common attack [right hand, ladder damage, human type] -- 共通攻撃【右手・梯子ダメージ・人型】","3021":"Common attack [left hand, ladder damage, human type] -- 共通攻撃【左手・梯子ダメージ・人型】","3022":"Common attack [right foot, ladder damage, human type] -- 共通攻撃【右足・梯子ダメージ・人型】","3023":"Common attack [left leg, ladder damage, human type] -- 共通攻撃【左足・梯子ダメージ・人型】","3100":"Common attack [feet, large damage, large] -- 共通攻撃【足元・大ダメージ・大型】","3101":"Common attack [center, large damage, large] -- 共通攻撃【中心・大ダメージ・大型】","3102":"Common attack [feet, small damage, large] -- 共通攻撃【足元・小ダメージ・大型】","3103":"Common attack [Center, small damage, large] -- 共通攻撃【中心・小ダメージ・大型】","3110":"Common attack [Center, no damage, large] -- 共通攻撃【中心・ダメージなし・大型】","3111":"Common attack [back, no damage, large] -- 共通攻撃【背中・ダメージなし・大型】","3112":"Common attack [belly, no damage, large] -- 共通攻撃【お腹・ダメージなし・大型】","3113":"Common attack [foot, no damage, large] -- 共通攻撃【足元・ダメージなし・大型】","3120":"Common attack [right, small damage, large] -- 共通攻撃【右手・小ダメージ・大型】","3121":"Common attack [left, small damage, large] -- 共通攻撃【左手・小ダメージ・大型】","3122":"Common attack [right leg, small damage, large] -- 共通攻撃【右足・小ダメージ・大型】","3123":"Common attack [left leg, small damage, large] -- 共通攻撃【左足・小ダメージ・大型】","3130":"Common attack [right hand, no damage, large] -- 共通攻撃【右手・ダメージなし・大型】","3131":"Common attack [left hand, no damage, large] -- 共通攻撃【左手・ダメージなし・大型】","3132":"Common attack [right leg, no damage, large] -- 共通攻撃【右足・ダメージなし・大型】","3133":"Common attack [left foot, no damage, large] -- 共通攻撃【左足・ダメージなし・大型】","5100":"Ojo 1 Ball of caries -- 蝕の王城1 大玉","5110":"Ojo 1 Bonfires of caries -- 蝕の王城1 焚火","5120":"Ojo 1 carpet Flame of caries -- 蝕の王城1 絨毯の炎","5200":"Ojo 3 Exploding Ghosts of caries -- 蝕の王城3 爆発する幽霊","5800":"Waste City Bow and arrow -- 廃都 弓矢","5801":"Waste City Bow and arrow -- 廃都 弓矢","5900":"Dungeon Objects _ Magic -- 地下牢 器オブジェ_魔法","7000":"Exploding Tal -- 爆発するタル","9900":"FDP proto-oil jar (throwing) -- FDPプロト 油壷(投擲)","9902":"FDP proto-oil jar (OBJ) -- FDPプロト 油壺(Obj)","9910":"FDP Proto Flame Bottle -- FDPプロト 火炎瓶","9930":"FDP proto-Flame damage -- FDPプロト 炎上ダメージ","9950":"FDP Concept edition combustion test -- FDPコンセプト版 燃焼テスト","31200":"Sacred Beast of c3120_ Forest: Common Attack _ underfoot -- c3120_森の霊獣:共通攻撃_足元","51800":"Common attack [Butt dragged/c5180 cursed Colossus] -- 共通攻撃【尻引きずり・c5180呪われた巨像】","52700":"Common attack [Movement (right leg)/c5270 tracker] -- 共通攻撃【移動(右脚)・c5270追跡者】","52701":"Common attack [movement (left leg)/c5270 tracker] -- 共通攻撃【移動(左脚)・c5270追跡者】","210700010":"c1070_ new Skeleton: Song Sword _ slashing One -- c1070_新スケルトン:曲剣_斬撃1","210700020":"c1070_ new Skeleton: Song Sword _ slashing 2 -- c1070_新スケルトン:曲剣_斬撃2","210700030":"c1070_ new Skeleton: Song Sword _ slashing 3 -- c1070_新スケルトン:曲剣_斬撃3","210700040":"c1070_ new Skeleton: Song Sword _ strong Slash -- c1070_新スケルトン:曲剣_強斬り","210700050":"c1070_ new Skeleton: Song Sword _ Spinning attack -- c1070_新スケルトン:曲剣_回転攻撃","210700060":"c1070_ new Skeleton: Song Sword _ Back step slash -- c1070_新スケルトン:曲剣_バックステップ斬り","210700070":"c1070_ new Skeleton: Song Sword _ the first stage -- c1070_新スケルトン:曲剣_助走斬り(一段目)","210700080":"c1070_ new Skeleton: Song Sword _ the Two -- c1070_新スケルトン:曲剣_助走斬り(二段目)","210700090":"c1070_ New skeleton: A song to throw a sword -- c1070_新スケルトン:曲剣_投げる","210700100":"c1070_ new Skeleton: Song Sword _ Song Sword 3 Step slashing (1 ~ two) -- c1070_新スケルトン:曲剣_曲剣 3段斬撃(一~二段目)","210700110":"c1070_ new Skeleton: Song Sword _ Song Sword 3 Step Slashing (SANDANME) -- c1070_新スケルトン:曲剣_曲剣 3段斬撃(三段目)","210700120":"c1070_ New skeleton: A masterpiece Sword _ slashing One -- c1070_新スケルトン:大曲剣_斬撃1","210700130":"c1070_ new Skeleton: Masterpiece Sword _ slashing 2 -- c1070_新スケルトン:大曲剣_斬撃2","210700140":"c1070_ New skeleton: A masterpiece Sword _ slashing Three -- c1070_新スケルトン:大曲剣_斬撃3","210700150":"c1070_ new skeleton: a sword -- c1070_新スケルトン:大曲剣_強斬り","210700160":"c1070_ New skeleton: A masterpiece Sword _ Nagi ① -- c1070_新スケルトン:大曲剣_なぎ払い①","210700170":"c1070_ New skeleton: A masterpiece Sword _ Nagi ② -- c1070_新スケルトン:大曲剣_なぎ払い②","210700180":"c1070_ New skeleton: A masterpiece Sword _ a dive attack -- c1070_新スケルトン:大曲剣_飛び込み攻撃","210700190":"c1070_ New skeleton: A masterpiece Sword _ a dive attack (long distance) -- c1070_新スケルトン:大曲剣_飛び込み攻撃(長距離)","210700200":"c1070_ new skeleton: A sword in the first stage -- c1070_新スケルトン:大曲剣_助走斬り(一段目)","210700210":"c1070_ new skeleton: A sword in the two -- c1070_新スケルトン:大曲剣_助走斬り(二段目)","210700220":"c1070_ new skeleton: Boat Sword -- c1070_新スケルトン:大曲剣_いなし斬り","210700230":"c1070_ new Skeleton: Masterpiece Sword _ Bow Fire -- c1070_新スケルトン:大曲剣_弓射撃","210700240":"c1070_ new skeleton: A sword with an arrow -- c1070_新スケルトン:大曲剣_矢で刺す","210700500":"c1070_ new skeleton: to guard -- c1070_新スケルトン:ガードする","210700510":"c1070_ New skeleton: Paridamage -- c1070_新スケルトン:パリィダメージ","210700520":"c1070_ New skeleton: Paris -- c1070_新スケルトン:パリィする","210900010":"c1090: Dead Soldier: Segunda _ crushing Combo in arms 1-1 -- c1090:亡者兵士:グンダ状態_腕で叩き潰す コンボ1-1","210900020":"c1090: Dead Soldier: Segunda State _ bite with consecutive 1_ head combo 2-1 -- c1090:亡者兵士:グンダ状態_連続で噛み付く1_頭 コンボ2-1","210900021":"c1090: Dead Soldier: Segunda State _ bit _ throwing damage -- c1090:亡者兵士:グンダ状態_噛み付き_投げダメージ","210900022":"c1090: Dead Soldier: Segunda State _ Bite 1_ Neck combo 2-1 in succession -- c1090:亡者兵士:グンダ状態_連続で噛み付く1_首 コンボ2-1","210900030":"c1090: Dead Soldier: Segunda State _ rampage on the spot -- c1090:亡者兵士:グンダ状態_その場で大暴れ","210900040":"c1090: Dead Soldier: Segunda State _ Saigi: Arms _ Arms Combo 1-2 -- c1090:亡者兵士:グンダ状態_薙ぎ払い:腕_腕 コンボ1-2","210900041":"c1090: Dead Soldier: Segunda State _ Saigi: Arms _ head Combo 1-2 -- c1090:亡者兵士:グンダ状態_薙ぎ払い:腕_頭 コンボ1-2","210900042":"c1090: Dead Soldier: Segunda State _ Saigi: Arms _ Neck Combo 1-2 -- c1090:亡者兵士:グンダ状態_薙ぎ払い:腕_首 コンボ1-2","210900050":"c1090: Dead Soldier: Segunda State _ Face Attack _ Head combo 1-3 -- c1090:亡者兵士:グンダ状態_顔攻撃_頭 コンボ1-3","210900051":"c1090: Dead Soldier: Segunda State _ Face Attack _ Neck combo 1-3 -- c1090:亡者兵士:グンダ状態_顔攻撃_首 コンボ1-3","210900060":"c1090: Dead Soldier: Segunda State _ bite with consecutive 2_ head combo 2-1 -- c1090:亡者兵士:グンダ状態_連続で噛み付く2_頭 コンボ2-1","210900061":"c1090: Dead Soldier: Segunda State _ Bite 2_ Neck combo 2-1 in succession -- c1090:亡者兵士:グンダ状態_連続で噛み付く2_首 コンボ2-1","210900070":"c1090: Dead Soldier: Segunda _ rushes _ head -- c1090:亡者兵士:グンダ状態_突進_頭","210900071":"c1090: Dead Soldier: Segunda _ lunge _ Arms -- c1090:亡者兵士:グンダ状態_突進_腕","210900080":"c1090: Dead Soldier: Segunda State _ behind attack -- c1090:亡者兵士:グンダ状態_背後攻撃","210900100":"c1090: Dead Soldier: Segunda State _ Segunda comes out _ head -- c1090:亡者兵士:グンダ状態_グンダが出てくる_頭","210900101":"c1090: Dead Soldier: Segunda State _ Segunda comes out _ arms -- c1090:亡者兵士:グンダ状態_グンダが出てくる_腕","210900102":"c1090: Dead Soldier: Segunda State _ Segunda comes out _ tails -- c1090:亡者兵士:グンダ状態_グンダが出てくる_尻尾","211000100":"C1100_ dead Soldiers _ Straight Swords _ right-hand swing -- c1100_亡者兵士_直剣_右手振り下ろし","211000101":"C1100_ dead Soldiers _ Straight Swords _ right-hand crosscut -- c1100_亡者兵士_直剣_右手切り返し","211000102":"C1100_ dead Soldiers _ Straight Swords _ right-hand thrusts (swords) -- c1100_亡者兵士_直剣_右手突き(剣)","211000110":"C1100_ dead Soldiers _ Straight Swords _ dash thrusts -- c1100_亡者兵士_直剣_ダッシュ突き","211000120":"C1100_ dead Soldiers _ straight swords _ shields pushed -- c1100_亡者兵士_直剣_盾プッシュ","211000130":"C1100_ dead Soldier _ Straight Sword _ two-handed slash -- c1100_亡者兵士_直剣_両手斬り","211000140":"C1100_ dead Soldiers _ straight Swords _ poked -- c1100_亡者兵士_直剣_突き","211000150":"C1100_ dead Soldiers _ Straight Swords _ Reversed this morning -- c1100_亡者兵士_直剣_逆けさ連続斬り","211000151":"C1100_ dead Soldiers _ Straight Swords _ reverse this morning's second row -- c1100_亡者兵士_直剣_逆けさ連続斬り 2段目","211000200":"C1100_ Dead Soldier _ spear _ poked combo first Hammer -- c1100_亡者兵士_槍_突きコンボ初撃","211000201":"C1100_ Dead Soldier _ spear _ thrusting combo second firing -- c1100_亡者兵士_槍_突きコンボ2撃目","211000210":"C1100_ Dead Soldiers _ spears _ infuser Thrusts -- c1100_亡者兵士_槍_溜め突き","211000220":"C1100_ Dead Soldiers _ spears _ Nagi -- c1100_亡者兵士_槍_なぎ払い","211000230":"C1100_ Dead Soldiers _ spears _ dash Thrusts -- c1100_亡者兵士_槍_ダッシュ突き","211000240":"C1100_ Dead Soldiers _ spear _ shields Push -- c1100_亡者兵士_槍_盾プッシュ","211000241":"C1100_ Dead Soldiers _ spear _ Shield Push _ Accelerated part -- c1100_亡者兵士_槍_盾プッシュ_加速部分","211000250":"C1100_ Dead Soldiers _ spears _ Lash One -- c1100_亡者兵士_槍_ラッシュ1","211000251":"C1100_ Dead Soldiers _ spears _ Rush 2 -- c1100_亡者兵士_槍_ラッシュ2","211000252":"C1100_ Dead Soldiers _ spears _ Rush 3 -- c1100_亡者兵士_槍_ラッシュ3","211000300":"C1100_ dead Soldier _ Broken Straight Sword _ right hand swing down -- c1100_亡者兵士_折れた直剣_右手振り下ろし","211000310":"C1100_ dead soldiers _ Broken Straight swords _ left Kesa -- c1100_亡者兵士_折れた直剣_左袈裟","211000320":"C1100_ dead soldiers _ Broken Straight swords _ handle Beats -- c1100_亡者兵士_折れた直剣_柄殴り","211000330":"C1100_ dead soldiers _ Broken Straight Swords _ rush first Stage -- c1100_亡者兵士_折れた直剣_ラッシュ1段目","211000331":"C1100_ dead soldiers _ Broken Straight Swords _ rush second Stage -- c1100_亡者兵士_折れた直剣_ラッシュ2段目","211000332":"C1100_ dead soldiers _ Broken Straight Swords _ rush third Stage -- c1100_亡者兵士_折れた直剣_ラッシュ3段目","211000333":"C1100_ dead soldiers _ Broken Straight Swords _ rush fourth Stage -- c1100_亡者兵士_折れた直剣_ラッシュ4段目","211000334":"C1100_ dead soldiers _ Broken Straight Swords _ rush fifth stage -- c1100_亡者兵士_折れた直剣_ラッシュ5段目","211000335":"C1100_ dead soldiers _ Broken Straight Swords _ rush sixth stage -- c1100_亡者兵士_折れた直剣_ラッシュ6段目","211000340":"C1100_ dead soldiers _ Broken Straight swords _ leapt -- c1100_亡者兵士_折れた直剣_飛びかかり","211000398":"C1100_ dead Soldiers _ straight Swords _ Throwing out damage -- c1100_亡者兵士_直剣_投げ抜けダメージ","211000399":"C1100_ dead Soldiers _ Straight Swords _ attack transition for throwing out -- c1100_亡者兵士_直剣_投げ抜け用攻撃遷移","211000500":"C1100_ Dead Soldier _ dagger _ successive slash 1 -- c1100_亡者兵士_短剣_連続斬り1","211000501":"C1100_ Dead Soldier _ dagger _ successive slash 2 -- c1100_亡者兵士_短剣_連続斬り2","211000502":"C1100_ Dead Soldier _ dagger _ successive slash 3 -- c1100_亡者兵士_短剣_連続斬り3","211000510":"C1100_ Dead Soldiers _ daggers _ leapt (medium-range) -- c1100_亡者兵士_短剣_飛びかかり(中距離)","211000520":"C1100_ Dead Soldiers _ daggers _ leapt (FAR) -- c1100_亡者兵士_短剣_飛びかかり(遠距離)","211000530":"C1100_ Dead Soldiers _ daggers _ Small Depression & continuous slash first stage -- c1100_亡者兵士_短剣_小踏み込み&連続斬り1段目","211000531":"C1100_ Dead Soldiers _ daggers _ Small Depression & continuous slash second stage -- c1100_亡者兵士_短剣_小踏み込み&連続斬り2段目","211000532":"C1100_ Dead Soldiers _ daggers _ Small Depression & continuous slash third stage -- c1100_亡者兵士_短剣_小踏み込み&連続斬り3段目","211000540":"C1100_ Dead Soldiers _ daggers _ combo 2-1 thrusts -- c1100_亡者兵士_短剣_コンボ2-1 突き","211000541":"C1100_ Dead Soldiers _ daggers _ combo 2-1 continuous Slash -- c1100_亡者兵士_短剣_コンボ2-1 連続斬り","211000550":"C1100_ Dead Soldiers _ daggers _ Baxta Thrusts (strong thrusts) -- c1100_亡者兵士_短剣_バクスタ突き(強突き)","211000551":"C1100_ Dead Soldier _ dagger _ tossed -- c1100_亡者兵士_短剣_投げ","211000700":"C1100_ Dead Soldiers _ guards -- c1100_亡者兵士_ガード","211000710":"C1100_ Dead Soldiers _ Guard (weak) -- c1100_亡者兵士_ガード(弱)","211000800":"C1100_ Dead Soldiers _ bows _ usually arrows -- c1100_亡者兵士_弓_通常矢","211000801":"C1100_ Dead Soldiers _ bows _ arrows -- c1100_亡者兵士_弓_火矢","211000810":"C1100_ dead Soldiers _ throwing oil pots -- c1100_亡者兵士_油壺投げ","211000811":"C1100_ dead Soldiers _ oil pots tossed _ landed -- c1100_亡者兵士_油壺投げ_着弾","211000820":"C1100_ dead Soldiers _ flame Pots -- c1100_亡者兵士_火炎壺","211000821":"C1100_ dead Soldiers _ Flame Pots _ Landed -- c1100_亡者兵士_火炎壺_着弾","211050010":"C1105_ dead Soldier (Large) _ axe _ Swung down: Right tilted single-shot -- c1105_亡者兵士(大)_斧_振り下ろし:右ななめ単発","211050011":"C1105_ dead Soldier (Large) _ axe _ shaken down: Left tilted first stage -- c1105_亡者兵士(大)_斧_振り下ろし:左ななめ一段目","211050012":"C1105_ dead Soldier (Large) _ axe _ Swung down: right tilted two -- c1105_亡者兵士(大)_斧_振り下ろし:右ななめ二段目","211050020":"C1105_ dead Soldier (Large) _ axe _ Swing Down: Depression & timing Difference -- c1105_亡者兵士(大)_斧_振り下ろし:踏み込み&タイミング違い","211050030":"C1105_ dead Soldier (Large) _ ax _ steep approaching & swinging down -- c1105_亡者兵士(大)_斧_急接近&振り下ろし","211050040":"C1105_ dead Soldier (Large) _ axe _ Tilted sideways Sugu -- c1105_亡者兵士(大)_斧_思いきり横に薙ぐ","211050050":"C1105_ dead Soldier (Large) _ axe _ Saigi to right (for combo) -- c1105_亡者兵士(大)_斧_右に薙ぎ払い(コンボ用)","211050051":"C1105_ dead Soldier (Large) _ axe _ Saigi to left (for combo) -- c1105_亡者兵士(大)_斧_左に薙ぎ払い(コンボ用)","211050060":"C1105_ dead Soldier (Large) _ axe _ Right side payment -- c1105_亡者兵士(大)_斧_右側面払い","211050061":"C1105_ dead Soldier (Large) _ axe _ left side pay -- c1105_亡者兵士(大)_斧_左側面払い","211050070":"C1105_ dead Soldier (Large) _ ax _ Nagi from right to left -- c1105_亡者兵士(大)_斧_右から左になぎ払う","211050110":"C1105_ dead Soldier (Large) _ Saigi _ Hal Bird -- c1105_亡者兵士(大)_ハルバード_薙ぎ払い","211050111":"C1105_ dead Soldier (Large) _ Hal Bird _ Inverted Saigi -- c1105_亡者兵士(大)_ハルバード_逆薙ぎ払い","211050120":"C1105_ dead Soldier (Large) _ Hull Bird _ butting in: lingering forward -- c1105_亡者兵士(大)_ハルバード_突き:余韻で進む","211050130":"C1105_ dead Soldier (Large) _ Hull bird _ Swing down: Go down in the afterglow -- c1105_亡者兵士(大)_ハルバード_振り下ろす:余韻で下がる","211050140":"C1105_ dead Soldier (Large) _ Hull Bird _ short-approaching thrusting: down in the afterglow -- c1105_亡者兵士(大)_ハルバード_急接近突き:余韻で下がる","211050150":"C1105_ dead Soldier (Large) _ Hull Bird _ extruded -- c1105_亡者兵士(大)_ハルバード_押し出し","211050160":"C1105_ dead Soldier (Large) _ Hal Bird _ Strong Saigi -- c1105_亡者兵士(大)_ハルバード_強薙ぎ払い","211100100":"c1110_ Dark Knight (Straight Sword) _ Slashing 1 -- c1110_ダークナイト(直剣)_斬撃1","211100110":"c1110_ Dark Knight (straight Blade) _ Slashing 2 -- c1110_ダークナイト(直剣)_斬撃2","211100120":"c1110_ Dark Knight (Straight Sword) _ slashing 3 -- c1110_ダークナイト(直剣)_斬撃3","211100130":"c1110_ Dark Knight (Straight Sword) _ Finish technique -- c1110_ダークナイト(直剣)_フィニッシュ技","211100140":"c1110_ Dark Knight (Straight sword) _ strong slashing, single-shot -- c1110_ダークナイト(直剣)_強斬撃・単発","211100150":"c1110_ Dark Knight (Straight sword) _ Strong slashing Combo -- c1110_ダークナイト(直剣)_強斬撃・コンボ","211100160":"c1110_ Dark Knight (Straight Sword) _ Shield Bash -- c1110_ダークナイト(直剣)_シールドバッシュ","211100170":"c1110_ Dark Knight (Straight sword) _ Distance packed attack (long) -- c1110_ダークナイト(直剣)_距離詰め攻撃(長)","211100180":"c1110_ Dark Knight (Straight Sword) _ distance-packed attack (short) -- c1110_ダークナイト(直剣)_距離詰め攻撃(短)","211100190":"c1110_ Dark Knight (Straight Sword) _ The second stage of the strong slashing combo -- c1110_ダークナイト(直剣)_強斬撃・コンボ2段目","211100200":"c1110_ Dark Knight (Straight Sword) _ Weak slashing 1 -- c1110_ダークナイト(直剣)_弱斬撃1","211100210":"c1110_ Dark Knight (Straight Sword) _ Weak slashing 2 -- c1110_ダークナイト(直剣)_弱斬撃2","211100220":"c1110_ Dark Knight (Straight Sword) _ Weak slashing 3 -- c1110_ダークナイト(直剣)_弱斬撃3","211100230":"c1110_ Dark Knight (Straight Sword) _ Whack attack behind -- c1110_ダークナイト(直剣)_背後への薙ぎ攻撃","211100700":"C1110_ The Dark Knight _ guard -- c1110_ダークナイト_ガード","211100990":"c1100_ Avatar Death Signpost -- c1100_アバター死亡時道標","211200010":"Straight Sword: Stepping Down (Combo ① 1) -- 直剣:踏み込み斬り下ろし(コンボ①1)","211200020":"Straight Sword: Stepping Left → right Saigi (combo ① 2) -- 直剣:踏み込み左→右薙ぎ払い(コンボ①2)","211200030":"Straight Sword: Depression deadline (Combo ① 3) -- 直剣:踏み込み〆突き(コンボ①3)","211200040":"Straight Sword: Left Shiri (Combo ② 1) -- 直剣:左袈裟斬り(コンボ②1)","211200050":"Straight Sword: Depression fast thrust 1 (Combo ② 2) -- 直剣:踏み込み高速突き1(コンボ②2)","211200060":"Straight Sword: Depression fast thrust 2 (Combo ② 3) -- 直剣:踏み込み高速突き2(コンボ②3)","211200070":"Straight Sword: Stepping Down (Large) (Combo ② 4) -- 直剣:踏み込み斬り下ろし(大)(コンボ②4)","211200080":"Straight Sword: Stepping Left → right Saigi (single) -- 直剣:踏み込み左→右薙ぎ払い(単発)","211200090":"Straight Sword: Rush Butt -- 直剣:突進突き","211200100":"Straight Sword: Shield bash -- 直剣:シールドバッシュ","211200200":"Halle Byrd: Guard Butt 1 (Combo ① 1) -- ハルバード:ガード突き1(コンボ①1)","211200210":"Halle Bird: Guard Butt 2 (Combo ① 2) -- ハルバード:ガード突き2(コンボ①2)","211200220":"Halle Byrd: Stepping Infuser (Combo ① 3) -- ハルバード:踏み込み溜め突き(コンボ①3)","211200230":"Saigi: Depression Right → Left (combo ② 1) -- ハルバード:踏み込み右→左薙ぎ払い(コンボ②1)","211200240":"Saigi: Stepping Left → right (combo ② 2) -- ハルバード:踏み込み左→右薙ぎ払い(コンボ②2)","211200250":"Hal Bird: Stepping Down (single) -- ハルバード:踏み込み斬り下ろし(単発)","211200260":"Halle Byrd: Thrusting -- ハルバード:突き","211200270":"Hal Bird: Slapping Down -- ハルバード:叩きおろし","211200280":"Halle Bird: Rush Butt -- ハルバード:突進突き","211200290":"Halle Byrd: Shield bash -- ハルバード:シールドバッシュ","211200500":"Guard -- ガード","211300010":"Caries slug: Bit -- 蝕ナメクジ:噛み付き","211300020":"Caries slug: Arm throwing transition attack -- 蝕ナメクジ:腕投げ遷移攻撃","211300021":"Caries slug: arm throwing pressure damage -- 蝕ナメクジ:腕投げ圧迫ダメージ","211300050":"Caries Slugs: landing -- 蝕ナメクジ:着地","211300700":"Caries slug: caries vomiting -- 蝕ナメクジ:蝕吐き","211300710":"Caries Slug: Vomit (short) -- 蝕ナメクジ:蝕吐き(短)","211320010":"C1132_-Erosion Slugs: throwing transition attacks -- c1132_蝕ナメクジ:投げ遷移攻撃","211320011":"C1132_: Throwing and squeezing damage -- c1132_蝕ナメクジ:投げ圧迫ダメージ","211500100":"C1150_ dead Shi (mace + Large shield) _ Kesa beating 1 -- c1150_亡者僧兵(メイス+大盾)_袈裟殴り1","211500110":"C1150_ dead Shi (mace + Large shield) _ Kesa beating 2 -- c1150_亡者僧兵(メイス+大盾)_袈裟殴り2","211500120":"C1150_ dead Shi (mace + Large Shield) _ Sidewise 1 (one-shot) -- c1150_亡者僧兵(メイス+大盾)_横殴り1(単発)","211500130":"C1150_ dead Shi (mace + Large Shield) _ Sidewise 1 (combo) -- c1150_亡者僧兵(メイス+大盾)_横殴り1(コンボ)","211500140":"C1150_ dead Shi (mace + Large Shield) _ Sidewise 2 -- c1150_亡者僧兵(メイス+大盾)_横殴り2","211500150":"C1150_ dead Shi (mace + Large shield) _ knocked back against -- c1150_亡者僧兵(メイス+大盾)_叩き付け","211500160":"C1150_ dead Shi (mace + Large shield) _ Shield Bash -- c1150_亡者僧兵(メイス+大盾)_シールドバッシュ","211500200":"C1150_ dead Shi (both hand-held hammers) _ Sidewise 1 -- c1150_亡者僧兵(両手持ちハンマー)_横殴り1","211500210":"C1150_ dead Shi (both hand-held hammers) _ Sidewise 2 -- c1150_亡者僧兵(両手持ちハンマー)_横殴り2","211500220":"C1150_ dead Shi (both hand-held hammers) _ grated -- c1150_亡者僧兵(両手持ちハンマー)_振りおろし","211500230":"C1150_ dead Shi (both hand-held hammers) _ lateral swinging 1 -- c1150_亡者僧兵(両手持ちハンマー)_横振り回し1","211500240":"C1150_ dead Shi (both hand-held hammers) _ Lateral swinging 2 -- c1150_亡者僧兵(両手持ちハンマー)_横振り回し2","211500250":"C1150_ dead Shi (both hand-held hammers) _ a swing from shakes -- c1150_亡者僧兵(両手持ちハンマー)_振りかぶりからの振りおろし","211500300":"C1150_ dead Shi (Ice-Ax) _ Kesa cut 1 -- c1150_亡者僧兵(ピッケル)_袈裟切り1","211500310":"C1150_ dead Shi (Ice-Ax) _ Kesa Cut 2 -- c1150_亡者僧兵(ピッケル)_袈裟切り2","211500320":"C1150_ dead Shi (Ice-ax) _ Intense shaking off (combo) -- c1150_亡者僧兵(ピッケル)_強烈振り降ろし(コンボ)","211500330":"C1150_ dead Shi (Ice-ax) _ Intense shaking off (single-shot) -- c1150_亡者僧兵(ピッケル)_強烈振り降ろし(単発)","211500340":"C1150_ dead Shi (Ice-Ax) _ Sidewise -- c1150_亡者僧兵(ピッケル)_横殴り","211500350":"C1150_ dead Shi (Ice-Ax) _ Sidewise A (grated 1 derived) -- c1150_亡者僧兵(ピッケル)_横殴りA(振りおろし1派生)","211500360":"C1150_ dead Shi (Ice-Ax) _ Sidewise B (sidewise 1 derived) -- c1150_亡者僧兵(ピッケル)_横殴りB(横殴り1派生)","211500370":"C1150_ dead Shi (Ice-ax) _ Swinging from shakes -- c1150_亡者僧兵(ピッケル)_振りかぶりからの振りおろし","211500700":"C1150_ dead Shi (mace + Large shield) _ guards -- c1150_亡者僧兵(メイス+大盾)_ガード","211700010":"Right hand: Rounding up -- 右手:切り上げ","211700011":"Right hand: Sword down -- 右手:斬り下ろし","211700012":"Right hand: Vertical rotation Sword down -- 右手:縦回転斬り下ろし","211700020":"Right hand: Shiri -- 右手:袈裟斬り","211700021":"Right hand: Butt -- 右手:突き","211700030":"Right hand: Slalom Slash -- 右手:大回転斬り","211700040":"Rolling down the derived sword -- ローリング派生斬り下ろし","211700050":"Rush (stage) -- ラッシュ(初段)","211700060":"Shield Bash -- シールドバッシュ","211700070":"Rolling -- ローリング","211700100":"Guard -- ガード","211700110":"Both hands: Right → left Saigi -- 両手:右→左薙ぎ払い","211700120":"Both hands: Shiri -- 両手:袈裟斬り","211700130":"Both hands: Tamenuri Left → right Saigi -- 両手:溜左→右薙ぎ払い","211700200":"Shooting -- 射撃","211700201":"Shooting (for combo) -- 射撃(コンボ用)","211800010":"C1180: Frontier Skeleton (Shorty) _ Whack: Wait -- c1180:辺境スケルトン(ショーテル)_薙ぎ:待機","211800020":"C1180: Frontier Skeleton (Shorty) __ Reverse whack: whack posture -- c1180:辺境スケルトン(ショーテル)__逆薙ぎ:薙ぎ姿勢","211800030":"C1180: Frontier Skeleton (Shorty) _ Jump Whack: reverse whack posture -- c1180:辺境スケルトン(ショーテル)_ジャンプ薙ぎ:逆薙ぎ姿勢","211800040":"C1180: Frontier Skeleton (Shorty) _ Reverse Kesa: Whack stance -- c1180:辺境スケルトン(ショーテル)_逆袈裟:薙ぎ姿勢","211800050":"C1180: Frontier Skeleton (Shorty) _ Stepping down -- c1180:辺境スケルトン(ショーテル)_踏み込み斬り下ろし","211800060":"C1180: Frontier Skeleton (Shorty) _ Thrust: Swing down posture -- c1180:辺境スケルトン(ショーテル)_突き:振り下ろし姿勢","211800070":"C1180: Frontier Skeleton (Shorty) _ Revolving Payment: Thrust posture -- c1180:辺境スケルトン(ショーテル)_回転払い:突き姿勢","211800080":"C1180: Frontier Skeleton (Shorty) _ Step Whack -- c1180:辺境スケルトン(ショーテル)_ステップ薙ぎ","211800090":"C1180: Frontier Skeleton (Shorty) _ Reverse Whack: standing posture -- c1180:辺境スケルトン(ショーテル)_逆薙ぎ:待機姿勢","211800100":"C1180: Frontier Skeleton (Shorty) _ Grated: depression Small -- c1180:辺境スケルトン(ショーテル)_振りおろし:踏み込み小","211800110":"C1180: Frontier Skeleton (Shorty) _ Revolving Payment -- c1180:辺境スケルトン(ショーテル)_回転払い","211800120":"C1180: Frontier Skeleton (Shorty) _ Shield through rake-up -- c1180:辺境スケルトン(ショーテル)_盾貫通すくい上げ","211800200":"C1180: Frontier Skeleton (Nitori) _ Two-handed (right) -- c1180:辺境スケルトン(二刀流)_両手払い(右)","211800201":"C1180: Frontier Skeleton (Nitori) _ Two-handed (left) -- c1180:辺境スケルトン(二刀流)_両手払い(左)","211800210":"C1180: Frontier Skeleton (Nitori) _ one-handed reverse payment (left) -- c1180:辺境スケルトン(二刀流)_片手逆払い(左)","211800220":"C1180: Frontier Skeleton (Nitori) _ Rotating one hand and grated (right) -- c1180:辺境スケルトン(二刀流)_回転片手振りおろし(右)","211800221":"C1180: Frontier Skeleton (Nitori) _ Rotating one-handed (left) -- c1180:辺境スケルトン(二刀流)_回転片手振りおろし(左)","211800230":"C1180: Frontier Skeleton (Nitori) _ Two-handed reverse payment (right) -- c1180:辺境スケルトン(二刀流)_両手逆払い(右)","211800231":"C1180: Frontier Skeleton (Nitori) _ Two-handed reverse payment (left) -- c1180:辺境スケルトン(二刀流)_両手逆払い(左)","211800240":"C1180: Frontier Skeleton (Nitori) _ Both hand and side grated (right) -- c1180:辺境スケルトン(二刀流)_両手振りおろし(右)","211800241":"C1180: Frontier Skeleton (Nitori) _ Both sides grated (left) -- c1180:辺境スケルトン(二刀流)_両手振りおろし(左)","211800250":"C1180: Frontier Skeleton (Nitori) _ Yupa Attack (right) -- c1180:辺境スケルトン(二刀流)_ユパ様アタック(右)","211800251":"C1180: Frontier Skeleton (Nitori) _ Yupa attack (left) -- c1180:辺境スケルトン(二刀流)_ユパ様アタック(左)","211800260":"C1180: Frontier Skeleton (Nitori) _ Both hands rounded up (right) -- c1180:辺境スケルトン(二刀流)_踏み込み両手切り上げ(右)","211800261":"C1180: Frontier Skeleton (Nitori) _ Two-handed rounding (left) -- c1180:辺境スケルトン(二刀流)_踏み込み両手切り上げ(左)","211800270":"C1180: Frontier Skeleton (Nitori) _ Diving rotation slash (right) -- c1180:辺境スケルトン(二刀流)_飛び込み回転斬り(右)","211800271":"C1180: Frontier Skeleton (Nitori) _ Diving rotation slash (left) -- c1180:辺境スケルトン(二刀流)_飛び込み回転斬り(左)","211800280":"C1180: Frontier Skeleton (Nitori) _ Left step payment (left) -- c1180:辺境スケルトン(二刀流)_左ステップ払い(左)","211800290":"C1180: Frontier Skeleton (Nitori) _ Right Step payment (left) -- c1180:辺境スケルトン(二刀流)_右ステップ払い(左)","211800300":"C1180: Frontier Skeleton (Nitori) _ Rush First stage (right) -- c1180:辺境スケルトン(二刀流)_ラッシュ1段目(右)","211800310":"C1180: Frontier Skeleton (Nitori) _ Stepping up one hand -- c1180:辺境スケルトン(二刀流)_踏み込み片手斬り上げ","211800320":"C1180: Frontier Skeleton (Nitori) _ Rush Second stage (right) -- c1180:辺境スケルトン(二刀流)_ラッシュ2段目(右)","211800321":"C1180: Frontier Skeleton (Nitori) _ Second stage of Rush (left) -- c1180:辺境スケルトン(二刀流)_ラッシュ2段目(左)","211800330":"C1180: Frontier Skeleton (Nitori) _ Rush Third stage (right) -- c1180:辺境スケルトン(二刀流)_ラッシュ3段目(右)","211800331":"C1180: Frontier Skeleton (Nitori) _ Rush Third stage (left) -- c1180:辺境スケルトン(二刀流)_ラッシュ3段目(左)","211800340":"C1180: Frontier Skeleton (Nitori) _ Rush Fourth stage (right) -- c1180:辺境スケルトン(二刀流)_ラッシュ4段目(右)","211800341":"C1180: Frontier Skeleton (Nitori) _ Rush Fourth stage (left) -- c1180:辺境スケルトン(二刀流)_ラッシュ4段目(左)","211800350":"C1180: Frontier Skeleton (Nitori) _ One-handed rounding: depression small -- c1180:辺境スケルトン(二刀流)_片手切り上げ:踏み込み小","211800700":"Baxtenife throwing -- バクステナイフ投げ","211800710":"Knife throwing -- ナイフ投げ","211800720":"Step knife throwing -- ステップナイフ投げ","211900100":"Gray Tome + Large shield _ grated -- グレートメイス+大盾_振りおろし","211900110":"Grey Tome + Large shield _ swinging -- グレートメイス+大盾_振り上げ","211900120":"Grey Tome + Large shield _ grated Mei-slash 1 -- グレートメイス+大盾_振りおろしメイスラッシュ1","211900121":"Grey Tome + Large shield _ grated mae slash 2 -- グレートメイス+大盾_振りおろしメイスラッシュ2","211900122":"Grey Tome + Large shield _ grated mae slash 3 -- グレートメイス+大盾_振りおろしメイスラッシュ3","211900130":"Grey Tome + Large Shield _ Saigi 1 -- グレートメイス+大盾_薙ぎ払い1","211900140":"Grey Tome + Large Shield _ Saigi 2 -- グレートメイス+大盾_薙ぎ払い2","211900150":"Grey Tome + Large shield _ knocked back against -- グレートメイス+大盾_溜めて叩き付け","211900160":"Grey Tome + Large shield _ Shield bash -- グレートメイス+大盾_シールドバッシュ","211900170":"Gray Tome + Large Shield _ Miracle attack -- グレートメイス+大盾_奇跡・攻撃","211900180":"Grey Tome + Large Shield _ Miracle/Recovery -- グレートメイス+大盾_奇跡・回復","211900190":"Gray Tome + Large Shield _ Crossbow -- グレートメイス+大盾_クロスボウ","211900290":"Grey Tome + Large Shield _ Guard -- グレートメイス+大盾_ガード","211900300":"Great Sword _ Saigi 1 -- グレートソード_薙ぎ払い1","211900310":"Great Sword _ Saigi 2 (Nagi 1) -- グレートソード_薙ぎ払い2(なぎ払い1から繋がる版)","211900320":"Great Sword _ Kesa cut 1 -- グレートソード_袈裟切り1","211900330":"Great Sword _ Saigi 3 (Kesa cut 1) -- グレートソード_薙ぎ払い3(袈裟切り1から繋がる版","211900340":"Great Sword, stepping round -- グレートソード_踏み込み切り上げ","211900350":"Great Sword, stepping round -- グレートソード_踏み込み切り上げ","211900360":"From the top of the Great Sword (combo) -- グレートソード_上段からの振りおろし(コンボ)","211900370":"Great Sword _ from the top of the Swing (single) -- グレートソード_上段からの振りおろし(単発)","211900380":"Great sword before kick: Kick -- グレートソード_前蹴り:蹴り","211900381":"Great Sword _ pre-kick: push -- グレートソード_前蹴り:押し","211900390":"Great Sword _ head Bud -- グレートソード_ヘッドバッド","211900400":"Great Sword _ back Whack -- グレートソード_背面薙ぎ","211900410":"Great Sword (combo) -- グレートソード_溜め振りおろし(コンボ)","211900420":"Great Sword _ close-up swing -- グレートソード_接近振りおろし","211900430":"The Great sword-stepping thrust -- グレートソード_踏み込み突き","211900440":"Great Sword _ Saigi (combo) -- グレートソード_薙ぎ払い(コンボ)","211900450":"The Great Sword: the second shot -- グレートソード_二連振り下ろし:一撃目","211900451":"Great Sword _ Double swing: Second hammer -- グレートソード_二連振り下ろし:二撃目","212000100":"c1200_ Dwarf Man (Hatchet/ice-AX) _ Kesa Cut -- c1200_矮小人(ハチェット/ピッケル)_袈裟切り","212000110":"c1200_ Dwarf Man (Hatchet/ice-Ax) _ Reverse Kesa cut -- c1200_矮小人(ハチェット/ピッケル)_逆袈裟切り","212000120":"c1200_ Dwarf (Hatchet/ice-AX) _ Kannagi -- c1200_矮小人(ハチェット/ピッケル)_横なぎ","212000130":"c1200_ Dwarf (Hatchet/ice-AX) _ Swing Down -- c1200_矮小人(ハチェット/ピッケル)_振り下ろし","212000140":"c1200_ Dwarf Man (Hatchet/ice-AX) _ Kari attack -- c1200_矮小人(ハチェット/ピッケル)_飛び掛かり攻撃","212000150":"c1200_ Dwarf Man (Hatchet/ice-Ax) _ Dash Kari attack -- c1200_矮小人(ハチェット/ピッケル)_ダッシュ飛び掛かり攻撃","212000160":"c1200_ Dwarf (Hatchet/ice-AX) _ Dash wielding attack -- c1200_矮小人(ハチェット/ピッケル)_ダッシュ振り回し攻撃","212000170":"c1200_ Dwarf Man (Hatchet/ice-Ax) _ Dash Furi attack -- c1200_矮小人(ハチェット/ピッケル)_ダッシュ振り逃げ攻撃","212000180":"c1200_ Dwarf (Hatchet/ice-AX) _ Wrap Attack (right) -- c1200_矮小人(ハチェット/ピッケル)_回り込み攻撃(右)","212000190":"c1200_ Dwarf Man (Hatchet/ice-Ax) _ Blowgun (1) -- c1200_矮小人(ハチェット/ピッケル)_吹き矢(1)","212000200":"c1200_ Dwarf Man (Hatchet/ice-Ax) _ Blowgun (2) -- c1200_矮小人(ハチェット/ピッケル)_吹き矢(2)","212000210":"c1200_ Dwarf (Hatchet/ice-AX) _ Companions -- c1200_矮小人(ハチェット/ピッケル)_仲間呼び","212000220":"c1200_ Dwarf Person (hatchet/ice-AX) _ Throwing transition -- c1200_矮小人(ハチェット/ピッケル)_投げ遷移","212000240":"c1200_ Dwarf (Hatchet/ice-AX) _ A flame pot thrower -- c1200_矮小人(ハチェット/ピッケル)_火炎壺投げ","212000300":"c1200_ Dwarf (Large sword) _ Lateral Whack 1 -- c1200_矮小人(大剣)_横薙ぎ1","212000310":"c1200_ Dwarf Man (large sword) _ Lateral Whack 2 -- c1200_矮小人(大剣)_横薙ぎ2","212000320":"c1200_ Dwarf (Large sword) _ Swinging -- c1200_矮小人(大剣)_振り上げ","212000330":"c1200_ Dwarf (Large sword) _ Swing Down -- c1200_矮小人(大剣)_振り下ろし","212000340":"c1200_ Dwarf (Large sword) _ Extruded attack -- c1200_矮小人(大剣)_押し出し攻撃","212000350":"c1200_ Dwarf (Large sword) _ Wrap Attack (right) -- c1200_矮小人(大剣)_回り込み攻撃(右)","212000360":"c1200_ Dwarf (Large sword) _ Fall Attack -- c1200_矮小人(大剣)_落下攻撃","212000370":"c1200_ Dwarf (Large sword) _ companions called -- c1200_矮小人(大剣)_仲間呼び","212000700":"c1200_ Dwarf Man (Hatchet/ice ax) _ Tossed -- c1200_矮小人(ハチェット/ピッケル)_投げ","212000999":"c1200_ Dwarf (Large sword) _ Companion call test -- c1200_矮小人(大剣)_仲間呼びテスト","212100100":"c1210_ Blue (Spear shield) _ Thrust -- c1210_ブルー(槍盾)_突き","212100110":"c1210_ Blue (Spear shield) _ Continuous piercing -- c1210_ブルー(槍盾)_連続突き刺し","212100120":"c1210_ Blue (Spear shield) _ Continuous thrusting 2 -- c1210_ブルー(槍盾)_連続突き刺し2","212100130":"c1210_ Blue (Spear shield) _ Shield beating -- c1210_ブルー(槍盾)_盾殴り","212100140":"c1210_ Blue (Spear shield) _ Diagonal thrust -- c1210_ブルー(槍盾)_斜め突き上げ","212100150":"c1210_ Blue (Spear shield) _ Tamenuri -- c1210_ブルー(槍盾)_溜突き","212100160":"c1210_ Blue (Spear shield) _ Rush attack -- c1210_ブルー(槍盾)_ラッシュ攻撃","212100170":"c1210_ Blue (Spear shield) _ Guard Butt -- c1210_ブルー(槍盾)_ガード突き","212100200":"c1210_ Blue (Sword) _ Swing Down -- c1210_ブルー(剣)_振り下ろし","212100210":"c1210_ Blue (Sword) _ Thrusting -- c1210_ブルー(剣)_突き","212100220":"c1210_ Blue (Sword) _ Scratching -- c1210_ブルー(剣)_引っ掻き","212100230":"c1210_ Blue (Sword) _ Depression Right → left Shiri -- c1210_ブルー(剣)_踏み込み右→左袈裟斬り","212100240":"c1210_ Blue (Sword) _ Depression 2-Saigi -- c1210_ブルー(剣)_踏み込み2連薙ぎ払い","212100250":"c1210_ Blue (Sword) _ Roundhouse Shiri -- c1210_ブルー(剣)_大振り袈裟斬り","212100260":"c1210_ Blue (Sword) _ Kicks -- c1210_ブルー(剣)_蹴り","212100270":"c1210_ Blue (Sword) _ a poop throw -- c1210_ブルー(剣)_うんこ投げ","212100300":"c1210_ Blue (deep) _ Stepping Thrust -- c1210_ブルー(ディープ)_踏み込み突き刺し","212100310":"c1210_ Blue (deep) _ Infuser Thrust -- c1210_ブルー(ディープ)_溜め突き刺し","212100320":"c1210_ Blue (deep) _ Move forward and cut down -- c1210_ブルー(ディープ)_前進しながら斬り下ろし","212100330":"c1210_ Blue (deep) _ Left → Right roundhouse Saigi -- c1210_ブルー(ディープ)_左→右大振り薙ぎ払い","212100340":"c1210_ Blue (deep) _ Poison fog chanting -- c1210_ブルー(ディープ)_毒霧詠唱","212100350":"c1210_ Blue (deep) _ Widespread poison fog chanting (may be lost) -- c1210_ブルー(ディープ)_広域猛毒霧詠唱(なくなるかも)","212100360":"c1210_ Blue (Deep) _ Estrus-inducing dance -- c1210_ブルー(ディープ)_発情誘発踊り","212100370":"c1210_ Blue (Deep) _ Magic 1 -- c1210_ブルー(ディープ)_魔法1","212100380":"c1210_ Blue (Deep) _ Magic 2 -- c1210_ブルー(ディープ)_魔法2","212100390":"c1210_ Blue (deep) _ Ambient Recovery Magic -- c1210_ブルー(ディープ)_周囲回復魔法","212100400":"c1210_ Blue (Estrus) _ Right scratching -- c1210_ブルー(発情)_右引っ掻き","212100410":"c1210_ Blue (Estrus) _ Left scratching -- c1210_ブルー(発情)_左引っ掻き","212100420":"c1210_ Blue (Estrus) _ with a hug -- c1210_ブルー(発情)_抱きつき","212100430":"c1210_ Blue (Estrus) _ Hug (from Waiting) -- c1210_ブルー(発情)_抱きつき(待機から)","212100440":"c1210_ Blue (Estrus) _ High jump -- c1210_ブルー(発情)_ハイジャンプ","212100490":"c1210_ Blue (Estrus) _ Throwing damage -- c1210_ブルー(発情)_投げ時ダメージ","212100500":"c1210_ Blue (dog) _ Right scratching -- c1210_ブルー(犬)_右引っ掻き","212100510":"c1210_ Blue (dog) _ Left scratching -- c1210_ブルー(犬)_左引っ掻き","212100520":"c1210_ Blue (dog) -- c1210_ブルー(犬)_叩きおろし","212100530":"c1210_ Blue (dog) _ Lunge -- c1210_ブルー(犬)_突進","212100540":"c1210_ Blue (dog) _ Triangular flying scratching -- c1210_ブルー(犬)_三角飛び引っかき","212100700":"c1210_ Blue (Deep) _ Name set later -- c1210_ブルー(ディープ)_名称は後で設定","212100710":"c1210_ Blue (Deep) _ Name set later -- c1210_ブルー(ディープ)_名称は後で設定","212100720":"c1210_ Blue (Deep) _ Name set later -- c1210_ブルー(ディープ)_名称は後で設定","212100730":"c1210_ Blue (Deep) _ Name set later -- c1210_ブルー(ディープ)_名称は後で設定","212100740":"c1210_ Blue (Deep) _ Name set later -- c1210_ブルー(ディープ)_名称は後で設定","212100750":"c1210_ Blue (Deep) _ Name set later -- c1210_ブルー(ディープ)_名称は後で設定","212100760":"c1210_ Blue (Deep) _ Name set later -- c1210_ブルー(ディープ)_名称は後で設定","212100770":"c1210_ Blue (Deep) _ Name set later -- c1210_ブルー(ディープ)_名称は後で設定","212100780":"c1210_ Blue (Deep) _ Name set later -- c1210_ブルー(ディープ)_名称は後で設定","212100999":"c1210_ Blue: Throwing Test attack -- c1210_ブルー:投げテスト攻撃","212200010":"Head Butt -- 頭突き","212200020":"Spitting Grub -- ウジ吐き","212200030":"Vomit (warning) -- ウジ吐き(本体出る予兆)","212200100":"Maggots: Right Whack -- うじバラ:右手薙ぎ","212200110":"Maggots: Left hand whack -- うじバラ:左手薙ぎ","212200120":"Worm Roses: Throwing start technique (normal) -- うじバラ:投げ始動技(通常時)","212200121":"Worm Roses: Throwing start technique (pressure damage) -- うじバラ:投げ始動技(圧迫ダメージ)","212200130":"Hit EFEC Maggots Test -- うじヒットエフェクっとテスト","212300010":"C1230_ Missionary: Left hand: Sword down -- c1230_宣教師:左手:斬り下ろし","212300020":"C1230_ Missionary: Left/Right Saigi -- c1230_宣教師:左手:左→右薙ぎ払い","212300030":"C1230_ Missionary: Left hand: Right → Saigi -- c1230_宣教師:左手:右→左薙ぎ払い","212300040":"C1230_ Missionary: Left/Right Saigi -- c1230_宣教師:左手:左→右薙ぎ払い","212300050":"C1230_ Missionary: Right hand: Bible Helmet Split -- c1230_宣教師:右手:聖書兜割り","212300060":"C1230_ Missionary: Left/Right swinging Saigi -- c1230_宣教師:左手:左→右振り回し薙ぎ払い","212300070":"C1230_ Missionary: Throwing Start technique -- c1230_宣教師:投げ始動技","212300071":"C1230_ Missionary: Throwing Continuous damage -- c1230_宣教師:投げ継続ダメージ","212300072":"C1230_ Missionary: throwing large continuation damage -- c1230_宣教師:投げ大継続ダメージ","212300080":"C1230_ Missionary: Book Slap -- c1230_宣教師:本ビンタ","212300700":"Long Distance Magic: A spear of diffuse flames -- 遠距離魔法:拡散する炎の槍","212300710":"Medium Range Magic: flames surrounding -- 中距離魔法:囲む炎","212300720":"Medium/short distance magic: Fireball -- 中/近距離魔法:火の玉","212300730":"Short distance Magic: Self-centered time bomb search bullet -- 近距離魔法:自己中心時限爆弾検索弾","212300731":"Short distance Magic: Self-centered time bomb damage -- 近距離魔法:自己中心時限爆弾ダメージ","212300740":"c1230_ Missionary: Projection Magic -- c1230_宣教師:投射魔法","212300800":"Magic Trigger Range explosion -- 魔法発動時範囲爆発","212300900":"For the city sniper: Gatling -- 街スナイパー用:ガトリング","212300910":"For the city sniper: a spear of fire that explodes -- 街スナイパー用:爆発する炎の槍","212300920":"Mark (Harmless) -- 印(無害)","212400100":"c1240_ poor Dead (machete): Kesa first Stage -- c1240_貧民亡者(ナタ):袈裟1段目","212400110":"c1240_ poor Dead (machete): Kesa second Stage -- c1240_貧民亡者(ナタ):袈裟2段目","212400120":"c1240_ poor Dead (machete): payment -- c1240_貧民亡者(ナタ):払い","212400130":"c1240_ poor Dead (machete): Kesa -- c1240_貧民亡者(ナタ):助走袈裟","212400140":"c1240_ poor Dead (machete): Triple Tap -- c1240_貧民亡者(ナタ):3連叩きおろし","212400150":"c1240_ poor Dead (machete): both gestures 1 -- c1240_貧民亡者(ナタ):両手振り1","212400151":"c1240_ poor Dead (machete): both gestures 2 -- c1240_貧民亡者(ナタ):両手振り2","212400300":"C1240_ Poor Dead (dual dagger): Right-hand abdomen Saigi -- c1240_貧民亡者(デュアルダガー):右手腹部薙ぎ払い","212400310":"C1240_ Poor Dead (dual dagger): Left hand thrusting a -- c1240_貧民亡者(デュアルダガー):左手突きおろしA","212400320":"C1240_ Poor Dead (dual dagger): Left hand grated b -- c1240_貧民亡者(デュアルダガー):左手突きおろしB","212400330":"C1240_ Poor Dead (dual dagger): Right hand slash -- c1240_貧民亡者(デュアルダガー):右手斬りおろし","212400340":"C1240_ Poor Dead (dual dagger): Both hands simultaneous attack (right) -- c1240_貧民亡者(デュアルダガー):両手同時攻撃(右)","212400341":"C1240_ Poor Dead (dual dagger): Both hands simultaneous attack (right) -- c1240_貧民亡者(デュアルダガー):両手同時攻撃(右)","212400350":"C1240_ Poor Dead (dual dagger): Rush (1st Stage right) -- c1240_貧民亡者(デュアルダガー):ラッシュ(1段目右)","212400351":"C1240_ Poor Dead (dual dagger): Rush (second stage left) -- c1240_貧民亡者(デュアルダガー):ラッシュ(2段目左)","212400352":"C1240_ Poor Dead (dual dagger): Rush (third stage right) -- c1240_貧民亡者(デュアルダガー):ラッシュ(3段目右)","212400353":"C1240_ Poor Dead (dual dagger): Rush (fourth stage left) -- c1240_貧民亡者(デュアルダガー):ラッシュ(4段目左)","212400354":"C1240_ Poor Dead (dual dagger): Rush (5th stage right) -- c1240_貧民亡者(デュアルダガー):ラッシュ(5段目右)","212400355":"C1240_ Poor Dead (dual dagger): Rush (sixth stage left) -- c1240_貧民亡者(デュアルダガー):ラッシュ(6段目左)","212400360":"C1240_ Poor Dead (dual dagger): Left hand thrust (throwing transition) -- c1240_貧民亡者(デュアルダガー):左手突き刺し(投げ遷移)","212400361":"C1240_ Poor Dead (dual dagger): Left hand thrust (damage) -- c1240_貧民亡者(デュアルダガー):左手突き刺し(ダメージ)","212400370":"C1240_ Poor Dead (dual dagger): Jump Attack (left) -- c1240_貧民亡者(デュアルダガー):ジャンプ攻撃(左)","212400371":"C1240_ Poor Dead (dual dagger): Jump Attack (right) -- c1240_貧民亡者(デュアルダガー):ジャンプ攻撃(右)","212400500":"c1240_ Poor Dead (Hammer): Knocked back against 1 -- c1240_貧民亡者(ハンマー):叩き付け1","212400510":"c1240_ Poor Dead (Hammer): Knocked back against 2 -- c1240_貧民亡者(ハンマー):叩き付け2","212400520":"c1240_ Poor Dead (Hammer): Kesa slapping -- c1240_貧民亡者(ハンマー):袈裟叩き","212400530":"c1240_ Poor Dead (Hammer): Infuser knocked back against -- c1240_貧民亡者(ハンマー):溜め叩き付け","212400540":"c1240_ Poor Dead (hammer): Sticking out -- c1240_貧民亡者(ハンマー):突き出し","212400600":"C1240_ Poor Dead (Lance): both hand thrusts 1 -- c1240_貧民亡者(ランス):両手突き1","212400610":"C1240_ Poor Dead (Lance): both hand thrusts 2 -- c1240_貧民亡者(ランス):両手突き2","212400620":"C1240_ Poor Dead (Lance): both hand thrusts 3 -- c1240_貧民亡者(ランス):両手突き3","212400630":"C1240_ Poor Dead (Lance): Infuser Butt -- c1240_貧民亡者(ランス):溜め突き","212400640":"C1240_ Poor Dead (Lance): Lunge whack -- c1240_貧民亡者(ランス):突進薙ぎ","212400650":"C1240_ Poor Dead (Lance): slams -- c1240_貧民亡者(ランス):叩きつけ","212400660":"C1240_ Poor Dead (Lance): Added Saigi -- c1240_貧民亡者(ランス):追加薙ぎ払い","212400700":"C1240_ the poor dead a3005_ -- c1240_貧民亡者a3005_火炎壺","212400710":"c1240_ poor dead a3008_ oil urn -- c1240_貧民亡者a3008_油壷","212500100":"C1250_ Poor Dead Elite _ right Pay -- c1250_貧民亡者エリート_右払い","212500110":"C1250_ Poor dead Elite _ left pay -- c1250_貧民亡者エリート_左払い","212500120":"c1250_ Poor Dead Elite _1-1 hands Shiri (right) -- c1250_貧民亡者エリート_1-1両手袈裟斬り(右)","212500121":"c1250_ Poor Dead Elite _1-1 hands Shiri (left) -- c1250_貧民亡者エリート_1-1両手袈裟斬り(左)","212500130":"c1250_ Poor Dead Elite _1-2 hands Saigi (right) -- c1250_貧民亡者エリート_1-2両手薙ぎ払い(右)","212500131":"c1250_ Poor Dead Elite _1-2 hands Saigi (left) -- c1250_貧民亡者エリート_1-2両手薙ぎ払い(左)","212500140":"c1250_ Poor Dead Elite _1-3 hands Saigi (right) -- c1250_貧民亡者エリート_1-3両手薙ぎ払い(右)","212500141":"c1250_ Poor Dead Elite _1-3 hands Saigi (left) -- c1250_貧民亡者エリート_1-3両手薙ぎ払い(左)","212500150":"c1250_ Poor Dead Elite _2-1 rounded up -- c1250_貧民亡者エリート_2-1切り上げ","212500160":"c1250_ Poor Dead Elite _2-2 Shiri -- c1250_貧民亡者エリート_2-2袈裟斬り","212500170":"c1250_ Poor Dead Elite _2-3 Shiri -- c1250_貧民亡者エリート_2-3袈裟斬り","212500180":"c1250_ Poor Dead Elite _x (right) -- c1250_貧民亡者エリート_X斬り(右)","212500181":"c1250_ Poor dead Elite _x (left) -- c1250_貧民亡者エリート_X斬り(左)","212500190":"c1250_ Poor Dead Elite _x (lunge) (right) -- c1250_貧民亡者エリート_X斬り(突進)(右)","212500191":"c1250_ Poor Dead Elite _x (lunge) (left) -- c1250_貧民亡者エリート_X斬り(突進)(左)","212500200":"C1250_ Poor dead Elite _ hands down (right) -- c1250_貧民亡者エリート_両手斬り下ろし(右)","212500201":"C1250_ Poor dead Elite _ hands down (left) -- c1250_貧民亡者エリート_両手斬り下ろし(左)","212500210":"C1250_ Poor dead Elite _ counter -- c1250_貧民亡者エリート_カウンター","212500220":"C1250_ Poor Dead Elite _ counter (perseverance) -- c1250_貧民亡者エリート_カウンター(踏ん張り)","212500230":"C1250_ Poor Dead Elite _ both hand thrusts (right) -- c1250_貧民亡者エリート_両手突き(右)","212500231":"C1250_ Poor Dead Elite _ both hand thrusts (left) -- c1250_貧民亡者エリート_両手突き(左)","212500240":"C1250_ Poor dead Elite _ left step attack -- c1250_貧民亡者エリート_左ステップ攻撃","212500250":"C1250_ Poor Dead Elite _ right-step attack -- c1250_貧民亡者エリート_右ステップ攻撃","212500260":"C1250_ Poor Dead Elite _ Ranbu 1-1: Right hand -- c1250_貧民亡者エリート_乱舞1-1:右手","212500261":"C1250_ Poor Dead Elite _ Ranbu 1-1: Left hand -- c1250_貧民亡者エリート_乱舞1-1:左手","212500270":"C1250_ Poor Dead Elite _ Ranbu 1-2: Right hand -- c1250_貧民亡者エリート_乱舞1-2:右手","212500271":"C1250_ Poor Dead Elite _ Ranbu 1-2: Left hand -- c1250_貧民亡者エリート_乱舞1-2:左手","212500280":"C1250_ Poor Dead Elite _ Ranbu 1-3: Right hand -- c1250_貧民亡者エリート_乱舞1-3:右手","212500281":"C1250_ Poor Dead Elite _ Ranbu 1-3: Left hand -- c1250_貧民亡者エリート_乱舞1-3:左手","212500700":"C1250_ Poor Dead Elite _ fire-blowing -- c1250_貧民亡者エリート_火吹き","212600100":"C1260_ Poor Dead _ Servant (saws) _1-1 both hand-out 1 -- c1260_貧民亡者_下男(ノコギリ)_1-1両手振り抜き1","212600110":"C1260_ Poor Dead _ Servant (saws) _1-2 both hand-out 2 -- c1260_貧民亡者_下男(ノコギリ)_1-2両手振り抜き2","212600120":"C1260_ Poor Dead _ Servant (Saws) _ Both hand grated -- c1260_貧民亡者_下男(ノコギリ)_両手振りおろし","212600130":"C1260_ Poor Dead _ Servant (SAW) _2-1 hand-grated -- c1260_貧民亡者_下男(ノコギリ)_2-1片手振りおろし","212600140":"C1260_ Poor Dead _ Servant (saws) _2-2 Bun -- c1260_貧民亡者_下男(ノコギリ)_2-2ぶん回し","212600150":"C1260_ Poor Dead _ Servant (Saws) _ Behind attack -- c1260_貧民亡者_下男(ノコギリ)_背後攻撃","212600160":"C1260_ Poor Dead _ Servant (Saws) _ _1 in rush attack -- c1260_貧民亡者_下男(ノコギリ)_ラッシュ攻撃_1段目","212600161":"C1260_ Poor Dead _ Servant (Saws) _ Rush Attack _2 -- c1260_貧民亡者_下男(ノコギリ)_ラッシュ攻撃_2段目","212600162":"C1260_ Poor Dead _ Servant (Saws) _ _3 in rush attack -- c1260_貧民亡者_下男(ノコギリ)_ラッシュ攻撃_3段目","212600163":"C1260_ Poor Dead _ Servant (Saws) _ Lash Attack _ slapping first stage -- c1260_貧民亡者_下男(ノコギリ)_ラッシュ攻撃_叩き1段目","212600164":"C1260_ Poor Dead _ Servant (Saws) _ Lash Attack _ slapping second stage -- c1260_貧民亡者_下男(ノコギリ)_ラッシュ攻撃_叩き2段目","212600165":"C1260_ Poor Dead _ Servant (Saws) _ Lash Attack _ slapping third stage -- c1260_貧民亡者_下男(ノコギリ)_ラッシュ攻撃_叩き3段目","212600180":"C1260_ Poor Dead _ Servant (Saws) _ Poised lunge (beating) -- c1260_貧民亡者_下男(ノコギリ)_構え突進(殴り)","212600181":"C1260_ Poor Dead _ Servant (Saws) _ poised lunge (pushing) -- c1260_貧民亡者_下男(ノコギリ)_構え突進(押し)","212600190":"C1260_ Poor Dead _ Servant (Saws) _ Pay from right (one hand): wait -- c1260_貧民亡者_下男(ノコギリ)_右から払い(片手):待機","212600191":"C1260_ Poor Dead _ Servant (Saws) _ Pay from left (one hand): wait -- c1260_貧民亡者_下男(ノコギリ)_左から払い(片手):待機","212600192":"C1260_ Poor Dead _ Servant (Saws) _ Pay from right (one hand): left-handed posture -- c1260_貧民亡者_下男(ノコギリ)_右から払い(片手):左払い姿勢","212600193":"C1260_ Poor Dead _ Servant (Saws) _ Pay from left (one hand): right-handed posture -- c1260_貧民亡者_下男(ノコギリ)_左から払い(片手):右払い姿勢","212600194":"C1260_ Poor Dead _ Servant (saws) _ Continuous Swing down: left-hand Posture _1 -- c1260_貧民亡者_下男(ノコギリ)_連続振り下ろし:左払い姿勢_1段目","212600195":"C1260_ Poor Dead _ Servant (saws) _ Continuous Swing down: left-hand position _2 -- c1260_貧民亡者_下男(ノコギリ)_連続振り下ろし:左払い姿勢_2段目","212600196":"C1260_ Poor Dead _ Servant (saws) _ Continuous Swing down: left-hand Posture _3 -- c1260_貧民亡者_下男(ノコギリ)_連続振り下ろし:左払い姿勢_3段目","212600300":"C1260_ Poor Dead _ Servant (mortar) _ Knocked back against -- c1260_貧民亡者_下男(臼)_叩き付け","212600310":"C1260_ Poor Dead _ Servant (mortar) _ Knocked back against 2 -- c1260_貧民亡者_下男(臼)_叩き付け2","212600311":"C1260_ Poor Dead _ Servant (mortar) _ Kari (bearers posture) -- c1260_貧民亡者_下男(臼)_飛び掛かり(担ぎ姿勢)","212600312":"C1260_ Poor Dead _ Servant (mortar) _ left knocked back against -- c1260_貧民亡者_下男(臼)_左叩き付け","212600313":"C1260_ Poor Dead _ Servant (mortar) _ Right knocked back against -- c1260_貧民亡者_下男(臼)_右叩き付け","212600320":"C1260_ Poor Dead _ Servant (mortar) _ lifted knocked back against -- c1260_貧民亡者_下男(臼)_持ち上げ叩き付け","212600700":"C1260_ Poor Dead _ Servant (mortar) _ Mortar throw -- c1260_貧民亡者_下男(臼)_臼投げ","212600701":"C1260_ Poor Dead _ Servant (mortar) _ a mortar throw (bearers) -- c1260_貧民亡者_下男(臼)_臼投げ(担ぎ姿勢)","212800100":"C1280_ Shin Ojo Knight (Straight Sword + shield): Right Kesa cut -- c1280_新王城騎士(直剣+盾):右袈裟切り","212800101":"C1280_ Shin Ojo Knight (Straight Sword + shield): Left Whack -- c1280_新王城騎士(直剣+盾):左薙ぎ","212800102":"C1280_ Shin Ojo Knight (Straight Sword + shield): depression thrust -- c1280_新王城騎士(直剣+盾):踏み込み突き","212800110":"C1280_ Shin Ojo Knight (Straight Sword + shield): Left Swing -- c1280_新王城騎士(直剣+盾):左横振り","212800111":"C1280_ Shin Ojo Knight (Straight Sword + shield): Right -- c1280_新王城騎士(直剣+盾):右横振り","212800120":"C1280_ Shin Ojo Knight (Straight Sword + shield): Rush Butt -- c1280_新王城騎士(直剣+盾):突進突き","212800130":"C1280_ Shin Ojo Knight (Straight Sword + shield): Shield Bash -- c1280_新王城騎士(直剣+盾):盾バッシュ","212800140":"C1280_ Shin Ojo Knight (Straight Sword + shield): thrust -- c1280_新王城騎士(直剣+盾):構え突き","212800150":"C1280_ Shin Ojo Knight (Straight Sword + shield): Roll up -- c1280_新王城騎士(直剣+盾):構え巻き上げ","212800160":"C1280_ Shin Ojo Knight (Straight Sword + shield): counterattack from endure -- c1280_新王城騎士(直剣+盾):耐えるからの反撃","212800170":"c1280_ New Ojo Knight (Straight Sword + shield): Left side attack -- c1280_新王城騎士(直剣+盾):左側面攻撃","212800180":"C1280_ Shin Ojo Knight (Straight Sword + shield): Right flank attack -- c1280_新王城騎士(直剣+盾):右側面攻撃","212800300":"C1280_ Shin Ojo Knight (Spear + shield): Guard Butt 1 -- c1280_新王城騎士(槍+盾):ガード突き1","212800301":"C1280_ Shin Ojo Knight (Spear + shield): Guard Butt 2 -- c1280_新王城騎士(槍+盾):ガード突き2","212800310":"C1280_ Shin Ojo Knight (Spear + shield): Rush Butt (last) -- c1280_新王城騎士(槍+盾):突進突き(最後)","212800311":"C1280_ Shin Ojo Knight (Spear + shield): Rush Butt (in charge) -- c1280_新王城騎士(槍+盾):突進突き(突進中)","212800320":"c1280_ New Ojo Knight (Spear + shield): Shield Bash -- c1280_新王城騎士(槍+盾):盾バッシュ","212800330":"c1280_ New Ojo Knight (Spear + shield): Poised plunge thrust -- c1280_新王城騎士(槍+盾):構え飛び込み突き","212800340":"c1280_ New Ojo Knight (Spear + shield): stance short-range thrust -- c1280_新王城騎士(槍+盾):構え近距離突き","212800350":"C1280_ Shin Ojo Knight (Spear + shield): Withstand counterattack -- c1280_新王城騎士(槍+盾):耐える反撃","212800360":"C1280_ Shin Ojo Knight (Spear + shield): Infuser Butt -- c1280_新王城騎士(槍+盾):溜め突き","212800370":"c1280_ New Ojo Knight (Spear + shield): Whack attack -- c1280_新王城騎士(槍+盾):薙ぎ攻撃","212800500":"C1280_ Shin Ojo Knight (large sword): slams -- c1280_新王城騎士(大剣):叩きつけ","212800510":"C1280_ Shin Ojo Knight (large sword): Right Saigi -- c1280_新王城騎士(大剣):右薙ぎ払い","212800520":"C1280_ Shin Ojo Knight (large sword): Left Saigi -- c1280_新王城騎士(大剣):左薙ぎ払い","212800530":"C1280_ Shin Ojo Knight (large sword): Rush Saigi -- c1280_新王城騎士(大剣):突進薙ぎ払い","212800540":"C1280_ Shin Ojo Knight (large sword): Infuser Butt -- c1280_新王城騎士(大剣):溜め突き","212800550":"c1280_ New Ojo Knight (large sword): Behind the attack -- c1280_新王城騎士(大剣):背後攻撃","212800560":"C1280_ Shin Ojo Knight (Great Sword): depression -- c1280_新王城騎士(大剣):踏み込み","212800570":"C1280_ Shin-Ojo Knight (large sword): stepping Round -- c1280_新王城騎士(大剣):踏み込み切り上げ","212800580":"C1280_ Shin Ojo Knight (large sword): Swing Down (reservoir) -- c1280_新王城騎士(大剣):振り下ろし(溜め)","212800590":"C1280_ Shin Ojo Knight (large sword): Whack Kesa (infuser): Wait -- c1280_新王城騎士(大剣):薙ぎ袈裟(溜め):待機","212800600":"C1280_ Shin Ojo Knight (large sword): thrusting -- c1280_新王城騎士(大剣):突き","212800610":"C1280_ Shin Ojo Knight (large sword): Reverse Whack: stepping Posture -- c1280_新王城騎士(大剣):逆薙ぎ:踏み込み姿勢","212800620":"C1280_ Shin Ojo Knight (large sword): pattern Extrusion -- c1280_新王城騎士(大剣):柄押し出し","212800630":"C1280_ Shin Ojo Knight (large sword): Whack Swinging: enduring posture -- c1280_新王城騎士(大剣):薙ぎ振り上げ:耐える姿勢","212800640":"C1280_ Shin Ojo Knight (large Sword): Kesa (left side): Wait -- c1280_新王城騎士(大剣):袈裟切り(左側面):待機","212800650":"C1280_ Shin Ojo Knight (large sword): Reverse Kesa (right side): Wait -- c1280_新王城騎士(大剣):逆袈裟(右側面):待機","212800700":"C1280_ Shin Ojo Knight (bow): shooting -- c1280_新王城騎士(弓):射撃","212800701":"C1280_ Shin Ojo Knight (bow): Shooting Combo -- c1280_新王城騎士(弓):射撃コンボ","212800900":"C1280_ Shin Ojo Knight (sword): Guard -- c1280_新王城騎士(剣):ガード","212800910":"C1280_ Shin Ojo Knight (Spear): Guard -- c1280_新王城騎士(槍):ガード","212800920":"C1280_ Shin Ojo Knight (large sword): Guard -- c1280_新王城騎士(大剣):ガード","212900100":"C1290_ Ojo Deb (Long axe): Swing Down (Blade) -- c1290_王城デブ(長斧):思い切り振りおろし(刃)","212900110":"C1290_ Ojo Deb (Long Axe): Combo ①-1 Angled Swing (blade) -- c1290_王城デブ(長斧):コンボ①~1 斜めに振り上げ(刃)","212900111":"C1290_ Ojo Deb (Long Axe): Combo ①-2 (Blade) -- c1290_王城デブ(長斧):コンボ①~2 振り下ろし(刃)","212900112":"C1290_ Ojo Deb (Long Axe): Combo ①-3 (Blade) -- c1290_王城デブ(長斧):コンボ①~3 振り下ろし(刃)","212900120":"C1290_ Ojo Deb (Long Axe): Compact and grated (blade) -- c1290_王城デブ(長斧):コンパクトに振りおろし(刃)","212900130":"C1290_ Ojo Deb (Long Axe): Combo ②-1 Saigi (Blade) -- c1290_王城デブ(長斧):コンボ②~1 薙ぎ払い (刃)","212900131":"C1290_ Ojo Deb (Long Axe): Combo ②-2 Saigi (Blade) -- c1290_王城デブ(長斧):コンボ②~2 薙ぎ払い (刃)","212900132":"C1290_ Ojo Deb (Long Axe): Combo ②-2, grated from the reservoir (Blade) -- c1290_王城デブ(長斧):コンボ②~2 ちょい溜めからの振りおろし(刃)","212900140":"C1290_ Ojo Deb (Long Axe): Running Down (Blade) -- c1290_王城デブ(長斧):走りながらの振りおろし(刃)","212900150":"C1290_ Ojo Deb (Long Axe): Force -- c1290_王城デブ(長斧):フォース","212900160":"C1290_ Ojo Deb (Long Axe): Rotation attack Combo First stage: Rotating part (Blade) -- c1290_王城デブ(長斧):回転攻撃コンボ 1段目:回転部(刃)","212900161":"C1290_ Ojo Deb (Long Axe): Rotation attack Combo first stage: Pay part (Blade) -- c1290_王城デブ(長斧):回転攻撃コンボ 1段目:払い部(刃)","212900170":"C1290_ Ojo Deb (Long Axe): Rotation attack Combo Second stage: Rotating part (Blade) -- c1290_王城デブ(長斧):回転攻撃コンボ 2段目:回転部(刃)","212900171":"C1290_ Ojo Deb (Long Axe): Rotating attack Combo Second stage: Pay part (Blade) -- c1290_王城デブ(長斧):回転攻撃コンボ 2段目:払い部(刃)","212900180":"C1290_ Ojo Deb (Long Axe): Rotation attack Combo Third stage: rotating part (Blade) -- c1290_王城デブ(長斧):回転攻撃コンボ 3段目:回転部(刃)","212900181":"C1290_ Ojo Deb (Long Axe): Rotation attack combo third stage: Pay part (Blade) -- c1290_王城デブ(長斧):回転攻撃コンボ 3段目:払い部(刃)","212900190":"C1290_ Ojo (Long Axe): Miracle: The light of the pillar dancing -- c1290_王城デブ(長斧):奇蹟:光の柱乱舞 予兆","212900191":"C1290_ Ojo Deb (Long Axe): Miracles: Columns of light, dance pillar of Light -- c1290_王城デブ(長斧):奇蹟:光の柱乱舞 光の柱","212900192":"C1290_ Ojo Deb (Long Axe): Miracles: The Pillar of Light danced -- c1290_王城デブ(長斧):奇蹟:光の柱乱舞 着弾","212900193":"C1290_ Ojo (Long Axe): Miracle: A shock wave in the motion of a pillar of light -- c1290_王城デブ(長斧):奇蹟:光の柱乱舞 発動時の衝撃波","212900194":"C1290_ Ojo (Long Axe): Miracle: The column of Light dancing signs (short distance) -- c1290_王城デブ(長斧):奇蹟:光の柱乱舞 予兆(近距離)","212900195":"C1290_ Ojo (Long Axe): Miracles: A sign of the light of a pillar (target directly) -- c1290_王城デブ(長斧):奇蹟:光の柱乱舞 予兆(ターゲット真上)","212900200":"C1290_ Ojo Deb (Long axe): Swinging Down (stick) -- c1290_王城デブ(長斧):思い切り振りおろし(棒)","212900210":"C1290_ Ojo Deb (Long Axe): Combo ①-1 Angled Swing (rod) -- c1290_王城デブ(長斧):コンボ①~1 斜めに振り上げ(棒)","212900211":"C1290_ Ojo Deb (Long Axe): Combo ①-2 (Rod) -- c1290_王城デブ(長斧):コンボ①~2 振り下ろし(棒)","212900212":"C1290_ Ojo Deb (Long Axe): Combo ①-3 (Rod) -- c1290_王城デブ(長斧):コンボ①~3 振り下ろし(棒)","212900220":"C1290_ Ojo Deb (Long Axe): compact and grated (stick) -- c1290_王城デブ(長斧):コンパクトに振りおろし(棒)","212900230":"C1290_ Ojo Deb (Long Axe): Combo ②-1 Saigi (stick) -- c1290_王城デブ(長斧):コンボ②~1 薙ぎ払い (棒)","212900231":"C1290_ Ojo Deb (Long Axe): Combo ②-2 Saigi (stick) -- c1290_王城デブ(長斧):コンボ②~2 薙ぎ払い (棒)","212900232":"C1290_ Ojo Deb (Long Axe): Combo ②-2, grated from the reservoir (stick) -- c1290_王城デブ(長斧):コンボ②~2 ちょい溜めからの振りおろし(棒)","212900240":"C1290_ Ojo Deb (Long Axe): Running Down (stick) -- c1290_王城デブ(長斧):走りながらの振りおろし(棒)","212900260":"C1290_ Ojo Deb (Long Axe): Rotation attack Combo First stage: Rotating section (rod) -- c1290_王城デブ(長斧):回転攻撃コンボ 1段目:回転部(棒)","212900261":"C1290_ Ojo Deb (Long Axe): Rotation attack Combo first stage: Pay part (rod) -- c1290_王城デブ(長斧):回転攻撃コンボ 1段目:払い部(棒)","212900270":"C1290_ Ojo Deb (Long Axe): Rotation attack Combo Second Stage: Rotating section (rod) -- c1290_王城デブ(長斧):回転攻撃コンボ 2段目:回転部(棒)","212900271":"C1290_ Ojo Deb (Long Axe): Rotating attack Combo Second stage: Pay part (rod) -- c1290_王城デブ(長斧):回転攻撃コンボ 2段目:払い部(棒)","212900280":"C1290_ Ojo Deb (Long Axe): Rotation attack Combo Third stage: Rotating section (rod) -- c1290_王城デブ(長斧):回転攻撃コンボ 3段目:回転部(棒)","212900281":"C1290_ Ojo Deb (Long Axe): Rotation attack combo third stage: Pay part (rod) -- c1290_王城デブ(長斧):回転攻撃コンボ 3段目:払い部(棒)","212900300":"C1290_ Ojo Deb (ax Nitori): Combo ① ~ 1 Right axe slash 1 -- c1290_王城デブ(斧二刀流):コンボ①~1 右斧斬り払い 1","212900301":"C1290_ Ojo Deb (ax Nitori): Combo ①-2 left axe slash 2 -- c1290_王城デブ(斧二刀流):コンボ①~2 左斧斬り払い 2","212900302":"C1290_ Ojo Deb (ax Nitori): Combo ①-3 Right axe swing -- c1290_王城デブ(斧二刀流):コンボ①~3 右斧振りおろし","212900303":"C1290_ Ojo Deb (ax Nitori): Combo ①-4 left axe swing grated -- c1290_王城デブ(斧二刀流):コンボ①~4 左斧振りおろし","212900304":"C1290_ Ojo Deb (ax Nitori): Combo ① ~ 3-Car ax swing grated -- c1290_王城デブ(斧二刀流):コンボ①~3 両斧振りおろし","212900310":"C1290_ Ojo Deb (ax Nitori): both axe grated -- c1290_王城デブ(斧二刀流):両斧振りおろし","212900320":"C1290_ Ojo Deb (ax Nitori): Cut to tuck in both axes -- c1290_王城デブ(斧二刀流):両斧で挟み込むように切る","212900330":"C1290_ Ojo Deb (ax Nitori): Force -- c1290_王城デブ(斧二刀流):フォース","212900340":"C1290_ Ojo Deb (ax Nitori): Combo ② ~ 1 Left Axe -- c1290_王城デブ(斧二刀流):コンボ②~1 左斧横払い","212900341":"C1290_ Ojo Deb (ax Nitori): Combo ② ~ 2-Car Axe slash -- c1290_王城デブ(斧二刀流):コンボ②~2 両斧斬り払い","212900350":"C1290_ Ojo Deb (ax Nitori): Cross-slash with both axes _ right hand -- c1290_王城デブ(斧二刀流):両斧でクロス斬り_右手","212900351":"C1290_ Ojo Deb (ax Nitori): Cross-slash with both axes _ left hand -- c1290_王城デブ(斧二刀流):両斧でクロス斬り_左手","212900360":"C1290_ Ojo Deb (axe Nitori): Reverse cross Slash -- c1290_王城デブ(斧二刀流):前転逆クロス斬り","212900370":"C1290_ Ojo Deb (axe Nitori): Rotating both axe slash -- c1290_王城デブ(斧二刀流):回転両斧斬り","212900380":"C1290_ Ojo Deb (ax Nitori): Ax throwing left -- c1290_王城デブ(斧二刀流):斧投擲 左","212900381":"C1290_ Ojo Deb (ax Nitori): Ax throwing right -- c1290_王城デブ(斧二刀流):斧投擲 右","213000100":"C1300_ Black Knight: left Kesa cut -- c1300_黒騎士:左袈裟切り","213000101":"c1300_ Black Knight: Right Whack -- c1300_黒騎士:右薙ぎ","213000102":"c1300_ Black Knight: thrusting -- c1300_黒騎士:突き","213000103":"C1300_ Black Knight: Swing Down -- c1300_黒騎士:振り下ろし","213000104":"C1300_ Black Knight: Infuser Combo -- c1300_黒騎士:溜め斬り・コンボ","213000110":"C1300_ Black Knight: Infuser, simple -- c1300_黒騎士:溜め斬り・単","213000120":"C1300_ Black Knight: beat with a shield -- c1300_黒騎士:盾で殴る","213000121":"C1300_ Black Knight: Rush Butt -- c1300_黒騎士:突進突き","213000300":"C1300_ Black Knight (oversized sword): Pay: Wait -- c1300_黒騎士(特大剣):払い:待機","213000310":"C1300_ Black Knight (oversized sword): reversal: Payment Attitude -- c1300_黒騎士(特大剣):逆払い:払い姿勢","213000320":"C1300_ Black Knight (oversized sword): Pay: Attitude -- c1300_黒騎士(特大剣):払い:逆払い姿勢","213000330":"C1300_ Black Knight (oversized sword): Rotation swing down: pay attitude -- c1300_黒騎士(特大剣):回転振り下ろし:払い姿勢","213000340":"C1300_ Black Knight (oversized sword): Swing down: posture of reversed payment -- c1300_黒騎士(特大剣):振り下ろし:逆払い姿勢","213000350":"C1300_ Black Knight (oversized sword): Swing Down: Wait -- c1300_黒騎士(特大剣):振り下ろし:待機","213000360":"C1300_ Black Knight (oversized sword): Reverse payment: Swing down posture -- c1300_黒騎士(特大剣):逆払い:振り下ろし姿勢","213000370":"C1300_ Black Knight (oversized sword): poking: Waiting -- c1300_黒騎士(特大剣):突き:待機","213000380":"C1300_ Black Knight (oversized sword): Thrust: Posture -- c1300_黒騎士(特大剣):突き:逆払い姿勢","213000390":"C1300_ Black Knight (oversized sword): rotating Butt: Pay attitude -- c1300_黒騎士(特大剣):回転突き:払い姿勢","213000400":"C1300_ Black Knight (oversized sword): two or three steps to swing -- c1300_黒騎士(特大剣):2、3歩踏み込んで振り下ろす","213000410":"C1300_ Black Knight (oversized sword): two or three steps to poke -- c1300_黒騎士(特大剣):2、3歩踏み込んで突く","213000420":"C1300_ Black Knight (oversized sword): Beat with a shield -- c1300_黒騎士(特大剣):盾で殴る","213000430":"C1300_ Black Knight (oversized sword): Dragon Hunt, one-handed thrust -- c1300_黒騎士(特大剣):竜狩り・片手突き上げ","213000440":"C1300_ Black Knight (oversized sword): Dragon Hunt, two hands swing -- c1300_黒騎士(特大剣):竜狩り・両手振り上げ","213000441":"C1300_ Black Knight (oversized sword): Dragon Hunt, hands Up (preliminary operation) -- c1300_黒騎士(特大剣):竜狩り・両手振り上げ(予備動作)","213000450":"C1300_ Black Knight (oversized sword): behind reverse Whack -- c1300_黒騎士(特大剣):背後逆薙ぎ","213000500":"C1300_ Black Knight (axe): Right Kesa -- c1300_黒騎士(斧):右袈裟","213000510":"C1300_ Black Knight (axe): Left Kesa: Right Kesa Posture -- c1300_黒騎士(斧):左袈裟:右袈裟姿勢","213000520":"C1300_ Black Knight (Axe): swinging: Left Kesa posture -- c1300_黒騎士(斧):振り上げ:左袈裟姿勢","213000530":"C1300_ Black Knight (axe): slams: Left Kesa posture -- c1300_黒騎士(斧):叩きつけ:左袈裟姿勢","213000540":"C1300_ Black Knight (ax): Swing down and simply -- c1300_黒騎士(斧):振り下ろし・単","213000550":"C1300_ Black Knight (axe): swing-up -- c1300_黒騎士(斧):振り上げ・単","213000560":"C1300_ Black Knight (axe): Beat with a shield -- c1300_黒騎士(斧):盾で殴る","213000570":"C1300_ Black Knight (axe): Pay from the left: swing attitude -- c1300_黒騎士(斧):左から払う:振り上げ姿勢","213000580":"C1300_ Black Knight (axe): One or two steps to pay -- c1300_黒騎士(斧):1、2歩踏み込んで払う","213000590":"C1300_ Black Knight (axe): Two, three steps pounding -- c1300_黒騎士(斧):2、3歩踏み込んで叩きつける","213000600":"C1300_ Black Knight (ax): Dragon Hunt, jump and swing down -- c1300_黒騎士(斧):竜狩り・飛び上がって振り下ろし","213000610":"C1300_ Black Knight (axe): Dragon Hunt, hands up -- c1300_黒騎士(斧):竜狩り・両手振り上げ","213000611":"C1300_ Black Knight (axe): Dragon Hunt, hands Up (preliminary operation) -- c1300_黒騎士(斧):竜狩り・両手振り上げ(予備動作)","213000620":"C1300_ Black Knight (AX): Behind continuous attack -- c1300_黒騎士(斧):背後連続攻撃","213000621":"C1300_ Black Knight (AX): Behind continuous attack -- c1300_黒騎士(斧):背後連続攻撃_2撃目","213000630":"C1300_ Black Knight (axe): Slams (feint): Left Kesa Posture -- c1300_黒騎士(斧):叩きつけ(フェイント):左袈裟姿勢","213000700":"C1300_ Black Knight: one poke while guarding -- c1300_黒騎士:ガードしながら突く1","213000701":"C1300_ Black Knight Guards while poke 2 -- c1300_黒騎士ガードしながら突く2","213000702":"C1300_ Black Knight Guards while poke 3 -- c1300_黒騎士ガードしながら突く3","213000703":"C1300_ Black Knight (spear) Nagi combo -- c1300_黒騎士(槍)なぎ払い・コンボ","213000710":"C1300_ Black Knight Strong attack -- c1300_黒騎士強攻撃","213000720":"c1300_, Black Knight, two, three steps. -- c1300_黒騎士2、3歩踏み込んだ勢いで突く","213000730":"C1300_ Black Knight (spear) Nagi -- c1300_黒騎士(槍)なぎ払い・単","213000731":"C1300_ Black Knight (spear) Nagi 2 -- c1300_黒騎士(槍)なぎ払い2","213000732":"C1300_ Black Knight (spear) thrust and Nagi -- c1300_黒騎士(槍)突き・なぎ払いから","213000740":"C1300_ Black Knight (spear) Nagi-strong -- c1300_黒騎士(槍)なぎ払い・強","213000750":"C1300_ Black Knight (spear) PC diversion/one-handed attack -- c1300_黒騎士(槍)PC流用・片手攻撃","213000751":"C1300_ Black Knight (spear) PC diversion/One-handed attack (preliminary operation) -- c1300_黒騎士(槍)PC流用・片手攻撃 (予備動作)","213000760":"C1300_ Black Knight (spear) PC Diversion/Jump Slash -- c1300_黒騎士(槍)PC流用・ジャンプ斬り","213000770":"C1300_ the Black Knight (spear) Shield -- c1300_黒騎士(槍)盾を構えて突進","213000900":"C1300_ Black Knight (spear) Shield -- c1300_黒騎士(槍)盾","213100100":"C1310_ Dark Knight Beast: Sword Up -- c1310_ダークナイトビースト:斬り上げ","213100101":"C1310_ Dark Knight beast: Swinging from the sword -- c1310_ダークナイトビースト:斬り上げからの振りおろし","213100110":"C1310_ Dark Knight beast: Back Up -- c1310_ダークナイトビースト:後ろ斬り上げ","213100111":"C1310_ Dark Knight beast: Swing from behind -- c1310_ダークナイトビースト:後ろ斬り上げからの振りおろし","213100120":"C1310_ Dark Knight Beast: Whack Stage -- c1310_ダークナイトビースト:薙ぎ 初段","213100130":"C1310_ Dark Knight Beast: Whack next stage -- c1310_ダークナイトビースト:薙ぎ 次段","213100140":"C1310_ Dark Knight Beast: Left 90 ° swivel whack -- c1310_ダークナイトビースト:左90°旋回薙ぎ","213100150":"C1310_ Dark Knight Beast: Right 90 ° swivel whack -- c1310_ダークナイトビースト:右90°旋回薙ぎ","213100160":"C1310_ Dark Knight Beast: thrusting -- c1310_ダークナイトビースト:突き","213100170":"C1310_ Dark Knight beast: jumping and attacking -- c1310_ダークナイトビースト:跳びかかり攻撃","213100180":"C1310_ Dark Knight Beast: Breath -- c1310_ダークナイトビースト:ブレス","213100182":"C1310_ Dark Knight Beast: Breath _ Decal -- c1310_ダークナイトビースト:ブレス_デカール","213100190":"C1310_ Dark Knight Beast: Left Whack -- c1310_ダークナイトビースト:左薙ぎ","213100200":"C1310_ Dark Knight Beast: Rush first stage -- c1310_ダークナイトビースト:ラッシュ1段目","213100201":"C1310_ Dark Knight Beast: Rush second Stage -- c1310_ダークナイトビースト:ラッシュ2段目","213200100":"Crystal Spear -- 結晶の槍","213200110":"A mass of drifting crystals -- 漂う結晶の塊","213200130":"Ally Buff -- 味方バフ","213200140":"High Speed straight line Magic (launch) -- 高速直線魔法(発射)","213200141":"Fast Line Magic (search) -- 高速直線魔法(検索)","213200142":"High Speed straight line magic (impact) -- 高速直線魔法(着弾)","213200143":"High Speed straight line magic (remaining) -- 高速直線魔法(残存)","213200150":"Drenched crystal bullets (parent) -- 降り注ぐ結晶弾(親)","213200151":"Drenched crystal bullets (hygiene) -- 降り注ぐ結晶弾(衛生)","213200152":"Drenched Crystal bullets (child) -- 降り注ぐ結晶弾(子)","213200153":"Falling crystal bullets (explosion) -- 降り注ぐ結晶弾(爆発)","213200155":"Drenched crystal bullets (parent) -- 降り注ぐ結晶弾(親)","213200160":"Proximity explosion (parent) -- 近接爆発(親)","213200161":"Proximity explosion (child) -- 近接爆発(子)","213200170":"Crystal Wall (PC follower) -- 結晶壁(PC追従)","213200190":"Crystal Storm Dancing Signs -- 結晶の嵐乱舞 予兆","213200191":"Crystal Storm dancing Crystal Storm -- 結晶の嵐乱舞 結晶の嵐","213200192":"The storm of Crystals danced -- 結晶の嵐乱舞 着弾","213200193":"Shock wave of crystal storm dancing -- 結晶の嵐乱舞 発動時の衝撃波","213200194":"Crystal Storm Dancing signs (short distance) -- 結晶の嵐乱舞 予兆(近距離)","213200195":"Crystal Storm dancing sign (target directly above) -- 結晶の嵐乱舞 予兆(ターゲット真上)","213200300":"Butt: Throwing Start -- 突き:投げ始動","213200310":"2 Consecutive payments: 1 payment -- 2連続払い:払い1","213200311":"2 Consecutive payments: Payment 2 -- 2連続払い:払い2","213300100":"C1330_ Forest Keeper (Long Axe): Swinging (Blade) -- c1330_森の番人(長斧):振りおろし(刃)","213300101":"C1330_ Forest Keeper (Long Axe): Pay (Blade) (for combo) -- c1330_森の番人(長斧):払い(刃)(コンボ用)","213300110":"C1330_ Forest Keeper (Long Axe): Nagi (Blade) -- c1330_森の番人(長斧):なぎ払い(刃)","213300120":"C1330_ Forest Keeper (Long Axe): Reverse Nagi (Blade) -- c1330_森の番人(長斧):逆なぎ払い(刃)","213300130":"C1330_ Forest Keeper (Long Axe): Execution attack (Blade) -- c1330_森の番人(長斧):処刑攻撃(刃)","213300140":"C1330_ Forest Keeper (Long axe): stepping Down (Blade) -- c1330_森の番人(長斧):踏み込み振り下ろし(刃)","213300150":"C1330_ Forest Keeper (Long Axe): Pre-kick -- c1330_森の番人(長斧):前蹴り","213300160":"C1330_ Forest Keeper (Long Axe): Endure (for counter) -- c1330_森の番人(長斧):耐える(カウンター用)","213300161":"C1330_ Forest Keeper (Long Axe): Head butt -- c1330_森の番人(長斧):頭突き","213300200":"C1330_ Forest Keeper (Long Axe): Swing (Rod) -- c1330_森の番人(長斧):振りおろし(棒)","213300201":"C1330_ Forest Keeper (Long Axe): Pay (stick) (for combo) -- c1330_森の番人(長斧):払い(棒)(コンボ用)","213300210":"C1330_ Forest Keeper (Long Axe): Nagi (Rod) -- c1330_森の番人(長斧):なぎ払い(棒)","213300220":"C1330_ Forest Keeper (Long Axe): Reverse Nagi (stick) -- c1330_森の番人(長斧):逆なぎ払い(棒)","213300230":"C1330_ Forest Keeper (Long Axe): Execution Attack (rod) -- c1330_森の番人(長斧):処刑攻撃(棒)","213300240":"C1330_ Forest Keeper (Long axe): Stepping down (stick) -- c1330_森の番人(長斧):踏み込み振り下ろし(棒)","213300300":"C1330_ Forest Keeper (sword): DV Combo 1: Swing Down -- c1330_森の番人(大剣):DVコンボ1:振り下ろし","213300301":"C1330_ Forest Keeper (sword): DV Combo 2: Swing Down -- c1330_森の番人(大剣):DVコンボ2:振り下ろし","213300302":"C1330_ Forest Keeper (sword): DV Combo 3: Strong attack -- c1330_森の番人(大剣):DVコンボ3:強攻撃","213300310":"C1330_ Forest Keeper (large sword): both hands guillotine -- c1330_森の番人(大剣):両手ギロチン","213300320":"C1330_ Forest Keeper (sword): Pay (before-left) -- c1330_森の番人(大剣):払い(前~左)","213300330":"C1330_ The Keeper of the Forest (large sword): Reverse payment (front to right) -- c1330_森の番人(大剣):逆払い(前~右)","213300340":"C1330_ Forest Keeper (large sword): Asai -- c1330_森の番人(大剣):足払い","213300350":"The keeper of the C1330_ Forest (sword): Depression attack -- c1330_森の番人(大剣):踏み込み攻撃","213300360":"C1330_ Forest Keeper (sword): Endure (for counter) -- c1330_森の番人(大剣):耐える(カウンター用)","213300361":"C1330_ Forest Keeper (sword): Head Butt -- c1330_森の番人(大剣):頭突き","213400070":"C1340_ dead: Beat up _ First stage -- c1340_蝋の死人:殴る_一段目","213400071":"C1340_ dead: Beat up _ Two -- c1340_蝋の死人:殴る_二段目","213400080":"The dead of c1340_ wax: depression thrust -- c1340_蝋の死人:踏み込み突き刺し","213400090":"Dead of c1340_ Wax: Infuser beating -- c1340_蝋の死人:溜め殴り","213400700":"The dead of c1340 wax: the arrow of Seoul -- c1340 蝋の死人:ソウルの矢","213400710":"The dead of c1340 wax: A Spear of disturbed soul -- c1340 蝋の死人:乱れるソウルの槍","213400720":"c1340 dead: Wax _ knocked back against: long distance -- c1340 蝋の死人:蝋弾_叩き付け:遠距離","213400730":"c1340 dead: Wax _ Saigi -- c1340 蝋の死人:蝋弾_薙ぎ払い","213400740":"c1340 dead: Wax _ knocked back against: close range -- c1340 蝋の死人:蝋弾_叩き付け:近距離","213500100":"c1350_ slave Spirit (Dagger): Swing down _1 -- c1350_奴隷霊(短剣):振り下ろし_1段目","213500110":"c1350_ slave Spirits (dagger): Swing Down -- c1350_奴隷霊(短剣):振り下ろし_2段目","213500120":"c1350_ slave Spirit (Dagger): Swing Down _3 -- c1350_奴隷霊(短剣):振り下ろし_3段目","213500150":"c1350_ slave Spirits (dagger): both -- c1350_奴隷霊(短剣):両手振り下ろし","213500160":"c1350_ slave Spirits (dagger): Running thrust -- c1350_奴隷霊(短剣):走り突き刺し","213500170":"c1350_ slave Spirit (Dagger): the _1 Stage -- c1350_奴隷霊(短剣):斬り払い_1段目","213500180":"c1350_ slave Spirit (Dagger): The Sword -- c1350_奴隷霊(短剣):斬り払い_2段目","213500200":"c1350_ slave Spirits (fetters): Shouting -- c1350_奴隷霊(足枷):叫び","213500300":"c1350_ slave spirits (without legs): lateral payment -- c1350_奴隷霊(足なし):横払い","213500310":"c1350_ slave spirits (without legs): front slash -- c1350_奴隷霊(足なし):正面斬り払い","213500320":"c1350_ slave spirits (without legs): piercing -- c1350_奴隷霊(足なし):突き刺し","213500330":"c1350_ slave spirits (without legs): Rampage shook _1 -- c1350_奴隷霊(足なし):暴れ振り払い_1段目","213500331":"c1350_ slave spirits (without legs): Rampage shook -- c1350_奴隷霊(足なし):暴れ振り払い_2段目","213500340":"c1350_ slave spirits (without legs): falling throw -- c1350_奴隷霊(足なし):落下投げ","213500341":"c1350_ slave spirits (without legs): throwing damage -- c1350_奴隷霊(足なし):投げダメージ","213500400":"c1350_ slave Spirit (Straight Sword): Take the right hand -- c1350_奴隷霊(直剣):右手斬りかかり","213500410":"c1350_ slave Spirit (Straight Sword): Right hand cut back -- c1350_奴隷霊(直剣):右手斬り返し","213500420":"c1350_ slave Spirit (Straight Sword): Right hand Swing -- c1350_奴隷霊(直剣):右手振り下ろし","213500430":"c1350_ slave Spirit (Straight sword): both -- c1350_奴隷霊(直剣):両手振り下ろし","213500440":"c1350_ slave Spirit (Straight sword): The running slash -- c1350_奴隷霊(直剣):走り斬りかかり","213500450":"c1350_ slave Spirit (Straight sword): protruding slash -- c1350_奴隷霊(直剣):突き出し斬り","213500460":"c1350_ Slave Spirits (Straight sword): shook -- c1350_奴隷霊(直剣):振り払い","213600100":"C1360_ Crucifixion dead A: Throwing transition 1 -- c1360_磔亡者A:投げ遷移1","213600110":"C1360_ Crucifixion dead A: throwing transition 2 -- c1360_磔亡者A:投げ遷移2","213600200":"C1360_ Crucifixion dead A: tossed -- c1360_磔亡者A:投げ","213700100":"C1370_ Crucifixion dead B: Thrusting (weakly) _ Tip -- c1370_磔亡者B:突き(弱)_先端","213700101":"C1370_ Crucifixion dead B: Thrusting (weakly) _ Sticky hands-tip -- c1370_磔亡者B:突き(弱)_もち手~先端","213700110":"C1370_ Crucifixion dead B: butting (strong) _ Tip -- c1370_磔亡者B:突き(強)_先端","213700111":"C1370_ Crucifixion dead B: Thrust (strong) _ Sticky hands-tip -- c1370_磔亡者B:突き(強)_もち手~先端","213700120":"C1370_ Crucifixion dead B: Lifting and thrusting _ tip -- c1370_磔亡者B:持ち上げて突き刺し_先端","213700121":"C1370_ Crucifixion dead B: Lifting and thrusting _ sticky hands-tip -- c1370_磔亡者B:持ち上げて突き刺し_もち手~先端","213700130":"C1370_ Crucifixion dead B: Pay in piles _ tip -- c1370_磔亡者B:杭で払う_先端","213700131":"C1370_ Crucifixion dead B: Pay in piles _ Sticky hands-tip -- c1370_磔亡者B:杭で払う_もち手~先端","213700140":"C1370_ Crucifixion dead B: knocked back against to lift _ tip -- c1370_磔亡者B:持ち上げて叩き付け_先端","213700141":"C1370_ Crucifixion dead B: Lifting knocked back against _ Sticky hands-tip -- c1370_磔亡者B:持ち上げて叩き付け_もち手~先端","213700150":"C1370_ Crucifixion dead B: Rush Butt (Continuous) _ Tip -- c1370_磔亡者B:突進突き(連続)_先端","213700151":"C1370_ Crucifixion dead B: Rush Butt (continuous) _ Sticky hands-tip -- c1370_磔亡者B:突進突き(連続)_もち手~先端","213700152":"C1370_ Crucifixion dead B: Rush Butt (Final) _ Tip -- c1370_磔亡者B:突進突き(最終)_先端","213800010":"The priest of the c1380_ snake: beating with a whip (weak) -- c1380_蛇人の司祭:鞭で殴る(弱)","213800020":"C1380_ Snake man priest: Nagi with whips -- c1380_蛇人の司祭:鞭でなぎ払う","213800700":"C1380_ Priest: Magic Attack (weak) -- c1380_蛇人の司祭:魔法攻撃(弱)","213800710":"Priest of the snake c1380_: the Magic Attack (strong) -- c1380_蛇人の司祭:魔法攻撃(強)","213900010":"C1390_ Snake Assassin (short blade): Continuous attack 1-1_ blow -- c1390_蛇人の暗殺者(短刃):連続攻撃1-1_一撃目","213900011":"C1390_ Snake Assassin (short blade): Continuous attack 1-1_ second -- c1390_蛇人の暗殺者(短刃):連続攻撃1-1_二撃目","213900020":"C1390_ Snake Assassin (short blade): Continuous attack 1-2_ blow -- c1390_蛇人の暗殺者(短刃):連続攻撃1-2_一撃目","213900021":"C1390_ Snake Assassin (short blade): Continuous attack 1-2_ second -- c1390_蛇人の暗殺者(短刃):連続攻撃1-2_二撃目","213900030":"c1390_ (short blade): Rapid Melee attack 1-1 -- c1390_蛇人の暗殺者(短刃):急接近攻撃1-1","213900040":"C1390_ Snake Assassin (short blade): Rapid Melee attack 1-2_ -- c1390_蛇人の暗殺者(短刃):急接近攻撃1-2_一撃目","213900041":"C1390_ Snake Assassin (short blade): Rapid approaching attack 1-2_ second hammer -- c1390_蛇人の暗殺者(短刃):急接近攻撃1-2_二撃目","213900042":"c1390_ (short blade): Quick approaching attack 1-2_ 3 -- c1390_蛇人の暗殺者(短刃):急接近攻撃1-2_三撃目","213900050":"c1390_ Assassin (Short Blade): Rapid Melee attack 1-3a -- c1390_蛇人の暗殺者(短刃):急接近攻撃1-3A","213900060":"C1390_ Snake Assassin (short blade): bit -- c1390_蛇人の暗殺者(短刃):噛み付き","213900070":"c1390_ (Short blade): The Fall attack 1-1 -- c1390_蛇人の暗殺者(短刃):斬り下がり攻撃1-1","213900080":"c1390_ Assassin (Short Blade): A Down-rise attack -- c1390_蛇人の暗殺者(短刃):ダウン起き上がり攻撃","213900090":"C1390_ Snake man Assassin (short blade): Bit (right): from a3000 -- c1390_蛇人の暗殺者(短刃):噛み付き(右前):a3000から","213900100":"C1390_ Snake Assassin (short blade): bit (left): from a3000 -- c1390_蛇人の暗殺者(短刃):噛み付き(左前):a3000から","213900110":"C1390_ Snake man Assassin (short blade): Bit (right): from a3005 -- c1390_蛇人の暗殺者(短刃):噛み付き(右前):a3005から","213900120":"C1390_ Snake Assassin (short blade): bit (left): from a3005 -- c1390_蛇人の暗殺者(短刃):噛み付き(左前):a3005から","213900200":"C1390_ the Assassin (Shorty): Pay: Wait -- c1390_蛇人の暗殺者(ショーテル):払い:待機","213900210":"C1390_ (Shorty): Reverse Payment: A payment attitude -- c1390_蛇人の暗殺者(ショーテル):逆払い:払い姿勢","213900220":"C1390_ (Shorty): Reverse Payment: Wait -- c1390_蛇人の暗殺者(ショーテル):逆払い:待機","213900230":"The assassin of the C1390_ (Shorty): Pay: Attitude -- c1390_蛇人の暗殺者(ショーテル):払い:逆払い姿勢","213900240":"The assassin of the C1390_ (Shorty): Deferred payment: A reversed payment stance -- c1390_蛇人の暗殺者(ショーテル):遅延払い:逆払い姿勢","213900250":"The assassin of the c1390_ Snake (Shorty): Quick approaching attack -- c1390_蛇人の暗殺者(ショーテル):急接近攻撃","213900260":"C1390_ The assassin of the Serpent (Shorty): Up and down attack -- c1390_蛇人の暗殺者(ショーテル):ダウン起き上がり攻撃","213900270":"C1390_ Serpent Assassin (Shorty): Bit from guard break -- c1390_蛇人の暗殺者(ショーテル):ガードブレイクからの噛み付き","213900280":"The assassin of the c1390_ Snake (Shorty): Swing Down -- c1390_蛇人の暗殺者(ショーテル):振り下ろし","213900400":"The assassin of C1390_ (common): Breath -- c1390_蛇人の暗殺者(共通):ブレス","213900410":"Assassins of C1390_ (common): Pay bit: Wait -- c1390_蛇人の暗殺者(共通):払い噛み付き:待機","213900411":"C1390_ Serpent Assassin (Common): bit: a3016 -- c1390_蛇人の暗殺者(共通):払い噛み付き:a3016から","213900500":"The assassin of the c1390_ Snake (Shorty): Guard -- c1390_蛇人の暗殺者(ショーテル):ガード","213900600":"C1390_ Snake Man Assassin (short): Paris Throwing damage -- c1390_蛇人の暗殺者(短い):パリィ投げダメージ","213900900":"The assassin of the C1390_ (dagger): Paris -- c1390_蛇人の暗殺者(短刀):パリィする","213910010":"Assassin of the C1391_ (Kusarigama): A continuous attack 1-1 -- c1391_蛇人の暗殺者(鎖鎌):連続攻撃1-1","213910020":"Assassin of the C1391_ (Kusarigama): A continuous attack 1-2 -- c1391_蛇人の暗殺者(鎖鎌):連続攻撃1-2","213910030":"C1391_ (Kusarigama): Kusarigama Swing (Medium range) -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌振り下ろし(中距離)","213910031":"C1391_ (Kusarigama): Kusarigama Swing (medium range) [Chara Atari No] -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌振り下ろし(中距離)【キャラアタリ無】","213910032":"The assassin of the C1391_ (Kusarigama): Kusarigama Swing (medium range) [Return sickle] -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌振り下ろし(中距離)【戻り鎌】","213910040":"C1391_ (Kusarigama): Kusarigama Swing (long distance) -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌振り下ろし(遠距離)","213910041":"Assassins of C1391_ (Kusarigama): Kusarigama (long distance) [Chara Atari No] -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌振り下ろし(遠距離)【キャラアタリ無】","213910042":"The assassin of the C1391_ (Kusarigama): Kusarigama (long distance) [return sickle] -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌振り下ろし(遠距離)【戻り鎌】","213910050":"C1391_ Snake man Assassin (Kusarigama): Kusarigama -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌払い","213910051":"Assassins of C1391_ (Kusarigama): Kusarigama (Chain part) -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌払い【鎖部分】","213910052":"C1391_ Serpent Assassin (Kusarigama): Kusarigama (through sickle) -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌払い【貫通鎌】","213910060":"C1391_ Snake man Assassin (Kusarigama): Poison Mist -- c1391_蛇人の暗殺者(鎖鎌):毒霧","213910070":"C1391_ (Kusarigama): A reverse payment (wait) -- c1391_蛇人の暗殺者(鎖鎌):逆払い(待機)","213910080":"Assassins of C1391_ (Kusarigama): Swing Down (reverse posture) -- c1391_蛇人の暗殺者(鎖鎌):振り下ろし(逆払い姿勢)","213910090":"C1391_ Serpent Assassin (Kusarigama): Kusarigama (a3004 attitude) -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌払い(a3004姿勢)","213910091":"C1391_ (Kusarigama): Kusarigama (a3004 posture) [Chain part] -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌払い(a3004姿勢)【鎖部分】","213910092":"Assassins of C1391_ (Kusarigama): Kusarigama (a3004 posture) [through sickle] -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌払い(a3004姿勢)【貫通鎌】","213910100":"C1391_ Snake man Assassin (Kusarigama): Right side reverse payment -- c1391_蛇人の暗殺者(鎖鎌):右側面逆払い","213910110":"C1391_ Snake man Assassin (Kusarigama): Left side reverse payment -- c1391_蛇人の暗殺者(鎖鎌):左側面逆払い","213910120":"C1391_ Snake man Assassin (Kusarigama): Front bit -- c1391_蛇人の暗殺者(鎖鎌):正面噛み付き","213910130":"C1391_ (Kusarigama): Kusarigama Swing down and strong (medium distance) -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌振り下ろし・強(中距離)","213910131":"Assassins of C1391_ (Kusarigama): Kusarigama, strong (medium range) [Chara Atari No] -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌振り下ろし・強(中距離)【キャラアタリ無】","213910132":"The assassin of the C1391_ (Kusarigama): Kusarigama Swing down and strong (medium range) [Return sickle] -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌振り下ろし・強(中距離)【戻り鎌】","213910140":"The assassin of the C1391_ (Kusarigama): Kusarigama Swing (medium distance) [Return sickle] -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌振り下ろし(中遠距離)【戻り鎌】","213910141":"The assassin of the C1391_ (Kusarigama): Kusarigama (long distance) [return sickle] -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌振り下ろし(遠距離)【戻り鎌】","213910150":"The assassin of the C1391_ (Kusarigama): Kusarigama Swing down and strong (medium distance) [Return sickle] -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌振り下ろし・強(中遠距離)【戻り鎌】","213910151":"The assassin of the C1391_ (Kusarigama): Kusarigama and strong (long distance) [return sickle] -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌振り下ろし・強(遠距離)【戻り鎌】","213910200":"C1391_ Snake man Assassin (Kusarigama): Throwing -- c1391_蛇人の暗殺者(鎖鎌):投げ","213910201":"C1391_ Snake man Assassin (Kusarigama): Throwing damage -- c1391_蛇人の暗殺者(鎖鎌):投げダメージ","214100100":"c1410: Silver Knight: Slashing 1 (sword) -- c1410:銀騎士:斬撃1(剣)","214100101":"c1410: Silver Knight: Slashing 2 (sword) -- c1410:銀騎士:斬撃2(剣)","214100102":"c1410: Silver Knight: Slashing 3 (sword) -- c1410:銀騎士:斬撃3・連(剣)","214100103":"c1410: Silver Knight: Slashing 3/strength (sword) -- c1410:銀騎士:斬撃3・強(剣)","214100104":"c1410: Silver Knight: Thrust: Reverse Kesa Posture -- c1410:銀騎士:突き:逆袈裟姿勢","214100110":"c1410: Silver Knight: Depression Slashing (sword) -- c1410:銀騎士:踏み込み斬撃(剣)","214100120":"c1410: Silver Knight: Swing Down (sword) -- c1410:銀騎士:振り下ろし(剣)","214100130":"c1410: Silver Knight: Thrusting (sword) -- c1410:銀騎士:突き(剣)","214100140":"c1410: Silver Knights: Breaking with shields -- c1410:銀騎士:盾で崩す","214100150":"c1410: Silver Knight: Jump swing Down: Wait -- c1410:銀騎士:ジャンプ振り下ろし:待機","214100151":"c1410: Silver Knight: Jump swing Down: a3015 posture -- c1410:銀騎士:ジャンプ振り下ろし:a3015姿勢","214100160":"c1410: Silver Knight: Twist behind: Wait -- c1410:銀騎士:後ろひねり斬り:待機","214100170":"c1410: Silver Knight: Slash: Wait -- c1410:銀騎士:斬り下がり:待機","214100200":"c1410: Silver Knight: Thrust 1 (spear) -- c1410:銀騎士:突き1(槍)","214100201":"c1410: Silver Knight: Thrust 2 (Spear) -- c1410:銀騎士:突き2(槍)","214100202":"c1410: Silver Knight: Thrust 3/strong (spear) -- c1410:銀騎士:突き3・強(槍)","214100210":"c1410: Silver Knight: a stepping Spear -- c1410:銀騎士:踏み込み突き(槍)","214100220":"c1410: Silver Knight: Nagi (Spear) -- c1410:銀騎士:なぎ払い・強(槍)","214100221":"c1410: Silver Knight: Thrust from Nagi (spear) -- c1410:銀騎士:なぎ払いから突き(槍)","214100230":"c1410: Silver Knight: Destroy with Shield (spear) -- c1410:銀騎士:盾で崩す(槍)","214100240":"c1410: Silver Knight: Step back -- c1410:銀騎士:バックステップ払い","214100250":"c1410: Silver Knight: Small boost thrust -- c1410:銀騎士:小ブースト突き","214100260":"c1410: Silver Knight: Dragon Hunt thrust 1 -- c1410:銀騎士:竜狩り突き1","214100261":"c1410: Silver Knight: Dragon Hunt thrust 2 -- c1410:銀騎士:竜狩り突き2","214100270":"c1410: Silver Knight: Behind both hands: waiting -- c1410:銀騎士:背後両手払い:待機","214100300":"c1410: Silver Knight: Miyakonojo -- c1410:銀騎士:大弓発射","214100310":"c1410: Silver Knight: Miyakonojo -- c1410:銀騎士:大弓強射","214100500":"c1410: Silver Knight: Guard -- c1410:銀騎士:ガード","214700010":"c1470_ Wheel skeleton: Beat by hand (right hand) -- c1470_車輪スケルトン:手で殴る(右手)","214700011":"c1470_ Wheel skeleton: Beat by hand (left hand) -- c1470_車輪スケルトン:手で殴る(左手)","214700020":"c1470_ wheel skeleton: transformed into a wheel -- c1470_車輪スケルトン:車輪に変身","214700100":"c1470_ Wheel Skeleton: rotation -- c1470_車輪スケルトン:回転","220000010":"Wolf of c2000_: a flying attack -- c2000_蝕のオオカミ:飛びかかり攻撃","220000020":"Wolf of c2000_: Tackle attack -- c2000_蝕のオオカミ:タックル攻撃","220000030":"Wolf of c2000_: feint bite attack -- c2000_蝕のオオカミ:フェイント噛みつき攻撃","220000040":"Wolf of c2000_: Forward bit -- c2000_蝕のオオカミ:前方噛み付き","220000050":"Wolf of c2000_: Inverted attack on the belly -- c2000_蝕のオオカミ:腹下反転攻撃","220000060":"Wolf of c2000_: Right reversal attack -- c2000_蝕のオオカミ:右反転攻撃","220000070":"Wolf of c2000_: Left reversal attack -- c2000_蝕のオオカミ:左反転攻撃","220000080":"Wolf of c2000_: Falling bit -- c2000_蝕のオオカミ:噛み付き下がり","220000090":"Wolf of c2000_: bit back step -- c2000_蝕のオオカミ:噛み付きバックステップ","220000100":"Wolf of c2000_: Forward bit 2 -- c2000_蝕のオオカミ:前方噛み付き2","220000160":"Wolf of c2000_: 180 degrees turn -- c2000_蝕のオオカミ:180度ターン","220000170":"Wolf of c2000_: Right -- c2000_蝕のオオカミ:右旋回","220000180":"Wolf of c2000_: Left -- c2000_蝕のオオカミ:左旋回","220000190":"C2000_ 's Wolf: Walking _ before -- c2000_蝕のオオカミ:歩行_前","220000200":"Wolf of c2000_: Running before -- c2000_蝕のオオカミ:走行_前","220000300":"c2000_ (heat up): depression right Saigi -- c2000_蝕のオオカミ(ヒートアップ):踏み込み右薙ぎ払い","220000310":"c2000_ Wolf (heat up): Melee Combo: Right Saigi -- c2000_蝕のオオカミ(ヒートアップ):近接コンボ:右薙ぎ払い","220000320":"c2000_ Wolf (heat up): Melee Combo: Left Saigi -- c2000_蝕のオオカミ(ヒートアップ):近接コンボ:左薙ぎ払い","220000330":"c2000_ Wolf (heat up): Melee Combo: knocked back against -- c2000_蝕のオオカミ(ヒートアップ):近接コンボ:叩き付け","220000340":"c2000_ (heat up): 180 degree turn -- c2000_蝕のオオカミ(ヒートアップ):180度ターン","220000350":"c2000_ (heat up): attack from a 180-degree turn -- c2000_蝕のオオカミ(ヒートアップ):180度ターンからの攻撃","220000360":"c2000_ Wolf (heat up): Dash left -- c2000_蝕のオオカミ(ヒートアップ):ダッシュ左切り抜け","220000370":"c2000_ Wolf (heat up): Melee Combo: Left Saigi right 90 ° turn -- c2000_蝕のオオカミ(ヒートアップ):近接コンボ:左薙ぎ払い右90°ターン","220000380":"c2000_ Wolf (heat up): Melee Combo: Right Saigi left 90 ° turn -- c2000_蝕のオオカミ(ヒートアップ):近接コンボ:右薙ぎ払い左90°ターン","220000390":"Wolf of c2000_ (heat up): Left Kiri left 180 ° turn -- c2000_蝕のオオカミ(ヒートアップ):左切り払い左180°ターン","220000400":"c2000_ Wolf (heat up): Long distance Combo: Jump Butt -- c2000_蝕のオオカミ(ヒートアップ):遠距離コンボ:ジャンプ突き","220000410":"Wolf of c2000_ (heat up): Long distance Combo: knocked back against -- c2000_蝕のオオカミ(ヒートアップ):遠距離コンボ:叩き付け","220000420":"Wolf of c2000_ (heat up): Long distance Combo: Left Saigi -- c2000_蝕のオオカミ(ヒートアップ):遠距離コンボ:左薙ぎ払い","220000430":"Wolf of c2000_ (heat up): 180 degree turn attack -- c2000_蝕のオオカミ(ヒートアップ):180度ターン攻撃","220000440":"Wolf of c2000_ (heat up): Right reversal attack -- c2000_蝕のオオカミ(ヒートアップ):右反転攻撃","220000450":"Wolf of c2000_ (heat up): Left reversal attack -- c2000_蝕のオオカミ(ヒートアップ):左反転攻撃","220200010":"C2020_ dead Dog (normal): Bite 1 -- c2020_亡者犬(通常):噛みつき1","220200011":"C2020_ dead Dog (normal): Bite 2 -- c2020_亡者犬(通常):噛みつき2","220200020":"C2020_ dead Dog (normal): The flight from the suspended state -- c2020_亡者犬(通常):止まった状態からの飛びかかり","220200030":"C2020_ dead Dog (normal): Jump from running -- c2020_亡者犬(通常):走行からの飛びかかり","220200040":"C2020_ dead Dog (normal): bit combo First stage: from the Run -- c2020_亡者犬(通常):噛み付きコンボ1段目:走りから","220200050":"C2020_ dead Dog (normal): jump (Long distance) -- c2020_亡者犬(通常):飛びかかり(遠距離)","220200060":"C2020_ dead Dog (usually): from running (long distance) -- c2020_亡者犬(通常):飛びかかり(遠距離):走りから","220200070":"C2020_ dead Dog (normal): left curve bit -- c2020_亡者犬(通常):左カーブ噛み付き","220200080":"C2020_ dead Dog (normal): right curve bit -- c2020_亡者犬(通常):右カーブ噛み付き","220201010":"c2290_ Salivan Guard Dog: Bite 1 -- c2290_サリヴァーンの番犬:噛みつき1","220201011":"c2290_ Salivan watchdog: Bite 2 -- c2290_サリヴァーンの番犬:噛みつき2","220201020":"C2290_ Salivan's Guard dog: jumping from a parked state -- c2290_サリヴァーンの番犬:止まった状態からの飛びかかり","220201030":"C2290_ Salivan's Guard Dog: jumping from running -- c2290_サリヴァーンの番犬:走行からの飛びかかり","220201040":"c2290_ Salivan watchdog: bit combo first stage: from the Run -- c2290_サリヴァーンの番犬:噛み付きコンボ1段目:走りから","220201050":"c2290_ Salivan Guard Dog: Jump (long distance) -- c2290_サリヴァーンの番犬:飛びかかり(遠距離)","220201060":"c2290_ Salivan Guard Dog: Jump (Long distance): from running -- c2290_サリヴァーンの番犬:飛びかかり(遠距離):走りから","220201070":"C2290_ Salivan guard dogs: Left curve bit -- c2290_サリヴァーンの番犬:左カーブ噛み付き","220201080":"c2290_ Salivan Guard Dog: right curve bit -- c2290_サリヴァーンの番犬:右カーブ噛み付き","220210010":"C2021_ dead Dog (small): Bite 1 -- c2021_亡者犬(小):噛みつき1","220210011":"C2021_ dead Dog (small): Bite 2 -- c2021_亡者犬(小):噛みつき2","220210020":"C2021_ dead Dog (small): Jump from a stopped state -- c2021_亡者犬(小):止まった状態からの飛びかかり","220210030":"C2021_ dead Dog (small): Jump from running -- c2021_亡者犬(小):走行からの飛びかかり","220210040":"C2021_ dead Dog (small): bit combo First stage: from the Run -- c2021_亡者犬(小):噛み付きコンボ1段目:走りから","220210050":"C2021_ dead Dog (small): jump (Long distance) -- c2021_亡者犬(小):飛びかかり(遠距離)","220210060":"C2021_ dead Dog (small): from running (long distance) -- c2021_亡者犬(小):飛びかかり(遠距離):走りから","220210070":"C2021_ dead Dog (small): left curve bit -- c2021_亡者犬(小):左カーブ噛み付き","220210080":"C2021_ dead Dog (small): right curve bit -- c2021_亡者犬(小):右カーブ噛み付き","220300110":"c2030_ Salivan Reaper: Combo 1-1 One-handed rounding ① -- c2030_サリヴァーンの死神:コンボ1-1片手切り上げ①","220300120":"c2030_ Salivan Reaper: Combo 1-2 one handed rounding ② -- c2030_サリヴァーンの死神:コンボ1-2片手切り上げ②","220300130":"c2030_ Salivan Reaper: Combo 1-3 Hand Saigi -- c2030_サリヴァーンの死神:コンボ1-3片手薙ぎ払い","220300140":"C2030_ Salivan's death: a distance-packed attack -- c2030_サリヴァーンの死神:距離詰め攻撃","220300150":"c2030_ Salivan Reaper: Combo 2-1 reverse Kesa cut ① -- c2030_サリヴァーンの死神:コンボ2-1逆袈裟切り①","220300160":"c2030_ Salivan Reaper: Combo 2-2 reverse Kesa cut ② -- c2030_サリヴァーンの死神:コンボ2-2逆袈裟切り②","220300170":"c2030_ Salivan Reaper: Combo 2-3 Hand Rounding -- c2030_サリヴァーンの死神:コンボ2-3片手切り上げ","220300180":"c2030_ Salivan Reaper: Combo 2-4 Hand Saigi -- c2030_サリヴァーンの死神:コンボ2-4片手薙ぎ払い","220300190":"C2030_ Salivan's death: Strong attack -- c2030_サリヴァーンの死神:強攻撃","220300210":"C2030_ Salivan's death: the Revolving Arts (loop) -- c2030_サリヴァーンの死神:回転アーツ(ループ)","220300220":"The death of c2030_ Salivan: the rotating arts (finish) -- c2030_サリヴァーンの死神:回転アーツ(フィニッシュ)","220300310":"c2030_ Salivan Reaper: Combo 1-1 Both hands rounded up ①: Blade -- c2030_サリヴァーンの死神:コンボ1-1両手切り上げ①:刃","220300311":"c2030_ Salivan Reaper: Combo 1-1 Both hands rounded up ①: hilt -- c2030_サリヴァーンの死神:コンボ1-1両手切り上げ①:柄","220300320":"c2030_ Salivan Reaper: Combo 1-2 Hands up ②: Blade -- c2030_サリヴァーンの死神:コンボ1-2両手切り上げ②:刃","220300321":"c2030_ Salivan Reaper: Combo 1-2 hands-up ②: Handle -- c2030_サリヴァーンの死神:コンボ1-2両手切り上げ②:柄","220300330":"c2030_ Salivan Reaper: Combo 1-3 One handed rounding ①: Blade -- c2030_サリヴァーンの死神:コンボ1-3片手切り上げ①:刃","220300331":"c2030_ Salivan Reaper: Combo 1-3 One handed rounding ①: hilt -- c2030_サリヴァーンの死神:コンボ1-3片手切り上げ①:柄","220300340":"c2030_ Salivan Reaper: Combo 1-4 hand rounded ②: Blade -- c2030_サリヴァーンの死神:コンボ1-4片手切り上げ②:刃","220300341":"c2030_ Salivan Reaper: Combo 1-4 One handed rounding ②: hilt -- c2030_サリヴァーンの死神:コンボ1-4片手切り上げ②:柄","220300350":"c2030_ Salivan Reaper: Combo 1-5 Two-handed devaluation: Blade -- c2030_サリヴァーンの死神:コンボ1-5両手切り下げ:刃","220300351":"The death of c2030_ Salivan: Combo 1-5 Two-handed devaluation: hilt -- c2030_サリヴァーンの死神:コンボ1-5両手切り下げ:柄","220300360":"c2030_ Salivan Reaper: Combo 2-1 hands down: Blade -- c2030_サリヴァーンの死神:コンボ2-1両手踏み込み切り:刃","220300361":"c2030_ Salivan Reaper: Combo 2-1 hands down: Handle -- c2030_サリヴァーンの死神:コンボ2-1両手踏み込み切り:柄","220300370":"c2030_ Salivan Reaper: Combo 2-2 hand Saigi: Blade -- c2030_サリヴァーンの死神:コンボ2-2片手薙ぎ払い:刃","220300371":"c2030_ Salivan Reaper: Combo 2-2 hand Saigi: Hilt -- c2030_サリヴァーンの死神:コンボ2-2片手薙ぎ払い:柄","220300380":"C2030_ Salivan's death: two-handed distance-packed attack: Blade -- c2030_サリヴァーンの死神:両手距離詰め攻撃:刃","220300381":"C2030_ Salivan's death: two-handed distance-packed attack: hilt -- c2030_サリヴァーンの死神:両手距離詰め攻撃:柄","220300390":"c2030_ Salivan Reaper: Combo 3-1 Two-handed attack: Blade -- c2030_サリヴァーンの死神:コンボ3-1両手引き寄せ攻撃:刃","220300391":"c2030_ Salivan Reaper: Combo 3-1 hand-drawn attack: hilt -- c2030_サリヴァーンの死神:コンボ3-1両手引き寄せ攻撃:柄","220300400":"c2030_ Salivan Reaper: Combo 3-2 both hands Saigi: Blade -- c2030_サリヴァーンの死神:コンボ3-2両手薙ぎ払い:刃","220300401":"c2030_ Salivan Reaper: Combo 3-2 Both hands Saigi: hilt -- c2030_サリヴァーンの死神:コンボ3-2両手薙ぎ払い:柄","220300410":"c2030_ Salivan Reaper: Combo 3-3 Two-handed lift: Blade -- c2030_サリヴァーンの死神:コンボ3-3両手斬り上げ:刃","220300411":"C2030_ Salivan's death: Combo 3-3 Hands up: Handle -- c2030_サリヴァーンの死神:コンボ3-3両手斬り上げ:柄","220300420":"The death of c2030_ Salivan: A round attack: Blade -- c2030_サリヴァーンの死神:回りこみ攻撃:刃","220300421":"The death of c2030_ Salivan: A round attack: pattern -- c2030_サリヴァーンの死神:回りこみ攻撃:柄","220300430":"c2030_ Salivan Reaper: Extrusion attack: Blade -- c2030_サリヴァーンの死神:押し出し攻撃:刃","220300431":"c2030_ Salivan Reaper: Extruded attack: Hilt -- c2030_サリヴァーンの死神:押し出し攻撃:柄","220300440":"C2030_ Salivan's Reaper: Distance packed strong attack: Blade -- c2030_サリヴァーンの死神:距離詰め強攻撃:刃","220300450":"C2030_ Salivan's death: [Miracle] dark Moon Light Sword -- c2030_サリヴァーンの死神:【奇跡】暗月の光の剣","220300900":"c2030_ Salivan Reaper: Shields -- c2030_サリヴァーンの死神:盾","220400100":"Right hand slams -- 右手叩きつけ","220400110":"Left hand slams -- 左手叩きつけ","220400120":"Right hand finish -- 右手フィニッシュ","220400130":"Rising body Press -- 立ち上がりボディプレス","220400140":"Right direction -- 倒れ込み(右方向)","220400150":"Collapsed (right direction) ② -- 倒れ込み(右方向)②","220400160":"Fall Down (left) -- 倒れ込み(左方向)","220400170":"Collapsed (left direction) ② -- 倒れ込み(左方向)②","220400180":"Butt Press -- お尻プレス","220400200":"Start throwing -- 投げ始動","220400201":"Throwing attack (pressure damage) -- 投げ攻撃(圧迫ダメージ)","220400202":"Throwing attack (finish) -- 投げ攻撃(フィニッシュ)","220400210":"Right payment -- 右払い","220400220":"Left payment -- 左払い","220600010":"Right whack -- 右手薙ぎ","220600020":"Left hand Whack -- 左手薙ぎ","220600030":"Throwing start technique (jumped) -- 投げ始動技(飛びつき)","220600040":"Throwing start Technique (melee) -- 投げ始動技(近接)","220600070":"Rush _1 -- ラッシュ_1段目","220600080":"Melee Maggots -- 近接ウジ吐き","220600090":"Body throwing -- 本体出現投げ","220600100":"Throwing attack (pressure damage) -- 投げ攻撃(圧迫ダメージ)","220700010":"C2070_ Prisoner of the Dungeon (bare hands): Right hand scratching ① -- c2070_地下牢の囚人(素手):右手引っ掻き①","220700020":"C2070_ Prisoner of the Dungeon (bare hands): Right hand scratching ② -- c2070_地下牢の囚人(素手):右手引っ掻き②","220700030":"Prisoner of c2070_ Dungeon (bare hands): Left hand scratching -- c2070_地下牢の囚人(素手):左手引っ掻き","220700040":"Prisoner of c2070_ Dungeon (bare hands): continuous scratching 1 -- c2070_地下牢の囚人(素手):連続引っ掻き1","220700041":"Prisoner of c2070_ Dungeon (bare hands): Continuous scratching 2 -- c2070_地下牢の囚人(素手):連続引っ掻き2","220700042":"Prisoner of c2070_ Dungeon (bare hands): continuous scratching 3 -- c2070_地下牢の囚人(素手):連続引っ掻き3","220700043":"Prisoner of c2070_ Dungeon (bare hands): continuous scratching 4 -- c2070_地下牢の囚人(素手):連続引っ掻き4","220700060":"C2070_ Prisoner of the Dungeon (bare hands): Grab attack ① -- c2070_地下牢の囚人(素手):掴み攻撃①","220700070":"C2070_ Prisoner of the Dungeon (bare hands): Grab attack ② -- c2070_地下牢の囚人(素手):掴み攻撃②","220700080":"Prisoner of the c2070_ Dungeon (bare hands): Fall attack -- c2070_地下牢の囚人(素手):倒れ込み攻撃","220700090":"C2070_ Prisoner of the Dungeon (bare hands): jumping -- c2070_地下牢の囚人(素手):跳びかかり","220700200":"Prisoner of the C2070_ Dungeon (Spear): poked ① -- c2070_地下牢の囚人(槍):突き①","220700210":"Prisoner of the C2070_ Dungeon (Spear): poked ② -- c2070_地下牢の囚人(槍):突き②","220700220":"C2070_ Prisoner of the Dungeon (Spear): Thrust down -- c2070_地下牢の囚人(槍):突き下ろし","220700230":"Prisoner of the C2070_ Dungeon (spear): Saigi -- c2070_地下牢の囚人(槍):薙ぎ払い","220700240":"Prisoner of c2070_ Dungeon (Spear): Left hand scratching -- c2070_地下牢の囚人(槍):左手引っ掻き","220700260":"C2070_ Prisoner of the Dungeon (Spear): Dragon weapon -- c2070_地下牢の囚人(槍):ドラゴンウェポン","220700400":"Prisoner of the c2070_ Dungeon (Dagger): Crossing ① -- c2070_地下牢の囚人(短剣):横切り①","220700410":"Prisoner of the c2070_ Dungeon (Dagger): Crossing ② -- c2070_地下牢の囚人(短剣):横切り②","220700420":"Prisoner of the c2070_ Dungeon (Dagger): Crossing ③ -- c2070_地下牢の囚人(短剣):横切り③","220700430":"Prisoner of the c2070_ Dungeon (Dagger): Cut down ① -- c2070_地下牢の囚人(短剣):切り下ろし①","220700440":"Prisoner of the c2070_ Dungeon (Dagger): Cut down ② -- c2070_地下牢の囚人(短剣):切り下ろし②","220700450":"Prisoner of the c2070_ Dungeon (Dagger): Continuous thrust ① -- c2070_地下牢の囚人(短剣):連続突き①","220700451":"Prisoner of the c2070_ Dungeon (Dagger): Continuous thrust ② -- c2070_地下牢の囚人(短剣):連続突き②","220700452":"Prisoner of the c2070_ Dungeon (Dagger): Continuous thrust ③ -- c2070_地下牢の囚人(短剣):連続突き③","220700470":"Prisoner of c2070_ Dungeon (Dagger): Continuous slash ① -- c2070_地下牢の囚人(短剣):連続斬り①","220700471":"Prisoner of c2070_ Dungeon (Dagger): Continuous slash ② -- c2070_地下牢の囚人(短剣):連続斬り②","220700472":"Prisoner of c2070_ Dungeon (Dagger): Continuous slash ③ -- c2070_地下牢の囚人(短剣):連続斬り③","220700473":"Prisoner of c2070_ Dungeon (Dagger): Continuous slash ④ -- c2070_地下牢の囚人(短剣):連続斬り④","220700700":"Prisoners of the C2070_ Dungeon (Common): Breath -- c2070_地下牢の囚人(共通):ブレス","220800100":"C2020_ dead Dog (maggots belly): Bite 1 -- c2020_亡者犬(蛆腹):噛みつき1","220800110":"C2020_ dead Dog (maggots belly): Bite 2 -- c2020_亡者犬(蛆腹):噛みつき2","220800120":"C2020_ dead Dog (maggots belly): Bite rush -- c2020_亡者犬(蛆腹):噛みつきラッシュ","220800130":"C2020_ dead Dog (maggots belly): maggots spitting -- c2020_亡者犬(蛆腹):蛆吐き","220800140":"C2020_ dead Dog (maggots belly): throwing transition -- c2020_亡者犬(蛆腹):投げ遷移","220800141":"C2020_ dead Dog (maggots belly): tossed -- c2020_亡者犬(蛆腹):投げ","220900100":"c2090_ Dragon: Lining -- c2090_竜の御使:裏打ち","220900110":"c2090_ Dragon: Attack _1 on the spot -- c2090_竜の御使:その場で伸びる攻撃_1撃目","220900111":"c2090_ Dragon: Attack on the spot -- c2090_竜の御使:その場で伸びる攻撃_2撃目","220900120":"The use of the c2090_ Dragon: a stretch attack -- c2090_竜の御使:伸びる攻撃","220900130":"The use of the c2090_ Dragon: Thrusting stick -- c2090_竜の御使:杖突き刺し","220900140":"The c2090_ of the Dragon: the tail payment _ the whole tail -- c2090_竜の御使:尻尾払い_尻尾全体","220900141":"c2090_ Dragon: Tail tip -- c2090_竜の御使:尻尾払い_尻尾先端","220900150":"The use of the c2090_ Dragon: the reservoir beating -- c2090_竜の御使:溜め叩き潰し","220900160":"c2090_ Dragon: Additional payment -- c2090_竜の御使:追加払い","220900170":"c2090_ Dragon: knocked back against -- c2090_竜の御使:叩き付け","220900180":"The use of the c2090_ Dragon: trampling weapons -- c2090_竜の御使:踏みつけ_武器","220900181":"The use of the c2090_ Dragon: trampled left foot -- c2090_竜の御使:踏みつけ_左足","220900182":"The use of c2090_ Dragon: trampling _ right foot -- c2090_竜の御使:踏みつけ_右足","220900183":"The use of the c2090_ Dragon: Trampling _ Body -- c2090_竜の御使:踏みつけ_身体","220900190":"c2090_ Dragon: Baby -- c2090_竜の御使:あかちゃんつぶし","220900300":"c2090_ Dragon: Neck whack Bit -- c2090_竜の御使:首薙ぎ噛み付き","220900301":"c2090_ Dragon: Neck whack Bit chase -- c2090_竜の御使:首薙ぎ噛み付き・追撃","220900310":"c2090_ Dragon: Front Jump bit _ mouth -- c2090_竜の御使:前ジャンプ噛み付き_口","220900311":"c2090_ Dragon: Front Jump bit _ left hand -- c2090_竜の御使:前ジャンプ噛み付き_左手","220900312":"c2090_ Dragon: Front Jump bit _ right hand -- c2090_竜の御使:前ジャンプ噛み付き_右手","220900313":"c2090_ Dragon: Front jump bit body -- c2090_竜の御使:前ジャンプ噛み付き_身体","220900320":"c2090_ Dragon: Crush -- c2090_竜の御使:叩き潰し","220900330":"c2090_ Dragon: Whack Bit _ whack -- c2090_竜の御使:薙ぎ噛み付き_薙ぎ","220900331":"c2090_ Dragon: Whack bit _ bite -- c2090_竜の御使:薙ぎ噛み付き_噛みつき","220900340":"The use of c2090_ Dragon: Rush -- c2090_竜の御使:突進","220900341":"C2090_ Dragon: Rush _ Bite -- c2090_竜の御使:突進_噛みつき","220900350":"c2090_ Dragon: Through inversion _ bite -- c2090_竜の御使:通り抜け反転_噛みつき","220900351":"The use of the c2090_ Dragon: through inversion _ body -- c2090_竜の御使:通り抜け反転_身体","220900360":"c2090_ Dragon: Tail Saigi 360 ° _ Tail -- c2090_竜の御使:尻尾薙ぎ払い360°_尻尾","220900361":"c2090_ Dragon: 360 ° _ Body Saigi Tail -- c2090_竜の御使:尻尾薙ぎ払い360°_身体","220900370":"The Angel of the c2090_ Dragon: Tail turned tail -- c2090_竜の御使:尻尾振り向き_尻尾","220900371":"c2090_ Dragon: Tail turned _ slams -- c2090_竜の御使:尻尾振り向き_叩きつけ","220900380":"c2090_ Dragon: Standing rampage _ Bite -- c2090_竜の御使:立ち暴れ_噛みつき","220900381":"c2090_ Dragon: Standing rampage _1 -- c2090_竜の御使:立ち暴れ_1撃目","220900382":"c2090_ Dragon: Standing rampage -- c2090_竜の御使:立ち暴れ_2撃目","220900383":"c2090_ Dragon: Standing Rampage _3 -- c2090_竜の御使:立ち暴れ_3撃目","220900384":"c2090_ Dragon: Standing rampage _4 -- c2090_竜の御使:立ち暴れ_4撃目","220900385":"c2090_ Dragon: Standing rampage _5 -- c2090_竜の御使:立ち暴れ_5撃目","220900390":"c2090_ Dragon: Airborne Breath _ Body -- c2090_竜の御使:空中ブレス_身体","220900391":"c2090_ Dragon: Aerial Breath _ Right hand -- c2090_竜の御使:空中ブレス_右手","220900392":"c2090_ Dragon: Aerial Breath _ Left hand -- c2090_竜の御使:空中ブレス_左手","220900700":"The use of c2090_ Dragon: Straight Breath -- c2090_竜の御使:直線ブレス","220900710":"The use of c2090_ Dragon: Whack Breath -- c2090_竜の御使:薙ぎブレス","220900720":"c2090_ Dragon: Aerial Breath -- c2090_竜の御使:空中ブレス","221000100":"A flying attack -- 飛びかかり攻撃","221000110":"Jump Throwing transition -- ジャンプ投げ遷移","221000120":"Rising Dash attack -- 立ち上がりダッシュ攻撃","221000130":"A violent right hand one on the spot -- その場で暴れる右手1","221000131":"A violent right hand 2_1 on the spot -- その場で暴れる右手2_1","221000132":"A violent right hand 2_2 on the spot -- その場で暴れる右手2_2","221000133":"Violent on the spot right hand three -- その場で暴れる右手3","221000134":"Seven violent right hand on the spot -- その場で暴れる右手7","221000135":"A violent right hand 9_1 on the spot -- その場で暴れる右手9_1","221000136":"A violent right hand 9_2 on the spot -- その場で暴れる右手9_2","221000137":"Ten violent right hand on the spot -- その場で暴れる右手10","221000138":"One left hand violent on the spot -- その場で暴れる左手1","221000139":"2_1 left hand violent on the spot -- その場で暴れる左手2_1","221000140":"2_2 left hand violent on the spot -- その場で暴れる左手2_2","221000141":"Three left hand violent on the spot -- その場で暴れる左手3","221000142":"Violent on the spot left hand four -- その場で暴れる左手4","221000143":"Nine violent left hand on the spot -- その場で暴れる左手9","221000144":"Ten violent left hand on the spot -- その場で暴れる左手10","221000700":"Spit something Out -- 何かを吐く","221100010":"Bite 1 -- かみつき1","221100020":"Bite 2 -- かみつき2","221100030":"Kari -- 飛び掛かり","221100040":"Scratching -- 引っ掻き","221100050":"Per -- 体当たり","221100060":"Large bite -- 大口噛みつき","221200010":"Right scratching -- 右引っ掻き","221200020":"Left scratching -- 左引っ掻き","221200030":"Pre Kick -- 前蹴り","221200040":"Rolling Sobat -- ローリングソバット","221200050":"Hug: Throwing Start -- 抱きつく:投げ始動","221200051":"Hug: Throwing damage -- 抱きつく:投げダメージ","221200110":"Jumped: Throwing start -- 飛びつき:投げ始動","221200111":"Jumped: Throwing damage -- 飛びつき:投げダメージ","221200120":"Rear bit: Throwing start -- 背面噛み付き:投げ始動","221200121":"Rear bit: Throw damage -- 背面噛み付き:投ダメージ","221200130":"Spitting Spit -- 唾吐き","221200210":"Mimicry throw 1: Start throwing -- 擬態投げ1:投げ始動","221200211":"Mimicry throw 1: Throwing damage -- 擬態投げ1:投げダメージ","221200220":"Mimicry throw 2: Start throwing -- 擬態投げ2:投げ始動","221200221":"Mimicry throw 2: Throwing damage -- 擬態投げ2:投ダメージ","221300010":"Before ① to shove a bone -- 骨を突き出す① 前","221300020":"After ② to shove the bone -- 骨を突き出す② 後","221300030":"Shove a bone in all directions -- 全方向に骨を突き出す","221300040":"Falling into a crowded attack -- 倒れこみ攻撃","221300041":"Falling into the attack and throwing damage -- 倒れこみ攻撃 投げダメージ","221300050":"③ left to shove bones -- 骨を突き出す③ 左","221300060":"④ right to shove a bone -- 骨を突き出す④ 右","221300070":"Special waiting → Drop throw judgment -- 特殊待機→落下投げ 判定","221300071":"Special wait → drop throwing -- 特殊待機→落下投げ 投げ","221400010":"Petrified Breath -- 石化ブレス","221400020":"Jump & Breath -- ジャンプ&ブレス","221400021":"Jump & Breath Landing -- ジャンプ&ブレス 着弾","221500010":"Disappear -- 消える","221600010":"① (small): hitting with a cane -- 蝕を呼ぶもの(小):杖で殴る①","221600011":"② (small): hitting with a cane -- 蝕を呼ぶもの(小):杖で殴る②","221600020":"Eclipse (small): Getaway -- 蝕を呼ぶもの(小):逃走","221600030":"What we call Eclipse (small): Summon -- 蝕を呼ぶもの(小):召喚","221800010":"c2180_ Maggots: Head Butt -- c2180_蛆人:頭突き","221800020":"C2180_ Maggots: Heavily -- c2180_蛆人:のしかかり","221800030":"c2180_ Maggots: Kari -- c2180_蛆人:飛び掛かり","221800031":"C2180_ maggots: Jumping two steps -- c2180_蛆人:跳びかかり2段","221800040":"C2180_ Maggots: Vomit spitting -- c2180_蛆人:ゲロ吐き","221800110":"C2180_ Maggots: Magic -- c2180_蛆人:魔法","221800200":"C2180_ Maggots: Fire spreading -- c2180_蛆人:延焼","221900100":"C2190_ Gargoyle (Light): Saigi [Weapon] -- c2190_ガーゴイル(灯火):薙ぎ払い【武器】","221900110":"C2190_ Gargoyle (Light): slams [weapon] -- c2190_ガーゴイル(灯火):叩きつけ【武器】","221900120":"C2190_ Gargoyle (Light): Guard posture: slams [weapon] -- c2190_ガーゴイル(灯火):ガード体勢:叩きつけ【武器】","221900130":"C2190_ Gargoyle (Light): Guard Posture: Large ignition [weapon] -- c2190_ガーゴイル(灯火):ガード体勢:大発火【武器】","221900140":"C2190_ Gargoyle (Light): Slams from the sky [weapon] -- c2190_ガーゴイル(灯火):上空から叩きつけ【武器】","221900141":"C2190_ Gargoyle (Light): Slams from the sky [body] -- c2190_ガーゴイル(灯火):上空から叩きつけ【体】","221900150":"C2190_ Gargoyle (Light): Fire attack from above [weapon] -- c2190_ガーゴイル(灯火):上空から発火攻撃【武器】","221900151":"C2190_ Gargoyle (Light): Fire attack from the sky [body] -- c2190_ガーゴイル(灯火):上空から発火攻撃【体】","221900160":"C2190_ Gargoyle (Light): Inverted from the sky [weapon] -- c2190_ガーゴイル(灯火):上空から反転して叩きつけ【武器】","221900161":"C2190_ Gargoyle (Light): Inverted from the sky [body] -- c2190_ガーゴイル(灯火):上空から反転して叩きつけ【体】","221900170":"C2190_ Gargoyle (Light): Additional Saigi [weapon] -- c2190_ガーゴイル(灯火):追加薙ぎ払い【武器】","221900180":"C2190_ Gargoyle (Light): previous step slapping [weapon] -- c2190_ガーゴイル(灯火):前ステップ叩き【武器】","221900181":"C2190_ Gargoyle (Light): Front step slapping [body] -- c2190_ガーゴイル(灯火):前ステップ叩き【体】","221900190":"C2190_ Gargoyle (Light): Whack falling [weapon] -- c2190_ガーゴイル(灯火):薙ぎ下がり【武器】","221900191":"C2190_ Gargoyle (Light): Whack falling [body] -- c2190_ガーゴイル(灯火):薙ぎ下がり【体】","221900300":"C2190_ Gargoyle (Spear): Thrust 1-1 [Weapon] -- c2190_ガーゴイル(槍):突き1-1【武器】","221900301":"C2190_ Gargoyle (Spear): Thrust 1-2: Strong thrust [Weapon] -- c2190_ガーゴイル(槍):突き1-2:強突き【武器】","221900302":"C2190_ Gargoyle (Spear): Butt 1-3: Poke slams [weapon: thrust] -- c2190_ガーゴイル(槍):突き1-3:突き飛行叩きつけ【武器:突き】","221900303":"C2190_ Gargoyle (Spear): Butt 1-3: Poke slams [weapon: slapping] -- c2190_ガーゴイル(槍):突き1-3:突き飛行叩きつけ【武器:叩き】","221900304":"C2190_ Gargoyle (Spear): Butt 1-3: Poke slams [body] -- c2190_ガーゴイル(槍):突き1-3:突き飛行叩きつけ【体】","221900310":"C2190_ Gargoyle (Spear): rush [Weapon] -- c2190_ガーゴイル(槍):突進【武器】","221900311":"C2190_ Gargoyle (Spear): Rush [body] -- c2190_ガーゴイル(槍):突進【体】","221900320":"C2190_ Gargoyle (Spear): Guard Posture: Shield tock [Weapon] -- c2190_ガーゴイル(槍):ガード体勢:盾チク【武器】","221900321":"C2190_ Gargoyle (Spear): Guard Posture: Shield tock [brandishes attack before thrusting] -- c2190_ガーゴイル(槍):ガード体勢:盾チク【突き刺し前ふりまわし攻撃】","221900330":"C2190_ Gargoyle (Spear): Guard Posture: rush [weapon] -- c2190_ガーゴイル(槍):ガード体勢:突進【武器】","221900331":"C2190_ Gargoyle (Spear): Guard Posture: rush [body] -- c2190_ガーゴイル(槍):ガード体勢:突進【体】","221900340":"C2190_ Gargoyle (Spear): Swinging from the sky [weapon] -- c2190_ガーゴイル(槍):上空から振り上げ【武器】","221900341":"C2190_ Gargoyle (Spear): Swinging from the sky [body] -- c2190_ガーゴイル(槍):上空から振り上げ【体】","221900350":"C2190_ Gargoyle (Spear): Dive attack [weapon] aiming from the sky -- c2190_ガーゴイル(槍):上空から狙って急降下攻撃【武器】","221900351":"C2190_ Gargoyle (Spear): Dive attack [body] aiming from the sky -- c2190_ガーゴイル(槍):上空から狙って急降下攻撃【体】","221900360":"C2190_ Gargoyle (Spear): continuous thrust from the Sky 1 [weapon] -- c2190_ガーゴイル(槍):上空から連続突き1【武器】","221900361":"C2190_ Gargoyle (Spear): continuous thrust from the Sky 2 [weapon] -- c2190_ガーゴイル(槍):上空から連続突き2【武器】","221900362":"C2190_ Gargoyle (Spear): continuous thrust from the Sky 3 [weapon] -- c2190_ガーゴイル(槍):上空から連続突き3【武器】","221900363":"C2190_ Gargoyle (Spear): continuous thrust from the sky [body] -- c2190_ガーゴイル(槍):上空から連続突き【体】","221900370":"C2190_ Gargoyle (Spear): Additional whack [weapon] -- c2190_ガーゴイル(槍):追加薙ぎ【武器】","221900380":"C2190_ Gargoyle (Spear): gliding thrust [weapon] -- c2190_ガーゴイル(槍):滑空突き【武器】","221900381":"C2190_ Gargoyle (Spear): gliding thrusting [flying body] -- c2190_ガーゴイル(槍):滑空突き【飛行中体】","221900382":"C2190_ Gargoyle (Spear): gliding thrust [body] -- c2190_ガーゴイル(槍):滑空突き【体】","221900600":"c2190_ Gargoyle (Common): On guard Solving _ Wings -- c2190_ガーゴイル(共通):ガード解き時_翼","221900700":"C2190_ Gargoyle (Light): Saigi: Fire Bullets -- c2190_ガーゴイル(灯火):薙ぎ払い:炎弾","221900701":"C2190_ Gargoyle (Light): Saigi: Flames after landing -- c2190_ガーゴイル(灯火):薙ぎ払い:炎弾着弾後","221900702":"C2190_ Gargoyle (Light): Saigi: After the Flames incidence -- c2190_ガーゴイル(灯火):薙ぎ払い:炎弾着弾後その後","221900705":"C2190_ Gargoyle (Light): Additional Saigi: Fire bullets -- c2190_ガーゴイル(灯火):追加薙ぎ払い:炎弾","221900706":"C2190_ Gargoyle (Light): Whack Fall: Fire bullets -- c2190_ガーゴイル(灯火):薙ぎ下がり:炎弾","221900710":"C2190_ Gargoyle (Light): Slams: Fire spray -- c2190_ガーゴイル(灯火):叩きつけ:火飛沫","221900711":"C2190_ Gargoyle (Light): slams: Fire splashes then -- c2190_ガーゴイル(灯火):叩きつけ:火飛沫その後","221900720":"C2190_ Gargoyle (Light): Guard Posture: Fire Spray (Large) -- c2190_ガーゴイル(灯火):ガード体勢:火飛沫(大)前","221900721":"C2190_ Gargoyle: Guard Posture: Fire Spray (Large) right -- c2190_ガーゴイル(灯火):ガード体勢:火飛沫(大)右","221900722":"C2190_ Gargoyle (Light): Guard Posture: Fire Spray (Large) left -- c2190_ガーゴイル(灯火):ガード体勢:火飛沫(大)左","221900730":"C2190_ Gargoyle (Light): Fire attack from above -- c2190_ガーゴイル(灯火):上空から発火攻撃","221900900":"C2190_ Gargoyle (Light): Guard -- c2190_ガーゴイル(灯火):ガード","221900901":"C2190_ Gargoyle (Light): Guard (Strong) -- c2190_ガーゴイル(灯火):ガード(強)","222000110":"C2200_a3001_ slams A -- c2200_a3001_叩きつけA","222000120":"C2200_a3002_ stretched up pounding 1 -- c2200_a3002_伸び上がって叩きつける1","222000130":"C2200_a3003_ stretched up and pounding 2 -- c2200_a3003_伸び上がって叩きつける2","222000140":"c2200_a3004_ bit -- c2200_a3004_噛み付き","222010100":"C2201_a3000_ Dive into the ground -- c2201_a3000_地中に潜る","222010110":"C2201_a3001_ slams A -- c2201_a3001_叩きつけA","222010120":"C2201_a3002_ stretched up pounding 1 -- c2201_a3002_伸び上がって叩きつける1","222010130":"C2201_a3003_ stretched up and pounding 2 -- c2201_a3003_伸び上がって叩きつける2","222010140":"c2201_a3004_ bit -- c2201_a3004_噛み付き","222010150":"c2201_a3005_ Rush bit (throwing and grabbing) -- c2201_a3005_突進噛み付き(投げ・つかみ)","222010151":"c2201_a3005_ Rush bit (throwing and fuselage damage) -- c2201_a3005_突進噛み付き(投げ・胴体ダメージ)","222010152":"c2201_a3005_ Rush bit (throwing and throwing damage) -- c2201_a3005_突進噛み付き(投げ・投げダメージ)","222010300":"C2201_a100_3000_ out on the ground -- c2201_a100_3000_地上に出る","222100100":"c2210_ Zombie Crow (Dagger Downer): Overhang -- c2210_ゾンビカラス(短剣ダウナー):突出し","222100110":"c2210_ Zombie Crow (Dagger Downer): The Sword Falling -- c2210_ゾンビカラス(短剣ダウナー):斬り下がり","222100120":"c2210_ Zombie Crow (Dagger Downer): Single slash -- c2210_ゾンビカラス(短剣ダウナー):単発斬り","222100200":"c2210_ Zombie Crow (Scythe Downer): Saigi -- c2210_ゾンビカラス(大鎌ダウナー):薙ぎ払い","222100210":"c2210_ Zombie Crow (Scythe Downer): slams -- c2210_ゾンビカラス(大鎌ダウナー):叩きつけ","222100220":"c2210_ Zombie Crow (Scythe Downer): Extrusion -- c2210_ゾンビカラス(大鎌ダウナー):押し出し","222100300":"c2210_ Zombie Crow (Dagger Upper): Ran through rush-1 -- c2210_ゾンビカラス(短剣アッパー):走り抜けラッシュ - 1","222100301":"c2210_ Zombie Crow (Dagger Upper): Ran through the rush-2 -- c2210_ゾンビカラス(短剣アッパー):走り抜けラッシュ - 2","222100302":"c2210_ Zombie Crow (Dagger Upper): Ran through rush-3 -- c2210_ゾンビカラス(短剣アッパー):走り抜けラッシュ - 3","222100303":"c2210_ Zombie Crow (Dagger Upper): Ran through rush-4 -- c2210_ゾンビカラス(短剣アッパー):走り抜けラッシュ - 4","222100304":"c2210_ Zombie Crow (Dagger Upper): Ran through rush-5 -- c2210_ゾンビカラス(短剣アッパー):走り抜けラッシュ - 5","222100310":"c2210_ Zombie Crow (Dagger Upper): Take a stab with a jump-1 -- c2210_ゾンビカラス(短剣アッパー):跳びかかり付き刺し - 1","222100311":"c2210_ Zombie Crow (Dagger Upper): Take a stab with a jump-2 -- c2210_ゾンビカラス(短剣アッパー):跳びかかり付き刺し - 2","222100320":"c2210_ Zombie Crow (dagger Upper): Jumping attack -- c2210_ゾンビカラス(短剣アッパー):跳躍攻撃","222100330":"c2210_ Zombie Crow (Dagger Upper): Right Hand daggers Combo 1 -- c2210_ゾンビカラス(短剣アッパー):右手短剣払いコンボ1","222100340":"c2210_ Zombie Crow (Dagger Upper): Right Hand daggers Combo 2 -- c2210_ゾンビカラス(短剣アッパー):右手短剣払いコンボ2","222100350":"c2210_ Zombie Crow (Dagger Upper): Right Hand daggers Combo 3-1 -- c2210_ゾンビカラス(短剣アッパー):右手短剣払いコンボ3 - 1","222100351":"c2210_ Zombie Crow (Dagger Upper): Right Hand daggers Combo 3-2 -- c2210_ゾンビカラス(短剣アッパー):右手短剣払いコンボ3 - 2","222100352":"c2210_ Zombie Crow (Dagger Upper): Right Hand daggers Combo 3-3 -- c2210_ゾンビカラス(短剣アッパー):右手短剣払いコンボ3 - 3","222100353":"c2210_ Zombie Crow (Dagger Upper): Right Hand daggers Combo 3-4 -- c2210_ゾンビカラス(短剣アッパー):右手短剣払いコンボ3 - 4","222100354":"c2210_ Zombie Crow (Dagger Upper): Right Hand daggers Combo 3-5 -- c2210_ゾンビカラス(短剣アッパー):右手短剣払いコンボ3 - 5","222100360":"c2210_ Zombie Crow (Dagger Upper): Anti-aircraft attack-1 -- c2210_ゾンビカラス(短剣アッパー):対空攻撃 - 1","222100361":"c2210_ Zombie Crow (Dagger Upper): Anti-aircraft attack-2 -- c2210_ゾンビカラス(短剣アッパー):対空攻撃 - 2","222100362":"c2210_ Zombie Crow (Dagger Upper): Anti-aircraft attack-3 -- c2210_ゾンビカラス(短剣アッパー):対空攻撃 - 3","222100363":"c2210_ Zombie Crow (Dagger Upper): Anti-aircraft attack-4 -- c2210_ゾンビカラス(短剣アッパー):対空攻撃 - 4","222100364":"c2210_ Zombie Crow (Dagger Upper): Anti-aircraft attack-5 (left hand) -- c2210_ゾンビカラス(短剣アッパー):対空攻撃 - 5 (左手)","222100365":"c2210_ Zombie Crow (Dagger Upper): Anti-aircraft attack-6 (right hand) -- c2210_ゾンビカラス(短剣アッパー):対空攻撃 - 6 (右手)","222100370":"c2210_ Zombie Crow (Dagger Upper): 3 consecutive attacks left -- c2210_ゾンビカラス(短剣アッパー):3連撃 左","222100371":"c2210_ Zombie Crow (Dagger Upper): Triple Hammer Right -- c2210_ゾンビカラス(短剣アッパー):3連撃 右","222100400":"c2210_ Zombie Crow (scythe Upper): Jumping and lowering -- c2210_ゾンビカラス(大鎌アッパー):跳びかかり振りおろし","222100410":"c2210_ Zombie Crow (Scythe Upper): Run Kari attack -- c2210_ゾンビカラス(大鎌アッパー):走り飛び掛かり攻撃","222100420":"c2210_ Zombie Crow (Scythe Upper): Saigi First Stage -- c2210_ゾンビカラス(大鎌アッパー):薙ぎ払い1段目","222100430":"c2210_ Zombie Crow (Scythe Upper): Saigi Second Stage -- c2210_ゾンビカラス(大鎌アッパー):薙ぎ払い2段目","222100440":"c2210_ Zombie Crow (Scythe Upper): Shiri -- c2210_ゾンビカラス(大鎌アッパー):袈裟斬り","222100450":"c2210_ Zombie Crow (Scythe Upper): 3 consecutive knocked back against (1st half) -- c2210_ゾンビカラス(大鎌アッパー):3連叩き付け(前半1)","222100451":"c2210_ Zombie Crow (Scythe Upper): 3 consecutive knocked back against (first half 2) -- c2210_ゾンビカラス(大鎌アッパー):3連叩き付け(前半2)","222100460":"c2210_ Zombie Crow (Scythe Upper): 3 consecutive knocked back against (late whack) -- c2210_ゾンビカラス(大鎌アッパー):3連叩き付け(後半薙ぎ)","222100470":"c2210_ Zombie Crow (Scythe Upper): Additional jump attacks -- c2210_ゾンビカラス(大鎌アッパー):追加ジャンプ攻撃","222100500":"c2210_ Zombie Crow (Cane upper): Insane -- c2210_ゾンビカラス(杖アッパー):発狂させ","222100510":"c2210_ Zombie Crow (Cane upper): Magical Flame Arrows -- c2210_ゾンビカラス(杖アッパー):魔法 炎の矢","222100520":"c2210_ Zombie Crow (Cane upper): Slams with cane -- c2210_ゾンビカラス(杖アッパー):杖での叩きつけ","222100530":"c2210_ Zombie Crow (Cane upper): Nagi with a cane -- c2210_ゾンビカラス(杖アッパー):杖でのなぎ払い","222100540":"c2210_ Zombie Crow (Cane upper): Magic Sangi Flame -- c2210_ゾンビカラス(杖アッパー):魔法 薙ぎ払う炎","222300100":"c2230_ Shing: Pressed against baked -- c2230_獄吏:焼きごて押し付け","222300101":"c2230_ Shing: Pressed against a baking iron _ flipped judgment -- c2230_獄吏:焼きごて押し付け_弾かれ判定","222300110":"C2230_ Shing: Bake and move forward -- c2230_獄吏:焼きごて構えて前進","222300111":"c2230_ Shing: A baking iron poised to move forward _ determined -- c2230_獄吏:焼きごて構えて前進_弾かれ判定","222300120":"c2230_ Shing: Petrified Mist (anterior) (head butt) -- c2230_獄吏:石化の霧(前方) (頭突き)","222300130":"c2230_ Shing: Burned and pressed -- c2230_獄吏:焼きごてを押し付ける","222300131":"c2230_ Shing: Pressing a baking iron _ flipped judgment -- c2230_獄吏:焼きごてを押し付ける_弾かれ判定","222300200":"c2230_ Shing: Petrified Mist (forward) -- c2230_獄吏:石化の霧(前方)","222300210":"c2230_ Shing: Petrified Mist (range) -- c2230_獄吏:石化の霧(範囲)","222300300":"c2230_ Shing: Grilled and tossed (frontal damage) -- c2230_獄吏:焼きごて投げ(前面ダメージ)","222300310":"c2230_ Shing: Grilled and tossed (back damage) -- c2230_獄吏:焼きごて投げ(背面ダメージ)","222300900":"Long Distance Magic: A spear of diffuse flames -- 遠距離魔法:拡散する炎の槍","222300910":"Long distance Magic: Diffuse Spear of Fire (pointer) -- 遠距離魔法:拡散する炎の槍(ポインター)","222400100":"C2240_ Full Armor Beast: knocked back against Combo first attack (weapon) -- c2240_フルアーマー獣:叩き付けコンボ初撃(武器)","222400101":"C2240_ Full Armor Beast: knocked back against Combo first attack (body) -- c2240_フルアーマー獣:叩き付けコンボ初撃(体)","222400102":"C2240_ Full Armor Beast: knocked back against combo second firing (weapon) -- c2240_フルアーマー獣:叩き付けコンボ2撃目(武器)","222400103":"C2240_ Full Armor Beast: knocked back against combo second firing (body) -- c2240_フルアーマー獣:叩き付けコンボ2撃目(体)","222400110":"C2240_ Full Armor beast: ground scraping whack (weapon) -- c2240_フルアーマー獣:地削り薙ぎ(武器)","222400111":"C2240_ Full Armor beast: ground scraping whack (body) -- c2240_フルアーマー獣:地削り薙ぎ(体)","222400112":"C2240_ Full Armor beast: ground scraping whack (shockwave) -- c2240_フルアーマー獣:地削り薙ぎ(衝撃波)","222400120":"C2240_ Full Armor Beast: per Body (at rush hour) -- c2240_フルアーマー獣:体当たり(突進時)","222400121":"C2240_ Full Armor Beast: Per Body (click-up) -- c2240_フルアーマー獣:体当たり(かち上げ)","222400130":"C2240_ Full Armor Beast: Body Press (body) -- c2240_フルアーマー獣:ボディプレス(体)","222400131":"C2240_ Full Armor Beast: Body Press (weapon parts, feet) -- c2240_フルアーマー獣:ボディプレス(武器部分、足)","222400132":"C2240_ Full Armor Beast: Body Press (shockwave) -- c2240_フルアーマー獣:ボディプレス(衝撃波)","222400140":"C2240_ Full Armor Beast: Turning Attack (right) -- c2240_フルアーマー獣:旋回攻撃(右)","222400150":"C2240_ Full Armor Beast: Turning Attack (left) -- c2240_フルアーマー獣:旋回攻撃(左)","222400151":"C2240_ Full Armor Beast: Hammer (Arms) -- c2240_フルアーマー獣:鉄槌(腕)","222400152":"C2240_ Full Armor Beast: Hammer (body) -- c2240_フルアーマー獣:鉄槌(体)","222400153":"C2240_ Full Armor beast: Vertical slapping -- c2240_フルアーマー獣:縦叩き","222400154":"C2240_ Full Armor Beast: thrust -- c2240_フルアーマー獣:突き","222400155":"C2240_ Full Armor Beast: Launch attack -- c2240_フルアーマー獣:打ち上げ攻撃","222400156":"C2240_ Full Armor Beast: The right tricky Kesa first Hammer (weapon) -- c2240_フルアーマー獣:右トリッキー袈裟初撃(武器)","222400157":"C2241_ Full Armor Beast: The right tricky Kesa first Hammer (body) -- c2241_フルアーマー獣:右トリッキー袈裟初撃(体)","222400158":"C2240_ Full Armor Beast: The right tricky Kesa second firing (weapon) -- c2240_フルアーマー獣:右トリッキー袈裟2撃目(武器)","222400159":"C2240_ Full Armor Beast: Right tricky Kesa second firing (body) -- c2240_フルアーマー獣:右トリッキー袈裟2撃目(体)","222400160":"C2240_ Full Armor Beast: Left Tricky Kesa first Hammer (weapon) -- c2240_フルアーマー獣:左トリッキー袈裟初撃(武器)","222400161":"C2241_ Full Armor Beast: Left Tricky Kesa first Hammer (body) -- c2241_フルアーマー獣:左トリッキー袈裟初撃(体)","222400162":"C2240_ Full Armor Beast: Left Tricky Kesa second Hammer (weapon) -- c2240_フルアーマー獣:左トリッキー袈裟2撃目(武器)","222400163":"C2240_ Full Armor Beast: Left Tricky Kesa second firing (body) -- c2240_フルアーマー獣:左トリッキー袈裟2撃目(体)","222400164":"c2240_ Full Armor: per sprinter (weapon) -- c2240_フルアーマー獣:短距離体当たり(武器)","222400165":"C2241_ Full Armor Beast: short-range body per (body) -- c2241_フルアーマー獣:短距離体当たり(体)","222400166":"C2240_ Full Armor Beast: Lunge (Retrospective) (Weapon 1) -- c2240_フルアーマー獣:突進(振り返り)(武器1)","222400167":"C2240_ Full Armor Beast: Lunge (Retrospective) (Weapon 2) -- c2240_フルアーマー獣:突進(振り返り)(武器2)","222400168":"C2241_ Full Armor Beast: Lunge (Retrospective) (Body 1) -- c2241_フルアーマー獣:突進(振り返り)(体1)","222400169":"C2242_ Full Armor Beast: Lunge (Retrospective) (Body 2) -- c2242_フルアーマー獣:突進(振り返り)(体2)","222400170":"C2240_ Full Armor Beast: Rush (Continuous) (Weapon 1) -- c2240_フルアーマー獣:突進(連続)(武器1)","222400171":"C2240_ Full Armor Beast: Rush (Continuous) (Weapon 2) -- c2240_フルアーマー獣:突進(連続)(武器2)","222400172":"C2241_ Full Armor Beast: Rush (Continuous) (body 1) -- c2241_フルアーマー獣:突進(連続)(体1)","222400173":"C2242_ Full Armor Beast: Rush (Continuous) (body 2) -- c2242_フルアーマー獣:突進(連続)(体2)","222400174":"C2240_ Full Armor Beast: Turned step (weapon) -- c2240_フルアーマー獣:振り向き前ステップ(武器)","222400175":"C2241_ Full Armor Beast: Turned step (body) -- c2241_フルアーマー獣:振り向き前ステップ(体)","222400176":"C2240_ Full Armor beast: Snowstorm Breath -- c2240_フルアーマー獣:吹雪ブレス","222400177":"C2240_ Full Armor Beast: lateral Saigi (weapon) -- c2240_フルアーマー獣:横薙ぎ払い(武器)","222400178":"C2240_ Full Armor Beast: lateral Saigi (body) -- c2240_フルアーマー獣:横薙ぎ払い(体)","222400179":"C2240_ Full Armor Beast: knocked back against (for combo) (weapon) -- c2240_フルアーマー獣:叩き付け(コンボ用)(武器)","222400180":"C2240_ Full Armor Beast: knocked back against (for combo) (body) -- c2240_フルアーマー獣:叩き付け(コンボ用)(体)","222400181":"C2240_ Full Armor Beast: Horizontal Saigi (for combo) (weapon) -- c2240_フルアーマー獣:横薙ぎ払い(コンボ用)(武器)","222400182":"C2240_ Full Armor Beast: lateral Saigi (for combo) (body) -- c2240_フルアーマー獣:横薙ぎ払い(コンボ用)(体)","222400183":"C2240_ Full Armor Beast: Blizzard Breath (Aura) -- c2240_フルアーマー獣:吹雪ブレス(オーラ)","222400250":"C2240_ Full Armor Beast: right foot general purpose -- c2240_フルアーマー獣:右足汎用","222400251":"C2240_ Full Armor Beast: Left Foot General -- c2240_フルアーマー獣:左足汎用","222500100":"c2250_ Tindalos: Bit from the top (depression) -- c2250_ティンダロス:上から噛み付き(踏み込み大)","222500101":"c2250_ Tindalos: From the top bit (depression) (body) -- c2250_ティンダロス:上から噛み付き(踏み込み大)(体)","222500102":"c2250_ Tindalos: From the top bit (depression) (right) -- c2250_ティンダロス:上から噛み付き(踏み込み大)(右手)","222500103":"c2250_ Tindalos: From the top bit (depression) (left hand) -- c2250_ティンダロス:上から噛み付き(踏み込み大)(左手)","222500110":"c2250_ Tindalos: Close bit (from right): wait -- c2250_ティンダロス:至近噛み付き(右から):待機","222500111":"c2250_ Tindalos: Close bit (right): Wait (body) -- c2250_ティンダロス:至近噛み付き(右から):待機(体)","222500112":"c2250_ Tindalos: Close bit (right): wait -- c2250_ティンダロス:至近噛み付き(右から):待機(右手)","222500113":"c2250_ Tindalos: Close bit (right): Wait (left) -- c2250_ティンダロス:至近噛み付き(右から):待機(左手)","222500120":"c2250_ Tindalos: Bit from the right: wait -- c2250_ティンダロス:右から噛み付き:待機","222500121":"c2250_ Tindalos: Bit from right: wait (body) -- c2250_ティンダロス:右から噛み付き:待機(体)","222500122":"c2250_ Tindalos: Bit from right: wait (right) -- c2250_ティンダロス:右から噛み付き:待機(右手)","222500123":"c2250_ Tindalos: Bit from right: wait (left hand) -- c2250_ティンダロス:右から噛み付き:待機(左手)","222500130":"c2250_ Tindalos: Bit from the left: wait -- c2250_ティンダロス:左から噛み付き:待機","222500131":"c2250_ Tindalos: Bit from the left: Wait (body) -- c2250_ティンダロス:左から噛み付き:待機(体)","222500132":"c2250_ Tindalos: Bit from the left: wait (left hand) -- c2250_ティンダロス:左から噛み付き:待機(左手)","222500133":"c2250_ Tindalos: Bit from the left: wait (left hand) -- c2250_ティンダロス:左から噛み付き:待機(左手)","222500140":"c2250_ Tindalos: Bit Dive -- c2250_ティンダロス:飛び込み噛み付き","222500141":"c2250_ Tindalos: Dive bit (body) -- c2250_ティンダロス:飛び込み噛み付き(体)","222500142":"c2250_ Tindalos: Bit dive (right) -- c2250_ティンダロス:飛び込み噛み付き(右手)","222500143":"c2250_ Tindalos: Bit dive (left hand) -- c2250_ティンダロス:飛び込み噛み付き(左手)","222500144":"c2250_ Tindalos: Bit dive (right foot) -- c2250_ティンダロス:飛び込み噛み付き(右足)","222500145":"c2250_ Tindalos: Bit dive (left foot) -- c2250_ティンダロス:飛び込み噛み付き(左足)","222500150":"c2250_ Tindalos: Flipping from the plunge -- c2250_ティンダロス:飛び込みからの反転","222500151":"c2250_ Tindalos: Flipped from the plunge (right) -- c2250_ティンダロス:飛び込みからの反転(右手)","222500152":"c2250_ Tindalos: Flipping from the dive (left hand) -- c2250_ティンダロス:飛び込みからの反転(左手)","222500153":"c2250_ Tindalos: Flipped from the plunge (right foot) -- c2250_ティンダロス:飛び込みからの反転(右足)","222500154":"c2250_ Tindalos: Flipped from the dive (left foot) -- c2250_ティンダロス:飛び込みからの反転(左足)","222500160":"c2250_ Tindalos: Bit to the right side -- c2250_ティンダロス:右側面へ噛み付き","222500161":"c2250_ Tindalos: Bit (body) to the right side -- c2250_ティンダロス:右側面へ噛み付き(体)","222500162":"c2250_ Tindalos: bit (right hand) to the right side -- c2250_ティンダロス:右側面へ噛み付き(右手)","222500163":"c2250_ Tindalos: Bit to the right side (left) -- c2250_ティンダロス:右側面へ噛み付き(左手)","222500164":"c2250_ Tindalos: Bit to the right side -- c2250_ティンダロス:右側面へ噛み付き(右足)","222500165":"c2250_ Tindalos: Bit (left foot) to the right side -- c2250_ティンダロス:右側面へ噛み付き(左足)","222500170":"c2250_ Tindalos: Bit to the left side -- c2250_ティンダロス:左側面へ噛み付き","222500171":"c2250_ Tindalos: Bit (body) to the left side -- c2250_ティンダロス:左側面へ噛み付き(体)","222500172":"c2250_ Tindalos: bit (right hand) to the left side -- c2250_ティンダロス:左側面へ噛み付き(右手)","222500173":"c2250_ Tindalos: Bit to left side (left) -- c2250_ティンダロス:左側面へ噛み付き(左手)","222500174":"c2250_ Tindalos: Bit to the left side (right foot) -- c2250_ティンダロス:左側面へ噛み付き(右足)","222500175":"c2250_ Tindalos: bit to left side -- c2250_ティンダロス:左側面へ噛み付き(左足)","222500180":"c2250_ Tindalos: Open Mouth and Rush -- c2250_ティンダロス:口を開けて突進","222500181":"c2250_ Tindalos: Open mouth and Rush (right hand) -- c2250_ティンダロス:口を開けて突進(右手)","222500182":"c2250_ Tindalos: Open mouth and Rush (left hand) -- c2250_ティンダロス:口を開けて突進(左手)","222500183":"c2250_ Tindalos: Open mouth and Rush (right foot) -- c2250_ティンダロス:口を開けて突進(右足)","222500184":"c2250_ Tindalos: Open mouth and Rush (left foot) -- c2250_ティンダロス:口を開けて突進(左足)","222500185":"c2250_ Tindalos: Throwing damage -- c2250_ティンダロス:投げダメージ","222500186":"c2250_ Tindalos: Throwing Damage 2 -- c2250_ティンダロス:投げダメージ2","222500187":"c2250_ Tindalos: Throwing Damage 3 -- c2250_ティンダロス:投げダメージ3","222500190":"c2250_ Tindalos: Lunge attack: bit 1 -- c2250_ティンダロス:突進攻撃:噛み付き1","222500191":"c2250_ Tindalos: Lunge attack: Bit 2 -- c2250_ティンダロス:突進攻撃:噛み付き2","222500192":"c2250_ Tindalos: Lunge attack: Bit 3 (finish) -- c2250_ティンダロス:突進攻撃:噛み付き3(フィニッシュ)","222500193":"c2250_ Tindalos: Rush attack: Bit (body) -- c2250_ティンダロス:突進攻撃:噛み付き(体)","222500194":"c2250_ Tindalos: Rush attack: bit (right hand) -- c2250_ティンダロス:突進攻撃:噛み付き(右手)","222500195":"c2250_ Tindalos: Rush attack: bit (left hand) -- c2250_ティンダロス:突進攻撃:噛み付き(左手)","222500196":"c2250_ Tindalos: Rush attack: Bit (right foot) -- c2250_ティンダロス:突進攻撃:噛み付き(右足)","222500197":"c2250_ Tindalos: Lunge attack: bit (left foot) -- c2250_ティンダロス:突進攻撃:噛み付き(左足)","222500200":"c2250_ Tindalos: Bit (strong): a3003 Posture -- c2250_ティンダロス:噛み付き(強):a3003姿勢","222500201":"c2250_ Tindalos: Bit (strong): a3003 Posture (body) -- c2250_ティンダロス:噛み付き(強):a3003姿勢(体)","222500202":"c2250_ Tindalos: Bit (strong): a3003 Posture (right) -- c2250_ティンダロス:噛み付き(強):a3003姿勢(右手)","222500203":"c2250_ Tindalos: Bit (strong): a3003 posture (left) -- c2250_ティンダロス:噛み付き(強):a3003姿勢(左手)","222500210":"c2250_ Tindalos: Writhes around on his back: head -- c2250_ティンダロス:仰向けでのたうち回る:頭","222500211":"c2250_ Tindalos: Writhes around on his back: right hand -- c2250_ティンダロス:仰向けでのたうち回る:右手","222500212":"c2250_ Tindalos: Writhes around on his back: left hand -- c2250_ティンダロス:仰向けでのたうち回る:左手","222500213":"c2250_ Tindalos: Writhes around on his back: right foot -- c2250_ティンダロス:仰向けでのたうち回る:右足","222500214":"c2250_ Tindalos: Writhes around on his back: left foot -- c2250_ティンダロス:仰向けでのたうち回る:左足","222500215":"c2250_ Tindalos: Writhes around on his back: tail -- c2250_ティンダロス:仰向けでのたうち回る:尻尾","222500700":"c2250_ Tindalos: Thunder Breath -- c2250_ティンダロス:雷ブレス","222600700":"c2260_ Barista: Barista -- c2260_三連バリスタ:バリスタ","222600710":"c2260_ three barista: Varistor object Destructive Bullets -- c2260_三連バリスタ:バリスタオブジェクト破壊弾","222700010":"c2270_ Stench Crab: Right scissors _ swing down near face -- c2270_死臭蟹:右鋏_顔付近振り下ろし","222700020":"c2270_ Stench Crab: Right Shears _ thrusting -- c2270_死臭蟹:右鋏_突き刺し","222700030":"c2270_ Stench Crab: Right Shears _ depression Piercing -- c2270_死臭蟹:右鋏_踏み込み突刺し","222700040":"c2270_ Stench Crab: Left shears _ face near Chockin -- c2270_死臭蟹:左鋏_顔付近ちょっきん","222700050":"c2270_ Stench Crab: Left shears _ poked -- c2270_死臭蟹:左鋏_突き","222700060":"c2270_ Stench Crab: Left shears _ diagonal Continuous attack (1 ~ two) -- c2270_死臭蟹:左鋏_斜め連続攻撃(一~二段目)","222700080":"c2270_ Stench Crab: Right Shears _ Saigi -- c2270_死臭蟹:右鋏_薙ぎ払い","222700090":"c2270_ Stench Crab: Left and Right scissors lash (1-two) -- c2270_死臭蟹:左右ハサミラッシュ(左鋏_一~二段目)","222700091":"c2270_ Stench Crab: Left and right scissors rush (Sandanme) -- c2270_死臭蟹:左右ハサミラッシュ(右鋏_三段目)","222700092":"c2270_ Stench Crab: Left and right scissors rush (Shidara) -- c2270_死臭蟹:左右ハサミラッシュ(左鋏_四段目)","222700093":"c2270_ Stench Crab: Left and right scissors rush (Guarder) -- c2270_死臭蟹:左右ハサミラッシュ(右鋏_五段目)","222700100":"c2270_ Stench Crab: General Press -- c2270_死臭蟹:全身プレス","222700110":"c2270_ Stench crab: Bubble spitting -- c2270_死臭蟹:泡吐き","222700120":"c2270_ Stench Crab: Right side attack (medium range) -- c2270_死臭蟹:右側面攻撃(中距離)","222700130":"c2270_ Stench Crab: Right side attack (long distance) -- c2270_死臭蟹:右側面攻撃(遠距離)","222700140":"c2270_ Stench Crab: Left side attack (medium range) -- c2270_死臭蟹:左側面攻撃(中距離)","222700150":"c2270_ Stench Crab: Left side attack (long distance) -- c2270_死臭蟹:左側面攻撃(遠距離)","222700200":"c2270_ Stench Crab: Throwing start -- c2270_死臭蟹:投げ始動","222700201":"c2270_ Stench Crab: Throwing attack (sandwiching) -- c2270_死臭蟹:投げ攻撃(挟み付け)","222700202":"c2270_ Stench Crab: Throwing attack (finish) -- c2270_死臭蟹:投げ攻撃(フィニッシュ)","222710010":"c2271_ Stench Crab (small) _ Chockin with right shears -- c2271_死臭蟹(小)_右鋏でちょっきん","222710020":"c2271_ Stench Crab (small) _ Chockin with left shears -- c2271_死臭蟹(小)_左鋏でちょっきん","222710030":"c2271_ Stench Crab (small) _ hit with both scissors (right) -- c2271_死臭蟹(小)_両ハサミで殴る(右手)","222710031":"c2271_ Stench Crab (small) _ with both scissors (left hand) -- c2271_死臭蟹(小)_両ハサミで殴る(左手)","222710040":"c2271_ Stench Crab (small) _ right-side attack (medium range) -- c2271_死臭蟹(小)_右側面攻撃(中距離)","222710050":"c2271_ Stench Crab (small) _ Left side attack (medium range) -- c2271_死臭蟹(小)_左側面攻撃(中距離)","230200100":"Bare Hands _ Right hook -- 素手_右フック","230200110":"Bare hands _ Left hand slams: left arm -- 素手_左手叩きつけ:左腕","230200111":"Bare hands _ The left hand slams: knees -- 素手_左手叩きつけ:両膝","230200120":"Bare hands _ both hand grated -- 素手_両手振りおろし","230200130":"Saigi about Bare hands _ left elbow: Ling -- 素手_左肘をついての薙ぎ払い:肘鉄","230200131":"Saigi about Bare hands _ left elbow: Saigi -- 素手_左肘をついての薙ぎ払い:薙ぎ払い","230200140":"Bare hands _ Left foot crushing -- 素手_左足踏み潰し","230200150":"Bare hands _ Right foot crush -- 素手_右足踏み潰し","230200160":"Bare Hands _ Explore action -- 素手_探りアクション","230200170":"Transition to bare hands _ throw -- 素手_投げへの遷移","230200171":"Bare hands _ Throwing damage -- 素手_投げダメージ","230200180":"Bare hands _ Turned Saigi -- 素手_振り向き薙ぎ払い","230200190":"Bare hands _ ground crushed: slams -- 素手_地面砕き:叩きつけ","230200191":"Bare hands _ ground crushed: crushed -- 素手_地面砕き:砕き","230200200":"Bare hands rampage: 1 shot left foot trampled -- 素手_大暴れ:1撃目左足踏みつけ","230200201":"Bare Hands _ Rampage: 2-hammer right foot trampling -- 素手_大暴れ:2撃目右足踏みつけ","230200202":"Bare Hands _ Rampage: 3rd Hammer left arm Saigi -- 素手_大暴れ:3撃目左腕薙ぎ払い","230200203":"Bare Hands _ Rampage: 4-shot left foot depression -- 素手_大暴れ:4撃目左足踏み込み","230200204":"Bare Hands _ Rampage: 5 Hammer right hook -- 素手_大暴れ:5撃目右フック","230200205":"Bare Hands _ Rampage: 6th Hammer Right Back Fist -- 素手_大暴れ:6撃目右裏拳","230200206":"Bare Hands _ Rampage: 7th Hammer left hook -- 素手_大暴れ:7撃目左フック","230200207":"Bare Hands _ Rampage: 8th Hammer left Fist -- 素手_大暴れ:8撃目左裏拳","230200208":"Bare Hands _ Rampage: 9th Hammer Right Saigi -- 素手_大暴れ:9撃目右薙ぎ払い","230200300":"Saigi The Iron Sphere _ right -- 鉄球_右薙ぎ払い","230200310":"Saigi The Iron Sphere _ left -- 鉄球_左薙ぎ払い","230200320":"Iron Ball _ Iron Ball -- 鉄球_鉄球振りおろし","230200330":"Iron Sphere _ Swing down: Left -- 鉄球_鉄球振り下ろし:左","230200340":"Iron Sphere _ Swing down: Right -- 鉄球_鉄球振り下ろし:右","230200350":"Iron Sphere _ Right foot crush -- 鉄球_右足踏み潰し","230200360":"Iron Sphere _ Left foot crushing -- 鉄球_左足踏み潰し","230200370":"Iron Sphere Bun -- 鉄球_鉄球ぶん回し","230200500":"Iron Sphere _ General pressure -- 鉄球_汎用風圧","230210100":"C3020_ Golem (Large): right leg trampling -- c3020_ゴーレム(大):右足踏みつけ","230210101":"C3020_ Golem (Large): Right foot trampled (wind pressure) -- c3020_ゴーレム(大):右足踏みつけ(風圧)","230210110":"C3020_ Golem (Large): Left foot trampled -- c3020_ゴーレム(大):左足踏みつけ","230210111":"C3020_ Golem (Large): Left foot trampled (wind pressure) -- c3020_ゴーレム(大):左足踏みつけ(風圧)","230210120":"C3020_ Golem (Large): grated both hand and hand 1 -- c3020_ゴーレム(大):両手振りおろし1","230210121":"C3020_ Golem (Large): both hand-in-hand 1 (wind pressure) -- c3020_ゴーレム(大):両手振りおろし1(風圧)","230210130":"C3020_ Golem (Large): Both hand and hand grated 2 -- c3020_ゴーレム(大):両手振りおろし2","230210131":"C3020_ Golem (Large): Both hand and hand 2 (wind pressure) -- c3020_ゴーレム(大):両手振りおろし2(風圧)","230210140":"C3020_ Golem (Large): Right hand (forward) -- c3020_ゴーレム(大):右手払い(前方)","230210150":"C3020_ Golem (Large): Right hand (rear) -- c3020_ゴーレム(大):右手払い(後方)","230210300":"C3020_ Golem (dai): Altar slapping -- c3020_ゴーレム(大):祭壇叩き","230210301":"C3020_ Golem (Large): Altar slapping (wind pressure) -- c3020_ゴーレム(大):祭壇叩き(風圧)","230210310":"C3020_ Golem (Large): Altar whack -- c3020_ゴーレム(大):祭壇薙ぎ","230210320":"C3020_ Golem (Large): Heat up -- c3020_ゴーレム(大):ヒートアップ","230210330":"C3020_ Golem (Large): Heat up -- c3020_ゴーレム(大):ヒートアップ","230210340":"C3020_ Golem (Large): Heat up -- c3020_ゴーレム(大):ヒートアップ","230210500":"C3020_ Golem (Large): right hand beating -- c3020_ゴーレム(大):右手前殴り","230210501":"C3020_ Golem (Large): Right hand punch (wind pressure) -- c3020_ゴーレム(大):右手前殴り(風圧)","230210510":"C3020_ Golem (Large): Right Saigi -- c3020_ゴーレム(大):右薙ぎ払い","230210520":"C3020_ Golem (Large): left-hand beating -- c3020_ゴーレム(大):左手前殴り","230210521":"C3020_ Golem (Large): Front left punch (wind pressure) -- c3020_ゴーレム(大):左手前殴り(風圧)","230210530":"C3020_ Golem (Large): Left Saigi -- c3020_ゴーレム(大):左薙ぎ払い","230210540":"C3020_ Golem (Large): Both sides of the front beating -- c3020_ゴーレム(大):両手前殴り","230210541":"C3020_ Golem (Large): Both sides beating (wind pressure) -- c3020_ゴーレム(大):両手前殴り(風圧)","230210550":"C3020_ Golem (Large): Head butt -- c3020_ゴーレム(大):頭突き","230210560":"C3020_ Golem (Large): Right-hand bridge beating -- c3020_ゴーレム(大):右手橋殴り","230210580":"C3020_ Golem (Large): Two-handed bridge punch -- c3020_ゴーレム(大):両手橋殴り","230210590":"C3020_ Golem (Large): Right-hand bridge Saigi (beating) -- c3020_ゴーレム(大):右手橋薙ぎ払い(殴り)","230210591":"C3020_ Golem (Large): Right-hand bridge Saigi (payable) -- c3020_ゴーレム(大):右手橋薙ぎ払い(払い)","230210600":"C3020_ Golem (Large): Left hand Dast Shute -- c3020_ゴーレム(大):左手ダストシュート殴り","230210700":"C3020_ Golem (Large): right hand beating -- c3020_ゴーレム(大):右手前殴り","230210701":"C3020_ Golem (Large): Right hand punch (wind pressure) -- c3020_ゴーレム(大):右手前殴り(風圧)","230210710":"C3020_ Golem (Large): Both hand and hand grated -- c3020_ゴーレム(大):両手振りおろし","230210711":"C3020_ Golem (Large): Both hand and hand (wind pressure) -- c3020_ゴーレム(大):両手振りおろし(風圧)","230210720":"C3020_ Golem (Large): Left hand Saigi knocked back against part -- c3020_ゴーレム(大):左手薙ぎ払い 叩き付け部分","230210721":"C3020_ Golem (Large): Left hand Saigi knocked back against partial wind pressure -- c3020_ゴーレム(大):左手薙ぎ払い 叩き付け部分 風圧","230210722":"C3020_ Golem (Large): Left hand Saigi Saigi -- c3020_ゴーレム(大):左手薙ぎ払い 薙ぎ払い","230210730":"C3020_ Golem (Large): Right hand Saigi -- c3020_ゴーレム(大):右手薙ぎ払い","230210740":"C3020_ Golem (Large): The right hand of the enshrined punch -- c3020_ゴーレム(大):安置パンチ右手","230210750":"C3020_ Golem (Large): The left hand of the morgue punch -- c3020_ゴーレム(大):安置パンチ左手","230210760":"C3020_ Golem (Large): left-hand beating -- c3020_ゴーレム(大):左手前殴り","230210761":"C3020_ Golem (Large): Front left punch (wind pressure) -- c3020_ゴーレム(大):左手前殴り(風圧)","230210770":"C3020_ Golem (Large): Right hand grip -- c3020_ゴーレム(大):右手安置掴み","230210780":"C3020_ Golem (Large): Left hand grip -- c3020_ゴーレム(大):左手安置掴み","230400010":"The warden of the c3040_ Abyss: the Rush Whack Dagger -- c3040_深淵の監視者:突進薙ぎ 短剣","230400011":"Warden of the c3040_ Abyss: Rush Whack Saigi -- c3040_深淵の監視者:突進薙ぎ 薙ぎ払い","230400020":"Warden of the c3040_ Abyss: the Sword up -- c3040_深淵の監視者:斬り上げ","230400030":"Warden of the c3040_ Abyss: under the butt -- c3040_深淵の監視者:下突き","230400040":"The warden of the c3040_ Abyss: the reservoir thrust -- c3040_深淵の監視者:溜め突き","230400041":"The warden of the c3040_ Abyss: the Infuser Dash -- c3040_深淵の監視者:溜め突き ダッシュ","230400042":"The warden of the c3040_ Abyss: Infuser Guard -- c3040_深淵の監視者:溜め突き ガード","230400050":"Observer of the c3040_ Abyss: Shiri -- c3040_深淵の監視者:袈裟斬り","230400051":"Observer of the c3040_ abyss: lateral whack -- c3040_深淵の監視者:横薙ぎ","230400052":"Observer of the Abyss of c3040_: slams -- c3040_深淵の監視者:叩きつけ","230400060":"Warden of the c3040_ Abyss: the forward slash -- c3040_深淵の監視者:前転斬り","230400070":"Warden of the c3040_ Abyss: A slew of attacking turns -- c3040_深淵の監視者:切り抜け攻撃 旋回","230400071":"Warden of the c3040_ Abyss: the attack dash -- c3040_深淵の監視者:切り抜け攻撃 ダッシュ","230400080":"Observer of the c3040_ Abyss: Continuous Attack longsword -- c3040_深淵の監視者:連続攻撃 長剣","230400081":"Warden of the c3040_ Abyss: a succession attack dagger -- c3040_深淵の監視者:連続攻撃 短剣","230400082":"Observer of the c3040_ Abyss: Continuous attack tightening -- c3040_深淵の監視者:連続攻撃締め","230400090":"Warden of the c3040_ Abyss: short distance restraint -- c3040_深淵の監視者:近距離牽制","230400100":"The observer of the c3040_ Abyss: the Sword -- c3040_深淵の監視者:斬り払い","230400101":"The observer of the c3040_ Abyss: Dagger Stab -- c3040_深淵の監視者:短剣刺し","230400102":"Observer of the c3040_ Abyss: Swinging -- c3040_深淵の監視者:振り上げ","230400910":"Warden of the c3040_ Abyss: Middle Range Combo First stage -- c3040_深淵の監視者:中距離コンボ 1段目","230400911":"Observer of the c3040_ Abyss: Second Stage Combo -- c3040_深淵の監視者:中距離コンボ 2段目","230400920":"Observer of the c3040_ Abyss: Dust Makiage -- c3040_深淵の監視者:土埃まきあげ","230400930":"The warden of the c3040_ Abyss: the reservoir thrust -- c3040_深淵の監視者:溜め突き","230400940":"Warden of the c3040_ Abyss: The first stage of the short range combo -- c3040_深淵の監視者:近距離コンボ 1段目","230400941":"Warden of the c3040_ Abyss: Second stage of the short range combo -- c3040_深淵の監視者:近距離コンボ 2段目","230400942":"Warden of the c3040_ Abyss: The third stage of the short range combo -- c3040_深淵の監視者:近距離コンボ 3段目","230400950":"Warden of the c3040_ Abyss: attack -- c3040_深淵の監視者:切り抜け攻撃","230400960":"Observer of c3040_ Abyss: Positioning change -- c3040_深淵の監視者:ポジショニング替え","230400970":"Warden of the c3040_ Abyss: from left to right -- c3040_深淵の監視者:左から右の斬り払い","230400980":"Warden of the c3040_ Abyss: Attack from the right -- c3040_深淵の監視者:右からの斬り攻撃","230400990":"The observer of the c3040_ Abyss: The attack from the run -- c3040_深淵の監視者:走りからの攻撃","230500100":"c3050_ Ash Daemon: Combo 1-1 Saigi -- c3050_灰のデーモン:コンボ1-1薙ぎ払い","230500101":"c3050_ Ash Daemon: Combo 1-2 slams (center point) -- c3050_灰のデーモン:コンボ1-2叩きつけ(中心点)","230500102":"c3050_ Ash Daemon: Combo 1-2 slams (outer circle) -- c3050_灰のデーモン:コンボ1-2叩きつけ(外円部)","230500110":"c3050_ Ash Daemon: ground-running Hatake -- c3050_灰のデーモン:地走薙","230500111":"c3050_ Ash Daemon: Reverse Payment -- c3050_灰のデーモン:逆払い","230500112":"c3050_ Ash Daemon: Ground-running Hatake (preliminary operation) -- c3050_灰のデーモン:地走薙(予備動作)","230500120":"c3050_ Ash daemon: Hammered slams (weapon vertical, center point) -- c3050_灰のデーモン:槌叩きつけ(武器縦持ち、中心点)","230500121":"c3050_ Ash daemon: Hammered slams (weapon vertical, outer circle) -- c3050_灰のデーモン:槌叩きつけ(武器縦持ち、外円部)","230500130":"c3050_ Ash daemon: Hammered and dropped (to the left, center point) -- c3050_灰のデーモン:槌持ち上げ落とし(左側へ、中心点)","230500131":"c3050_ Ash daemon: Hammered and dropped (to the left, out of the circle) -- c3050_灰のデーモン:槌持ち上げ落とし(左側へ、外円部)","230500140":"c3050_ Ash daemon: slams (right, center point) -- c3050_灰のデーモン:叩きつけ(右側へ、中心点)","230500141":"c3050_ Ash daemon: slams (outward circle to the right) -- c3050_灰のデーモン:叩きつけ(右側へ外円部)","230500150":"c3050_ Ash daemon: Hammered lift drop (center point) -- c3050_灰のデーモン:槌持ち上げ落とし(中心点)","230500151":"c3050_ Ash daemon: Hammered Lift Drop (outer circle) -- c3050_灰のデーモン:槌持ち上げ落とし(外円部)","230500160":"c3050_ Ash daemon: slams (center point) -- c3050_灰のデーモン:叩きつけ(中心点)","230500161":"c3050_ Ash daemon: slams (outer circle) -- c3050_灰のデーモン:叩きつけ(外円部)","230500170":"c3050_ Ash Daemon: add Bun slams 1 -- c3050_灰のデーモン:追加ぶん回し叩きつけ1","230500171":"c3050_ Ash Daemon: Add Bun slams 2 -- c3050_灰のデーモン:追加ぶん回し叩きつけ2","230500172":"c3050_ Ash Daemon: Additional Bun slams 3 (center) -- c3050_灰のデーモン:追加ぶん回し叩きつけ3(中心部)","230500173":"c3050_ Ash Daemon: Additional Bun slams 3 (outer circle) -- c3050_灰のデーモン:追加ぶん回し叩きつけ3(外円部)","230500700":"c3050_ Ash daemon: Broad breath (straight wind) -- c3050_灰のデーモン:広範囲ブレス(直風)","230500710":"c3050_ Ash Daemon: Immediate Breath (straight wind) -- c3050_灰のデーモン:直下ブレス(直風)","230500720":"c3050_ Ash daemon: Tobichiru Flame Search Grenade -- c3050_灰のデーモン:とびちる炎検索弾","230500730":"c3050_ Ash Daemon: Lava meteor -- c3050_灰のデーモン:溶岩メテオ","230500740":"c3050_ Ash daemon: Lava tsunami -- c3050_灰のデーモン:溶岩津波","230600010":"c3060_ Firewood Daemon: Combo 1_ both hands: Saigi -- c3060_薪のデーモン:コンボ1_両手:薙ぎ払い","230600011":"c3060_ Firewood Daemon: Combo 1_ both hands: slams -- c3060_薪のデーモン:コンボ1_両手:叩きつけ","230600020":"c3060_ Firewood Daemon: lunge: Per body -- c3060_薪のデーモン:突進:体当たり","230600030":"c3060_ Firewood daemon: close-up -- c3060_薪のデーモン:近距離打ちおろし","230600040":"c3060_ Firewood daemon: slammed away -- c3060_薪のデーモン:距離詰め叩きつけ","230600050":"c3060_ Firewood Daemon: the first attack -- c3060_薪のデーモン:叩きつけ三連・初撃","230600051":"C3060_: The demon of firewood -- c3060_薪のデーモン:叩きつけ三連・弐撃","230600052":"C3060_: The demon of firewood -- c3060_薪のデーモン:叩きつけ三連・終撃","230600060":"c3060_ Firewood Daemon: ground-running Hatake -- c3060_薪のデーモン:地走薙","230600700":"c3060_ Firewood Daemon: Breath -- c3060_薪のデーモン:ブレス","230600710":"c3060_ Firewood daemon: slams: Shockwave -- c3060_薪のデーモン:叩きつけ:衝撃波","230600800":"c3060_ Firewood daemon: Walk breath: Drop it at your feet -- c3060_薪のデーモン:歩きブレス:足元に落とす","230600801":"c3060_ Firewood daemon: Walking breath: Leave at your feet -- c3060_薪のデーモン:歩きブレス:足元に残す","230700010":"c3070_ Daemon priest: grated 1 -- c3070_デーモン司祭:振りおろし1","230700020":"c3070_ daemon priest: grated 2 -- c3070_デーモン司祭:振りおろし2","230700030":"c3070_ Daemon priest: grated -- c3070_デーモン司祭:振りおろし","230700700":"c3070_ Demon Priest: The Fire ball of chaos -- c3070_デーモン司祭:混沌の火球","230700710":"c3070_ daemon priest: Chaos Fireball (second) -- c3070_デーモン司祭:混沌の火球(2発目)","230700720":"c3070_ Daemon Priest: The Great Storm of Chaos -- c3070_デーモン司祭:混沌の大嵐","230800700":"Butterfly of c3080_: Scales rain -- c3080_蝕の蝶:鱗粉の雨","230800710":"Butterfly of c3080_: The Big God soldier laser -- c3080_蝕の蝶:巨神兵レーザー","230800720":"Butterfly of c3080_: high-speed explosion -- c3080_蝕の蝶:低速大爆発蝕弾","230800730":"c3080_ Butterfly: Scales bombing -- c3080_蝕の蝶:鱗粉爆撃","230800740":"Butterfly of c3080_: Scales Rain 2 -- c3080_蝕の蝶:鱗粉の雨2","230900010":"c3090_: Violent -- c3090_牢蜘蛛:暴れる","231000010":"c3100_ crystal Lizard God: Right S-Saigi -- c3100_結晶トカゲの神:右S字薙ぎ払い","231000011":"c3100_ crystal Lizard God: Right S-Saigi _ Crystal -- c3100_結晶トカゲの神:右S字薙ぎ払い_結晶","231000020":"c3100_ crystal Lizard God: Left S-shaped Saigi -- c3100_結晶トカゲの神:左S字薙ぎ払い","231000021":"c3100_ crystal Lizard God: Left S-shaped Saigi _ Crystal -- c3100_結晶トカゲの神:左S字薙ぎ払い_結晶","231000030":"c3100_ crystal lizard God: Left tail attack -- c3100_結晶トカゲの神:左尻尾攻撃","231000040":"c3100_ crystal lizard God: Right tail attack -- c3100_結晶トカゲの神:右尻尾攻撃","231000050":"c3100_ crystal lizard God: crushing both hands -- c3100_結晶トカゲの神:両手叩き潰し","231000051":"c3100_ crystal lizard God: both hands crushed -- c3100_結晶トカゲの神:両手叩き潰し_結晶","231000060":"c3100_ crystal Lizard God: Plunge attack -- c3100_結晶トカゲの神:飛び込み攻撃","231000061":"c3100_ crystal Lizard God: Plunge attack _ Crystals -- c3100_結晶トカゲの神:飛び込み攻撃_結晶","231000070":"c3100_ crystal lizard God: Breath -- c3100_結晶トカゲの神:ブレス","231000080":"c3100_ crystal lizard God: Right scratching -- c3100_結晶トカゲの神:右引っ掻き","231000090":"c3100_ crystal lizard God: Left scratching -- c3100_結晶トカゲの神:左引っ掻き","231000100":"c3100_ Crystal lizard God: start of rotation (long distance) -- c3100_結晶トカゲの神:回転開始(遠距離)","231000110":"c3100_ crystal lizard God: spinning -- c3100_結晶トカゲの神:回転","231000120":"c3100_ crystal lizard God: Rotation complete -- c3100_結晶トカゲの神:回転完了","231000130":"c3100_ crystal lizard God: Rotation complete (reversal) -- c3100_結晶トカゲの神:回転完了(反転)","231000140":"c3100_ crystal lizard God: bit -- c3100_結晶トカゲの神:噛み付き","231000150":"God of c3100_ Crystal lizard: Start of rotation (short distance) -- c3100_結晶トカゲの神:回転開始(近距離)","231000160":"God of c3100_ crystal lizard: moving left and right -- c3100_結晶トカゲの神:左右移動","231000170":"c3100_ crystal lizard God: Step left and right -- c3100_結晶トカゲの神:左右ステップ","231000180":"c3100_ crystal Lizard God: Step back -- c3100_結晶トカゲの神:バックステップ","231000190":"c3100_ crystal lizard God: for crystal attack -- c3100_結晶トカゲの神:水晶攻撃用","231000220":"c3100_ crystal lizard God: bit left derived -- c3100_結晶トカゲの神:噛み付き左派生","231100010":"Spider of c3110_: bit -- c3110_蝕の蜘蛛:噛み付き","231100020":"Spider of c3110_: bit: Depression -- c3110_蝕の蜘蛛:噛み付き:踏み込み小","231100030":"Spider of c3110_: Crush with Arms: mouth -- c3110_蝕の蜘蛛:腕で叩き潰す:口","231100031":"Spider of c3110_: arms crushed by arms -- c3110_蝕の蜘蛛:腕で叩き潰す:腕","231100032":"Spider of c3110_: crushing with Arms: depression Small: Mouth -- c3110_蝕の蜘蛛:腕で叩き潰す:踏み込み小:口","231100033":"Spider of c3110_: crushing with Arms: stepping Small: Arms -- c3110_蝕の蜘蛛:腕で叩き潰す:踏み込み小:腕","231100040":"Spider of c3110_: Kari: High: Foot 1 -- c3110_蝕の蜘蛛:飛び掛かり:高い:足1","231100041":"Spider of c3110_: Kari: High: Foot 2 -- c3110_蝕の蜘蛛:飛び掛かり:高い:足2","231100050":"Spider of c3110_: Kari: Low-right -- c3110_蝕の蜘蛛:飛び掛かり:低空:右手","231100051":"Spider of c3110_: Kari: Low-handed -- c3110_蝕の蜘蛛:飛び掛かり:低空:左手","231100060":"Spider of c3110_: bit: Right side -- c3110_蝕の蜘蛛:噛み付き:右側面","231100070":"Spider of c3110_: bit: Left side -- c3110_蝕の蜘蛛:噛み付き:左側面","231100080":"Spider of c3110_: bit ② -- c3110_蝕の蜘蛛:噛み付き②","231100090":"Spider of c3110_: rampage: the mouth -- c3110_蝕の蜘蛛:暴れまわる:口","231100091":"Spider of c3110_: rampage: Left and right hind -- c3110_蝕の蜘蛛:暴れまわる:左右後足","231100092":"Spider of c3110_: rampage: the left leg -- c3110_蝕の蜘蛛:暴れまわる:左中足","231100093":"Spider of c3110_: rampage: Four Legs -- c3110_蝕の蜘蛛:暴れまわる:前四本足","231100700":"Spider of c3110_: Exhale: Ground -- c3110_蝕の蜘蛛:蝕を吐く:地面","231100701":"Spider of c3110_: Exhale: Previous -- c3110_蝕の蜘蛛:蝕を吐く:前","231100710":"c3110_: Smoke Screen -- c3110_蝕の蜘蛛:煙幕","231100800":"c3110_ common attack [obj good small, large] -- c3110_共通攻撃【OBJダメ小・大型】","231200010":"c3120_ Mori no sacred beast: Beat with a cane -- c3120_森の霊獣:杖で殴る","231200020":"c3120_ Mori no sacred beast: Hit with a cane: depression -- c3120_森の霊獣:杖で殴る:踏み込み大","231200030":"C3120_ Forest Sacred Beast: Beat with a cane: left and right side -- c3120_森の霊獣:杖で殴る:左右側面","231200040":"c3120_ Mori no sacred Beast: Bun Cane: Depression -- c3120_森の霊獣:杖をぶん回す:踏み込み大","231200050":"c3120_ Mori no sacred beast: Punch with a cane: depression small -- c3120_森の霊獣:杖で殴る:踏み込み小","231200060":"Sacred Beast of the c3120_ Forest: shaking with a cane: Bun posture -- c3120_森の霊獣:杖で振り下ろし:ぶん回し姿勢","231200500":"c3120_ Mori no sacred beast: Cane common knocked back against shock wave: small -- c3120_森の霊獣:杖共通叩き付け衝撃波:小","231200510":"c3120_ Mori no sacred beast: Cane common knocked back against shock wave: large -- c3120_森の霊獣:杖共通叩き付け衝撃波:大","231200700":"Sacred Beast of c3120_ Forest: Magic 1: Force -- c3120_森の霊獣:魔法1:フォース","231200710":"c3120_ Mori no sacred Beast: Magic 2: Soul Restraints -- c3120_森の霊獣:魔法2:魂縛り","231400100":"Straight Breath _ Head -- 直線ブレス_頭","231400110":"Saigi Breath _ Head -- 薙ぎ払いブレス_頭","231400120":"Bit _ head -- 噛み付き_頭","231400121":"Bit _ Neck -- 噛み付き_首","231400130":"Scratching _ Feet -- 引っ掻き_足","231400131":"Scratching _ Blast -- 引っ掻き_爆風","231400140":"Right squished _ feet -- 右踏み付け_足","231400141":"Right squished _ Blast -- 右踏み付け_爆風","231400150":"Left squished _ feet -- 左踏み付け_足","231400151":"Left squished _ Blast -- 左踏み付け_爆風","231400160":"A tail payment -- 尻尾払い","231400170":"Rush Bit _ Head -- 突進噛み付き_頭","231400171":"Rush Bit _ Neck -- 突進噛み付き_首","231400180":"Immediate breath _ Foot -- 直下ブレス_足","231400181":"Immediate breath _ Blast -- 直下ブレス_爆風","231400190":"Glide Breath _ Head -- 滑空ブレス_頭","231400191":"Glide Breath _ Neck -- 滑空ブレス_首","231400192":"Glide Breath _ feet -- 滑空ブレス_足","231400193":"Glide Breath _ Blast -- 滑空ブレス_爆風","231400200":"Right bit _ head -- 右旋回噛み付き_頭","231400201":"Right bit _ neck -- 右旋回噛み付き_首","231400210":"Left bit _ head -- 左旋回噛み付き_頭","231400211":"Left bit _ neck -- 左旋回噛み付き_首","231400500":"Straight Breath _ Breath -- 直線ブレス_ブレス","231400510":"Saigi Bless _ Breath -- 薙ぎ払いブレス_ブレス","231400520":"Immediate breath _ Breath -- 直下ブレス_ブレス","231400530":"Glide Breath _ Breath -- 滑空ブレス_ブレス","231400540":"Event ①: Hashimoto _ Swirling Breath _ bless ① -- イベント①:橋下_旋回ブレス_ブレス①","231400550":"Event ①: Hashimoto _ Swirling Breath _ bless ② -- イベント①:橋下_旋回ブレス_ブレス②","231400560":"Event ②: Climb 2_ appearance _ on tower → Square _ breath -- イベント②:登る2_登場_塔上→広場_ブレス","231400570":"Event ②: Climb 2_ another tower → square → breath withdrawal _ breath -- イベント②:登る2_別塔→広場→ブレス撤退_ブレス","231400580":"Event ③: Rampage Breath A (breath _max) -- イベント③:暴れブレスA(ブレス_MAX)","231400581":"Event ③: Rampaging breath A (ground) -- イベント③:暴れブレスA(地面)","231400582":"Event ③: Rampaging Breath A (ground _ decal) -- イベント③:暴れブレスA(地面_デカール)","231400583":"Event ③: Rampaging Breath A (breath _ ①) -- イベント③:暴れブレスA(ブレス_①)","231400584":"Event ③: Rampaging Breath A (breath _ ②) -- イベント③:暴れブレスA(ブレス_②)","231400585":"Event ③: Rampaging Breath A (breath _ ③) -- イベント③:暴れブレスA(ブレス_③)","231400586":"Event ③: Rampaging Breath A (breath _ ④) -- イベント③:暴れブレスA(ブレス_④)","231400587":"Event ③: Rampaging Breath A (breath _ ⑤) -- イベント③:暴れブレスA(ブレス_⑤)","231400588":"Event ③: Rampaging Breath A (breath _ ⑥) -- イベント③:暴れブレスA(ブレス_⑥)","231400590":"Event ③: Rampage Breath B (Breath _max) -- イベント③:暴れブレスB(ブレス_MAX)","231400591":"Event ③: Rampaging Breath B (ground) -- イベント③:暴れブレスB(地面)","231400592":"Event ③: Rampaging Breath B (ground _ Decal) -- イベント③:暴れブレスB(地面_デカール)","231400593":"Event ③: Rampaging Breath B (Breath _ ①) -- イベント③:暴れブレスB(ブレス_①)","231400594":"Event ③: Rampaging Breath B (Breath _ ②) -- イベント③:暴れブレスB(ブレス_②)","231400595":"Event ③: Rampaging Breath B (Breath _ ③) -- イベント③:暴れブレスB(ブレス_③)","231400596":"Event ③: Rampaging Breath B (Breath _ ④) -- イベント③:暴れブレスB(ブレス_④)","231400597":"Event ③: Rampaging Breath B (Breath _ ⑤) -- イベント③:暴れブレスB(ブレス_⑤)","231400598":"Event ③: Rampaging Breath B (Breath _ ⑥) -- イベント③:暴れブレスB(ブレス_⑥)","231400600":"Event ④: Ojo 1_ Groan (plumes) -- イベント④:王城1_呻き(噴煙)","231400610":"Event ⑤: Ojo 1_-ridden wait a (plume) -- イベント⑤:王城1_苦しむ待機A(噴煙)","231400620":"Event ⑥: Ojo 1_-ridden wait B (plume) -- イベント⑥:王城1_苦しむ待機B(噴煙)","231400630":"Event ③: Rampaging Breath B (ground _ aisle side) -- イベント③:暴れブレスB(地面_通路側)","231400631":"Event ③: Rampaging Breath B (ground _ Aisle Side _ Decals) -- イベント③:暴れブレスB(地面_通路側_デカール)","231400640":"Event ③: Rampage Breath A (small per-ground judging) -- イベント③:暴れブレスA(地面_当たり判定小)","231400641":"Event ③: Rampage Breath A (ground _ judging Small _ decal) -- イベント③:暴れブレスA(地面_当たり判定小_デカール)","231400650":"Event ③: Rampage Breath B (ground _ small judgment per) -- イベント③:暴れブレスB(地面_当たり判定小)","231400651":"Event ③: Rampage Breath B (Ground _ Judging Small _ decal) -- イベント③:暴れブレスB(地面_当たり判定小_デカール)","231400652":"Event ③: Rampage Breath B (ground _ per judgment Large) -- イベント③:暴れブレスB(地面_当たり判定大)","231400653":"Event ③: Rampage Breath B (ground _ per judgment Large _ decal) -- イベント③:暴れブレスB(地面_当たり判定大_デカール)","231400660":"Event: Withdrawal breath (All) -- イベント:撤退ブレス(全部)","231400661":"Event: Withdrawal Breath (Breath _ ①) -- イベント:撤退ブレス(ブレス_①)","231400662":"Event: Withdrawal Breath (Breath _ ②) -- イベント:撤退ブレス(ブレス_②)","231400663":"Event: Withdrawal Breath (Breath _ ③) -- イベント:撤退ブレス(ブレス_③)","231400664":"Event: Withdrawal Breath (Breath _ ④) -- イベント:撤退ブレス(ブレス_④)","231400665":"Event: Withdrawal Breath (Breath _ ⑤) -- イベント:撤退ブレス(ブレス_⑤)","231400666":"Event: Withdrawal Breath (Breath _ ⑥) -- イベント:撤退ブレス(ブレス_⑥)","231400667":"Event: Withdrawal breath (judgment per ground) -- イベント:撤退ブレス(地面当たり判定)","231400668":"Event: Withdrawal breath (ground _ per judgment Large _ decal) -- イベント:撤退ブレス(地面_当たり判定大_デカール)","231400670":"Event: Bonfire Breath (All) -- イベント:篝火ブレス(全部)","231400671":"Event: Bonfire (Breath _ ①) -- イベント:篝火ブレス(ブレス_①)","231400672":"Event: Bonfire (Breath _ ②) -- イベント:篝火ブレス(ブレス_②)","231400673":"Event: Bonfire (Breath _ ③) -- イベント:篝火ブレス(ブレス_③)","231400674":"Event: Bonfire (Breath _ ④) -- イベント:篝火ブレス(ブレス_④)","231400675":"Event: Bonfire (Breath _ ⑤) -- イベント:篝火ブレス(ブレス_⑤)","231400676":"Event: Bonfire (Breath _ ⑥) -- イベント:篝火ブレス(ブレス_⑥)","231400677":"Event: Bonfire Breath (judgment per ground) -- イベント:篝火ブレス(地面当たり判定)","231400678":"Event: Bonfire Breath (ground _ per judgment Large _ decal) -- イベント:篝火ブレス(地面_当たり判定大_デカール)","231400680":"Event: Left side breath (all) -- イベント:左側面ブレス(全部)","231400681":"Event: Left Side breath (breath _ ①) -- イベント:左側面ブレス(ブレス_①)","231400682":"Event: Left Side breath (breath _ ②) -- イベント:左側面ブレス(ブレス_②)","231400683":"Event: Left Side breath (breath _ ③) -- イベント:左側面ブレス(ブレス_③)","231400684":"Event: Left Side breath (breath _ ④) -- イベント:左側面ブレス(ブレス_④)","231400685":"Event: Left Side breath (breath _ ⑤) -- イベント:左側面ブレス(ブレス_⑤)","231400686":"Event: Left Side breath (breath _ ⑥) -- イベント:左側面ブレス(ブレス_⑥)","231400687":"Event: Left side breath (judgment per ground) -- イベント:左側面ブレス(地面当たり判定)","231400688":"Event: Left Side breath (ground _ per judgment Large _ decal) -- イベント:左側面ブレス(地面_当たり判定大_デカール)","231400700":"Event ①: Hashimoto _ appeared _ Feet -- イベント①:橋下_登場_足","231400701":"Event ①: Hashimoto _ appeared _ Blast (left) -- イベント①:橋下_登場_爆風(左)","231400702":"Event ①: Hashimoto _ appeared _ Blast (right) -- イベント①:橋下_登場_爆風(右)","231400710":"Event ①: Hashimoto _ Circling Breath _ feet -- イベント①:橋下_旋回ブレス_足","231400711":"Event ①: Hashimoto _ Swirling Breath _ blast -- イベント①:橋下_旋回ブレス_爆風","231400800":"Event ②: Climb 2_ appearance _ on tower → Square _ feet -- イベント②:登る2_登場_塔上→広場_足","231400801":"Event ②: Climb 2_ appearance _ on tower → Square _ blast (left) -- イベント②:登る2_登場_塔上→広場_爆風(左)","231400802":"Event ②: Climb 2_ appearance _ on tower → Square _ blast (right) -- イベント②:登る2_登場_塔上→広場_爆風(右)","231400820":"Event ②: Climb 2_ another tower → square → breath withdrawal _ foot -- イベント②:登る2_別塔→広場→ブレス撤退_足","231400821":"Event ②: Climb 2_ another tower → square → breath withdrawal _ blast -- イベント②:登る2_別塔→広場→ブレス撤退_爆風","231600010":"C3160_ Dragon's Guardian Knight: advancethe -- c3160_竜の守護騎士:走り込み振りおろし","231600020":"The Guardian Knight of the c3160_ Dragon: Crossing _1 -- c3160_竜の守護騎士:横切り_1段目","231600021":"The Guardian Knight of the c3160_ Dragon: cross-stage -- c3160_竜の守護騎士:横切り_2段目","231600030":"C3160_ Dragon's Guardian Knight: Shield bash -- c3160_竜の守護騎士:シールドバッシュ","231600031":"C3160_ Dragon's Guardian Knight: Axe Swing -- c3160_竜の守護騎士:斧振り降ろし","231600040":"C3160_ Dragon's Guardian Knight: Axe turned attack -- c3160_竜の守護騎士:斧振り向き攻撃","231600050":"C3160_ Dragon's Guardian Knight: Shield turned attack -- c3160_竜の守護騎士:盾振り向き攻撃","231600200":"C3160_ Dragon's Guardian Knight: [HU] Jump Shield knocked back against -- c3160_竜の守護騎士:[HU]ジャンプ盾叩き付け","231600210":"C3160_ Dragon's Guardian Knight: [HU] Derived Sword -- c3160_竜の守護騎士:[HU]派生斬り","231600220":"C3160_ Dragon's Guardian Knight: [HU] Shield knocked back against -- c3160_竜の守護騎士:[HU]盾叩き付け","231600230":"C3160_ Dragon's Guardian Knight: [HU] Shield Bash added -- c3160_竜の守護騎士:[HU]シールドバッシュ追加","231600240":"C3160_ Dragon's Guardian Knight: [HU] Shield Combo 1 -- c3160_竜の守護騎士:[HU]盾コンボ1","231600250":"C3160_ Dragon's Guardian Knight: [HU] Shield guillotine -- c3160_竜の守護騎士:[HU]盾ギロチン","231600260":"C3160_ Dragon's Guardian Knight: [HU] Gurdcancell Bash -- c3160_竜の守護騎士:[HU]ガードキャンセルバッシュ","231600270":"C3160_ Dragon's Guardian Knight: Arts _ Rush Dragon Hunt: Assault -- c3160_竜の守護騎士:アーツ_突進竜狩り:突撃","231600280":"C3160_ Dragon's patron Knight: arts _ extensive whack -- c3160_竜の守護騎士:アーツ_広範囲薙ぎ","231600290":"C3160_ Dragon's Guardian Knight: the Arts _ Shockwave: Axe -- c3160_竜の守護騎士:アーツ_衝撃波:斧","231600300":"C3160_ Dragon's Guardian Knight: arts _ Jump Guillotine -- c3160_竜の守護騎士:アーツ_ジャンプギロチン","231600700":"C3160_ Dragon's Guardian Knight: Shockwave -- c3160_竜の守護騎士:衝撃波","231600900":"Guardian Knight of the C3160_ Dragon: Guard -- c3160_竜の守護騎士:ガード","231700010":"Slashing 1 -- 斬撃1","231700011":"Slashing 2 -- 斬撃2","231700012":"Slashing 3 -- 斬撃3","231700013":"Slashing 4 -- 斬撃4","231700020":"Poke a Pause -- 間合いを詰めて突く","231700030":"Both hand-held strength 1 -- 両手持ちして強斬り1","231700031":"Both hand-held strength 2 -- 両手持ちして強斬り2","231700040":"Pre Kick -- 前蹴り","231700050":"Absorbing Soul Grab -- 吸魂掴みかかり","231700051":"Soul-grabbing: throwing damage -- 吸魂掴みかかり:投げダメージ","231700060":"Cancel Soul Grab -- キャンセル吸魂掴み","231700070":"Right side to attack -- 右側面~後背攻撃","231700080":"Left side to attack -- 左側面~後背攻撃","231700090":"Soul Grip: Guard Posture -- 吸魂掴み:ガード姿勢","231700100":"Cancel Kick -- キャンセル蹴り","231700110":"Jump skewered -- ジャンプ串刺し","231700120":"Dash Whack -- ダッシュ薙ぎ","250100010":"Storm Whack: Sword damage -- 嵐薙ぎ:剣ダメージ","250100020":"Storm whack second stage: Sword damage -- 嵐薙ぎ2段目:剣ダメージ","250100030":"Storm Swing: Sword damage -- 嵐振り降ろし:剣ダメージ","250100040":"① one-handed Shiri -- 片手袈裟斬り①","250100050":"Both hands left Kesa -- 両手左袈裟","250100060":"Both hand thrusts -- 両手突き","250100070":"A deadly thrust -- 必殺の突き","250100080":"Two Hands side 一閃 -- 両手横一閃","250100090":"Both hand and down -- 両手振り降ろし","250100100":"Left foot down, lightning -- 左足踏み下ろし雷撃","250100110":"Turned attack -- 振り向き攻撃","250100120":"Swing down attack -- 振り下ろし攻撃","250100130":"Two-handed left pay -- 両手左払い","250100150":"Small Dash Rush & Flip -- 小ダッシュ突進&反転","250100160":"Stepping down -- 踏み込み払い","250100200":"Gwin throwing: grasping judgment -- グウィン投げ:掴み判定","250100201":"Gwin Throw: Blast -- グウィン投げ:爆発","250100700":"Storm whack: Bullet damage -- 嵐薙ぎ:弾丸ダメージ","250100710":"Storm whack second stage: bullet damage -- 嵐薙ぎ2段目:弾丸ダメージ","250100720":"Storm Swing: Bullet damage -- 嵐振り降ろし:弾丸ダメージ","250200010":"Right hook -- 右フック","250200020":"Kari: Right -- 飛び掛かり:右","250200030":"Hands slams: Right -- 両手叩きつけ:右","250200040":"Left hook to right side -- 右側面へ左フック","250200050":"Right hook to left side -- 左側面へ右フック","250200060":"Jump up and crush on Wings: Right -- 翼で飛び上がって叩き潰し:右","250300100":"c5030: a3000 Other ground payment 1 -- c5030:a3000ほか 地上払い1","250300110":"c5030: a3001 Swing attack: Pay -- c5030:a3001旋回攻撃:払い","250300111":"c5030: a3001 Swing attack: per body -- c5030:a3001旋回攻撃:体当たり","250300120":"c5030: a3002 trampled (left foot): Direct hit -- c5030:a3002踏みつけ(左足):直撃","250300121":"c5030: a3002 trampled (left foot): Blast -- c5030:a3002踏みつけ(左足):爆風","250300130":"c5030: a3003 Other flying attack: thrusting -- c5030:a3003ほか 飛びかかり攻撃:突き","250300131":"c5030: a3003 Other flying attacks: per body -- c5030:a3003ほか 飛びかかり攻撃:体当たり","250300140":"c5030: a3004, ground swing down: simple -- c5030:a3004ほか 地上振り下ろし:単","250300150":"c5030: a3005: Pay: For jumping -- c5030:a3005:払い:飛びかかり用","250300160":"c5030: a3007: Ground small setback & forward thrust -- c5030:a3007:地上小後退&前進突き","250300170":"c5030: a3008: Ground Small retreat Breath: Root -- c5030:a3008:地上小後退ブレス:根本","250300171":"c5030: a3008: Ground Small retreat breath: Middle -- c5030:a3008:地上小後退ブレス:真ん中","250300172":"c5030: a3008: Ground Small retreat Breath: Tip -- c5030:a3008:地上小後退ブレス:先端","250300180":"c5030: a3009: Jumped bless -- c5030:a3009:飛び上がりブレス","250300190":"c5030: a3011: Jump over: Rush on takeoff -- c5030:a3011:飛び越える:離陸時の突進","250300200":"c5030: a3012: Swing down: for jumping -- c5030:a3012:振り下ろし:飛びかかり用","250300210":"c5030: a3014: Ground payment 2 -- c5030:a3014:地上払い2","250300220":"c5030: a3015: Ground down -- c5030:a3015:地上振り下ろし","250300230":"c5030: a3017: Trampled (right foot): direct hit -- c5030:a3017:踏みつけ(右足):直撃","250300231":"c5030: a3017: Trampled (right foot): Blast -- c5030:a3017:踏みつけ(右足):爆風","250300800":"c5030: General crush: Right foot Hit -- c5030:汎用 押しつぶし:右足直撃","250300810":"c5030: General crush: Right foot blast -- c5030:汎用 押しつぶし:右足爆風","250300820":"c5030: General crush: Left foot hit -- c5030:汎用 押しつぶし:左足直撃","250300830":"c5030: General crush: Left foot blast -- c5030:汎用 押しつぶし:左足爆風","250300835":"c5030: General crush: Body hit -- c5030:汎用 押しつぶし:胴体直撃","250300840":"C5030: General entrainment: Neck to face -- c5030:汎用 巻き込み:首~顔","250300850":"C5030: General entrainment: Right foot -- c5030:汎用 巻き込み:右足","250300860":"C5030: General entrainment: Left foot -- c5030:汎用 巻き込み:左足","251100010":"c5110_ Combo ① (shake off) -- c5110_突進コンボ①(振り落とし)","251100020":"C5110_ rushes Combo ② (Saigi) -- c5110_突進コンボ②(薙ぎ払い)","251100030":"c5110_ Jump Attack -- c5110_ジャンプ攻撃","251100040":"c5110_ Punch (Hook at close range) -- c5110_パンチ(近距離でのフック)","251100050":"c5110_ Triple Combo ① (Saigi from left hand) -- c5110_三連コンボ①(左手からの薙ぎ払い)","251100060":"c5110_ Triple Combo ② (tackle) -- c5110_三連コンボ②(タックル)","251100070":"c5110_ Triple Combo ③ (TS) -- c5110_三連コンボ③(石突での振り下し)","251100080":"c5110_ Melee Combo ① (thrust attack) -- c5110_近接コンボ①(突き出し攻撃)","251100090":"c5110_ Melee Combo ② (jump-up attack) 1_ -- c5110_近接コンボ②(跳ね上げ攻撃)1_振り下ろし","251100091":"c5110_ Melee Combo ② (jumping up attack) 2_ -- c5110_近接コンボ②(跳ね上げ攻撃)2_跳ね上げ","251100100":"c5110_ Backward attack -- c5110_後方攻撃","251100110":"c5110_ throwing Transition Attack ① _ grabs -- c5110_投げ遷移攻撃①_掴み","251100120":"c5110_ Lateral Step Sword -- c5110_横ステップ斬り抜け","251100130":"c5110_ Melee Combo B ① (thrust) -- c5110_近接コンボB①(突き)","251100140":"c5110_ Melee Combo B ②-1 (thrust) -- c5110_近接コンボB②-1(突き)","251100150":"c5110_ Melee Combo B ②-2 (slams) -- c5110_近接コンボB②-2(叩きつけ)","251100200":"c5110_ Heat-up transition attack -- c5110_ヒートアップ遷移攻撃","251100300":"c5110_ Heat up combo a ① (piercing) -- c5110_ヒートアップコンボA①(突き刺し)","251100310":"c5110_ heat up attack: Combo a ② (bouncing up) -- c5110_ヒートアップ攻撃:コンボA②(跳ね上げ)","251100330":"c5110_ heat up attack: Combo B ② (return Saigi) -- c5110_ヒートアップ攻撃:コンボB②(返しの薙ぎ払い)","251100340":"c5110_ heat up attack: Combo B ③ (left hand slams) -- c5110_ヒートアップ攻撃:コンボB③(左手の叩きつけ)","251100350":"c5110_ heat up attack: Combo C ① (right hand jump ⇒ thrusting) -- c5110_ヒートアップ攻撃:コンボC①(右手ジャンプ⇒突き刺し )","251100351":"c5110_ heat up attack: Combo C ① (right hand jump ⇒ Piercing) _ Left hand judgment -- c5110_ヒートアップ攻撃:コンボC①(右手ジャンプ⇒突き刺し )_左手判定","251100360":"c5110_ heat up attack: Combo C ② (left hand Saigi) -- c5110_ヒートアップ攻撃:コンボC②(左手の薙ぎ払い)","251100380":"c5110_ heat up attack: Rear attack ② (right hand Saigi, range) -- c5110_ヒートアップ攻撃:後方攻撃②(右手薙ぎ払い、範囲)","251100391":"c5110_ heat up attack: ⇒ slams _ range with tail & left body -- c5110_ヒートアップ攻撃:尻尾&左手で上体起こし⇒叩きつけ_範囲","251100400":"C5110 Heat-up attack: Transition attack to throw ① -- c5110ヒートアップ攻撃:投げ①への遷移攻撃","251100420":"c5110 heat up attack: Walk/Tail Attack _ Swing -- c5110ヒートアップ攻撃:歩行/尻尾攻撃_振り","251100430":"c5110 heat up attack: Medium/Long Distance/Saigi _ arm -- c5110ヒートアップ攻撃:中遠距離用/薙ぎ払い_腕","251100431":"c5110 heat up attack: Medium/Long Distance/Saigi _ slashing -- c5110ヒートアップ攻撃:中遠距離用/薙ぎ払い_斬撃","251100441":"c5110 heat up attack: Melee attack _ Snake Spirit Arm -- c5110ヒートアップ攻撃:近接攻撃_蛇霊腕","251100700":"c5110_ throwing -- c5110_投げ","251100710":"C5110_ heats up attack: throwing _ slams ① -- c5110_ヒートアップ攻撃:投げ_叩きつけ①","251100711":"C5110_ heats up attack: throwing _ slams ② -- c5110_ヒートアップ攻撃:投げ_叩きつけ②","251100712":"C5110_ heats up attack: throwing _ slams ③ -- c5110_ヒートアップ攻撃:投げ_叩きつけ③","251100713":"c5110_ heat up attack: Throw _ Finish -- c5110_ヒートアップ攻撃:投げ_フィニッシュ","251200010":"c5120_ Snake Spirits: Frontal melee attack _ head knocked back against -- c5120_蛇霊:正面近接攻撃_頭叩き付け","251200011":"c5120_ Snake Spirit: Frontal melee attack _ head lateral shaking -- c5120_蛇霊:正面近接攻撃_頭横振り","251200012":"c5120_ Snake Spirits: Frontal melee Attack _ head + neck knocked back against -- c5120_蛇霊:正面近接攻撃_頭+首叩き付け","251200013":"c5120_ Snake Spirits: Frontal melee Attack _ head + neck knocked back against Shockwave -- c5120_蛇霊:正面近接攻撃_頭+首叩き付け衝撃波","251200020":"c5120_ Snake Spirit: Combo First hammer (right hand Saigi) -- c5120_蛇霊:コンボ初撃(右手薙ぎ払い)","251200030":"c5120_ Snake Spirit: Combo 2 firing (left hand Saigi) -- c5120_蛇霊:コンボ2撃目(左手薙ぎ払い)","251200040":"C5120_ Snake Spirits: Range Turning Attack _ Body Press _ Head -- c5120_蛇霊:範囲旋回攻撃_ボディープレス_頭部","251200041":"C5120_ Snake Spirits: Range Turning Attack _ body Press _ abdomen -- c5120_蛇霊:範囲旋回攻撃_ボディープレス_腹部","251200042":"C5120_ Snake Spirits: Range Turning Attack _ Body Press _ Shockwave -- c5120_蛇霊:範囲旋回攻撃_ボディープレス_衝撃波","251200050":"c5120_ Snake Spirit: per body (rush) -- c5120_蛇霊:体当たり(突進)","251200060":"c5120_ Snake Spirits: Backward bite attack (left) -- c5120_蛇霊:後方噛みつき攻撃(左)","251200070":"c5120_ Snake Spirits: Backward bite attack (right) -- c5120_蛇霊:後方噛みつき攻撃(右)","251200080":"c5120_ Snake Spirit: Tail attack -- c5120_蛇霊:尻尾攻撃","251200090":"c5120_ Snake spirit: bit attack first stage -- c5120_蛇霊:噛み付き攻撃1段目","251200091":"c5120_ Snake Spirit: bit attack second stage -- c5120_蛇霊:噛み付き攻撃2段目","251200100":"c5120_ Snake spirits: caries breath -- c5120_蛇霊:蝕ブレス","251200110":"c5120_ Snake Spirit: Tail attack -- c5120_蛇霊:尻尾攻撃","251200120":"c5120_ Snake Spirits: turned knocked back against: Head knocked back against -- c5120_蛇霊:振り向き叩き付け:頭叩き付け","251200121":"c5120_ Snake Spirits: turned knocked back against: lunge -- c5120_蛇霊:振り向き叩き付け:突進","251200130":"c5120_ Snake spirit: bit tail: bit first stage -- c5120_蛇霊:噛み付き尻尾払い:噛み付き1段目","251200131":"c5120_ Snake spirit: bit tail: bit second stage -- c5120_蛇霊:噛み付き尻尾払い:噛み付き2段目","251200132":"c5120_ Snake spirit: bit tail: tail -- c5120_蛇霊:噛み付き尻尾払い:尻尾","251200140":"C5120_ Snake Spirits: bit loop: bit 1st Stage -- c5120_蛇霊:噛み付きループ:噛み付き1段目","251200141":"C5120_ Snake Spirits: bit loop: bit second stage -- c5120_蛇霊:噛み付きループ:噛み付き2段目","251200142":"C5120_ Snake Spirits: bit loop: bit third stage -- c5120_蛇霊:噛み付きループ:噛み付き3段目","251200710":"c5120_: Caries explosion -- c5120_蛇霊:蝕爆発","251200720":"c5120_ Snake Spirits: caries accumulation -- c5120_蛇霊:蝕溜まり","251200730":"c5120_ Snake Spirits: caries Reservoir _hu -- c5120_蛇霊:蝕溜まり_HU","251200800":"c5120_ Snake Spirits: walking _ Body Damage -- c5120_蛇霊:歩行_胴体ダメージ","251200801":"c5120_ Snake Spirits: walking _ right hand -- c5120_蛇霊:歩行_右手","251200802":"c5120_ Snake Spirits: walking _ Left Hand -- c5120_蛇霊:歩行_左手","251200810":"c5120_ Snake Spirit: Traveling _ Body Damage -- c5120_蛇霊:走行_胴体ダメージ","251200811":"c5120_ Snake Spirits: walking _ right hand -- c5120_蛇霊:歩行_右手","251200812":"c5120_ Snake Spirits: walking _ Left Hand -- c5120_蛇霊:歩行_左手","251400010":"The Old king of c5140_: A clockwise attack (evasion included) -- c5140_蝕の老王:右回り込み攻撃(回避込み)","251400020":"The Old king of C5140_: a left-handed attack (evasion included) -- c5140_蝕の老王:左回り込み攻撃(回避込み)","251400030":"The Old king of c5140_: Jump forward -- c5140_蝕の老王:前方ジャンプ飛び込み斬り","251400040":"The Old king of c5140_: the right hand attack 1 -- c5140_蝕の老王:右手連撃1","251400050":"The Old king of c5140_: A right-hand attack 2 -- c5140_蝕の老王:右手連撃2","251400060":"The Old king of c5140_: A right-hand attack 3 -- c5140_蝕の老王:右手連撃3","251400070":"Old King of c5140_: Left hand thrust (throwing start technique) -- c5140_蝕の老王:左手突き刺し(投げ始動技)","251400071":"Old King of c5140_: Left hand thrust (throwing damage) -- c5140_蝕の老王:左手突き刺し(投げダメージ)","251400072":"Old King of c5140_: Left hand piercing (throwing damage deadline) -- c5140_蝕の老王:左手突き刺し(投げダメージ〆)","251400080":"The Old king of c5140_: Left hand thrust -- c5140_蝕の老王:左手突き刺し","251400110":"The Old king of c5140_: a clockwise attack -- c5140_蝕の老王:右回り込み攻撃(攻撃)","251400120":"The Old king of C5140_: a left-handed attack (attack) -- c5140_蝕の老王:左回り込み攻撃(攻撃)","251400330":"The Old king of c5140_: Jump forward -- c5140_蝕の老王:前方ジャンプ飛び込み斬り","251400340":"The Old king of c5140_: A forward jump dive and a left thrust -- c5140_蝕の老王:前方ジャンプ飛び込み左突き刺し","251400350":"The Old king of c5140_: jumping upward and falling back -- c5140_蝕の老王:上方ジャンプ羽ばたき後ろ下がり右手斬り","251400360":"Old King of c5140_: upward jump flapping left thrusting -- c5140_蝕の老王:上方ジャンプ羽ばたき左突き刺し","251500100":"c5150_ Saliva: Stick a cane -- c5150_サリヴァ―ン:杖を突きたてる","251500110":"c5150_ Saliva: Climb slams and right -- c5150_サリヴァ―ン:上昇叩きつけ・右","251500120":"c5150_ Saliva: Swinging Right -- c5150_サリヴァ―ン:振り上げ・右","251500130":"c5150_ Saliva: Ascent slams, left -- c5150_サリヴァ―ン:上昇叩きつけ・左","251500140":"c5150_ Saliva: Swinging left -- c5150_サリヴァ―ン:振り上げ・左","251500150":"c5150_ Saliva: Forward Thrust: Cane -- c5150_サリヴァ―ン:前進突き:杖","251500151":"c5150_ Saliva: Forward Thrust: Body -- c5150_サリヴァ―ン:前進突き:体","251500160":"c5150_ Saliva: Whack attack: Whack -- c5150_サリヴァ―ン:薙ぎ攻撃:薙ぎ","251500170":"c5150_ Saliva: Rear Swing -- c5150_サリヴァ―ン:背面振り上げ","251500180":"c5150_ Saliva: U-turn Iaido -- c5150_サリヴァ―ン:Uターン居合","251500190":"c5150_ Saliva: Dive: At the time of appearance -- c5150_サリヴァ―ン:潜航:出現時","251500200":"c5150_ Saliva: Tail Furi -- c5150_サリヴァ―ン:尻尾振り逃げ","251500700":"c5150_ Saliva: Induction Bullet -- c5150_サリヴァ―ン:誘導弾","251500710":"c5150_ Saliva: Whack: Magic shot -- c5150_サリヴァ―ン:薙ぎ:魔法散弾","251500720":"c5150_ Saliva: Magic Penetrating Bullets -- c5150_サリヴァ―ン:魔法貫通弾","251500730":"c5150_ Saliva: NITs Sword follower Elementalers -- c5150_サリヴァ―ン:ニト剣追従大剣舞","251500740":"c5150_ Saliva: NITs self-centered explosion -- c5150_サリヴァ―ン:ニト自己中心爆発","251600010":"C5160_ King: Right hand knocked back against -- c5160_死霊の王:右手叩き付け","251600020":"C5160_ King: Right hand Saigi -- c5160_死霊の王:右手薙ぎ払い","251600030":"King of c5160_: Left hand knocked back against -- c5160_死霊の王:左手叩き付け","251600040":"The King of c5160_: Skeleton Resurrection -- c5160_死霊の王:スケルトン復活","251600050":"C5160_ King: Forward attack-right hand -- c5160_死霊の王:前進攻撃 - 右手","251600051":"C5160_ King: Forward attack-left hand -- c5160_死霊の王:前進攻撃 - 左手","251600060":"King of the c5160_: Miasma (before HU) -- c5160_死霊の王:瘴気ブレス(HU前)","251600061":"King of the c5160_: Miasma (before HU) -- c5160_死霊の王:瘴気ブレス(HU前)","251600070":"King of the c5160_: Tomb King Sword taken out -- c5160_死霊の王:墓王剣取り出し","251600080":"King of the c5160_: Tomb King Sword eject attack a -- c5160_死霊の王:墓王剣取り出し攻撃A","251600090":"King of the c5160_: Tomb King Sword removal attack b -- c5160_死霊の王:墓王剣取り出し攻撃B","251600300":"King of the c5160_: the grave elementalers of the tomb king -- c5160_死霊の王:墓王の大剣舞 突き刺し","251600301":"The King of the c5160_: The great elementalers of the grave king -- c5160_死霊の王:墓王の大剣舞 突き刺し爆発","251600302":"King of the c5160_: Grave King Elementalers (Chase bullet A) -- c5160_死霊の王:墓王の大剣舞 (追跡弾A中)","251600303":"The King of the c5160_: Grave Elementalers (outbreak) -- c5160_死霊の王:墓王の大剣舞 (発生弾)","251600304":"King of c5160_: Grave King Elementalers (Chase bullet A right) -- c5160_死霊の王:墓王の大剣舞 (追跡弾A右)","251600305":"King of c5160_: Grave King Elementalers (Chase bullet A left) -- c5160_死霊の王:墓王の大剣舞 (追跡弾A左)","251600306":"King of c5160_: Tomb of the King Elementalers (Chase Bullet B) -- c5160_死霊の王:墓王の大剣舞 (追跡弾B中)","251600307":"King of c5160_: Grave King Elementalers (Chase Bullet B right) -- c5160_死霊の王:墓王の大剣舞 (追跡弾B右)","251600308":"King of the c5160_: Grave King Elementalers (Chase Bullet B left) -- c5160_死霊の王:墓王の大剣舞 (追跡弾B左)","251600309":"King of c5160_: Tomb of King Elementalers (Chase bullet C right 1) -- c5160_死霊の王:墓王の大剣舞 (追跡弾C右1)","251600310":"King of the c5160_: Grave King Elementalers (Chase Bullet C right 2) -- c5160_死霊の王:墓王の大剣舞 (追跡弾C右2)","251600311":"King of the c5160_: Grave King Elementalers (Chase bullet C left 1) -- c5160_死霊の王:墓王の大剣舞 (追跡弾C左1)","251600312":"King of the c5160_: Grave King Elementalers (Chase Bullet C left 2) -- c5160_死霊の王:墓王の大剣舞 (追跡弾C左2)","251600313":"King of the c5160_: Right hand Sword attack -- c5160_死霊の王:右手剣定点攻撃","251600320":"King of c5160_: Right hand sword Nagi -- c5160_死霊の王:右手剣なぎ払い","251600330":"King of the c5160_: the left hand slams -- c5160_死霊の王:左手叩きつけ","251600340":"The King of c5160_: a forward attack -- c5160_死霊の王:前進攻撃","251600350":"The King of c5160_: Skeleton Resurrection -- c5160_死霊の王:スケルトン復活","251600370":"King of c5160_: Right hand Saigi added (before HU) -- c5160_死霊の王:右手薙ぎ払い追加(HU前)","251600380":"King of c5160_: shifted hands slams (before Hu) _ Right hand -- c5160_死霊の王:ずらし両手叩きつけ(HU前)_右手","251600381":"King of c5160_: shifted hands slams (before Hu) _ Left hand -- c5160_死霊の王:ずらし両手叩きつけ(HU前)_左手","251600390":"King of the c5160_: The Rush (before Hu) _ Body -- c5160_死霊の王:突進(HU前)_体","251600391":"King of the c5160_: The Rush (before Hu) _ right arm -- c5160_死霊の王:突進(HU前)_右腕","251600392":"King of c5160_: Rush (before Hu) _ left arm -- c5160_死霊の王:突進(HU前)_左腕","251600400":"King of c5160_: Miasma (after Hu) -- c5160_死霊の王:瘴気ブレス(HU後)","251600401":"King of c5160_: Miasma (after Hu) -- c5160_死霊の王:瘴気ブレス(HU後)","251600410":"King of the c5160_: two-slash (after Hu) -- c5160_死霊の王:2連斬り(HU後)","251600420":"King of the c5160_: Right hand sword thrust (after Hu) -- c5160_死霊の王:右手剣刺突(HU後)","251600430":"King of the c5160_: The rush (after Hu) _ body -- c5160_死霊の王:突進(HU後)_体","251600431":"King of c5160_: Rush (after Hu) _ Left hand -- c5160_死霊の王:突進(HU後)_左手","251600432":"King of c5160_: Rush (after Hu) _ Right Hand Sword -- c5160_死霊の王:突進(HU後)_右手剣","251600700":"King of c5160_: Drifting miasma -- c5160_死霊の王:漂う瘴気","251700010":"c5170_ patron gu long: breath -- c5170_守護の古龍:ブレス","251800010":"c5180: a3000 right foot crush -- c5180:a3000右足踏み潰し","251800020":"c5180: a3001 left foot crushing -- c5180:a3001左足踏み潰し","251800030":"c5180: a3002 right hand slapping crush -- c5180:a3002右手叩き潰し","251800040":"c5180: a3003 left hand beating crush -- c5180:a3003左手叩き潰し","251800050":"c5180: a3004 Right-hand Saigi -- c5180:a3004右手薙ぎ払い","251800060":"c5180: a3005 left hand Saigi -- c5180:a3005左手薙ぎ払い","251800070":"c5180: a3006 Hip Drop -- c5180:a3006ヒップドロップ","251800080":"C5180: a3007 Rising hip drop -- c5180:a3007立ち上がりヒップドロップ","251800090":"c5180: a3008 two-handed crush -- c5180:a3008両手叩き潰し","251800100":"c5180: a3009 Right-hand rotation attack -- c5180:a3009右手回転攻撃","251800110":"c5180: a3010 left hand rotation attack -- c5180:a3010左手回転攻撃","251800120":"c5180: a3011 stomping crush: Belly near: Right hit -- c5180:a3011踏み潰し:腹付近:右直撃","251800130":"c5180: a3012 on foot: distant front: Left foot hit -- c5180:a3012足で叩き潰す:遠距離正面:左足直撃","251800140":"c5180: a3000 right foot crush: Second hammer -- c5180:a3000右足踏み潰し:二撃目","251800150":"c5180: a3001 left foot crushing: Second hammer -- c5180:a3001左足踏み潰し:二撃目","251800160":"c5180: a3002 right hand crush: Second Hammer -- c5180:a3002右手叩き潰し:二撃目","251800170":"c5180: a3003 left hand crush: Second Hammer -- c5180:a3003左手叩き潰し:二撃目","251800180":"Rush Crush -- 突進叩き潰し","251800300":"Right-turn attack: arm -- 右回転攻撃:右腕","251800301":"Right turning attack: belly arm -- 右回転攻撃:腹腕","251800310":"Left arm rotation attack -- 左回転攻撃:左腕","251800311":"Left turn attack: Belly arm -- 左回転攻撃:腹腕","251800340":"Ground gouge: The belly arm slams -- 地面えぐり:腹腕叩きつけ","251800341":"Ground Gouge: Gouge -- 地面えぐり:えぐり取り","251800350":"Hip Drop -- ヒップドロップ","251800370":"Get up and tumble -- 立ち上がって転倒","251800380":"Belly arm Continuous slams: 4 consecutive -- 腹腕連続叩きつけ:4連続","251800390":"Rush: belly Arms Saigi blow eyes -- 突進:腹腕薙ぎ払い一撃目","251800391":"Rush: Belly arm Saigi Second hammer -- 突進:腹腕薙ぎ払い二撃目","251800392":"Rush: Belly Arm slams -- 突進:腹腕叩きつけ","251800400":"Real crush: slams -- 実潰し:叩きつけ","251800401":"Actual Crush: Rubbed -- 実潰し:擦り付ける","251800410":"c5180: a1003010_ Throw -- c5180:a1003010_投げ","251800411":"c5180: a1003010_ Throwing damage -- c5180:a1003010_投げ ダメージ","251800420":"Slams: Combo Stage -- 叩きつけ:コンボ初段","251800430":"Real throw -- 実投げ","251800440":"Right foot crushing -- 右足踏み潰し:右足","251800441":"Right foot crushing: a blow to the belly -- 右足踏み潰し:腹腕一撃目","251800442":"Right foot crush: Belly arm Second Hammer -- 右足踏み潰し:腹腕二撃目","251800450":"Left foot crushing -- 左足踏み潰し:左足","251800451":"Left foot crushing: belly blow -- 左足踏み潰し:腹腕一撃目","251800452":"Left foot crushing: Belly arm second Hammer -- 左足踏み潰し:腹腕二撃目","251800460":"Right hand crush: Right hand -- 右手叩き潰し:右手","251800461":"Right hand crush: Belly blow -- 右手叩き潰し:腹腕一撃目","251800462":"Right hand crush: two-eyed belly -- 右手叩き潰し:腹腕二撃目","251800470":"Left hand crush: Left hand -- 左手叩き潰し:左手","251800471":"Crushing the left hand: a blow on his belly -- 左手叩き潰し:腹腕一撃目","251800472":"Crushing the left hand: two eyes on the belly -- 左手叩き潰し:腹腕二撃目","251800800":"c5180: Generic: Mystery Juice: Bullet -- c5180:汎用:謎の汁:弾丸","251800900":"Fuselage General: Scratch -- 胴体汎用:かすり","251800901":"Fuselage General: Shockwave -- 胴体汎用:衝撃波","251800902":"Fuselage General: Blast -- 胴体汎用:爆風","251800910":"Right arm general purpose: scratch -- 右腕汎用:かすり","251800911":"Right Palm General: Shockwave -- 右手のひら汎用:衝撃波","251800920":"Left arm General: Scratch -- 左腕汎用:かすり","251800921":"Left Palm General: Shockwave -- 左手のひら汎用:衝撃波","251800930":"Right foot general purpose: scratch -- 右足汎用:かすり","251800931":"Right Palm General: Shockwave -- 右足のひら汎用:衝撃波","251800940":"Left foot general: Scratch -- 左足汎用:かすり","251800941":"Left Palm General: Shockwave -- 左足のひら汎用:衝撃波","251800950":"Abdominal hand: Scratch -- 腹手汎用:かすり","251800951":"Belly-Palm Versatile: Shockwave -- 腹手のひら汎用:衝撃波","251900010":"King of the c5190_: The shaking: the front -- c5190_廃都の孤王:振りおろし:正面","251900011":"King of the c5190_: shaking: the front: Blast -- c5190_廃都の孤王:振りおろし:正面:爆風","251900020":"King of the c5190_: thrust: Around right foot -- c5190_廃都の孤王:突き刺し:右足周辺","251900021":"King of the c5190_: piercing: The right foot around: blast -- c5190_廃都の孤王:突き刺し:右足周辺:爆風","251900030":"King of c5190_: piercing: Around the left foot -- c5190_廃都の孤王:突き刺し:左足周辺","251900031":"King of the c5190_: thrust: Around the left leg: blast -- c5190_廃都の孤王:突き刺し:左足周辺:爆風","251900040":"King of c5190_: Thrust -- c5190_廃都の孤王:突き","251900041":"King of the c5190_: Thrust: Blast -- c5190_廃都の孤王:突き:爆風","251900050":"King of c5190_: Continuous attack 1-1: Payment -- c5190_廃都の孤王:連続攻撃1-1:払い","251900051":"King of c5190_: Continuous Attack 1-2: Payment -- c5190_廃都の孤王:連続攻撃1-2:払い","251900052":"King of c5190_: Continuous attack 1-1: Pay: Blast -- c5190_廃都の孤王:連続攻撃1-1:払い:爆風","251900053":"King of c5190_: Continuous Attack 1-2: Pay: Blast -- c5190_廃都の孤王:連続攻撃1-2:払い:爆風","251900300":"King of c5190_: Continuous attack 1-1: Nagi -- c5190_廃都の孤王:連続攻撃1-1:なぎ払い","251900301":"King of c5190_: Continuous Attack 1-2: Inverse Nagi -- c5190_廃都の孤王:連続攻撃1-2:逆なぎ払い","251900310":"King of c5190_: Continuous Attack 2-1: Inverse Nagi -- c5190_廃都の孤王:連続攻撃2-1:逆なぎ払い","251900311":"King of c5190_: Continuous Attack 2-2: Thrust -- c5190_廃都の孤王:連続攻撃2-2:突き","251900312":"King of c5190_: Continuous Attack 2-1: Inverse Nagi: Blast -- c5190_廃都の孤王:連続攻撃2-1:逆なぎ払い:爆風","251900313":"King of c5190_: Continuous Attack 2-2: Thrust: Blast -- c5190_廃都の孤王:連続攻撃2-2:突き:爆風","251900320":"C5190_: The king of the disused city -- c5190_廃都の孤王:振りおろし","251900321":"King of the c5190_: the blast -- c5190_廃都の孤王:振りおろし:爆風","251900330":"King of c5190_: Pay with the left hand -- c5190_廃都の孤王:左手で払う","251900340":"King of c5190_: Thrust -- c5190_廃都の孤王:突き","251900341":"King of the c5190_: Thrust: Blast -- c5190_廃都の孤王:突き:爆風","251900350":"King of c5190_: Reverse payment: Right side -- c5190_廃都の孤王:逆払い:右側面","251900360":"King of the c5190_: the left side -- c5190_廃都の孤王:振りおろし:左側面","251900361":"King of the c5190_: the left side: the blast -- c5190_廃都の孤王:振りおろし:左側面:爆風","251900700":"King of c5190_: squeezing out loud -- c5190_廃都の孤王:大声を絞り出す","251900710":"C5190_ King of the disused city: Kensaki Shockwave -- c5190_廃都の孤王:剣先衝撃波","252000010":"c5200_ deb Daemon: Right Nagi -- c5200_デブデーモン:右なぎ払い","252000020":"c5200_ Deb Daemon: Left Nagi -- c5200_デブデーモン:左なぎ払い","252000030":"c5200_ deb daemon: Feet Right Nagi -- c5200_デブデーモン:足元右なぎ払い","252000040":"c5200_ Deb Daemon: Primary seal -- c5200_デブデーモン:一次封印","252000050":"c5200_ deb daemon: feet left Nagi -- c5200_デブデーモン:足元左なぎ払い","252000060":"c5200_ deb Daemon: underfoot knocked back against -- c5200_デブデーモン:足元叩き付け","252000070":"c5200_ Fat daemon: Medium range swing down -- c5200_デブデーモン:中距離振り下ろし","252000080":"c5200_ Fat daemon: Long distance swing down -- c5200_デブデーモン:遠距離振り下ろし","252000090":"c5200_ Deb Daemon: Hip drop -- c5200_デブデーモン:ヒップドロップ","252000200":"c5200_ Deb Daemon: right rear Nagi -- c5200_デブデーモン:右後方なぎ払い","252000210":"c5200_ deb Daemon: battering slugfest Combo First stage -- c5200_デブデーモン:大槌乱打コンボ1段目","252000211":"c5200_ Deb Daemon: The second stage of the battering slugfest combo -- c5200_デブデーモン:大槌乱打コンボ2段目","252000212":"c5200_ Deb Daemon: The slugfest combo third stage -- c5200_デブデーモン:大槌乱打コンボ3段目","252000220":"c5200_ deb Daemon: Saigi Otsuchi -- c5200_デブデーモン:大槌薙ぎ払い","252000230":"c5200_ Deb: Hit the ground with your left hand -- c5200_デブデーモン:左手で地面を叩く","252000240":"c5200_ Deb Daemon: Pay the ground with your left hand (knocked back against) -- c5200_デブデーモン:左手で地面を払う(叩き付け)","252000250":"c5200_ Deb Daemon: knocked back against Otsuchi -- c5200_デブデーモン:大槌叩き付け","252200700":"Fireball -- 火球","252200800":"Curse helmeted -- 呪詛の号令","252210700":"Fireball -- 火球","252210710":"Force -- フォース","252210800":"Curse -- 呪詛","252220700":"Fireball -- 火球","252220800":"Curse -- 呪詛","252230700":"Fireball -- 火球","252230800":"Curse -- 呪詛","252300010":"Pay with a tail: Wait a -- 尻尾で払う:待機A","252300070":"Passage Breath 1: Wait C -- 通路ブレス1:待機C","252300071":"Passage Breath 1: Standby c_ Impact 1 -- 通路ブレス1:待機C_着弾1","252300072":"Passage Breath 1: Standby c_ Impact 2 -- 通路ブレス1:待機C_着弾2","252300073":"Passage Breath 1: Standby c_ landing 3 -- 通路ブレス1:待機C_着弾3","252300074":"Passage Breath 1: Wait C_ landing 4 -- 通路ブレス1:待機C_着弾4","252300130":"Outside stair breath: wait F -- 外階段ブレス:待機F","252300160":"Loft Scratch: Wait F -- ロフトひっかき:待機F","252300170":"2f Attack: Wait E -- 2F攻撃:待機E","252300200":"Outside stair breath: wait g -- 外階段ブレス:待機G","252300210":"Bell tower Breath: Wait F -- 鐘楼ブレス:待機F","252300220":"Bell tower Breath: Wait g -- 鐘楼ブレス:待機G","252300230":"Pocket Scratch: Wait C -- 懐ひっかき:待機C","252300240":"1f attack: Wait D -- 1F攻撃:待機D","252300250":"Poke/Single Passage breath 2: Wait C -- 突く・単通路ブレス2:待機C","252300260":"Passage Breath 3: Wait C -- 通路ブレス3:待機C","252300261":"Passage Breath 3: Standby c_ Impact 1 -- 通路ブレス3:待機C_着弾1","252300270":"Crush: Wait C -- 叩き潰し:待機C","252300280":"Chasing PC while blessing -- ブレスしつつPCを追う","252300320":"Breath down the stairs: wait D -- 階段下方にブレス:待機D","252400100":"c5240_ Moonlight Witch: Torch Always damage -- c5240_月光の魔女:松明常時ダメージ","252400110":"c5240_ Moonlight Witch: Torch Floor Stain -- c5240_月光の魔女:松明床汚し","252400200":"c5240_ Moonlight Witch: The magic of this flame snake (explosion crawling on the ground) -- c5240_月光の魔女:魔法 地這炎蛇 (地面を這う爆発)","252400210":"c5240_ Moonlight Witch: Magic Rising Fire dragon (rising pillar) -- c5240_月光の魔女:魔法 上昇火竜 (立ち上る火柱)","252400220":"c5240_ Moonlight Witch: Magic Slow Fire (slow-induced bullets) -- c5240_月光の魔女:魔法 鈍足追火 (遅い誘導弾)","252400230":"c5240_ Moonlight Witch: Magic Explosion Diffusion (scatter) -- c5240_月光の魔女:魔法 爆炎拡散 (ばら撒き弾)","252400240":"c5240_ Moonlight Witch: Magic Reserve -- c5240_月光の魔女:魔法 予備","252400250":"c5240_ Moonlight Witch: Magic Reserve -- c5240_月光の魔女:魔法 予備","252400300":"The Witch of the c5240_ Moonlight: grasping stab thrust (throwing transition) -- c5240_月光の魔女:掴み刺突(投げ遷移)","252400301":"c5240_ Moonlight Witch: Gripping Sting (burning damage) -- c5240_月光の魔女:掴み刺突(燃焼ダメージ)","252400302":"c5240_ Moonlight Witch: Grab stab thrust (knocked back against damage) -- c5240_月光の魔女:掴み刺突(叩き付けダメージ)","252400310":"c5240_ Moonlight Witch: Swirling attack -- c5240_月光の魔女:旋回攻撃","252400320":"c5240_ Moonlight Witch: Attack 1 -- c5240_月光の魔女:攻撃1","252400330":"c5240_ Moonlight Witch: Attack 2 -- c5240_月光の魔女:攻撃2","252400340":"c5240_ Moonlight Witch: Attack 3 -- c5240_月光の魔女:攻撃3","252500100":"Prince of Darkness C5250_ (brother): Whack -- c5250_闇の双皇子(兄):薙ぎ","252500110":"C5250_ of Darkness (brother): Reverse whack -- c5250_闇の双皇子(兄):逆薙ぎ","252500120":"Prince of Darkness C5250_ (brother): Swing down -- c5250_闇の双皇子(兄):振り下ろし","252500130":"Prince of Darkness C5250_ (brother): Strong attack -- c5250_闇の双皇子(兄):強攻撃","252500131":"C5250_ of Darkness (elder brother): Strong attack: Shockwave -- c5250_闇の双皇子(兄):強攻撃:衝撃波","252500140":"C5250_ of Darkness (brother): Thrusting -- c5250_闇の双皇子(兄):突き","252500150":"Prince of Darkness C5250_ (brother): Turning: Right -- c5250_闇の双皇子(兄):旋回払い:右","252500160":"C5250_ of Darkness (elder brother): Turning payment: Left -- c5250_闇の双皇子(兄):旋回払い:左","252500170":"C5250_ of Darkness (brother): Fall attack -- c5250_闇の双皇子(兄):落下攻撃","252500180":"C5250_ of Darkness (elder brother): Behind the attack -- c5250_闇の双皇子(兄):背後攻撃","252500190":"Prince of Darkness C5250_ (brother): Right side attack -- c5250_闇の双皇子(兄):右側面攻撃","252500200":"Prince of Darkness C5250_ (brother): left side attack -- c5250_闇の双皇子(兄):左側面攻撃","252510900":"Prince of Darkness C5251_ (brother): Guard -- c5251_闇の双皇子(弟):ガード","252600100":"First step, two-handed combo -- 足元両手叩きつけコンボ1段目","252600110":"Second Step (back) -- 足元両手叩きつけコンボ2段目(背面)","252600120":"Second step (right side) -- 足元両手叩きつけコンボ2段目(右側面)","252600130":"The second step (back) from the standby combo two hands slams -- 足元両手叩きつけコンボ2段目(背面)待機から","252600140":"One-handed slams -- 片手叩きつけ","252600150":"Second stage slams one hand -- 片手叩きつけ2段目","252600160":"Left from one-handed slams -- 片手叩きつけからの左旋回斬り上げ","252600170":"Saigi right from one-handed slams -- 片手叩きつけからの右薙ぎ払い","252600180":"Attack behind -- 背後攻撃","252600190":"Turned -- 振り向き払い","252600200":"Move attack -- 移動攻撃","252600210":"Nagi Combo First Stage -- なぎ払いコンボ1段目","252600220":"Additional cut-up -- 追加斬り上げ","252600230":"Front Vertical Whack 1 -- 正面縦薙ぎ1","252600240":"Front longitudinal whack (reverse) -- 正面縦薙ぎ(逆)","252600250":"Front longitudinal whack (reverse) -- 正面縦薙ぎ(逆々)","252600260":"Rampage rush: Saigi right → Left -- 暴れラッシュ:薙ぎ払い右→左","252600261":"Rampage rush: Saigi Left → Right -- 暴れラッシュ:薙ぎ払い左→右","252600262":"Wild Rush: Swing Down -- 暴れラッシュ:振り下ろし","252600263":"Wild rush: Beat Down -- 暴れラッシュ:叩き下し","252600270":"Jump Hammer -- ジャンプ鉄槌","252600400":"Weapon Swing Wind pressure (general purpose) -- 武器振り風圧(汎用)","252600500":"Hu explosion -- HU爆発","252700000":"c5270_ Tracker _3000 The butt -- c5270_追跡者_3000倒れ込み突き","252700010":"c5270_ tracker _3001 Saigi from falling butt -- c5270_追跡者_3001倒れ込み突きからの薙ぎ払い","252700020":"c5270_ Tracker _3002 right hand slams from fallen butt -- c5270_追跡者_3002倒れ込み突きからの右手叩きつけ","252700030":"c5270_ Tracker _3003 behind the attack -- c5270_追跡者_3003背後叩きつけ攻撃","252700040":"C5270_, a leftist attack from _3004 slams -- c5270_追跡者_3004叩きつけからの左派生攻撃 1撃目","252700041":"Second-wing attack from c5270_ tracker _3004 slams -- c5270_追跡者_3004叩きつけからの左派生攻撃 2撃目","252700050":"Frontal derivation attack from c5270_ tracker _3005 -- c5270_追跡者_3005叩きつけからの正面派生攻撃","252700060":"Right-derived attack from c5270_ tracker _3006 -- c5270_追跡者_3006叩きつけからの右派生攻撃","252700070":"c5270_ Tracker _3007 Slap -- c5270_追跡者_3007裏ビンタ","252700080":"c5270_ Tracker _3008 Saigi (tie from back slap) -- c5270_追跡者_3008薙ぎ払い(裏ビンタからの繋ぎ)","252700090":"c5270_ Tracker _3009 Kesa cut -- c5270_追跡者_3009袈裟切り","252700100":"c5270_ Tracker _3010 Rising Saigi attack -- c5270_追跡者_3010立ち上がり薙ぎ払い攻撃","252700110":"c5270_ Tracker _3011 frontal slams attack -- c5270_追跡者_3011正面叩きつけ攻撃","252700120":"c5270_ Tracker _3012 Saigi. -- c5270_追跡者_3012薙ぎ払い","252700130":"c5270_ Tracker _3013 Rising one-handed -- c5270_追跡者_3013立ち上がり片手振りおろし攻撃","252700140":"c5270_ Tracker _3014 explosion -- c5270_追跡者_3014蝕爆発","252700150":"C5270_ Tracker _3015 left attack (90 degrees turning) -- c5270_追跡者_3015左旋回攻撃(90度旋回)","252700151":"C5270_ Tracker _3015 left attack (90 degrees turning) pillar -- c5270_追跡者_3015左旋回攻撃(90度旋回) 火柱","252700160":"c5270_ Tracker _3016-derived combo 1 -- c5270_追跡者_3016突き派生コンボ1","252700170":"c5270_ Tracker _3017-derived combo 2 -- c5270_追跡者_3017突き派生コンボ2","252700180":"c5270_ Tracker _3018-derived combo 3 -- c5270_追跡者_3018突き派生コンボ3","252700190":"c5270_ Tracker _3019 continuous slap first shot -- c5270_追跡者_3019連続ビンタ 1打目","252700191":"c5270_ Tracker _3019 continuous slap second shot -- c5270_追跡者_3019連続ビンタ 2打目","252700200":"c5270_ Tracker _3020 The left step rotation slash -- c5270_追跡者_3020左ステップ回転斬り","252700210":"c5270_ Tracker _3021 the right step slash -- c5270_追跡者_3021右ステップ斬り","252700220":"c5270_ Tracker _3022 Jump attack -- c5270_追跡者_3022ジャンプ攻撃","252700230":"c5270_ Tracker _3023 Attack 1 -- c5270_追跡者_3023ラッシュ攻撃 1撃目","252700231":"C5270_ Tracker _3023 Attack second firing -- c5270_追跡者_3023ラッシュ攻撃 2撃目","252700232":"c5270_ Tracker, _3023 attack, the third firing. -- c5270_追跡者_3023ラッシュ攻撃 3撃目","252700233":"c5270_ Tracker, _3023 attack, four firing eyes. -- c5270_追跡者_3023ラッシュ攻撃 4撃目","252700234":"c5270_ Tracker, _3023 attack, five firing eyes. -- c5270_追跡者_3023ラッシュ攻撃 5撃目","252700235":"C5270_ Tracker _3023 Attack 6 firing -- c5270_追跡者_3023ラッシュ攻撃 6撃目","252700236":"c5270_ Tracker _3023 attack 7th -- c5270_追跡者_3023ラッシュ攻撃 7撃目","252700240":"c5270_ Tracker _3024 Horizontal Slash combo 1 -- c5270_追跡者_3024水平斬りコンボ1","252700250":"c5270_ Tracker _3025 Horizontal Slash combo 2 -- c5270_追跡者_3025水平斬りコンボ2","252700260":"c5270_ Tracker _3026 Horizontal Slash combo 3 -- c5270_追跡者_3026水平斬りコンボ3","252700270":"c5270_ Tracker _3027 Startup technique -- c5270_追跡者_3027投げ始動技","252700320":"C5270_ Tracker _3032 Attack _ Finish -- c5270_追跡者_3032突進攻撃_フィニッシュ","252700330":"c5270_ Tracker _3033 Foot Sword -- c5270_追跡者_3033足元斬り","252700410":"_4100 Attack by c5270_ Tracker -- c5270_追跡者_4100投げ攻撃","252700500":"c5270_ tracker _100_3000 [HU] fall-down thrust sword -- c5270_追跡者_100_3000[HU]倒れ込み突き二段 炎剣","252700501":"c5270_ tracker _100_3000 [HU] fall into a two-stage caries sword -- c5270_追跡者_100_3000[HU]倒れ込み突き二段 蝕剣","252700510":"c5270_ tracker _100_3001 [HU] behind the attack two-stage caries sword -- c5270_追跡者_100_3001[HU]背後叩きつけ攻撃二段 蝕剣","252700511":"c5270_ tracker _100_3001 [HU] slams attack two-tiered fire sword -- c5270_追跡者_100_3001[HU]背後叩きつけ攻撃二段 炎剣","252700520":"c5270_ tracker _100_3002 [HU] Eclipse explosion two-stage warning -- c5270_追跡者_100_3002[HU]蝕爆発二段 予兆爆発","252700521":"c5270_ tracker _100_3002 [HU] Eclipse explosion stage explosion -- c5270_追跡者_100_3002[HU]蝕爆発二段 爆発","252700522":"c5270_ tracker _100_3002 [HU] caries explosion two-stage caries sword -- c5270_追跡者_100_3002[HU]蝕爆発二段 蝕剣","252700530":"c5270_ tracker _100_3003 [HU] Right Saigi -- c5270_追跡者_100_3003[HU]右薙ぎ払い","252700540":"c5270_ tracker _100_3004 [HU] left Saigi -- c5270_追跡者_100_3004[HU]左薙ぎ払い","252700550":"c5270_ tracker _100_3005 [HU] Saigi 1 second firing -- c5270_追跡者_100_3005[HU]二連薙ぎ払い 1撃目","252700551":"c5270_ tracker _100_3005 [HU] double Saigi second firing -- c5270_追跡者_100_3005[HU]二連薙ぎ払い 2撃目","252700560":"c5270_ tracker _100_3006 [HU] Saigi -- c5270_追跡者_100_3006[HU]薙ぎ払い","252700570":"c5270_ tracker _100_3007 [HU] throwing start of caries sword -- c5270_追跡者_100_3007[HU]投げ始動技 蝕剣","252700571":"c5270_ tracker _100_3007 [HU] throwing Fire Sword -- c5270_追跡者_100_3007[HU]投げ始動技 炎剣","252700580":"c5270_ tracker _100_3008 [HU] Rise of the Shook sword -- c5270_追跡者_100_3008[HU]立ち上がり二連振り払い 蝕剣","252700581":"c5270_ tracker _100_3008 [HU] Rise of the Shook sword -- c5270_追跡者_100_3008[HU]立ち上がり二連振り払い 炎剣","252700590":"c5270_ tracker _100_3009 [HU] frontal slams attack caries sword -- c5270_追跡者_100_3009[HU]正面叩きつけ攻撃 蝕剣","252700591":"c5270_ tracker _100_3009 [HU] frontal slams attack flame sword -- c5270_追跡者_100_3009[HU]正面叩きつけ攻撃 炎剣","252700600":"c5270_ tracker _100_3010 [HU] The left-wing raw attack from a slams -- c5270_追跡者_100_3010[HU]叩きつけからの左派生攻撃 1撃目","252700601":"c5270_ tracker _100_3010 [HU] second-wing attack from the slams -- c5270_追跡者_100_3010[HU]叩きつけからの左派生攻撃 2撃目","252700610":"Front-derived attack from c5270_ tracker _100_3011 [HU] slams -- c5270_追跡者_100_3011[HU]叩きつけからの正面派生攻撃","252700620":"Right-derived attack from c5270_ tracker _100_3012 [HU] slams -- c5270_追跡者_100_3012[HU]叩きつけからの右派生攻撃","252700630":"c5270_ tracker _100_3013 [HU] rising both hand and hand -- c5270_追跡者_100_3013[HU]立ち上がり両手振りおろし攻撃 蝕剣","252700631":"c5270_ tracker _100_3013 [HU] rise both hand-to-hand attack flame Sword -- c5270_追跡者_100_3013[HU]立ち上がり両手振りおろし攻撃 炎剣","252700640":"c5270_ tracker _100_3014 [HU] left step rotation sword -- c5270_追跡者_100_3014[HU]左ステップ回転斬り 蝕剣","252700641":"c5270_ tracker _100_3014 [HU] left step rotation Sword of Flame -- c5270_追跡者_100_3014[HU]左ステップ回転斬り 炎剣","252700650":"c5270_ tracker _100_3015 [HU] Right step sword of Flame -- c5270_追跡者_100_3015[HU]右ステップ斬り 炎剣","252700651":"c5270_ tracker _100_3015 [HU] Right step sword of caries -- c5270_追跡者_100_3015[HU]右ステップ斬り 蝕剣","252700660":"c5270_ tracker _100_3016 [HU] rush attack 1 caries -- c5270_追跡者_100_3016[HU]ラッシュ攻撃 1蝕","252700661":"c5270_ tracker _100_3016 [HU] Rush Attack 2 Flames -- c5270_追跡者_100_3016[HU]ラッシュ攻撃 2炎","252700662":"c5270_ tracker _100_3016 [HU] rush Attack 3 caries -- c5270_追跡者_100_3016[HU]ラッシュ攻撃 3蝕","252700663":"c5270_ tracker _100_3016 [HU] Rush Attack 4 Flames -- c5270_追跡者_100_3016[HU]ラッシュ攻撃 4炎","252700664":"c5270_ tracker _100_3016 [HU] Rush Attack 5 Flames -- c5270_追跡者_100_3016[HU]ラッシュ攻撃 5炎","252700665":"c5270_ tracker _100_3016 [HU] lash attack 6 caries -- c5270_追跡者_100_3016[HU]ラッシュ攻撃 6蝕","252700666":"c5270_ tracker _100_3016 [HU] Rush Attack 7 Flames -- c5270_追跡者_100_3016[HU]ラッシュ攻撃 7炎","252700667":"c5270_ tracker _100_3016 [HU] rush attack 8 caries -- c5270_追跡者_100_3016[HU]ラッシュ攻撃 8蝕","252700668":"c5270_ tracker _100_3016 [HU] Rush Attack 9 Flames -- c5270_追跡者_100_3016[HU]ラッシュ攻撃 9炎","252700670":"c5270_ tracker _100_3017 [HU] Triple combo 1 caries -- c5270_追跡者_100_3017[HU]三連コンボ 1蝕","252700671":"c5270_ tracker _100_3017 [HU] Triple combo 1 Flame -- c5270_追跡者_100_3017[HU]三連コンボ 1炎","252700672":"c5270_ tracker _100_3017 [HU] Triple combo 2 Flames -- c5270_追跡者_100_3017[HU]三連コンボ 2炎","252700673":"c5270_ tracker _100_3017 [HU] Triple combo 2 caries -- c5270_追跡者_100_3017[HU]三連コンボ 2蝕","252700674":"c5270_ tracker _100_3017 [HU] triple combo 3 caries -- c5270_追跡者_100_3017[HU]三連コンボ 3蝕","252700675":"c5270_ tracker _100_3017 [HU] triple combo 3 Flames -- c5270_追跡者_100_3017[HU]三連コンボ 3炎","252700680":"c5270_ tracker _100_3018 [HU] Rotation attack _ Starting Flame Sword -- c5270_追跡者_100_3018[HU]回転攻撃_始動 炎剣","252700681":"c5270_ tracker _100_3018 [HU] Rotation attack _ Starting caries Sword -- c5270_追跡者_100_3018[HU]回転攻撃_始動 蝕剣","252700690":"c5270_ tracker _100_3019 [HU] rotation attack loop caries Sword -- c5270_追跡者_100_3019[HU]回転攻撃ループ 蝕剣","252700691":"c5270_ tracker _100_3019 [HU] rotation attack loop Flame Sword -- c5270_追跡者_100_3019[HU]回転攻撃ループ 炎剣","252700700":"c5270_ tracker _100_3020 [HU] Revolving attack _ Finish caries Sword -- c5270_追跡者_100_3020[HU]回転攻撃_フィニッシュ 蝕剣","252700701":"c5270_ tracker _100_3020 [HU] Rotation attack _ Finish Flame Sword -- c5270_追跡者_100_3020[HU]回転攻撃_フィニッシュ 炎剣","252700710":"c5270_ tracker _100_3021 [HU] jump attack Flame Stab -- c5270_追跡者_100_3021[HU]ジャンプ攻撃 炎刺し","252700711":"c5270_ tracker _100_3021 [HU] Jump attack caries -- c5270_追跡者_100_3021[HU]ジャンプ攻撃 蝕払い","252700720":"c5270_ tracker _100_3022 [HU] right attack (90 degree swivel) caries Sword -- c5270_追跡者_100_3022[HU]右旋回攻撃(90度旋回) 蝕剣","252700721":"c5270_ tracker _100_3022 [HU] right attack (90 degree turning) caries column -- c5270_追跡者_100_3022[HU]右旋回攻撃(90度旋回) 蝕柱","252700730":"c5270_ tracker _100_3023 [HU] left attack (90 degree swivel) Flame Sword -- c5270_追跡者_100_3023[HU]左旋回攻撃(90度旋回) 炎剣","252700731":"c5270_ tracker _100_3023 [HU] left attack (90 degree turning) Flame pillar -- c5270_追跡者_100_3023[HU]左旋回攻撃(90度旋回) 炎柱","252700740":"c5270_ tracker _100_3024 [HU] frontal thrust attack caries Sword -- c5270_追跡者_100_3024[HU]正面突き攻撃 蝕剣","252700750":"c5270_ tracker _100_3025 [HU] turned Saigi 1 two simultaneous caries -- c5270_追跡者_100_3025[HU]振り向き薙ぎ払い 1蝕 2本同時","252700751":"c5270_ tracker _100_3025 [HU] turned Saigi 1 Flames 2 simultaneous -- c5270_追跡者_100_3025[HU]振り向き薙ぎ払い 1炎 2本同時","252700900":"c5270_ Tracker _1500 Heat-up transition caries Vortex -- c5270_追跡者_1500ヒートアップ遷移 蝕の渦","299900100":"Vanguards of c9990_ caries: Attack 1 -- c9990_蝕の尖兵:攻撃1","299900110":"Vanguards of c9990_ caries: a throwing attack -- c9990_蝕の尖兵:投げ攻撃","299900700":"Vanguards of c9990_ caries: Paris. -- c9990_蝕の尖兵:パリィ","299900710":"c1070_ Throw a flame pot -- c1070_火炎壺を投げる","299900720":"C1070_ Guard -- c1070_ガード","299900730":"c1070_ Soul Arrow -- c1070_ソウルの矢","299900740":"c1070_ explosion -- c1070_爆発","299900750":"C1070_ Proximity Magic -- c1070_近接魔法","990000100":"Test character for damage adjustment -- ダメージ調整用テストキャラ","990000110":"Test character for damage adjustment -- ダメージ調整用テストキャラ"},"BehaviorParam_PC":{"0":"For testing -- テスト用","4":"Automatic Patrol object Destruction attack -- 自動巡回用オブジェ破壊攻撃","10":"Pc_ Common _ Egg attack -- PC_共通_卵攻撃","100":"Pc_ Common _ Falling -- PC_共通_落下","400":"Common attack [falling] _ Attack Armor -- 共通攻撃【落下】_攻撃防具","401":"Common attack [Landing] _ Attack Armor -- 共通攻撃【着地】_攻撃防具","402":"Common attack [Thud landing] _ attack Armor -- 共通攻撃【ドスン着地】_攻撃防具","403":"Common attack (Fall Landing) _ Attack Armor -- 共通攻撃【転倒着地】_攻撃防具","404":"Common attack [Rolling] _ Attack Armor -- 共通攻撃【ローリング】_攻撃防具","405":"Common attack [Summon] _ Attack Armor -- 共通攻撃【召喚】_攻撃防具","406":"Common attack [falling on back] _ Attack Armor -- 共通攻撃【仰向け落下】_攻撃防具","410":"Common attack [Push] _ Attack Armor -- 共通攻撃【プッシュ】_攻撃防具","411":"Common attack [later blows] _ attack Armor -- 共通攻撃【後へ吹っ飛ぶ】_攻撃防具","412":"Common attack [吹tsu飛bimasu] _ Attack Armor -- 共通攻撃【前に吹っ飛び】_攻撃防具","413":"Common attacks [after push] _ attack Armor -- 共通攻撃【プッシュ後】_攻撃防具","420":"Common attack [throwing] _ Attack armor -- 共通攻撃【投げ】_攻撃防具","421":"Common attack [Strong throw] _ Attack Armor -- 共通攻撃【強投げ】_攻撃防具","422":"Common attack [Paris slams] _ Attack armor -- 共通攻撃【パリィ叩きつけ】_攻撃防具","442":"Common attack [Ladder _ slide down] Attack armor -- 共通攻撃【ハシゴ_滑り降り】攻撃防具","500":"Common attack [falling] -- 共通攻撃【落下】","501":"Common attack [landing] -- 共通攻撃【着地】","502":"Common attack [Thud landing] -- 共通攻撃【ドスン着地】","503":"Common attack (Fall Landing) -- 共通攻撃【転倒着地】","504":"Common attack [rolling] -- 共通攻撃【ローリング】","505":"Common attack [Summon] -- 共通攻撃【召喚】","506":"Common attack [falling on back] -- 共通攻撃【仰向け落下】","510":"Common attack [push] -- 共通攻撃【プッシュ】","511":"Common attack [later blows] -- 共通攻撃【後へ吹っ飛ぶ】","512":"Common attack [吹tsu飛bimasu] -- 共通攻撃【前に吹っ飛び】","513":"Common attack after push -- 共通攻撃【プッシュ後】","520":"Common attack [throwing] -- 共通攻撃【投げ】","521":"Common attack [strong throw] -- 共通攻撃【強投げ】","522":"Common attack [Paris slams] -- 共通攻撃【パリィ叩きつけ】","530":"Common attack [Ladder _ right Punch] -- 共通攻撃【ハシゴ_右パンチ】","531":"Common attack [ladder _ Right Kick] -- 共通攻撃【ハシゴ_右キック】","540":"Common attack [Ladder _ left Punch] -- 共通攻撃【ハシゴ_左パンチ】","541":"Common attack [Ladder _ left Kick] -- 共通攻撃【ハシゴ_左キック】","542":"Common attack [Ladder _ Slide down] -- 共通攻撃【ハシゴ_滑り降り】","600":"Drop RADIUS 1m -- 落下 半径1m","601":"吹tsu飛bimasu (weak) Radius 1m -- 吹っ飛び(弱) 半径1m","602":"吹tsu飛bimasu (strong) Radius 1m -- 吹っ飛び(強) 半径1m","1000":"Causal Retribution _ explosion -- 因果応報_爆発","10110":"The Great Sword of Seoul (right) -- ソウルの大剣(右)","10111":"The Great Sword of Seoul (left) -- ソウルの大剣(左)","101000300":"Ordinary arrows -- 普通の矢","101000310":"Ordinary arrow _ Move shot -- 普通の矢_移動撃ち","101000320":"Normal arrow _ Diffuse arrow 1 -- 普通の矢_拡散矢1","101000321":"Normal arrow _ Diffuse Arrow 2 -- 普通の矢_拡散矢2","101000322":"Normal arrow _ Spread Arrow 3 -- 普通の矢_拡散矢3","101000330":"Normal arrow Fire -- 普通の矢_連射","101001300":"Big arrows -- 大きな矢","101002300":"Feather Arrow -- 羽根矢","101003300":"Arrows -- 火矢","101004300":"Poison -- 毒矢","101004310":"Mantella _ Moving Shot -- 毒矢_移動撃ち","101004320":"Normal arrow _ Diffuse arrow 1 -- 普通の矢_拡散矢1","101004321":"Normal arrow _ Diffuse Arrow 2 -- 普通の矢_拡散矢2","101004322":"Normal arrow _ Spread Arrow 3 -- 普通の矢_拡散矢3","101004330":"Mantella _ Blazing -- 毒矢_連射","101005300":"Mon Mitsuya -- 月光矢","101006300":"Tree Arrow -- 木の矢","101007300":"The Dragon Hunting Oya -- 竜狩りの大矢","101007310":"The Dragon hunting of Ohya _ through bullets -- 竜狩りの大矢_貫通弾","101100300":"Light Bolt -- ライトボルト","101100400":"Light Bolt [left hand] -- ライトボルト【左手】","101101300":"Heavy bolts -- ヘビーボルト","101101400":"Heavy Bolt [left hand] -- ヘビーボルト【左手】","101102300":"Sniper Bolt -- スナイパーボルト","101102400":"Sniper Bolt [left hand] -- スナイパーボルト【左手】","101103300":"Wood Bolt -- ウッドボルト","101103400":"Wood Bolt [left hand] -- ウッドボルト【左手】","101104300":"Lightning Bolts -- ライトニングボルト","101104400":"Lightning bolts [left hand] -- ライトニングボルト【左手】","102000000":"Dagger _ one hand usually 1 -- 短剣_片手通常1","102000010":"Dagger _ one hand usually two -- 短剣_片手通常2","102000020":"Dagger _ one hand usually three -- 短剣_片手通常3","102000030":"Dagger _ One handed jump -- 短剣_片手ジャンプ1","102000040":"Dagger _ one-handed fall loop -- 短剣_片手落下ループ","102000050":"Dagger _ one-handed fall landing -- 短剣_片手落下着地","102000100":"Dagger _ one-handed entertainment 1 -- 短剣_片手タメ1","102000105":"Dagger _ one-handed Entertainment 1 MAX -- 短剣_片手タメ1最大","102000110":"Dagger _ one-handed Entertainment 2 -- 短剣_片手タメ2","102000115":"Dagger _ one-handed Entertainment 2 Max -- 短剣_片手タメ2最大","102000200":"Dagger _ Two hands usually one -- 短剣_両手通常1","102000210":"Dagger _ Two Hands usually 2 -- 短剣_両手通常2","102000220":"Dagger _ Two hands usually three -- 短剣_両手通常3","102000230":"Dagger _ two-handed jump -- 短剣_両手ジャンプ1","102000240":"Dagger _ two-handed fall loop -- 短剣_両手落下ループ","102000250":"Dagger _ two-handed fall landing -- 短剣_両手落下着地","102000300":"Dagger _ two-handed entertainment 1 -- 短剣_両手タメ1","102000305":"Dagger _ two-handed entertainment 1 MAX -- 短剣_両手タメ1最大","102000310":"Dagger _ two-handed Entertainment 2 -- 短剣_両手タメ2","102000315":"Dagger _ two-handed entertainment max -- 短剣_両手タメ2最大","102000400":"Dagger _ Left Hand -- 短剣_左手","102000410":"Dagger _ one hand close -- 短剣_片手近距離","102000420":"Dagger _ Both hands close -- 短剣_両手近距離","102000430":"Dagger _ guard _ one hand -- 短剣_ガード_片手","102000440":"Dagger _ guard _ both hands -- 短剣_ガード_両手","102000450":"Dagger _ Paris -- 短剣_パリィ","102000470":"Dagger _ Large Throw -- 短剣_大型投げ","102000490":"Dagger _ Falling Throw -- 短剣_落下投げ","102000500":"Behind the Dagger -- 短剣_背後","102000505":"Dagger _ Strengthening behind -- 短剣_強化背後","102000510":"Dagger _ after Paris -- 短剣_パリィ後","102000515":"Dagger _ After strengthening Paris -- 短剣_強化パリィ後","102000516":"Dagger _ After strengthening Paris _ two -- 短剣_強化パリィ後_二段目","102000520":"Dagger _ one handed Dash -- 短剣_片手ダッシュ","102000530":"Dagger _ both hands dash -- 短剣_両手ダッシュ","102000540":"Dagger _ one hand step before -- 短剣_片手ステップ前","102000580":"Dagger _ Hands before step -- 短剣_両手ステップ前","102000600":"Dagger _ Parigard -- 短剣_パリィガード","102000610":"Dagger _ Behind the transition -- 短剣_背後遷移","102000615":"Dagger _ Behind Transition _ missed -- 短剣_背後遷移_空振り","102000700":"Dagger _ Arts: Strong rock Step -- 短剣_アーツ:強ロックステップ","102001300":"[72] Dagger _ two-handed entertainment 1 -- 【72】短刀_両手タメ1","102001310":"[72] Dagger _ two-handed Entertainment 2 -- 【72】短刀_両手タメ2","102002000":"[73] Soul Absorbing _ one hand usually 1 -- 【73】吸魂_片手通常1","102002010":"[73] Soul Absorbing _ one hand usually 2 -- 【73】吸魂_片手通常2","102002020":"[73] Soul Absorbing _ one hand usually three -- 【73】吸魂_片手通常3","102002030":"[73] Soul-one-handed jump 1 -- 【73】吸魂_片手ジャンプ1","102002040":"[73] Soul-one-handed fall loop -- 【73】吸魂_片手落下ループ","102002050":"[73] Soul-one-handed fall landing -- 【73】吸魂_片手落下着地","102002100":"[73] Soul-one-handed entertainment 1 -- 【73】吸魂_片手タメ1","102002110":"[73] Soul-one-handed entertainment 2 -- 【73】吸魂_片手タメ2","102002200":"[73] Soul absorbing _ usually one hand -- 【73】吸魂_両手通常1","102002210":"[73] Soul Absorbing _ Two hands usually 2 -- 【73】吸魂_両手通常2","102002220":"[73] Soul Absorbing _ Two hands usually three -- 【73】吸魂_両手通常3","102002230":"[73] Soul Absorbing _ two-handed jump 1 -- 【73】吸魂_両手ジャンプ1","102002240":"[73] Soul absorbing _ Both hands Fall loop -- 【73】吸魂_両手落下ループ","102002250":"[73] Soul absorption _ Both hands fall landing -- 【73】吸魂_両手落下着地","102002300":"[73] Soul-absorbing, two-handed entertainment 1 -- 【73】吸魂_両手タメ1","102002310":"[73] Soul-absorbing two-handed entertainment 2 -- 【73】吸魂_両手タメ2","102002400":"[73] Soul Absorbing _ left hand -- 【73】吸魂_左手","102002410":"[73] Soul Absorbing _ one hand close -- 【73】吸魂_片手近距離","102002420":"[73] Soul Absorbing _ both hands close -- 【73】吸魂_両手近距離","102002430":"[73] Soul-guard _ one hand -- 【73】吸魂_ガード_片手","102002440":"[73] Soul-guarding _ both hands -- 【73】吸魂_ガード_両手","102002450":"[73] Soul-Paris -- 【73】吸魂_パリィ","102002490":"[73] Soul absorbing _ Falling throw -- 【73】吸魂_落下投げ","102002500":"[73] Soul absorbing _ behind -- 【73】吸魂_背後","102002505":"[73] Soul absorbing _ behind the reinforcement -- 【73】吸魂_強化背後","102002510":"[73] Soul-Paris after -- 【73】吸魂_パリィ後","102002515":"[73] Soul-Paris after strengthening -- 【73】吸魂_強化パリィ後","102002516":"[73] Soul-absorbing _ after strengthening Paris _ two -- 【73】吸魂_強化パリィ後_二段目","102002520":"[73] Soul-one-handed dash -- 【73】吸魂_片手ダッシュ","102002530":"[73] Soul Absorbing _ both hands dash -- 【73】吸魂_両手ダッシュ","102002540":"[73] Soul-one-handed step before -- 【73】吸魂_片手ステップ前","102002580":"[73] Soul Absorbing _ two-handed step before -- 【73】吸魂_両手ステップ前","102002600":"[73] Soul-Parigard -- 【73】吸魂_パリィガード","102003000":"【 120 】 Ghost Knife _ one hand usually 1 -- 【120】死霊のナイフ_片手通常1","102003010":"[120] A ghost knife _ one hand usually two -- 【120】死霊のナイフ_片手通常2","102003020":"[120] A ghost knife _ one hand usually three -- 【120】死霊のナイフ_片手通常3","102003030":"[120] Ghost knife _ one-handed jump -- 【120】死霊のナイフ_片手ジャンプ1","102003040":"[120] Ghost knife _ one-handed fall loop -- 【120】死霊のナイフ_片手落下ループ","102003050":"[120] Ghost knife _ one-handed fall landing -- 【120】死霊のナイフ_片手落下着地","102003100":"[120] A ghost knife _ one-handed entertainment 1 -- 【120】死霊のナイフ_片手タメ1","102003110":"[120] A ghost knife _ one-handed Entertainment 2 -- 【120】死霊のナイフ_片手タメ2","102003200":"[120] A ghost knife _ two hands usually one -- 【120】死霊のナイフ_両手通常1","102003210":"[120] A ghost knife _ two hands usually -- 【120】死霊のナイフ_両手通常2","102003220":"[120] A ghost knife _ two hands usually three -- 【120】死霊のナイフ_両手通常3","102003230":"[120] Ghost knife _ two-handed jump 1 -- 【120】死霊のナイフ_両手ジャンプ1","102003240":"[120] Ghost knife _ two-handed fall loop -- 【120】死霊のナイフ_両手落下ループ","102003250":"[120] A ghost knife _ two-handed fall landing -- 【120】死霊のナイフ_両手落下着地","102003300":"【 120 】 Ghost Knife _ two-handed entertainment 1 -- 【120】死霊のナイフ_両手タメ1","102003310":"【 120 】 Ghost Knife _ two-handed Entertainment 2 -- 【120】死霊のナイフ_両手タメ2","102003400":"[120] Knife of the dead, left hand -- 【120】死霊のナイフ_左手","102003410":"[120] A ghost knife _ one hand close -- 【120】死霊のナイフ_片手近距離","102003420":"【 120 】 Ghost Knife _ both hands close -- 【120】死霊のナイフ_両手近距離","102003430":"【 120 】 Ghost Knife _ guard _ one hand -- 【120】死霊のナイフ_ガード_片手","102003440":"【 120 】 Ghost Knife _ guard _ both hands -- 【120】死霊のナイフ_ガード_両手","102003450":"[120] A ghost knife _ Paris -- 【120】死霊のナイフ_パリィ","102003490":"[120] Ghost knives _ Falling throws -- 【120】死霊のナイフ_落下投げ","102003500":"[120] The Ghost's knife _ behind -- 【120】死霊のナイフ_背後","102003505":"【 120 】 Ghost Knife _ reinforced behind -- 【120】死霊のナイフ_強化背後","102003510":"[120] A ghost's knife _ after Paris -- 【120】死霊のナイフ_パリィ後","102003515":"【 120 】 Ghost Knife _ after strengthening Paris -- 【120】死霊のナイフ_強化パリィ後","102003516":"[120] A ghost knife _ Paris after strengthening _ two -- 【120】死霊のナイフ_強化パリィ後_二段目","102003520":"[120] Ghost knife _ one-handed Dash -- 【120】死霊のナイフ_片手ダッシュ","102003530":"[120] Ghost knife _ both hands dash -- 【120】死霊のナイフ_両手ダッシュ","102003540":"[120] A ghost knife _ one hand step before -- 【120】死霊のナイフ_片手ステップ前","102003580":"[120] Knife of the dead-hands before step -- 【120】死霊のナイフ_両手ステップ前","102003600":"[120] A ghost knife _ Parigard -- 【120】死霊のナイフ_パリィガード","102004000":"[130] Kieran Dagger _ one hand usually 1 -- 【130】キアランの短剣_片手通常1","102004010":"[130] Kieran's dagger _ one hand usually two -- 【130】キアランの短剣_片手通常2","102004020":"[130] Kieran Dagger _ one hand usually three -- 【130】キアランの短剣_片手通常3","102004030":"[130] Kieran Dagger _ one-handed jump 1 -- 【130】キアランの短剣_片手ジャンプ1","102004040":"[130] Kieran Dagger _ one-handed fall loop -- 【130】キアランの短剣_片手落下ループ","102004050":"[130] Kieran's dagger _ one-handed fall landing -- 【130】キアランの短剣_片手落下着地","102004100":"[130] Kieran Dagger _ one-handed entertainment 1 -- 【130】キアランの短剣_片手タメ1","102004110":"[130] Kieran Dagger _ one-handed Entertainment 2 -- 【130】キアランの短剣_片手タメ2","102004200":"[130] Kieran Dagger _ both hands usually one -- 【130】キアランの短剣_両手通常1","102004210":"[130] Kieran Dagger _ Two hands usually 2 -- 【130】キアランの短剣_両手通常2","102004220":"[130] Kieran Dagger _ Two hands usually three -- 【130】キアランの短剣_両手通常3","102004230":"[130] Kieran Dagger _ two-handed jump 1 -- 【130】キアランの短剣_両手ジャンプ1","102004240":"[130] Kieran Dagger _ two-handed fall loop -- 【130】キアランの短剣_両手落下ループ","102004250":"[130] Kieran Dagger _ two-handed fall landing -- 【130】キアランの短剣_両手落下着地","102004300":"[130] Kieran Dagger _ two-handed entertainment 1 -- 【130】キアランの短剣_両手タメ1","102004310":"[130] Kieran Dagger _ two-handed Entertainment 2 -- 【130】キアランの短剣_両手タメ2","102004400":"[130] Kieran's dagger _ left hand -- 【130】キアランの短剣_左手","102004410":"[130] Kieran's dagger _ one hand close -- 【130】キアランの短剣_片手近距離","102004420":"[130] Kieran Dagger _ both hands close -- 【130】キアランの短剣_両手近距離","102004430":"[130] Kieran's Dagger _ guard _ one hand -- 【130】キアランの短剣_ガード_片手","102004440":"[130] Kieran's Dagger _ guard _ both hands -- 【130】キアランの短剣_ガード_両手","102004450":"[130] Kieran's Dagger _ Paris -- 【130】キアランの短剣_パリィ","102004490":"[130] Kieran's dagger _ a falling throw -- 【130】キアランの短剣_落下投げ","102004500":"[130] Kieran's dagger _ behind -- 【130】キアランの短剣_背後","102004505":"[130] Kieran's dagger _ reinforced behind -- 【130】キアランの短剣_強化背後","102004510":"[130] Kieran's dagger _ after Paris -- 【130】キアランの短剣_パリィ後","102004515":"[130] Kieran's dagger _ after strengthening Paris -- 【130】キアランの短剣_強化パリィ後","102004516":"[130] Kieran Daggers _ After strengthening Paris _ two -- 【130】キアランの短剣_強化パリィ後_二段目","102004520":"[130] Kieran's dagger _ one-handed Dash -- 【130】キアランの短剣_片手ダッシュ","102004530":"[130] Kieran's dagger _ both hands dash -- 【130】キアランの短剣_両手ダッシュ","102004540":"[130] Kieran's dagger _ one hand step before -- 【130】キアランの短剣_片手ステップ前","102004580":"[130] Kieran's dagger _ hands before step -- 【130】キアランの短剣_両手ステップ前","102004600":"[130] Kieran's Dagger _ Parigard -- 【130】キアランの短剣_パリィガード","102300000":"Straight Sword _ one hand usually 1 -- 直剣_片手通常1","102300010":"Straight Sword _ one hand usually two -- 直剣_片手通常2","102300020":"Straight Sword _ one hand usually three -- 直剣_片手通常3","102300030":"Straight Sword _ One handed jump -- 直剣_片手ジャンプ1","102300040":"Straight Sword _ one-handed fall loop -- 直剣_片手落下ループ","102300050":"Straight Sword _ one-handed fall landing -- 直剣_片手落下着地","102300100":"Straight Sword _ one-handed entertainment 1 -- 直剣_片手タメ1","102300105":"Straight Sword _ one-handed 1_ maximum attack -- 直剣_片手タメ1_最大攻撃","102300110":"Straight Sword _ one-handed Entertainment 2 -- 直剣_片手タメ2","102300115":"Straight Sword _ one-handed 2_ maximum attack -- 直剣_片手タメ2_最大攻撃","102300200":"Straight Sword _ Two hands usually one -- 直剣_両手通常1","102300210":"Straight Swords _ Two hands usually -- 直剣_両手通常2","102300220":"Straight Swords _ Two hands usually three -- 直剣_両手通常3","102300230":"Straight Sword _ two-handed jump -- 直剣_両手ジャンプ1","102300240":"Straight Sword _ two-handed fall loop -- 直剣_両手落下ループ","102300250":"Straight Sword _ two-handed fall landing -- 直剣_両手落下着地","102300300":"Straight Sword _ two-handed entertainment 1 -- 直剣_両手タメ1","102300305":"Straight Sword _ two-handed 1_ maximum attack -- 直剣_両手タメ1_最大攻撃","102300310":"Straight Sword _ two-handed Entertainment 2 -- 直剣_両手タメ2","102300315":"Straight Sword _ two-handed 2_ maximum attack -- 直剣_両手タメ2_最大攻撃","102300400":"Straight Sword _ left hand -- 直剣_左手","102300410":"Straight Sword _ one hand close -- 直剣_片手近距離","102300420":"Straight Sword _ both hands close -- 直剣_両手近距離","102300430":"Straight Sword _ guard _ one hand -- 直剣_ガード_片手","102300440":"Straight Swords _ guards _ both hands -- 直剣_ガード_両手","102300450":"Straight Sword _ Paris -- 直剣_パリィ","102300470":"Straight Sword _ Falling Throw -- 直剣_落下投げ","102300490":"Straight Sword _ Falling Throw -- 直剣_落下投げ","102300500":"Straight Sword _ behind -- 直剣_背後","102300505":"Straight Sword _ reinforced behind -- 直剣_強化背後","102300510":"Straight Sword _ after Paris -- 直剣_パリィ後","102300515":"Straight Sword _ after strengthening Paris -- 直剣_強化パリィ後","102300516":"Paris Straight Sword _ after strengthening _ two -- 直剣_強化パリィ後_二段目","102300520":"Straight Sword _ one-handed Dash -- 直剣_片手ダッシュ","102300530":"Straight Sword _ both hands dash -- 直剣_両手ダッシュ","102300540":"Straight Sword _ one hand step before -- 直剣_片手ステップ前","102300580":"Straight Sword _ Two hands before step -- 直剣_両手ステップ前","102300600":"Straight Sword _ Parigard -- 直剣_パリィガード","102300610":"Straight Sword _ Behind the transition -- 直剣_背後遷移","102300615":"Straight Sword _ Behind the transition _ missed -- 直剣_背後遷移_空振り","102300720":"Straight Sword poised, weak attack -- 直剣_構え弱攻撃","102300722":"Straight Sword _ Strong attack -- 直剣_構え強攻撃","102301100":"[53] Broad _ one-handed entertainment 1 -- 【53】ブロード_片手タメ1","102301540":"[53] Broad _ one-handed step before -- 【53】ブロード_片手ステップ前","102301580":"[53] Broad _ both hands before step -- 【53】ブロード_両手ステップ前","102302100":"[54] Straight Sword: one-handed entertainment 1 -- 【54】刺突直剣_片手タメ1","102302105":"[54] One-handed 1_ maximum attack -- 【54】刺突直剣_片手タメ1_最大攻撃","102302110":"[54] Straight Sword: one-handed Entertainment 2 -- 【54】刺突直剣_片手タメ2","102302115":"[54] One-handed 2_ maximum attack -- 【54】刺突直剣_片手タメ2_最大攻撃","102302300":"[54] Straight Swords _ two-handed entertainment 1 -- 【54】刺突直剣_両手タメ1","102302310":"[54] Straight Swords _ two-handed Entertainment 2 -- 【54】刺突直剣_両手タメ2","102302580":"[54] Thrust Straight Sword _ before both hands step -- 【54】刺突直剣_両手ステップ前","102303000":"[55] Hero's Sword _ one hand usually 1 -- 【55】英雄の剣_片手通常1","102303010":"[55] Hero's Sword _ one hand usually two -- 【55】英雄の剣_片手通常2","102303020":"[55] Hero's Sword _ one hand usually three -- 【55】英雄の剣_片手通常3","102303030":"[55] Hero's Sword _ one-handed jump 1 -- 【55】英雄の剣_片手ジャンプ1","102303040":"[55] Hero's Sword _ one-handed fall loop -- 【55】英雄の剣_片手落下ループ","102303050":"[55] Hero's Sword _ one-handed fall landing -- 【55】英雄の剣_片手落下着地","102303100":"[55] Hero's Sword _ one-handed entertainment 1 -- 【55】英雄の剣_片手タメ1","102303110":"[55] Hero's Sword _ one-handed Entertainment 2 -- 【55】英雄の剣_片手タメ2","102303200":"[55] Hero's Sword _ hands usually one -- 【55】英雄の剣_両手通常1","102303210":"[55] Hero's Sword _ Two hands usually 2 -- 【55】英雄の剣_両手通常2","102303220":"[55] Hero's sword _ hands usually three -- 【55】英雄の剣_両手通常3","102303230":"[55] Hero's Sword _ two-handed jump 1 -- 【55】英雄の剣_両手ジャンプ1","102303240":"[55] Hero's Sword _ two-handed fall loop -- 【55】英雄の剣_両手落下ループ","102303250":"[55] Hero's Sword _ two-handed fall landing -- 【55】英雄の剣_両手落下着地","102303300":"[55] Hero's Sword _ two-handed entertainment 1 -- 【55】英雄の剣_両手タメ1","102303310":"[55] Hero's Sword _ two-handed Entertainment 2 -- 【55】英雄の剣_両手タメ2","102303400":"[55] Hero's Sword _ left hand -- 【55】英雄の剣_左手","102303410":"[55] Hero's Sword _ one hand short distance -- 【55】英雄の剣_片手近距離","102303420":"[55] Hero's Sword _ both hands close -- 【55】英雄の剣_両手近距離","102303430":"[55] Hero's Sword _ guard _ one hand -- 【55】英雄の剣_ガード_片手","102303440":"[55] Hero's Sword _ guard _ both hands -- 【55】英雄の剣_ガード_両手","102303450":"[55] Hero's Sword _ Paris -- 【55】英雄の剣_パリィ","102303490":"[55] Hero's sword _ falling Throw -- 【55】英雄の剣_落下投げ","102303500":"[55] Hero's Sword _ behind -- 【55】英雄の剣_背後","102303505":"[55] Hero's Sword _ strengthening behind -- 【55】英雄の剣_強化背後","102303510":"[55] Hero's Sword _ after Paris -- 【55】英雄の剣_パリィ後","102303515":"[55] Hero's Sword _ after strengthening Paris -- 【55】英雄の剣_強化パリィ後","102303516":"[55] Hero's Sword _ strengthened after Paris _ two -- 【55】英雄の剣_強化パリィ後_二段目","102303520":"[55] Hero's Sword _ one-handed Dash -- 【55】英雄の剣_片手ダッシュ","102303530":"[55] Hero's Sword _ both hands dash -- 【55】英雄の剣_両手ダッシュ","102303540":"[55] Hero's Sword _ one hand step before -- 【55】英雄の剣_片手ステップ前","102303580":"[55] Hero's Sword _ hands before step -- 【55】英雄の剣_両手ステップ前","102303600":"[55] Hero's Sword _ Parigard -- 【55】英雄の剣_パリィガード","102304100":"[57] Dark _ one-handed entertainment 1 -- 【57】ダーク_片手タメ1","102304110":"[57] Dark _ one-handed Entertainment 2 -- 【57】ダーク_片手タメ2","102304300":"[57] Dark _ two-handed entertainment 1 -- 【57】ダーク_両手タメ1","102304310":"[57] Dark _ two-handed Entertainment 2 -- 【57】ダーク_両手タメ2","102305000":"[58] Sword of the old dragon _ one hand usually 1 -- 【58】古竜の剣_片手通常1","102305010":"[58] Sword of the old dragon _ one hand usually two -- 【58】古竜の剣_片手通常2","102305020":"[58] Sword of the old dragon _ one hand usually three -- 【58】古竜の剣_片手通常3","102305030":"[58] Sword of the old dragon _ one-handed jump 1 -- 【58】古竜の剣_片手ジャンプ1","102305040":"[58] Sword of the old dragon _ one-handed fall loop -- 【58】古竜の剣_片手落下ループ","102305050":"[58] Sword of the old dragon _ one-handed fall landing -- 【58】古竜の剣_片手落下着地","102305100":"[58] Sword of the old dragon _ one-handed entertainment 1 -- 【58】古竜の剣_片手タメ1","102305110":"[58] Sword of the old dragon _ one-handed Entertainment 2 -- 【58】古竜の剣_片手タメ2","102305200":"[58] Sword of the old dragon _ two hands usually one -- 【58】古竜の剣_両手通常1","102305210":"[58] Sword of the old dragon _ Two hands usually 2 -- 【58】古竜の剣_両手通常2","102305220":"[58] Sword of the old dragon _ Two hands usually three -- 【58】古竜の剣_両手通常3","102305230":"[58] Sword of the old Dragon _ two-handed jump 1 -- 【58】古竜の剣_両手ジャンプ1","102305240":"[58] Sword of the old Dragon _ both hands Fall loop -- 【58】古竜の剣_両手落下ループ","102305250":"[58] Sword of the old Dragon _ both hands Fall landing -- 【58】古竜の剣_両手落下着地","102305300":"[58] Sword of the old Dragon _ two-handed entertainment 1 -- 【58】古竜の剣_両手タメ1","102305310":"[58] Sword of the old Dragon _ two-handed Entertainment 2 -- 【58】古竜の剣_両手タメ2","102305320":"[58] Sword of the old Dragon _ two-handed Entertainment 1/magic Sword firing -- 【58】古竜の剣_両手タメ1/魔法剣発射時","102305330":"[58] Sword of the old Dragon _ two-handed entertainment 2/when the Magic Sword is fired -- 【58】古竜の剣_両手タメ2/魔法剣発射時","102305400":"[58] Old Dragon Sword _ left hand -- 【58】古竜の剣_左手","102305410":"[58] Sword of the old Dragon _ one hand short distance -- 【58】古竜の剣_片手近距離","102305420":"[58] Sword of the old Dragon _ both hands close range -- 【58】古竜の剣_両手近距離","102305430":"[58] Sword of the old Dragon _ guard _ one hand -- 【58】古竜の剣_ガード_片手","102305440":"[58] Sword of the old Dragon _ guard _ both hands -- 【58】古竜の剣_ガード_両手","102305450":"[58] The Sword of the old Dragon _ Paris -- 【58】古竜の剣_パリィ","102305490":"[58] Sword of the old Dragon _ fall Throw -- 【58】古竜の剣_落下投げ","102305500":"[58] Old Dragon Sword _ behind -- 【58】古竜の剣_背後","102305505":"[58] Sword of the old dragon _ strengthening behind -- 【58】古竜の剣_強化背後","102305510":"[58] The Sword of the old dragon _ after Paris -- 【58】古竜の剣_パリィ後","102305515":"[58] The Sword of the old dragon _ after strengthening Paris -- 【58】古竜の剣_強化パリィ後","102305516":"[58] The Sword of the old dragon _ after strengthening Paris _ two -- 【58】古竜の剣_強化パリィ後_二段目","102305520":"[58] Sword of the old dragon _ one-handed Dash -- 【58】古竜の剣_片手ダッシュ","102305530":"[58] Sword of the old Dragon _ both hands Dash -- 【58】古竜の剣_両手ダッシュ","102305540":"[58] Sword of the old Dragon _ one hand step before -- 【58】古竜の剣_片手ステップ前","102305580":"[58] Sword of the old Dragon _ Two hands before step -- 【58】古竜の剣_両手ステップ前","102305600":"[58] The Sword of the old Dragon _ Parigard -- 【58】古竜の剣_パリィガード","102305800":"[58] Sword of the old Dragon _ Magic Sword -- 【58】古竜の剣_魔法剣","102500000":"Large Sword _ one hand usually 1 -- 大剣_片手通常1","102500010":"Large Sword _ one hand usually two -- 大剣_片手通常2","102500020":"Large Sword _ one hand usually three -- 大剣_片手通常3","102500030":"Big Sword _ One handed jump -- 大剣_片手ジャンプ1","102500040":"Large Sword _ One handed fall loop -- 大剣_片手落下ループ","102500050":"Big Sword _ one-handed fall landing -- 大剣_片手落下着地","102500100":"Big Sword _ one-handed entertainment 1 -- 大剣_片手タメ1","102500105":"Large Sword _ one hand entertainment maximum -- 大剣_片手タメ1最大","102500110":"Big Sword _ one hand Entertainment 2 -- 大剣_片手タメ2","102500115":"Big Sword _ one hand entertainment 2 max -- 大剣_片手タメ2最大","102500200":"Large Sword _ Two hands usually one -- 大剣_両手通常1","102500210":"Large Swords _ Two hands usually -- 大剣_両手通常2","102500220":"Large Swords _ Two hands usually three -- 大剣_両手通常3","102500230":"Large Sword _ two-handed jump 1 -- 大剣_両手ジャンプ1","102500240":"Large Sword _ two-handed fall loop -- 大剣_両手落下ループ","102500250":"Large Sword _ two-handed fall landing -- 大剣_両手落下着地","102500300":"Large Sword _ two-handed entertainment 1 -- 大剣_両手タメ1","102500305":"Large Sword _ two-handed entertainment 1 MAX -- 大剣_両手タメ1最大","102500310":"Large Sword _ two-handed Entertainment 2 -- 大剣_両手タメ2","102500315":"Large Sword _ two-handed entertainment maximum -- 大剣_両手タメ2最大","102500400":"Big Sword _ Left hand -- 大剣_左手","102500410":"Large Sword _ one hand close -- 大剣_片手近距離","102500420":"Large Sword _ both hands close -- 大剣_両手近距離","102500430":"Large Sword _ guard _ one hand -- 大剣_ガード_片手","102500440":"Big Sword _ guard _ both hands -- 大剣_ガード_両手","102500450":"Big Sword _ Paris -- 大剣_パリィ","102500470":"Large Sword _ Large throw -- 大剣_大型投げ","102500490":"Large Sword _ Falling throw -- 大剣_落下投げ","102500500":"Behind the Great Sword -- 大剣_背後","102500505":"Great Sword _ reinforced behind -- 大剣_強化背後","102500510":"Large Sword _ after Paris -- 大剣_パリィ後","102500515":"Great swords _ after strengthening Paris -- 大剣_強化パリィ後","102500516":"Paris _ Two after the Great sword _ -- 大剣_強化パリィ後_二段目","102500520":"Big Sword _ One handed Dash -- 大剣_片手ダッシュ","102500530":"Big Sword _ both hands dash -- 大剣_両手ダッシュ","102500540":"Big Sword _ one hand step before -- 大剣_片手ステップ前","102500580":"Large Sword _ Two hands before step -- 大剣_両手ステップ前","102500600":"Big Sword _ Parigard -- 大剣_パリィガード","102500610":"Big Sword _ Behind the transition -- 大剣_背後遷移","102500615":"Big Sword _ Behind the transition _ missed -- 大剣_背後遷移_空振り","102501100":"[80] Black Knight's Great Sword _ one-handed entertainment 1 -- 【80】黒騎士の大剣_片手タメ1","102501110":"[80] Black Knight's Great Sword _ one-handed Entertainment 2 -- 【80】黒騎士の大剣_片手タメ2","102501300":"[80] Black Knight's Great Sword _ two-handed entertainment 1 -- 【80】黒騎士の大剣_両手タメ1","102502000":"[75] Framberger _ one-handed usually 1 -- 【75】フランベルジェ_片手通常1","102502010":"[75] Framberger _ one hand usually two -- 【75】フランベルジェ_片手通常2","102502020":"[75] Framberger _ one hand usually three -- 【75】フランベルジェ_片手通常3","102502030":"[75] Framberger _ one-handed jump 1 -- 【75】フランベルジェ_片手ジャンプ1","102502040":"[75] Framberger _ one-handed fall loop -- 【75】フランベルジェ_片手落下ループ","102502050":"[75] Framberger _ one-handed fall landing -- 【75】フランベルジェ_片手落下着地","102502100":"[75] Framberger _ one-handed entertainment 1 -- 【75】フランベルジェ_片手タメ1","102502110":"[75] Framberger _ one-handed Entertainment 2 -- 【75】フランベルジェ_片手タメ2","102502200":"[75] Framberger _ Two hands usually one -- 【75】フランベルジェ_両手通常1","102502210":"[75] Framberger _ Two hands usually 2 -- 【75】フランベルジェ_両手通常2","102502220":"[75] Framberger _ Two hands usually three -- 【75】フランベルジェ_両手通常3","102502230":"[75] Framberger _ two-handed jump 1 -- 【75】フランベルジェ_両手ジャンプ1","102502240":"[75] Framberger _ two-handed fall loop -- 【75】フランベルジェ_両手落下ループ","102502250":"[75] Framberger _ two-handed fall landing -- 【75】フランベルジェ_両手落下着地","102502300":"[75] Framberger _ two-handed entertainment 1 -- 【75】フランベルジェ_両手タメ1","102502310":"[75] Framberger _ two-handed Entertainment 2 -- 【75】フランベルジェ_両手タメ2","102502400":"[75] Framberger _ left Hand -- 【75】フランベルジェ_左手","102502520":"[75] Framberger _ one-handed Dash -- 【75】フランベルジェ_片手ダッシュ","102502530":"[75] Framberger _ both hands dash -- 【75】フランベルジェ_両手ダッシュ","102502540":"[75] Framberger _ one-handed step before -- 【75】フランベルジェ_片手ステップ前","102502580":"[75] Framberger _ two-handed steps ago -- 【75】フランベルジェ_両手ステップ前","102503100":"[77] Large Sword of stone _ one-handed entertainment 1 -- 【77】石の大剣_片手タメ1","102503110":"[77] Large Sword of stone _ one-handed Entertainment 2 -- 【77】石の大剣_片手タメ2","102503200":"[77] Stone Large Sword _ two hands usually one -- 【77】石の大剣_両手通常1","102503210":"【 77 】 Stone Large Sword _ two hands usually 2 -- 【77】石の大剣_両手通常2","102503220":"[77] Stone Large Sword _ two hands usually three -- 【77】石の大剣_両手通常3","102503300":"[77] Large Sword of stone _ two-handed entertainment 1 -- 【77】石の大剣_両手タメ1","102503310":"[77] Large Sword of stone _ two-handed Entertainment 2 -- 【77】石の大剣_両手タメ2","102503580":"[77] Stone Large Sword _ hands before step -- 【77】石の大剣_両手ステップ前","102504000":"[79] Moonlight _ one hand usually 1 -- 【79】ムーンライト_片手通常1","102504010":"[79] Moonlight _ one hand usually two -- 【79】ムーンライト_片手通常2","102504020":"[79] Moonlight _ one hand usually three -- 【79】ムーンライト_片手通常3","102504030":"[79] Moonlight _ one-handed jump 1 -- 【79】ムーンライト_片手ジャンプ1","102504040":"[79] Moonlight _ one-handed fall loop -- 【79】ムーンライト_片手落下ループ","102504050":"[79] Moonlight _ one-handed fall landing -- 【79】ムーンライト_片手落下着地","102504100":"[79] Moonlight _ one-handed entertainment 1 -- 【79】ムーンライト_片手タメ1","102504110":"[79] Moonlight _ one-handed Entertainment 2 -- 【79】ムーンライト_片手タメ2","102504120":"[79] Moonlight _ one-handed Entertainment 1/Magic Sword Launch -- 【79】ムーンライト_片手タメ1/魔法剣発射時","102504130":"[79] Moonlight _ one-handed Entertainment 2/Magic Sword Launch -- 【79】ムーンライト_片手タメ2/魔法剣発射時","102504200":"[79] Moonlight _ hands usually one -- 【79】ムーンライト_両手通常1","102504210":"[79] Moonlight _ hands usually two -- 【79】ムーンライト_両手通常2","102504220":"[79] Moonlight _ hands usually three -- 【79】ムーンライト_両手通常3","102504230":"[79] Moonlight _ two-handed jump 1 -- 【79】ムーンライト_両手ジャンプ1","102504240":"[79] Moonlight _ Both hands Fall loop -- 【79】ムーンライト_両手落下ループ","102504250":"[79] Moonlight _ Both hands fall landing -- 【79】ムーンライト_両手落下着地","102504300":"[79] Moonlight _ two-handed entertainment 1 -- 【79】ムーンライト_両手タメ1","102504310":"[79] Moonlight _ two-handed Entertainment 2 -- 【79】ムーンライト_両手タメ2","102504320":"[79] Moonlight _ two-handed Entertainment 1/magic Sword firing -- 【79】ムーンライト_両手タメ1/魔法剣発射時","102504330":"[79] Moonlight _ two-handed Entertainment 2/magic Sword when firing -- 【79】ムーンライト_両手タメ2/魔法剣発射時","102504400":"[79] Moonlight _ Left Hand -- 【79】ムーンライト_左手","102504410":"[79] Moonlight _ one hand close -- 【79】ムーンライト_片手近距離","102504420":"[79] Moonlight _ both hands close -- 【79】ムーンライト_両手近距離","102504430":"[79] Moonlight _ guard _ one hand -- 【79】ムーンライト_ガード_片手","102504440":"[79] Moonlight _ guard _ both hands -- 【79】ムーンライト_ガード_両手","102504450":"[79] Moonlight _ Paris -- 【79】ムーンライト_パリィ","102504490":"[79] Moonlight _ Falling Throw -- 【79】ムーンライト_落下投げ","102504500":"[79] Moonlight _ behind -- 【79】ムーンライト_背後","102504505":"[79] Moonlight _ Reinforced behind -- 【79】ムーンライト_強化背後","102504510":"[79] Moonlight _ after Paris -- 【79】ムーンライト_パリィ後","102504515":"【 79 】 Moonlight _ after strengthening Paris -- 【79】ムーンライト_強化パリィ後","102504516":"[79] Moonlight _ After strengthening Paris _ two -- 【79】ムーンライト_強化パリィ後_二段目","102504520":"[79] Moonlight _ one-handed Dash -- 【79】ムーンライト_片手ダッシュ","102504530":"[79] Moonlight _ both hands dash -- 【79】ムーンライト_両手ダッシュ","102504540":"[79] Moonlight _ one-handed step before -- 【79】ムーンライト_片手ステップ前","102504580":"[79] Moonlight _ Hands Step Ahead -- 【79】ムーンライト_両手ステップ前","102504600":"[79] Moonlight _ Parigard -- 【79】ムーンライト_パリィガード","102504800":"[79] Moonlight _ one hand _ Magic Sword -- 【79】ムーンライト_片手_魔法剣","102504801":"[79] Moonlight _ Both Hands _ Magic Sword -- 【79】ムーンライト_両手_魔法剣","102505100":"[74] Claymore _ one-handed entertainment 1 -- 【74】クレイモア_片手タメ1","102505110":"[74] Claymore _ one-handed Entertainment 2 -- 【74】クレイモア_片手タメ2","102505300":"[74] Claymore _ two-handed entertainment 1 -- 【74】クレイモア_両手タメ1","102505310":"[74] Claymore _ two-handed Entertainment 2 -- 【74】クレイモア_両手タメ2","102505580":"[74] Claymore _ two-handed step before -- 【74】クレイモア_両手ステップ前","102507000":"[97] The Great King _ one hand usually -- 【97】大王_片手通常1","102507010":"[97] The great _ one hand usually two -- 【97】大王_片手通常2","102507020":"[97] The great _ one hand usually three -- 【97】大王_片手通常3","102507030":"[97] The great _ one-handed jump 1 -- 【97】大王_片手ジャンプ1","102507040":"[97] The great _ one-handed fall loop -- 【97】大王_片手落下ループ","102507050":"[97] The great _ one-handed fall landing -- 【97】大王_片手落下着地","102507100":"[97] The great _ one-handed entertainment 1 -- 【97】大王_片手タメ1","102507110":"[97] The great _ one-handed Entertainment 2 -- 【97】大王_片手タメ2","102507200":"[97] Great _ hands usually one -- 【97】大王_両手通常1","102507210":"[97] Great _ Two hands usually 2 -- 【97】大王_両手通常2","102507220":"[97] The great _ Two hands usually three -- 【97】大王_両手通常3","102507230":"[97] Great _ two-handed jump 1 -- 【97】大王_両手ジャンプ1","102507240":"[97] Great _ Both hands Fall loop -- 【97】大王_両手落下ループ","102507250":"[97] Great _ two-handed fall landing -- 【97】大王_両手落下着地","102507300":"[97] Great _ two-handed entertainment 1 -- 【97】大王_両手タメ1","102507310":"[97] Great _ two-handed Entertainment 2 -- 【97】大王_両手タメ2","102507400":"[97] The great-left hand -- 【97】大王_左手","102507410":"[97] The great _ one hand close -- 【97】大王_片手近距離","102507420":"[97] Great _ both hands close -- 【97】大王_両手近距離","102507430":"[97] The great _ The guards _ one hand -- 【97】大王_ガード_片手","102507440":"[97] The great _ The guards _ both hands -- 【97】大王_ガード_両手","102507450":"[97] Great _ Paris -- 【97】大王_パリィ","102507490":"[97] The great _ falling throw -- 【97】大王_落下投げ","102507500":"[97] Great _ behind -- 【97】大王_背後","102507505":"[97] Great _ behind the reinforcement -- 【97】大王_強化背後","102507510":"[97] The great _ after Paris -- 【97】大王_パリィ後","102507515":"[97] Great _ after strengthening Paris -- 【97】大王_強化パリィ後","102507516":"[97] Great _ Paris after strengthening _ two -- 【97】大王_強化パリィ後_二段目","102507520":"[97] The great _ one-handed Dash -- 【97】大王_片手ダッシュ","102507530":"[97] Great _ both hands dash -- 【97】大王_両手ダッシュ","102507540":"[97] Great _ one hand step before -- 【97】大王_片手ステップ前","102507580":"[97] Great _ Two hands before step -- 【97】大王_両手ステップ前","102507600":"[97] Great _ Parigard -- 【97】大王_パリィガード","102508100":"[131] al-Triana (erosion) _ one-handed entertainment 1 -- 【131】アルトリウス(侵食)_片手タメ1","102508300":"[131] al-Triana (erosion) _ two-handed entertainment 1 -- 【131】アルトリウス(侵食)_両手タメ1","102509000":"[135] Black Dragon Large Sword _ one hand usually 1 -- 【135】黒竜の大剣_片手通常1","102509010":"[135] Black Dragon Large Sword _ one hand usually two -- 【135】黒竜の大剣_片手通常2","102509020":"[135] Black Dragon Large Sword _ one hand usually three -- 【135】黒竜の大剣_片手通常3","102509030":"[135] Black Dragon Big Sword _ one handed jump -- 【135】黒竜の大剣_片手ジャンプ1","102509040":"[135] Black Dragon Large Sword _ one-handed fall loop -- 【135】黒竜の大剣_片手落下ループ","102509050":"[135] Black Dragon Large Sword _ one-handed fall landing -- 【135】黒竜の大剣_片手落下着地","102509100":"[135] Black Dragon Big Sword _ one-handed entertainment 1 -- 【135】黒竜の大剣_片手タメ1","102509110":"[135] Black Dragon Large Sword _ one-handed Entertainment 2 -- 【135】黒竜の大剣_片手タメ2","102509200":"[135] Black Dragon Large Sword _ two hands usually one -- 【135】黒竜の大剣_両手通常1","102509210":"[135] Black Dragon Large Sword _ two hands usually 2 -- 【135】黒竜の大剣_両手通常2","102509220":"[135] Black Dragon Large Sword _ two hands usually three -- 【135】黒竜の大剣_両手通常3","102509230":"[135] Black Dragon Large Sword _ two-handed jump 1 -- 【135】黒竜の大剣_両手ジャンプ1","102509240":"[135] Black Dragon Large Sword _ both hands Fall loop -- 【135】黒竜の大剣_両手落下ループ","102509250":"[135] Large Sword of Black dragon _ both hands Fall landing -- 【135】黒竜の大剣_両手落下着地","102509300":"[135] Black Dragon Large Sword _ two-handed entertainment 1 -- 【135】黒竜の大剣_両手タメ1","102509320":"[135] Black Dragon Large Sword _ two-handed Entertainment 1/magic Sword firing -- 【135】黒竜の大剣_両手タメ1/魔法剣発射時","102509400":"[135] Black Dragon Large Sword _ left hand -- 【135】黒竜の大剣_左手","102509410":"[135] Large Sword of black dragon _ one hand short distance -- 【135】黒竜の大剣_片手近距離","102509420":"[135] Large Sword of Black dragon _ both hands close range -- 【135】黒竜の大剣_両手近距離","102509430":"[135] Black Dragon's Big Sword _ guard _ one hand -- 【135】黒竜の大剣_ガード_片手","102509440":"[135] Black Dragon Sword _ guard _ both hands -- 【135】黒竜の大剣_ガード_両手","102509450":"[135] Black Dragon Large Sword _ Paris -- 【135】黒竜の大剣_パリィ","102509490":"[135] Black Dragon Large Sword _ Fall Throw -- 【135】黒竜の大剣_落下投げ","102509500":"[135] Black Dragon's Great sword _ behind -- 【135】黒竜の大剣_背後","102509505":"[135] Large Sword of black dragon _ reinforced behind -- 【135】黒竜の大剣_強化背後","102509510":"[135] Black Dragon Large Sword _ after Paris -- 【135】黒竜の大剣_パリィ後","102509515":"[135] Black Dragon Large Sword _ after strengthening Paris -- 【135】黒竜の大剣_強化パリィ後","102509516":"[135] Black Dragon's Great sword _ after strengthening Paris _ two -- 【135】黒竜の大剣_強化パリィ後_二段目","102509520":"[135] Black Dragon's Big sword _ one-handed Dash -- 【135】黒竜の大剣_片手ダッシュ","102509530":"[135] Black Dragon Large Sword _ both hands dash -- 【135】黒竜の大剣_両手ダッシュ","102509540":"[135] Black Dragon Big Sword _ one hand step before -- 【135】黒竜の大剣_片手ステップ前","102509580":"[135] Black Dragon Large Sword _ both hands step before -- 【135】黒竜の大剣_両手ステップ前","102509600":"[135] Black Dragon Large Sword _ Parigard -- 【135】黒竜の大剣_パリィガード","102509800":"[135] Black Dragon Large Sword _ one hand _ Magic Sword -- 【135】黒竜の大剣_片手_魔法剣","102600000":"Oversized Sword _ one hand usually 1 -- 特大剣_片手通常1","102600001":"Oversized Sword _ One handed usually 1_ range -- 特大剣_片手通常1_範囲","102600010":"Oversized Sword _ one hand usually two -- 特大剣_片手通常2","102600020":"Oversized Sword _ one hand usually three -- 特大剣_片手通常3","102600030":"Oversized Sword _ One handed jump -- 特大剣_片手ジャンプ1","102600040":"Oversized Sword _ One handed fall loop -- 特大剣_片手落下ループ","102600050":"Oversized Sword _ one-handed fall landing -- 特大剣_片手落下着地","102600100":"Oversized Sword _ one-handed entertainment 1 -- 特大剣_片手タメ1","102600105":"Oversized Sword _ one-handed 1_ maximum attack -- 特大剣_片手タメ1_最大攻撃","102600110":"Oversized Sword _ one-handed Entertainment 2 -- 特大剣_片手タメ2","102600115":"Oversized Sword _ one-handed 2_ maximum attack -- 特大剣_片手タメ2_最大攻撃","102600200":"Oversized Sword _ Two hands usually one -- 特大剣_両手通常1","102600210":"Oversized Swords _ Two hands usually 2 -- 特大剣_両手通常2","102600220":"Oversized Swords _ Two hands usually three -- 特大剣_両手通常3","102600230":"Oversized Sword _ two-handed jump 1 -- 特大剣_両手ジャンプ1","102600240":"Oversized Sword _ two-handed fall loop -- 特大剣_両手落下ループ","102600250":"Oversized Sword _ two-handed fall landing -- 特大剣_両手落下着地","102600300":"Oversized Sword _ two-handed entertainment 1 -- 特大剣_両手タメ1","102600305":"Oversized Sword _ two-handed entertainment 1 MAX -- 特大剣_両手タメ1最大","102600310":"Oversized Sword _ two-handed Entertainment 2 -- 特大剣_両手タメ2","102600315":"Oversized Sword _ two-handed maximum -- 特大剣_両手タメ2最大","102600400":"Oversized Sword _ left hand -- 特大剣_左手","102600410":"Oversized Sword _ one hand close -- 特大剣_片手近距離","102600420":"Oversized Sword _ both hands close -- 特大剣_両手近距離","102600430":"Oversized Sword _ guard _ one hand -- 特大剣_ガード_片手","102600440":"Oversized Sword _ guard _ both hands -- 特大剣_ガード_両手","102600450":"Oversized Sword _ Paris -- 特大剣_パリィ","102600470":"Oversized Sword _ Large throw -- 特大剣_大型投げ","102600490":"Oversized Sword _ Falling throw -- 特大剣_落下投げ","102600500":"Behind the oversized sword -- 特大剣_背後","102600501":"An oversized sword _ behind the two firing eyes -- 特大剣_背後_二撃目","102600505":"Oversized swords _ Reinforced behind -- 特大剣_強化背後","102600506":"Oversized Swords _ Reinforced behind _ Two -- 特大剣_強化背後_二段目","102600510":"Oversized Sword _ after Paris -- 特大剣_パリィ後","102600511":"Oversized Sword _ Paris after second firing -- 特大剣_パリィ後_二撃目","102600515":"Oversized Sword _ after strengthening Paris -- 特大剣_強化パリィ後","102600516":"Paris Oversized Sword _ after strengthening _ two -- 特大剣_強化パリィ後_二段目","102600517":"Paris Oversized Sword _ after strengthening _ Sandanme -- 特大剣_強化パリィ後_三段目","102600520":"Oversized Sword _ one handed Dash -- 特大剣_片手ダッシュ","102600530":"Oversized Sword _ both hands dash -- 特大剣_両手ダッシュ","102600540":"Oversized Sword _ one hand step before -- 特大剣_片手ステップ前","102600580":"Oversized Sword _ Two hands before step -- 特大剣_両手ステップ前","102600600":"Oversized Sword _ Parigard -- 特大剣_パリィガード","102600610":"Oversized Sword _ Behind the transition -- 特大剣_背後遷移","102600615":"Oversized Sword _ behind transition _ missed -- 特大剣_背後遷移_空振り","102600700":"Oversized Sword _ tread weak -- 特大剣_踏込弱","102600701":"Oversized Sword _ Tread strength -- 特大剣_踏込強","102600702":"Oversized Sword _ Tread Nagi: first half -- 特大剣_踏込なぎ払い:前半","102600780":"Oversized Swords _ blow -- 特大剣_吹っ飛ばし","102600790":"Oversized Sword _ directing slams -- 特大剣_演出叩きつけ","102601100":"[98] Large Sword of the old dragon _ one-handed entertainment 1 -- 【98】古竜の大剣_片手タメ1","102601200":"[98] Large Sword of the old dragon _ two hands usually one -- 【98】古竜の大剣_両手通常1","102601210":"[98] Large Sword of the old dragon _ Two hands usually 2 -- 【98】古竜の大剣_両手通常2","102601220":"[98] Large Sword of the old dragon _ Two hands usually three -- 【98】古竜の大剣_両手通常3","102601300":"[98] Large Sword of the old Dragon _ two-handed entertainment 1 -- 【98】古竜の大剣_両手タメ1","102601540":"[98] Great Sword of the old Dragon _ one hand step before -- 【98】古竜の大剣_片手ステップ前","102601580":"[98] Sword of the old Dragon _ before both hands step -- 【98】古竜の大剣_両手ステップ前","102602100":"[95] Great Sword _ one-handed entertainment 1 -- 【95】グレートソード_片手タメ1","102602200":"[95] Great Sword _ two hands usually one -- 【95】グレートソード_両手通常1","102602210":"[95] Great Sword _ two hands usually 2 -- 【95】グレートソード_両手通常2","102602220":"[95] Great Sword _ two hands usually three -- 【95】グレートソード_両手通常3","102602300":"[95] Great Sword _ two-handed entertainment 1 -- 【95】グレートソード_両手タメ1","102603100":"[96] Daemon Hatchet _ one-handed entertainment 1 -- 【96】デーモンの鉈_片手タメ1","102603300":"[96] Daemon Hatchet _ two-handed entertainment 1 -- 【96】デーモンの鉈_両手タメ1","102603540":"[96] Daemon Hatchet _ one hand step before -- 【96】デーモンの鉈_片手ステップ前","102603580":"[96] Daemon Hatchet _ both hands step forward -- 【96】デーモンの鉈_両手ステップ前","102604300":"[128] Black Knight's oversized sword _ two-handed entertainment 1 -- 【128】黒騎士の特大剣_両手タメ1","102700000":"Stabbing Sword _ one hand usually 1 -- 刺剣_片手通常1","102700010":"Stabbing Sword _ one hand usually two -- 刺剣_片手通常2","102700020":"Stabbing Sword _ one hand usually three -- 刺剣_片手通常3","102700030":"Stab Sword _ One handed jump -- 刺剣_片手ジャンプ1","102700040":"Stab Sword _ One handed fall loop -- 刺剣_片手落下ループ","102700050":"Stab Sword _ one-handed fall landing -- 刺剣_片手落下着地","102700100":"Stab Sword _ one-handed entertainment 1 -- 刺剣_片手タメ1","102700105":"Stab Sword _ one-handed 1_ maximum -- 刺剣_片手タメ1_最大","102700110":"Stab Sword _ one hand Entertainment 2 -- 刺剣_片手タメ2","102700115":"Stab Sword _ one-handed 2_ maximum -- 刺剣_片手タメ2_最大","102700200":"Stab Sword _ Two hands usually one -- 刺剣_両手通常1","102700210":"Stab Sword _ Two hands usually 2 -- 刺剣_両手通常2","102700220":"Stab Sword _ Two hands usually three -- 刺剣_両手通常3","102700230":"Stabbing Sword _ two-handed jump -- 刺剣_両手ジャンプ1","102700240":"Stabbing Sword _ two-handed fall loop -- 刺剣_両手落下ループ","102700250":"Stabbing Sword _ two-handed fall landing -- 刺剣_両手落下着地","102700300":"Stabbing Sword _ two-handed entertainment 1 -- 刺剣_両手タメ1","102700305":"Stabbing Sword _ two-handed 1_ Max -- 刺剣_両手タメ1_最大","102700310":"Stabbing Sword _ two-handed Entertainment 2 -- 刺剣_両手タメ2","102700315":"Stabbing Sword _ two-handed 2_ Max -- 刺剣_両手タメ2_最大","102700400":"Stab Sword _ Left hand -- 刺剣_左手","102700410":"Stab Sword _ one hand close -- 刺剣_片手近距離","102700420":"Stab Sword _ both hands close -- 刺剣_両手近距離","102700430":"Stinging Sword _ guard _ one hand -- 刺剣_ガード_片手","102700440":"Stinging Sword _ guard _ both hands -- 刺剣_ガード_両手","102700450":"Stabbing Sword _ Paris -- 刺剣_パリィ","102700460":"Stabbing Sword __ Guard during attack -- 刺剣__ガード中攻撃","102700470":"Stinging Sword _ Large Throw -- 刺剣_大型投げ","102700490":"Stabbing Sword _ Falling throw -- 刺剣_落下投げ","102700500":"Stinging Sword _ behind -- 刺剣_背後","102700505":"Stinging Sword _ reinforced behind -- 刺剣_強化背後","102700510":"Stabbing Sword _ after Paris -- 刺剣_パリィ後","102700515":"Stabbing Sword _ after strengthening Paris -- 刺剣_強化パリィ後","102700516":"Stabbing Sword _ After strengthening Paris _ two -- 刺剣_強化パリィ後_二段目","102700520":"Stab Sword _ one handed Dash -- 刺剣_片手ダッシュ","102700530":"Stab Sword _ both hands dash -- 刺剣_両手ダッシュ","102700540":"Stab Sword _ one hand step before -- 刺剣_片手ステップ前","102700580":"Stab Sword _ Two hands before step -- 刺剣_両手ステップ前","102700600":"Stabbing Sword _ Parigard -- 刺剣_パリィガード","102700610":"Stab Sword _ Behind the transition -- 刺剣_背後遷移","102700615":"Stab Sword _ Behind the transition _ missed -- 刺剣_背後遷移_空振り","102700720":"Stinging Sword _ Weak -- 刺剣_構え弱","102700730":"Stinging Sword _ Strong: Continuous Protrusion -- 刺剣_構え強:連続突","102700731":"Stinging Sword _ Strong: Final stage of continuous protrusion -- 刺剣_構え強:連続突最終段","102701000":"[119] Mail Breaker _ one hand usually 1 -- 【119】メイルブレイカー_片手通常1","102701010":"[119] Mail Breaker _ one hand usually 2 -- 【119】メイルブレイカー_片手通常2","102701020":"[119] Mail Breaker _ one hand usually three -- 【119】メイルブレイカー_片手通常3","102701030":"[119] Mail Breaker _ one-handed jump 1 -- 【119】メイルブレイカー_片手ジャンプ1","102701040":"[119] Mail Breaker _ one-handed fall loop -- 【119】メイルブレイカー_片手落下ループ","102701050":"[119] Mail Breaker _ one-handed fall landing -- 【119】メイルブレイカー_片手落下着地","102701100":"[119] Mail Breaker _ one-handed entertainment 1 -- 【119】メイルブレイカー_片手タメ1","102701110":"[119] Mail Breaker _ one-handed Entertainment 2 -- 【119】メイルブレイカー_片手タメ2","102701200":"[119] Mail Breaker _ both hands usually one -- 【119】メイルブレイカー_両手通常1","102701210":"[119] Mail Breaker _ Two hands usually 2 -- 【119】メイルブレイカー_両手通常2","102701220":"[119] Mail Breaker _ Two hands usually three -- 【119】メイルブレイカー_両手通常3","102701230":"[119] Mail Breaker _ two-handed jump 1 -- 【119】メイルブレイカー_両手ジャンプ1","102701240":"[119] Mail Breaker _ Both hands Fall loop -- 【119】メイルブレイカー_両手落下ループ","102701250":"[119] Mail Breaker _ two-handed fall landing -- 【119】メイルブレイカー_両手落下着地","102701300":"[119] Mail Breaker _ two-handed entertainment 1 -- 【119】メイルブレイカー_両手タメ1","102701310":"[119] Mail Breaker _ two-handed Entertainment 2 -- 【119】メイルブレイカー_両手タメ2","102701400":"[119] Mail Breaker _ left hand -- 【119】メイルブレイカー_左手","102701410":"[119] Mail Breaker _ one hand close -- 【119】メイルブレイカー_片手近距離","102701420":"[119] Mail Breaker _ both hands close -- 【119】メイルブレイカー_両手近距離","102701430":"[119] Mail Breaker _ guard _ one hand -- 【119】メイルブレイカー_ガード_片手","102701440":"[119] Mail Breaker _ both hands -- 【119】メイルブレイカー_ガード_両手","102701450":"[119] Mail Breaker _ Paris -- 【119】メイルブレイカー_パリィ","102701460":"[119] Mail breaker __ Guard during attack -- 【119】メイルブレイカー__ガード中攻撃","102701490":"[119] Mail Breaker _ drop Throw -- 【119】メイルブレイカー_落下投げ","102701500":"[119] Mail Breaker _ behind -- 【119】メイルブレイカー_背後","102701505":"[119] Mail Breaker _ Reinforced behind -- 【119】メイルブレイカー_強化背後","102701510":"[119] Mail Breaker _ after Paris -- 【119】メイルブレイカー_パリィ後","102701515":"[119] Mail Breaker _ after strengthening Paris -- 【119】メイルブレイカー_強化パリィ後","102701516":"[119] Mail Breaker _ After strengthening Paris _ two -- 【119】メイルブレイカー_強化パリィ後_二段目","102701520":"[119] Mail Breaker _ one-handed Dash -- 【119】メイルブレイカー_片手ダッシュ","102701530":"[119] Mail Breaker _ both hands dash -- 【119】メイルブレイカー_両手ダッシュ","102701540":"[119] Mail Breaker _ one hand step before -- 【119】メイルブレイカー_片手ステップ前","102701580":"[119] Mail Breaker _ before both hands step -- 【119】メイルブレイカー_両手ステップ前","102701600":"[119] Mail Breaker _ Parigard -- 【119】メイルブレイカー_パリィガード","102702100":"[113] Estoc _ one-handed entertainment 1 -- 【113】エストック_片手タメ1","102702110":"[113] Estoc _ one-handed Entertainment 2 -- 【113】エストック_片手タメ2","102702300":"[113] Estoc _ two-handed entertainment 1 -- 【113】エストック_両手タメ1","102702310":"[113] Estoc _ two-handed Entertainment 2 -- 【113】エストック_両手タメ2","102703000":"[114] Belka _ one-handed usually 1 -- 【114】ベルカ_片手通常1","102703010":"[114] Belka _ one hand usually two -- 【114】ベルカ_片手通常2","102703020":"[114] Belka _ one hand usually three -- 【114】ベルカ_片手通常3","102703030":"[114] Belka _ one-handed jump 1 -- 【114】ベルカ_片手ジャンプ1","102703040":"[114] Belka _ one-handed fall loop -- 【114】ベルカ_片手落下ループ","102703050":"[114] Belka _ one-handed fall landing -- 【114】ベルカ_片手落下着地","102703100":"[114] Belka _ one-handed entertainment 1 -- 【114】ベルカ_片手タメ1","102703110":"[114] Belka _ one-handed Entertainment 2 -- 【114】ベルカ_片手タメ2","102703200":"[114] Belka _ Two hands usually one -- 【114】ベルカ_両手通常1","102703210":"[114] Belka _ Two hands usually 2 -- 【114】ベルカ_両手通常2","102703220":"[114] Belka _ Two hands usually three -- 【114】ベルカ_両手通常3","102703230":"[114] Belka _ two-handed jump 1 -- 【114】ベルカ_両手ジャンプ1","102703240":"[114] Belka _ two-handed fall loop -- 【114】ベルカ_両手落下ループ","102703250":"[114] Belka _ two-handed fall landing -- 【114】ベルカ_両手落下着地","102703300":"[114] Belka _ two-handed entertainment 1 -- 【114】ベルカ_両手タメ1","102703310":"[114] Belka _ two-handed Entertainment 2 -- 【114】ベルカ_両手タメ2","102703400":"[114] Belka _ left Hand -- 【114】ベルカ_左手","102703410":"[114] Belka _ one hand close -- 【114】ベルカ_片手近距離","102703420":"[114] Belka _ both hands close -- 【114】ベルカ_両手近距離","102703430":"[114] Belka _ guards _ one hand -- 【114】ベルカ_ガード_片手","102703440":"[114] Belka _ guards _ both hands -- 【114】ベルカ_ガード_両手","102703450":"[114] Belka _ Paris -- 【114】ベルカ_パリィ","102703460":"[114] Belka __ Attack during guard -- 【114】ベルカ__ガード中攻撃","102703490":"[114] Belka _ Falling throw -- 【114】ベルカ_落下投げ","102703500":"[114] Belka _ behind -- 【114】ベルカ_背後","102703505":"[114] Belka _ Strengthening behind -- 【114】ベルカ_強化背後","102703510":"[114] Belka _ after Paris -- 【114】ベルカ_パリィ後","102703515":"[114] Belka _ after strengthening Paris. -- 【114】ベルカ_強化パリィ後","102703516":"[114] Belka _ Paris after strengthening _ two -- 【114】ベルカ_強化パリィ後_二段目","102703520":"[114] Belka _ one-handed Dash -- 【114】ベルカ_片手ダッシュ","102703530":"[114] Belka _ both hands dash -- 【114】ベルカ_両手ダッシュ","102703540":"[114] Belka _ one-handed step before -- 【114】ベルカ_片手ステップ前","102703580":"[114] Belka _ two-handed steps ago -- 【114】ベルカ_両手ステップ前","102703600":"[114] Belka _ Parigard -- 【114】ベルカ_パリィガード","102800000":"Song Sword _ one hand usually 1 -- 曲剣_片手通常1","102800010":"Song Sword _ one hand usually two -- 曲剣_片手通常2","102800020":"Song Sword _ one hand usually three -- 曲剣_片手通常3","102800030":"Song Sword _ One handed jump -- 曲剣_片手ジャンプ1","102800040":"Song Sword _ One Handed fall loop -- 曲剣_片手落下ループ","102800050":"Song Sword _ one-handed fall landing -- 曲剣_片手落下着地","102800100":"Song Sword _ one-handed entertainment 1 -- 曲剣_片手タメ1","102800105":"Song Sword _ one-handed 1_ Max -- 曲剣_片手タメ1_最大","102800110":"Song Sword _ one hand Entertainment 2 -- 曲剣_片手タメ2","102800115":"Song Sword _ one-handed 2_ Max -- 曲剣_片手タメ2_最大","102800200":"Song Sword _ Two Hands usually one -- 曲剣_両手通常1","102800210":"Song Sword _ Two Hands usually 2 -- 曲剣_両手通常2","102800220":"Song Sword _ Two Hands usually three -- 曲剣_両手通常3","102800230":"Song Sword _ two-handed jump 1 -- 曲剣_両手ジャンプ1","102800240":"Song Sword _ two-handed fall loop -- 曲剣_両手落下ループ","102800250":"Song Sword _ two-handed fall landing -- 曲剣_両手落下着地","102800300":"Song Sword _ two-handed entertainment 1 -- 曲剣_両手タメ1","102800305":"Song Sword _ two-handed 1_ Max -- 曲剣_両手タメ1_最大","102800310":"Song Sword _ two-handed Entertainment 2 -- 曲剣_両手タメ2","102800315":"Song Sword _ two-handed 2_ Max -- 曲剣_両手タメ2_最大","102800400":"Song Sword _ Left Hand -- 曲剣_左手","102800410":"Song Sword _ one hand close -- 曲剣_片手近距離","102800420":"Song Sword _ both hands close -- 曲剣_両手近距離","102800430":"Song Sword _ guard _ one hand -- 曲剣_ガード_片手","102800440":"Song Sword _ guard _ both hands -- 曲剣_ガード_両手","102800450":"Song Sword _ Paris -- 曲剣_パリィ","102800470":"Song Sword _ Large Throw -- 曲剣_大型投げ","102800490":"Song Sword _ Falling Throw -- 曲剣_落下投げ","102800500":"Behind the song Sword -- 曲剣_背後","102800505":"Song Sword _ Strengthening behind -- 曲剣_強化背後","102800510":"Song Sword _ after Paris -- 曲剣_パリィ後","102800515":"Song Sword _ after strengthening Paris -- 曲剣_強化パリィ後","102800516":"Paris Song Sword _ after strengthening _ two -- 曲剣_強化パリィ後_二段目","102800520":"Song Sword _ one handed Dash -- 曲剣_片手ダッシュ","102800530":"Song Sword _ both hands dash -- 曲剣_両手ダッシュ","102800540":"Song Sword _ one hand step before -- 曲剣_片手ステップ前","102800580":"Song Sword _ Two Hands before step -- 曲剣_両手ステップ前","102800600":"Song Sword _ Parigard -- 曲剣_パリィガード","102800610":"Song Sword _ Behind the transition -- 曲剣_背後遷移","102800615":"Song Sword _ Behind the transition _ missed -- 曲剣_背後遷移_空振り","102802000":"[100] Song of Evil Sword _ one hand usually 1 -- 【100】死霊の曲剣_片手通常1","102802010":"[100] Song of Evil Sword _ one hand usually two -- 【100】死霊の曲剣_片手通常2","102802020":"[100] Song of Evil Sword _ one hand usually three -- 【100】死霊の曲剣_片手通常3","102802030":"[100] Song of Evil sword _ one-handed jump 1 -- 【100】死霊の曲剣_片手ジャンプ1","102802040":"[100] Song of Evil sword _ one-handed fall loop -- 【100】死霊の曲剣_片手落下ループ","102802050":"[100] Song of Evil sword _ one-handed fall landing -- 【100】死霊の曲剣_片手落下着地","102802100":"[100] Song of Evil sword _ one-handed entertainment 1 -- 【100】死霊の曲剣_片手タメ1","102802110":"[100] Song of the Evil sword _ one-handed Entertainment 2 -- 【100】死霊の曲剣_片手タメ2","102802200":"[100] Song of Evil sword _ hands usually one -- 【100】死霊の曲剣_両手通常1","102802210":"[100] Song of Evil sword _ two hands usually 2 -- 【100】死霊の曲剣_両手通常2","102802220":"[100] Song of Evil sword _ hands usually three -- 【100】死霊の曲剣_両手通常3","102802230":"[100] Song of Evil sword _ two-handed jump 1 -- 【100】死霊の曲剣_両手ジャンプ1","102802240":"[100] Song of Evil sword _ two-handed fall loop -- 【100】死霊の曲剣_両手落下ループ","102802250":"[100] Song of the Evil Sword _ both hands fall landing -- 【100】死霊の曲剣_両手落下着地","102802300":"[100] Song of Evil sword _ two-handed entertainment 1 -- 【100】死霊の曲剣_両手タメ1","102802310":"[100] Song of Evil sword _ two-handed Entertainment 2 -- 【100】死霊の曲剣_両手タメ2","102802400":"[100] Song of Evil Sword _ left hand -- 【100】死霊の曲剣_左手","102802410":"[100] Song of Evil Sword _ one hand short distance -- 【100】死霊の曲剣_片手近距離","102802420":"[100] Song of Evil Sword _ both hands close range -- 【100】死霊の曲剣_両手近距離","102802430":"[100] Song of Evil Sword _ guard _ one hand -- 【100】死霊の曲剣_ガード_片手","102802440":"[100] Song of Evil Sword _ guard _ both hands -- 【100】死霊の曲剣_ガード_両手","102802450":"[100] Song of the Evil Sword _ Paris -- 【100】死霊の曲剣_パリィ","102802490":"[100] Song of the Evil sword _ falling Throw -- 【100】死霊の曲剣_落下投げ","102802500":"[100] Song of the Evil sword _ behind -- 【100】死霊の曲剣_背後","102802505":"[100] Song of the Evil sword _ strengthening behind -- 【100】死霊の曲剣_強化背後","102802510":"[100] Song of the Evil sword _ after Paris -- 【100】死霊の曲剣_パリィ後","102802515":"[100] Song of the Evil sword _ after strengthening Paris -- 【100】死霊の曲剣_強化パリィ後","102802516":"[100] Song of the Evil sword _ after strengthening Paris _ two -- 【100】死霊の曲剣_強化パリィ後_二段目","102802520":"[100] Song of Evil Sword _ one hand dash -- 【100】死霊の曲剣_片手ダッシュ","102802530":"[100] Song of Evil Sword _ both hands dash -- 【100】死霊の曲剣_両手ダッシュ","102802540":"[100] Song of the Evil Sword _ one hand step before -- 【100】死霊の曲剣_片手ステップ前","102802580":"[100] Song of the Evil Sword _ hands before step -- 【100】死霊の曲剣_両手ステップ前","102802600":"[100] Song of the Evil Sword _ Parigard -- 【100】死霊の曲剣_パリィガード","102803000":"[101] Elemia _ one hand usually 1 -- 【101】エレーミア_片手通常1","102803010":"[101] Elemia _ one hand usually two -- 【101】エレーミア_片手通常2","102803020":"[101] Elemia _ one hand usually three -- 【101】エレーミア_片手通常3","102803030":"[101] Elemia _ one-handed jump 1 -- 【101】エレーミア_片手ジャンプ1","102803040":"[101] Elemia _ one-handed fall loop -- 【101】エレーミア_片手落下ループ","102803050":"[101] Elemia _ one-handed fall landing -- 【101】エレーミア_片手落下着地","102803100":"[101] Elemia _ one-handed entertainment 1 -- 【101】エレーミア_片手タメ1","102803110":"[101] Elemia _ one-handed Entertainment 2 -- 【101】エレーミア_片手タメ2","102803200":"[101] Elemia _ Two hands usually one -- 【101】エレーミア_両手通常1","102803210":"[101] Elemia _ Two hands usually 2 -- 【101】エレーミア_両手通常2","102803220":"[101] Elemia _ Two hands usually three -- 【101】エレーミア_両手通常3","102803230":"[101] Elemia _ two-handed jump 1 -- 【101】エレーミア_両手ジャンプ1","102803240":"[101] Elemia _ two-handed fall loop -- 【101】エレーミア_両手落下ループ","102803250":"[101] Elemia _ two-handed fall landing -- 【101】エレーミア_両手落下着地","102803300":"[101] Elemia _ two-handed entertainment 1 -- 【101】エレーミア_両手タメ1","102803310":"[101] Elemia _ two-handed Entertainment 2 -- 【101】エレーミア_両手タメ2","102803400":"[101] Elemia _ left Hand -- 【101】エレーミア_左手","102803410":"[101] Elemia _ one hand close -- 【101】エレーミア_片手近距離","102803420":"[101] Elemia _ both hands close -- 【101】エレーミア_両手近距離","102803430":"[101] Elemia _ guards _ one hand -- 【101】エレーミア_ガード_片手","102803440":"[101] Elemia _ guards _ both hands -- 【101】エレーミア_ガード_両手","102803450":"[101] Elemia _ Paris -- 【101】エレーミア_パリィ","102803490":"[101] Elemia _ Falling throw -- 【101】エレーミア_落下投げ","102803500":"[101] Elemia _ behind -- 【101】エレーミア_背後","102803505":"[101] Elemia _ strengthening behind -- 【101】エレーミア_強化背後","102803510":"[101] Elemia _ after Paris -- 【101】エレーミア_パリィ後","102803515":"[101] Elemia _ after strengthening Paris -- 【101】エレーミア_強化パリィ後","102803516":"[101] Elemia _ Paris after strengthening _ two -- 【101】エレーミア_強化パリィ後_二段目","102803520":"[101] Elemia _ one-handed Dash -- 【101】エレーミア_片手ダッシュ","102803530":"[101] Elemia _ both hands dash -- 【101】エレーミア_両手ダッシュ","102803540":"[101] Elemia _ one-handed step before -- 【101】エレーミア_片手ステップ前","102803580":"[101] Elemia _ two-handed steps ago -- 【101】エレーミア_両手ステップ前","102803600":"[101] Elemia _ Parigard -- 【101】エレーミア_パリィガード","102804000":"[56] Krag _ one-handed usually 1 -- 【56】クラーグ_片手通常1","102804010":"[56] Krag _ one hand usually two -- 【56】クラーグ_片手通常2","102804020":"[56] Krag _ one hand usually three -- 【56】クラーグ_片手通常3","102804030":"[56] Krag _ one-handed jump 1 -- 【56】クラーグ_片手ジャンプ1","102804040":"[56] Krag _ one-handed fall loop -- 【56】クラーグ_片手落下ループ","102804050":"[56] Krag _ one-handed fall landing -- 【56】クラーグ_片手落下着地","102804100":"[56] Krag _ one-handed entertainment 1 -- 【56】クラーグ_片手タメ1","102804110":"[56] Krag _ one-handed Entertainment 2 -- 【56】クラーグ_片手タメ2","102804200":"[56] Krag _ Two hands usually one -- 【56】クラーグ_両手通常1","102804210":"[56] Krag _ Two hands usually 2 -- 【56】クラーグ_両手通常2","102804220":"[56] Krag _ Two hands usually three -- 【56】クラーグ_両手通常3","102804230":"[56] Krag _ two-handed jump 1 -- 【56】クラーグ_両手ジャンプ1","102804240":"[56] Krag _ two-handed fall loop -- 【56】クラーグ_両手落下ループ","102804250":"[56] Krag _ two-handed fall landing -- 【56】クラーグ_両手落下着地","102804300":"[56] Krag _ two-handed entertainment 1 -- 【56】クラーグ_両手タメ1","102804310":"[56] Krag _ two-handed Entertainment 2 -- 【56】クラーグ_両手タメ2","102804400":"[56] Krag _ Left Hand -- 【56】クラーグ_左手","102804410":"[56] Krag _ one hand close -- 【56】クラーグ_片手近距離","102804420":"[56] Krag _ both hands close -- 【56】クラーグ_両手近距離","102804430":"[56] Krag _ guards _ one hand -- 【56】クラーグ_ガード_片手","102804440":"[56] Krag _ guards _ both hands -- 【56】クラーグ_ガード_両手","102804450":"[56] Krag _ Paris -- 【56】クラーグ_パリィ","102804490":"[56] Krag _ Falling throw -- 【56】クラーグ_落下投げ","102804500":"[56] Krag _ behind -- 【56】クラーグ_背後","102804505":"[56] Krag _ Strengthening behind -- 【56】クラーグ_強化背後","102804510":"[56] Krag _ after Paris -- 【56】クラーグ_パリィ後","102804515":"[56] Krag _ Paris after strengthening -- 【56】クラーグ_強化パリィ後","102804516":"[56] Krag _ Paris after strengthening _ two -- 【56】クラーグ_強化パリィ後_二段目","102804520":"[56] Krag _ one-handed Dash -- 【56】クラーグ_片手ダッシュ","102804530":"[56] Krag _ both hands dash -- 【56】クラーグ_両手ダッシュ","102804540":"[56] Krag _ one-handed step before -- 【56】クラーグ_片手ステップ前","102804580":"[56] Krag _ two-handed steps ago -- 【56】クラーグ_両手ステップ前","102804600":"[56] Krag _ Parigard -- 【56】クラーグ_パリィガード","102805000":"[132] Kieran Song Sword _ one hand usually 1 -- 【132】キアランの曲剣_片手通常1","102805010":"[132] Kieran Song Sword _ one hand usually two -- 【132】キアランの曲剣_片手通常2","102805020":"[132] Kieran Song Sword _ one hand usually three -- 【132】キアランの曲剣_片手通常3","102805030":"[132] Kieran Song Sword _ one-handed jump 1 -- 【132】キアランの曲剣_片手ジャンプ1","102805040":"[132] Kieran Song Sword _ one-handed fall loop -- 【132】キアランの曲剣_片手落下ループ","102805050":"[132] Kieran Song Sword _ one-handed fall landing -- 【132】キアランの曲剣_片手落下着地","102805100":"[132] Kieran Song Sword _ one-handed entertainment 1 -- 【132】キアランの曲剣_片手タメ1","102805110":"[132] Kieran Song Sword _ one-handed Entertainment 2 -- 【132】キアランの曲剣_片手タメ2","102805200":"[132] Kieran Song Sword _ hands usually one -- 【132】キアランの曲剣_両手通常1","102805210":"[132] Kieran Song Sword _ Two Hands usually 2 -- 【132】キアランの曲剣_両手通常2","102805220":"[132] Kieran Song Sword _ Two Hands usually three -- 【132】キアランの曲剣_両手通常3","102805230":"[132] Kieran Song Sword _ two-handed jump 1 -- 【132】キアランの曲剣_両手ジャンプ1","102805240":"[132] Kieran Song Sword _ two-handed fall loop -- 【132】キアランの曲剣_両手落下ループ","102805250":"[132] Kieran Song Sword _ Both Hands fall landing -- 【132】キアランの曲剣_両手落下着地","102805300":"[132] Kieran Song Sword _ two-handed entertainment 1 -- 【132】キアランの曲剣_両手タメ1","102805310":"[132] Kieran Song Sword _ two-handed Entertainment 2 -- 【132】キアランの曲剣_両手タメ2","102805311":"[132] Kieran Song Sword _ two-handed 2_ two -- 【132】キアランの曲剣_両手タメ2_二段目","102805400":"[132] Kieran Song Sword _ left hand _ usually -- 【132】キアランの曲剣_左手_通常","102805401":"[132] Kieran Song Sword _ The Left hand _ the entertainment -- 【132】キアランの曲剣_左手_タメ","102805410":"[132] Kieran Song Sword _ one hand short distance -- 【132】キアランの曲剣_片手近距離","102805420":"[132] Kieran Song Sword _ both hands close range -- 【132】キアランの曲剣_両手近距離","102805430":"[132] Kieran Song Sword _ guard _ one hand -- 【132】キアランの曲剣_ガード_片手","102805440":"[132] Kieran Song Sword _ guard _ both hands -- 【132】キアランの曲剣_ガード_両手","102805450":"[132] Kieran Song Sword _ Paris -- 【132】キアランの曲剣_パリィ","102805490":"[132] Kieran Song Sword _ Falling Throw -- 【132】キアランの曲剣_落下投げ","102805500":"[132] Kieran Song Sword _ behind -- 【132】キアランの曲剣_背後","102805505":"【 132 】 Kieran Song Sword _ reinforced behind -- 【132】キアランの曲剣_強化背後","102805510":"[132] Kieran Song Sword _ after Paris -- 【132】キアランの曲剣_パリィ後","102805515":"[132] Kieran Song Sword _ after strengthening Paris -- 【132】キアランの曲剣_強化パリィ後","102805516":"[132] Kieran Song Sword _ after strengthening Paris _ two -- 【132】キアランの曲剣_強化パリィ後_二段目","102805520":"[132] Kieran Song Sword _ one-handed Dash -- 【132】キアランの曲剣_片手ダッシュ","102805530":"[132] Kieran Song Sword _ both hands dash -- 【132】キアランの曲剣_両手ダッシュ","102805540":"[132] Kieran Song Sword _ one hand step before -- 【132】キアランの曲剣_片手ステップ前","102805580":"[132] Kieran Song Sword _ Hands before step -- 【132】キアランの曲剣_両手ステップ前","102805600":"[132] Kieran Song Sword _ Parigard -- 【132】キアランの曲剣_パリィガード","102806000":"[137] Song Sword Twin Sword _ one hand usually 1 -- 【137】曲剣双剣_片手通常1","102806010":"[137] Song Sword Twin Sword _ one hand usually 2 -- 【137】曲剣双剣_片手通常2","102806020":"[137] Song Sword Twin Sword _ one hand usually three -- 【137】曲剣双剣_片手通常3","102806030":"[137] Song Sword Twin Sword _ one-handed jump 1 -- 【137】曲剣双剣_片手ジャンプ1","102806040":"[137] Song Sword Twin Sword _ one-handed fall loop -- 【137】曲剣双剣_片手落下ループ","102806050":"[137] Song Sword Twin Sword _ one-handed fall landing -- 【137】曲剣双剣_片手落下着地","102806100":"[137] Song Sword Twin Sword _ one-handed entertainment 1 -- 【137】曲剣双剣_片手タメ1","102806105":"[137] Song Sword bi-one-handed 1_ Max -- 【137】曲剣双剣_片手タメ1_最大","102806110":"[137] Song Sword Twin _ one-handed Entertainment 2 -- 【137】曲剣双剣_片手タメ2","102806115":"[137] Song Sword bi-one-handed 2_ Max -- 【137】曲剣双剣_片手タメ2_最大","102806400":"[137] Song Sword Twin Sword _ left hand -- 【137】曲剣双剣_左手","102806470":"[137] Song Sword Twin Sword _ large Throw -- 【137】曲剣双剣_大型投げ","102806490":"[137] Song Sword Twin Sword _ Fall Throw -- 【137】曲剣双剣_落下投げ","102806500":"[137] Song Sword Twin Sword _ behind -- 【137】曲剣双剣_背後","102806505":"[137] Song Sword Twin Sword _ behind the reinforcement -- 【137】曲剣双剣_強化背後","102806510":"[137] Song Sword Twin Sword _ after Paris -- 【137】曲剣双剣_パリィ後","102806515":"【 137 】 Song Sword Twin Sword _ after strengthening Paris -- 【137】曲剣双剣_強化パリィ後","102806516":"[137] Song Sword Twin Sword _ after strengthening Paris _ two -- 【137】曲剣双剣_強化パリィ後_二段目","102806520":"[137] Song Sword Twin Sword _ one-handed Dash -- 【137】曲剣双剣_片手ダッシュ","102806540":"[137] Song Sword Twin Sword _ one hand step before -- 【137】曲剣双剣_片手ステップ前","102806615":"[137] Song Sword bi-Sword _ behind the transition _ missed -- 【137】曲剣双剣_背後遷移_空振り","102806620":"[137] Song Sword bi-Sword _ 1_ left hand Combo -- 【137】曲剣双剣_双剣左コンボ1_右手","102806621":"[137] Song Sword bi-Sword _ 1_ left hand Combo -- 【137】曲剣双剣_双剣左コンボ1_左手","102806630":"[137] Song Sword bi-Sword _ 2_ left hand Combo -- 【137】曲剣双剣_双剣左コンボ2_右手","102806631":"[137] Song Sword bi-Sword _ 2_ left hand Combo -- 【137】曲剣双剣_双剣左コンボ2_左手","102806640":"[137] Song Sword bi-Sword _ 3_ left hand Combo -- 【137】曲剣双剣_双剣左コンボ3_右手","102806641":"[137] Song Sword bi-Sword _ 3_ left hand Combo -- 【137】曲剣双剣_双剣左コンボ3_左手","102806740":"[137] Song Sword Twin Sword (right hand) -- 【137】曲剣双剣_回転中(右手)","102806741":"[137] Song Sword Twin Sword _ spinning (left hand) -- 【137】曲剣双剣_回転中(左手)","102806744":"[137] Song Sword Twin Sword _ Rotation strength (right hand) -- 【137】曲剣双剣_回転強(右手)","102806745":"[137] Song Sword Twin Sword _ rotation strength (left hand) -- 【137】曲剣双剣_回転強(左手)","102806750":"[137] Song Sword Twin Sword _ Double Sword dash (right hand) -- 【137】曲剣双剣_双剣ダッシュ(右手)","102806751":"[137] Song Sword Twin Sword (left hand) -- 【137】曲剣双剣_双剣ダッシュ(左手)","102806760":"[137] Song Sword Twin Sword (right hand) -- 【137】曲剣双剣_双剣ステップ前(右手)","102806761":"[137] Song Sword Twin Sword (left hand) -- 【137】曲剣双剣_双剣ステップ前(左手)","102901000":"[89] Each other sword _ one hand usually 1 -- 【89】居合い刀_片手通常1","102901010":"[89] Each other sword _ one hand usually two -- 【89】居合い刀_片手通常2","102901020":"[89] Each other sword _ one hand usually three -- 【89】居合い刀_片手通常3","102901030":"[89] Each other sword _ one-handed jump 1 -- 【89】居合い刀_片手ジャンプ1","102901040":"[89] Each other sword _ one-handed fall loop -- 【89】居合い刀_片手落下ループ","102901050":"[89] Each other sword _ one-handed fall landing -- 【89】居合い刀_片手落下着地","102901100":"[89] Each other sword _ one-handed entertainment 1 -- 【89】居合い刀_片手タメ1","102901110":"[89] Each other sword _ one-handed Entertainment 2 -- 【89】居合い刀_片手タメ2","102901200":"[89] Each other sword _ two hands usually 1 -- 【89】居合い刀_両手通常1","102901210":"[89] Each other sword _ two hands usually 2 -- 【89】居合い刀_両手通常2","102901220":"[89] Each other sword _ two hands usually three -- 【89】居合い刀_両手通常3","102901230":"[89] Each other sword _ two-handed jump 1 -- 【89】居合い刀_両手ジャンプ1","102901240":"[89] Each other sword _ two-handed fall loop -- 【89】居合い刀_両手落下ループ","102901250":"[89] Each other sword _ two-handed fall landing -- 【89】居合い刀_両手落下着地","102901300":"[89] Each other sword _ two-handed entertainment 1 -- 【89】居合い刀_両手タメ1","102901310":"[89] Each other sword _ two-handed Entertainment 2 -- 【89】居合い刀_両手タメ2","102901400":"[89] Each other sword _ left hand -- 【89】居合い刀_左手","102901410":"[89] Each other sword _ one hand close -- 【89】居合い刀_片手近距離","102901420":"[89] Each other sword _ both hands close -- 【89】居合い刀_両手近距離","102901430":"[89] Each other Sword _ guard _ one hand -- 【89】居合い刀_ガード_片手","102901440":"[89] Each other Sword _ guard _ both hands -- 【89】居合い刀_ガード_両手","102901450":"[89] Each other sword _ Paris -- 【89】居合い刀_パリィ","102901490":"[89] Each other sword _ falling throw -- 【89】居合い刀_落下投げ","102901500":"[89] Each other sword _ behind -- 【89】居合い刀_背後","102901505":"[89] Each other sword _ reinforced behind -- 【89】居合い刀_強化背後","102901510":"[89] Each other sword _ after Paris -- 【89】居合い刀_パリィ後","102901515":"[89] Each other sword _ after strengthening Paris -- 【89】居合い刀_強化パリィ後","102901516":"[89] Each other swords _ strengthened Paris _ two -- 【89】居合い刀_強化パリィ後_二段目","102901520":"[89] Each other sword _ one-handed Dash -- 【89】居合い刀_片手ダッシュ","102901530":"[89] Each other sword _ both hands dash -- 【89】居合い刀_両手ダッシュ","102901540":"[89] Each other sword _ one hand step before -- 【89】居合い刀_片手ステップ前","102901580":"[89] Each other sword _ two hands before step -- 【89】居合い刀_両手ステップ前","102901600":"[89] Each other sword _ Parigard -- 【89】居合い刀_パリィガード","102902100":"[90] Shigurui Sword _ one-handed Entertainment 2 -- 【90】シグルイ刀_片手タメ2","102902105":"[90] Shigurui Sword _ one-handed 2_ maximum -- 【90】シグルイ刀_片手タメ2_最大","102902110":"[90] Shigurui Sword _ one-handed entertainment 1 -- 【90】シグルイ刀_片手タメ1","102902115":"[90] Shigurui Sword _ one-handed 1_ maximum -- 【90】シグルイ刀_片手タメ1_最大","102902300":"[90] Shigurui Sword _ two-handed entertainment 1 -- 【90】シグルイ刀_両手タメ1","102902305":"[90] Shigurui Sword _ two-handed 1_ maximum -- 【90】シグルイ刀_両手タメ1_最大","102902310":"[90] Shigurui Sword _ two-handed Entertainment 2 -- 【90】シグルイ刀_両手タメ2","102902315":"[90] Shigurui Sword _ two-handed 2_ maximum -- 【90】シグルイ刀_両手タメ2_最大","103000000":"Axe _ one hand usually 1 -- 斧_片手通常1","103000010":"Axe _ one hand usually two -- 斧_片手通常2","103000020":"Axe _ one hand usually three -- 斧_片手通常3","103000030":"Axe _ One handed jump -- 斧_片手ジャンプ1","103000040":"Axe _ One handed fall loop -- 斧_片手落下ループ","103000050":"Ax _ one-handed fall landing -- 斧_片手落下着地","103000100":"Axe _ one-handed entertainment 1 -- 斧_片手タメ1","103000105":"Axe _ one-handed 1_ maximum -- 斧_片手タメ1_最大","103000110":"Axe _ one-handed Entertainment 2 -- 斧_片手タメ2","103000115":"Axe _ one-handed 2_ maximum -- 斧_片手タメ2_最大","103000200":"Axe _ Two hands usually one -- 斧_両手通常1","103000210":"Axe _ Two Hands usually -- 斧_両手通常2","103000220":"Axe _ Two hands usually three -- 斧_両手通常3","103000230":"Axe _ two-handed jump 1 -- 斧_両手ジャンプ1","103000240":"Axe _ two-handed fall loop -- 斧_両手落下ループ","103000250":"Axe _ two-handed fall landing -- 斧_両手落下着地","103000300":"Axe _ two-handed entertainment 1 -- 斧_両手タメ1","103000305":"Axe _ two-handed 1_ Max -- 斧_両手タメ1_最大","103000310":"Axe _ two-handed Entertainment 2 -- 斧_両手タメ2","103000315":"Axe _ two-handed 2_ Max -- 斧_両手タメ2_最大","103000400":"Axe _ Left Hand -- 斧_左手","103000410":"Axe _ one hand close -- 斧_片手近距離","103000420":"Axe _ Both hands close -- 斧_両手近距離","103000430":"Axe _ guard _ one hand -- 斧_ガード_片手","103000440":"Axe _ guards _ both hands -- 斧_ガード_両手","103000450":"Axe _ Paris -- 斧_パリィ","103000470":"Axe _ Large Throw -- 斧_大型投げ","103000490":"Axe _ Falling Throw -- 斧_落下投げ","103000500":"Behind the axe -- 斧_背後","103000501":"Behind the ax _ the second hammer -- 斧_背後_二撃目","103000505":"Axe _ Reinforced behind -- 斧_強化背後","103000506":"Axe _ Strengthens behind _ Two -- 斧_強化背後_二段目","103000510":"Ax _ after Paris -- 斧_パリィ後","103000511":"Ax _ Paris _ two-firing eyes -- 斧_パリィ_二撃目","103000515":"Paris Axe _ After strengthening -- 斧_強化パリィ後","103000516":"Ax _ After strengthening Paris _ two -- 斧_強化パリィ後_二段目","103000517":"Ax _ After strengthening Paris _ Sandanme -- 斧_強化パリィ後_三段目","103000520":"Axe _ One handed Dash -- 斧_片手ダッシュ","103000530":"Axe _ Both hands dash -- 斧_両手ダッシュ","103000540":"Axe _ one hand step before -- 斧_片手ステップ前","103000580":"Axe _ Hands before step -- 斧_両手ステップ前","103000600":"Axe _ Parigard -- 斧_パリィガード","103000610":"Ax _ Behind the transition -- 斧_背後遷移","103000615":"Ax _ Behind Transition _ missed -- 斧_背後遷移_空振り","103000620":"Axe _ the directing slams -- 斧_演出叩きつけ","103000700":"Axe _ War Cry _ Shockwave -- 斧_ウォークライ_衝撃波","103000800":"Axe _ War Cry _ one-handed entertainment 1 -- 斧_ウォークライ_片手タメ1","103000805":"Axe _ War Cry _ one-handed 1_ maximum -- 斧_ウォークライ_片手タメ1_最大","103000806":"Axe _ War Cry _ one-handed 1_ tackle 1 -- 斧_ウォークライ_片手タメ1_タックル1","103000807":"Axe _ War Cry _ one-handed 1_ tackle 2 -- 斧_ウォークライ_片手タメ1_タックル2","103000810":"Axe _ War Cry _ one-handed Entertainment 2 -- 斧_ウォークライ_片手タメ2","103000815":"Axe _ War Cry _ one-handed 2_ maximum -- 斧_ウォークライ_片手タメ2_最大","103000900":"Axe _ War Cry _ two-handed entertainment 1 -- 斧_ウォークライ_両手タメ1","103000905":"Axe _ War Cry _ two-handed 1_ maximum -- 斧_ウォークライ_両手タメ1_最大","103000906":"Axe _ War Cry _ two-handed 1_ tackle 1 -- 斧_ウォークライ_両手タメ1_タックル1","103000907":"Axe _ War Cry _ two-handed 1_ tackle 2 -- 斧_ウォークライ_両手タメ1_タックル2","103000910":"Axe _ War Cry _ two-handed Entertainment 2 -- 斧_ウォークライ_両手タメ2","103000915":"Axe _ War Cry _ two-handed 2_ maximum -- 斧_ウォークライ_両手タメ2_最大","103001000":"Twin Sword Axe: Fat _ one hand usually 1 -- 双剣斧:デブ_片手通常1","103001010":"Twin Swords Ax: Fat _ one hand usually two -- 双剣斧:デブ_片手通常2","103001020":"Twin Swords Ax: Fat _ one hand usually three -- 双剣斧:デブ_片手通常3","103001030":"Bi-Sword Axe: Deb _ One handed jump -- 双剣斧:デブ_片手ジャンプ1","103001040":"Twin Sword Axe: Fat _ one handed fall loop -- 双剣斧:デブ_片手落下ループ","103001050":"Twin Sword Axe: Fat _ one-handed fall landing -- 双剣斧:デブ_片手落下着地","103001100":"Bi-Sword Axe: deb _ one-handed entertainment 1 -- 双剣斧:デブ_片手タメ1","103001105":"Bi-Sword Axe: fat _ one-handed 1_ Max -- 双剣斧:デブ_片手タメ1_最大","103001110":"Bi-Sword Axe: fat _ one-handed Entertainment 2 -- 双剣斧:デブ_片手タメ2","103001115":"Bi-Sword Axe: fat _ one-handed 2_ Max -- 双剣斧:デブ_片手タメ2_最大","103001200":"Double Sword Axe: fat _ usually one with two hands -- 双剣斧:デブ_両手通常1","103001210":"Twin Sword Axe: Fat _ Two hands usually -- 双剣斧:デブ_両手通常2","103001220":"Twin Sword Axe: Fat _ Two hands usually three -- 双剣斧:デブ_両手通常3","103001230":"Bi-Sword Axe: Deb _ two-handed jump 1 -- 双剣斧:デブ_両手ジャンプ1","103001240":"Twin Sword Axe: Fat _ both hands Fall loop -- 双剣斧:デブ_両手落下ループ","103001250":"Twin Swords: Fat _ two-handed fall landing -- 双剣斧:デブ_両手落下着地","103001300":"Twin Sword Axe: Fat _ two-handed entertainment 1 -- 双剣斧:デブ_両手タメ1","103001305":"Bi-Sword Axe: Deb _ two-handed 1_ Max -- 双剣斧:デブ_両手タメ1_最大","103001310":"Twin Sword Axe: Deb _ two-handed Entertainment 2 -- 双剣斧:デブ_両手タメ2","103001315":"Bi-Sword Axe: Deb _ two-handed 2_ Max -- 双剣斧:デブ_両手タメ2_最大","103001400":"Twin Sword Axe: Deb _ Left Hand -- 双剣斧:デブ_左手","103001410":"Twin Sword Axe: Fat _ one hand close -- 双剣斧:デブ_片手近距離","103001420":"Twin Sword Axe: Fat _ both hands close -- 双剣斧:デブ_両手近距離","103001430":"Twin Sword Axe: Fat Guard _ one hand -- 双剣斧:デブ_ガード_片手","103001440":"Twin Sword Axe: Fat _ guard _ both hands -- 双剣斧:デブ_ガード_両手","103001450":"Twin Sword Axe: Deb _ Paris -- 双剣斧:デブ_パリィ","103001470":"Twin Sword axe: fat-Big throw -- 双剣斧:デブ_大型投げ","103001490":"Twin Sword axe: fat-throwing fall -- 双剣斧:デブ_落下投げ","103001500":"Twin Sword Axe: Deb _ behind -- 双剣斧:デブ_背後","103001501":"Twin Sword Axe: Deb _ behind the two-firing eyes -- 双剣斧:デブ_背後_二撃目","103001505":"Twin Sword Axe: Deb _ Behind the reinforcement -- 双剣斧:デブ_強化背後","103001506":"Twin-Sword Axe: Deb _ Reinforced behind _ Two -- 双剣斧:デブ_強化背後_二段目","103001510":"Twin Sword Axe: Deb _ after Paris -- 双剣斧:デブ_パリィ後","103001511":"Twin Sword Axe: Deb _ Paris _ Second Hammer -- 双剣斧:デブ_パリィ_二撃目","103001515":"Twin Sword Axe: Deb _ after strengthening Paris -- 双剣斧:デブ_強化パリィ後","103001516":"Twin-Sword Axe: Deb _ Paris after strengthening _ two -- 双剣斧:デブ_強化パリィ後_二段目","103001517":"Twin-Sword Axe: Deb _ Paris after strengthening _ Sandanme -- 双剣斧:デブ_強化パリィ後_三段目","103001520":"Bi-Sword Axe: fat _ one-handed Dash -- 双剣斧:デブ_片手ダッシュ","103001530":"Bi-Sword Axe: fat _ both hands dash -- 双剣斧:デブ_両手ダッシュ","103001540":"Twin Sword Axe: Fat _ one handed step before -- 双剣斧:デブ_片手ステップ前","103001580":"Bi-Sword Axe: deb _ Hands before step -- 双剣斧:デブ_両手ステップ前","103001600":"Twin Sword Axe: Deb _ Parigard -- 双剣斧:デブ_パリィガード","103001610":"Twin Sword Axe: Deb _ transition behind -- 双剣斧:デブ_背後遷移","103001615":"Twin Swords Ax: Fat _ Behind the transition _ missed -- 双剣斧:デブ_背後遷移_空振り","103001620":"Twin Sword Axe: Deb _ the directing slams -- 双剣斧:デブ_演出叩きつけ","103001700":"Twin Sword Axe: Fat _ 1_ Left hand Combo -- 双剣斧:デブ_双剣左コンボ1_右手","103001701":"Twin Sword Axe: Fat _ 1_ Left hand Combo -- 双剣斧:デブ_双剣左コンボ1_左手","103001710":"Twin Sword Axe: Fat _ 2_ Left hand Combo -- 双剣斧:デブ_双剣左コンボ2_右手","103001711":"Twin Sword Axe: Fat _ 2_ Left hand Combo -- 双剣斧:デブ_双剣左コンボ2_左手","103001720":"Twin Sword Axe: Fat _ 3_ Left hand Combo -- 双剣斧:デブ_双剣左コンボ3_右手","103001721":"Twin Sword Axe: Fat _ 3_ Left hand Combo -- 双剣斧:デブ_双剣左コンボ3_左手","103001730":"Twin Sword Axe: Fat _ bi-Sword dash (right) -- 双剣斧:デブ_双剣ダッシュ(右手)","103001731":"Twin Sword Axe: Fat _ bi-Sword dash (left hand) -- 双剣斧:デブ_双剣ダッシュ(左手)","103001740":"Twin Sword Axe: Fat _ bi-swords (right) -- 双剣斧:デブ_双剣ステップ前(右手)","103001741":"Twin Sword Axe: Fat Sword (left hand) -- 双剣斧:デブ_双剣ステップ前(左手)","103001800":"Twin Sword Axe: deb _ Spinning (right) -- 双剣斧:デブ_回転中(右手)","103001801":"Twin Sword Axe: fat _ spinning (left hand) -- 双剣斧:デブ_回転中(左手)","103001820":"Twin Sword axe: fat (right hand) -- 双剣斧:デブ_回転強(右手)","103001821":"Twin-Sword Axe: Deb _ Turning strength (left hand) -- 双剣斧:デブ_回転強(左手)","103010000":"Han Hanks _ one handed usually 1 -- ハンドアクス_片手通常1","103010010":"Han Hanks _ one hand usually two -- ハンドアクス_片手通常2","103010020":"Han Hanks _ one hand usually three -- ハンドアクス_片手通常3","103010100":"Han-one-handed entertainment 1 -- ハンドアクス_片手タメ1","103010110":"Han-one-handed entertainment 2 -- ハンドアクス_片手タメ2","103010200":"Han Hanks _ Two hands usually one -- ハンドアクス_両手通常1","103010210":"Han Hanks _ Two hands usually 2 -- ハンドアクス_両手通常2","103010220":"Han Hanks _ Two hands usually three -- ハンドアクス_両手通常3","103010300":"Han, two-handed entertainment 1 -- ハンドアクス_両手タメ1","103010310":"Han's two-handed entertainment 2 -- ハンドアクス_両手タメ2","103010400":"Han Hanks _ left hand -- ハンドアクス_左手","103010520":"Han-one-handed dash -- ハンドアクス_片手ダッシュ","103010530":"Han doors _ two-handed Dash -- ハンドアクス_両手ダッシュ","103010540":"Han Hanks _ one handed step before -- ハンドアクス_片手ステップ前","103010580":"Han Hanks _ two-handed step before -- ハンドアクス_両手ステップ前","103020000":"[104] Iron Ax _ one hand usually 1 -- 【104】アイアンアクス_片手通常1","103020010":"[104] Iron Ax _ one hand usually two -- 【104】アイアンアクス_片手通常2","103020020":"[104] Iron Ax _ one hand usually three -- 【104】アイアンアクス_片手通常3","103020030":"[104] Iron Ax _ one-handed jump 1 -- 【104】アイアンアクス_片手ジャンプ1","103020040":"[104] Iron Ax _ one-handed fall loop -- 【104】アイアンアクス_片手落下ループ","103020050":"[104] Iron Ax _ one-handed fall landing -- 【104】アイアンアクス_片手落下着地","103020100":"[104] Iron Ax _ one-handed entertainment 1 -- 【104】アイアンアクス_片手タメ1","103020110":"[104] Iron Ax _ one-handed Entertainment 2 -- 【104】アイアンアクス_片手タメ2","103020120":"[104] Iron Ax _ one-handed Entertainment 1/Magic Trigger -- 【104】アイアンアクス_片手タメ1/魔法発動時","103020130":"[104] Iron Ax _ one-handed Entertainment 2/Magic Trigger -- 【104】アイアンアクス_片手タメ2/魔法発動時","103020200":"[104] Iron Ax _ Two hands usually one -- 【104】アイアンアクス_両手通常1","103020210":"[104] Iron Ax _ Two hands usually 2 -- 【104】アイアンアクス_両手通常2","103020220":"[104] Iron Ax _ Two hands usually three -- 【104】アイアンアクス_両手通常3","103020230":"[104] Iron Ax _ two-handed jump 1 -- 【104】アイアンアクス_両手ジャンプ1","103020240":"[104] Iron Ax _ two-handed fall loop -- 【104】アイアンアクス_両手落下ループ","103020250":"[104] Iron Ax _ two-handed fall landing -- 【104】アイアンアクス_両手落下着地","103020300":"[104] Iron Ax _ two-handed entertainment 1 -- 【104】アイアンアクス_両手タメ1","103020301":"[104] Iron Ax _ Both hands _ perimeter -- 【104】アイアンアクス_両手_周囲","103020310":"[104] Iron Ax _ two-handed Entertainment 2 -- 【104】アイアンアクス_両手タメ2","103020400":"[104] Iron Ax _ left Hand -- 【104】アイアンアクス_左手","103020410":"[104] Iron Ax _ one hand close -- 【104】アイアンアクス_片手近距離","103020420":"[104] Iron Ax _ both hands close -- 【104】アイアンアクス_両手近距離","103020430":"[104] Iron Ax _ guards _ one hand -- 【104】アイアンアクス_ガード_片手","103020440":"[104] Iron Ax _ guards _ both hands -- 【104】アイアンアクス_ガード_両手","103020450":"[104] Iron Ax _ Paris -- 【104】アイアンアクス_パリィ","103020490":"[104] Iron Ax _ Falling Throw -- 【104】アイアンアクス_落下投げ","103020500":"[104] Iron Ax _ behind -- 【104】アイアンアクス_背後","103020501":"[104] Iron Ax _ behind the two-firing eye -- 【104】アイアンアクス_背後_二撃目","103020505":"[104] Iron Ax _ Strengthening behind -- 【104】アイアンアクス_強化背後","103020506":"[104] Iron Ax _ strengthened behind _ Two -- 【104】アイアンアクス_強化背後_二段目","103020510":"[104] Iron Ax _ after Paris -- 【104】アイアンアクス_パリィ後","103020511":"[104] Iron Ax _ Paris _ 2nd Hammer -- 【104】アイアンアクス_パリィ_二撃目","103020515":"[104] Iron Ax _ after strengthening Paris -- 【104】アイアンアクス_強化パリィ後","103020516":"[104] Iron Ax _ Paris after strengthening _ two -- 【104】アイアンアクス_強化パリィ後_二段目","103020517":"[104] Iron Ax _ Paris after strengthening _ Sandanme -- 【104】アイアンアクス_強化パリィ後_三段目","103020520":"[104] Iron Ax _ one-handed Dash -- 【104】アイアンアクス_片手ダッシュ","103020530":"[104] Iron Ax _ both hands dash -- 【104】アイアンアクス_両手ダッシュ","103020540":"[104] Iron Ax _ one-handed step before -- 【104】アイアンアクス_片手ステップ前","103020580":"[104] Iron Ax _ two-handed step before -- 【104】アイアンアクス_両手ステップ前","103020600":"[104] Iron Ax _ Parigard -- 【104】アイアンアクス_パリィガード","103020800":"[104] Iron Ax _ Magic Sword -- 【104】アイアンアクス_魔法剣","103030000":"[103] Large knife _ one hand usually 1 -- 【103】大包丁_片手通常1","103030010":"[103] Large knife _ one hand usually 2 -- 【103】大包丁_片手通常2","103030020":"[103] Large knife _ one hand usually three -- 【103】大包丁_片手通常3","103030030":"[103] Large knife _ one-handed jump 1 -- 【103】大包丁_片手ジャンプ1","103030040":"[103] Large knife _ one-handed fall loop -- 【103】大包丁_片手落下ループ","103030050":"[103] Large knife _ one-handed fall landing -- 【103】大包丁_片手落下着地","103030100":"[103] Big knife _ one-handed entertainment 1 -- 【103】大包丁_片手タメ1","103030110":"[103] Big knife _ one-handed Entertainment 2 -- 【103】大包丁_片手タメ2","103030200":"[103] Large knife _ both hands usually 1 -- 【103】大包丁_両手通常1","103030210":"[103] Large knife _ Two hands usually 2 -- 【103】大包丁_両手通常2","103030220":"[103] Large knife _ two hands usually three -- 【103】大包丁_両手通常3","103030230":"[103] Large knife _ two-handed jump 1 -- 【103】大包丁_両手ジャンプ1","103030240":"[103] Large knife _ both hands Fall loop -- 【103】大包丁_両手落下ループ","103030250":"[103] Large knife _ both hands fall landing -- 【103】大包丁_両手落下着地","103030300":"[103] Large knife _ two-handed entertainment 1 -- 【103】大包丁_両手タメ1","103030310":"[103] Large knife _ two-handed Entertainment 2 -- 【103】大包丁_両手タメ2","103030400":"[103] Large Cleaver _ left hand -- 【103】大包丁_左手","103030490":"[103] Large knife _ drop throw -- 【103】大包丁_落下投げ","103030500":"[103] Large Cleaver _ behind -- 【103】大包丁_背後","103030501":"[103] Large knife _ behind the second hammer -- 【103】大包丁_背後_二撃目","103030505":"【 103 】 Large cleaver _ reinforced behind -- 【103】大包丁_強化背後","103030506":"【 103 】 Large Cleaver _ reinforced behind _ Two -- 【103】大包丁_強化背後_二段目","103030510":"[103] Large cleaver _ after Paris -- 【103】大包丁_パリィ後","103030511":"[103] Large Knife _ Paris _ Second Hammer -- 【103】大包丁_パリィ_二撃目","103030515":"【 103 】 Large Cleaver _ after strengthening Paris -- 【103】大包丁_強化パリィ後","103030516":"[103] Large Cleaver _ after strengthening Paris _ two -- 【103】大包丁_強化パリィ後_二段目","103030517":"[103] Large Cleaver _ after strengthening Paris _ Sandanme -- 【103】大包丁_強化パリィ後_三段目","103030520":"[103] Large knife _ one-handed Dash -- 【103】大包丁_片手ダッシュ","103030530":"[103] Large knife _ both hands dash -- 【103】大包丁_両手ダッシュ","103030540":"[103] Large knife _ one hand step before -- 【103】大包丁_片手ステップ前","103030580":"[103] Large knife _ two-handed step before -- 【103】大包丁_両手ステップ前","103040000":"[125] Gargoyle Tail Ax _ one hand usually 1 -- 【125】ガーゴイルの尾斧_片手通常1","103040010":"[125] Gargoyle Tail Ax _ one hand usually two -- 【125】ガーゴイルの尾斧_片手通常2","103040020":"[125] Gargoyle Tail Ax _ one hand usually three -- 【125】ガーゴイルの尾斧_片手通常3","103040030":"[125] Gargoyle Tail Ax _ one-handed jump 1 -- 【125】ガーゴイルの尾斧_片手ジャンプ1","103040040":"[125] Gargoyle Tail Ax _ one-handed fall loop -- 【125】ガーゴイルの尾斧_片手落下ループ","103040050":"[125] Gargoyle Tail Ax _ one-handed fall landing -- 【125】ガーゴイルの尾斧_片手落下着地","103040100":"[125] Gargoyle Tail Ax _ one-handed entertainment 1 -- 【125】ガーゴイルの尾斧_片手タメ1","103040110":"[125] Gargoyle Tail Ax _ one-handed Entertainment 2 -- 【125】ガーゴイルの尾斧_片手タメ2","103040200":"[125] Gargoyle Tail Ax _ hands usually one -- 【125】ガーゴイルの尾斧_両手通常1","103040210":"[125] Gargoyle Tail Ax _ Two hands usually 2 -- 【125】ガーゴイルの尾斧_両手通常2","103040220":"[125] Gargoyle Tail Ax _ Two hands usually three -- 【125】ガーゴイルの尾斧_両手通常3","103040230":"[125] Gargoyle Tail Ax _ two-handed jump 1 -- 【125】ガーゴイルの尾斧_両手ジャンプ1","103040240":"[125] Gargoyle Tail Ax _ two-handed fall loop -- 【125】ガーゴイルの尾斧_両手落下ループ","103040250":"[125] Gargoyle Tail Ax _ two-handed fall landing -- 【125】ガーゴイルの尾斧_両手落下着地","103040300":"[125] Gargoyle Tail Ax _ two-handed entertainment 1 -- 【125】ガーゴイルの尾斧_両手タメ1","103040310":"[125] Gargoyle Tail Ax _ two-handed Entertainment 2 -- 【125】ガーゴイルの尾斧_両手タメ2","103040400":"[125] Gargoyle Tail Ax _ left hand -- 【125】ガーゴイルの尾斧_左手","103040410":"[125] Gargoyle Tail Ax _ one hand close -- 【125】ガーゴイルの尾斧_片手近距離","103040420":"[125] Gargoyle Tail Ax _ both hands close -- 【125】ガーゴイルの尾斧_両手近距離","103040430":"[125] Gargoyle Tail Ax _ guard _ one hand -- 【125】ガーゴイルの尾斧_ガード_片手","103040440":"[125] Gargoyle Tail Ax _ guard _ both hands -- 【125】ガーゴイルの尾斧_ガード_両手","103040450":"[125] Gargoyle Tail Ax _ Paris -- 【125】ガーゴイルの尾斧_パリィ","103040490":"[125] Gargoyle Tail Ax _ Falling Throw -- 【125】ガーゴイルの尾斧_落下投げ","103040500":"[125] Gargoyle Tail Ax _ behind -- 【125】ガーゴイルの尾斧_背後","103040501":"[125] Gargoyle Tail Ax _ behind the second hammer -- 【125】ガーゴイルの尾斧_背後_二撃目","103040505":"[125] Gargoyle Tail Ax _ reinforced behind -- 【125】ガーゴイルの尾斧_強化背後","103040506":"[125] Gargoyle Tail Ax _ reinforced behind _ Two -- 【125】ガーゴイルの尾斧_強化背後_二段目","103040510":"[125] Gargoyle Tail Ax _ after Paris -- 【125】ガーゴイルの尾斧_パリィ後","103040511":"[125] Gargoyle Tail Ax _ Paris _ Second Hammer -- 【125】ガーゴイルの尾斧_パリィ_二撃目","103040515":"[125] Gargoyle Tail Ax _ after strengthening Paris -- 【125】ガーゴイルの尾斧_強化パリィ後","103040516":"[125] Gargoyle Tail Ax _ after strengthening Paris _ two -- 【125】ガーゴイルの尾斧_強化パリィ後_二段目","103040517":"[125] Gargoyle Tail Ax _ after strengthening Paris _ Sandanme -- 【125】ガーゴイルの尾斧_強化パリィ後_三段目","103040520":"[125] Gargoyle Tail Ax _ one-handed Dash -- 【125】ガーゴイルの尾斧_片手ダッシュ","103040530":"[125] Gargoyle Tail Ax _ both hands Dash -- 【125】ガーゴイルの尾斧_両手ダッシュ","103040540":"[125] Gargoyle Tail Ax _ one hand step before -- 【125】ガーゴイルの尾斧_片手ステップ前","103040580":"[125] Gargoyle Tail Ax _ hands before step -- 【125】ガーゴイルの尾斧_両手ステップ前","103040600":"[125] Gargoyle Tail Ax _ Parigard -- 【125】ガーゴイルの尾斧_パリィガード","103200000":"Large Ax _ one hand usually 1 -- 大斧_片手通常1","103200001":"Large ax _ One handed usually 1_ range -- 大斧_片手通常1_範囲","103200010":"Large Ax _ one hand usually two -- 大斧_片手通常2","103200020":"Large Ax _ one hand usually three -- 大斧_片手通常3","103200030":"Large ax _ one handed jump -- 大斧_片手ジャンプ1","103200040":"Large ax _ One handed fall loop -- 大斧_片手落下ループ","103200050":"Large ax _ one-handed fall landing -- 大斧_片手落下着地","103200100":"Large ax _ one-handed entertainment 1 -- 大斧_片手タメ1","103200101":"Large ax _ one-handed 1_ around (small) -- 大斧_片手タメ1_周辺(小)","103200105":"Large ax _ one-handed 1_ maximum -- 大斧_片手タメ1_最大","103200110":"Large ax _ one-handed Entertainment 2 -- 大斧_片手タメ2","103200115":"Large ax _ one-handed 2_ maximum -- 大斧_片手タメ2_最大","103200200":"Large Ax _ Two hands usually one -- 大斧_両手通常1","103200210":"Large Axe _ Two hands usually -- 大斧_両手通常2","103200220":"Large Ax _ Two hands usually three -- 大斧_両手通常3","103200230":"Large ax _ two-handed jump 1 -- 大斧_両手ジャンプ1","103200240":"Large axe _ two-handed fall loop -- 大斧_両手落下ループ","103200250":"Large ax _ two-handed fall landing -- 大斧_両手落下着地","103200300":"Large ax _ two-handed entertainment 1 -- 大斧_両手タメ1","103200305":"Large ax _ two-handed 1_ Max -- 大斧_両手タメ1_最大","103200310":"Large ax _ two-handed Entertainment 2 -- 大斧_両手タメ2","103200315":"Large ax _ two-handed 2_ Max -- 大斧_両手タメ2_最大","103200400":"Large Axe _ Left hand -- 大斧_左手","103200410":"Large Axe _ one hand close -- 大斧_片手近距離","103200420":"Large Axe _ both hands close -- 大斧_両手近距離","103200430":"Large Axe _ guard _ one hand -- 大斧_ガード_片手","103200440":"Large Axe _ guard _ both hands -- 大斧_ガード_両手","103200450":"Large Axe _ Paris -- 大斧_パリィ","103200470":"Large Axe _ Large throw -- 大斧_大型投げ","103200490":"Large Axe _ Falling throw -- 大斧_落下投げ","103200500":"Large ax _ behind -- 大斧_背後","103200501":"Large ax _ Behind the second hammer -- 大斧_背後_二撃目","103200505":"Large ax _ Reinforced behind -- 大斧_強化背後","103200506":"Large Ax _ reinforced behind _ Two -- 大斧_強化背後_二段目","103200510":"Large ax _ after Paris -- 大斧_パリィ後","103200511":"Large Ax _ after Paris _ Second hammer -- 大斧_パリィ後_二撃目","103200515":"Large ax _ after strengthening Paris -- 大斧_強化パリィ後","103200516":"Paris Large Ax _ after strengthening _ two -- 大斧_強化パリィ後_二段目","103200517":"Paris Large Ax _ after strengthening _ Sandanme -- 大斧_強化パリィ後_三段目","103200520":"Large Axe _ one handed Dash -- 大斧_片手ダッシュ","103200530":"Large axe _ both hands dash -- 大斧_両手ダッシュ","103200540":"Large Axe _ one hand step before -- 大斧_片手ステップ前","103200580":"Large Ax _ Two hands before step -- 大斧_両手ステップ前","103200600":"Large Axe _ Parigard -- 大斧_パリィガード","103200610":"Large ax _ Behind the transition -- 大斧_背後遷移","103200615":"Large ax _ Behind the transition _ missed -- 大斧_背後遷移_空振り","103201000":"[106] Large axe of the Dragon King _ one hand usually 1 -- 【106】竜王の大斧_片手通常1","103201010":"[106] Large axe of the Dragon King _ one hand usually 2 -- 【106】竜王の大斧_片手通常2","103201020":"[106] Large axe of the Dragon King _ one hand usually three -- 【106】竜王の大斧_片手通常3","103201030":"[106] Large axe of the Dragon King, one hand jump -- 【106】竜王の大斧_片手ジャンプ1","103201040":"[106] Large axe of the dragon, one-handed fall loop -- 【106】竜王の大斧_片手落下ループ","103201050":"[106] Large axe of the Dragon King, one-handed fall landing -- 【106】竜王の大斧_片手落下着地","103201100":"[106] Big axe of the Dragon King, one hand entertainment 1 -- 【106】竜王の大斧_片手タメ1","103201101":"[106] Large axe of the Dragon King _ one hand around 1_ (small) -- 【106】竜王の大斧_片手タメ1_周辺(小)","103201110":"[106] Big axe of the Dragon King, one hand entertainment 2 -- 【106】竜王の大斧_片手タメ2","103201200":"[106] Large ax of the Dragon King _ Two hands usually one -- 【106】竜王の大斧_両手通常1","103201210":"[106] Large axe of the Dragon King _ Two hands usually -- 【106】竜王の大斧_両手通常2","103201220":"[106] Large axe of the Dragon King _ Two hands usually three -- 【106】竜王の大斧_両手通常3","103201230":"[106] Large ax of the Dragon King _ two-handed jump -- 【106】竜王の大斧_両手ジャンプ1","103201240":"[106] Dragon King's Large axe _ two-handed fall loop -- 【106】竜王の大斧_両手落下ループ","103201250":"[106] Large axe of the dragon, two-handed fall landing -- 【106】竜王の大斧_両手落下着地","103201300":"[106] Large axe of the Dragon King _ two-handed entertainment 1 -- 【106】竜王の大斧_両手タメ1","103201301":"[106] Large axe of the King's Dragon _ both hands around 1_ -- 【106】竜王の大斧_両手タメ1_周辺","103201310":"[106] Large ax of the Dragon King _ two-handed entertainment -- 【106】竜王の大斧_両手タメ2","103201320":"[106] Large axe of the dragon, two-handed -- 【106】竜王の大斧_両手タメ1/魔法発動時","103201330":"[106] Large axe of the dragon, two-hand entertainment 2/Magic -- 【106】竜王の大斧_両手タメ2/魔法発動時","103201400":"[106] Large axe of the Dragon's left hand -- 【106】竜王の大斧_左手","103201410":"[106] Large ax of the Dragon King _ one hand close -- 【106】竜王の大斧_片手近距離","103201420":"[106] Large ax of the Dragon King _ both hands close -- 【106】竜王の大斧_両手近距離","103201430":"[106] Big axe of the King Dragon _ guard _ one hand -- 【106】竜王の大斧_ガード_片手","103201440":"[106] Large axe of the Dragon King _ both hands -- 【106】竜王の大斧_ガード_両手","103201450":"[106] Large axe of the Dragon King _ Paris -- 【106】竜王の大斧_パリィ","103201490":"[106] Large axe of the Dragon King _ drop Throw -- 【106】竜王の大斧_落下投げ","103201500":"[106] Great axe behind the Dragon King -- 【106】竜王の大斧_背後","103201501":"[106] Large ax of the Dragon King _ behind the second hammer -- 【106】竜王の大斧_背後_二撃目","103201505":"[106] Large axe of the Dragon King, reinforced behind -- 【106】竜王の大斧_強化背後","103201506":"[106] Large axe of the Dragon King _ reinforced behind _ Two -- 【106】竜王の大斧_強化背後_二段目","103201510":"[106] Large axe of the King Dragon _ after Paris -- 【106】竜王の大斧_パリィ後","103201511":"[106] Large axe of the Dragon King _ Paris after the second hammer -- 【106】竜王の大斧_パリィ後_二撃目","103201515":"[106] Large axe of the Dragon King _ after strengthening Paris -- 【106】竜王の大斧_強化パリィ後","103201516":"[106] Large axe of the Dragon King _ after strengthening Paris _ two -- 【106】竜王の大斧_強化パリィ後_二段目","103201517":"[106] Large axe of the Dragon King _ after strengthening Paris _ Sandanme -- 【106】竜王の大斧_強化パリィ後_三段目","103201520":"[106] Big axe of the Dragon King _ one hand Dash -- 【106】竜王の大斧_片手ダッシュ","103201530":"[106] Large ax of the Dragon King _ both hands Dash -- 【106】竜王の大斧_両手ダッシュ","103201540":"[106] Large axe of the Dragon King _ one hand step before -- 【106】竜王の大斧_片手ステップ前","103201580":"[106] Big axe of the Dragon -- 【106】竜王の大斧_両手ステップ前","103201600":"[106] Large axe of the Dragon King _ Parigard -- 【106】竜王の大斧_パリィガード","103201800":"[106] Dragon King's great Axe _ Magic Sword -- 【106】竜王の大斧_魔法剣","103202000":"[105] Demon Large ax _ one hand usually 1 -- 【105】デーモンの大斧_片手通常1","103202010":"[105] Daemon Large ax _ one hand usually two -- 【105】デーモンの大斧_片手通常2","103202020":"[105] Daemon Large ax _ one hand usually three -- 【105】デーモンの大斧_片手通常3","103202030":"[105] Demon's large axe _ one handed jump -- 【105】デーモンの大斧_片手ジャンプ1","103202040":"[105] Demon's Large axe _ one-handed fall loop -- 【105】デーモンの大斧_片手落下ループ","103202050":"[105] Demon's Large axe _ one-handed fall landing -- 【105】デーモンの大斧_片手落下着地","103202100":"[105] Demon's Large axe _ one-handed entertainment 1 -- 【105】デーモンの大斧_片手タメ1","103202101":"[105] Demon's Large axe _ one-handed 1_ around (small) -- 【105】デーモンの大斧_片手タメ1_周辺(小)","103202110":"[105] Demon's Large axe _ one-handed Entertainment 2 -- 【105】デーモンの大斧_片手タメ2","103202200":"[105] Demon Large Axe _ Two hands usually one -- 【105】デーモンの大斧_両手通常1","103202210":"[105] Demon Large Axe _ Two hands usually 2 -- 【105】デーモンの大斧_両手通常2","103202220":"[105] Demon Large Axe _ Two hands usually three -- 【105】デーモンの大斧_両手通常3","103202230":"[105] Demon Large axe _ two-handed jump 1 -- 【105】デーモンの大斧_両手ジャンプ1","103202240":"[105] Demon's Large axe _ two-handed fall loop -- 【105】デーモンの大斧_両手落下ループ","103202250":"[105] Demon's large ax _ two-handed fall landing -- 【105】デーモンの大斧_両手落下着地","103202300":"[105] Demon's Great axe _ two-handed entertainment 1 -- 【105】デーモンの大斧_両手タメ1","103202301":"[105] Demon's large axe _ both hands around 1_ -- 【105】デーモンの大斧_両手タメ1_周辺","103202310":"[105] Demon's Large axe _ two-handed Entertainment 2 -- 【105】デーモンの大斧_両手タメ2","103202400":"[105] Demon's great axe _ left hand -- 【105】デーモンの大斧_左手","103202410":"[105] Demon's Large axe _ one hand close -- 【105】デーモンの大斧_片手近距離","103202420":"[105] Demon's large axe _ both hands close -- 【105】デーモンの大斧_両手近距離","103202430":"[105] Demon's Great Axe _ guard _ one hand -- 【105】デーモンの大斧_ガード_片手","103202440":"[105] Demon's Great Axe _ guard _ both hands -- 【105】デーモンの大斧_ガード_両手","103202450":"[105] Demon's great axe _ Paris -- 【105】デーモンの大斧_パリィ","103202490":"[105] Demon's large axe _ falling throw -- 【105】デーモンの大斧_落下投げ","103202500":"[105] Demon's great axe _ behind -- 【105】デーモンの大斧_背後","103202501":"[105] Demon's Big axe _ behind the second hammer -- 【105】デーモンの大斧_背後_二撃目","103202505":"[105] Demon's large axe _ reinforced behind -- 【105】デーモンの大斧_強化背後","103202506":"[105] Demon's large axe _ reinforced behind _ Two -- 【105】デーモンの大斧_強化背後_二段目","103202510":"[105] Demon's great axe _ after Paris -- 【105】デーモンの大斧_パリィ後","103202511":"[105] Demon's large axe _ Paris after the second hammer -- 【105】デーモンの大斧_パリィ後_二撃目","103202515":"[105] Demon Large ax _ after strengthening Paris -- 【105】デーモンの大斧_強化パリィ後","103202516":"[105] Demon's large ax _ after strengthening Paris _ two -- 【105】デーモンの大斧_強化パリィ後_二段目","103202517":"[105] Demon's large ax _ after strengthening Paris _ Sandanme -- 【105】デーモンの大斧_強化パリィ後_三段目","103202520":"[105] Demon's Large axe _ one-handed Dash -- 【105】デーモンの大斧_片手ダッシュ","103202530":"[105] Demon's large axe _ both hands dash -- 【105】デーモンの大斧_両手ダッシュ","103202540":"[105] Demon's great axe _ one hand step before -- 【105】デーモンの大斧_片手ステップ前","103202580":"[105] Demon's large ax _ hands before step -- 【105】デーモンの大斧_両手ステップ前","103202600":"[105] Demon's great axe _ Parigard -- 【105】デーモンの大斧_パリィガード","103203000":"[107] Black Knight's large axe _ one hand usually 1 -- 【107】黒騎士の大斧_片手通常1","103203010":"[107] Black Knight's large axe _ one hand usually two -- 【107】黒騎士の大斧_片手通常2","103203020":"[107] Black Knight's great Axe _ one hand usually three -- 【107】黒騎士の大斧_片手通常3","103203100":"[107] Black Knight's Great Axe _ one-handed entertainment 1 -- 【107】黒騎士の大斧_片手タメ1","103203110":"[107] Black Knight's Great Axe _ one-handed Entertainment 2 -- 【107】黒騎士の大斧_片手タメ2","103203200":"[107] Black Knight's large axe _ Two hands usually one -- 【107】黒騎士の大斧_両手通常1","103203210":"[107] Black Knight's large axe _ Two hands usually -- 【107】黒騎士の大斧_両手通常2","103203220":"[107] Black Knight's large axe _ Two hands usually three -- 【107】黒騎士の大斧_両手通常3","103203300":"[107] Black Knight's Great Axe _ two-handed entertainment 1 -- 【107】黒騎士の大斧_両手タメ1","103203310":"[107] Black Knight's Great Axe _ two-handed Entertainment 2 -- 【107】黒騎士の大斧_両手タメ2","103203400":"[107] Black Knight's great Axe _ left hand -- 【107】黒騎士の大斧_左手","103203520":"[107] Black Knight's Great Axe _ one-handed Dash -- 【107】黒騎士の大斧_片手ダッシュ","103203530":"[107] Black Knight's great Axe _ both hands dash -- 【107】黒騎士の大斧_両手ダッシュ","103203540":"[107] Black Knight's great Axe _ one hand step before -- 【107】黒騎士の大斧_片手ステップ前","103203580":"[107] Black Knight's great Axe _ Two hands before step -- 【107】黒騎士の大斧_両手ステップ前","103204000":"[133] Dogu Celts _ one-handed usually 1 -- 【133】土偶の石斧_片手通常1","103204010":"[133] Dogu Celts _ one hand usually two -- 【133】土偶の石斧_片手通常2","103204020":"[133] Dogu Celts _ one hand usually three -- 【133】土偶の石斧_片手通常3","103204030":"[133] Dogu Celts _ one-handed jump 1 -- 【133】土偶の石斧_片手ジャンプ1","103204040":"[133] Dogu Celts _ one-handed fall loop -- 【133】土偶の石斧_片手落下ループ","103204050":"[133] Dogu Celts _ one-handed fall landing -- 【133】土偶の石斧_片手落下着地","103204100":"[133] Dogu Celts _ one-handed entertainment 1 -- 【133】土偶の石斧_片手タメ1","103204101":"[133] Dogu Celts _ one-handed 1_ around (small) -- 【133】土偶の石斧_片手タメ1_周辺(小)","103204110":"[133] Dogu Celts _ one-handed Entertainment 2 -- 【133】土偶の石斧_片手タメ2","103204200":"[133] Dogu Celts _ Two hands usually one -- 【133】土偶の石斧_両手通常1","103204210":"[133] Dogu Celts _ Two hands usually 2 -- 【133】土偶の石斧_両手通常2","103204220":"[133] Dogu Celts _ Two hands usually three -- 【133】土偶の石斧_両手通常3","103204230":"[133] Dogu Celts _ two-handed jump 1 -- 【133】土偶の石斧_両手ジャンプ1","103204240":"[133] Dogu Celts _ two-handed fall loop -- 【133】土偶の石斧_両手落下ループ","103204250":"[133] Dogu Celts _ two-handed fall landing -- 【133】土偶の石斧_両手落下着地","103204300":"[133] Dogu Celts _ two-handed entertainment 1 -- 【133】土偶の石斧_両手タメ1","103204301":"[133] Celts of Dogu _ around two-handed 1_ -- 【133】土偶の石斧_両手タメ1_周辺","103204310":"[133] Dogu Celts _ two-handed Entertainment 2 -- 【133】土偶の石斧_両手タメ2","103204400":"[133] Dogu Celts _ left hand -- 【133】土偶の石斧_左手","103204410":"[133] Dogu Celts _ one-handed close -- 【133】土偶の石斧_片手近距離","103204420":"[133] Dogu Celts _ both hands close -- 【133】土偶の石斧_両手近距離","103204430":"[133] Dogu Celts _ guards _ one hand -- 【133】土偶の石斧_ガード_片手","103204440":"[133] Dogu Celts _ guards _ both hands -- 【133】土偶の石斧_ガード_両手","103204450":"[133] Dogu Celts _ Paris -- 【133】土偶の石斧_パリィ","103204490":"[133] Dogu Celts _ Falling Throw -- 【133】土偶の石斧_落下投げ","103204500":"[133] Dogu Celts _ behind -- 【133】土偶の石斧_背後","103204501":"[133] Celts of Dogu _ behind _ two-firing eyes -- 【133】土偶の石斧_背後_二撃目","103204505":"[133] Dogu Celts _ strengthened behind -- 【133】土偶の石斧_強化背後","103204506":"[133] Dogu Celts _ strengthened behind _ Two -- 【133】土偶の石斧_強化背後_二段目","103204510":"[133] Dogu Celts _ after Paris -- 【133】土偶の石斧_パリィ後","103204511":"[133] Dogu Celts _ Paris After _ Second hammer -- 【133】土偶の石斧_パリィ後_二撃目","103204515":"[133] Dogu Celts _ after strengthening Paris. -- 【133】土偶の石斧_強化パリィ後","103204516":"[133] Dogu Celts _ Paris after strengthening _ two -- 【133】土偶の石斧_強化パリィ後_二段目","103204517":"[133] Dogu Celts _ Paris after strengthening _ Sandanme -- 【133】土偶の石斧_強化パリィ後_三段目","103204520":"[133] Dogu Celts _ one-handed Dash -- 【133】土偶の石斧_片手ダッシュ","103204530":"[133] Dogu Celts _ both hands Dash -- 【133】土偶の石斧_両手ダッシュ","103204540":"[133] Dogu Celts _ one-handed step ahead -- 【133】土偶の石斧_片手ステップ前","103204580":"[133] Dogu Celts _ both hands step ahead -- 【133】土偶の石斧_両手ステップ前","103204600":"[133] Dogu Celts _ Parigard -- 【133】土偶の石斧_パリィガード","103300000":"Mallet _ one hand usually 1 -- 槌_片手通常1","103300010":"Mallet _ one hand usually two -- 槌_片手通常2","103300020":"Mallet _ one hand usually three -- 槌_片手通常3","103300030":"Mallet _ One handed jump -- 槌_片手ジャンプ1","103300040":"Mallet _ one-handed fall loop -- 槌_片手落下ループ","103300050":"Mallet _ one-handed fall landing -- 槌_片手落下着地","103300100":"Mallet _ one-handed entertainment 1 -- 槌_片手タメ1","103300105":"Mallet _ one-handed entertainment 1_ Max -- 槌_片手タメ1_最大","103300110":"Mallet _ one-handed Entertainment 2 -- 槌_片手タメ2","103300115":"Mallet _ one-handed entertainment 2_ Max -- 槌_片手タメ2_最大","103300200":"Mallet _ Two hands usually one -- 槌_両手通常1","103300210":"Mallet _ Two Hands usually 2 -- 槌_両手通常2","103300220":"Mallet _ Two hands usually three -- 槌_両手通常3","103300230":"Mallet _ two-handed jump 1 -- 槌_両手ジャンプ1","103300240":"Mallet _ two-handed fall loop -- 槌_両手落下ループ","103300250":"Mallet _ two-handed fall landing -- 槌_両手落下着地","103300300":"Mallet _ two-handed entertainment 1 -- 槌_両手タメ1","103300305":"Mallet _ two-handed 1_ maximum -- 槌_両手タメ1_最大","103300310":"Mallet _ two-handed Entertainment 2 -- 槌_両手タメ2","103300315":"Mallet _ two-handed 2_ maximum -- 槌_両手タメ2_最大","103300400":"Mallet _ Left Hand -- 槌_左手","103300410":"Mallet _ one hand close -- 槌_片手近距離","103300420":"Mallet _ Both hands close -- 槌_両手近距離","103300430":"Hammered _ guards _ one hand -- 槌_ガード_片手","103300440":"Hammered _ guards _ both hands -- 槌_ガード_両手","103300450":"Mallet _ Paris -- 槌_パリィ","103300470":"Mallet _ Large Throw -- 槌_大型投げ","103300490":"Mallet _ Falling Throw -- 槌_落下投げ","103300500":"Mallet _ behind -- 槌_背後","103300501":"The mallet _ Behind the second hammer -- 槌_背後_二撃目","103300505":"Mallet _ Reinforced behind -- 槌_強化背後","103300506":"Mallet _ Reinforced behind _ Two -- 槌_強化背後_二段目","103300510":"Mallet _ After Paris -- 槌_パリィ後","103300511":"Mallet _ Paris after second firing -- 槌_パリィ後_二撃目","103300515":"Paris after hammering _ strengthens -- 槌_強化パリィ後","103300516":"Paris hammered _ strengthens after _ Two -- 槌_強化パリィ後_二段目","103300517":"Paris hammered _ Strengthens after _ Sandanme -- 槌_強化パリィ後_三段目","103300520":"Mallet _ one-handed Dash -- 槌_片手ダッシュ","103300530":"Mallet _ Both hands dash -- 槌_両手ダッシュ","103300540":"Mallet _ one hand step before -- 槌_片手ステップ前","103300580":"Mallet _ Both hands step forward -- 槌_両手ステップ前","103300600":"Mallet _ Parigard -- 槌_パリィガード","103300610":"Hammer _ Behind Transition -- 槌_背後遷移","103300615":"Hammer _ Behind Transition _ missed -- 槌_背後遷移_空振り","103301000":"[60] War picks _ one hand usually 1 -- 【60】ウォーピック_片手通常1","103301010":"[60] War picks _ one hand usually two -- 【60】ウォーピック_片手通常2","103301020":"[60] War picks _ one hand usually three -- 【60】ウォーピック_片手通常3","103301030":"[60] War pick _ one handed jump -- 【60】ウォーピック_片手ジャンプ1","103301040":"[60] War pick _ one-handed fall loop -- 【60】ウォーピック_片手落下ループ","103301050":"[60] War pick _ one-handed fall landing -- 【60】ウォーピック_片手落下着地","103301100":"[60] War pick _ one-handed entertainment 1 -- 【60】ウォーピック_片手タメ1","103301110":"[60] War pick _ one-handed Entertainment 2 -- 【60】ウォーピック_片手タメ2","103301200":"[60] War pick _ two hands usually one -- 【60】ウォーピック_両手通常1","103301210":"[60] War pick _ Two hands usually 2 -- 【60】ウォーピック_両手通常2","103301220":"[60] War pick _ two hands usually three -- 【60】ウォーピック_両手通常3","103301230":"[60] War Pick _ two-handed jump 1 -- 【60】ウォーピック_両手ジャンプ1","103301240":"[60] War Pick _ two-handed fall loop -- 【60】ウォーピック_両手落下ループ","103301250":"[60] War Pick _ two-handed fall landing -- 【60】ウォーピック_両手落下着地","103301300":"[60] War Pick _ two-handed entertainment 1 -- 【60】ウォーピック_両手タメ1","103301310":"[60] War Pick _ two-handed Entertainment 2 -- 【60】ウォーピック_両手タメ2","103301400":"[60] War picks _ left hand -- 【60】ウォーピック_左手","103301490":"[60] War pick _ falling Throw -- 【60】ウォーピック_落下投げ","103301500":"[60] War picks _ behind -- 【60】ウォーピック_背後","103301501":"[60] War pick _ behind the second hammer -- 【60】ウォーピック_背後_二撃目","103301505":"[60] War pick _ reinforced behind -- 【60】ウォーピック_強化背後","103301506":"[60] War Pick _ reinforced behind _ Two -- 【60】ウォーピック_強化背後_二段目","103301510":"[60] War pick _ after Paris -- 【60】ウォーピック_パリィ後","103301511":"[60] War Pick _ Paris after the second hammer -- 【60】ウォーピック_パリィ後_二撃目","103301515":"[60] War pick _ after strengthening Paris -- 【60】ウォーピック_強化パリィ後","103301516":"[60] War pick _ after strengthening Paris _ two -- 【60】ウォーピック_強化パリィ後_二段目","103301517":"[60] War pick _ after strengthening Paris _ Sandanme -- 【60】ウォーピック_強化パリィ後_三段目","103301520":"[60] War pick _ one-handed Dash -- 【60】ウォーピック_片手ダッシュ","103301530":"[60] War Pick _ both hands Dash -- 【60】ウォーピック_両手ダッシュ","103301540":"[60] War pick _ one handed step before -- 【60】ウォーピック_片手ステップ前","103301580":"[60] War Pick _ two-handed step before -- 【60】ウォーピック_両手ステップ前","103302000":"【 】 Club _ one hand usually 1 -- 【 】クラブ_片手通常1","103302010":"【 】 Club _ one hand usually two -- 【 】クラブ_片手通常2","103302020":"Club _ one hand usually three -- 【 】クラブ_片手通常3","103302100":"Club _ one-handed entertainment 1 -- 【 】クラブ_片手タメ1","103302200":"【 】 Club _ both hands usually one -- 【 】クラブ_両手通常1","103302210":"【 】 Club _ both hands usually two -- 【 】クラブ_両手通常2","103302220":"【 】 Club _ Two hands usually three -- 【 】クラブ_両手通常3","103302300":"【 】 Club _ two-handed entertainment 1 -- 【 】クラブ_両手タメ1","103302400":"Club _ Left Hand -- 【 】クラブ_左手","103303000":"[61] Pickaxe _ one hand usually 1 -- 【61】つるはし_片手通常1","103303010":"[61] Pickaxe _ one hand usually two -- 【61】つるはし_片手通常2","103303020":"[61] Pickaxe _ one hand usually three -- 【61】つるはし_片手通常3","103303030":"[61] Pickaxe _ one-handed jump 1 -- 【61】つるはし_片手ジャンプ1","103303040":"[61] Pickaxe _ one-handed fall loop -- 【61】つるはし_片手落下ループ","103303050":"[61] Pickaxe _ one-handed fall landing -- 【61】つるはし_片手落下着地","103303100":"[61] Pickaxe _ one-handed entertainment 1 -- 【61】つるはし_片手タメ1","103303110":"[61] Pickaxe _ one-handed Entertainment 2 -- 【61】つるはし_片手タメ2","103303200":"[61] Pickaxe _ both hands usually one -- 【61】つるはし_両手通常1","103303210":"[61] Pickaxe _ Two hands usually 2 -- 【61】つるはし_両手通常2","103303220":"[61] Pickaxe _ Two hands usually three -- 【61】つるはし_両手通常3","103303230":"[61] Pickaxe _ two-handed jump 1 -- 【61】つるはし_両手ジャンプ1","103303240":"[61] Pickaxe _ two-handed fall loop -- 【61】つるはし_両手落下ループ","103303250":"[61] Pickaxe _ two-handed fall landing -- 【61】つるはし_両手落下着地","103303300":"[61] Pickaxe _ two-handed entertainment 1 -- 【61】つるはし_両手タメ1","103303310":"[61] Pickaxe _ two-handed Entertainment 2 -- 【61】つるはし_両手タメ2","103303400":"[61] Pickaxe _ Left Hand -- 【61】つるはし_左手","103303410":"[61] Pickaxe _ one hand close -- 【61】つるはし_片手近距離","103303420":"[61] Pickaxe _ both hands close -- 【61】つるはし_両手近距離","103303430":"[61] Pickaxe _ guard _ one hand -- 【61】つるはし_ガード_片手","103303440":"[61] Pickaxe _ guard _ both hands -- 【61】つるはし_ガード_両手","103303450":"[61] Pickaxe _ Paris -- 【61】つるはし_パリィ","103303490":"[61] Pickaxe _ Falling throw -- 【61】つるはし_落下投げ","103303500":"[61] Pickaxe _ behind -- 【61】つるはし_背後","103303501":"[61] Pickaxe _ Behind the second hammer -- 【61】つるはし_背後_二撃目","103303505":"[61] Pickaxe _ Reinforced behind -- 【61】つるはし_強化背後","103303506":"[61] Pickaxe _ reinforced behind _ Two -- 【61】つるはし_強化背後_二段目","103303510":"[61] Pickaxe _ after Paris -- 【61】つるはし_パリィ後","103303511":"[61] Pickaxe _ after Paris _ Second hammer -- 【61】つるはし_パリィ後_二撃目","103303515":"[61] Pickaxe _ After strengthening Paris -- 【61】つるはし_強化パリィ後","103303516":"[61] Pickaxe _ After strengthening Paris _ two -- 【61】つるはし_強化パリィ後_二段目","103303517":"[61] Pickaxe _ After strengthening Paris _ Sandanme -- 【61】つるはし_強化パリィ後_三段目","103303520":"[61] Pickaxe _ one-handed Dash -- 【61】つるはし_片手ダッシュ","103303530":"[61] Pickaxe _ both hands dash -- 【61】つるはし_両手ダッシュ","103303540":"[61] Pickaxe _ one hand step before -- 【61】つるはし_片手ステップ前","103303580":"[61] Pickaxe _ two-handed step before -- 【61】つるはし_両手ステップ前","103303600":"[61] Pickaxe _ Parigard -- 【61】つるはし_パリィガード","103500000":"Otsuchi _ one hand usually 1 -- 大槌_片手通常1","103500010":"Otsuchi _ one hand usually two -- 大槌_片手通常2","103500020":"Otsuchi _ one hand usually three -- 大槌_片手通常3","103500030":"Otsuchi _ One handed jump -- 大槌_片手ジャンプ1","103500040":"Otsuchi _ one-handed fall loop -- 大槌_片手落下ループ","103500050":"Otsuchi _ one-handed fall landing -- 大槌_片手落下着地","103500100":"Otsuchi _ one-handed entertainment 1 -- 大槌_片手タメ1","103500101":"Otsuchi _ one-handed 1_ around (small) -- 大槌_片手タメ1_周辺(小)","103500105":"Otsuchi _ one-handed entertainment 1_ Max -- 大槌_片手タメ1_最大","103500110":"Otsuchi _ one-handed Entertainment 2 -- 大槌_片手タメ2","103500115":"Otsuchi _ one-handed entertainment 2_ Max -- 大槌_片手タメ2_最大","103500200":"Otsuchi _ Two Hands usually -- 大槌_両手通常1","103500210":"Otsuchi _ Two Hands usually -- 大槌_両手通常2","103500220":"A sledgehammer _ usually three hands -- 大槌_両手通常3","103500230":"Otsuchi _ two-handed jump -- 大槌_両手ジャンプ1","103500240":"Otsuchi _ two-handed fall loop -- 大槌_両手落下ループ","103500250":"Otsuchi _ two-handed fall landing -- 大槌_両手落下着地","103500300":"Otsuchi _ Both Hands 1_ Center -- 大槌_両手タメ1_中心","103500301":"Otsuchi _ two-handed 1_ around -- 大槌_両手タメ1_周辺","103500305":"Otsuchi _ two-handed 1_ Center _ maximum -- 大槌_両手タメ1_中心_最大","103500310":"Otsuchi _ two-handed Entertainment 2 -- 大槌_両手タメ2","103500315":"Otsuchi _ two-handed 2_ maximum -- 大槌_両手タメ2_最大","103500400":"Otsuchi _ Left Hand -- 大槌_左手","103500410":"Otsuchi _ one hand close -- 大槌_片手近距離","103500420":"Otsuchi _ Both hands close -- 大槌_両手近距離","103500430":"Otsuchi _ guards _ one hand -- 大槌_ガード_片手","103500440":"Otsuchi _ guards _ both hands -- 大槌_ガード_両手","103500450":"Otsuchi _ Paris -- 大槌_パリィ","103500470":"Otsuchi _ Large Throw -- 大槌_大型投げ","103500490":"Otsuchi _ Falling Throw -- 大槌_落下投げ","103500500":"Otsuchi _ Behind -- 大槌_背後","103500501":"Two _ Behind the battering ram -- 大槌_背後_二段目","103500505":"Otsuchi _ Reinforced behind -- 大槌_強化背後","103500506":"Two _ Strengthens behind _ -- 大槌_強化背後_二段目","103500510":"Otsuchi _ After Paris -- 大槌_パリィ後","103500511":"Otsuchi _ Paris _ Two -- 大槌_パリィ後_二段目","103500515":"Otsuchi _ After strengthening Paris -- 大槌_強化パリィ後","103500516":"Paris _ Two after battering _ -- 大槌_強化パリィ後_二段目","103500517":"Paris _ Sandanme after battering _ -- 大槌_強化パリィ後_三段目","103500520":"Otsuchi _ one-handed Dash -- 大槌_片手ダッシュ","103500530":"The sledgehammer _ both hands dash -- 大槌_両手ダッシュ","103500540":"Otsuchi _ one hand step before -- 大槌_片手ステップ前","103500580":"The sledgehammer _ Two hands step ahead -- 大槌_両手ステップ前","103500600":"Otsuchi _ Parigard -- 大槌_パリィガード","103500610":"Otsuchi _ Behind the transition -- 大槌_背後遷移","103500800":"Otsuchi _ Magic Sword -- 大槌_魔法剣","103502000":"[124] Bango soldiers _ one hand usually 1 -- 【124】蛮兵_片手通常1","103502010":"[124] Bango soldiers _ one hand usually two -- 【124】蛮兵_片手通常2","103502020":"[124] Bango soldiers _ one hand usually three -- 【124】蛮兵_片手通常3","103502030":"[124] Bango soldier _ one-handed jump 1 -- 【124】蛮兵_片手ジャンプ1","103502040":"[124] Bango soldiers _ one-handed fall loop -- 【124】蛮兵_片手落下ループ","103502050":"[124] Bango soldiers _ one-handed fall landing -- 【124】蛮兵_片手落下着地","103502100":"[124] Bango soldier _ one-handed entertainment 1 -- 【124】蛮兵_片手タメ1","103502101":"[124] Bango soldiers _ one-handed 1_ around (small) -- 【124】蛮兵_片手タメ1_周辺(小)","103502110":"[124] Bango soldier _ one-handed Entertainment 2 -- 【124】蛮兵_片手タメ2","103502200":"[124] Bango soldiers _ Two hands usually one -- 【124】蛮兵_両手通常1","103502210":"[124] Bango soldiers _ Two hands usually 2 -- 【124】蛮兵_両手通常2","103502220":"[124] Bango soldiers _ Two hands usually three -- 【124】蛮兵_両手通常3","103502230":"[124] Bango soldiers _ two-handed jump 1 -- 【124】蛮兵_両手ジャンプ1","103502240":"[124] Bango soldiers _ two-handed fall loop -- 【124】蛮兵_両手落下ループ","103502250":"[124] Bango soldiers _ two-handed fall landing -- 【124】蛮兵_両手落下着地","103502300":"[124] Bango soldiers _ Both hands 1_ Center -- 【124】蛮兵_両手タメ1_中心","103502301":"[124] Bango soldiers _ two-handed 1_ around -- 【124】蛮兵_両手タメ1_周辺","103502310":"[124] Bango soldiers _ two-handed Entertainment 2 -- 【124】蛮兵_両手タメ2","103502400":"[124] Bango soldiers _ left hand -- 【124】蛮兵_左手","103502410":"[124] Bango soldiers _ one hand close -- 【124】蛮兵_片手近距離","103502420":"[124] Bango soldiers _ both hands close -- 【124】蛮兵_両手近距離","103502430":"[124] Bango Soldiers _ guards _ one hand -- 【124】蛮兵_ガード_片手","103502440":"[124] Bango Soldiers _ guards _ both hands -- 【124】蛮兵_ガード_両手","103502450":"[124] Bango Soldiers _ Paris -- 【124】蛮兵_パリィ","103502490":"[124] Bango soldiers _ falling throws -- 【124】蛮兵_落下投げ","103502500":"[124] Bango soldiers _ behind -- 【124】蛮兵_背後","103502501":"[124] Bango Soldiers _ behind _ two-firing eyes -- 【124】蛮兵_背後_二撃目","103502505":"[124] Bango soldiers _ strengthened behind -- 【124】蛮兵_強化背後","103502506":"[124] Bango Soldiers _ strengthened behind _ Two -- 【124】蛮兵_強化背後_二段目","103502510":"[124] Bango soldiers _ after Paris -- 【124】蛮兵_パリィ後","103502511":"[124] Bango Soldiers _ after Paris _ Two firing eyes -- 【124】蛮兵_パリィ後_二撃目","103502515":"[124] Bango soldiers _ after strengthening Paris. -- 【124】蛮兵_強化パリィ後","103502516":"[124] Bango soldiers _ Paris after strengthening _ two -- 【124】蛮兵_強化パリィ後_二段目","103502517":"[124] Bango soldiers _ Paris after strengthening _ Sandanme -- 【124】蛮兵_強化パリィ後_三段目","103502520":"[124] Bango soldiers _ one-handed Dash -- 【124】蛮兵_片手ダッシュ","103502530":"[124] Bango soldiers _ both hands dash -- 【124】蛮兵_両手ダッシュ","103502540":"[124] Bango Soldier _ one hand step before -- 【124】蛮兵_片手ステップ前","103502580":"[124] Bango soldiers _ both hands step ahead -- 【124】蛮兵_両手ステップ前","103502600":"[124] Bango Soldiers _ Parigard -- 【124】蛮兵_パリィガード","103503100":"[70] Sumo _ one-handed entertainment 1 -- 【70】スモウ_片手タメ1","103503300":"[70] Sumo _ Both hands 1_ Center -- 【70】スモウ_両手タメ1_中心","103600000":"Spear _ one hand usually 1 -- 槍_片手通常1","103600001":"Spear _ one hand usually 1 (stick) -- 槍_片手通常1(棒)","103600010":"Spear _ one hand usually two -- 槍_片手通常2","103600011":"Spear _ one hand usually 2 (stick) -- 槍_片手通常2(棒)","103600020":"Spear _ one hand usually three -- 槍_片手通常3","103600021":"Spear _ one hand usually three (stick) -- 槍_片手通常3(棒)","103600030":"Spear _ One handed jump -- 槍_片手ジャンプ1","103600031":"Spear _ one-handed jump 1 (stick) -- 槍_片手ジャンプ1(棒)","103600040":"Spear _ One Handed fall loop -- 槍_片手落下ループ","103600041":"Spear _ One Handed Fall loop (stick) -- 槍_片手落下ループ(棒)","103600050":"Spear _ one-handed fall landing -- 槍_片手落下着地","103600051":"Spear _ one-handed fall landing (stick) -- 槍_片手落下着地(棒)","103600100":"Spear _ one-handed entertainment 1 -- 槍_片手タメ1","103600101":"Spear _ one-handed entertainment 1 (stick) -- 槍_片手タメ1(棒)","103600105":"Spear _ one-handed Entertainment 1 MAX -- 槍_片手タメ1最大","103600106":"Spear _ one-handed entertainment 1 max (stick) -- 槍_片手タメ1最大(棒)","103600110":"Spear _ one-handed Entertainment 2 -- 槍_片手タメ2","103600111":"Spear _ one hand Entertainment 2 (stick) -- 槍_片手タメ2(棒)","103600115":"Spear _ one-handed Entertainment 2 Max -- 槍_片手タメ2最大","103600116":"Spear _ one hand Entertainment 2 max (stick) -- 槍_片手タメ2最大(棒)","103600200":"Spear _ Two hands usually one -- 槍_両手通常1","103600201":"Spear _ Two hands usually one (stick) -- 槍_両手通常1(棒)","103600210":"Spear _ Two Hands usually 2 -- 槍_両手通常2","103600211":"Spear _ Two Hands usually 2 (stick) -- 槍_両手通常2(棒)","103600220":"Spear _ Two hands usually three -- 槍_両手通常3","103600221":"Spear _ Two Hands usually 3 (stick) -- 槍_両手通常3(棒)","103600230":"Spear _ two-handed jump 1 -- 槍_両手ジャンプ1","103600231":"Spear _ two-handed jump 1 (stick) -- 槍_両手ジャンプ1(棒)","103600240":"Spear _ two-handed fall loop -- 槍_両手落下ループ","103600241":"Spear _ two-handed Fall loop (stick) -- 槍_両手落下ループ(棒)","103600250":"Spear _ two-handed fall landing -- 槍_両手落下着地","103600251":"Spear _ two-handed fall landing (stick) -- 槍_両手落下着地(棒)","103600300":"Spear _ two-handed entertainment 1 -- 槍_両手タメ1","103600301":"Spear _ two-handed Entertainment 1 (stick) -- 槍_両手タメ1(棒)","103600305":"Spear _ two-handed entertainment 1 MAX -- 槍_両手タメ1最大","103600306":"Spear _ two-handed one maximum (stick) -- 槍_両手タメ1最大(棒)","103600310":"Spear _ two-handed Entertainment 2 -- 槍_両手タメ2","103600311":"Spear _ two-handed Entertainment 2 (stick) -- 槍_両手タメ2(棒)","103600315":"Spear _ two-handed entertainment max -- 槍_両手タメ2最大","103600316":"Spear _ two-handed maximum (stick) -- 槍_両手タメ2最大(棒)","103600400":"Spear _ Left Hand -- 槍_左手","103600401":"Spear _ Left Hand (stick) -- 槍_左手(棒)","103600410":"Spear _ one hand short distance -- 槍_片手近距離","103600411":"Spear _ one hand short distance (stick) -- 槍_片手近距離(棒)","103600420":"Spear _ Both hands close -- 槍_両手近距離","103600421":"Spear _ Both hands close range (stick) -- 槍_両手近距離(棒)","103600430":"Spear _ guard _ one hand -- 槍_ガード_片手","103600440":"Spear _ guard _ both hands -- 槍_ガード_両手","103600450":"Spear _ Paris -- 槍_パリィ","103600460":"Spear _ Guard during attack -- 槍_ガード中攻撃","103600461":"Spear _ Guard during attack (stick) -- 槍_ガード中攻撃(棒)","103600470":"Spear _ Large Throw -- 槍_大型投げ","103600490":"Spear _ Falling Throw -- 槍_落下投げ","103600500":"Behind the Spear -- 槍_背後","103600505":"Spear _ Strengthening behind -- 槍_強化背後","103600510":"Spear _ after Paris -- 槍_パリィ後","103600515":"Spear _ After strengthening Paris -- 槍_強化パリィ後","103600516":"Spear _ After strengthening Paris (bar) -- 槍_強化パリィ後(棒)","103600520":"Spear _ one-handed Dash -- 槍_片手ダッシュ","103600521":"Spear _ one-handed dash (stick) -- 槍_片手ダッシュ(棒)","103600530":"Spear _ Both hands dash -- 槍_両手ダッシュ","103600531":"Spear _ both Hands dash (stick) -- 槍_両手ダッシュ(棒)","103600540":"Spear _ one hand step before -- 槍_片手ステップ前","103600541":"Spear _ one hand step before (stick) -- 槍_片手ステップ前(棒)","103600600":"Spear _ Parigard -- 槍_パリィガード","103600601":"Spear _ Parigard (stick) -- 槍_パリィガード(棒)","103600610":"Spear _ Behind the transition -- 槍_背後遷移","103600611":"Spear _ Behind the Transition (stick) -- 槍_背後遷移(棒)","103600615":"The spear _ Behind the transition _ missed -- 槍_背後遷移_空振り","103600616":"Spear _ Behind the transition _ missed (stick) -- 槍_背後遷移_空振り(棒)","103600721":"Spear _ Weak (stick) -- 槍_構え弱(棒)","103600723":"Spear _ Strong (stick) -- 槍_構え強(棒)","103600724":"Spear _ Holding Strong hammer (stick) -- 槍_構え強連撃(棒)","103600791":"Spear _ Bunk Attack (bar) -- 槍_二段攻撃(棒)","103600800":"Spear assault: A continuous hit -- 槍_突撃:連続ヒット","103600801":"Spear _ Assault: Continuous hit (stick) -- 槍_突撃:連続ヒット(棒)","103600810":"Spear assault: No continuous hit motion -- 槍_突撃:連続ヒットモーションなし","103600811":"Spear assault: Continuous hit final stage (bar) -- 槍_突撃:連続ヒット最終段(棒)","103600820":"Spear assault: Continuous hit last thrust -- 槍_突撃:連続ヒットラスト突き","103600821":"Spear assault: Continuous hit last thrust (stick) -- 槍_突撃:連続ヒットラスト突き(棒)","103602000":"[65] Rectangular Six _ one-handed usually 1 -- 【65】六目_片手通常1","103602010":"[65] Rectangular Six _ one hand usually two -- 【65】六目_片手通常2","103602020":"[65] Rectangular Six _ one hand usually three -- 【65】六目_片手通常3","103602030":"[65] Rectangular Six _ one-handed jump 1 -- 【65】六目_片手ジャンプ1","103602040":"[65] Rectangular Six _ one-handed fall loop -- 【65】六目_片手落下ループ","103602050":"[65] Rectangular Six _ one-handed fall landing -- 【65】六目_片手落下着地","103602100":"[65] Rectangular Six _ one-handed entertainment 1 -- 【65】六目_片手タメ1","103602101":"[65] Rectangular Six _ one-handed 1_ second hammer -- 【65】六目_片手タメ1_二撃目","103602110":"[65] Rectangular Six _ one-handed Entertainment 2 -- 【65】六目_片手タメ2","103602200":"[65] Rectangular Six _ Two hands usually one -- 【65】六目_両手通常1","103602210":"[65] Rectangular Six _ Two hands usually 2 -- 【65】六目_両手通常2","103602220":"[65] Rectangular Six _ Two hands usually three -- 【65】六目_両手通常3","103602230":"[65] Rectangular Six _ two-handed jump 1 -- 【65】六目_両手ジャンプ1","103602240":"[65] Rectangular Six _ two-handed fall loop -- 【65】六目_両手落下ループ","103602250":"[65] Rectangular Six _ two-handed fall landing -- 【65】六目_両手落下着地","103602300":"[65] Rectangular Six _ two-handed entertainment 1 -- 【65】六目_両手タメ1","103602310":"[65] Rectangular Six _ two-handed Entertainment 2 -- 【65】六目_両手タメ2","103602400":"[65] Rectangular Six _ left hand -- 【65】六目_左手","103602410":"[65] Rectangular Six _ one hand close -- 【65】六目_片手近距離","103602420":"[65] Rectangular Six _ both hands close -- 【65】六目_両手近距離","103602430":"[65] Rectangular Six _ guards _ one hand -- 【65】六目_ガード_片手","103602440":"[65] Rectangular Six _ guards _ both hands -- 【65】六目_ガード_両手","103602450":"[65] Rectangular Six _ Paris -- 【65】六目_パリィ","103602460":"[65] Rectangular Six _ guard during attack -- 【65】六目_ガード中攻撃","103602490":"[65] Rectangular six _ Falling throw -- 【65】六目_落下投げ","103602500":"[65] Rectangular six _ behind -- 【65】六目_背後","103602505":"[65] Rectangular six _ strengthening behind -- 【65】六目_強化背後","103602510":"[65] Rectangular Six _ after Paris -- 【65】六目_パリィ後","103602515":"[65] Rectangular Six _ Paris after strengthening -- 【65】六目_強化パリィ後","103602516":"[65] Rectangular Six _ Paris after strengthening _ two -- 【65】六目_強化パリィ後_二段目","103602520":"[65] Rectangular Six _ one-handed Dash -- 【65】六目_片手ダッシュ","103602530":"[65] Rectangular Six _ both hands dash -- 【65】六目_両手ダッシュ","103602540":"[65] Rectangular Six _ one-handed step before -- 【65】六目_片手ステップ前","103602580":"[65] Rectangular Six _ two-handed steps ago -- 【65】六目_両手ステップ前","103602600":"[65] Rectangular Six _ Parigard -- 【65】六目_パリィガード","103602800":"[65] Rectangular Six _ Magic Sword -- 【65】六目_魔法剣","103603300":"[68] Spear of the Dragon hunting _ two-handed entertainment 1 -- 【68】竜狩りの槍_両手タメ1","103603310":"[68] Dragon Hunting Spear _ two-handed Entertainment 2 -- 【68】竜狩りの槍_両手タメ2","103603800":"[68] Dragon Hunting Spear _ Magic Sword -- 【68】竜狩りの槍_魔法剣","103604100":"[63] Partisan _ one-handed entertainment 1 -- 【63】パルチザン_片手タメ1","103604110":"[63] Partisan _ one-handed Entertainment 2 -- 【63】パルチザン_片手タメ2","103604300":"[63] Partisan _ two-handed entertainment 1 -- 【63】パルチザン_両手タメ1","103604310":"[63] Partisan _ two-handed Entertainment 2 -- 【63】パルチザン_両手タメ2","103605000":"[64] Daemon Spear _ one hand usually 1 -- 【64】デーモンの槍_片手通常1","103605010":"[64] Daemon Spear _ one hand usually two -- 【64】デーモンの槍_片手通常2","103605020":"[64] Daemon Spear _ one hand usually three -- 【64】デーモンの槍_片手通常3","103605030":"[64] Demon Spear _ one handed jump -- 【64】デーモンの槍_片手ジャンプ1","103605040":"[64] Demon Spear _ one-handed fall loop -- 【64】デーモンの槍_片手落下ループ","103605050":"[64] Demon Spear _ one-handed fall landing -- 【64】デーモンの槍_片手落下着地","103605100":"[64] Demon Spear _ one-handed entertainment 1 -- 【64】デーモンの槍_片手タメ1","103605110":"[64] Demon Spear _ one-handed Entertainment 2 -- 【64】デーモンの槍_片手タメ2","103605200":"[64] Demon Spear _ Two hands usually one -- 【64】デーモンの槍_両手通常1","103605210":"[64] Demon Spear _ Two hands usually 2 -- 【64】デーモンの槍_両手通常2","103605220":"[64] Demon Spear _ Two hands usually three -- 【64】デーモンの槍_両手通常3","103605230":"[64] Demon Spear _ two-handed jump 1 -- 【64】デーモンの槍_両手ジャンプ1","103605240":"[64] Demon Spear _ two-handed fall loop -- 【64】デーモンの槍_両手落下ループ","103605250":"[64] Demon Spear _ two-handed fall landing -- 【64】デーモンの槍_両手落下着地","103605300":"[64] Demon Spear _ two-handed entertainment 1 -- 【64】デーモンの槍_両手タメ1","103605310":"[64] Demon Spear _ two-handed Entertainment 2 -- 【64】デーモンの槍_両手タメ2","103605400":"[64] Demon Spear _ left hand -- 【64】デーモンの槍_左手","103605410":"[64] Demon Spear _ one hand close -- 【64】デーモンの槍_片手近距離","103605420":"[64] Demon Spear _ both hands close -- 【64】デーモンの槍_両手近距離","103605430":"[64] Demon Spear _ guard _ one hand -- 【64】デーモンの槍_ガード_片手","103605440":"[64] Demon Spear _ guard _ both hands -- 【64】デーモンの槍_ガード_両手","103605450":"[64] Demon Spear _ Paris -- 【64】デーモンの槍_パリィ","103605460":"[64] Demon Spear _ guard during attack -- 【64】デーモンの槍_ガード中攻撃","103605490":"[64] Demon Spear _ Falling Throw -- 【64】デーモンの槍_落下投げ","103605500":"[64] Demon Spear _ behind -- 【64】デーモンの槍_背後","103605505":"[64] Demon Spear _ reinforced behind -- 【64】デーモンの槍_強化背後","103605510":"[64] Demon Spear _ after Paris -- 【64】デーモンの槍_パリィ後","103605515":"[64] Demon Spear _ after strengthening Paris -- 【64】デーモンの槍_強化パリィ後","103605516":"[64] Demon Spear _ after strengthening Paris _ two -- 【64】デーモンの槍_強化パリィ後_二段目","103605520":"[64] Demon Spear _ one-handed Dash -- 【64】デーモンの槍_片手ダッシュ","103605530":"[64] Demon Spear _ both hands dash -- 【64】デーモンの槍_両手ダッシュ","103605540":"[64] Demon Spear _ one hand step before -- 【64】デーモンの槍_片手ステップ前","103605580":"[64] Demon Spear _ hands before step -- 【64】デーモンの槍_両手ステップ前","103605600":"[64] Demon Spear _ Parigard -- 【64】デーモンの槍_パリィガード","103606000":"[66] Silver Knight Spear _ one hand usually 1 -- 【66】銀騎士の槍_片手通常1","103606010":"[66] Silver Knight Spear _ one hand usually two -- 【66】銀騎士の槍_片手通常2","103606020":"[66] Silver Knight Spear _ one hand usually three -- 【66】銀騎士の槍_片手通常3","103606030":"[66] Silver Knight Spear _ one-handed jump 1 -- 【66】銀騎士の槍_片手ジャンプ1","103606040":"[66] Silver Knight Spear _ one-handed fall loop -- 【66】銀騎士の槍_片手落下ループ","103606050":"[66] Silver Knight's spear _ one-handed fall landing -- 【66】銀騎士の槍_片手落下着地","103606100":"[66] Silver Knight Spear _ one-handed entertainment 1 -- 【66】銀騎士の槍_片手タメ1","103606110":"[66] Silver Knight Spear _ one-handed Entertainment 2 -- 【66】銀騎士の槍_片手タメ2","103606200":"[66] Silver Knight Spear _ two hands usually one -- 【66】銀騎士の槍_両手通常1","103606210":"[66] Silver Knight Spear _ Two hands usually 2 -- 【66】銀騎士の槍_両手通常2","103606220":"[66] Silver Knight Spear _ two hands usually three -- 【66】銀騎士の槍_両手通常3","103606230":"[66] Silver Knight Spear _ two-handed jump 1 -- 【66】銀騎士の槍_両手ジャンプ1","103606240":"[66] Silver Knight Spear _ two-handed fall loop -- 【66】銀騎士の槍_両手落下ループ","103606250":"[66] Silver Knight Spear _ two-handed fall landing -- 【66】銀騎士の槍_両手落下着地","103606300":"[66] Silver Knight Spear _ two-handed entertainment 1 -- 【66】銀騎士の槍_両手タメ1","103606310":"[66] Silver Knight Spear _ two-handed Entertainment 2 -- 【66】銀騎士の槍_両手タメ2","103606400":"[66] Silver Knight Spear _ left hand -- 【66】銀騎士の槍_左手","103606410":"[66] Silver Knight Spear _ one hand close -- 【66】銀騎士の槍_片手近距離","103606420":"[66] Silver Knight Spear _ both hands close -- 【66】銀騎士の槍_両手近距離","103606430":"[66] Silver Knight Spear _ guard _ one hand -- 【66】銀騎士の槍_ガード_片手","103606440":"[66] Silver Knight Spear _ guard _ both hands -- 【66】銀騎士の槍_ガード_両手","103606450":"[66] Silver Knight Spear _ Paris -- 【66】銀騎士の槍_パリィ","103606460":"[66] Silver Knight Spear _ guard during attack -- 【66】銀騎士の槍_ガード中攻撃","103606490":"[66] Silver Knight Spear _ Falling Throw -- 【66】銀騎士の槍_落下投げ","103606500":"[66] Silver Knight Spear _ behind -- 【66】銀騎士の槍_背後","103606505":"[66] Silver Knight Spear _ reinforced behind -- 【66】銀騎士の槍_強化背後","103606510":"[66] Silver Knight's spear _ after Paris -- 【66】銀騎士の槍_パリィ後","103606515":"[66] Silver Knight Spear _ after strengthening Paris -- 【66】銀騎士の槍_強化パリィ後","103606516":"[66] Silver Knight Spear _ after strengthening Paris _ two -- 【66】銀騎士の槍_強化パリィ後_二段目","103606520":"[66] Silver Knight Spear _ one-handed Dash -- 【66】銀騎士の槍_片手ダッシュ","103606530":"[66] Silver Knight Spear _ both hands dash -- 【66】銀騎士の槍_両手ダッシュ","103606540":"[66] Silver Knight Spear _ one hand step before -- 【66】銀騎士の槍_片手ステップ前","103606580":"[66] Silver Knight Spear _ hands before step -- 【66】銀騎士の槍_両手ステップ前","103606600":"[66] Silver Knight Spear _ Parigard -- 【66】銀騎士の槍_パリィガード","103608000":"[67] Pike _ one hand usually 1 -- 【67】パイク_片手通常1","103608010":"[67] Pike _ one hand usually two -- 【67】パイク_片手通常2","103608020":"[67] Pike _ one hand usually three -- 【67】パイク_片手通常3","103608100":"[67] Pike _ one-handed entertainment 1 -- 【67】パイク_片手タメ1","103608110":"[67] Pike _ one-handed Entertainment 2 -- 【67】パイク_片手タメ2","103608200":"[67] Pike _ hands usually one -- 【67】パイク_両手通常1","103608210":"[67] Pike _ hands usually two -- 【67】パイク_両手通常2","103608220":"[67] Pike _ hands usually three -- 【67】パイク_両手通常3","103608300":"[67] Pike _ two-handed entertainment 1 -- 【67】パイク_両手タメ1","103608310":"[67] Pike _ two-handed Entertainment 2 -- 【67】パイク_両手タメ2","103608400":"[67] Pike _ left Hand -- 【67】パイク_左手","103608520":"[67] Pike _ one-handed Dash -- 【67】パイク_片手ダッシュ","103608521":"[67] Pike _ one-handed dash (stop) -- 【67】パイク_片手ダッシュ(止め)","103608530":"[67] Pike _ both hands dash -- 【67】パイク_両手ダッシュ","103608531":"[67] Pike _ both hands dash (stop) -- 【67】パイク_両手ダッシュ(止め)","103800000":"Axe Spear _ one hand usually 1 -- 斧槍_片手通常1","103800010":"Axe Spear _ one hand usually two -- 斧槍_片手通常2","103800020":"Axe Spear _ one hand usually three -- 斧槍_片手通常3","103800030":"Axe Spear _ One handed jump -- 斧槍_片手ジャンプ1","103800040":"Axe Spear _ One handed fall loop -- 斧槍_片手落下ループ","103800050":"Axe Spear _ one-handed fall landing -- 斧槍_片手落下着地","103800100":"Axe Spear _ one-handed entertainment 1 -- 斧槍_片手タメ1","103800105":"Axe Spear _ one-handed 1_ maximum -- 斧槍_片手タメ1_最大","103800110":"Axe Spear _ one-handed Entertainment 2 -- 斧槍_片手タメ2","103800115":"Axe Spear _ one-handed 2_ maximum -- 斧槍_片手タメ2_最大","103800200":"Axe Spear _ Two hands usually one -- 斧槍_両手通常1","103800210":"Axe Spear _ Two hands usually -- 斧槍_両手通常2","103800220":"Axe Spear _ Two hands usually three -- 斧槍_両手通常3","103800230":"Axe Spear _ two-handed jump 1 -- 斧槍_両手ジャンプ1","103800240":"Axe Spear _ two-handed fall loop -- 斧槍_両手落下ループ","103800250":"Axe Spear _ two-handed fall landing -- 斧槍_両手落下着地","103800300":"Axe Spear _ two-handed entertainment 1 -- 斧槍_両手タメ1","103800301":"Axe Spear _ two-handed 1_ -- 斧槍_両手タメ1_二撃目","103800305":"Axe Spear _ two-handed 1_ Max -- 斧槍_両手タメ1_最大","103800306":"Axe Spear _ two-handed 1_, Max -- 斧槍_両手タメ1_二撃目_最大","103800310":"Axe Spear _ two-handed Entertainment 2 -- 斧槍_両手タメ2","103800315":"Axe Spear _ two-handed 2_ Max -- 斧槍_両手タメ2_最大","103800400":"Axe Spear _ Left hand -- 斧槍_左手","103800410":"Axe Spear _ one hand close -- 斧槍_片手近距離","103800420":"Axe Spear _ both hands close -- 斧槍_両手近距離","103800430":"Axe Spear _ guard _ one hand -- 斧槍_ガード_片手","103800440":"Axe Spear _ guard _ both hands -- 斧槍_ガード_両手","103800450":"Axe Spear _ Paris -- 斧槍_パリィ","103800470":"Axe Spear _ Large Throw -- 斧槍_大型投げ","103800490":"Axe Spear _ Falling Throw -- 斧槍_落下投げ","103800500":"Axe Spear _ behind -- 斧槍_背後","103800505":"Axe Spear _ Reinforced behind -- 斧槍_強化背後","103800510":"Axe Spear _ after Paris -- 斧槍_パリィ後","103800515":"Axe Spear _ after strengthening Paris -- 斧槍_強化パリィ後","103800516":"Ax Spear _ After strengthening Paris _ two -- 斧槍_強化パリィ後_二段目","103800520":"Axe Spear _ one handed Dash -- 斧槍_片手ダッシュ","103800530":"Axe Spear _ both hands dash -- 斧槍_両手ダッシュ","103800540":"Axe Spear _ one hand step before -- 斧槍_片手ステップ前","103800580":"Axe Spear _ Hands before step -- 斧槍_両手ステップ前","103800600":"Axe Spear _ Parigard -- 斧槍_パリィガード","103800610":"Axe Spear _ Behind the transition -- 斧槍_背後遷移","103800720":"Axe Spear _ poised weak attack -- 斧槍_構え弱攻撃","103802000":"[109] Lucerne _ one hand usually 1 -- 【109】ルッツェルン(刺突)_片手通常1","103802010":"[109] Lucerne (thrust) _ one hand usually two -- 【109】ルッツェルン(刺突)_片手通常2","103802020":"[109] Lucerne (thrust) _ one hand usually three -- 【109】ルッツェルン(刺突)_片手通常3","103802030":"[109] Lucerne (one-handed jump) -- 【109】ルッツェルン(刺突)_片手ジャンプ1","103802040":"[109] Lucerne (Thrust) _ one-handed fall loop -- 【109】ルッツェルン(刺突)_片手落下ループ","103802050":"[109] Lucerne (Thrust) _ one-handed fall landing -- 【109】ルッツェルン(刺突)_片手落下着地","103802100":"[109] Lucerne _ one-handed entertainment 1 -- 【109】ルッツェルン(刺突)_片手タメ1","103802110":"[109] Lucerne (Thrust) _ one-handed Entertainment 2 -- 【109】ルッツェルン(刺突)_片手タメ2","103802200":"[109] Lucerne (Thrust) _ Two hands usually one -- 【109】ルッツェルン(刺突)_両手通常1","103802210":"[109] Lucerne (Thrust) _ Two hands usually -- 【109】ルッツェルン(刺突)_両手通常2","103802220":"[109] Lucerne (stabbing) _ Two hands usually three -- 【109】ルッツェルン(刺突)_両手通常3","103802230":"[109] Lucerne (Thrust) _ two-handed jump 1 -- 【109】ルッツェルン(刺突)_両手ジャンプ1","103802240":"[109] Lucerne (Thrust) _ Both hands Fall loop -- 【109】ルッツェルン(刺突)_両手落下ループ","103802250":"[109] Lucerne (Thrust) _ two-handed fall landing -- 【109】ルッツェルン(刺突)_両手落下着地","103802300":"[109] Lucerne (stabbing) _ two-handed entertainment 1 -- 【109】ルッツェルン(刺突)_両手タメ1","103802310":"[109] Lucerne (Stab) _ two-handed Entertainment 2 -- 【109】ルッツェルン(刺突)_両手タメ2","103802400":"[109] Lucerne _ Left Hand -- 【109】ルッツェルン(刺突)_左手","103802490":"[109] Lucerne (thrust) _ Falling throw -- 【109】ルッツェルン(刺突)_落下投げ","103802500":"[109] Lucerne (thrust) _ Behind -- 【109】ルッツェルン(刺突)_背後","103802505":"[109] Lucerne (thrust) _ Behind the reinforcement -- 【109】ルッツェルン(刺突)_強化背後","103802510":"[109] Lucerne (stabbing) _ after Paris -- 【109】ルッツェルン(刺突)_パリィ後","103802515":"[109] Lucerne (stabbing) _ After strengthening Paris -- 【109】ルッツェルン(刺突)_強化パリィ後","103802516":"[109] Lucerne (stabbing) _ After strengthening Paris _ two -- 【109】ルッツェルン(刺突)_強化パリィ後_二段目","103802520":"[109] Lucerne (Thrust) _ one-handed Dash -- 【109】ルッツェルン(刺突)_片手ダッシュ","103802530":"[109] Lucerne (Thrust) _ Both hands Dash -- 【109】ルッツェルン(刺突)_両手ダッシュ","103802540":"[109] Lucerne (needle thrust) _ one hand step before -- 【109】ルッツェルン(刺突)_片手ステップ前","103802580":"[109] Lucerne (Thrust) _ before both hands step -- 【109】ルッツェルン(刺突)_両手ステップ前","103803000":"[110] Giant's hull bird _ one hand usually 1 -- 【110】巨人のハルバード_片手通常1","103803010":"[110] Giant's hull bird _ one hand usually two -- 【110】巨人のハルバード_片手通常2","103803020":"[110] Giant's hull bird _ one hand usually three -- 【110】巨人のハルバード_片手通常3","103803030":"[110] Giant's hull bird _ one-handed jump 1 -- 【110】巨人のハルバード_片手ジャンプ1","103803040":"[110] Giant's hull bird _ one-handed fall loop -- 【110】巨人のハルバード_片手落下ループ","103803050":"[110] Giant's hull bird _ one-handed fall landing -- 【110】巨人のハルバード_片手落下着地","103803100":"[110] Giant's hull bird _ one-handed entertainment 1 -- 【110】巨人のハルバード_片手タメ1","103803110":"[110] Giant's hull bird _ one-handed Entertainment 2 -- 【110】巨人のハルバード_片手タメ2","103803200":"[110] Giant's hull bird _ hands usually one -- 【110】巨人のハルバード_両手通常1","103803210":"[110] Giant's hull bird _ two hands usually 2 -- 【110】巨人のハルバード_両手通常2","103803220":"[110] Giant's hull bird _ hands usually three -- 【110】巨人のハルバード_両手通常3","103803230":"[110] Giant's hull bird _ two-handed jump 1 -- 【110】巨人のハルバード_両手ジャンプ1","103803240":"[110] Giant's hull bird _ two-handed fall loop -- 【110】巨人のハルバード_両手落下ループ","103803250":"[110] Giant's hull bird _ two-handed fall landing -- 【110】巨人のハルバード_両手落下着地","103803300":"[110] Giant's hull bird _ two-handed entertainment 1 -- 【110】巨人のハルバード_両手タメ1","103803301":"[110] Giant's hull bird __ Two-handed 1_ -- 【110】巨人のハルバード__両手タメ1_二撃目","103803310":"[110] Giant's hull bird _ two-handed Entertainment 2 -- 【110】巨人のハルバード_両手タメ2","103803400":"[110] Giant's hull bird _ left hand -- 【110】巨人のハルバード_左手","103803410":"[110] Giant's hull bird _ one hand close -- 【110】巨人のハルバード_片手近距離","103803420":"[110] Giant's hull bird _ both hands close -- 【110】巨人のハルバード_両手近距離","103803430":"[110] Giant's hull bird _ guard _ one hand -- 【110】巨人のハルバード_ガード_片手","103803440":"[110] Giant's hull bird _ guard _ both hands -- 【110】巨人のハルバード_ガード_両手","103803450":"[110] Giant's hull bird _ Paris -- 【110】巨人のハルバード_パリィ","103803490":"[110] Giant's hull bird _ falling Throw -- 【110】巨人のハルバード_落下投げ","103803500":"[110] Giant's hull bird _ behind -- 【110】巨人のハルバード_背後","103803505":"[110] Giant's hull bird _ behind the reinforcement -- 【110】巨人のハルバード_強化背後","103803510":"[110] Giant's hull bird _ after Paris -- 【110】巨人のハルバード_パリィ後","103803515":"[110] Giant's hull bird _ after strengthening Paris -- 【110】巨人のハルバード_強化パリィ後","103803516":"[110] Giant's hull bird _ after strengthening Paris _ two -- 【110】巨人のハルバード_強化パリィ後_二段目","103803520":"[110] Giant's hull bird _ one-handed Dash -- 【110】巨人のハルバード_片手ダッシュ","103803530":"[110] Giant's hull bird _ both hands dash -- 【110】巨人のハルバード_両手ダッシュ","103803540":"[110] Giant's hull bird _ one hand step before -- 【110】巨人のハルバード_片手ステップ前","103803580":"[110] Giant's hull bird _ two-handed step ahead -- 【110】巨人のハルバード_両手ステップ前","103803600":"[110] Giant's hull bird _ Parigard -- 【110】巨人のハルバード_パリィガード","103804000":"[111] Dress _ one hand usually 1 -- 【111】ドレス_片手通常1","103804010":"[111] Dress _ one hand usually two -- 【111】ドレス_片手通常2","103804020":"[111] Dress _ one hand usually three -- 【111】ドレス_片手通常3","103804030":"[111] Dress _ one-handed jump 1 -- 【111】ドレス_片手ジャンプ1","103804040":"[111] Dress _ one-handed fall loop -- 【111】ドレス_片手落下ループ","103804050":"[111] Dress _ one-handed fall landing -- 【111】ドレス_片手落下着地","103804100":"[111] Dress _ one-handed entertainment 1 -- 【111】ドレス_片手タメ1","103804110":"[111] Dress _ one-handed Entertainment 2 -- 【111】ドレス_片手タメ2","103804200":"[111] Dress _ Two hands usually one -- 【111】ドレス_両手通常1","103804210":"[111] Dress _ Two hands usually 2 -- 【111】ドレス_両手通常2","103804220":"[111] Dress _ Two hands usually three -- 【111】ドレス_両手通常3","103804230":"[111] Dress _ two-handed jump 1 -- 【111】ドレス_両手ジャンプ1","103804240":"[111] Dress _ two-handed fall loop -- 【111】ドレス_両手落下ループ","103804250":"[111] Dress _ two-handed fall landing -- 【111】ドレス_両手落下着地","103804300":"[111] Dress _ two-handed entertainment 1 -- 【111】ドレス_両手タメ1","103804301":"[111] Dress __ Two-handed 1_ second firing -- 【111】ドレス__両手タメ1_二撃目","103804310":"[111] Dress _ two-handed Entertainment 2 -- 【111】ドレス_両手タメ2","103804400":"[111] Dress _ left Hand -- 【111】ドレス_左手","103804410":"[111] Dress _ one hand close -- 【111】ドレス_片手近距離","103804420":"[111] Dress _ both hands close range -- 【111】ドレス_両手近距離","103804430":"[111] Dress _ guard _ one hand -- 【111】ドレス_ガード_片手","103804440":"[111] Dress _ guard _ both hands -- 【111】ドレス_ガード_両手","103804450":"[111] Dress _ Paris -- 【111】ドレス_パリィ","103804490":"[111] Dress _ Falling throw -- 【111】ドレス_落下投げ","103804500":"[111] Dress _ behind -- 【111】ドレス_背後","103804505":"[111] Dress _ reinforced behind -- 【111】ドレス_強化背後","103804510":"[111] Dress _ after Paris -- 【111】ドレス_パリィ後","103804515":"[111] Dress _ after strengthening Paris -- 【111】ドレス_強化パリィ後","103804516":"[111] Dress _ after strengthening Paris _ two -- 【111】ドレス_強化パリィ後_二段目","103804520":"[111] Dress _ one-handed Dash -- 【111】ドレス_片手ダッシュ","103804530":"[111] Dress _ both hands dash -- 【111】ドレス_両手ダッシュ","103804540":"[111] Dress _ one hand step before -- 【111】ドレス_片手ステップ前","103804580":"[111] Dress _ hands Step before -- 【111】ドレス_両手ステップ前","103804600":"[111] Dress _ Parigard -- 【111】ドレス_パリィガード","103805100":"[112] Black Knight Axe Spear _ one-handed entertainment 1 -- 【112】黒騎士の斧槍_片手タメ1","103805300":"[112] Black Knight Axe Spear _ two-handed entertainment 1 -- 【112】黒騎士の斧槍_両手タメ1","103805301":"[112] Axe Spear of the Black Knight __ both hands 1_ second hammer -- 【112】黒騎士の斧槍__両手タメ1_二撃目","103805310":"[112] Black Knight Axe Spear _ two-handed Entertainment 2 -- 【112】黒騎士の斧槍_両手タメ2","104100000":"[52] Magic Fire _ one hand usually 1 -- 【52】呪術の火_片手通常1","104100100":"[52] Magic Fire _ one-handed entertainment 1 -- 【52】呪術の火_片手タメ1","104100200":"[52] Magic Fire _ hands usually one -- 【52】呪術の火_両手通常1","104100300":"[52] Magic Fire _ two-handed entertainment 1 -- 【52】呪術の火_両手タメ1","104100400":"[52] Magic Fire _ Left hand -- 【52】呪術の火_左手","104100430":"[52] Magic Fire _ guard _ one hand -- 【52】呪術の火_ガード_片手","104100440":"[52] Magic Fire _ guard _ both hands -- 【52】呪術の火_ガード_両手","104100610":"Catalyst _ Behind the transition -- 触媒_背後遷移","104101000":"[52] Magic Fire _ one hand usually 1 -- 【52】呪術の火_片手通常1","104101100":"[52] Magic Fire _ one-handed entertainment 1 -- 【52】呪術の火_片手タメ1","104101200":"[52] Magic Fire _ hands usually one -- 【52】呪術の火_両手通常1","104101300":"[52] Magic Fire _ two-handed entertainment 1 -- 【52】呪術の火_両手タメ1","104101400":"[52] Magic Fire _ Left hand -- 【52】呪術の火_左手","104101430":"[52] Magic Fire _ guard _ one hand -- 【52】呪術の火_ガード_片手","104101440":"[52] Magic Fire _ guard _ both hands -- 【52】呪術の火_ガード_両手","104102000":"[127] Spear Cane _ one hand usually 1 -- 【127】槍杖_片手通常1","104102100":"[127] Spear Cane _ one-handed entertainment 1 -- 【127】槍杖_片手タメ1","104102200":"[127] Spear Cane _ Two hands usually one -- 【127】槍杖_両手通常1","104102300":"[127] Spear Cane _ two-handed entertainment 1 -- 【127】槍杖_両手タメ1","104102400":"[127] Spear Cane _ left hand -- 【127】槍杖_左手","104102430":"[127] Spear Cane _ guard _ one hand -- 【127】槍杖_ガード_片手","104102440":"[127] Spear Cane _ guard _ both hands -- 【127】槍杖_ガード_両手","104102450":"[127] Talisman _ Spear of Thunder -- 【127】タリスマン_雷の槍","104103000":"[121] Lantern _ one hand usually 1 -- 【121】ランタン_片手通常1","104103100":"[121] Lantern _ one-handed entertainment 1 -- 【121】ランタン_片手タメ1","104103200":"[121] Lantern _ Two hands usually one -- 【121】ランタン_両手通常1","104103300":"[121] Lantern _ two-handed entertainment 1 -- 【121】ランタン_両手タメ1","104103400":"[121] Lantern _ left Hand -- 【121】ランタン_左手","104103410":"[121] Lantern _ one hand close -- 【121】ランタン_片手近距離","104103420":"[121] Lantern _ both hands close range -- 【121】ランタン_両手近距離","104103430":"[121] Lantern _ guard _ one hand -- 【121】ランタン_ガード_片手","104103440":"[121] Lantern _ guard _ both hands -- 【121】ランタン_ガード_両手","104104000":"[136] Lord of the Abyss _ one hand usually 1 -- 【136】深淵の主_片手通常1","104104100":"[136] Lord of the Abyss _ one-handed entertainment 1 -- 【136】深淵の主_片手タメ1","104104110":"[136] Lord of the Abyss _ one-handed Entertainment 2 -- 【136】深淵の主_片手タメ2","104104200":"[136] Lord of the Abyss _ Two hands usually one -- 【136】深淵の主_両手通常1","104104300":"[136] Lord of the Abyss _ two-handed entertainment 1 -- 【136】深淵の主_両手タメ1","104104310":"[136] Lord of the Abyss _ two-handed Entertainment 2 -- 【136】深淵の主_両手タメ2","104104400":"[136] Lord of the Abyss _ left hand -- 【136】深淵の主_左手","104104430":"[136] Lord of the Abyss _ guard _ one hand -- 【136】深淵の主_ガード_片手","104104440":"[136] The Lord of the Abyss _ both hands -- 【136】深淵の主_ガード_両手","104200000":"Fist _ one hand usually 1 -- 拳_片手通常1","104200010":"Fist _ one hand usually two -- 拳_片手通常2","104200020":"Fist _ one hand usually three -- 拳_片手通常3","104200030":"Fist _ One handed jump -- 拳_片手ジャンプ1","104200040":"Fist _ One handed fall loop -- 拳_片手落下ループ","104200050":"Fist _ one-handed fall landing -- 拳_片手落下着地","104200100":"Fist _ one-handed entertainment 1 -- 拳_片手タメ1","104200105":"Fist _ one-handed 1_ maximum -- 拳_片手タメ1_最大","104200110":"Fist _ one-handed Entertainment 2 -- 拳_片手タメ2","104200115":"Fist _ one-handed 2_ maximum -- 拳_片手タメ2_最大","104200400":"Fist _ Left Hand -- 拳_左手","104200410":"Fist _ one hand close -- 拳_片手近距離","104200430":"Fist _ guard _ one hand -- 拳_ガード_片手","104200450":"Fist _ Paris -- 拳_パリィ","104200470":"Fist _ Large Throw -- 拳_大型投げ","104200490":"Fist _ Drop Throw -- 拳_落下投げ","104200500":"Fist _ behind -- 拳_背後","104200501":"Fist _ Behind the second hammer -- 拳_背後_二撃目","104200505":"Fist _ Strengthening behind -- 拳_強化背後","104200506":"Fists _ Strengthened behind _ Two -- 拳_強化背後_二段目","104200510":"Fist _ after Paris -- 拳_パリィ後","104200511":"Fist _ Paris _ Second Hammer -- 拳_パリィ後_二撃目","104200515":"Fist _ after strengthening Paris -- 拳_強化パリィ後","104200516":"Paris Fist _ strengthens after _ Two -- 拳_強化パリィ後_二段目","104200517":"Paris Fist _ strengthens after _ Sandanme -- 拳_強化パリィ後_三段目","104200520":"Fist _ one handed Dash -- 拳_片手ダッシュ","104200540":"Fist _ one hand step before -- 拳_片手ステップ前","104200600":"Fist _ Parigard -- 拳_パリィガード","104200610":"Fist _ Behind the transition -- 拳_背後遷移","104201000":"Fist _ flesh _ one hand usually 1 -- 拳_肉_片手通常1","104201010":"Fist _ flesh _ one hand usually two -- 拳_肉_片手通常2","104201020":"Fist _ flesh _ one hand usually three -- 拳_肉_片手通常3","104201030":"Fist _ flesh _ one handed jump -- 拳_肉_片手ジャンプ1","104201040":"Fist _ flesh _ one-handed fall loop -- 拳_肉_片手落下ループ","104201050":"Fist _ flesh _ one-handed fall landing -- 拳_肉_片手落下着地","104201100":"Fist _ flesh _ one-handed entertainment 1 -- 拳_肉_片手タメ1","104201105":"Fist _ flesh _ one-handed 1_ maximum -- 拳_肉_片手タメ1_最大","104201110":"Fist _ meat _ one-handed Entertainment 2 -- 拳_肉_片手タメ2","104201115":"Fist _ flesh _ one-handed 2_ maximum -- 拳_肉_片手タメ2_最大","104201400":"Fist _ flesh _ Left hand -- 拳_肉_左手","104201410":"Fist _ flesh _ one hand short distance -- 拳_肉_片手近距離","104201430":"Fist _ flesh _ guards _ one hand -- 拳_肉_ガード_片手","104201450":"Fist _ flesh _ Paris -- 拳_肉_パリィ","104201470":"Fist _ Meat Large Throw -- 拳_肉大型投げ","104201490":"Fist _ flesh _ Falling Throw -- 拳_肉_落下投げ","104201500":"Fist _ flesh _ behind -- 拳_肉_背後","104201501":"Fist _ flesh _ behind _ two-firing eyes -- 拳_肉_背後_二撃目","104201505":"Fist _ flesh _ strengthens behind -- 拳_肉_強化背後","104201506":"Fists _ flesh _ strengthened behind _ Two -- 拳_肉_強化背後_二段目","104201510":"Fist _ flesh _ after Paris -- 拳_肉_パリィ後","104201511":"Fists _ Flesh _ after Paris _ two-firing eyes -- 拳_肉_パリィ後_二撃目","104201515":"Fist _ flesh _ after strengthening Paris -- 拳_肉_強化パリィ後","104201516":"Paris Fist _ flesh _ strengthens after _ Two -- 拳_肉_強化パリィ後_二段目","104201517":"Paris Fist _ flesh _ strengthens after _ Sandanme -- 拳_肉_強化パリィ後_三段目","104201520":"Fist _ flesh _ one-handed Dash -- 拳_肉_片手ダッシュ","104201540":"Fist _ flesh _ one-handed step before -- 拳_肉_片手ステップ前","104201600":"Fist _ flesh _ Parigard -- 拳_肉_パリィガード","104201610":"Fist _ Behind the transition -- 拳_背後遷移","104201615":"Fist _ Behind Transition _ missed -- 拳_背後遷移_空振り","104201700":"Fist _ meat _ ladder right-hand attack -- 拳_肉_ハシゴ右手攻撃","104201701":"Fist _ flesh _ ladder left hand attack -- 拳_肉_ハシゴ左手攻撃","104201702":"Fist _ meat _ ladder right foot attack -- 拳_肉_ハシゴ右足攻撃","104201703":"Fist _ meat _ ladder left foot attack -- 拳_肉_ハシゴ左足攻撃","104201900":"[117] Dragon Fist _ one hand usually -- 【117】竜拳_片手通常","104201901":"[117] Dragon Fist _ one hand large -- 【117】竜拳_片手大","104201902":"[117] Dragon Fist _ left hand -- 【117】竜拳_左手","104201903":"[117] Dragon Fist _ one-handed Dash -- 【117】竜拳_片手ダッシュ","104201904":"[117] Dragon Fist _ one handed step -- 【117】竜拳_片手ステップ","104201905":"[117] Dragon Fist _ one-handed jump attack -- 【117】竜拳_片手ジャンプ攻撃","104201906":"[117] Dragon Fist _ one-handed fall attack -- 【117】竜拳_片手落下中攻撃","104201907":"[117] Dragon Fist _ one-handed fall attack _ around -- 【117】竜拳_片手落下攻撃_周辺","104201908":"[117] Dragon Fist _ one hand close -- 【117】竜拳_片手近距離","104202000":"[86] Nails _ one hand usually 1 -- 【86】かぎ爪_片手通常1","104202010":"[86] Claws _ one hand usually two -- 【86】かぎ爪_片手通常2","104202020":"[86] Claws _ one hand usually three -- 【86】かぎ爪_片手通常3","104202030":"[86] Claws _ one-handed jump 1 -- 【86】かぎ爪_片手ジャンプ1","104202040":"[86] Claws _ one-handed fall loop -- 【86】かぎ爪_片手落下ループ","104202050":"[86] Claws _ one-handed fall landing -- 【86】かぎ爪_片手落下着地","104202100":"[86] Claws _ one-handed entertainment 1 -- 【86】かぎ爪_片手タメ1","104202110":"[86] Claw nails _ one-handed Entertainment 2 -- 【86】かぎ爪_片手タメ2","104202400":"[86] Claws _ left Hand -- 【86】かぎ爪_左手","104202410":"[86] Claws _ one hand close -- 【86】かぎ爪_片手近距離","104202430":"[86] Claws _ guards _ one hand -- 【86】かぎ爪_ガード_片手","104202450":"[86] Claws _ Paris -- 【86】かぎ爪_パリィ","104202490":"[86] Claws _ falling throws -- 【86】かぎ爪_落下投げ","104202500":"[86] Claws _ behind -- 【86】かぎ爪_背後","104202501":"[86] Claw _ behind _ Second Hammer -- 【86】かぎ爪_背後_二撃目","104202505":"[86] Claws _ reinforced behind -- 【86】かぎ爪_強化背後","104202506":"[86] Claws _ reinforced behind _ Two -- 【86】かぎ爪_強化背後_二段目","104202510":"[86] Claws _ after Paris -- 【86】かぎ爪_パリィ後","104202511":"[86] Claw _ Paris After _ Second hammer -- 【86】かぎ爪_パリィ後_二撃目","104202515":"[86] Claws _ after strengthening Paris -- 【86】かぎ爪_強化パリィ後","104202516":"[86] Claws _ after strengthening Paris _ two -- 【86】かぎ爪_強化パリィ後_二段目","104202517":"[86] Claws _ After strengthening Paris _ Sandanme -- 【86】かぎ爪_強化パリィ後_三段目","104202520":"[86] Claws _ one-handed Dash -- 【86】かぎ爪_片手ダッシュ","104202540":"[86] Claws _ one hand step before -- 【86】かぎ爪_片手ステップ前","104202600":"[86] Claws _ Parigard -- 【86】かぎ爪_パリィガード","104203000":"[123] Dark hand _ one hand usually 1 -- 【123】ダークハンド_片手通常1","104203010":"[123] Dark hand _ one hand usually two -- 【123】ダークハンド_片手通常2","104203020":"[123] Dark hand _ one hand usually three -- 【123】ダークハンド_片手通常3","104203030":"[123] Dark hand _ one handed jump -- 【123】ダークハンド_片手ジャンプ1","104203040":"[123] Dark hand _ one handed fall loop -- 【123】ダークハンド_片手落下ループ","104203050":"[123] Dark Hand _ one-handed fall landing -- 【123】ダークハンド_片手落下着地","104203100":"[123] Dark Hand _ one-handed entertainment 1 -- 【123】ダークハンド_片手タメ1","104203110":"[123] Dark Hand _ one-handed Entertainment 2 -- 【123】ダークハンド_片手タメ2","104203120":"[123] Dark Hand _ one-handed Entertainment 1/Magic Trigger -- 【123】ダークハンド_片手タメ1/魔法発動時","104203130":"[123] Dark Hand _ one-handed Entertainment 2/Magic Trigger -- 【123】ダークハンド_片手タメ2/魔法発動時","104203405":"[123] Dark Hand _ left Hand/Magic cannon activated -- 【123】ダークハンド_左手/魔砲発動時","104203410":"[123] Dark hand _ one hand close -- 【123】ダークハンド_片手近距離","104203430":"[123] Dark Hand _ guard _ one hand -- 【123】ダークハンド_ガード_片手","104203450":"[123] Dark Hand _ Paris -- 【123】ダークハンド_パリィ","104203490":"[123] Dark hand _ falling throw -- 【123】ダークハンド_落下投げ","104203500":"[123] Dark hand _ behind -- 【123】ダークハンド_背後","104203501":"[123] Dark Hand _ behind the second hammer -- 【123】ダークハンド_背後_二撃目","104203505":"[123] Dark hand _ reinforced behind -- 【123】ダークハンド_強化背後","104203506":"[123] Dark Hand _ reinforced behind _ Two -- 【123】ダークハンド_強化背後_二段目","104203510":"[123] Dark hand _ after Paris -- 【123】ダークハンド_パリィ後","104203511":"[123] Dark Hand _ after Paris _ Second hammer -- 【123】ダークハンド_パリィ後_二撃目","104203515":"[123] Dark hand _ after strengthening Paris -- 【123】ダークハンド_強化パリィ後","104203516":"[123] Dark hand _ after strengthening Paris _ two -- 【123】ダークハンド_強化パリィ後_二段目","104203517":"[123] Dark hand _ after strengthening Paris _ Sandanme -- 【123】ダークハンド_強化パリィ後_三段目","104203520":"[123] Dark Hand _ one-handed Dash -- 【123】ダークハンド_片手ダッシュ","104203540":"[123] Dark hand _ one hand step before -- 【123】ダークハンド_片手ステップ前","104203600":"[123] Dark Hand _ Parigard -- 【123】ダークハンド_パリィガード","104204000":"[87] Large keel _ one hand usually 1 -- 【87】大竜骨_片手通常1","104204010":"[87] Large keel _ one hand usually two -- 【87】大竜骨_片手通常2","104204020":"[87] Large keel _ one hand usually three -- 【87】大竜骨_片手通常3","104204030":"[87] Large keel _ one-handed jump 1 -- 【87】大竜骨_片手ジャンプ1","104204040":"[87] Large keel _ one-handed fall loop -- 【87】大竜骨_片手落下ループ","104204050":"[87] Large keel _ one-handed fall landing -- 【87】大竜骨_片手落下着地","104204100":"[87] Large keel _ one-handed entertainment 1 -- 【87】大竜骨_片手タメ1","104204110":"[87] Large keel _ one-handed Entertainment 2 -- 【87】大竜骨_片手タメ2","104204400":"[87] Large keel _ left hand -- 【87】大竜骨_左手","104204410":"[87] Large keel _ one hand close -- 【87】大竜骨_片手近距離","104204430":"[87] Large Keel _ guard _ one hand -- 【87】大竜骨_ガード_片手","104204450":"【 87 】 Dai Keel _ Paris -- 【87】大竜骨_パリィ","104204490":"[87] Large keel _ falling throw -- 【87】大竜骨_落下投げ","104204500":"[87] Large keel _ behind -- 【87】大竜骨_背後","104204501":"[87] Large keel _ behind the second hammer -- 【87】大竜骨_背後_二撃目","104204505":"[87] Large keel _ reinforced behind -- 【87】大竜骨_強化背後","104204506":"[87] Large Keel _ strengthened behind _ Two -- 【87】大竜骨_強化背後_二段目","104204510":"[87] Large keel _ after Paris -- 【87】大竜骨_パリィ後","104204511":"[87] Keel _ Paris _ Second Hammer -- 【87】大竜骨_パリィ後_二撃目","104204515":"[87] Large keel _ after strengthening Paris -- 【87】大竜骨_強化パリィ後","104204516":"[87] Large keel _ Paris after strengthening _ two -- 【87】大竜骨_強化パリィ後_二段目","104204517":"[87] Large keel _ Paris after strengthening _ Sandanme -- 【87】大竜骨_強化パリィ後_三段目","104204520":"[87] Large keel _ one-handed Dash -- 【87】大竜骨_片手ダッシュ","104204540":"[87] Large keel _ one-handed step before -- 【87】大竜骨_片手ステップ前","104204600":"【 87 】 Dai Keel _ Parigard -- 【87】大竜骨_パリィガード","104300000":"Whip _ one hand usually 1 -- 鞭_片手通常1","104300010":"Whip _ one hand usually two -- 鞭_片手通常2","104300020":"Whip _ one hand usually three -- 鞭_片手通常3","104300030":"Whip _ One handed jump -- 鞭_片手ジャンプ1","104300040":"Whip _ one-handed fall loop -- 鞭_片手落下ループ","104300050":"Whip _ one-handed fall landing -- 鞭_片手落下着地","104300100":"Whip _ one-handed entertainment 1 -- 鞭_片手タメ1","104300110":"Whip _ one-handed Entertainment 2 -- 鞭_片手タメ2","104300200":"Whip _ Two hands usually one -- 鞭_両手通常1","104300210":"Whips _ Two hands usually 2 -- 鞭_両手通常2","104300220":"Whip _ Two hands usually three -- 鞭_両手通常3","104300230":"Whip _ two-handed jump 1 -- 鞭_両手ジャンプ1","104300240":"Whip _ two-handed fall loop -- 鞭_両手落下ループ","104300250":"Whip _ two-handed fall landing -- 鞭_両手落下着地","104300300":"Whip _ two-handed entertainment 1 -- 鞭_両手タメ1","104300310":"Whip _ two-handed Entertainment 2 -- 鞭_両手タメ2","104300400":"Whip _ Left Hand -- 鞭_左手","104300410":"Whip _ one hand close -- 鞭_片手近距離","104300420":"Whip _ both hands close -- 鞭_両手近距離","104300430":"Whips _ guards _ one hand -- 鞭_ガード_片手","104300440":"Whips _ guards _ both hands -- 鞭_ガード_両手","104300450":"Whips _ Paris -- 鞭_パリィ","104300520":"Whip _ one-handed Dash -- 鞭_片手ダッシュ","104300530":"Whip _ both hands dash -- 鞭_両手ダッシュ","104300540":"Whip _ one hand step before -- 鞭_片手ステップ前","104300580":"Whip _ hands before step -- 鞭_両手ステップ前","104300600":"Whips _ Parigard -- 鞭_パリィガード","104300610":"Whip _ Behind the transition -- 鞭_背後遷移","104400000":"Bow _ one hand usually -- 弓_片手通常","104400100":"Bow _ one-handed entertainment -- 弓_片手タメ","104400200":"Bow _ Both hands usually -- 弓_両手通常","104400300":"Bow _ hands-on entertainment -- 弓_両手タメ","104400400":"Bow _ Left Hand -- 弓_左手","104400410":"Bow _ one hand close -- 弓_片手近距離","104400420":"Bow _ Both hands close -- 弓_両手近距離","104400430":"Bows _ Guards _ one hand -- 弓_ガード_片手","104400440":"Bows _ Guards _ both hands -- 弓_ガード_両手","104400450":"Bows _ Paris -- 弓_パリィ","104400500":"Bow _ Behind -- 弓_背後","104400510":"Bows _ After Paris -- 弓_パリィ後","104400520":"Bow _ one-handed Dash -- 弓_片手ダッシュ","104400530":"Bow _ Both hands dash -- 弓_両手ダッシュ","104400540":"Bow _ one hand step before -- 弓_片手ステップ前","104400580":"Bow _ Hands before step -- 弓_両手ステップ前","104400600":"Bows _ Parigard -- 弓_パリィガード","104400610":"Bow _ Behind the transition -- 弓_背後遷移","104600000":"Crossbow _ one hand usually -- 弩_片手通常","104600100":"Crossbow _ one-handed entertainment -- 弩_片手タメ","104600200":"Crossbow _ Both hands usually -- 弩_両手通常","104600300":"Crossbow _ hands-on entertainment -- 弩_両手タメ","104600400":"Crossbow _ Left Hand -- 弩_左手","104600410":"Crossbow _ one-handed close -- 弩_片手近距離","104600420":"Crossbow _ Both hands close -- 弩_両手近距離","104600430":"Crossbow _ guards _ one hand -- 弩_ガード_片手","104600440":"Crossbow _ guards _ both hands -- 弩_ガード_両手","104600450":"Crossbow _ Paris -- 弩_パリィ","104600500":"Crossbow _ behind -- 弩_背後","104600510":"Crossbow _ After Paris -- 弩_パリィ後","104600520":"Crossbow _ one-handed Dash -- 弩_片手ダッシュ","104600530":"Crossbow _ Both hands dash -- 弩_両手ダッシュ","104600540":"Crossbow _ one handed step ahead -- 弩_片手ステップ前","104600580":"Crossbow _ Both hands step ahead -- 弩_両手ステップ前","104600600":"Crossbow _ Parigard -- 弩_パリィガード","104600610":"Crossbow _ Behind the transition -- 弩_背後遷移","104700000":"Large Shield _ one hand usually 1 -- 大盾_片手通常1","104700010":"Large Shield _ one hand usually two -- 大盾_片手通常2","104700020":"Large Shield _ one hand usually three -- 大盾_片手通常3","104700030":"Big Shield _ One handed jump -- 大盾_片手ジャンプ1","104700040":"Large Shield _ one handed fall loop -- 大盾_片手落下ループ","104700050":"Large Shield _ one-handed fall landing -- 大盾_片手落下着地","104700100":"Large Shield _ one-handed entertainment 1 -- 大盾_片手タメ1","104700110":"Big Shield _ one-handed Entertainment 2 -- 大盾_片手タメ2","104700200":"Large Shield _ Two hands usually one -- 大盾_両手通常1","104700210":"Large shield _ both hands usually two -- 大盾_両手通常2","104700220":"Large Shield _ Two hands usually three -- 大盾_両手通常3","104700230":"Large Shield _ two-handed jump 1 -- 大盾_両手ジャンプ1","104700240":"Large Shield _ two-handed fall loop -- 大盾_両手落下ループ","104700250":"Large Shield _ two-handed fall landing -- 大盾_両手落下着地","104700300":"Large Shield _ two-handed entertainment 1 -- 大盾_両手タメ1","104700310":"Large Shield _ two-handed Entertainment 2 -- 大盾_両手タメ2","104700400":"Big Shield _ Left hand -- 大盾_左手","104700410":"Large Shield _ one hand close -- 大盾_片手近距離","104700420":"Large Shield _ both hands close -- 大盾_両手近距離","104700430":"Large Shield _ guard _ one hand -- 大盾_ガード_片手","104700440":"Large Shield _ both hands -- 大盾_ガード_両手","104700520":"Big Shield _ One handed Dash -- 大盾_片手ダッシュ","104700521":"Large Shield _ One handed dash _ Dash -- 大盾_片手ダッシュ_ダッシュ中","104700530":"Big Shield _ both hands dash -- 大盾_両手ダッシュ","104700531":"Large Shields _ Both hands _ dash _ Dash -- 大盾_両手_ダッシュ_ダッシュ中","104700540":"Big Shield _ one hand step before -- 大盾_片手ステップ前","104700580":"Large Shield _ Two hands before step -- 大盾_両手ステップ前","104700600":"Large Shields _ Parigard -- 大盾_パリィガード","104700601":"Large Shield _ General range -- 大盾_汎用範囲","104700610":"Large Shield _ behind the transition -- 大盾_背後遷移","104700800":"Big Shield _ Magic Sword -- 大盾_魔法剣","104701000":"Large Shield _ wood _ one hand usually 1 -- 大型盾_木製_片手通常1","104701010":"Large Shields _ wood _ one hand usually two -- 大型盾_木製_片手通常2","104701020":"Large Shields _ wood _ one hand usually three -- 大型盾_木製_片手通常3","104701030":"Large Shield _ wooden _ one-handed jump 1 -- 大型盾_木製_片手ジャンプ1","104701040":"Large Shields _ wooden _ one-handed fall loop -- 大型盾_木製_片手落下ループ","104701050":"Large Shields _ wooden _ one-handed fall landing -- 大型盾_木製_片手落下着地","104701100":"Large Shield _ wooden _ one-handed entertainment 1 -- 大型盾_木製_片手タメ1","104701110":"Large Shields _ wooden _ one-handed Entertainment 2 -- 大型盾_木製_片手タメ2","104701200":"Large Shields _ wooden _ Two hands usually one -- 大型盾_木製_両手通常1","104701210":"Large Shields _ wooden _ Two hands usually -- 大型盾_木製_両手通常2","104701220":"Large Shields _ wooden _ Two hands usually three -- 大型盾_木製_両手通常3","104701230":"Large Shield _ wooden _ two-handed jump 1 -- 大型盾_木製_両手ジャンプ1","104701240":"Large Shield _ wooden _ two-handed fall loop -- 大型盾_木製_両手落下ループ","104701250":"Large Shields _ wooden _ two-handed fall landing -- 大型盾_木製_両手落下着地","104701300":"Large Shields _ wooden _ two-handed entertainment 1 -- 大型盾_木製_両手タメ1","104701310":"Large Shields _ wooden _ two-handed Entertainment 2 -- 大型盾_木製_両手タメ2","104701400":"Large Shields _ wood _ left hand -- 大型盾_木製_左手","104701410":"Large Shield _ wooden _ one hand short distance -- 大型盾_木製_片手近距離","104701420":"Large Shield _ wooden _ both hands close -- 大型盾_木製_両手近距離","104701430":"Large Shields _ Wooden _ guards _ one hand -- 大型盾_木製_ガード_片手","104701440":"Large Shields _ Wooden _ guards _ both hands -- 大型盾_木製_ガード_両手","104701520":"Large Shield _ wooden _ one-handed Dash -- 大型盾_木製_片手ダッシュ","104701521":"Large Shields _ wooden _ one-handed dash _ Dash -- 大型盾_木製_片手ダッシュ_ダッシュ中","104701530":"Large Shields _ wooden _ both hands dash -- 大型盾_木製_両手ダッシュ","104701531":"Large Shields _ wooden _ Both hands _ dash _ Dash -- 大型盾_木製_両手_ダッシュ_ダッシュ中","104701540":"Large Shields _ wooden _ one handed step before -- 大型盾_木製_片手ステップ前","104701580":"Large Shields _ wooden _ two-handed step before -- 大型盾_木製_両手ステップ前","104701600":"Large Shields _ wooden _ Parigard -- 大型盾_木製_パリィガード","104701601":"Large Shields _ wood _ General Range -- 大型盾_木製_汎用範囲","104702100":"[126] Wheel _ one-handed entertainment 1 -- 【126】車輪_片手タメ1","104702110":"[126] Wheel _ one-handed Entertainment 2 -- 【126】車輪_片手タメ2","104702300":"[126] Wheels _ two-handed entertainment 1 -- 【126】車輪_両手タメ1","104702310":"[126] Wheels _ two-handed Entertainment 2 -- 【126】車輪_両手タメ2","104800000":"Shield _ one hand usually 1 -- 盾_片手通常1","104800010":"Shield _ one hand usually two -- 盾_片手通常2","104800020":"Shields _ one hand usually three -- 盾_片手通常3","104800030":"Shield _ One handed jump -- 盾_片手ジャンプ1","104800040":"Shield _ one-handed fall loop -- 盾_片手落下ループ","104800050":"Shield _ one-handed fall landing -- 盾_片手落下着地","104800100":"Shield _ one-handed entertainment 1 -- 盾_片手タメ1","104800110":"Shield _ one-handed Entertainment 2 -- 盾_片手タメ2","104800200":"Shield _ Two hands usually one -- 盾_両手通常1","104800210":"Shield _ Two hands usually 2 -- 盾_両手通常2","104800220":"Shields _ Two hands usually three -- 盾_両手通常3","104800230":"Shield _ two-handed jump 1 -- 盾_両手ジャンプ1","104800240":"Shield _ two-handed fall loop -- 盾_両手落下ループ","104800250":"Shield _ two-handed fall landing -- 盾_両手落下着地","104800300":"Shield _ two-handed entertainment 1 -- 盾_両手タメ1","104800301":"Shield _ two-handed 1_ Dash -- 盾_両手タメ1_ダッシュ中","104800310":"Shield _ two-handed Entertainment 2 -- 盾_両手タメ2","104800400":"Shield _ Left Hand -- 盾_左手","104800410":"Shield _ one hand close -- 盾_片手近距離","104800420":"Shield _ both hands close -- 盾_両手近距離","104800430":"Shields _ guards _ one hand -- 盾_ガード_片手","104800440":"Shields _ guards _ both hands -- 盾_ガード_両手","104800450":"Shields _ Paris -- 盾_パリィ","104800520":"Shield _ one-handed Dash -- 盾_片手ダッシュ","104800521":"Shields _ one-handed dash _ in dash -- 盾_片手ダッシュ_ダッシュ中","104800530":"Shield _ both hands dash -- 盾_両手ダッシュ","104800531":"Shields _ Both hands dash _ in Dash -- 盾_両手ダッシュ_ダッシュ中","104800540":"Shield _ one hand step before -- 盾_片手ステップ前","104800580":"Shield _ Two hands before step -- 盾_両手ステップ前","104800600":"Shields _ Parigard -- 盾_パリィガード","104800610":"Shield behind transition -- 盾_背後遷移","104800780":"Shield _ Blown attack -- 盾_吹き飛ばし攻撃","104801000":"Small shield _ one hand usually 1 -- 小盾_片手通常1","104801010":"Small shield _ one hand usually two -- 小盾_片手通常2","104801020":"Small shield _ one hand usually three -- 小盾_片手通常3","104801030":"Small Shield _ one handed jump -- 小盾_片手ジャンプ1","104801040":"Small Shield _ One handed fall loop -- 小盾_片手落下ループ","104801050":"Small Shield _ one-handed fall landing -- 小盾_片手落下着地","104801100":"Small Shield _ one-handed entertainment 1 -- 小盾_片手タメ1","104801110":"Small Shield _ one-handed Entertainment 2 -- 小盾_片手タメ2","104801200":"Small shield _ Two hands usually one -- 小盾_両手通常1","104801210":"Small shield _ Two hands usually 2 -- 小盾_両手通常2","104801220":"Small shield _ Two hands usually three -- 小盾_両手通常3","104801230":"Small Shield _ two-handed jump 1 -- 小盾_両手ジャンプ1","104801240":"Small Shield _ two-handed fall loop -- 小盾_両手落下ループ","104801250":"Small Shield _ two-handed fall landing -- 小盾_両手落下着地","104801300":"Small Shield _ two-handed entertainment 1 -- 小盾_両手タメ1","104801301":"Small shield _ both hands 1_ in dash -- 小盾_両手タメ1_ダッシュ中","104801310":"Small Shield _ two-handed Entertainment 2 -- 小盾_両手タメ2","104801400":"Small Shield _ Left hand -- 小盾_左手","104801410":"Small Shield _ one hand close -- 小盾_片手近距離","104801420":"Small shield _ both hands close -- 小盾_両手近距離","104801430":"Small Shields _ guard _ one hand -- 小盾_ガード_片手","104801440":"Small Shields _ guards _ both hands -- 小盾_ガード_両手","104801450":"Small Shields _ Paris -- 小盾_パリィ","104801520":"Small Shield _ one-handed Dash -- 小盾_片手ダッシュ","104801521":"Small Shield _ One handed dash _ Dash -- 小盾_片手ダッシュ_ダッシュ中","104801530":"Small shield _ both hands dash -- 小盾_両手ダッシュ","104801531":"Small shields _ both hands dash in dash -- 小盾_両手ダッシュ_ダッシュ中","104801540":"Small shield _ one hand step before -- 小盾_片手ステップ前","104801580":"Small Shield _ Two hands before step -- 小盾_両手ステップ前","104801600":"Small Shields _ Parigard -- 小盾_パリィガード","104802000":"[92] Crystal wheel _ one hand usually 1 -- 【92】水晶輪_片手通常1","104802010":"[92] Crystal wheel _ one hand usually two -- 【92】水晶輪_片手通常2","104802020":"[92] Crystal wheel _ one hand usually three -- 【92】水晶輪_片手通常3","104802030":"[92] Crystal wheel _ one-handed jump 1 -- 【92】水晶輪_片手ジャンプ1","104802040":"[92] Crystal wheel _ one-handed fall loop -- 【92】水晶輪_片手落下ループ","104802050":"[92] Crystal Ring _ one-handed fall landing -- 【92】水晶輪_片手落下着地","104802100":"[92] Crystal wheel _ one-handed entertainment 1 -- 【92】水晶輪_片手タメ1","104802110":"[92] Crystal wheel _ one-handed Entertainment 2 -- 【92】水晶輪_片手タメ2","104802120":"[92] Crystal wheel _ one-handed Entertainment 1/Magic Trigger -- 【92】水晶輪_片手タメ1/魔法発動時","104802130":"[92] Crystal wheel _ one-handed Entertainment 2/Magic Trigger -- 【92】水晶輪_片手タメ2/魔法発動時","104802200":"[92] Quartz wheel _ Two hands usually one -- 【92】水晶輪_両手通常1","104802210":"[92] Crystal wheel _ Two hands usually 2 -- 【92】水晶輪_両手通常2","104802220":"[92] Crystal wheel _ Two hands usually three -- 【92】水晶輪_両手通常3","104802230":"[92] Crystal Ring _ two-handed jump 1 -- 【92】水晶輪_両手ジャンプ1","104802240":"[92] Crystal Ring _ two-handed fall loop -- 【92】水晶輪_両手落下ループ","104802250":"[92] Crystal Ring _ two-handed fall landing -- 【92】水晶輪_両手落下着地","104802300":"[92] Crystal wheel _ two-handed entertainment 1 -- 【92】水晶輪_両手タメ1","104802310":"[92] Crystal wheel _ two-handed Entertainment 2 -- 【92】水晶輪_両手タメ2","104802320":"[92] Crystal wheel _ two-handed Entertainment 1/Magic Trigger -- 【92】水晶輪_両手タメ1/魔法発動時","104802330":"[92] Crystal wheel _ two-hand Entertainment 2/Magic Trigger -- 【92】水晶輪_両手タメ2/魔法発動時","104802400":"[92] Crystal ring _ left hand -- 【92】水晶輪_左手","104802405":"[92] Crystal wheel _ Left hand/Magic Trigger -- 【92】水晶輪_左手/魔法発動時","104802410":"[92] Crystal wheel _ one hand close -- 【92】水晶輪_片手近距離","104802420":"[92] Crystal wheel _ both hands close -- 【92】水晶輪_両手近距離","104802430":"[92] Crystal Ring _ guard _ one hand -- 【92】水晶輪_ガード_片手","104802440":"[92] Crystal Ring _ guard _ both hands -- 【92】水晶輪_ガード_両手","104802450":"[92] Crystal Ring _ Paris -- 【92】水晶輪_パリィ","104802520":"[92] Crystal wheel _ one-handed Dash -- 【92】水晶輪_片手ダッシュ","104802521":"[92] Crystal wheel _ one-handed dash _ Dash -- 【92】水晶輪_片手ダッシュ_ダッシュ中","104802530":"[92] Crystal wheel _ both hands dash -- 【92】水晶輪_両手ダッシュ","104802531":"[92] Crystal wheel _ both hands dash _ Dash -- 【92】水晶輪_両手ダッシュ_ダッシュ中","104802540":"[92] Crystal wheel _ one hand step before -- 【92】水晶輪_片手ステップ前","104802580":"[92] Crystal wheel _ Two hands before step -- 【92】水晶輪_両手ステップ前","104802600":"[92] Crystal Ring _ Parigard -- 【92】水晶輪_パリィガード","104802800":"[92] Crystal Wheel _ Magic Sword -- 【92】水晶輪_魔法剣","104803000":"[93] Spike _ one hand usually 1 -- 【93】スパイク_片手通常1","104803010":"[93] Spikes _ one hand usually two -- 【93】スパイク_片手通常2","104803020":"[93] Spike _ one hand usually three -- 【93】スパイク_片手通常3","104803030":"[93] Spike _ one-handed jump 1 -- 【93】スパイク_片手ジャンプ1","104803040":"[93] Spike _ one-handed fall loop -- 【93】スパイク_片手落下ループ","104803050":"[93] Spike _ one-handed fall landing -- 【93】スパイク_片手落下着地","104803100":"[93] Spike _ one-handed entertainment 1 -- 【93】スパイク_片手タメ1","104803110":"[93] Spike _ one-handed Entertainment 2 -- 【93】スパイク_片手タメ2","104803200":"[93] Spike _ both hands usually one -- 【93】スパイク_両手通常1","104803210":"[93] Spike _ Two hands usually 2 -- 【93】スパイク_両手通常2","104803220":"[93] Spike _ Two hands usually three -- 【93】スパイク_両手通常3","104803230":"[93] Spike _ two-handed jump 1 -- 【93】スパイク_両手ジャンプ1","104803240":"[93] Spike _ Both hands Fall loop -- 【93】スパイク_両手落下ループ","104803250":"[93] Spike _ Two-handed fall landing -- 【93】スパイク_両手落下着地","104803300":"[93] Spike _ two-handed entertainment 1 -- 【93】スパイク_両手タメ1","104803301":"[93] Spike _ two-handed 1_ Dash -- 【93】スパイク_両手タメ1_ダッシュ中","104803310":"[93] Spike _ two-handed Entertainment 2 -- 【93】スパイク_両手タメ2","104803400":"[93] Spike _ Left hand -- 【93】スパイク_左手","104803410":"[93] Spike _ one hand close -- 【93】スパイク_片手近距離","104803420":"[93] Spikes _ both hands close -- 【93】スパイク_両手近距離","104803430":"[93] Spike _ guard _ one hand -- 【93】スパイク_ガード_片手","104803440":"[93] Spike _ guard _ both hands -- 【93】スパイク_ガード_両手","104803450":"[93] Spike _ Paris -- 【93】スパイク_パリィ","104803520":"[93] Spike _ one-handed Dash -- 【93】スパイク_片手ダッシュ","104803521":"[93] Spike _ one-handed dash _ in dash -- 【93】スパイク_片手ダッシュ_ダッシュ中","104803530":"[93] Spike _ both hands dash -- 【93】スパイク_両手ダッシュ","104803531":"[93] Spike _ Both hands dash _ Dash -- 【93】スパイク_両手ダッシュ_ダッシュ中","104803540":"[93] Spike _ one hand step before -- 【93】スパイク_片手ステップ前","104803580":"[93] Spike _ two-handed step before -- 【93】スパイク_両手ステップ前","104803600":"[93] Spike _ Parigard -- 【93】スパイク_パリィガード","104900400":"Torch _ Left Hand -- 松明_左手","105000000":"Sickle _ one hand usually 1 -- 鎌_片手通常1","105000001":"Sickle _ one hand usually 1 (stick) -- 鎌_片手通常1(棒)","105000010":"Sickle _ one hand usually two -- 鎌_片手通常2","105000011":"Sickle _ one hand usually 2 (stick) -- 鎌_片手通常2(棒)","105000020":"Sickle _ one hand usually three -- 鎌_片手通常3","105000021":"Sickle _ one hand usually 3 (stick) -- 鎌_片手通常3(棒)","105000030":"Sickle _ One handed jump -- 鎌_片手ジャンプ1","105000031":"Sickle _ one-handed jump 1 (stick) -- 鎌_片手ジャンプ1(棒)","105000040":"Sickle _ One handed fall loop -- 鎌_片手落下ループ","105000041":"Sickle _ One handed Fall loop (stick) -- 鎌_片手落下ループ(棒)","105000050":"Sickle _ one-handed fall landing -- 鎌_片手落下着地","105000051":"Sickle _ one-handed fall landing (rod) -- 鎌_片手落下着地(棒)","105000100":"Sickle _ one-handed entertainment 1 -- 鎌_片手タメ1","105000101":"Sickle _ one-handed entertainment 1 (stick) -- 鎌_片手タメ1(棒)","105000105":"Sickle _ one-handed 1_ maximum -- 鎌_片手タメ1_最大","105000106":"Sickle _ one-handed 1_ max (stick) -- 鎌_片手タメ1_最大(棒)","105000110":"Sickle _ one-handed Entertainment 2 -- 鎌_片手タメ2","105000111":"Sickle _ one hand Entertainment 2 (stick) -- 鎌_片手タメ2(棒)","105000115":"Sickle _ one-handed 2_ maximum -- 鎌_片手タメ2_最大","105000116":"Sickle _ one-handed 2_ max (stick) -- 鎌_片手タメ2_最大(棒)","105000200":"Sickle _ Two hands usually one -- 鎌_両手通常1","105000201":"Sickle _ Two Hands usually 1 (stick) -- 鎌_両手通常1(棒)","105000210":"Sickle _ Two Hands usually 2 -- 鎌_両手通常2","105000211":"Sickle _ Two Hands usually 2 (stick) -- 鎌_両手通常2(棒)","105000220":"Sickle _ Two hands usually three -- 鎌_両手通常3","105000221":"Sickle _ Two Hands usually 3 (stick) -- 鎌_両手通常3(棒)","105000230":"Sickle _ two-handed jump -- 鎌_両手ジャンプ1","105000231":"Sickle _ two-handed jump 1 (stick) -- 鎌_両手ジャンプ1(棒)","105000240":"Sickle _ two-handed fall loop -- 鎌_両手落下ループ","105000241":"Sickle _ two-handed fall loop (rod) -- 鎌_両手落下ループ(棒)","105000250":"Sickle _ two-handed fall landing -- 鎌_両手落下着地","105000251":"Sickle _ two-handed fall landing (rod) -- 鎌_両手落下着地(棒)","105000300":"Sickle _ two-handed entertainment 1 -- 鎌_両手タメ1","105000301":"Sickle _ two-handed Entertainment 1 (stick) -- 鎌_両手タメ1(棒)","105000305":"Sickle _ two-handed 1_ Max -- 鎌_両手タメ1_最大","105000306":"Sickle _ two-handed 1_ max (stick) -- 鎌_両手タメ1_最大(棒)","105000310":"Sickle _ two-handed Entertainment 2 -- 鎌_両手タメ2","105000311":"Sickle _ two-handed Entertainment 2 (stick) -- 鎌_両手タメ2(棒)","105000315":"Sickle _ two-handed 2_ Max -- 鎌_両手タメ2_最大","105000316":"Sickle _ two-handed 2_ max (stick) -- 鎌_両手タメ2_最大(棒)","105000400":"Sickle _ Left Hand -- 鎌_左手","105000401":"Sickle _ Left hand (stick) -- 鎌_左手(棒)","105000410":"Sickle _ one hand close -- 鎌_片手近距離","105000411":"Sickle _ one hand short distance (stick) -- 鎌_片手近距離(棒)","105000420":"Sickle _ Both hands close -- 鎌_両手近距離","105000421":"Sickle _ Both hands short distance (stick) -- 鎌_両手近距離(棒)","105000430":"Sickle _ guard _ one hand -- 鎌_ガード_片手","105000431":"Sickle _ guard _ one hand (stick) -- 鎌_ガード_片手(棒)","105000440":"Sickle _ guard _ both hands -- 鎌_ガード_両手","105000441":"Sickle _ guard _ both hands (stick) -- 鎌_ガード_両手(棒)","105000450":"Sickle _ Paris -- 鎌_パリィ","105000451":"Sickle _ Paris (stick) -- 鎌_パリィ(棒)","105000470":"Sickle _ Large Throw -- 鎌_大型投げ","105000490":"Sickle _ Fall Throw -- 鎌_落下投げ","105000500":"Behind the Sickle -- 鎌_背後","105000505":"Sickle _ Reinforced behind -- 鎌_強化背後","105000510":"Sickle _ after Paris -- 鎌_パリィ後","105000515":"Paris after strengthening sickle -- 鎌_強化パリィ後","105000516":"Sickle _ After strengthening Paris (bar) -- 鎌_強化パリィ後(棒)","105000520":"Sickle _ one-handed Dash -- 鎌_片手ダッシュ","105000521":"Sickle _ one-handed dash (stick) -- 鎌_片手ダッシュ(棒)","105000530":"Sickle _ Both hands dash -- 鎌_両手ダッシュ","105000531":"Sickle _ both hands dash (stick) -- 鎌_両手ダッシュ(棒)","105000540":"Sickle _ one hand step before -- 鎌_片手ステップ前","105000541":"Sickle _ one hand step before (stick) -- 鎌_片手ステップ前(棒)","105000580":"Sickle _ hands before step -- 鎌_両手ステップ前","105000581":"Sickle _ two-handed step before (stick) -- 鎌_両手ステップ前(棒)","105000600":"Sickle _ Parigard -- 鎌_パリィガード","105000601":"Sickle _ Parigard (stick) -- 鎌_パリィガード(棒)","105100000":"A single hand usually one sword -- 大曲剣_片手通常1","105100001":"One-handed sword _ usually 1_ range -- 大曲剣_片手通常1_範囲","105100010":"One-handed sword _ usually two -- 大曲剣_片手通常2","105100020":"One-handed sword _ usually three -- 大曲剣_片手通常3","105100030":"One-handed Jump 1 -- 大曲剣_片手ジャンプ1","105100040":"One-handed Fall loop -- 大曲剣_片手落下ループ","105100050":"One-handed fall landing -- 大曲剣_片手落下着地","105100100":"One-handed Entertainment 1 -- 大曲剣_片手タメ1","105100105":"One-handed 1_ Max -- 大曲剣_片手タメ1_最大","105100110":"One-handed Entertainment 2 -- 大曲剣_片手タメ2","105100115":"One-handed 2_ Max -- 大曲剣_片手タメ2_最大","105100200":"Two-handed sword _ usually one -- 大曲剣_両手通常1","105100210":"One-handed sword _ two hands usually -- 大曲剣_両手通常2","105100220":"Masterpiece Sword _ Two hands usually three -- 大曲剣_両手通常3","105100230":"Two-handed jump one sword -- 大曲剣_両手ジャンプ1","105100240":"Two-handed Fall loop -- 大曲剣_両手落下ループ","105100250":"Two-handed fall landing -- 大曲剣_両手落下着地","105100300":"A sword with two hands -- 大曲剣_両手タメ1","105100305":"Masterpiece Sword _ two-handed 1_ Max -- 大曲剣_両手タメ1_最大","105100310":"A sword with two hands -- 大曲剣_両手タメ2","105100315":"Masterpiece Sword _ two-handed 2_ Max -- 大曲剣_両手タメ2_最大","105100400":"The left hand -- 大曲剣_左手","105100410":"One-handed Sword -- 大曲剣_片手近距離","105100420":"Two-handed Sword -- 大曲剣_両手近距離","105100430":"One-handed sword _ guards -- 大曲剣_ガード_片手","105100440":"Two-handed sword _ guards -- 大曲剣_ガード_両手","105100450":"A Paris Sword -- 大曲剣_パリィ","105100470":"A large throw -- 大曲剣_大型投げ","105100490":"A cast sword _ a falling throw -- 大曲剣_落下投げ","105100500":"Behind the Sword -- 大曲剣_背後","105100501":"Behind the Sword _ the second hammer -- 大曲剣_背後_二撃目","105100505":"A masterpiece behind the reinforcement -- 大曲剣_強化背後","105100506":"Two Sword _ Reinforced behind _ -- 大曲剣_強化背後_二段目","105100510":"Paris after the sword -- 大曲剣_パリィ後","105100511":"A Paris Sword _ second Hammer -- 大曲剣_パリィ後_二撃目","105100515":"A Paris after strengthening the sword -- 大曲剣_強化パリィ後","105100516":"A-Paris Sword _ after strengthening two -- 大曲剣_強化パリィ後_二段目","105100517":"A-Paris Sword _ after strengthening Sandanme -- 大曲剣_強化パリィ後_三段目","105100520":"One-handed Dash -- 大曲剣_片手ダッシュ","105100530":"Two-handed Dash -- 大曲剣_両手ダッシュ","105100540":"One hand step before the sword -- 大曲剣_片手ステップ前","105100580":"Two-handed sword before step -- 大曲剣_両手ステップ前","105100600":"A Parigard Sword -- 大曲剣_パリィガード","105100610":"Behind the transition -- 大曲剣_背後遷移","105100615":"The behind-the-back transition _ missed -- 大曲剣_背後遷移_空振り","105100700":"Masterpiece: the first half -- 大曲剣_回転:前半","105100710":"A Nagi-Spinning sword -- 大曲剣_回転なぎ払い","105100720":"Masterpiece Sword _ Spinning slams -- 大曲剣_回転叩きつけ","105101000":"[116] Tomb King Song Sword _ one hand usually 1 -- 【116】墓王の曲剣_片手通常1","105101010":"[116] Tomb King Song Sword _ one hand usually two -- 【116】墓王の曲剣_片手通常2","105101020":"[116] Tomb King Song Sword _ one hand usually three -- 【116】墓王の曲剣_片手通常3","105101030":"[116] Tomb King Song Sword _ one-handed jump 1 -- 【116】墓王の曲剣_片手ジャンプ1","105101040":"[116] Tomb King Song Sword _ one-handed fall loop -- 【116】墓王の曲剣_片手落下ループ","105101050":"[116] Tomb King Song Sword _ one-handed fall landing -- 【116】墓王の曲剣_片手落下着地","105101100":"[116] Tomb King Song Sword _ one-handed entertainment 1 -- 【116】墓王の曲剣_片手タメ1","105101110":"[116] Tomb King Song Sword _ one-handed Entertainment 2 -- 【116】墓王の曲剣_片手タメ2","105101200":"[116] Tomb King Song Sword _ Two Hands usually one -- 【116】墓王の曲剣_両手通常1","105101210":"[116] Tomb King Song Sword _ Two Hands usually 2 -- 【116】墓王の曲剣_両手通常2","105101220":"[116] Tomb King Song Sword _ Two Hands usually three -- 【116】墓王の曲剣_両手通常3","105101230":"[116] Tomb King Song Sword _ two-handed jump 1 -- 【116】墓王の曲剣_両手ジャンプ1","105101240":"[116] Tomb King Song Sword _ Both Hands Fall loop -- 【116】墓王の曲剣_両手落下ループ","105101250":"[116] Tomb King Song Sword _ Both Hands fall landing -- 【116】墓王の曲剣_両手落下着地","105101300":"[116] Tomb King Song Sword _ two-handed entertainment 1 -- 【116】墓王の曲剣_両手タメ1","105101310":"[116] Tomb King Song Sword _ two-handed Entertainment 2 -- 【116】墓王の曲剣_両手タメ2","105101400":"[116] Tomb King Song Sword _ left Hand -- 【116】墓王の曲剣_左手","105101410":"[116] Tomb King Song Sword _ one hand short distance -- 【116】墓王の曲剣_片手近距離","105101420":"[116] Tomb King Song Sword _ both hands close range -- 【116】墓王の曲剣_両手近距離","105101430":"[116] Tomb King Song Sword _ guard _ one hand -- 【116】墓王の曲剣_ガード_片手","105101440":"[116] Tomb King Song Sword _ guard _ both hands -- 【116】墓王の曲剣_ガード_両手","105101450":"[116] Tomb King Song Sword _ Paris -- 【116】墓王の曲剣_パリィ","105101490":"[116] Tomb King Song Sword _ Falling Throw -- 【116】墓王の曲剣_落下投げ","105101500":"[116] Tomb King Song Sword _ behind -- 【116】墓王の曲剣_背後","105101501":"[116] Tomb King Song Sword _ Behind the second hammer -- 【116】墓王の曲剣_背後_二撃目","105101505":"[116] Tomb King Song Sword _ reinforced behind -- 【116】墓王の曲剣_強化背後","105101506":"[116] Tomb King Song Sword _ reinforced behind _ Two -- 【116】墓王の曲剣_強化背後_二段目","105101510":"[116] Tomb King Song Sword _ after Paris -- 【116】墓王の曲剣_パリィ後","105101511":"[116] Tomb King Song Sword _ after Paris _ Second hammer -- 【116】墓王の曲剣_パリィ後_二撃目","105101515":"[116] Tomb King Song Sword _ after strengthening Paris -- 【116】墓王の曲剣_強化パリィ後","105101516":"[116] Tomb King Song Sword _ after strengthening Paris _ two -- 【116】墓王の曲剣_強化パリィ後_二段目","105101517":"[116] Tomb King Song Sword _ after strengthening Paris _ Sandanme -- 【116】墓王の曲剣_強化パリィ後_三段目","105101520":"[116] Tomb King Song Sword _ one handed Dash -- 【116】墓王の曲剣_片手ダッシュ","105101530":"[116] Tomb King Song Sword _ both hands dash -- 【116】墓王の曲剣_両手ダッシュ","105101540":"[116] Tomb King Song Sword _ one hand step before -- 【116】墓王の曲剣_片手ステップ前","105101580":"[116] Tomb King Song Sword _ Hands before step -- 【116】墓王の曲剣_両手ステップ前","105101600":"[116] Tomb King Song Sword _ Parigard -- 【116】墓王の曲剣_パリィガード"},"BonfireWarpParam":{"0":"[usually bonfire] base bonfire -- 【通常篝火】拠点篝火","1":"[Normal bonfire] Tutorial bonfire -- 【通常篝火】チュートリアル篝火","2":"The big wall of Le dress -- ルドレスの大壁","3":"[usually bonfire] the last tower roof of the rampart -- 【通常篝火】城壁最後の塔 屋上","4":"[Boss Bonfire] Tracker (saloon) -- 【ボス篝火】追跡者(大広間)","5":"[Boss Bonfire] Full Armor beast (gate) -- 【ボス篝火】フルアーマー獣(門)","6":"[Boss Bonfire] Dragon Angel (Mausoleum, Segunda Room) -- 【ボス篝火】竜の御使い(霊廟・グンダ部屋)","7":"* The large wall of the NT version dress -- ※NT版 ルドレスの大壁","8":"* NT version [normal bonfire] wall last tower roof -- ※NT版 【通常篝火】城壁最後の塔 屋上","9":"[Normal bonfire] Start (back of the saloon) -- 【通常篝火】スタート(大広間奥)","10":"[Boss Bonfire] Guardian Knight of the Dragon (bridge) -- 【ボス篝火】竜の守護騎士(橋)","11":"[Boss Bonfire] Prince of Darkness (innermost) -- 【ボス篝火】闇の双皇子(最奥)","12":"[Normal bonfire] Start (point overlooking the city) -- 【通常篝火】スタート(街を見下ろせるポイント)","13":"【 Normal Bonfire 】 shortcut route -- 【通常篝火】ショートカットルート途中","14":"[Boss Bonfire] Colossus (innermost) -- 【ボス篝火】巨像(最奥)","15":"[Normal bonfire] Start bonfire -- 【通常篝火】スタート篝火","16":"[Boss Bonfire] King of the Storm -- 【ボス篝火】嵐の王","17":"[Normal bonfire] start (where overlooking the forest) -- 【通常篝火】スタート(森を見下ろせる場所)","18":"【 boss Bonfire 】 Crystal Elders (connection to the Church of the Basilica) -- 【ボス篝火】結晶の古老(聖堂教会への接続)","19":"[Boss Bonfire] observer of the Abyss + Wolf of caries -- 【ボス篝火】深淵の監視者+蝕の狼","20":"[Normal bonfire] Start (small church entrance) -- 【通常篝火】スタート(小教会入口)","21":"[Boss Bonfire] Cardinal (bottom) -- 【ボス篝火】枢機卿団(最奥)","22":"[Boss Bonfire] Rosalia + NPC (Saint Room) -- 【ボス篝火】ロザリア+NPC(聖女部屋)","23":"【 Normal bonfire 】 Bonfire Church -- 【通常篝火】篝火教会","24":"[Boss Bonfire] Witch of Moonlight -- 【ボス篝火】月光の魔女","25":"[Boss Bonfire] Salivan -- 【ボス篝火】サリヴァーン","26":"[Boss Bonfire] Hallec (Anole towards the bottom) -- 【ボス篝火】ハレック(アノール方面最奥)","27":"【 Normal bonfire 】 underground Lake entrance -- 【通常篝火】地底湖入口","28":"[Normal bonfire] underground dungeon exit -- 【通常篝火】地下ダンジョン出口","29":"[Normal bonfire] underground dungeon entrance -- 【通常篝火】地下ダンジョン入口","30":"[Boss Bonfire] Sand worm (sub route underground lake) -- 【ボス篝火】サンドワーム(サブルート地底湖)","31":"【 boss Bonfire 】 Ash Daemon (sub Route underground lake) -- 【ボス篝火】灰のデーモン(サブルート地底湖)","32":"[Normal bonfire] Start (Dungeon entrance) -- 【通常篝火】スタート(地下牢入口)","33":"[Boss Bonfire] King of the Dead -- 【ボス篝火】死霊の王"},"BudgetParam":{"0":"Default (delete not allowed) -- デフォルト(削除禁止)"},"Bullet":{"0":"Test -- テスト","1":"Magic Test -- 魔法テスト","2":"Funnel Test -- ファンネルテスト","3":"Flying Dragon Breath Test -- 飛竜 ブレステスト","4":"Automatic Cyclic object destruction -- 自動巡回オブジェ破壊用","50":"Bonfire Recovery effect -- かがり火回復効果","60":"Bullet Random Number Test _ Parent -- 弾丸乱数テスト_親","61":"Bullet Random number Test child -- 弾丸乱数テスト_子","62":"Long distance Magic: Drilled Flames -- 遠距離魔法:穿つ炎_出始め","63":"Long distance Magic: Drilled Flames _ Parents -- 遠距離魔法:穿つ炎_親","64":"Long distance Magic: Drilled Flames _ Search Bullets -- 遠距離魔法:穿つ炎_検索弾","65":"Long distance Magic: Drilled Fire Child -- 遠距離魔法:穿つ炎_子","75":"Also licked fire spread judgment bullet -- チロチロ延焼判定弾","76":"Also licked fire body -- チロチロ延焼本体","77":"Also licked fire spread judgment bullet (for black jar) -- チロチロ延焼判定弾(黒壷用)","78":"Also licked fire body (for black Jar) -- チロチロ延焼本体(黒壷用)","100":"Throwing Knives -- 投げナイフ","101":"Poison-throwing knives -- 毒投げナイフ","110":"Fire bottle [Parent] -- 火炎瓶【親】","111":"Fire bottle [child] -- 火炎瓶【子】","112":"[For debugging] flame bottle [Parent] -- [デバッグ用]火炎瓶【親】","113":"[For debugging] fire bottle [child] -- [デバッグ用]火炎瓶【子】","115":"Black Flame bottle [parent] -- 黒火炎瓶【親】","116":"Black Flame bottle [child] -- 黒火炎瓶【子】","120":"Each time a [parent] -- またたびA【親】","121":"Each time a child -- またたびA【子】","122":"Each time b [parent] -- またたびB【親】","123":"The Child B -- またたびB【子】","130":"Convenient stone [parent] -- 便利石【親】","131":"Convenient stone [child] -- 便利石【子】","132":"Convenient stone [grandchild] -- 便利石【孫】","150":"The parent of a dung dumpling -- 糞団子【親】","151":"Son of a dumpling -- 糞団子【子】","160":"EST not available [parent] -- エスト使用不可【親】","161":"EST not available [child] -- エスト使用不可【子】","170":"bleeding treatment [State recovery] -- 出血治療【状態回復】","171":"bleeding treatment [resistance recovery] -- 出血治療【耐性回復】","180":"Poison treatment [State recovery] -- 毒治療【状態回復】","181":"Poison treatment [Resilient recovery] -- 毒治療【耐性回復】","190":"Toxic treatment [State recovery] -- 猛毒治療【状態回復】","191":"Toxic treatment [Resilient recovery] -- 猛毒治療【耐性回復】","220":"Elixir [State Recovery] -- エリクサー【状態回復】","221":"Elixir [Recovery of bleeding immunity] -- エリクサー【出血耐性回復】","222":"Elixir [Poison tolerance recovery] -- エリクサー【毒耐性回復】","223":"Elixir [Deadly poison resistant recovery] -- エリクサー【猛毒耐性回復】","226":"Elixir [HP Recovery] -- エリクサー【HP回復】","300":"Quick Knives -- クイックナイフ","301":"Quick Poison Knife -- クイック毒ナイフ","302":"Quick Bleeding knife -- クイック出血ナイフ","310":"Quick Flame Bottle [parent] Search Bullets -- クイック火炎瓶【親】検索弾","315":"Quick Black Flame jar [parent] Search Bullets -- クイック黒火炎瓶【親】検索弾","340":"Caries State _ attracting -- 蝕状態_引き寄せ","341":"Caries status _ attracting _ recovery -- 蝕状態_引き寄せ_回復","400":"[DLC] Talking stone a [fly] -- 【DLC】しゃべる石A【飛ぶ】","401":"[DLC] Talking stone a [talking] -- 【DLC】しゃべる石A【しゃべる】","405":"[DLC] talking stone b [Fly] -- 【DLC】しゃべる石B【飛ぶ】","406":"[DLC] talking stone b [talking] -- 【DLC】しゃべる石B【しゃべる】","410":"[DLC] Talking stone c [fly] -- 【DLC】しゃべる石C【飛ぶ】","411":"[DLC] Talking stone c [talking] -- 【DLC】しゃべる石C【しゃべる】","415":"[DLC] talking stone d [fly] -- 【DLC】しゃべる石D【飛ぶ】","416":"[DLC] Talking stone D [speaking] -- 【DLC】しゃべる石D【しゃべる】","420":"[DLC] Talking stone e [fly] -- 【DLC】しゃべる石E【飛ぶ】","421":"[DLC] Talking stone e [talking] -- 【DLC】しゃべる石E【しゃべる】","500":"Ordinary arrows -- 普通の矢","501":"Big arrows -- 大きな矢","502":"Feather Arrow -- 羽根矢","503":"Arrows -- 火矢","504":"Poison -- 毒矢","505":"Mon Mitsuya -- 月光矢","506":"Tree Arrow -- 木の矢","507":"The arrow of the dragon hunting -- 竜狩りの矢","510":"Ordinary arrow _ Move shot -- 普通の矢_移動撃ち","511":"Normal arrow _ Diffuse arrow 1 -- 普通の矢_拡散矢1","512":"Normal arrow _ Diffuse Arrow 2 -- 普通の矢_拡散矢2","513":"Normal arrow _ Spread Arrow 3 -- 普通の矢_拡散矢3","514":"Normal arrow Fire -- 普通の矢_連射","540":"Mantella _ Moving Shot -- 毒矢_移動撃ち","541":"Mantella _ Diffuse Arrow 1 -- 毒矢_拡散矢1","542":"Mantella _ Diffuse Arrow 2 -- 毒矢_拡散矢2","543":"Mantella _ diffusion Arrow 3 -- 毒矢_拡散矢3","544":"Mantella _ Blazing -- 毒矢_連射","570":"Dragon Hunt Arrow -- 竜狩りの矢_貫通弾","9000":"Bomb ritual: Explosive bullets around -- ボム儀式:周囲爆発弾","9100":"Bomb ritual: Target Search Bullets _ host lv.20 or less -- ボム儀式:ターゲット検索弾_ホストLv.20 以下","9101":"Bomb ritual: Target Search Bullets _ host lv.40 or less -- ボム儀式:ターゲット検索弾_ホストLv.40 以下","9102":"Bomb ritual: Target Search Bullets _ host lv.60 or less -- ボム儀式:ターゲット検索弾_ホストLv.60 以下","9103":"Bomb ritual: Target Search Bullets _ host lv.80 or less -- ボム儀式:ターゲット検索弾_ホストLv.80 以下","9104":"Bomb ritual: Target Search Bullets _ host lv.100 or less -- ボム儀式:ターゲット検索弾_ホストLv.100 以下","9105":"Bomb ritual: Target Search Bullets _ host lv.120 or less -- ボム儀式:ターゲット検索弾_ホストLv.120 以下","9106":"Bomb ritual: Target Search Bullets _ host lv.140 or less -- ボム儀式:ターゲット検索弾_ホストLv.140 以下","9107":"Bomb ritual: Target Search Bullets _ host lv.160 or less -- ボム儀式:ターゲット検索弾_ホストLv.160 以下","9108":"Bomb ritual: Target Search Bullets _ host lv.180 or less -- ボム儀式:ターゲット検索弾_ホストLv.180 以下","9109":"Bomb ritual: Target Search Bullets _ host lv.200 or less -- ボム儀式:ターゲット検索弾_ホストLv.200 以下","9110":"Bomb ritual: Target Search Bullets _ host lv.250 or less -- ボム儀式:ターゲット検索弾_ホストLv.250 以下","9111":"Bomb ritual: Target Search Bullets _ host lv.300 or less -- ボム儀式:ターゲット検索弾_ホストLv.300 以下","9112":"Bomb ritual: Target Search Bullets _ host lv.400 or less -- ボム儀式:ターゲット検索弾_ホストLv.400 以下","9113":"Bomb ritual: Target Search Bullets _ host lv.500 or less -- ボム儀式:ターゲット検索弾_ホストLv.500 以下","9114":"Bomb ritual: Target Search Bullets _ host lv.600 or less -- ボム儀式:ターゲット検索弾_ホストLv.600 以下","9115":"Bomb ritual: Target Search Bullets _ host lv.700 or less -- ボム儀式:ターゲット検索弾_ホストLv.700 以下","9116":"Bomb ritual: Target Search Bullets _ host lv.800 or less -- ボム儀式:ターゲット検索弾_ホストLv.800 以下","9920":"Oil area ablaze [system] -- 油領域炎上【システム】","100000":"Map gimmick general-purpose explosive barrels -- マップギミック汎用 爆発樽","100010":"Map gimmick general-purpose combustion -- マップギミック汎用 燃焼","130000":"Protomap Exploding Barrels -- プロトマップ 爆発する樽","138000":"Dungeon Arrows -- ダンジョン 火矢","138001":"Dungeon Arrows (Speed early) -- ダンジョン 火矢(速度早い)","139000":"Dungeon Objects _ Magic -- 地下牢 器オブジェ_魔法","139001":"Dungeon Object _ Magic (explosion) -- 地下牢 器オブジェ_魔法(爆発)","149000":"FDP proto-oil jar [toss] -- FDPプロト 油壷【投げ】","149001":"FDP proto-oil jar [impact] -- FDPプロト 油壷【着弾】","149010":"FDP proto-oil jar (obj destruction) -- FDPプロト 油壷(Obj破壊)","149011":"FDP proto-oil jar (obj destruction) [Impact] -- FDPプロト 油壷(Obj破壊)【着弾】","149020":"FDP proto Flame bottle [throw] -- FDPプロト 火炎瓶【投げ】","149021":"FDP proto flame bottle [impact] -- FDPプロト 火炎瓶【着弾】","1070090":"c1070_ New Skeleton _ a flame vase -- c1070_新スケルトン_火炎壺","1070091":"c1070_ New Skeleton _ Flame vase [Impact] -- c1070_新スケルトン_火炎壺【着弾】","1070230":"c1070_ New Skeleton _ Bow -- c1070_新スケルトン_弓","1100800":"Dead Soldier Crossbow -- 亡者兵士 クロスボウ","1100801":"Dead Soldier Flame Crossbow -- 亡者兵士 炎クロスボウ","1100810":"Dead soldier Oil Pot -- 亡者兵士 油壺","1100811":"Dead soldier oil pot [impact] -- 亡者兵士 油壺【着弾】","1100820":"Dead Soldier Flame Bottle -- 亡者兵士 火炎瓶","1100821":"Dead Soldier Flame bottle [Impact] -- 亡者兵士 火炎瓶【着弾】","1100822":"Dead Soldier Flame Bottle [impact thereafter] -- 亡者兵士 火炎瓶【着弾その後】","1100823":"Dead Soldier Flame Bottle [impact thereafter] -- 亡者兵士 火炎瓶【着弾その後のその後】","1130700":"Caries slug: caries vomiting -- 蝕ナメクジ:蝕吐き","1130710":"Caries Slug: Vomit (short) -- 蝕ナメクジ:蝕吐き(短)","1130800":"Caries slugs: Ground search bullets -- 蝕ナメクジ:地面検索弾","1130801":"Caries Slugs: damage accumulated -- 蝕ナメクジ:蝕溜まりダメージ","1180700":"Baxtenife throwing -- バクステナイフ投げ","1180710":"Knife throwing -- ナイフ投げ","1180720":"Step knife throwing -- ステップナイフ投げ","1200190":"c1200_ Dwarf Man (Hatchet/ice-Ax) _ Blowgun (1) -- c1200_矮小人(ハチェット/ ピッケル)_吹き矢(1)","1200191":"c1200_ Dwarf Man (Hatchet/ice-Ax) _ Blowgun (2) -- c1200_矮小人(ハチェット/ ピッケル)_吹き矢(2)","1200240":"c1200_ Dwarf (Hatchet/ice-AX) _ A flame pot thrower -- c1200_矮小人(ハチェット/ ピッケル)_火炎壺 投げ","1200241":"c1200_ Dwarf (Hatchet/ice-AX) _ Flame Pots landed -- c1200_矮小人(ハチェット/ ピッケル)_火炎壺 着弾","1210340":"Poison spitting -- 毒吐き","1210360":"Estrus induced test -- 発情誘発テスト","1210370":"Blue Magic 1 -- ブルー 魔法1","1210380":"Blue Magic 2 Body -- ブルー 魔法2 本体","1210381":"Blue Magic 2 Landing -- ブルー 魔法2 着弾","1210390":"Blue Range Recovery -- ブルー 範囲回復","1220020":"Firing maggots -- ウジ吐き_発射","1220021":"Maggots spitting _ Search bullets -- ウジ吐き_検索弾","1220022":"The Uzi spitting -- ウジ吐き_着弾","1220030":"Uzi hit effect Search bullets -- ウジヒットエフェクト検索弾","1220031":"Uzi hit effect -- ウジヒットエフェクト","1230740":"Projection Magic -- 投射魔法","1240700":"c1240 Poor dead _ a flame vase [throwing] -- c1240貧民亡者_火炎壺【投げ】","1240701":"c1240 Poor dead _ flame pots [Impact] -- c1240貧民亡者_火炎壺【着弾】","1240710":"c1240 Poor dead _ oil pot -- c1240貧民亡者_油壺","1240711":"c1240 Poor dead _ oil pot [Impact] -- c1240貧民亡者_油壺【着弾】","1250700":"C1250_ Poor Dead Elite _ fire-blowing -- c1250_貧民亡者エリート_火吹き","1260700":"C1260 Poor dead servant _ throwing mortar -- c1260貧民亡者下男_臼投げ","1260701":"C1260 the poor dead servant _ a mortar throw (poised) -- c1260貧民亡者下男_臼投げ(構え)","1280700":"C1280_ Shin Ojo Knight (bow): shooting -- c1280_新王城騎士(弓):射撃","1290150":"Force -- フォース","1290190":"Pillar of Light: Wall Search -- 光の柱:壁検索","1290191":"Pillar of Light: Floor Search -- 光の柱:床検索","1290192":"Pillar of Light: Impact -- 光の柱:着弾","1290193":"Pillar of Light: shock wave at trigger -- 光の柱:発動時の衝撃波","1290194":"Pillar of Light: Wall search (short distance) -- 光の柱:壁検索(近距離)","1290195":"Pillar of Light: Wall search (target above) -- 光の柱:壁検索(ターゲット真上)","1290330":"Force -- フォース","1290380":"Axe Throwing _ Right -- 斧投擲_右","1290381":"Ax Throwing _ Left -- 斧投擲_左","1310180":"Chill Breath (parent) -- 冷気ブレス(親)","1310181":"Chill Breath (Child) -- 冷気ブレス(子)","1310182":"Chill Breath _ Decal (parent) -- 冷気ブレス_デカール(親)","1310183":"Chill Breath (Child) -- 冷気ブレス(子)","1310700":"Constant cold air (outbreak bullet) -- 常時発生冷気(発生弾)","1310701":"Constant cold air (impact) -- 常時発生冷気(着弾)","1310710":"Always raised for cold air decals -- 常時発生冷気 デカール用","1320112":"Mass of floating crystals (MP recovery bullets) -- 浮遊する結晶の塊(MP回復弾)","1320140":"High Speed straight line Magic (launch) -- 高速直線魔法(発射)","1320141":"Fast Line Magic (search) -- 高速直線魔法(検索)","1320142":"High Speed straight line magic (impact) -- 高速直線魔法(着弾)","1320143":"High Speed straight line magic (remaining) -- 高速直線魔法(残存)","1320150":"Drenched crystal bullets (parent) -- 降り注ぐ結晶弾(親)","1320151":"Drenched crystal bullets (hygiene) -- 降り注ぐ結晶弾(衛生)","1320152":"Drenched Crystal bullets (child) -- 降り注ぐ結晶弾(子)","1320153":"Falling crystal bullets (explosion) -- 降り注ぐ結晶弾(爆発)","1320155":"Falling crystal Bullets (parent): For a long distance -- 降り注ぐ結晶弾(親):遠距離用","1320160":"Proximity explosion (Launch) -- 近接爆発(発射)","1320161":"Melee explosion (bullet) -- 近接爆発(弾)","1320170":"Crystal Wall (PC follower) -- 結晶壁(PC追従)","1320190":"Pillar of Light: Wall Search -- 光の柱:壁検索","1320191":"Pillar of Light: Floor Search -- 光の柱:床検索","1320192":"Pillar of Light: Impact -- 光の柱:着弾","1320193":"Pillar of Light: shock wave at trigger -- 光の柱:発動時の衝撃波","1320194":"Pillar of Light: Wall search (short distance) -- 光の柱:壁検索(近距離)","1320195":"Pillar of Light: Wall search (target above) -- 光の柱:壁検索(ターゲット真上)","1340700":"Soul Arrow -- ソウルの矢","1340710":"Disturbed Soul Spear -- 乱れるソウルの槍","1340720":"Oil Bullet (Straight line: Medium distance) -- 油弾(直線:中距離)","1340730":"Oil Bullets (Nagi) -- 油弾(なぎ払い)","1340740":"Oil Bullet (Straight line: short distance) -- 油弾(直線:近距離)","1380700":"Magic Attack (weak) -- 魔法攻撃(弱)","1380710":"Magic Attack (Strong) -- 魔法攻撃(強)","1390400":"The assassin of the c1390_ Snake: Breath -- c1390_蛇人の暗殺者:ブレス","1391032":"C1391_ Snake man Assassin (Kusarigama): a3002 return -- c1391_蛇人の暗殺者(鎖鎌):a3002戻り","1391060":"Assassins of C1391_ (Kusarigama): Flame -- c1391_蛇人の暗殺者(鎖鎌):火炎","1391061":"C1391_ Snake man Assassin (Kusarigama): Poison Mist -- c1391_蛇人の暗殺者(鎖鎌):毒霧","1391132":"C1391_ Snake man Assassin (Kusarigama): a3014 return -- c1391_蛇人の暗殺者(鎖鎌):a3014戻り","1391140":"C1391_ Snake man Assassin (Kusarigama): a3015 return -- c1391_蛇人の暗殺者(鎖鎌):a3015戻り","1391141":"C1391_ Snake man Assassin (Kusarigama): a3016 return -- c1391_蛇人の暗殺者(鎖鎌):a3016戻り","1391150":"C1391_ Snake man Assassin (Kusarigama): a3017 return -- c1391_蛇人の暗殺者(鎖鎌):a3017戻り","1391151":"C1391_ Snake man Assassin (Kusarigama): a3018 return -- c1391_蛇人の暗殺者(鎖鎌):a3018戻り","1410300":"c1410_ Silver Knight: shooting -- c1410_銀騎士:射撃","1410310":"c1410_ Silver Knight: Cumshots -- c1410_銀騎士:強射","2070700":"Breath (with Porotsu) -- ブレス(ポロッと)","2070710":"Breath (continued) -- ブレス(継続)","2080130":"Poison Blood spitting _ firing -- 毒血吐き_発射","2080131":"Poison Blood Spitting _ landing -- 毒血吐き_着弾","2090700":"Straight Breath -- 直線ブレス","2090710":"Whack Breath -- 薙ぎブレス","2090720":"Air Breath -- 空中ブレス","2100700":"c2000_ Drifting stuff: spit something out -- c2000_漂うもの:何かを吐く","2120130":"Spitting Spit -- 唾吐き","2140010":"Petrified Breath -- 石化ブレス","2140020":"Jump & Breath -- ジャンプ&ブレス","2140021":"Jump & Breath Landing -- ジャンプ&ブレス 着弾","2180040":"C2180_ Maggots: Vomit spitting _ firing -- c2180_蛆人:ゲロ吐き_発射","2180110":"C2180_ Maggots: Magic -- c2180_蛆人:魔法","2180200":"C2180_ Maggots: Fire spreading -- c2180_蛆人:延焼","2190700":"C2190_ Gargoyle (Light): Saigi -- c2190_ガーゴイル(灯火):薙ぎ払い炎玉","2190701":"C2190_ Gargoyle (Light): Saigi Flame Ball -- c2190_ガーゴイル(灯火):薙ぎ払い炎玉その後","2190702":"C2190_ Gargoyle (Light): Saigi Flame Ball then afterwards -- c2190_ガーゴイル(灯火):薙ぎ払い炎玉その後その後","2190705":"C2190_ Gargoyle (Light): Additional Saigi -- c2190_ガーゴイル(灯火):追加薙ぎ払い炎玉","2190706":"C2190_ Gargoyle (Light): Whack Falling flame ball -- c2190_ガーゴイル(灯火):薙ぎ下がり炎玉","2190710":"C2190_ Gargoyle (Light): Slams: Fire spray -- c2190_ガーゴイル(灯火):叩きつけ:火飛沫","2190711":"C2190_ Gargoyle (Light): slams: Fire splashes then -- c2190_ガーゴイル(灯火):叩きつけ:火飛沫その後","2190720":"C2190_ Gargoyle (Light): large ignition (fire splashes) _ Before -- c2190_ガーゴイル(灯火):大発火(火飛沫)_前","2190721":"C2190_ Gargoyle (Light): large ignition (fire splashes) _ Right -- c2190_ガーゴイル(灯火):大発火(火飛沫)_右","2190722":"C2190_ Gargoyle (Light): large ignition (fire splashes) _ Left -- c2190_ガーゴイル(灯火):大発火(火飛沫)_左","2190730":"C2190_ Gargoyle (Light): Fire attack from above -- c2190_ガーゴイル(灯火):上空から発火攻撃","2210500":"c2210_ Zombie Crow (Cane upper): insane _ Firing bullets -- c2210_ゾンビカラス(杖アッパー):発狂させ_発射弾","2210501":"c2210_ Zombie Crow (Cane upper): insane _ Spreading bullets -- c2210_ゾンビカラス(杖アッパー):発狂させ_拡散弾","2210510":"c2210_ Zombie Crow (Cane upper): Magic (fire arrows) -- c2210_ゾンビカラス(杖アッパー):魔法(炎の矢)","2210540":"c2210_ Zombie Crow (Cane upper): Magic (Sangi Flame) -- c2210_ゾンビカラス(杖アッパー):魔法(薙ぎ払う炎)","2210541":"c2210_ Zombie Crow (Cane upper): Magic (Sangi Flame) -- c2210_ゾンビカラス(杖アッパー):魔法(薙ぎ払う炎)","2230200":"c2230_ Shing: Petrified Mist (forward) -- c2230_獄吏:石化の霧(前方)","2230210":"c2230_ Shing: Petrified Mist (range) Firing bullets -- c2230_獄吏:石化の霧(範囲) 発射弾","2230211":"C2230_ Shing: Mist of petrified (range) Spread bullets -- c2230_獄吏:石化の霧(範囲) 拡散弾","2230700":"Quick Turn Nakaishi breath (right turn) -- クイックターン中石化ブレス(右回転)","2230701":"Quick Turn Nakaishi breath (left turn) -- クイックターン中石化ブレス(左回転)","2230900":"Long Distance Magic: Sniper (tentative) _ Search Bullets -- 遠距離魔法:スナイパー(仮)_検索弾","2230901":"Long Distance Magic: Sniper (Provisional) _ Spread Bullets -- 遠距離魔法:スナイパー(仮)_拡散弾","2230902":"Long Distance Magic: Sniper (Provisional) _ Projectile -- 遠距離魔法:スナイパー(仮)_発射弾","2240112":"C2240_ Full Armor Beast: Sand Dust (Saigi) -- c2240_フルアーマー獣:砂埃(薙ぎ払い)","2240176":"C2240_ Full Armor beast: Snowstorm Breath -- c2240_フルアーマー獣:吹雪ブレス","2240260":"Always raised for cold air decals -- 常時発生冷気 デカール用","2250700":"c2250_ Tindalos: Thunder Breath (Search bullets) -- c2250_ティンダロス:雷ブレス(検索弾)","2250701":"c2250_ Tindalos: Thunder Breath (Derived 1) -- c2250_ティンダロス:雷ブレス(派生1)","2250702":"c2250_ Tindalos: Thunder Breath (Derived 2) -- c2250_ティンダロス:雷ブレス(派生2)","2250703":"c2250_ Tindalos: Thunder Breath (Derived 3) -- c2250_ティンダロス:雷ブレス(派生3)","2250704":"c2250_ Tindalos: Thunder Breath (derived 4) -- c2250_ティンダロス:雷ブレス(派生4)","2260700":"Barista: Search -- バリスタ:検索","2260701":"Varistor: Impact (Splash) -- バリスタ:着弾(水しぶき)","2270110":"c2270_ Stench Crab: Bubble spitting (firing) -- c2270_死臭蟹:泡吐き(発射)","2270111":"c2270_ Stench Crab: Bubble spitting (impact) -- c2270_死臭蟹:泡吐き(着弾)","3050700":"Breath: Straight Wind -- ブレス:直風","3050701":"Breath: Hot air 1 -- ブレス:熱風1","3050710":"Immediate breath: Straight Wind -- 直下ブレス:直風","3050711":"Immediate breath: Hot air 1 -- 直下ブレス:熱風1","3050720":"Like a flying flame -- 飛び散る炎のようなもの","3050721":"Like a flying flame -- 飛び散る炎のようなもの","3060700":"Breath: Fire -- ブレス:出火","3060701":"Breath: Divergent -- ブレス:末広がり","3060710":"General explosion -- 汎用爆発","3060800":"Walking breath: Drop it down -- 歩きブレス:下に落とす","3060801":"Walk breath: Leave at your feet -- 歩きブレス:足元に残す","3070700":"The Great Fire ball of chaos -- 混沌の大火球_発射弾","3070720":"The Great storm of chaos _ firing bullets -- 混沌の大嵐_発射弾","3080700":"Scales rain: Fixed -- 鱗粉の雨:固定","3080701":"Scales Rain: Bullets -- 鱗粉の雨:弾","3080710":"Big God soldier Laser: Laser -- 巨神兵レーザー:レーザー","3080711":"Big God soldier Laser: Lingering -- 巨神兵レーザー:余韻","3080712":"Big God soldier Laser: Impact -- 巨神兵レーザー:着弾","3080720":"High-speed explosion: Bullet -- 低速大爆発蝕弾:弾","3080721":"High-speed explosion: Impact -- 低速大爆発蝕弾:着弾","3100011":"A search grenade from the right hand -- 右手から出る水晶_検索弾","3100012":"The crystal that comes out of the right -- 右手から出る水晶_前兆弾","3100013":"The crystal that comes out of the right hand -- 右手から出る水晶_判定弾","3100021":"Search bullets from the left hand crystal -- 左手からでる水晶_検索弾","3100022":"The crystal that comes from the left hand -- 左手からでる水晶_前兆弾","3100023":"Judging bullets from the left hand -- 左手からでる水晶_判定弾","3100051":"Slams _ Crystal Search bullets -- 叩きつけ_結晶検索弾","3100052":"Slams _ Crystal Determination bullets -- 叩きつけ_結晶判定弾","3100061":"Dive _ Crystal Search Bullets -- 飛び込み_結晶検索弾","3100062":"Dive _ Crystal Determination bullets -- 飛び込み_結晶判定弾","3100070":"Breath -- ブレス","3100071":"Breath _ Crystal Search bullets -- ブレス_結晶検索弾","3100072":"Breath _ Crystal Determination bullets -- ブレス_結晶判定弾","3110700":"Caries vomiting -- 蝕吐き","3110710":"Smokescreen -- 煙幕","3120700":"Magic 1: Force -- 魔法1:フォース","3120710":"Magic 2: Soul Restraints: Search -- 魔法2:魂縛り:検索","3120711":"Magic 2: Soul Restraints: Judgement -- 魔法2:魂縛り:判定","3140010":"For eclipse Dripping decal -- 蝕ポタポタ デカール用","3140500":"Straight Breath _ Breath -- 直線ブレス_ブレス","3140501":"Straight Breath _ Breath (search) -- 直線ブレス_ブレス(検索)","3140502":"Straight Breath _ Breath (impact) -- 直線ブレス_ブレス(着弾)","3140510":"Saigi Bless _ Breath -- 薙ぎ払いブレス_ブレス","3140511":"Saigi Bless (search) -- 薙ぎ払いブレス_ブレス(検索)","3140512":"Saigi Breath _ Breath (impact) -- 薙ぎ払いブレス_ブレス(着弾)","3140520":"Immediate breath _ Breath -- 直下ブレス_ブレス","3140521":"Immediate Breath _ Breath (search) -- 直下ブレス_ブレス(検索)","3140522":"Immediate breath _ Breath (impact) -- 直下ブレス_ブレス(着弾)","3140530":"Glide Breath _ Breath -- 滑空ブレス_ブレス","3140531":"Glide Breath _ Breath (search) -- 滑空ブレス_ブレス(検索)","3140532":"Glide Breath _ Breath (impact) -- 滑空ブレス_ブレス(着弾)","3140540":"Hashimoto _ Swirling Breath _ bless ① -- 橋下_旋回ブレス_ブレス①","3140541":"Hashimoto _ Swirling Breath _ Breath ① (search) -- 橋下_旋回ブレス_ブレス①(検索)","3140542":"Hashimoto _ Swirling Breath _ breath ① (Impact) -- 橋下_旋回ブレス_ブレス①(着弾)","3140550":"Hashimoto _ Swirling Breath _ bless ② -- 橋下_旋回ブレス_ブレス②","3140551":"Hashimoto _ Swirling Breath _ Breath ② (search) -- 橋下_旋回ブレス_ブレス②(検索)","3140552":"Hashimoto _ Swirling Breath _ breath ② (Impact) -- 橋下_旋回ブレス_ブレス②(着弾)","3140560":"Climb 2_ appearance _ on the tower → Square _ breath -- 登る2_登場_塔上→広場_ブレス","3140562":"Climb 2_ appearance _ on tower → Square _ breath (impact) -- 登る2_登場_塔上→広場_ブレス(着弾)","3140570":"Climb 2_ another tower → square → breath withdrawal _ breath -- 登る2_別塔→広場→ブレス撤退_ブレス","3140572":"Climb 2_ Betto → square → breath withdrawal _ breath (impact) -- 登る2_別当→広場→ブレス撤退_ブレス(着弾)","3140581":"Rampage Breath A_ Ground (impact) -- 暴れブレスA_地面(着弾)","3140582":"Rampage Breath A_ Ground (decal) -- 暴れブレスA_地面(デカール)","3140591":"Rampage Breath b_ Ground (impact) -- 暴れブレスB_地面(着弾)","3140592":"Rampage Breath b_ Ground (decal) -- 暴れブレスB_地面(デカール)","3140630":"Rampage Breath b_ Ground Passage (impact) -- 暴れブレスB_地面通路(着弾)","3140631":"Rampage Breath b_ Ground Passage (decal) -- 暴れブレスB_地面通路(デカール)","3140640":"Rampage Breath A_ Ground Determination small (impact) -- 暴れブレスA_地面判定小(着弾)","3140641":"Rampage Breath A_ Ground Determination small (decal) -- 暴れブレスA_地面判定小(デカール)","3140650":"Rampage Breath B_ Ground Determination small (impact) -- 暴れブレスB_地面判定小(着弾)","3140651":"Rampage Breath B_ Ground Determination small (decal) -- 暴れブレスB_地面判定小(デカール)","3140652":"Rampage Breath B_ Ground Determination large (impact) -- 暴れブレスB_地面判定大(着弾)","3140653":"Rampage Breath B_ Ground Determination large (decal) -- 暴れブレスB_地面判定大(デカール)","3140667":"Withdrawal Breath _ Ground (impact) -- 撤退ブレス_地面(着弾)","3140668":"Withdrawal Breath _ Ground (decal) -- 撤退ブレス_地面(デカール)","3140677":"Bonfire Bless _ Ground (impact) -- 篝火ブレス_地面(着弾)","3140678":"Bonfire Breath _ Ground (decal) -- 篝火ブレス_地面(デカール)","3140687":"Left side Breath _ Ground (impact) -- 左側面ブレス_地面(着弾)","3140688":"Left side Breath _ Ground (decal) -- 左側面ブレス_地面(デカール)","3160700":"Arts: Shockwave -- アーツ:衝撃波","5010700":"Widespread storm whack: search bullets -- 広範囲嵐薙ぎ:検索弾","5010701":"Widespread storm whack: damage -- 広範囲嵐薙ぎ:ダメージ","5010710":"Wide range Storm whack second stage: Search bullets -- 広範囲嵐薙ぎ2段目:検索弾","5010711":"Wide range Storm whack second stage: damage -- 広範囲嵐薙ぎ2段目:ダメージ","5010720":"Shock Wave (line): Damage -- 衝撃波(直線):ダメージ","5030700":"Vertical Breath -- 垂直ブレス","5030701":"Flame: Divergent -- 火炎:末広がり","5030710":"Flapping attack: Tornado -- 羽ばたき攻撃:竜巻","5030711":"Flapping attack: Tornado landed -- 羽ばたき攻撃:竜巻_着弾","5120710":"Eclipse explosion -- 蝕爆発","5120720":"Caries Accumulation _ Search: Scattered Small -- 蝕溜まり_検索:散らばり小","5120721":"Accumulation of caries -- 蝕溜まり_着弾","5120730":"Caries Accumulation _ Search: Scattered Dai -- 蝕溜まり_検索:散らばり大","5120800":"Walking _ Body Damage -- 歩行_胴体ダメージ","5120810":"Traveling _ Body Damage -- 走行_胴体ダメージ","5150700":"Induction bullet: Weak waiting -- 誘導弾:待機誘導弱め","5150701":"Guided bullets: guiding and strengthening slowly -- 誘導弾:誘導強めゆっくり進む","5150702":"Guided bullets: Induction weakens quickly -- 誘導弾:誘導弱め早くすすむ","5150710":"Whack Diffusion bullets -- 薙ぎ拡散弾","5150720":"Long Penetrating Magic -- 遠距離貫通魔法","5150730":"Grave King's great Elementalers: signs-Outbreak bullets -- 墓王の大剣舞:予兆-発生弾","5150731":"Grave King's great Elementalers: signs _ Multiple -- 墓王の大剣舞:予兆_複数","5150732":"Grave King Elementalers: main body -- 墓王の大剣舞:本体","5150740":"NITs large explosion -- ニト大爆発","5160060":"Miasma breath (before HU) -- 瘴気ブレス(HU前)","5160061":"Miasma breath (before HU) -- 瘴気ブレス(HU前)","5160303":"Grave King Elementalers (outbreak bullet) -- 墓王の大剣舞(発生弾)","5170010":"Breath -- ブレス","5180430":"The real mystery: throwing -- 謎の実:投擲","5180431":"The real mystery: impact -- 謎の実:着弾","5180800":"Cursed Colossus: Mystery juice -- 呪われた巨像:謎の汁","5190700":"They yell -- 大声で叫ぶ","5190710":"Kensaki Shockwave: Search -- 剣先衝撃波:検索","5190711":"Kensaki Shock Wave: Impact -- 剣先衝撃波:着弾","5220700":"Fireball -- 火球","5220800":"Curse helmeted -- 呪詛の号令","5221700":"Fireball -- 火球","5221710":"Force -- フォース","5221800":"Curse _ Parents -- 呪詛_親","5221801":"Curse _ Child -- 呪詛_子","5222700":"Fireball -- 火球","5223700":"Fireball -- 火球","5230070":"Passage Breath 1: Wait C -- 通路ブレス1:待機C","5230071":"Passage Breath 1: Standby c_ Impact 1 -- 通路ブレス1:待機C_着弾1","5230072":"Passage Breath 1: Standby c_ Impact 2 -- 通路ブレス1:待機C_着弾2","5230130":"Outside stair breath: wait F -- 外階段ブレス:待機F","5230200":"Outside stair breath: wait g -- 外階段ブレス:待機G","5230210":"Bell tower Breath: Wait F -- 鐘楼ブレス:待機F","5230220":"Bell tower Breath: Wait g -- 鐘楼ブレス:待機G","5230250":"Poke/Single Passage breath 2: Wait C -- 突く・単通路ブレス2:待機C","5230260":"Passage Breath 3: Wait C -- 通路ブレス3:待機C","5230261":"Passage Breath 3: Standby c_ Impact 1 -- 通路ブレス3:待機C_着弾1","5230280":"Chasing PC while blessing -- ブレスしつつPCを追う","5230320":"Breath down the stairs: wait D -- 階段下方にブレス:待機D","5240100":"c5240_ Moonlight Witch: Always Torches -- c5240_月光の魔女:常時松明","5240110":"C5240_ Moonlight Witch: Earth Disgrace (ground Search) -- c5240_月光の魔女:地面汚し(地面検索)","5240111":"c5240_ Moonlight Witch: Ground Disgrace (land landing) -- c5240_月光の魔女:地面汚し(地面着弾)","5240200":"c5240_ Moonlight Witch: Long Distance Magic (fire) -- c5240_月光の魔女:掲げ時 遠距離魔法(発射)","5240201":"c5240_ Moonlight Witch: Long Distance Magic (search) -- c5240_月光の魔女:掲げ時 遠距離魔法(検索)","5240202":"c5240_ Moonlight Witch: Long Distance Magic (impact) -- c5240_月光の魔女:掲げ時 遠距離魔法(着弾)","5240203":"c5240_ Moonlight Witch: Long Distance Magic (impact) -- c5240_月光の魔女:掲げ時 遠距離魔法(着弾)","5240210":"C5240_ Moonlight Witch: Pillar (warning) -- c5240_月光の魔女:火柱(予兆)","5240211":"C5240_ Moonlight Witch: Pillar (main body) -- c5240_月光の魔女:火柱(本体)","5240212":"C5240_ Moonlight Witch: Pillar (ground) -- c5240_月光の魔女:火柱(地面)","5240220":"C5240_ Moonlight Witch: Guided Bullets -- c5240_月光の魔女:誘導弾","5240230":"c5240_ Moonlight Witch: Spread bullets -- c5240_月光の魔女:拡散弾","5240240":"c5240_ Moonlight Witch: Nagi Flame -- c5240_月光の魔女:なぎ払う炎","5270140":"c5270_ Tracker _3014 explosion -- c5270_追跡者_3014蝕爆発","5270151":"c5270_ Tracker _3015 left (90 degrees turning) pillar [parents] -- c5270_追跡者_3015左旋回攻撃(90度旋回) 火柱【親】","5270152":"C5270_ Tracker _3015 left attack (90 degrees turning) pillar 【 child 】 -- c5270_追跡者_3015左旋回攻撃(90度旋回) 火柱【子】","5270520":"c5270_ tracker _100_3002 [HU] Eclipse explosion two-stage warning -- c5270_追跡者_100_3002[HU]蝕爆発二段 予兆爆発","5270521":"c5270_ tracker _100_3002 [HU] Eclipse explosion stage explosion -- c5270_追跡者_100_3002[HU]蝕爆発二段 爆発","5270721":"c5270_ tracker _100_3022 [HU] right attack (90 degree swivel) caries pillar [parent] -- c5270_追跡者_100_3022[HU]右旋回攻撃(90度旋回) 蝕柱【親】","5270722":"c5270_ tracker _100_3022 [HU] right attack (90 degree swivel) (child) -- c5270_追跡者_100_3022[HU]右旋回攻撃(90度旋回) 蝕柱【子】","5270731":"c5270_ tracker _100_3023 [HU] left attack (90 degree turning) flame pillar [Parent] -- c5270_追跡者_100_3023[HU]左旋回攻撃(90度旋回) 炎柱【親】","5270732":"c5270_ tracker _100_3023 [HU] left attack (90 degree turning) flame pillar [child] -- c5270_追跡者_100_3023[HU]左旋回攻撃(90度旋回) 炎柱【子】","9990730":"Vanguards of c9990_: the Arrow of Seoul -- c9990_蝕の尖兵:ソウルの矢"},"BulletCreateLimitParam":{},"CalcCorrectGraph":{"0":"0: None -- 0:なし","1":"1: Hard Stone -- 1:硬石","2":"2: Sharp Stone -- 2:鋭石","3":"3: All Stones -- 3:みなぎ石","4":"4: Stone -- 4:にび石","5":"5: Blade Stone -- 5:刃石","6":"6: Spider yarn Steel wire -- 6:蜘蛛糸鋼線","7":"7: Mercury Stone -- 7:水銀石","8":"8: Dragon Stone -- 8:竜石","9":"9: Breathed Stone -- 9:吸いつき石","10":"10: Spinal Stone -- 10:髄石","11":"11: Mon Mitsuishi -- 11:月光石","12":"12: Tsukikage Stone -- 12:月影石","13":"13: Glimmer Stone -- 13:微光石","14":"14: Magic Shield Stone -- 14:魔法盾石","15":"15: Ore Spirit DS -- 15:鉱石の精霊DS","16":"16: DS -- 16:DS","102":"Defense Force (Seoul level) -- 防御力(ソウルレベル)","110":"Poison tolerance (Soul level) -- 毒耐性(ソウルレベル)","111":"Plague Resistance (Seoul level) -- 疫病耐性(ソウルレベル)","112":"Bleeding tolerance (Seoul level) -- 出血耐性(ソウルレベル)","113":"Curse resistance (Soul level) -- 呪い耐性(ソウルレベル)","114":"Cold air resistance (Soul level) -- 冷気耐性(ソウルレベル)","120":"Poison tolerance (physical strength) -- 毒耐性(体力)","121":"Plague Resistance (physical strength) -- 疫病耐性(体力)","122":"Bleeding resistance (endurance) -- 出血耐性(持久力)","123":"Curse Resistance (Luck) -- 呪い耐性(運)","124":"Cold air resistance (life force) -- 冷気耐性(生命力)","130":"Physical Defense Strength -- 物理防御力(筋力)","131":"Physical Defense Strength -- 物理防御力(体力)","132":"Magic Defensive Force (faith) -- 魔法防御力(信仰)","133":"Flame Defense Force (strength) -- 炎防御力(筋力)","134":"Lightning Defense Force (endurance) -- 雷防御力(持久力)","135":"Defense of Darkness (Faith) -- 闇防御力(信仰)","140":"Drop Rate (Luck) -- ドロップ率(運)","150":"Maximum replenishment number of recovery spots -- 回復スポットの最大補充数","160":"Shield status correction physical cut ratio -- 盾ステータス補正 物理カット率","161":"Shield Status correction attribute cut rate -- 盾ステータス補正 属性カット率","162":"Shield status correction tolerance cut rate -- 盾ステータス補正 耐性カット率","163":"Shield status correction stamina cut ratio -- 盾ステータス補正 スタミナカット率","170":"Arts Point Maximum (strength) -- アーツポイント最大値(筋力)","171":"Arts Point Max value (workmanship) -- アーツポイント最大値(技量)","172":"Arts Point Max Value (Magic) -- アーツポイント最大値(魔法)","173":"Arts Point Maximum (miracle) -- アーツポイント最大値(奇跡)","200":"Growing consumption Soul -- 成長消費ソウル"},"Ceremony":{"1000":"For automatic patrol: normal -- 自動巡回用:通常","1001":"For automatic circuit: ritual A -- 自動巡回用:儀式A","1002":"Automatic Circuit: Ritual b -- 自動巡回用:儀式B","1003":"For automatic circuit: ritual c -- 自動巡回用:儀式C","1004":"For automatic circuit: ritual D -- 自動巡回用:儀式D","1005":"Automatic Circuit: Ritual E -- 自動巡回用:儀式E","30000000":"Ojo _1 of caries: Daytime -- 蝕の王城_1:昼","30000010":"Ojo _1 of caries: gloomy and cloudy -- 蝕の王城_1:陰鬱な曇り","30001000":"Ojo _1 of caries: Product version -- 蝕の王城_1:製品版","30001010":"Ojo _1 of caries: NT -- 蝕の王城_1:NT","30001011":"Ojo _1 of caries: TGS -- 蝕の王城_1:TGS","30001012":"Ojo _1 of caries: E3 light Test -- 蝕の王城_1:E3ライトテスト","30001015":"Ojo _1 of caries: Ojo 2 distant Test -- 蝕の王城_1:王城2遠景テスト","30010000":"Ojo _2 of caries: Daytime -- 蝕の王城_2:昼","30010010":"Ojo _2 of caries: gloomy and cloudy -- 蝕の王城_2:陰鬱な曇り","31000000":"City of Evil Eye: Noon -- 邪眼の街:昼","31000010":"City of Evil eyes: gloomy and cloudy -- 邪眼の街:陰鬱な曇り","31000020":"City of Evil Eye: evening/Dusk -- 邪眼の街:夕方/宵闇","31000030":"The City of Evil Eyes: Moon Night -- 邪眼の街:月夜","32000000":"The Bridge of Flying Dragon: Noon -- 飛竜の橋:昼","32000010":"The Bridge of Flying dragon: gloomy and cloudy -- 飛竜の橋:陰鬱な曇り","33000000":"Poison Swamp Forest: Noon -- 毒沼の森:昼","33000010":"Poison swamp Forest: gloomy and cloudy -- 毒沼の森:陰鬱な曇り","35000000":"Cathedral Church: Noon -- 聖堂教会:昼","35000010":"Cathedral church: Gloomy and cloudy -- 聖堂教会:陰鬱な曇り","37000000":"Anole: Daytime -- アノール:昼","37000010":"Anole: Gloomy and cloudy -- アノール:陰鬱な曇り","38000000":"Waste City: Daytime -- 廃都:昼","39000000":"Dungeon: Noon -- 地下牢:昼","40000000":"Location: Daytime -- 拠点:昼","40000010":"Location: Gloomy and cloudy -- 拠点:陰鬱な曇り","40000020":"Location: Evening/Dusk -- 拠点:夕方/宵闇"},"CharMakeMenuListItemParam":{"0":"Unconfigured -- 未設定","100":"Base type -- ベース体型","200":"Base face ※ Frame 90 ~ 99 for rendering images only, switch to another ID -- ベース顔 ※フレーム90~99はレンダリング画像専用のため、別IDに切り替え","220":"Base Face female display -- ベース顔 女性用表示","300":"Right eye -- 瞳(右)","400":"Left eye -- 瞳(左)","500":"Eyebrows -- 眉","600":"Beard -- 髭","620":"\"None\" for bearded women only -- 髭 女性用の「なし」のみ","700":"Hairstyle -- 髪型","800":"Decal -- デカール","900":"Accessories -- アクセサリ","1000":"Hitomi (for both eyes) -- 瞳(両瞳用)","1100":"Eyelashes -- まつげ","100000":"Gender -- 性別","100100":"Age group -- 年齢層","100200":"Feature -- 素性","100300":"Gift -- 贈り物","100400":"Voice -- ボイス"},"CharMakeMenuTopParam":{"1":"Gender -- 性別","2":"Age group -- 年齢層","3":"Voice -- 声","4":"Physique -- 体格","5":"-----{Scale Adjustment -- -----{スケール調整","6":"Head -- 頭部","7":"Chest -- 胸部","8":"Abdomen -- 腹部","9":"Arm part -- 腕部","10":"Leg -- 脚部","11":"}----- -- }-----","12":"Flesh-colored base -- 肌色ベース","13":"-----{Skin Tone -- -----{肌の色調","14":"Skin brightness -- 肌の明るさ","15":"Skin Color Adjustment 1 -- 肌色調整1","16":"Skin Color Adjustment 2 -- 肌色調整2","17":"Skin Color Adjustment 3 -- 肌色調整3","18":"Bridge color -- 鼻梁の色","19":"Cheek color -- 頬の色","20":"Law Line -- 法令線","21":"}----- -- }-----","22":"Face Base -- 顔ベース","23":"Face Base -- 顔ベース","24":"-----{Face Details -- -----{顔詳細","25":"A similar face -- 似た顔","26":"-----{Characterizing -- -----{特徴付け","27":"Age Image -- 年齢イメージ","28":"Gender image -- 性別イメージ","29":"Shape exaggerated -- 形状誇張","30":"}----- -- }-----","31":"-----{Face Shape -- -----{顔の形状","32":"-----{Face Balance -- -----{顔のバランス","33":"Nose ratio -- 鼻の占める比率","34":"Nose and forehead ratio -- 鼻と額の比率","35":"Face irregularities -- 顔の凹凸","36":"Distance between face parts -- 顔パーツの上下の間隔","37":"Tilt of Face Parts -- 顔パーツの傾き","38":"Left and right spacing of face parts -- 顔パーツの左右の間隔","39":"}----- -- }-----","40":"-----{forehead/eyebrows -- -----{額/眉間","41":"Forehead depth -- 額の深さ","42":"Forehead irregularities -- 額の凹凸","43":"Upper Bridge Height -- 鼻梁上部の高さ","44":"Bridge top Irregularities 1 -- 鼻梁上部の凹凸1","45":"Bridge Top Irregularities 2 -- 鼻梁上部の凹凸2","46":"Bridge Upper Width -- 鼻梁上部の幅","47":"}----- -- }-----","48":"-----{Eyebrow Bone -- -----{眉骨","49":"Height of eyebrow Bone -- 眉骨の高さ","50":"Inner edge of eyebrow bone -- 眉骨の内端","51":"The outside edge of the eyebrow bone -- 眉骨の外端","52":"}----- -- }-----","53":"-----{Eye -- -----{眼","54":"Eye position -- 眼の位置","55":"Eye size -- 眼の大きさ","56":"Eye inclination -- 眼の傾き","57":"Eye spacing -- 眼の間隔","58":"}----- -- }-----","59":"-----{Nose -- -----{鼻筋","60":"Nose depth -- 鼻筋の深さ","61":"Nose length -- 鼻筋の長さ","62":"Nose position -- 鼻の位置","63":"Nose height -- 鼻先の高さ","64":"Nose irregularities -- 鼻の凹凸","65":"Nose height -- 鼻の高さ","66":"Nose inclination -- 鼻の傾斜","67":"}----- -- }-----","68":"-----{Nose -- -----{小鼻","69":"Nose inclination -- 小鼻の傾斜","70":"The size of nose -- 小鼻の大きさ","71":"Nose width -- 小鼻の幅","72":"Size of nostrils -- 鼻孔の大きさ","73":"}----- -- }-----","74":"-----{Cheek -- -----{頬","75":"Cheek height -- 頬骨の高さ","76":"Depth of cheek bones -- 頬骨の深さ","77":"The size of bones -- 頬骨の広さ","78":"Cheek irregularities -- 頬の凹凸","79":"Cheek -- 頬","80":"}----- -- }-----","81":"-----{Lips -- -----{唇","82":"Lip shape -- 唇の形","83":"The expression of the mouth -- 口元の表情","84":"Lip bulge -- 唇の膨らみ","85":"Lip size -- 唇の大きさ","86":"Lip irregularities -- 唇の凹凸","87":"Lip thickness -- 唇の厚さ","88":"}----- -- }-----","89":"-----{Mouth -- -----{口","90":"Mouth irregularities -- 口の凹凸","91":"Mouth inclination -- 口の傾き","92":"Mating -- かみ合わせ","93":"Mouth position -- 口の位置","94":"Mouth width -- 口の幅","95":"Distance from mouth to jaw -- 口から顎先の距離","96":"}----- -- }-----","97":"-----{mandible -- -----{下顎","98":"Before and after the jaw tip -- 顎先端の前後","99":"Length of jaw tip -- 顎先の長さ","100":"Sticking out of the jaw tip -- 顎先の突き出し","101":"Jaw Tip Depth -- 顎先の深さ","102":"Jaw Tip Size -- 顎先の大きさ","103":"Jaw Tip Height -- 顎先の高さ","104":"Width of jaw tip -- 顎先の広さ","105":"}----- -- }-----","106":"-----{Maxillary -- -----{上顎","107":"Jaw sticking out -- 顎の突き出し","108":"Jaw width -- 顎の幅","109":"Lower Jaw -- 顎下部","110":"Jaw Contour -- 顎の輪郭","111":"}----- -- }-----","112":"}----- -- }-----","113":"-----{Skin color/Makeup -- -----{肌色/化粧","114":"-----{Eyes -- -----{目元","115":"Brightness of the eyes -- 目元の明るさ","116":"The brightness of the orbital -- 眼窩の明るさ","117":"Eyelid brightness -- まぶたの明るさ","118":"Eyelid color -- まぶたの色","119":"Eyeliner -- アイライナー","120":"Eye shadow -- アイシャドー","121":"}----- -- }-----","122":"-----{Lipstick -- -----{口紅","123":"Lipstick One -- 口紅1","124":"Lipstick 2 -- 口紅2","125":"}----- -- }-----","126":"}----- -- }-----","127":"-----{hair/eyebrow/beard/Eyelash -- -----{髪/眉/髭/まつげ","128":"Hair/eyebrow/Beard color -- 髪/眉/髭色","129":"Hair -- 髪","130":"Hair Color -- 髪色","131":"Eyebrows -- 眉","132":"Eyebrow Color -- 眉色","133":"Beard -- 髭","134":"Beard -- 髭","135":"Beard Color -- 髭色","136":"Eyelashes -- まつげ","137":"Eyelash Color -- まつげ色","138":"}----- -- }-----","139":"-----Hitomi -- -----{瞳","140":"The size of both eyes -- 両瞳の大きさ","141":"The color of both eyes -- 両瞳の色","142":"The size of the right pupil -- 右瞳の大きさ","143":"Right eye color -- 右瞳の色","144":"The size of the left pupil -- 左瞳の大きさ","145":"Left eye color -- 左瞳の色","146":"}----- -- }-----","147":"-----{tattoo/bruise/glasses -- -----{入れ墨/痣/メガネ","148":"Tattoos/Bruise -- 入れ墨/痣","149":"Tattoo/Bruise Color -- 入れ墨/痣の色","150":"-----{tattoo/bruise adjustment -- -----{入れ墨/痣の調整","151":"Position (up and down) -- 位置(上下)","152":"Position (left and right) -- 位置(左右)","153":"Angle -- 角度","154":"Zoom Rate -- 拡大率","155":"}----- -- }-----","156":"Glasses -- メガネ","157":"Glasses color -- メガネ色","158":"}----- -- }-----","159":"}----- -- }-----","160":"Save Favorites -- お気に入り保存","161":"Favorites Import -- お気に入り読み込み","162":"Initialize -- 初期化"},"CharaInitParam":{"0":"ID to Defocala of them -- そのうちデフォキャラにするID","1":"1: E3 Version (for demo) -- 1:E3版(デモ用)","2":"2: E3 version (fully equipped) -- 2:E3版(フル装備)","3":"3: Gamescom Sword -- 3:Gamescom 剣","4":"4: Gamescom Axe -- 4:Gamescom 斧","5":"5: Gamescom Sword (full gear) -- 5:Gamescom 剣 (フル装備)","6":"6: Gamescom Ax (full gear) -- 6:Gamescom 斧 (フル装備)","10":"10: TGS A (Wandering Knight) -- 10:TGS A (放浪の騎士)","11":"11: TGS B (North Warrior) -- 11:TGS B (北の戦士)","12":"12: TGS D (Temple Knight) -- 12:TGS D (神殿騎士)","13":"13: TGS C (Witch) -- 13:TGS C (魔法使い)","14":"14: TGS A (Wandering Knight) (full gear) -- 14:TGS A (放浪の騎士)(フル装備)","15":"15: TGS B (North Warrior) (full gear) -- 15:TGS B (北の戦士)(フル装備)","16":"16: TGS D (Temple Knight) (fully equipped) -- 16:TGS D (神殿騎士)(フル装備)","17":"17: TGS C (witch) (full gear) -- 17:TGS C (魔法使い)(フル装備)","20":"20: NT version A (Wandering Knight) -- 20:NT版 A (放浪の騎士)","21":"21: NT version B (North Warrior) -- 21:NT版 B (北の戦士)","22":"22: NT version D (Temple Knight) -- 22:NT版 D (神殿騎士)","23":"23: NT version C (Wizard) -- 23:NT版 C (魔法使い)","24":"24: NT version A (Wandering Knight) (full gear) -- 24:NT版 A (放浪の騎士)(フル装備)","25":"25: NT version B (North Warrior) (full gear) -- 25:NT版 B (北の戦士)(フル装備)","26":"26: NT version D (Temple Knight) (full gear) -- 26:NT版 D (神殿騎士)(フル装備)","27":"27: NT version C (witch) (full gear) -- 27:NT版 C (魔法使い)(フル装備)","2400":"2400: 【 Gift 】 Flame vase (tentative) -- 2400:【贈り物】火炎壺(仮)","2401":"2401: [Gift] Black flame jar (tentative) -- 2401:【贈り物】黒火炎壷(仮)","2402":"2402: [Gift] Human nature (Wang Hua items of firewood) (tentative) -- 2402:【贈り物】人間性(薪の王化アイテム)(仮)","2403":"2403: [Gift] Tongen (tentative) -- 2403:【贈り物】遠眼鏡(仮)","2404":"2404: 【 gift 】 Throwing knife (tentative) -- 2404:【贈り物】投げナイフ(仮)","2405":"2405: [Gift] dung dumpling (tentative) -- 2405:【贈り物】糞団子(仮)","2406":"The gift: The blessing of the Goddess (tentative) -- 2406:【贈り物】女神の祝福(仮)","2407":"2407: [Gift] stamina grass (tentative) -- 2407:【贈り物】スタミナ草(仮)","2408":"Matatabi: [Gift] (tentative) -- 2408:【贈り物】またたび(仮)","2409":"2409: [Gift] Unnecessary (tentative) -- 2409:【贈り物】不要(仮)","3000":"3000: [Character make-up for selection × Current provisional setting] Warrior -- 3000:【キャラメイク素性選択用×現在仮設定】戦士","3001":"3001: [Character make-up for selection × Current provisional setting] Knight -- 3001:【キャラメイク素性選択用×現在仮設定】騎士","3002":"I: [Chara make-up] for the selection of the current temporary setting -- 3002:【キャラメイク素性選択用×現在仮設定】放浪者","3003":"3003: [Character make-up for selection × Current provisional setting] Bandit -- 3003:【キャラメイク素性選択用×現在仮設定】盗賊","3004":"3004: [Character make-up for selection × Current provisional setting] Bandits -- 3004:【キャラメイク素性選択用×現在仮設定】山賊","3005":"3005: [Character make-up for selection × Current provisional setting] Hunter -- 3005:【キャラメイク素性選択用×現在仮設定】狩人","3006":"The wizard: [Character make-up for selection × current temporary setting] Magician -- 3006:【キャラメイク素性選択用×現在仮設定】魔術師","3007":"3007: [Character make-up for selection × current temporary setting] Sorcerer -- 3007:【キャラメイク素性選択用×現在仮設定】呪術師","3008":"3008: [Character make-up for selection × current provisional setting] Cleric -- 3008:【キャラメイク素性選択用×現在仮設定】聖職者","3009":"3009: [Character make-up for selection × current temporary settings] have no -- 3009:【キャラメイク素性選択用×現在仮設定】持たざるもの","9000":"9000: [Default] GC version (GRIFFITH) [Default equipment] -- 9000:【デフォルト装備】 GC版(グリフィス) 【デフォルト装備】","21000":"21,000: [Multi NPC] Berserker: ■ Darkness 1 -- 21000:【マルチNPC】バーサーカー:街■闇霊1","21100":"21100: [multi-NPC] Sniper NPC: Sniper NPC: Super Distance -- 21100:【マルチNPC】スナイパーNPC:スナイパーNPC:超距離","21200":"21200: [Multi-NPC] Dragon Hunting Warrior: Bridge ★ White Spirits 1 -- 21200:【マルチNPC】竜狩りの戦士:橋★白霊1","21300":"21300: [Multi-NPC] Warrior fell in mid-★: Bridge White Spirit 2 -- 21300:【マルチNPC】志半ばで倒れた戦士:橋★白霊2","21400":"21400: [multi-NPC] blunt with healing: Forest ★ White Spirits 1_ -- 21400:【マルチNPC】鈍器持ち治癒使い:森★白霊1_道中","21500":"21500: [multi-NPC] Hit man: Mori ★ White Spirits 2_vs Elders -- 21500:【マルチNPC】一撃にかける男:森★白霊2_VS古老","21800":"21800: [multi-NPC] King's SS chief: Ojo 3 ■ Dark Spirits 1 -- 21800:【マルチNPC】王の親衛隊長:王城3■闇霊1","22000":"22,000: [Multi NPC] Paris love: The temple ★ White Spirits 2_ -- 22000:【マルチNPC】パリィ大好き:聖堂★白霊2_道中","28900":"28900: [Multi NPC Build confirmation] Ambassa Warrior -- 28900:【マルチNPCビルド確認】アンバサ戦士","1000010":"1000010: [For the weapon animation confirmation] ◎ 01 Dagger (id_20: Dagger) -- 1000010:【武器アニメ確認用】◎01短剣(ID_20:ダガー)","1000011":"1000011: [For the weapon animation confirmation] ◎ 01 Dagger (id_72: Cut) -- 1000011:【武器アニメ確認用】◎01短剣(ID_72:切り)","1000012":"1000012: [Weapon anime confirmation] ☆ 01 Dagger (id_71: Paris) -- 1000012:【武器アニメ確認用】☆01短剣(ID_71:パリィ)","1000013":"1000013: [Weapon anime confirmation] × 01 dagger (id_153: Advantage) -- 1000013:【武器アニメ確認用】×01短剣(ID_153:逆手)","1000020":"1000020: [For the weapon anime confirmation] ★ 02 Straight Sword (id_23: Long) -- 1000020:【武器アニメ確認用】★02直剣(ID_23:ロング)","1000021":"1000021: [Weapon anime confirmation] ☆ 02 Straight Sword (id_53: Cut) -- 1000021:【武器アニメ確認用】☆02直剣(ID_53:切り)","1000022":"1000022: [Weapon anime confirmation] ☆ 02 Straight Sword (id_54: Piercing) -- 1000022:【武器アニメ確認用】☆02直剣(ID_54:刺突)","1000025":"1000025: [Weapon Anime confirmation] (02) Straight Sword (id_57: Dark Wraith) -- 1000025:【武器アニメ確認用】△02直剣(ID_57:ダークレイス)","1000026":"1000026: [Weapon Anime confirmation] × 02 Straight Sword (id_ TBA: Brother Ssangyong) -- 1000026:【武器アニメ確認用】×02直剣(ID_未定:双皇子弟)","1000030":"1000030: [Weapon anime confirmation] ☆ 03 Large Sword (id_25: Basso) -- 1000030:【武器アニメ確認用】☆03大剣(ID_25:バッソ)","1000031":"1000031: [Weapon anime confirmation] ☆ 03 Large Sword (id_74: thrusting) -- 1000031:【武器アニメ確認用】☆03大剣(ID_74:突き)","1000033":"1000033: [Weapon Anime confirmation] (04) (ID_80: Black Knight) -- 1000033:【武器アニメ確認用】△04大剣(ID_80:黒騎士)","1000034":"1000034: [Weapon Anime confirmation] (04) (id_131) -- 1000034:【武器アニメ確認用】△04大剣(ID_131:アルトリウス)","1000035":"1000035: [Weapon anime confirmation] × 04 Large Sword (id_154:04 Sword of the Old King of caries) -- 1000035:【武器アニメ確認用】×04大剣(ID_154:蝕の老王の04大剣)","1000036":"1000036: [Weapon anime confirmation] × 04 Large sword (id_155: Prince of twins 04 sword) -- 1000036:【武器アニメ確認用】×04大剣(ID_155:双皇子合体04大剣)","1000037":"1000037: [Weapon anime confirmation] × 04 Large Sword (id_156.: 04 Sword of the King of the Evil) -- 1000037:【武器アニメ確認用】×04大剣(ID_156.:死霊の王の04大剣)","1000038":"1000038: [Weapon Anime confirmation] (04) (id_157) -- 1000038:【武器アニメ確認用】△04大剣(ID_157:ルカティエル)","1000039":"1000039: [Weapon anime confirmation] ○ 04 Large Sword (id_158: Moonlight 04 Sword) -- 1000039:【武器アニメ確認用】○04大剣(ID_158:月光04大剣)","1000040":"1000040: [Weapon anime confirmation] × 04 Large sword (id_159. -- 1000040:【武器アニメ確認用】×04大剣(ID_159.ラスボス04大剣)","1000050":"1000050: [Weapon Anime confirmation] ★ 05 Oversized Sword (id_26: normal) -- 1000050:【武器アニメ確認用】★05特大剣(ID_26:通常)","1000051":"1000051: [For the weapon anime confirmation] ○ 05 Oversized Sword (id_95: thrusting) -- 1000051:【武器アニメ確認用】○05特大剣(ID_95:突き)","1000052":"1000052: [For the weapon anime confirmation] ◎ 05 Oversized Sword (id_128: Black Knight) -- 1000052:【武器アニメ確認用】◎05特大剣(ID_128:黒騎士)","1000053":"1000053: [Weapon Anime confirmation] ★ 05 Oversized Sword (id_160: zwei) -- 1000053:【武器アニメ確認用】★05特大剣(ID_160:ツヴァイ)","1000054":"1000054: [For the weapon animation confirmation] △ 05 Oversized sword (id_163: Smoke) -- 1000054:【武器アニメ確認用】△05特大剣(ID_163:煙り)","1000056":"1000056: [For the weapon anime confirmation] × 05 Oversized sword (id_161: Warden of the Abyss) -- 1000056:【武器アニメ確認用】×05特大剣(ID_161:深淵の監視者)","1000057":"1000057: [Weapon Anime confirmation] × 05 Oversized Sword (id_162:05 Oversized Sword of the old king of Caries (red)) -- 1000057:【武器アニメ確認用】×05特大剣(ID_162:蝕の老王の05特大剣(赤))","1000058":"1000058: [For Weapon animation confirmation] × 05 oversized sword (id_ undecided: 05 oversized Sword of Prince twins) -- 1000058:【武器アニメ確認用】×05特大剣(ID_未定:双子皇子兄の05特大剣)","1000060":"1000060: [Weapon anime confirmation] ◎ 06 Sword (id_27: Ray Pier) -- 1000060:【武器アニメ確認用】◎06刺剣(ID_27:レイピア)","1000061":"1000061: [Weapon anime confirmation] (06) (ID_27: Shield tock) -- 1000061:【武器アニメ確認用】△06刺剣(ID_27:盾チク)","1000062":"1000062: [Weapon anime confirmation] ◎ 06 Sword (id_113: Estoc) -- 1000062:【武器アニメ確認用】◎06刺剣(ID_113:エストック)","1000063":"1000063: [Weapon anime confirmation] (06) (id_113: Estoc Shield tock) -- 1000063:【武器アニメ確認用】△06刺剣(ID_113:エストック盾チク)","1000064":"1000064: [Weapon anime confirmation] (06) (ID_115: Ricard) -- 1000064:【武器アニメ確認用】△06刺剣(ID_115:リカール)","1000065":"1000065: [Weapon anime confirmation] (06) (id_115: tock) -- 1000065:【武器アニメ確認用】△06刺剣(ID_115:リカール盾チク)","1000070":"1000070: [For the weapon animation confirmation] ◎ 07 Song Sword (id_28: Farsi) -- 1000070:【武器アニメ確認用】◎07曲剣(ID_28:ファルシ)","1000071":"1000071: [For the weapon anime confirmation] ◎ 07 Song Sword (id_164:07 Song Sword of the death of Salivan) -- 1000071:【武器アニメ確認用】◎07曲剣(ID_164:サリヴァーンの死神の07曲剣)","1000072":"1000072: [For the weapon animation confirmation] ◎ 07 Song Sword (id_165: Moonlight of Missing Moon) -- 1000072:【武器アニメ確認用】◎07曲剣(ID_165:欠月のムーンライト)","1000080":"1000080: [For the weapon animation confirmation] ◎ 08 Light Sword (id_151: Scimitar) -- 1000080:【武器アニメ確認用】◎08軽曲剣(ID_151:シミター)","1000081":"1000081: [For the weapon animation confirmation] ◎ 08 Light Sword (id_99: Shorty) -- 1000081:【武器アニメ確認用】◎08軽曲剣(ID_99:ショーテル)","1000082":"1000082: [Weapon anime confirmation] △ 08 Light Sword (id_101: Painting Mamoru) -- 1000082:【武器アニメ確認用】△08軽曲剣(ID_101:絵画守)","1000090":"1000090: [For the weapon animation confirmation] ◎ 09 Sword (id_29: normal) -- 1000090:【武器アニメ確認用】◎09刀(ID_29:通常)","1000091":"1000091: [Weapon Anime confirmation] ☆ 09 Sword (id_90: Shigurui) -- 1000091:【武器アニメ確認用】☆09刀(ID_90:シグルイ)","1000100":"1000100: [Weapon anime confirmation] ☆ 10 Sword (id_51: normal) -- 1000100:【武器アニメ確認用】☆10大曲剣(ID_51:通常)","1000101":"1000101: [Weapon anime confirmation] ☆ 10 Series Sword (ID_166: Observer Wolf of the Abyss) -- 1000101:【武器アニメ確認用】☆10大曲剣(ID_166:深淵の監視者オオカミ)","1000110":"1000110: [Weapon Anime confirmation] ★ 11 AX (id_30: Battle) -- 1000110:【武器アニメ確認用】★11斧(ID_30:バトル)","1000111":"1000111: [Weapon anime confirmation] ◎ 11 ax (id_102: Small axe) -- 1000111:【武器アニメ確認用】◎11斧(ID_102:小斧)","1000112":"1000112: [Weapon Anime confirmation] (11 ax (id_103: Meat disconnect) -- 1000112:【武器アニメ確認用】△11斧(ID_103:肉絶ち)","1000113":"1000113: [Weapon Anime confirmation] × 11 ax (id_167:4 Knight Axe) -- 1000113:【武器アニメ確認用】×11斧(ID_167:4騎士斧)","1000120":"1000120: [Weapon anime confirmation] ◎ 12 Large ax (id_32: Great) -- 1000120:【武器アニメ確認用】◎12大斧(ID_32:グレート)","1000122":"1000122: [Weapon Anime confirmation] ○ 12 Large Ax (id_107: Black Knight) -- 1000122:【武器アニメ確認用】○12大斧(ID_107:黒騎士)","1000123":"1000123: [Weapon Anime confirmation] × 12 large ax (id_168: Wood daemon 12 large ax) -- 1000123:【武器アニメ確認用】×12大斧(ID_168:薪のデーモン12大斧)","1000124":"1000124: [Weapon Anime confirmation] × 12 large ax (id_169: Hallec 12 large ax) -- 1000124:【武器アニメ確認用】×12大斧(ID_169:ハレックの12大斧)","1000130":"1000130: [Weapon Anime confirmation] ★ 13 Mallet (id_33: Mace) -- 1000130:【武器アニメ確認用】★13槌(ID_33:メイス)","1000131":"1000131: [Weapon anime confirmation] × 13 mallet (id_59: Club) -- 1000131:【武器アニメ確認用】×13槌(ID_59:クラブ)","1000140":"1000140: [For the weapon animation confirmation] ◎ 14 Large mallet (id_35: Large) -- 1000140:【武器アニメ確認用】◎14大槌(ID_35:ラージ)","1000141":"1000141: [For the weapon anime Confirmation] (14) (ID_70: Sumo) -- 1000141:【武器アニメ確認用】△14大槌(ID_70:スモウ)","1000142":"1000142: [Weapon anime confirmation] ○ 14 Large Mallet (id_171: pickaxe) -- 1000142:【武器アニメ確認用】○14大槌(ID_171:つるはし)","1000143":"1000143: [Weapon Anime confirmation] × 14 Otsuchi (id_172: Gargoyle Torch) -- 1000143:【武器アニメ確認用】×14大槌(ID_172:ガーゴイルのトーチ)","1000144":"1000144: [Weapon Anime confirmation] × 14 Otsuchi (id_173:14 Otsuchi Full Armor Deb) -- 1000144:【武器アニメ確認用】×14大槌(ID_173:フルアーマーデブの14大槌)","1000145":"1000145: [Weapon Anime confirmation] × 14 Otsuchi (id_174:14 Otsuchi of ash daemon) -- 1000145:【武器アニメ確認用】×14大槌(ID_174:灰のデーモンの14大槌)","1000150":"1000150: [Weapon anime confirmation] ◎ 15 spear (id_36: Spear) -- 1000150:【武器アニメ確認用】◎15槍(ID_36:スピア)","1000151":"1000151: [Weapon Anime confirmation] ★ 15 Spear (id_36: Shield tock) -- 1000151:【武器アニメ確認用】★15槍(ID_36:盾チク)","1000152":"1000152: [Weapon anime confirmation] ◎ 15 Spear (id_63: Payment) -- 1000152:【武器アニメ確認用】◎15槍(ID_63:払い)","1000153":"1000153: [Weapon Anime confirmation] ★ 15 Spear (id_63: tock Shield) -- 1000153:【武器アニメ確認用】★15槍(ID_63:払い盾チク)","1000154":"1000154: [Weapon Anime confirmation] (15 spears) (id_67: Pike) -- 1000154:【武器アニメ確認用】△15槍(ID_67:パイク)","1000155":"1000155: [Weapon Anime confirmation] (15 spears (id_134: Fork) -- 1000155:【武器アニメ確認用】△15槍(ID_134:フォーク)","1000156":"1000156: [Weapon Anime confirmation] (15 spears (id_68: Dragon Hunt) -- 1000156:【武器アニメ確認用】△15槍(ID_68:竜狩り)","1000157":"1000157: [Weapon Anime confirmation] (15 spears) (id_177: Lance) -- 1000157:【武器アニメ確認用】△15槍(ID_177:ランス)","1000159":"1000159: [Weapon Anime confirmation] × 15 spear (id_175: Spear of Gargoyle) -- 1000159:【武器アニメ確認用】×15槍(ID_175:ガーゴイルの槍)","1000160":"1000160: [Weapon Anime confirmation] × 15 spear (id_176: Sword Spear of the King of the Storm) -- 1000160:【武器アニメ確認用】×15槍(ID_176:嵐の王の剣槍)","1000161":"1000161: [Weapon Anime confirmation] × 15 spear (id_178: Spear of Salivan) -- 1000161:【武器アニメ確認用】×15槍(ID_178:サリヴァーンの槍)","1000170":"1000170: [Weapon anime confirmation] ◎ 16 axe Spear (id_38: Grace) -- 1000170:【武器アニメ確認用】◎16斧槍(ID_38:グレイヴ)","1000171":"1000171: [Weapon anime confirmation] ◎ 16 ax Spear (id_108: Halwa) -- 1000171:【武器アニメ確認用】◎16斧槍(ID_108:ハルバ)","1000172":"1000172: [Weapon Anime confirmation] × 16 axe spear (id_112: Black Knight) -- 1000172:【武器アニメ確認用】×16斧槍(ID_112:黒騎士)","1000180":"1000180: [Weapon Anime confirmation] (17) (id_50: Normal) -- 1000180:【武器アニメ確認用】△17鎌(ID_50:通常)","1000181":"1000181: [Weapon Anime confirmation] × 17 sickle (id_179: Salivan's sickle of death) -- 1000181:【武器アニメ確認用】×17鎌(ID_179:サリヴァーンの死神の鎌)","1000182":"1000182: [Weapon Anime confirmation] × 17 sickle (id_180: Craving) -- 1000182:【武器アニメ確認用】×17鎌(ID_180:渇望)","1000190":"1000190: [Weapon anime confirmation] ◎ 18 Cane (id_41: normal) -- 1000190:【武器アニメ確認用】◎18杖(ID_41:通常)","1000200":"1000200: [Weapon Anime confirmation] ★ 19 Talisman (id_52: Normal) -- 1000200:【武器アニメ確認用】★19タリスマン(ID_52:通常)","1000201":"1000201: [Weapon Anime confirmation] × 19 talisman (id_185: Tin) -- 1000201:【武器アニメ確認用】×19タリスマン(ID_185:すず)","1000210":"1000210: [Weapon Anime confirmation] (20) (id_149: Normal) -- 1000210:【武器アニメ確認用】△20呪術の炎(ID_149:通常)","1000220":"1000220: [For the Weapon animation confirmation] (id_43: normal) -- 1000220:【武器アニメ確認用】△21鞭(ID_43:通常)","1000230":"1000230: [For the Weapon animation confirmation] (22 bows (id_44: Long) -- 1000230:【武器アニメ確認用】△22弓(ID_44:ロング)","1000231":"1000231: [Weapon Anime confirmation] ★ 22 Bows (ID_81: short) -- 1000231:【武器アニメ確認用】★22弓(ID_81:ショート)","1000232":"1000232: [For the Weapon animation confirmation] (22 bows (id_81: Faris) -- 1000232:【武器アニメ確認用】△22弓(ID_81:ファリス)","1000240":"1000240: [Weapon anime confirmation] ☆ 23 Miyakonojo (id_83: Dragon Hunt) -- 1000240:【武器アニメ確認用】☆23大弓(ID_83:竜狩り)","1000241":"1000241: [Weapon Anime confirmation] (23 Miyakonojo (id_184: Aaron) -- 1000241:【武器アニメ確認用】△23大弓(ID_184:アーロン)","1000250":"1000250: [For confirmation of weapon animation] ◎ 24 Crossbow (id_46: normal) -- 1000250:【武器アニメ確認用】◎24クロスボウ(ID_46:通常)","1000251":"1000251: [Weapon Anime confirmation] × 24 Crossbow (id_84: Aveiro) -- 1000251:【武器アニメ確認用】×24クロスボウ(ID_84:アヴェリン)","1000260":"1000260: [For the weapon animation confirmation] ◎ 25 fist (id_42) -- 1000260:【武器アニメ確認用】◎25拳(ID_42)","1000261":"1000261: [Weapon anime confirmation] × 25 fist (id_123: Dark Hand) -- 1000261:【武器アニメ確認用】×25拳(ID_123:ダークハンド)","1000262":"1000262: [Weapon anime confirmation] × 25 fist (id_181: Wood daemon Knuckle) -- 1000262:【武器アニメ確認用】×25拳(ID_181:薪のデーモンのナックル)","1000280":"1000280: [Weapon anime confirmation] ◎ 27 Sword Song (id_151) -- 1000280:【武器アニメ確認用】◎27双剣曲剣(ID_151)","1000281":"1000281: [For the weapon anime Confirmation] (27) Sword Song (id139: Tracker) -- 1000281:【武器アニメ確認用】△27双剣曲剣(ID139:追跡者)","1000283":"1000283: [Weapon Anime confirmation] × 27 Sword Song (id_182: Elite Dead) -- 1000283:【武器アニメ確認用】×27双剣曲剣(ID_182:エリート亡者)","1000290":"1000290: [Weapon anime confirmation] ◎ 28 twin-Sword Ax (id_138: Deb) -- 1000290:【武器アニメ確認用】◎28双剣斧(ID_138:デブ)","1000310":"1000310: [Weapon Anime confirmation] ○ 29 Sword Dagger (id_141) -- 1000310:【武器アニメ確認用】○29双剣短剣(ID_141)","1000320":"1000320: [Weapon anime confirmation] ○ 30 Twin Sword Straight Sword (id_142) -- 1000320:【武器アニメ確認用】○30双剣直剣(ID_142)","1000330":"1000330: [Weapon anime confirmation] ○ 31 Sword Sword (id_144) -- 1000330:【武器アニメ確認用】○31双剣刀(ID_144)","1000340":"1000340: [Weapon anime confirmation] ◎ 32 double Sword Spear (id_145) -- 1000340:【武器アニメ確認用】◎32双剣槍(ID_145)","1000350":"1000350: [Weapon anime confirmation] ◎ 33 Sword Fist (id_152) -- 1000350:【武器アニメ確認用】◎33双剣拳(ID_152)","1000360":"1000360: [For the Weapon animation confirmation] ○ 34 Sword Claw (id_146) -- 1000360:【武器アニメ確認用】○34双剣かぎ爪(ID_146)","1000370":"1000370: [For the weapon animation confirmation] ◎ 35 twin-Sword Mallet (id_148) -- 1000370:【武器アニメ確認用】◎35双剣槌(ID_148)","1000380":"1000380: [For the weapon animation confirmation] ◎ 37 small shield (ID_48) -- 1000380:【武器アニメ確認用】◎37小盾(ID_48)","1000381":"1000381: [For the weapon animation confirmation] ◎ 37 small shield (id_91: Strong Paris) -- 1000381:【武器アニメ確認用】◎37小盾(ID_91:強パリィ)","1000390":"1000390: [Weapon anime confirmation] ◎ 38 medium shield (ID_150) -- 1000390:【武器アニメ確認用】◎38中盾(ID_150)","1000391":"1000391: [Weapon anime confirmation] × 38 medium shield (id_93: Spike) -- 1000391:【武器アニメ確認用】×38中盾(ID_93:スパイク)","1000400":"1000400: [Weapon anime confirmation] (39) (ID_47) -- 1000400:【武器アニメ確認用】△39大盾(ID_47)","1000401":"1000401: [Weapon Anime confirmation] × 39 large shield (id_94: Havel) -- 1000401:【武器アニメ確認用】×39大盾(ID_94:ハベル)","1000402":"1000402: [Weapon Anime confirmation] × 39 large shield (id_126: Wheels) -- 1000402:【武器アニメ確認用】×39大盾(ID_126:車輪)","1000410":"1000410: [Weapon Animation confirmation] (40 torches) (id_49) -- 1000410:【武器アニメ確認用】△40松明(ID_49)","1010010":"1010010: [Weight anime confirmation] light weight Confirmation -- 1010010:【重量アニメ確認】軽量確認","1010020":"1010020: [Weight Anime confirmation] Medium Volume confirmation -- 1010020:【重量アニメ確認】中量確認","1010030":"1010030: Check weight anime confirmation -- 1010030:【重量アニメ確認】重量確認","1010040":"1010040: [mass animation confirmation] Overweight confirmation -- 1010040:【重量アニメ確認】重量過多確認","1011001":"1011001: [Magic Confirmation] Arrow System of Seoul -- 1011001:【魔法確認】ソウルの矢系","1011002":"1011002: [Magic Confirmation] the mass system of the chasing soul -- 1011002:【魔法確認】追尾するソウルの塊系","1011003":"1011003: [Magic Confirmation] enchanted System -- 1011003:【魔法確認】エンチャント系","1011004":"1011004: [Magic Confirmation] mimicry, curse resistance, healing, Hakuryu breath -- 1011004:【魔法確認】擬態・呪抵抗・治癒・白龍の息","1011005":"1011005: [Magic Confirmation] other convenient system -- 1011005:【魔法確認】その他便利系","1011101":"1011101: [Miracle Confirmation] Recovery system -- 1011101:【奇跡確認】回復系","1011102":"1011102: [Miracle confirmation] Attack system -- 1011102:【奇跡確認】攻撃系","1011103":"1011103: [Miracle confirmation] Defense system -- 1011103:【奇跡確認】防御系","1011104":"1011104: [Miracle Confirmation] convenient system -- 1011104:【奇跡確認】便利系","1011105":"1011105: [Miracle Confirmation] enchant system, pledge system -- 1011105:【奇跡確認】エンチャント系・誓約系","1011201":"1011201: [Confirmation of Magic] Fire ball system -- 1011201:【呪術確認】火の玉系","1011202":"1011202: [Magic Confirmation] Flame storm system -- 1011202:【呪術確認】炎の嵐系","1011203":"1011203: [Magic Confirmation] short range attack system -- 1011203:【呪術確認】近距離攻撃系","1011204":"1011204: [Magic Confirmation] State abnormal system, convenient system -- 1011204:【呪術確認】状態異常系・便利系","1012001":"1012001: [Item confirmation] online system -- 1012001:【アイテム確認】オンライン系","1070000":"1070000: [Yamagishi] King of firewood test set 1 -- 1070000:【山岸】薪の王テストセット1","1070001":"1070001: [Yamagishi] King of firewood test set 2 -- 1070001:【山岸】薪の王テストセット2","1080000":"1080000: [Load check] memory check Chara 1 -- 1080000:【負荷チェック】メモリチェックキャラ1","1080001":"1080001: [Load check] memory Check Chara 2 -- 1080001:【負荷チェック】メモリチェックキャラ2","1080002":"1080002: [Load check] memory check Chara 3 -- 1080002:【負荷チェック】メモリチェックキャラ3","1080003":"1080003: [Load check] memory check Chara 4 -- 1080003:【負荷チェック】メモリチェックキャラ4","1080004":"1080004: [Load check] memory check Chara 5 -- 1080004:【負荷チェック】メモリチェックキャラ5","1080005":"1080005: [Load check] memory Check Chara 6 -- 1080005:【負荷チェック】メモリチェックキャラ6","2000000":"2,000,000: [Confirmation of new equipment] Fugitive -- 2000000:【新規装備確認】逃亡者","2000010":"2000010: [New equipment confirmation] combined equipment -- 2000010:【新規装備確認】複合装備","2000030":"2000030: [New equipment confirmation] Red Knight -- 2000030:【新規装備確認】紅の騎士","2000040":"2000040: [New equipment confirmation] Mercenary King -- 2000040:【新規装備確認】傭兵王","2000050":"2000050: [Confirmation of new equipment] Jeanne -- 2000050:【新規装備確認】ジャンヌ","2000060":"2000060: [New equipment confirmation] Downer Knight -- 2000060:【新規装備確認】ダウナー騎士","2000070":"2000070: [Confirmation of new equipment] Hunter Assassin -- 2000070:【新規装備確認】狩人暗殺者","2000080":"2000080: [New equipment confirmation] Yellow robe -- 2000080:【新規装備確認】黄衣","2000090":"2000090: [New equipment Confirmation] Overlord -- 2000090:【新規装備確認】覇王","2000100":"2000100: [New equipment confirmation] Black Dog Knights -- 2000100:【新規装備確認】黒犬騎士団","2000110":"2000110: [New equipment confirmation] Noble -- 2000110:【新規装備確認】貴族","2000120":"2000120: [New equipment confirmation] White Phantom -- 2000120:【新規装備確認】白怪人","2000130":"2000130: [New equipment confirmation] beggar (Fugitive) -- 2000130:【新規装備確認】乞食(落人)","2000140":"2000140: [New equipment confirmation] Zara Man -- 2000140:【新規装備確認】ザラマン","2000150":"2000150: [Confirmation of new equipment] heavy Knight -- 2000150:【新規装備確認】重騎士","2000160":"2000160: [New equipment confirmation] Black Knight Grannies -- 2000160:【新規装備確認】黒騎士老女","2000170":"2000170: [New equipment Confirmation] Sorcerer -- 2000170:【新規装備確認】呪術師","2000180":"2000180: [New equipment confirmation] Dark Cleric -- 2000180:【新規装備確認】ダーククレリック","2000190":"2000190: [New equipment confirmation] Rayleigh -- 2000190:【新規装備確認】レイストリン","2000200":"2000200: [Confirmation of new equipment] Saint-Medical -- 2000200:【新規装備確認】聖者・医療者","2000210":"2000210: [Confirmation of new equipment] heavy Knight (neutral) -- 2000210:【新規装備確認】重騎士(ニュートラル)","2000220":"2000220: [Confirmation of new equipment] King of beggars -- 2000220:【新規装備確認】乞食の王","2010000":"2010000: [Confirmation of enemy transplant equipment] dead soldier -- 2010000:【敵移植装備確認】亡者兵士","2010020":"2010020: [Confirmation of enemy transplant equipment] crystal elders -- 2010020:【敵移植装備確認】結晶の古老","2010030":"2010030: [Confirmation of enemy transplant equipment] new Shing -- 2010030:【敵移植装備確認】新獄吏","2010040":"2010040: [Confirmation of enemy transplant equipment] saint of the prison -- 2010040:【敵移植装備確認】牢獄の聖女","2010070":"2010070: [Confirmation of enemy transplant equipment] poor dead -- 2010070:【敵移植装備確認】貧民亡者","2010080":"2010080: [Confirmation of enemy transplant equipment] dwarf people -- 2010080:【敵移植装備確認】矮小人","2010090":"2010090: [Confirmation of enemy transplant equipment] missionary -- 2010090:【敵移植装備確認】宣教師","2010100":"2010100: [Confirmation of enemy transplant equipment] dead of wax -- 2010100:【敵移植装備確認】蝋の死人","2010110":"2010110: [Confirmation of enemy transplant equipment] Ojo Deb -- 2010110:【敵移植装備確認】王城デブ","2010120":"2010120: [Confirmation of enemy transplant equipment] dead Shi -- 2010120:【敵移植装備確認】亡者僧兵","2010140":"2010140: [Confirmation of enemy transplant equipment] former dead knight -- 2010140:【敵移植装備確認】旧亡者騎士","2010160":"2010160: [Confirmation of enemy transplant equipment] Dark Knight -- 2010160:【敵移植装備確認】ダークナイト","2010170":"2010170: [Confirmation of enemy transplant equipment] Black Knight -- 2010170:【敵移植装備確認】黒騎士","2010180":"2010180: [Confirmation of enemy transplant equipment] Dark Wraith -- 2010180:【敵移植装備確認】ダークレイス","2010190":"2010190: [Confirmation of enemy transplant equipment] Forest keeper -- 2010190:【敵移植装備確認】森の番人","2010200":"2010200: [Confirmation of enemy transplant equipment] Salivan's death -- 2010200:【敵移植装備確認】サリヴァーンの死神","2010210":"2010210: [Confirmation of enemy transplant equipment] King of the Storm -- 2010210:【敵移植装備確認】嵐の王","2010220":"2010220: [Confirmation of enemy transplant equipment] King of the Evil -- 2010220:【敵移植装備確認】死霊の王","2010230":"2010230: [Confirmation of enemy transplant equipment] The observer of the Abyss -- 2010230:【敵移植装備確認】深淵の監視者","2010240":"2010240: [Confirmation of enemy transplant equipment] Snake man Assassin -- 2010240:【敵移植装備確認】蛇人暗殺者","2010270":"2010270: [Confirmation of enemy transplant equipment] brother of Darkness -- 2010270:【敵移植装備確認】闇の双皇子兄","2010280":"2010280: [Confirmation of enemy transplant equipment] children of darkness -- 2010280:【敵移植装備確認】闇の双皇子弟","2010290":"2010290: [Confirmation of enemy transplant equipment] Mad warrior Hallec -- 2010290:【敵移植装備確認】狂戦士ハレック","2010310":"2010310: [Confirmation of enemy transplant equipment] Hero Segunda -- 2010310:【敵移植装備確認】英雄グンダ","2010320":"2010320: [Confirmation of enemy transplant equipment] old king of caries -- 2010320:【敵移植装備確認】蝕の老王","2010340":"2010340: [Confirmation of enemy transplant equipment] Cardinal member -- 2010340:【敵移植装備確認】枢機卿団員","2010350":"2010350: [Confirmation of enemy transplant equipment] Full Armor Deb -- 2010350:【敵移植装備確認】フルアーマーデブ","2020000":"2020000: [旧作 transplant equipment confirmation] chain mail -- 2020000:【旧作移植装備確認】チェインメイル","2020010":"2020010: [旧作 transplant equipment Confirmation] Knight -- 2020010:【旧作移植装備確認】騎士","2020020":"2020020: [旧作 transplant equipment confirmation] Advanced Knight -- 2020020:【旧作移植装備確認】上級騎士","2020030":"2020030: [旧作 transplant equipment Confirmation] Farnham -- 2020030:【旧作移植装備確認】ファーナム","2020040":"2020040: [旧作 transplant equipment Confirmation] Catalina -- 2020040:【旧作移植装備確認】カタリナ","2020050":"2020050: [旧作 transplant equipment Confirmation] Warrior -- 2020050:【旧作移植装備確認】戦士","2020060":"2020060: [旧作 transplant equipment Confirmation] Havel -- 2020060:【旧作移植装備確認】ハベル","2020070":"2020070: [旧作 transplant equipment Confirmation] Bandits -- 2020070:【旧作移植装備確認】山賊","2020080":"2020080: [旧作 transplant equipment confirmation] Hunter -- 2020080:【旧作移植装備確認】狩人","2020090":"2020090: [旧作 transplant equipment Confirmation] prisoner -- 2020090:【旧作移植装備確認】囚人","2020100":"2020100: [旧作 transplant equipment confirmation] Black magician -- 2020100:【旧作移植装備確認】黒魔術師","2020110":"2020110: [旧作 transplant equipment confirmation] old sorcerer -- 2020110:【旧作移植装備確認】旧呪術師","2020120":"2020120: [旧作 transplant equipment Confirmation] black leather (thief) -- 2020120:【旧作移植装備確認】黒革(盗賊)","2020130":"2020130: [旧作 transplant equipment Confirmation] Clayton -- 2020130:【旧作移植装備確認】クレイトン","2020140":"2020140: [旧作 transplant equipment Confirmation] Alpha -- 2020140:【旧作移植装備確認】アルパ","2020150":"2020150: [旧作 transplant equipment Confirmation] Shadow -- 2020150:【旧作移植装備確認】影","2020160":"2020160: [旧作 transplant equipment Confirmation] Tokoku -- 2020160:【旧作移植装備確認】東国","2020170":"2020170: [旧作 transplant Equipment Confirmation] favorite (funnel) -- 2020170:【旧作移植装備確認】寵愛(ロートレク)","2020180":"2020180: [旧作 transplant equipment Confirmation] brass (dark Moon) -- 2020180:【旧作移植装備確認】真鍮(暗月)","2020190":"2020190: [旧作 transplant equipment confirmation] Silver Knight -- 2020190:【旧作移植装備確認】銀騎士","2020200":"2020200: [旧作 transplant equipment confirmation] Luke Thierry -- 2020200:【旧作移植装備確認】ルカティエル","2020210":"2020210: [旧作 transplant equipment Confirmation] Knight of the Sun -- 2020210:【旧作移植装備確認】太陽の騎士","2020220":"2020220: [旧作 transplant equipment confirmation] dragon Blood -- 2020220:【旧作移植装備確認】竜血","2020230":"2020230: [旧作 transplant equipment confirmation], Lyndhurst -- 2020230:【旧作移植装備確認】リンド","2020240":"2020240: [旧作 transplant equipment confirmation] black iron -- 2020240:【旧作移植装備確認】黒鉄","2020250":"2020250: [旧作 transplant equipment confirmation] painting protection -- 2020250:【旧作移植装備確認】絵画守り","2020260":"2020260: [旧作 transplant equipment confirmation] al-Triana -- 2020260:【旧作移植装備確認】アルトリウス","2020270":"2020270: [旧作 transplant equipment Confirmation] Ornstein -- 2020270:【旧作移植装備確認】オーンスタイン","2020280":"2020280: [旧作 transplant equipment Confirmation] Sumo -- 2020280:【旧作移植装備確認】スモウ","2020290":"2020290: [旧作 transplant equipment confirmation] dark art -- 2020290:【旧作移植装備確認】闇術","2020300":"2020300: [旧作 transplant equipment Confirmation] Splinter -- 2020300:【旧作移植装備確認】トゲ","2020320":"2020320: [旧作 transplant equipment Confirmation] Wu-La seal -- 2020320:【旧作移植装備確認】ウーラシール"},"CharacterLoadParam":{},"ClearCountCorrectParam":{},"CoolTimeParam":{},"CultSettingParam":{"0":"Default -- デフォルト","10":"Test -- テスト","100":"For testing -- テスト用"},"DecalParam":{"0":"Test -- テスト","41":"Oil pots (floor) -- 油壺(床)","1090000":"[Attack] Blood (dead) front (for character) -- 【攻撃】血(亡者)中 正面(キャラ用)","1090001":"[Attack] Blood (dead) Nakagami (for character) -- 【攻撃】血(亡者)中 上(キャラ用)","1090002":"[Attack] Blood (dead) Nakashita (for character) -- 【攻撃】血(亡者)中 下(キャラ用)","1090003":"[Attack] Blood (dead) left (for character) -- 【攻撃】血(亡者)中 左(キャラ用)","1090004":"[Attack] Blood (dead) reeling (for character) -- 【攻撃】血(亡者)中 右(キャラ用)","1090100":"[Attack] Blood (dead) front (for map) -- 【攻撃】血(亡者)中 正面(マップ用)","1090101":"[Attack] Blood (dead) Nakagami (for map) -- 【攻撃】血(亡者)中 上(マップ用)","1090102":"[Attack] Blood (dead) Nakashita (for map) -- 【攻撃】血(亡者)中 下(マップ用)","1090103":"[Attack] Blood (dead) left (for map) -- 【攻撃】血(亡者)中 左(マップ用)","1090104":"[Attack] Blood (dead) reeling (for map) -- 【攻撃】血(亡者)中 右(マップ用)","1091000":"[Attack] Blood (dead) frontal (for character) blood mild -- 【攻撃】血(亡者)中 正面(キャラ用)血MILD","1091001":"[Attack] Blood (dead) Nakagami (for character) blood mild -- 【攻撃】血(亡者)中 上(キャラ用)血MILD","1091002":"[Attack] Blood (dead) Nakashita (for character) blood mild -- 【攻撃】血(亡者)中 下(キャラ用)血MILD","1091003":"[Attack] Blood (dead) left (for Chara) blood mild -- 【攻撃】血(亡者)中 左(キャラ用)血MILD","1091004":"[Attack] Blood (dead) reeling (for character) blood mild -- 【攻撃】血(亡者)中 右(キャラ用)血MILD","1091100":"[Attack] Blood (dead) in front (map) Blood mild -- 【攻撃】血(亡者)中 正面(マップ用)血MILD","1091101":"【 attack 】 Blood (dead) Nakagami (for map) blood mild -- 【攻撃】血(亡者)中 上(マップ用)血MILD","1091102":"【 attack 】 Blood (dead) Nakashita (for map) blood mild -- 【攻撃】血(亡者)中 下(マップ用)血MILD","1091103":"[Attack] Blood (dead) left (for map) blood mild -- 【攻撃】血(亡者)中 左(マップ用)血MILD","1091104":"【 attack 】 Blood (dead) reeling (for map) blood mild -- 【攻撃】血(亡者)中 右(マップ用)血MILD","1410000":"Attack: Front of caries -- 【攻撃】蝕中 正面","1410001":"【 attack 】 Caries Nakagami -- 【攻撃】蝕中 上","1410002":"【 attack 】 Caries Nakashita -- 【攻撃】蝕中 下","1410003":"[Attack] in the caries left -- 【攻撃】蝕中 左","1410004":"【 attack 】 Caries reeling -- 【攻撃】蝕中 右","1420000":"[Attack] Maggots front -- 【攻撃】蛆中 正面","1420001":"[Attack] Maggots Nakagami -- 【攻撃】蛆中 上","1420002":"[Attack] Maggots Nakashita -- 【攻撃】蛆中 下","1420003":"[Attack] Maggots left -- 【攻撃】蛆中 左","1420004":"[Attack] Maggots reeling -- 【攻撃】蛆中 右","1460000":"[Attack] Blood (PC) front (for character) -- 【攻撃】鮮血中(PC) 正面(キャラ用)","1460001":"[Attack] Blood (PC) (for characters) -- 【攻撃】鮮血中(PC) 上(キャラ用)","1460002":"[Attack] under Blood (PC) (for character) -- 【攻撃】鮮血中(PC) 下(キャラ用)","1460003":"[Attack] Blood (PC) left (for character) -- 【攻撃】鮮血中(PC) 左(キャラ用)","1460004":"[Attack] Blood (PC) right (for character) -- 【攻撃】鮮血中(PC) 右(キャラ用)","1460100":"[Attack] Blood (PC) front (for map) -- 【攻撃】鮮血中(PC) 正面(マップ用)","1460101":"[Attack] Blood (PC) (for map) -- 【攻撃】鮮血中(PC) 上(マップ用)","1460102":"[Attack] under Blood (PC) (for map) -- 【攻撃】鮮血中(PC) 下(マップ用)","1460103":"[Attack] Blood (PC) left (for map) -- 【攻撃】鮮血中(PC) 左(マップ用)","1460104":"[Attack] Blood (PC) right (for map) -- 【攻撃】鮮血中(PC) 右(マップ用)","1461000":"[Attack] Blood (PC) front (for character) blood mild -- 【攻撃】鮮血中(PC) 正面(キャラ用)血MILD","1461001":"[Attack] Blood (PC) (for characters) blood mild -- 【攻撃】鮮血中(PC) 上(キャラ用)血MILD","1461002":"[Attack] Blood (PC) under (for character) blood mild -- 【攻撃】鮮血中(PC) 下(キャラ用)血MILD","1461003":"[Attack] Blood (PC) left (for character) blood mild -- 【攻撃】鮮血中(PC) 左(キャラ用)血MILD","1461004":"[Attack] Blood (PC) right (for character) blood mild -- 【攻撃】鮮血中(PC) 右(キャラ用)血MILD","1461100":"[Attack] Blood (PC) front (for map) blood mild -- 【攻撃】鮮血中(PC) 正面(マップ用)血MILD","1461101":"[Attack] Blood (PC) (for map) blood mild -- 【攻撃】鮮血中(PC) 上(マップ用)血MILD","1461102":"[Attack] Blood (PC) under (for map) blood mild -- 【攻撃】鮮血中(PC) 下(マップ用)血MILD","1461103":"[Attack] Blood (PC) left (for map) blood mild -- 【攻撃】鮮血中(PC) 左(マップ用)血MILD","1461104":"[Attack] Blood (PC) right (for map) blood mild -- 【攻撃】鮮血中(PC) 右(マップ用)血MILD","8000300":"Dark Flame -- 火炎壺こげ跡","8000301":"Oil pots (for pairs of characters) -- 油壺(対キャラ用)","8010510":"[Dark Knight Beast] Frost -- 【ダークナイトビースト】霜","8010511":"[Dark Knight Beast] Frost attack -- 【ダークナイトビースト】霜 攻撃","8010512":"[Dark Knight Beast] Frost attack (wide range) -- 【ダークナイトビースト】霜 攻撃(広範囲)","8010513":"[Dark Knight Beast] Frost attack (3008) -- 【ダークナイトビースト】霜 攻撃(3008)","8010520":"[c1090 dead Soldier: Evil spirits] knocked back against caries -- 【c1090 亡者兵士:邪霊】叩き付け蝕","8010530":"The tracker (red) knocked back against attack -- 【追跡者】(赤熱)叩き付け 攻撃","8010531":"The tracker (red) Nagi 90 degrees -- 【追跡者】(赤熱)なぎ払い 90度","8010532":"The tracker (red) ground stabbing and line-catching attack -- 【追跡者】(赤熱)地面刺して線引く 攻撃","8010533":"The tracker (red) Ground stab attack -- 【追跡者】(赤熱)地面刺し 攻撃","8010534":"The tracker (red) Horizontal Nagi attack -- 【追跡者】(赤熱)水平なぎ払い 攻撃","8010535":"The tracker (red) Nagi-90 degrees -- 【追跡者】(赤熱)なぎ払い -90度","8010536":"The tracker (red) Nagi (3005) -- 【追跡者】(赤熱)なぎ払い (3005)","8010537":"The tracker (red) Horizontal Nagi (3025) -- 【追跡者】(赤熱)水平なぎ払い(3025)","8010538":"The tracker (red) Horizontal Nagi (3014, 1003017) -- 【追跡者】(赤熱)水平なぎ払い(3012、1003017)","8010539":"The tracker (red) Horizontal rotation finish (1003020) -- 【追跡者】(赤熱)横回転フィニッシュ(1003020)","8010540":"[tracker] cut scene of caries large -- 【追跡者】カットシーン 蝕大","8010541":"[tracker] cut scene caries small -- 【追跡者】カットシーン 蝕小","8010542":"[tracker] cut scene caries foot -- 【追跡者】カットシーン 蝕足","8010550":"The tracker (red) Horizontal rotation loop (1003019) -- 【追跡者】(赤熱)横回転ループ (1003019)","8010560":"The tracker (caries sword) knocked back against -- 【追跡者】(蝕剣)叩き付け","8010561":"The tracker (Caries sword) Stab -- 【追跡者】(蝕剣)刺し","8010562":"The tracker (Caries Sword) -- 【追跡者】(蝕剣)なぎ","8010563":"The tracker (Caries sword) continuous lull -- 【追跡者】(蝕剣)連続なぎ","8010564":"The tracker (caries sword) Continuous stab -- 【追跡者】(蝕剣)連続刺し","8010565":"The tracker (caries sword) knocked back against -- 【追跡者】(蝕剣)叩き付け","8010566":"The tracker (Caries Sword) -- 【追跡者】(蝕剣)","8010567":"The tracker (Caries Sword) -- 【追跡者】(蝕剣)","8010570":"[Full Armor Beast] Frost -- 【フルアーマー獣】霜","8010571":"[Full Armor Beast] Frost attack -- 【フルアーマー獣】霜 攻撃","8010572":"[Full Armor Beast] Frost attack (knocked back against) -- 【フルアーマー獣】霜 攻撃(叩き付け)","8010580":"[Ojo 3] Bleeding -- 【ヘルカイト(王城3)】出血","8010590":"[Dead Wax] wax bullet (floor) -- 【蝋の死人】蝋弾(床)","8010591":"[Dead Wax] wax bullet (for character) -- 【蝋の死人】蝋弾(対キャラ用)","8010600":"[Hel Kite] at the time of erosion SAG appearance -- 【ヘルカイト】蝕垂れ 登場時","8010601":"[Hellfire Kite] dripping drip -- 【ヘルカイト】蝕垂れ ポタポタ","8010602":"[Hel Kite] at the time of Eclipse appearance -- 【ヘルカイト】蝕体つき 登場時","8010603":"[Hel kite] erosion appearance at the time of the ceiling -- 【ヘルカイト】蝕垂れ 登場時 天井向き","8011580":"[Ojo 3] bleeding blood mild -- 【ヘルカイト(王城3)】出血 血MILD","8023000":"[m30_00] Hell kite Breath Burn marks -- 【m30_00】ヘルカイト ブレス燃え跡","8023900":"[M39_00] in blood (dead) -- 【m39_00】血(亡者) 中","8023901":"【 m39_00 】 Large Blood (dead) -- 【m39_00】血(亡者) 大","9000100":"[PC bleeding] footprints blood feet -- 【PC出血】足跡血痕素足","9000101":"[PC bleeding] footprint blood stains shoes -- 【PC出血】足跡血痕靴","9000102":"[PC bleeding] footprints blood stains large shoes -- 【PC出血】足跡血痕大靴","9000110":"[PC Bleeding] PC Bleeding -- 【PC出血】PC出血","9000111":"[PC Bleeding] PC Bleeding (Large) -- 【PC出血】PC出血(大)","9001100":"[PC bleeding] footprints blood mild -- 【PC出血】足跡血痕素足血MILD","9001101":"[PC bleeding] footprints blood stains shoes mild -- 【PC出血】足跡血痕靴血MILD","9001102":"[PC bleeding] footprints blood mild large shoes -- 【PC出血】足跡血痕大靴血MILD","9001110":"[PC Bleeding] PC Bleeding Blood Mild -- 【PC出血】PC出血血MILD","9001111":"[PC Bleeding] PC bleeding (large) blood mild -- 【PC出血】PC出血(大)血MILD","9990000":"Test -- テスト","9990001":"Test -- テスト","9990002":"Test -- テスト"},"DirectionCameraParam":{"80":"Front unprotected directing camera -- 前面無防備演出カメラ","81":"Front unprotected production camera (pull out) -- 前面無防備演出カメラ(引き抜き)","82":"Front unprotected production camera (for mallet thrown) -- 前面無防備演出カメラ(槌たたきつけ用)","83":"Front unprotected production camera (for large sword) -- 前面無防備演出カメラ(大剣用)","90":"Rear unprotected directing camera -- 背面無防備演出カメラ","92":"Rear unprotected directing camera (for Mallet) -- 背面無防備演出カメラ(槌用)"},"EquipMtrlSetParam":{"0":"Basic -- 基本","1":"Basic + 1 -- 基本+1","2":"Basic + 2 -- 基本+2","3":"Basic + 3 -- 基本+3","4":"Basic + 4 -- 基本+4","5":"Basic + 5 -- 基本+5"},"EquipParamAccessory":{"10000":"Blade of the Darkmoon","10020":"Watchdogs of Farron","10030":"Aldrich Faithful","10040":"Warrior of Sunlight","10050":"Mound-makers","10060":"Way of Blue","10070":"Blue Sentinels","10080":"Rosaria's Fingers","10090":"Spears of the Church","20000":"Life Ring","20001":"Life Ring+1","20002":"Life Ring+2","20003":"Life Ring+3","20010":"Chloranthy Ring","20011":"Chloranthy Ring+1","20012":"Chloranthy Ring+2","20013":"Chloranthy Ring+3","20020":"Havel's Ring","20021":"Havel's Ring+1","20022":"Havel's Ring+2","20023":"Havel's Ring+3","20030":"Ring of Favor","20031":"Ring of Favor+1","20032":"Ring of Favor+2","20033":"Ring of Favor+3","20040":"Ring of Steel Protection","20041":"Ring of Steel Protection+1","20042":"Ring of Steel Protection+2","20043":"Ring of Steel Protection+3","20050":"Flame Stoneplate Ring","20051":"Flame Stoneplate Ring+1","20052":"Flame Stoneplate Ring+2","20060":"Thunder Stoneplate Ring","20061":"Thunder Stoneplate Ring+1","20062":"Thunder Stoneplate Ring+2","20070":"Magic Stoneplate Ring","20071":"Magic Stoneplate Ring+1","20072":"Magic Stoneplate Ring+2","20080":"Dark Stoneplate Ring","20081":"Dark Stoneplate Ring+1","20082":"Dark Stoneplate Ring+2","20090":"Speckled Stoneplate Ring","20091":"Speckled Stoneplate Ring+1","20100":"Bloodbite Ring","20101":"Bloodbite Ring+1","20110":"Poisonbite Ring","20111":"Poisonbite Ring+1","20120":"Cursebite Ring","20130":"Fleshbite Ring","20131":"Fleshbite Ring+1","20140":"Wood Grain Ring","20141":"Wood Grain Ring+1","20142":"Wood Grain Ring+2","20150":"Scholar Ring","20160":"Priestess Ring","20170":"Red Tearstone Ring","20180":"Blue Tearstone Ring","20190":"Wolf Ring","20191":"Wolf Ring+1","20192":"Wolf Ring+2","20193":"Wolf Ring+3","20200":"Leo Ring","20210":"Ring of Sacrifice","20230":"Young Dragon Ring","20231":"Bellowing Dragoncrest Ring","20240":"Great Swamp Ring","20241":"Witch's Ring","20250":"Morne's Ring","20251":"Ring of the Sun's First Born","20270":"Lingering Dragoncrest Ring","20271":"Lingering Dragoncrest Ring+1","20272":"Lingering Dragoncrest Ring+2","20280":"Sage Ring","20281":"Sage Ring+1","20282":"Sage Ring+2","20290":"Slumbering Dragoncrest Ring","20300":"Dusk Crown Ring","20310":"Saint's Ring","20320":"Deep Ring","20330":"Darkmoon Ring","20370":"Hawk Ring","20380":"Hornet Ring","20390":"Covetous Gold Serpent Ring","20391":"Covetous Gold Serpent Ring+1","20392":"Covetous Gold Serpent Ring+2","20393":"Covetous Gold Serpent Ring+3","20400":"Covetous Silver Serpent Ring","20401":"Covetous Silver Serpent Ring+1","20402":"Covetous Silver Serpent Ring+2","20403":"Covetous Silver Serpent Ring+3","20410":"Sun Princess Ring","20420":"Silvercat Ring","20430":"Skull Ring","20440":"Untrue White Ring","20450":"Carthus Milkring","20460":"Knight's Ring","20470":"Hunter's Ring","20480":"Knight Slayer's Ring","20490":"Magic Clutch Ring","20500":"Lightning Clutch Ring","20510":"Fire Clutch Ring","20520":"Dark Clutch Ring","20540":"Flynn's Ring","20550":"Prisoner's Chain","20560":"Untrue Dark Ring","20580":"Obscuring Ring","20590":"Ring of the Evil Eye","20591":"Ring of the Evil Eye+1","20592":"Ring of the Evil Eye+2","20593":"Ring of the Evil Eye+3","20600":"Calamity Ring","20610":"Farron Ring","20620":"Aldrich's Ruby","20630":"Aldrich's Sapphire","20660":"Lloyd's Sword Ring","20670":"Lloyd's Shield Ring","20700":"Estus Ring","20710":"Ashen Estus Ring","20720":"Horsehoof Ring","20730":"Carthus Bloodring","20740":"Reversal Ring","20750":"Pontiff's Right Eye","20790":"Pontiff's Left Eye","20830":"Dragonscale Ring","21000":"Chillbite Ring"},"EquipParamGoods":{"60":"ID Monitoring Item 1 -- ID監視用アイテム1","61":"ID Monitoring Item 2 -- ID監視用アイテム2","62":"ID Monitoring Item 3 -- ID監視用アイテム3","63":"ID Monitoring Item 4 -- ID監視用アイテム4","64":"ID Monitoring Item 5 -- ID監視用アイテム5","65":"ID Monitoring Item 6 -- ID監視用アイテム6","66":"ID Monitoring Item 7 -- ID監視用アイテム7","67":"ID Monitoring Item 8 -- ID監視用アイテム8","68":"ID Monitoring Item 9 -- ID監視用アイテム9","69":"ID Monitoring Item 10 -- ID監視用アイテム10","94":"Dummy for PC animation reproduction when blood character is created -- 血文字作成時のPCアニメ再生用ダミー","100":"White Sign Soapstone","101":"Red Sign Soapstone","102":"Red Eye Orb","103":"Black Separation Crystal","108":"Roster of Knights","111":"Cracked Red Eye Orb","115":"Black Eye Orb","117":"Darksign","119":"Way of White Circlet","150":"Estus Flask","151":"Estus Flask","152":"Estus Flask+1","153":"Estus Flask+1","154":"Estus Flask+2","155":"Estus Flask+2","156":"Estus Flask+3","157":"Estus Flask+3","158":"Estus Flask+4","159":"Estus Flask+4","160":"Estus Flask+5","161":"Estus Flask+5","162":"Estus Flask+6","163":"Estus Flask+6","164":"Estus Flask+7","165":"Estus Flask+7","166":"Estus Flask+8","167":"Estus Flask+8","168":"Estus Flask+9","169":"Estus Flask+9","170":"Estus Flask+10","171":"Estus Flask+10","190":"Ashen Estus Flask","191":"Ashen Estus Flask","192":"Ashen Estus Flask+1","193":"Ashen Estus Flask+1","194":"Ashen Estus Flask+2","195":"Ashen Estus Flask+2","196":"Ashen Estus Flask+3","197":"Ashen Estus Flask+3","198":"Ashen Estus Flask+4","199":"Ashen Estus Flask+4","200":"Ashen Estus Flask+5","201":"Ashen Estus Flask+5","202":"Ashen Estus Flask+6","203":"Ashen Estus Flask+6","204":"Ashen Estus Flask+7","205":"Ashen Estus Flask+7","206":"Ashen Estus Flask+8","207":"Ashen Estus Flask+8","208":"Ashen Estus Flask+9","209":"Ashen Estus Flask+9","210":"Ashen Estus Flask+10","211":"Ashen Estus Flask+10","240":"Divine Blessing","241":"Hidden Blessing","260":"Green Blossom","261":"Budding Green Blossom","262":"Budding Green Blossom","270":"Bloodred Moss Clump","271":"Purple Moss Clump","272":"Blooming Purple Moss Clump","274":"Purging Stone","276":"Rime-blue Moss Clump","280":"Repair Powder","290":"Kukri","292":"Firebomb","293":"Dung Pie","294":"Alluring Skull","296":"Undead Hunter Charm","297":"Black Firebomb","299":"Rope Firebomb","300":"Lightning Urn","302":"Rope Black Firebomb","303":"Stalk Dung Pie","304":"Duel Charm","310":"Throwing Knife","311":"Poison Throwing Knife","315":"Church Guardian Shiv","330":"Charcoal Pine Resin","331":"Gold Pine Resin","334":"Human Pine Resin","335":"Carthus Rouge","336":"Pale Pine Resin","340":"Charcoal Pine Bundle","341":"Gold Pine Bundle","343":"Rotten Pine Resin","350":"Homeward Bone","351":"Coiled Sword Fragment","366":"Wolf's Blood Swordgrass","367":"Human Dregs","368":"Forked Pale Tongue","369":"Proof of a Concord Well Kept","370":"Prism Stone","371":"Binoculars","372":"Proof of a Concord Kept","373":"Pale Tongue","374":"Vertebra Shackle","375":"Sunlight Medal","376":"Pendant","377":"Dragon Head Stone","378":"Dragon Torso Stone","379":"Filianore's Spear Ornament","380":"Rubbish","385":"Dried Finger","387":"Twinkling Dragon Head Stone","388":"Twinkling Dragon Torso Stone","390":"Fire Keeper Soul","400":"Fading Soul","401":"Soul of a Deserted Corpse","402":"Large Soul of a Deserted Corpse","403":"Soul of an Unknown Traveler","404":"Large Soul of an Unknown Traveler","405":"Soul of a Nameless Soldier","406":"Large Soul of a Nameless Soldier","407":"Soul of a Weary Warrior","408":"Large Soul of a Weary Warrior","409":"Soul of a Crestfallen Knight","410":"Large Soul of a Crestfallen Knight","411":"Soul of a Proud Paladin","412":"Large Soul of a Proud Paladin","413":"Soul of an Intrepid Hero","414":"Large Soul of an Intrepid Hero","415":"Soul of a Seasoned Warrior","416":"Large Soul of a Seasoned Warrior","417":"Soul of an Old Hand","418":"Soul of a Venerable Old Hand","419":"Soul of a Champion","420":"Soul of a Great Champion","440":"Seed of a Giant Tree","452":"Mossfruit","454":"Young White Branch","455":"Rusted Coin","456":"Siegbräu","457":"Rusted Gold Coin","458":"Blue Bug Pellet","459":"Red Bug Pellet","460":"Yellow Bug Pellet","461":"Black Bug Pellet","462":"Young White Branch","463":"Young White Branch","490":"Dark Sigil","500":"Ember","520":"Hello Carving","521":"Thank you Carving","522":"Very good! Carving","523":"I'm sorry Carving","524":"Help me! Carving","650":"Ritual Spear Fragment","651":"Divine Spear Fragment","712":"Soul of Champion Gundyr","714":"Soul of the Dancer","715":"Soul of a Crystal Sage","717":"Soul of the Blood of the Wolf","718":"Soul of Consumed Oceiros","719":"Soul of Boreal Valley Vordt","720":"Soul of the Old Demon King","721":"Soul of Dragonslayer Armour","722":"Soul of the Nameless King","724":"Soul of Pontiff Sulyvahn","725":"Soul of Aldrich","726":"Soul of High Lord Wolnir","727":"Soul of the Rotted Greatwood","728":"Soul of Rosaria","729":"Soul of the Deacons of the Deep","731":"Soul of the Twin Princes","732":"Soul of Yhorm the Giant","733":"Soul of the Lords","739":"Soul of a Demon","743":"Soul of a Stray Demon","744":"Soul of Sister Friede","745":"Soul of Slave Knight Gael","746":"Soul of the Demon Prince","747":"Soul of Darkeater Midir","1000":"Titanite Shard","1001":"Large Titanite Shard","1002":"Titanite Chunk","1003":"Titanite Slab","1020":"Titanite Scale","1030":"Twinkling Titanite","1100":"Heavy Gem","1110":"Sharp Gem","1120":"Refined Gem","1130":"Crystal Gem","1140":"Simple Gem","1150":"Fire Gem","1160":"Chaos Gem","1170":"Lightning Gem","1180":"Deep Gem","1190":"Dark Gem","1200":"Poison Gem","1210":"Blood Gem","1220":"Raw Gem","1230":"Blessed Gem","1240":"Hollow Gem","1250":"Shriving Stone","2001":"Lift Chamber Key","2005":"Small Doll","2007":"Jailbreaker's Key","2008":"Jailer's Key Ring","2009":"Grave Key","2010":"Cell Key","2011":"Dungeon Ground Floor Key","2012":"Old Cell Key","2013":"Tower Key","2014":"Grand Archives Key","2015":"Tower Key","2102":"Small Lothric Banner","2103":"Farron Coal","2104":"Sage's Coal","2105":"Giant's Coal","2106":"Profaned Coal","2107":"Mortician's Ashes","2108":"Dreamchaser's Ashes","2109":"Paladin's Ashes","2110":"Grave Warden's Ashes","2111":"Greirat's Ashes","2112":"Orbeck's Ashes","2113":"Cornyx's Ashes","2114":"Karla's Ashes","2115":"Irina's Ashes","2116":"Yuria's Ashes","2117":"Basin of Vows","2118":"Loretta's Bone","2119":"Braille Divine Tome of Carim","2120":"Braille Divine Tome of Lothric","2121":"Braille Divine Sunlight Tome","2123":"Cinders of a Lord","2124":"Cinders of a Lord","2125":"Cinders of a Lord","2126":"Cinders of a Lord","2127":"Great Swamp Pyromancy Tome","2128":"Carthus Pyromancy Tome","2129":"Izalith Pyromancy Tome","2130":"Quelana Pyromancy Tome","2131":"Grave Warden Pyromancy Tome","2132":"Sage's Scroll","2133":"Logan's Scroll","2134":"Crystal Scroll","2135":"Transposing Kiln","2137":"Coiled Sword","2138":"Eyes of a Fire Keeper","2139":"Sword of Avowal","2140":"Golden Scroll","2141":"Estus Shard","2142":"Hawkwood's Swordgrass","2143":"Undead Bone Shard","2144":"Deep Braille Divine Tome","2145":"Londor Braille Divine Tome","2146":"Excrement-covered Ashes","2147":"Prisoner Chief's Ashes","2148":"Xanthous Ashes","2149":"Hollow's Ashes","2150":"Patches' Ashes","2151":"Dragon Chaser's Ashes","2152":"Easterner's Ashes","2153":"Champion's Bones","2154":"Captain's Ashes","2155":"Contraption Key","2156":"Small Envoy Banner","2157":"Old Woman's Ashes","2158":"Blood of the Dark Soul","2159":"Young Grass Dew","9000":"Beckon","9001":"Point forward","9002":"Hurrah!","9003":"Bow","9004":"Jump for joy","9005":"Duel bow","9006":"Wave","9007":"Praise the Sun","9008":"Point up","9009":"Point down","9012":"Prostration","9013":"Proper bow","9014":"Prayer","9015":"Welcome","9016":"Joy","9017":"My thanks!","9018":"Rejoice","9019":"Rest","9020":"By my sword","9021":"Dignified bow","9023":"Curl up","9024":"Stretch out","9025":"Call over","9026":"Collapse","9027":"Quiet Resolve","9028":"Patches Squat","9029":"Applause","9030":"Path of the Dragon","9031":"Legion Etiquette","9032":"Darkmoon Loyalty","9033":"Sleep","9034":"Toast","9035":"Silent Ally","1200000":"Farron Dart","1210000":"Great Farron Dart","1300000":"Soul Arrow","1301000":"Great Soul Arrow","1302000":"Heavy Soul Arrow","1303000":"Great Heavy Soul Arrow","1304000":"Homing Soulmass","1305000":"Homing Crystal Soulmass","1306000":"Soul Spear","1307000":"Crystal Soul Spear","1308000":"Deep Soul","1309000":"Great Deep Soul","1310000":"Magic Weapon","1311000":"Great Magic Weapon","1312000":"Crystal Magic Weapon","1313000":"Frozen Weapon","1330000":"Magic Shield","1331000":"Great Magic Shield","1340000":"Hidden Weapon","1341000":"Hidden Body","1350000":"Cast Light","1353000":"Repair","1354000":"Spook","1355000":"Chameleon","1356000":"Aural Decoy","1370000":"White Dragon Breath","1372000":"Farron Hail","1373000":"Crystal Hail","1374000":"Soul Greatsword","1375000":"Farron Flashsword","1376000":"Old Moonlight","1603000":"Affinity","1604000":"Great Soul Dregs","1613000":"Dark Edge","1620000":"Soul Stream","1651000":"Twisted Wall of Light","1740000":"Pestilent Mist","1741000":"Snap Freeze","2400000":"Fireball","2402000":"Fire Orb","2403000":"Firestorm","2405000":"Fire Surge","2407000":"Black Serpent","2411000":"Great Combustion","2420000":"Poison Mist","2421000":"Toxic Mist","2422000":"Acid Surge","2430000":"Iron Flesh","2431000":"Flash Sweat","2435000":"Carthus Flame Arc","2436000":"Rapport","2440000":"Power Within","2450000":"Great Chaos Fire Orb","2451000":"Chaos Storm","2452000":"Fire Whip","2453000":"Black Flame","2455000":"Profaned Flame","2456000":"Chaos Bed Vestiges","2457000":"Floating Chaos","2458000":"Flame Fan","2470000":"Warmth","2562000":"Profuse Sweat","2610000":"Black Fire Orb","2620000":"Bursting Fireball","2630000":"Boulder Heave","2640000":"Sacred Flame","2650000":"Carthus Beacon","2660000":"Seething Chaos","3490000":"Heal Aid","3500000":"Heal","3501000":"Med Heal","3502000":"Great Heal","3503000":"Soothing Sunlight","3504000":"Replenishment","3505000":"Bountiful Sunlight","3507000":"Bountiful Light","3508000":"Caressing Tears","3509000":"Lightning Arrow","3520000":"Tears of Denial","3521000":"Homeward","3530000":"Force","3531000":"Wrath of the Gods","3532000":"Emit Force","3540000":"Seek Guidance","3550000":"Lightning Spear","3551000":"Great Lightning Spear","3552000":"Sunlight Spear","3553000":"Lightning Storm","3554000":"Gnaw","3555000":"Dorhys' Gnawing","3556000":"Way of White Corona","3557000":"Projected Heal","3560000":"Magic Barrier","3561000":"Great Magic Barrier","3563000":"Sacred Oath","3581000":"Vow of Silence","3590000":"Lightning Blade","3591000":"Darkmoon Blade","3640000":"Dark Blade","3700000":"Dead Again","3710000":"Lightning Stake","3720000":"Divine Pillars of Light","3730000":"Lifehunt Scythe","3760000":"Blessed Weapon","3770000":"Deep Protection","3780000":"Atonement"},"EquipParamProtector":{"1":"Ghoul head for PV -- PV用グール頭","101000":"Embraced Armor of Favor","102000":"Gauntlets of Favor","103000":"Leggings of Favor","111000":"Armor of the Glorious","112000":"Gauntlets of the Vanquisher","113000":"Boots of the Explorer","121000":"Stone Armor","122000":"Stone Gauntlets","123000":"Stone Leggings","131000":"Crystalline Armor","132000":"Crystalline Gauntlets","133000":"Crystalline Leggings","141000":"Crimson Robe","142000":"Crimson Gloves","143000":"Crimson Waistcloth","151000":"Black Cleric Robe","152000":"Black Manchette","153000":"Black Tights","161000":"Armor of the Sun","162000":"Iron Bracelet","163000":"Iron Leggings","171000":"Chain Armor","172000":"Leather Gauntlets","173000":"Chain Leggings","181000":"Cleric Armor","182000":"Cleric Gauntlets","183000":"Cleric Leggings","201000":"Armor of Thorns","202000":"Gauntlets of Thorns","203000":"Leggings of Thorns","211000":"Hard Leather Armor","212000":"Hard Leather Gauntlets","213000":"Hard Leather Boots","221000":"Sorcerer Cloak","222000":"Sorcerer Gauntlets","223000":"Sorcerer Boots","231000":"Tattered Cloth Robe","232000":"Tattered Cloth Manchette","233000":"Heavy Boots","241000":"Leather Armor","242000":"Leather Gloves","243000":"Leather Boots","251000":"Painting Guardian Robe","252000":"Painting Guardian Gloves","253000":"Painting Guardian Waistcloth","271000":"Ornstein's Armor","272000":"Ornstein's Gauntlets","273000":"Ornstein's Leggings","281000":"Eastern Armor","282000":"Eastern Gauntlets","283000":"Eastern Leggings","291000":"Xanthous Overcoat","292000":"Xanthous Gloves","293000":"Xanthous Waistcloth","301000":"Black Leather Armor","302000":"Black Leather Gloves","303000":"Black Leather Boots","400000":"Dingy Hood","401000":"Dingy Robe","402000":"Dingy Gloves","403000":"Blood-Stained Skirt","600000":"Mask of the Mother","601000":"[Yamagishi] King of firewood test 1_ torso -- 【山岸】薪の王テスト1_胴","602000":"[Yamagishi] King of firewood test 1_ arm -- 【山岸】薪の王テスト1_腕","603000":"[Yamagishi] King of firewood test 1_ leg -- 【山岸】薪の王テスト1_脚","610000":"Mask of the Child","611000":"[Yamagishi] King of firewood test 2_ torso -- 【山岸】薪の王テスト2_胴","612000":"[Yamagishi] King of firewood test 2_ arm -- 【山岸】薪の王テスト2_腕","613000":"[Yamagishi] King of firewood test 2_ leg -- 【山岸】薪の王テスト2_脚","620000":"Fang Boar Helm","621000":"[Load check] memory check 1_ Torso -- 【負荷チェック】メモリチェック1_胴","622000":"[Load check] memory check 1_ arm -- 【負荷チェック】メモリチェック1_腕","623000":"[Load check] memory check 1_ leg -- 【負荷チェック】メモリチェック1_脚","630000":"Gargoyle Helm","631000":"[Load check] memory check 2_ Torso -- 【負荷チェック】メモリチェック2_胴","632000":"[Load check] memory check 2_ arm -- 【負荷チェック】メモリチェック2_腕","633000":"[Load check] memory check 2_ leg -- 【負荷チェック】メモリチェック2_脚","640000":"Black Sorcerer Hat","641000":"Black Sorcerer Cloak","642000":"Black Sorcerer Gauntlets","643000":"Black Sorcerer Boots","650000":"Elite Cleric Helm","651000":"Elite Cleric Armor","652000":"Elite Cleric Gauntlets","653000":"Elite Cleric Leggings","660000":"[Load check] memory check 5_ head -- 【負荷チェック】メモリチェック5_頭","661000":"[Load check] memory check 5_ Torso -- 【負荷チェック】メモリチェック5_胴","662000":"[Load check] memory check 5_ arm -- 【負荷チェック】メモリチェック5_腕","663000":"[Load check] memory check 5_ leg -- 【負荷チェック】メモリチェック5_脚","670000":"[Load check] memory check 6_ head -- 【負荷チェック】メモリチェック6_頭","671000":"[Load check] memory check 6_ Torso -- 【負荷チェック】メモリチェック6_胴","672000":"[Load check] memory check 6_ arm -- 【負荷チェック】メモリチェック6_腕","673000":"[Load check] memory check 6_ leg -- 【負荷チェック】メモリチェック6_脚","730000":"[Proto] Gold Armor _ Head -- 【プロト】錬金鎧_頭","731000":"[Proto] Smelting gold armor _ torso -- 【プロト】錬金鎧_胴","732000":"[Proto] Wrought gold armor _ arms -- 【プロト】錬金鎧_腕","733000":"[Proto] Wrought gold armor _ legs -- 【プロト】錬金鎧_脚","740000":"[Proto] Hunter _ head -- 【プロト】ハンター_頭","741000":"[Proto] Hunter _ Torso -- 【プロト】ハンター_胴","742000":"[Proto] Hunter _ Arms -- 【プロト】ハンター_腕","743000":"[Proto] Hunter _ leg -- 【プロト】ハンター_脚","750000":"[Proto] Soldier _ head -- 【プロト】兵士_頭","751000":"[Proto] Soldier _ Torso -- 【プロト】兵士_胴","752000":"[Proto] Soldiers _ arms -- 【プロト】兵士_腕","753000":"[Proto] Soldier _ leg -- 【プロト】兵士_脚","760000":"[Proto] Covert _ head -- 【プロト】隠密_頭","761000":"[Proto] Covert _ Torso -- 【プロト】隠密_胴","762000":"[Proto] Covert _ Arms -- 【プロト】隠密_腕","763000":"[Proto] Covert _ leg -- 【プロト】隠密_脚","770000":"[Proto] Covert _ head -- 【プロト】隠密_頭","771000":"[Proto] Covert _ Torso -- 【プロト】隠密_胴","772000":"[Proto] Covert _ Arms -- 【プロト】隠密_腕","773000":"[Proto] Covert _ leg -- 【プロト】隠密_脚","780000":"Fugitive Head -- 逃亡者 頭","781000":"Fugitive Torso -- 逃亡者 胴","782000":"Fugitive arm -- 逃亡者 腕","783000":"Fugitive Leg -- 逃亡者 脚","790000":"Funeral Knights Head -- 葬儀騎士 頭","791000":"Funeral Knight Torso -- 葬儀騎士 胴","792000":"Funeral Knight Arms -- 葬儀騎士 腕","793000":"Funeral Knights Leg -- 葬儀騎士 脚","800000":"Head of the Red Knight -- 紅騎士 頭","801000":"Red Knight Torso -- 紅騎士 胴","802000":"Red Knight Arms -- 紅騎士 腕","803000":"Red Knight Leg -- 紅騎士 脚","810000":"Composite (TGS) head -- 複合(TGS)頭","811000":"Compound (TGS) torso -- 複合(TGS)胴","812000":"Compound (TGS) hand -- 複合(TGS)手","813000":"Combined (TGS) legs -- 複合(TGS)脚","820000":"Head of the Overlord (TGS) -- 覇王(TGS)頭","821000":"Overlord (TGS) Torso -- 覇王(TGS)胴","822000":"Overlord (TGS) hand -- 覇王(TGS)手","823000":"Overlord Leg -- 覇王(TGS)脚","830000":"Noble (TGS) head -- 貴族(TGS)頭","831000":"Noble (TGS) Torso -- 貴族(TGS)胴","832000":"Noble (TGS) hand -- 貴族(TGS)手","833000":"Noble (TGS) legs -- 貴族(TGS)脚","840000":"Jeanne (TGS) head -- ジャンヌ(TGS)頭","841000":"Jeanne (TGS) Torso -- ジャンヌ(TGS)胴","842000":"Jeanne (TGS) hand -- ジャンヌ(TGS)手","843000":"Jeanne (TGS) leg -- ジャンヌ(TGS)脚","900000":"Head","901000":"Body","902000":"Arms","903000":"Legs","910000":"Metal Armor Test _ Head -- 金属鎧テスト_頭","911000":"Metal Armor Test _ Breast -- 金属鎧テスト_胸","912000":"Metal Armor Test _ Arms -- 金属鎧テスト_腕","913000":"Metal Armor Test Leg -- 金属鎧テスト_脚","920000":"Red Fans _ Head -- 赤ファン_頭","921000":"Red Fan _ Chest -- 赤ファン_胸","922000":"Red Fans _ Arms -- 赤ファン_腕","923000":"Red Fan _ Legs -- 赤ファン_脚","930000":"Weight test -- 重量装備テスト","931000":"Weight test -- 重量装備テスト","932000":"Weight test -- 重量装備テスト","933000":"Weight test -- 重量装備テスト","950000":"No Travel Gear / Head","951000":"No Travel Gear / Body","952000":"No Travel Gear / Arms","953000":"No Travel Gear / Legs","961000":"Jeanne (Wandering) head -- ジャンヌ(徘徊)頭","962000":"Jeanne (Prowl) Torso -- ジャンヌ(徘徊)胴","963000":"Jeanne (Wandering) hands -- ジャンヌ(徘徊)手","964000":"Jeanne (Prowl) legs -- ジャンヌ(徘徊)脚","971000":"Head of complex equipment (wandering) -- 複合装備(徘徊)頭","972000":"Compound equipment (wandering) trunk -- 複合装備(徘徊)胴","973000":"Mixed equipment (wandering) hands -- 複合装備(徘徊)手","974000":"Complex (wandering) legs -- 複合装備(徘徊)脚","981000":"Noble (Wandering) head -- 貴族(徘徊)頭","982000":"Noble (Wandering) torso -- 貴族(徘徊)胴","983000":"Noble (Wandering) hands -- 貴族(徘徊)手","984000":"Noble (wandering) legs -- 貴族(徘徊)脚","991000":"Head (Wandering) Overlord -- 覇王(徘徊)頭","992000":"Overlord (Wandering) torso -- 覇王(徘徊)胴","993000":"Hand (Wandering) Overlord -- 覇王(徘徊)手","994000":"Overlord Leg -- 覇王(徘徊)脚","1000000":"Dragon Head","1001000":"Dragon Body","1002000":"Dragon Arms","1003000":"Dragon Legs","19000000":"Fallen Knight Helm","19001000":"Fallen Knight Armor","19002000":"Fallen Knight Gauntlets","19003000":"Fallen Knight Trousers","19500000":"Knight Helm","19501000":"Knight Armor","19502000":"Knight Gauntlets","19503000":"Knight Leggings","20000000":"Vilhelm's Helm","20001000":"Vilhelm's Armor","20002000":"Vilhelm's Gauntlets","20003000":"Vilhelm's Leggings","21000000":"Firelink Helm","21001000":"Firelink Armor","21002000":"Firelink Gauntlets","21003000":"Firelink Leggings","21500000":"Sellsword Helm","21501000":"Sellsword Armor","21502000":"Sellsword Gauntlet","21503000":"Sellsword Trousers","22000000":"Herald Helm","22001000":"Herald Armor","22002000":"Herald Gloves","22003000":"Herald Trousers","22500000":"Sunless Veil","22501000":"Sunless Armor","22502000":"Sunless Gauntlets","22503000":"Sunless Leggings","23000000":"Black Hand Hat","23001000":"Black Hand Armor","23002000":"Assassin Gloves","23003000":"Assassin Trousers","23100000":"Assassin Hood","23101000":"Assassin Armor","23500000":"Xanthous Crown","23501000":"Xanthous Overcoat","23502000":"Xanthous Gloves","23503000":"Xanthous Trousers","24000000":"Northern Helm","24001000":"Northern Armor","24002000":"Northern Gloves","24003000":"Northern Trousers","24500000":"Morne's Helm","24501000":"Morne's Armor","24502000":"Morne's Gauntlets","24503000":"Morne's Leggings","25000000":"Silver Mask","25001000":"Leonhard's Garb","25002000":"Leonhard's Gauntlets","25003000":"Leonhard's Trousers","25500000":"Sneering Mask","25501000":"Pale Shade Robe","25502000":"Pale Shade Gloves","25503000":"Pale Shade Trousers","26000000":"Sunset Helm","26001000":"Sunset Armor","26002000":"Sunset Gauntlets","26003000":"Sunset Leggings","26500000":"Old Sage's Blindfold","26501000":"Cornyx's Garb","26502000":"Cornyx's Wrap","26503000":"Cornyx's Skirt","27000000":"Executioner Helm","27001000":"Executioner Armor","27002000":"Executioner Gauntlets","27003000":"Executioner Leggings","27500000":"Billed Mask","27501000":"Black Dress","27502000":"Black Gauntlets","27503000":"Black Leggings","28000000":"Pyromancer Crown","28001000":"Pyromancer Garb","28002000":"Pyromancer Wrap","28003000":"Pyromancer Trousers","28501000":"Antiquated Plain Garb","28502000":"Violet Wrappings","28503000":"Loincloth","29000000":"Court Sorcerer Hood","29001000":"Court Sorcerer Robe","29002000":"Court Sorcerer Gloves","29003000":"Court Sorcerer Trousers","29500000":"Shira's Crown","29501000":"Shira's Armor","29502000":"Shira's Gloves","29503000":"Shira's Trousers","30000000":"Sorcerer Hood","30001000":"Sorcerer Robe","30002000":"Sorcerer Gloves","30003000":"Sorcerer Trousers","30101000":"Clandestine Coat","31000000":"Cleric Hat","31001000":"Cleric Blue Robe","31002000":"Cleric Gloves","31003000":"Cleric Trousers","32000000":"Lapp's Helm","32001000":"Lapp's Armor","32002000":"Lapp's Gauntlets","32003000":"Lapp's Leggings","40000000":"Steel Soldier Helm","40001000":"Deserter Armor","40003000":"Deserter Trousers","40200000":"Thief Mask","43000000":"Sage's Big Hat","44000000":"Aristocrat's Mask","44001000":"Jailer Robe","44002000":"Jailer Gloves","44003000":"Jailer Trousers","46000000":"Grave Warden Hood","46001000":"Grave Warden Robe","46002000":"Grave Warden Wrap","46003000":"Grave Warden Skirt","47000000":"Worker Hat","47001000":"Worker Garb","47002000":"Worker Gloves","47003000":"Worker Trousers","47500000":"Thrall Hood","48000000":"Evangelist Hat","48001000":"Evangelist Robe","48002000":"Evangelist Gloves","48003000":"Evangelist Trousers","48500000":"Scholar's Shed Skin","48501000":"Scholar's Robe","49000000":"Winged Knight Helm","49001000":"Winged Knight Armor","49002000":"Winged Knight Gauntlets","49003000":"Winged Knight Leggings","50500000":"Cathedral Knight Helm","50501000":"Cathedral Knight Armor","50502000":"Cathedral Knight Gauntlets","50503000":"Cathedral Knight Leggings","52000000":"Lothric Knight Helm","52001000":"Lothric Knight Armor","52002000":"Lothric Knight Gauntlets","52003000":"Lothric Knight Leggings","53000000":"Outrider Knight Helm","53001000":"Outrider Knight Armor","53002000":"Outrider Knight Gauntlets","53003000":"Outrider Knight Leggings","54000000":"Black Knight Helm","54001000":"Black Knight Armor","54002000":"Black Knight Gauntlets","54003000":"Black Knight Leggings","54500000":"Dark Mask","54501000":"Dark Armor","54502000":"Dark Gauntlets","54503000":"Dark Leggings","55000000":"Exile Mask","55001000":"Exile Armor","55002000":"Exile Gauntlets","55003000":"Exile Leggings","55500000":"Slave Knight Hood","55501000":"Slave Knight Armor","55502000":"Slave Knight Gauntlets","55503000":"Slave Knight Leggings","56000000":"Pontiff Knight Crown","56001000":"Pontiff Knight Armor","56002000":"Pontiff Knight Gauntlets","56003000":"Pontiff Knight Leggings","56500000":"Ordained Hood","56501000":"Ordained Dress","56503000":"Ordained Trousers","57000000":"Golden Crown","57001000":"Dragonscale Armor","57002000":"Golden Bracelets","57003000":"Dragonscale Waistcloth","57500000":"Wolnir's Crown","58000000":"Undead Legion Helm","58001000":"Undead Legion Armor","58002000":"Undead Legion Gauntlet","58003000":"Undead Legion Leggings","58500000":"Follower Helm","58501000":"Follower Armor","58502000":"Follower Gloves","58503000":"Follower Boots","59500000":"Man Serpent's Mask","60000000":"Fire Witch Helm","60001000":"Fire Witch Armor","60002000":"Fire Witch Gauntlets","60003000":"Fire Witch Leggings","60500000":"Millwood Knight Helm","60501000":"Millwood Knight Armor","60502000":"Millwood Knight Gauntlets","60503000":"Millwood Knight Leggings","61000000":"Lorian's Helm","61001000":"Lorian's Armor","61002000":"Lorian's Gauntlets","61003000":"Lorian's Leggings","61500000":"Hood of Prayer","61501000":"Robe of Prayer","61503000":"Skirt of Prayer","63000000":"Dancer's Crown","63001000":"Dancer's Armor","63002000":"Dancer's Gauntlets","63003000":"Dancer's Leggings","63500000":"Ringed Knight Hood","63501000":"Ringed Knight Armor","63502000":"Ringed Knight Gauntlets","63503000":"Ringed Knight Leggings","64000000":"Gundyr's Helm","64001000":"Gundyr's Armor","64002000":"Gundyr's Gauntlets","64003000":"Gundyr's Leggings","64501000":"Harald Legion Armor","64502000":"Harald Legion Gauntlets","64503000":"Harald Legion Leggings","66000000":"Archdeacon White Crown","66001000":"Archdeacon Holy Garb","66003000":"Archdeacon Skirt","66501000":"Deacon Robe","66503000":"Deacon Skirt","67500000":"Iron Dragonslayer Helm","67501000":"Iron Dragonslayer Armor","67502000":"Iron Dragonslayer Gauntlets","67503000":"Iron Dragonslayer Leggings","68001000":"Fire Keeper Robe","68002000":"Fire Keeper Gloves","68003000":"Fire Keeper Skirt","68500000":"White Preacher Head","70000000":"Chain Helm","70001000":"Chain Armor","70002000":"Leather Gauntlets","70003000":"Chain Leggings","71000000":"Nameless Knight Helm","71001000":"Nameless Knight Armor","71002000":"Nameless Knight Gauntlets","71003000":"Nameless Knight Leggings","72000000":"Elite Knight Helm","72001000":"Elite Knight Armor","72002000":"Elite Knight Gauntlets","72003000":"Elite Knight Leggings","73000000":"Faraam Helm","73001000":"Faraam Armor","73002000":"Faraam Gauntlets","73003000":"Faraam Boots","74000000":"Catarina Helm","74001000":"Catarina Armor","74002000":"Catarina Gauntlets","74003000":"Catarina Leggings","74500000":"Standard Helm","74501000":"Hard Leather Armor","74502000":"Hard Leather Gauntlets","74503000":"Hard Leather Boots","75000000":"Havel's Helm","75001000":"Havel's Armor","75002000":"Havel's Gauntlets","75003000":"Havel's Leggings","75500000":"Brigand Hood","75501000":"Brigand Armor","75502000":"Brigand Gauntlets","75503000":"Brigand Trousers","76000000":"Pharis's Hat","76001000":"Leather Armor","76002000":"Leather Gloves","76003000":"Leather Boots","76500000":"Ragged Mask","76501000":"Master's Attire","76502000":"Master's Gloves","76503000":"Loincloth","77000000":"Old Sorcerer Hat","77001000":"Old Sorcerer Coat","77002000":"Old Sorcerer Gauntlets","77003000":"Old Sorcerer Boots","77500000":"Conjurator Hood","77501000":"Conjurator Robe","77502000":"Conjurator Manchettes","77503000":"Conjurator Boots","78001000":"Black Leather Armor","78002000":"Black Leather Gloves","78003000":"Black Leather Boots","78500000":"Symbol of Avarice","79000000":"Creighton's Steel Mask","79001000":"Mirrah Chain Mail","79002000":"Mirrah Chain Gloves","79003000":"Mirrah Chain Leggings","79500000":"Maiden Hood","79501000":"Maiden Robe","79502000":"Maiden Gloves","79503000":"Maiden Skirt","80000000":"Alva Helm","80001000":"Alva Armor","80002000":"Alva Gauntlets","80003000":"Alva Leggings","80500000":"Ruin Helm","80501000":"Ruin Armor","80502000":"Ruin Gauntlets","80503000":"Ruin Leggings","81000000":"Shadow Mask","81001000":"Shadow Garb","81002000":"Shadow Gauntlets","81003000":"Shadow Leggings","81500000":"Desert Pyromancer Hood","81501000":"Desert Pyromancer Garb","81502000":"Desert Pyromancer Gloves","81503000":"Desert Pyromancer Skirt","82000000":"Eastern Helm","82001000":"Eastern Armor","82002000":"Eastern Gauntlets","82003000":"Eastern Leggings","82500000":"Black Witch Hat","82501000":"Black Witch Garb","82502000":"Black Witch Wrappings","82503000":"Black Witch Trousers","83000000":"Helm of Favor","83001000":"Embraced Armor of Favor","83002000":"Gauntlets of Favor","83003000":"Leggings of Favor","83500000":"Black Witch Veil","84000000":"Brass Helm","84001000":"Brass Armor","84002000":"Brass Gauntlets","84003000":"Brass Leggings","84500000":"Blindfold Mask","85000000":"Silver Knight Helm","85001000":"Silver Knight Armor","85002000":"Silver Knight Gauntlets","85003000":"Silver Knight Leggings","86000000":"Lucatiel's Mask","86001000":"Mirrah Vest","86002000":"Mirrah Gloves","86003000":"Mirrah Trousers","87000000":"Iron Helm","87001000":"Armor of the Sun","87002000":"Iron Bracelets","87003000":"Iron Leggings","88000000":"Drakeblood Helm","88001000":"Drakeblood Armor","88002000":"Drakeblood Gauntlets","88003000":"Drakeblood Leggings","89001000":"Drang Armor","89002000":"Drang Gauntlets","89003000":"Drang Shoes","90000000":"Black Iron Helm","90001000":"Black Iron Armor","90002000":"Black Iron Gauntlets","90003000":"Black Iron Leggings","91000000":"Painting Guardian Hood","91001000":"Painting Guardian Gown","91002000":"Painting Guardian Gloves","91003000":"Painting Guardian Waistcloth","92000000":"Wolf Knight Helm","92001000":"Wolf Knight Armor","92002000":"Wolf Knight Gauntlets","92003000":"Wolf Knight Leggings","93000000":"Dragonslayer Helm","93001000":"Dragonslayer Armor","93002000":"Dragonslayer Gauntlets","93003000":"Dragonslayer Leggings","94000000":"Smough's Helm","94001000":"Smough's Armor","94002000":"Smough's Gauntlets","94003000":"Smough's Leggings","96000000":"Helm of Thorns","96001000":"Armor of Thorns","96002000":"Gauntlets of Thorns","96003000":"Leggings of Thorns","98000000":"Crown of Dusk","98001000":"Antiquated Dress","98002000":"Antiquated Gloves","98003000":"Antiquated Skirt","99000000":"Karla's Pointed Hat","99001000":"Karla's Coat","99002000":"Karla's Gloves","99003000":"Karla's Trousers"},"EquipParamWeapon":{"1000":"Weapon without correction -- 補正なし武器","1100":"Throwing Knives -- 投げナイフ","1200":"Fire bottle -- 火炎瓶","1300":"TestData1","1400":"TestData2","1500":"TestData3","1600":"TestData4","1700":"TestData5","1800":"TestData6","1900":"TestData7","2000":"TestData8","2100":"TestData9","91000":"[Load Check] memory Check 1 -- 【負荷チェック】メモリチェック1","91100":"[Load Check] memory Check 1 -- 【負荷チェック】メモリチェック1","92000":"[Load check] memory Check 2 -- 【負荷チェック】メモリチェック2","92100":"[Load check] memory Check 2 -- 【負荷チェック】メモリチェック2","93000":"[Load Check] memory Check 3 -- 【負荷チェック】メモリチェック3","93100":"[Load Check] memory Check 3 -- 【負荷チェック】メモリチェック3","94000":"[Load Check] memory check 4 -- 【負荷チェック】メモリチェック4","94100":"[Load Check] memory check 4 -- 【負荷チェック】メモリチェック4","95000":"[Load Check] memory Check 5 -- 【負荷チェック】メモリチェック5","95100":"[Load Check] memory Check 5 -- 【負荷チェック】メモリチェック5","96000":"[Load Check] memory Check 6 -- 【負荷チェック】メモリチェック6","96100":"[Load Check] memory Check 6 -- 【負荷チェック】メモリチェック6","98000":"[Load Check] Quiver 1 -- 【負荷チェック】矢筒1","98100":"[Load Check] Quiver 2 -- 【負荷チェック】矢筒2","98200":"[Load Check] Quiver 3 -- 【負荷チェック】矢筒3","98300":"[Load Check] Quiver 4 -- 【負荷チェック】矢筒4","98400":"[Load Check] Quiver 5 -- 【負荷チェック】矢筒5","98500":"[Load Check] Quiver 6 -- 【負荷チェック】矢筒6","98600":"[Load check] bolt cylinder 1 -- 【負荷チェック】ボルト筒1","98700":"[Load check] bolt cylinder 2 -- 【負荷チェック】ボルト筒2","98800":"[Load check] bolt cylinder 3 -- 【負荷チェック】ボルト筒3","98900":"[Load check] bolt cylinder 4 -- 【負荷チェック】ボルト筒4","99000":"[Load check] bolt cylinder 5 -- 【負荷チェック】ボルト筒5","99100":"[Load check] bolt cylinder 6 -- 【負荷チェック】ボルト筒6","110000":"Fists","400000":"Standard Arrow","400100":"Fire Arrow","400200":"Poison Arrow","400300":"Large Arrow","400400":"Feather Arrow","400500":"Moonlight Arrow","400600":"Wood Arrow","400700":"Dark Arrow","402000":"Dragonslayer Greatarrow","402200":"Dragonslayer Lightning Arrow","402300":"Onislayer Greatarrow","402400":"Millwood Greatarrow","404000":"Standard Bolt","404100":"Heavy Bolt","404200":"Sniper Bolt","404300":"Wood Bolt","404400":"Lightning Bolt","404500":"Splintering Bolt","404600":"Exploding Bolt","409900":"TestData Bolt1","419900":"TestData Bolt2","800000":"Test Greatbow","890000":"Test-Glow","890010":"Test-Glow +10","890020":"Test-Glow +20","890030":"Test-Glow +30","890040":"Test-Glow +40","890050":"Test-Glow +50","890060":"Test-Glow +60","890070":"Test-Glow +70","930000":"Ghost Dagger","930100":"Ghost Sword","930200":"Ghost Longsword","930300":"Ghost Ultralongsword","930310":"Ghost Ultralongsword+10","930400":"Ghost Rapier","930500":"Ghost Curved Sword","930600":"Ghost Saber","930700":"Ghost Katana","930800":"Ghost Curved Greatsword","930900":"Ghost Axe","931000":"Ghost Greataxe","931100":"Ghos Club","931200":"Ghost Greatclub","931300":"Ghost Spear","931400":"Ghost Halberd","931500":"Ghost Scythe","931600":"Ghost Staff","931700":"Ghost Chime","931800":"Ghost Pyrohand","931900":"Ghost Whip","932000":"Ghost Bow","932100":"Ghost Greatbow","932200":"Ghost Arbalet","932300":"Ghost Fist","932400":"Ghost Caestus","932500":"Ghost Claw","932600":"Ghost PairedCurvedSwords","932700":"Ghost PairedAxes","932800":"Ghost PairedDaggers","932900":"Ghost PairedLongSwords","933000":"Ghost PairedKatanas","933100":"Ghost PairedSpears","933200":"Ghost DemonFist","933300":"Ghost Claw","933400":"Ghost PairedMace","933600":"Ghost SmallShield","933610":"Ghost SmallShield +10","933700":"Ghost Shield","933710":"Ghost Shield +10","933800":"Ghost GreatShield","933900":"Ghost Torch","1000000":"Dagger","1000100":"Heavy Dagger","1000200":"Sharp Dagger","1000300":"Refined Dagger","1000400":"Simple Dagger","1000500":"Crystal Dagger","1000600":"Fire Dagger","1000700":"Chaos Dagger","1000800":"Lightning Dagger","1000900":"Deep Dagger","1001000":"Dark Dagger","1001100":"Poison Dagger","1001200":"Blood Dagger","1001300":"Raw Dagger","1001400":"Blessed Dagger","1001500":"Hollow Dagger","1010000":"Bandit's Knife","1010100":"Heavy Bandit's Knife","1010200":"Sharp Bandit's Knife","1010300":"Refined Bandit's Knife","1010400":"Simple Bandit's Knife","1010500":"Crystal Bandit's Knife","1010600":"Fire Bandit's Knife","1010700":"Chaos Bandit's Knife","1010800":"Lightning Bandit's Knife","1010900":"Deep Bandit's Knife","1011000":"Dark Bandit's Knife","1011100":"Poison Bandit's Knife","1011200":"Blood Bandit's Knife","1011300":"Raw Bandit's Knife","1011400":"Blessed Bandit's Knife","1011500":"Hollow Bandit's Knife","1020000":"Parrying Dagger","1020100":"Heavy Parrying Dagger","1020200":"Sharp Parrying Dagger","1020300":"Refined Parrying Dagger","1020400":"Simple Parrying Dagger","1020500":"Crystal Parrying Dagger","1020600":"Fire Parrying Dagger","1020700":"Chaos Parrying Dagger","1020800":"Lightning Parrying Dagger","1020900":"Deep Parrying Dagger","1021000":"Dark Parrying Dagger","1021100":"Poison Parrying Dagger","1021200":"Blood Parrying Dagger","1021300":"Raw Parrying Dagger","1021400":"Blessed Parrying Dagger","1021500":"Hollow Parrying Dagger","1040000":"Rotten Ghru Dagger","1040100":"Heavy Rotten Ghru Dagger","1040200":"Sharp Rotten Ghru Dagger","1040300":"Refined Rotten Ghru Dagger","1040400":"Simple Rotten Ghru Dagger","1040500":"Crystal Rotten Ghru Dagger","1040600":"Fire Rotten Ghru Dagger","1040700":"Chaos Rotten Ghru Dagger","1040800":"Lightning Rotten Ghru Dagger","1040900":"Deep Rotten Ghru Dagger","1041000":"Dark Rotten Ghru Dagger","1041100":"Poison Rotten Ghru Dagger","1041200":"Blood Rotten Ghru Dagger","1041300":"Raw Rotten Ghru Dagger","1041400":"Blessed Rotten Ghru Dagger","1041500":"Hollow Rotten Ghru Dagger","1060000":"Harpe","1060100":"Heavy Harpe","1060200":"Sharp Harpe","1060300":"Refined Harpe","1060400":"Simple Harpe","1060500":"Crystal Harpe","1060600":"Fire Harpe","1060700":"Chaos Harpe","1060800":"Lightning Harpe","1060900":"Deep Harpe","1061000":"Dark Harpe","1061100":"Poison Harpe","1061200":"Blood Harpe","1061300":"Raw Harpe","1061400":"Blessed Harpe","1061500":"Hollow Harpe","1070000":"Scholar's Candlestick","1080000":"Tailbone Short Sword","1090000":"Corvian Greatknife","1090100":"Heavy Corvian Greatknife","1090200":"Sharp Corvian Greatknife","1090300":"Refined Corvian Greatknife","1090400":"Simple Corvian Greatknife","1090500":"Crystal Corvian Greatknife","1090600":"Fire Corvian Greatknife","1090700":"Chaos Corvian Greatknife","1090800":"Lightning Corvian Greatknife","1090900":"Deep Corvian Greatknife","1091000":"Dark Corvian Greatknife","1091100":"Poison Corvian Greatknife","1091200":"Blood Corvian Greatknife","1091300":"Raw Corvian Greatknife","1091400":"Blessed Corvian Greatknife","1091500":"Hollow Corvian Greatknife","1120000":"Handmaid's Dagger","1140000":"Aquamarine Dagger","1150000":"Murky Hand Scythe","1150100":"Heavy Murky Hand Scythe","1150200":"Sharp Murky Hand Scythe","1150300":"Refined Murky Hand Scythe","1150400":"Simple Murky Hand Scythe","1150500":"Crystal Murky Hand Scythe","1150600":"Fire Murky Hand Scythe","1150700":"Chaos Murky Hand Scythe","1150800":"Lightning Murky Hand Scythe","1150900":"Deep Murky Hand Scythe","1151000":"Dark Murky Hand Scythe","1151100":"Poison Murky Hand Scythe","1151200":"Blood Murky Hand Scythe","1151300":"Raw Murky Hand Scythe","1151400":"Blessed Murky Hand Scythe","1151500":"Hollow Murky Hand Scythe","2000000":"Shortsword","2000100":"Heavy Shortsword","2000200":"Sharp Shortsword","2000300":"Refined Shortsword","2000400":"Simple Shortsword","2000500":"Crystal Shortsword","2000600":"Fire Shortsword","2000700":"Chaos Shortsword","2000800":"Lightning Shortsword","2000900":"Deep Shortsword","2001000":"Dark Shortsword","2001100":"Poison Shortsword","2001200":"Blood Shortsword","2001300":"Raw Shortsword","2001400":"Blessed Shortsword","2001500":"Hollow Shortsword","2010000":"Long Sword","2010100":"Heavy Longsword","2010200":"Sharp Longsword","2010300":"Refined Longsword","2010400":"Simple Longsword","2010500":"Crystal Longsword","2010600":"Fire Longsword","2010700":"Chaos Longsword","2010800":"Lightning Longsword","2010900":"Deep Longsword","2011000":"Dark Longsword","2011100":"Poison Longsword","2011200":"Blood Longsword","2011300":"Raw Longsword","2011400":"Blessed Longsword","2011500":"Hollow Longsword","2020000":"Broadsword","2020100":"Heavy Broadsword","2020200":"Sharp Broadsword","2020300":"Refined Broadsword","2020400":"Simple Broadsword","2020500":"Crystal Broadsword","2020600":"Fire Broadsword","2020700":"Chaos Broadsword","2020800":"Lightning Broadsword","2020900":"Deep Broadsword","2021000":"Dark Broadsword","2021100":"Poison Broadsword","2021200":"Blood Broadsword","2021300":"Raw Broadsword","2021400":"Blessed Broadsword","2021500":"Hollow Broadsword","2030000":"Broken Straight Sword","2030100":"Broken Heavy Straight Sword","2030200":"Broken Sharp Straight Sword","2030300":"Broken Refined Straight Sword","2030400":"Broken Simple Straight Sword","2030500":"Broken Crystal Straight Sword","2030600":"Broken Fire Straight Sword","2030700":"Broken Chaos Straight Sword","2030800":"Broken Lightning Straight Sword","2030900":"Broken Deep Straight Sword","2031000":"Broken Dark Straight Sword","2031100":"Broken Poison Straight Sword","2031200":"Broken Blood Straight Sword","2031300":"Broken Raw Straight Sword","2031400":"Broken Blessed Straight Sword","2031500":"Broken Hollow Straight Sword","2060000":"Lothric Knight Sword","2060100":"Heavy Lothric Sword","2060200":"Sharp Lothric Sword","2060300":"Refined Lothric Sword","2060400":"Simple Lothric Sword","2060500":"Crystal Lothric Sword","2060600":"Fire Lothric Sword","2060700":"Chaos Lothric Sword","2060800":"Lightning Lothric Sword","2060900":"Deep Lothric Sword","2061000":"Dark Lothric Sword","2061100":"Poison Lothric Sword","2061200":"Blood Lothric Sword","2061300":"Raw Lothric Sword","2061400":"Blessed Lothric Sword","2061500":"Hollow Lothric Sword","2110000":"Sunlight Straight Sword","2120000":"Rotten Ghru Curved Sword","2120100":"Heavy Rotten Ghru Sword","2120200":"Sharp Rotten Ghru Sword","2120300":"Refined Rotten Ghru Sword","2120400":"Simple Rotten Ghru Sword","2120500":"Crystal Rotten Ghru Sword","2120600":"Fire Rotten Ghru Sword","2120700":"Chaos Rotten Ghru Sword","2120800":"Lightning Rotten Ghru Sword","2120900":"Deep Rotten Ghru Sword","2121000":"Dark Rotten Ghru Sword","2121100":"Poison Rotten Ghru Sword","2121200":"Blood Rotten Ghru Sword","2121300":"Raw Rotten Ghru Sword","2121400":"Blessed Rotten Ghru Sword","2121500":"Hollow Rotten Ghru Sword","2140000":"Irithyll Straight Sword","2160000":"Cleric's Candlestick","2180000":"Morion Blade","2200000":"Astora Straight Sword","2200100":"Heavy Astora Sword","2200200":"Sharp Astora Sword","2200300":"Refined Astora Sword","2200400":"Simple Astora Sword","2200500":"Crystal Astora Sword","2200600":"Fire Astora Sword","2200700":"Chaos Astora Sword","2200800":"Lightning Astora Sword","2200900":"Deep Astora Sword","2201000":"Dark Astora Sword","2201100":"Poison Astora Sword","2201200":"Blood Astora Sword","2201300":"Raw Astora Sword","2201400":"Blessed Astora Sword","2201500":"Hollow Astora Sword","2210000":"Barbed Straight Sword","2210100":"Heavy Barbed Sword","2210200":"Sharp Barbed Sword","2210300":"Refined Barbed Sword","2210400":"Simple Barbed Sword","2210500":"Crystal Barbed Sword","2210600":"Fire Barbed Sword","2210700":"Chaos Barbed Sword","2210800":"Lightning Barbed Sword","2210900":"Deep Barbed Sword","2211000":"Dark Barbed Sword","2211100":"Poison Barbed Sword","2211200":"Blood Barbed Sword","2211300":"Raw Barbed Sword","2211400":"Blessed Barbed Sword","2211500":"Hollow Barbed Sword","2220000":"Executioner's Greatsword","2230000":"Anri's Straight Sword","2240000":"Onyx Blade","2250000":"Ringed Knight Straight Sword","2260000":"Gael's Greatsword","3000000":"Estoc","3000100":"Heavy Estoc","3000200":"Sharp Estoc","3000300":"Refined Estoc","3000400":"Simple Estoc","3000500":"Crystal Estoc","3000600":"Fire Estoc","3000700":"Chaos Estoc","3000800":"Lightning Estoc","3000900":"Deep Estoc","3001000":"Dark Estoc","3001100":"Poison Estoc","3001200":"Blood Estoc","3001300":"Raw Estoc","3001400":"Blessed Estoc","3001500":"Hollow Estoc","3010000":"Mail Breaker","3010100":"Heavy Mail Breaker","3010200":"Sharp Mail Breaker","3010300":"Refined Mail Breaker","3010400":"Simple Mail Breaker","3010500":"Crystal Mail Breaker","3010600":"Fire Mail Breaker","3010700":"Chaos Mail Breaker","3010800":"Lightning Mail Breaker","3010900":"Deep Mail Breaker","3011000":"Dark Mail Breaker","3011100":"Poison Mail Breaker","3011200":"Blood Mail Breaker","3011300":"Raw Mail Breaker","3011400":"Blessed Mail Breaker","3011500":"Hollow Mail Breaker","3020000":"Rapier","3020100":"Heavy Rapier","3020200":"Sharp Rapier","3020300":"Refined Rapier","3020400":"Simple Rapier","3020500":"Crystal Rapier","3020600":"Fire Rapier","3020700":"Chaos Rapier","3020800":"Lightning Rapier","3020900":"Deep Rapier","3021000":"Dark Rapier","3021100":"Poison Rapier","3021200":"Blood Rapier","3021300":"Raw Rapier","3021400":"Blessed Rapier","3021500":"Hollow Rapier","3030000":"Ricard's Rapier","3030100":"Ricard's Heavy Rapier","3030200":"Ricard's Sharp Rapier","3030300":"Ricard's Refined Rapier","3030400":"Ricard's Simple Rapier","3030500":"Ricard's Crystal Rapier","3030600":"Ricard's Fire Rapier","3030700":"Ricard's Chaos Rapier","3030800":"Ricard's Lightning Rapier","3030900":"Ricard's Deep Rapier","3031000":"Ricard's Dark Rapier","3031100":"Ricard's Poison Rapier","3031200":"Ricard's Blood Rapier","3031300":"Ricard's Raw Rapier","3031400":"Ricard's Blessed Rapier","3031500":"Ricard's Hollow Rapier","3040000":"Crystal Sage's Rapier","3050000":"Irithyll Rapier","4010000":"Shotel","4010100":"Heavy Shotel","4010200":"Sharp Shotel","4010300":"Refined Shotel","4010400":"Simple Shotel","4010500":"Crystal Shotel","4010600":"Fire Shotel","4010700":"Chaos Shotel","4010800":"Lightning Shotel","4010900":"Deep Shotel","4011000":"Dark Shotel","4011100":"Poison Shotel","4011200":"Blood Shotel","4011300":"Raw Shotel","4011400":"Blessed Shotel","4011500":"Hollow Shotel","4030000":"Scimitar","4030100":"Heavy Scimitar","4030200":"Sharp Scimitar","4030300":"Refined Scimitar","4030400":"Simple Scimitar","4030500":"Crystal Scimitar","4030600":"Fire Scimitar","4030700":"Chaos Scimitar","4030800":"Lightning Scimitar","4030900":"Deep Scimitar","4031000":"Dark Scimitar","4031100":"Poison Scimitar","4031200":"Blood Scimitar","4031300":"Raw Scimitar","4031400":"Blessed Scimitar","4031500":"Hollow Scimitar","4040000":"Falchion","4040100":"Heavy Falchion","4040200":"Sharp Falchion","4040300":"Refined Falchion","4040400":"Simple Falchion","4040500":"Crystal Falchion","4040600":"Fire Falchion","4040700":"Chaos Falchion","4040800":"Lightning Falchion","4040900":"Deep Falchion","4041000":"Dark Falchion","4041100":"Poison Falchion","4041200":"Blood Falchion","4041300":"Raw Falchion","4041400":"Blessed Falchion","4041500":"Hollow Falchion","4050000":"Carthus Curved Sword","4050100":"Heavy Carthus Sword","4050200":"Sharp Carthus Sword","4050300":"Refined Carthus Sword","4050400":"Simple Carthus Sword","4050500":"Crystal Carthus Sword","4050600":"Fire Carthus Sword","4050700":"Chaos Carthus Sword","4050800":"Lightning Carthus Sword","4050900":"Deep Carthus Sword","4051000":"Dark Carthus Sword","4051100":"Poison Carthus Sword","4051200":"Blood Carthus Sword","4051300":"Raw Carthus Sword","4051400":"Blessed Carthus Sword","4051500":"Hollow Carthus Sword","4060000":"Carthus Curved Greatsword","4060100":"Heavy Carthus Greatsword","4060200":"Sharp Carthus Greatsword","4060300":"Refined Carthus Greatsword","4060400":"Simple Carthus Greatsword","4060500":"Crystal Carthus Greatsword","4060600":"Fire Carthus Greatsword","4060700":"Chaos Carthus Greatsword","4060800":"Lightning Carthus Greatsword","4060900":"Deep Carthus Greatsword","4061000":"Dark Carthus Greatsword","4061100":"Poison Carthus Greatsword","4061200":"Blood Carthus Greatsword","4061300":"Raw Carthus Greatsword","4061400":"Blessed Carthus Greatsword","4061500":"Hollow Carthus Greatsword","4070000":"Pontiff Knight Curved Sword","4080000":"Storm Curved Sword","4090000":"Painting Guardian's Curved Sword","4090100":"Painting Guardian's Heavy Sword","4090200":"Painting Guardian's Sharp Sword","4090300":"Painting Guardian's Refined Sword","4090400":"Painting Guardian's Simple Sword","4090500":"Painting Guardian's Crystal Sword","4090600":"Painting Guardian's Fire Sword","4090700":"Painting Guardian's Chaos Sword","4090800":"Painting Guardian's Lightning Sword","4090900":"Painting Guardian's Deep Sword","4091000":"Painting Guardian's Dark Sword","4091100":"Painting Guardian's Poison Sword","4091200":"Painting Guardian's Blood Sword","4091300":"Painting Guardian's Raw Sword","4091400":"Painting Guardian's Blessed Sword","4091500":"Painting Guardian's Hollow Sword","4100000":"Crescent Moon Sword","4110000":"Carthus Shotel","4110100":"Heavy Carthus Shotel","4110200":"Sharp Carthus Shotel","4110300":"Refined Carthus Shotel","4110400":"Simple Carthus Shotel","4110500":"Crystal Carthus Shotel","4110600":"Fire Carthus Shotel","4110700":"Chaos Carthus Shotel","4110800":"Lightning Carthus Shotel","4110900":"Deep Carthus Shotel","4111000":"Dark Carthus Shotel","4111100":"Poison Carthus Shotel","4111200":"Blood Carthus Shotel","4111300":"Raw Carthus Shotel","4111400":"Blessed Carthus Shotel","4111500":"Hollow Carthus Shotel","4120000":"Follower Sabre","4120100":"Heavy Follower Sabre","4120200":"Sharp Follower Sabre","4120300":"Refined Follower Sabre","4120400":"Simple Follower Sabre","4120500":"Crystal Follower Sabre","4120600":"Fire Follower Sabre","4120700":"Chaos Follower Sabre","4120800":"Lightning Follower Sabre","4120900":"Deep Follower Sabre","4121000":"Dark Follower Sabre","4121100":"Poison Follower Sabre","4121200":"Blood Follower Sabre","4121300":"Raw Follower Sabre","4121400":"Blessed Follower Sabre","4121500":"Hollow Follower Sabre","4130000":"Demon's Scar","5000000":"Uchigatana","5000100":"Heavy Uchigatana","5000200":"Sharp Uchigatana","5000300":"Refined Uchigatana","5000400":"Simple Uchigatana","5000500":"Crystal Uchigatana","5000600":"Fire Uchigatana","5000700":"Chaos Uchigatana","5000800":"Lightning Uchigatana","5000900":"Deep Uchigatana","5001000":"Dark Uchigatana","5001100":"Poison Uchigatana","5001200":"Blood Uchigatana","5001300":"Raw Uchigatana","5001400":"Blessed Uchigatana","5001500":"Hollow Uchigatana","5010000":"Washing Pole","5010100":"Heavy Washing Pole","5010200":"Sharp Washing Pole","5010300":"Refined Washing Pole","5010400":"Simple Washing Pole","5010500":"Crystal Washing Pole","5010600":"Fire Washing Pole","5010700":"Chaos Washing Pole","5010800":"Lightning Washing Pole","5010900":"Deep Washing Pole","5011000":"Dark Washing Pole","5011100":"Poison Washing Pole","5011200":"Blood Washing Pole","5011300":"Raw Washing Pole","5011400":"Blessed Washing Pole","5011500":"Hollow Washing Pole","5020000":"Chaos Blade","5030000":"Black Blade","5030100":"Heavy Black Blade","5030200":"Sharp Black Blade","5030300":"Refined Black Blade","5030400":"Simple Black Blade","5030500":"Crystal Black Blade","5030600":"Fire Black Blade","5030700":"Chaos Black Blade","5030800":"Lightning Black Blade","5030900":"Deep Black Blade","5031000":"Dark Black Blade","5031100":"Poison Black Blade","5031200":"Blood Black Blade","5031300":"Raw Black Blade","5031400":"Blessed Black Blade","5031500":"Hollow Black Blade","5040000":"Bloodlust","5050000":"Darkdrift","5060000":"Frayed Blade","6000000":"Bastard Sword","6000100":"Heavy Bastard Sword","6000200":"Sharp Bastard Sword","6000300":"Refined Bastard Sword","6000400":"Simple Bastard Sword","6000500":"Crystal Bastard Sword","6000600":"Fire Bastard Sword","6000700":"Chaos Bastard Sword","6000800":"Lightning Bastard Sword","6000900":"Deep Bastard Sword","6001000":"Dark Bastard Sword","6001100":"Poison Bastard Sword","6001200":"Blood Bastard Sword","6001300":"Raw Bastard Sword","6001400":"Blessed Bastard Sword","6001500":"Hollow Bastard Sword","6020000":"Claymore","6020100":"Heavy Claymore","6020200":"Sharp Claymore","6020300":"Refined Claymore","6020400":"Simple Claymore","6020500":"Crystal Claymore","6020600":"Fire Claymore","6020700":"Chaos Claymore","6020800":"Lightning Claymore","6020900":"Deep Claymore","6021000":"Dark Claymore","6021100":"Poison Claymore","6021200":"Blood Claymore","6021300":"Raw Claymore","6021400":"Blessed Claymore","6021500":"Hollow Claymore","6040000":"Zweihander","6040100":"Heavy Zweihander","6040200":"Sharp Zweihander","6040300":"Refined Zweihander","6040400":"Simple Zweihander","6040500":"Crystal Zweihander","6040600":"Fire Zweihander","6040700":"Chaos Zweihander","6040800":"Lightning Zweihander","6040900":"Deep Zweihander","6041000":"Dark Zweihander","6041100":"Poison Zweihander","6041200":"Blood Zweihander","6041300":"Raw Zweihander","6041400":"Blessed Zweihander","6041500":"Hollow Zweihander","6050000":"Greatsword","6050100":"Heavy Greatsword","6050200":"Sharp Greatsword","6050300":"Refined Greatsword","6050400":"Simple Greatsword","6050500":"Crystal Greatsword","6050600":"Fire Greatsword","6050700":"Chaos Greatsword","6050800":"Lightning Greatsword","6050900":"Deep Greatsword","6051000":"Dark Greatsword","6051100":"Poison Greatsword","6051200":"Blood Greatsword","6051300":"Raw Greatsword","6051400":"Blessed Greatsword","6051500":"Hollow Greatsword","6070000":"Astora Greatsword","6070100":"Heavy Astora Greatsword","6070200":"Sharp Astora Greatsword","6070300":"Refined Astora Greatsword","6070400":"Simple Astora Greatsword","6070500":"Crystal Astora Greatsword","6070600":"Fire Astora Greatsword","6070700":"Chaos Astora Greatsword","6070800":"Lightning Astora Greatsword","6070900":"Deep Astora Greatsword","6071000":"Dark Astora Greatsword","6071100":"Poison Astora Greatsword","6071200":"Blood Astora Greatsword","6071300":"Raw Astora Greatsword","6071400":"Blessed Astora Greatsword","6071500":"Hollow Astora Greatsword","6080000":"Murakumo","6080100":"Heavy Murakumo","6080200":"Sharp Murakumo","6080300":"Refined Murakumo","6080400":"Simple Murakumo","6080500":"Crystal Murakumo","6080600":"Fire Murakumo","6080700":"Chaos Murakumo","6080800":"Lightning Murakumo","6080900":"Deep Murakumo","6081000":"Dark Murakumo","6081100":"Poison Murakumo","6081200":"Blood Murakumo","6081300":"Raw Murakumo","6081400":"Blessed Murakumo","6081500":"Hollow Murakumo","6100000":"Lothric Knight Greatsword","6100100":"Heavy Lothric Greatsword","6100200":"Sharp Lothric Greatsword","6100300":"Refined Lothric Greatsword","6100400":"Simple Lothric Greatsword","6100500":"Crystal Lothric Greatsword","6100600":"Fire Lothric Greatsword","6100700":"Chaos Lothric Greatsword","6100800":"Lightning Lothric Greatsword","6100900":"Deep Lothric Greatsword","6101000":"Dark Lothric Greatsword","6101100":"Poison Lothric Greatsword","6101200":"Blood Lothric Greatsword","6101300":"Raw Lothric Greatsword","6101400":"Blessed Lothric Greatsword","6101500":"Hollow Lothric Greatsword","6130000":"Black Knight Greatsword","6140000":"Flamberge","6140100":"Heavy Flamberge","6140200":"Sharp Flamberge","6140300":"Refined Flamberge","6140400":"Simple Flamberge","6140500":"Crystal Flamberge","6140600":"Fire Flamberge","6140700":"Chaos Flamberge","6140800":"Lightning Flamberge","6140900":"Deep Flamberge","6141000":"Dark Flamberge","6141100":"Poison Flamberge","6141200":"Blood Flamberge","6141300":"Raw Flamberge","6141400":"Blessed Flamberge","6141500":"Hollow Flamberge","6150000":"Exile Greatsword","6150100":"Heavy Exile Greatsword","6150200":"Sharp Exile Greatsword","6150300":"Refined Exile Greatsword","6150400":"Simple Exile Greatsword","6150500":"Crystal Exile Greatsword","6150600":"Fire Exile Greatsword","6150700":"Chaos Exile Greatsword","6150800":"Lightning Exile Greatsword","6150900":"Deep Exile Greatsword","6151000":"Dark Exile Greatsword","6151100":"Poison Exile Greatsword","6151200":"Blood Exile Greatsword","6151300":"Raw Exile Greatsword","6151400":"Blessed Exile Greatsword","6151500":"Hollow Exile Greatsword","6170000":"Greatsword of Judgment","6180000":"Profaned Greatsword","6190000":"Cathedral Knight Greatsword","6190100":"Heavy Cathedral Greatsword","6190200":"Sharp Cathedral Greatsword","6190300":"Refined Cathedral Greatsword","6190400":"Simple Cathedral Greatsword","6190500":"Crystal Cathedral Greatsword","6190600":"Fire Cathedral Greatsword","6190700":"Chaos Cathedral Greatsword","6190800":"Lightning Cathedral Greatsword","6190900":"Deep Cathedral Greatsword","6191000":"Dark Cathedral Greatsword","6191100":"Poison Cathedral Greatsword","6191200":"Blood Cathedral Greatsword","6191300":"Raw Cathedral Greatsword","6191400":"Blessed Cathedral Greatsword","6191500":"Hollow Cathedral Greatsword","6200000":"Farron Greatsword","6230000":"Yhorm's Great Machete","6240000":"Dark Sword","6240100":"Heavy Dark Sword","6240200":"Sharp Dark Sword","6240300":"Refined Dark Sword","6240400":"Simple Dark Sword","6240500":"Crystal Dark Sword","6240600":"Fire Dark Sword","6240700":"Chaos Dark Sword","6240800":"Lightning Dark Sword","6240900":"Deep Dark Sword","6241000":"Reinforced Dark Sword","6241100":"Poison Dark Sword","6241200":"Blood Dark Sword","6241300":"Raw Dark Sword","6241400":"Blessed Dark Sword","6241500":"Hollow Dark Sword","6250000":"Black Knight Sword","6260000":"Lorian's Greatsword","6270000":"Twin Princes' Greatsword","6280000":"Lothric's Holy Sword","6290000":"Wolnir's Holy Sword","6300000":"Wolf Knight's Greatsword","6310000":"Hollowslayer Greatsword","6320000":"Moonlight Greatsword","6330000":"Drakeblood Greatsword","6330100":"Heavy Drakeblood Greatsword","6330200":"Sharp Drakeblood Greatsword","6330300":"Refined Drakeblood Greatsword","6330400":"Simple Drakeblood Greatsword","6330500":"Crystal Drakeblood Greatsword","6330600":"Fire Drakeblood Greatsword","6330700":"Chaos Drakeblood Greatsword","6330800":"Lightning Drakeblood Greatsword","6330900":"Deep Drakeblood Greatsword","6331000":"Dark Drakeblood Greatsword","6331100":"Poison Drakeblood Greatsword","6331200":"Blood Drakeblood Greatsword","6331300":"Raw Drakeblood Greatsword","6331400":"Blessed Drakeblood Greatsword","6331500":"Hollow Drakeblood Greatsword","6340000":"Firelink Greatsword","6350000":"Fume Ultra Greatsword","6360000":"Old Wolf Curved Sword","6370000":"Storm Ruler","6380000":"Harald Curved Greatsword","6380100":"Heavy Harald Curved Greatsword","6380200":"Sharp Harald Curved Greatsword","6380300":"Refined Harald Curved Greatsword","6380400":"Simple Harald Curved Greatsword","6380500":"Crystal Harald Curved Greatsword","6380600":"Fire Harald Curved Greatsword","6380700":"Chaos Harald Curved Greatsword","6380800":"Lightning Harald Curved Greatsword","6380900":"Deep Harald Curved Greatsword","6381000":"Dark Harald Curved Greatsword","6381100":"Poison Harald Curved Greatsword","6381200":"Blood Harald Curved Greatsword","6381300":"Raw Harald Curved Greatsword","6381400":"Blessed Harald Curved Greatsword","6381500":"Hollow Harald Curved Greatsword","7000000":"Hand Axe","7000100":"Heavy Hand Axe","7000200":"Sharp Hand Axe","7000300":"Refined Hand Axe","7000400":"Simple Hand Axe","7000500":"Crystal Hand Axe","7000600":"Fire Hand Axe","7000700":"Chaos Hand Axe","7000800":"Lightning Hand Axe","7000900":"Deep Hand Axe","7001000":"Dark Hand Axe","7001100":"Poison Hand Axe","7001200":"Blood Hand Axe","7001300":"Raw Hand Axe","7001400":"Blessed Hand Axe","7001500":"Hollow Hand Axe","7010000":"Battle Axe","7010100":"Heavy Battle Axe","7010200":"Sharp Battle Axe","7010300":"Refined Battle Axe","7010400":"Simple Battle Axe","7010500":"Crystal Battle Axe","7010600":"Fire Battle Axe","7010700":"Chaos Battle Axe","7010800":"Lightning Battle Axe","7010900":"Deep Battle Axe","7011000":"Dark Battle Axe","7011100":"Poison Battle Axe","7011200":"Blood Battle Axe","7011300":"Raw Battle Axe","7011400":"Blessed Battle Axe","7011500":"Hollow Battle Axe","7020000":"Brigand Axe","7020100":"Heavy Brigand Axe","7020200":"Sharp Brigand Axe","7020300":"Refined Brigand Axe","7020400":"Simple Brigand Axe","7020500":"Crystal Brigand Axe","7020600":"Fire Brigand Axe","7020700":"Chaos Brigand Axe","7020800":"Lightning Brigand Axe","7020900":"Deep Brigand Axe","7021000":"Dark Brigand Axe","7021100":"Poison Brigand Axe","7021200":"Blood Brigand Axe","7021300":"Raw Brigand Axe","7021400":"Blessed Brigand Axe","7021500":"Hollow Brigand Axe","7040000":"Crescent Axe","7040100":"Heavy Crescent Axe","7040200":"Sharp Crescent Axe","7040300":"Refined Crescent Axe","7040400":"Simple Crescent Axe","7040500":"Crystal Crescent Axe","7040600":"Fire Crescent Axe","7040700":"Chaos Crescent Axe","7040800":"Lightning Crescent Axe","7040900":"Deep Crescent Axe","7041000":"Dark Crescent Axe","7041100":"Poison Crescent Axe","7041200":"Blood Crescent Axe","7041300":"Raw Crescent Axe","7041400":"Blessed Crescent Axe","7041500":"Hollow Crescent Axe","7050000":"Greataxe","7050100":"Heavy Greataxe","7050200":"Sharp Greataxe","7050300":"Refined Greataxe","7050400":"Simple Greataxe","7050500":"Crystal Greataxe","7050600":"Fire Greataxe","7050700":"Chaos Greataxe","7050800":"Lightning Greataxe","7050900":"Deep Greataxe","7051000":"Dark Greataxe","7051100":"Poison Greataxe","7051200":"Blood Greataxe","7051300":"Raw Greataxe","7051400":"Blessed Greataxe","7051500":"Hollow Greataxe","7070000":"Butcher Knife","7080000":"Dragonslayer's Axe","7080100":"Heavy Dragonslayer's Axe","7080200":"Sharp Dragonslayer's Axe","7080300":"Refined Dragonslayer's Axe","7080400":"Simple Dragonslayer's Axe","7080500":"Crystal Dragonslayer's Axe","7080600":"Fire Dragonslayer's Axe","7080700":"Chaos Dragonslayer's Axe","7080800":"Lightning Dragonslayer's Axe","7080900":"Deep Dragonslayer's Axe","7081000":"Dark Dragonslayer's Axe","7081100":"Poison Dragonslayer's Axe","7081200":"Blood Dragonslayer's Axe","7081300":"Raw Dragonslayer's Axe","7081400":"Blessed Dragonslayer's Axe","7081500":"Hollow Dragonslayer's Axe","7100000":"Thrall Axe","7100100":"Heavy Thrall Axe","7100200":"Sharp Thrall Axe","7100300":"Refined Thrall Axe","7100400":"Simple Thrall Axe","7100500":"Crystal Thrall Axe","7100600":"Fire Thrall Axe","7100700":"Chaos Thrall Axe","7100800":"Lightning Thrall Axe","7100900":"Deep Thrall Axe","7101000":"Dark Thrall Axe","7101100":"Poison Thrall Axe","7101200":"Blood Thrall Axe","7101300":"Raw Thrall Axe","7101400":"Blessed Thrall Axe","7101500":"Hollow Thrall Axe","7110000":"Dragonslayer Greataxe","7120000":"Demon's Greataxe","7130000":"Eleonora","7150000":"Man Serpent Hatchet","7150100":"Heavy Serpent Hatchet","7150200":"Sharp Serpent Hatchet","7150300":"Refined Serpent Hatchet","7150400":"Simple Serpent Hatchet","7150500":"Crystal Serpent Hatchet","7150600":"Fire Serpent Hatchet","7150700":"Chaos Serpent Hatchet","7150800":"Lightning Serpent Hatchet","7150900":"Deep Serpent Hatchet","7151000":"Dark Serpent Hatchet","7151100":"Poison Serpent Hatchet","7151200":"Blood Serpent Hatchet","7151300":"Raw Serpent Hatchet","7151400":"Blessed Serpent Hatchet","7151500":"Hollow Serpent Hatchet","7170000":"Millwood Battle Axe","7170100":"Heavy Millwood Battle Axe","7170200":"Sharp Millwood Battle Axe","7170300":"Refined Millwood Battle Axe","7170400":"Simple Millwood Battle Axe","7170500":"Crystal Millwood Battle Axe","7170600":"Fire Millwood Battle Axe","7170700":"Chaos Millwood Battle Axe","7170800":"Lightning Millwood Battle Axe","7170900":"Deep Millwood Battle Axe","7171000":"Dark Millwood Battle Axe","7171100":"Poison Millwood Battle Axe","7171200":"Blood Millwood Battle Axe","7171300":"Raw Millwood Battle Axe","7171400":"Blessed Millwood Battle Axe","7171500":"Hollow Millwood Battle Axe","7180000":"Earth Seeker","8000000":"Club","8000100":"Heavy Club","8000200":"Sharp Club","8000300":"Refined Club","8000400":"Simple Club","8000500":"Crystal Club","8000600":"Fire Club","8000700":"Chaos Club","8000800":"Lightning Club","8000900":"Deep Club","8001000":"Dark Club","8001100":"Poison Club","8001200":"Blood Club","8001300":"Raw Club","8001400":"Blessed Club","8001500":"Hollow Club","8010000":"Mace","8010100":"Heavy Mace","8010200":"Sharp Mace","8010300":"Refined Mace","8010400":"Simple Mace","8010500":"Crystal Mace","8010600":"Fire Mace","8010700":"Chaos Mace","8010800":"Lightning Mace","8010900":"Deep Mace","8011000":"Dark Mace","8011100":"Poison Mace","8011200":"Blood Mace","8011300":"Raw Mace","8011400":"Blessed Mace","8011500":"Hollow Mace","8020000":"Morning Star","8020100":"Heavy Morning Star","8020200":"Sharp Morning Star","8020300":"Refined Morning Star","8020400":"Simple Morning Star","8020500":"Crystal Morning Star","8020600":"Fire Morning Star","8020700":"Chaos Morning Star","8020800":"Lightning Morning Star","8020900":"Deep Morning Star","8021000":"Dark Morning Star","8021100":"Poison Morning Star","8021200":"Blood Morning Star","8021300":"Raw Morning Star","8021400":"Blessed Morning Star","8021500":"Hollow Morning Star","8030000":"Reinforced Club","8030100":"Heavy Reinforced Club","8030200":"Sharp Reinforced Club","8030300":"Refined Reinforced Club","8030400":"Simple Reinforced Club","8030500":"Crystal Reinforced Club","8030600":"Fire Reinforced Club","8030700":"Chaos Reinforced Club","8030800":"Lightning Reinforced Club","8030900":"Deep Reinforced Club","8031000":"Dark Reinforced Club","8031100":"Poison Reinforced Club","8031200":"Blood Reinforced Club","8031300":"Raw Reinforced Club","8031400":"Blessed Reinforced Club","8031500":"Hollow Reinforced Club","8060000":"Large Club","8060100":"Heavy Large Club","8060200":"Sharp Large Club","8060300":"Refined Large Club","8060400":"Simple Large Club","8060500":"Crystal Large Club","8060600":"Fire Large Club","8060700":"Chaos Large Club","8060800":"Lightning Large Club","8060900":"Deep Large Club","8061000":"Dark Large Club","8061100":"Poison Large Club","8061200":"Blood Large Club","8061300":"Raw Large Club","8061400":"Blessed Large Club","8061500":"Hollow Large Club","8080000":"Great Club","8080100":"Heavy Great Club","8080200":"Sharp Great Club","8080300":"Refined Great Club","8080400":"Simple Great Club","8080500":"Crystal Great Club","8080600":"Fire Great Club","8080700":"Chaos Great Club","8080800":"Lightning Great Club","8080900":"Deep Great Club","8081000":"Dark Great Club","8081100":"Poison Great Club","8081200":"Blood Great Club","8081300":"Raw Great Club","8081400":"Blessed Great Club","8081500":"Hollow Great Club","8110000":"Great Mace","8110100":"Heavy Great Mace","8110200":"Sharp Great Mace","8110300":"Refined Great Mace","8110400":"Simple Great Mace","8110500":"Crystal Great Mace","8110600":"Fire Great Mace","8110700":"Chaos Great Mace","8110800":"Lightning Great Mace","8110900":"Deep Great Mace","8111000":"Dark Great Mace","8111100":"Poison Great Mace","8111200":"Blood Great Mace","8111300":"Raw Great Mace","8111400":"Blessed Great Mace","8111500":"Hollow Great Mace","8160000":"Great Wooden Hammer","8160100":"Heavy Wooden Hammer","8160200":"Sharp Wooden Hammer","8160300":"Refined Wooden Hammer","8160400":"Simple Wooden Hammer","8160500":"Crystal Wooden Hammer","8160600":"Fire Wooden Hammer","8160700":"Chaos Wooden Hammer","8160800":"Lightning Wooden Hammer","8160900":"Deep Wooden Hammer","8161000":"Dark Wooden Hammer","8161100":"Poison Wooden Hammer","8161200":"Blood Wooden Hammer","8161300":"Raw Wooden Hammer","8161400":"Blessed Wooden Hammer","8161500":"Hollow Wooden Hammer","8170000":"Gargoyle Flame Hammer","8180000":"Vordt's Great Hammer","8190000":"Old King's Great Hammer","8220000":"Heysel Pick","8240000":"Warpick","8240100":"Heavy Warpick","8240200":"Sharp Warpick","8240300":"Refined Warpick","8240400":"Simple Warpick","8240500":"Crystal Warpick","8240600":"Fire Warpick","8240700":"Chaos Warpick","8240800":"Lightning Warpick","8240900":"Deep Warpick","8241000":"Dark Warpick","8241100":"Poison Warpick","8241200":"Blood Warpick","8241300":"Raw Warpick","8241400":"Blessed Warpick","8241500":"Hollow Warpick","8250000":"Pickaxe","8250100":"Heavy Pickaxe","8250200":"Sharp Pickaxe","8250300":"Refined Pickaxe","8250400":"Simple Pickaxe","8250500":"Crystal Pickaxe","8250600":"Fire Pickaxe","8250700":"Chaos Pickaxe","8250800":"Lightning Pickaxe","8250900":"Deep Pickaxe","8251000":"Dark Pickaxe","8251100":"Poison Pickaxe","8251200":"Blood Pickaxe","8251300":"Raw Pickaxe","8251400":"Blessed Pickaxe","8251500":"Hollow Pickaxe","8260000":"Dragon Tooth","8270000":"Smough's Great Hammer","8280000":"Blacksmith Hammer","8280100":"Heavy Blacksmith Hammer","8280200":"Sharp Blacksmith Hammer","8280300":"Refined Blacksmith Hammer","8280400":"Simple Blacksmith Hammer","8280500":"Crystal Blacksmith Hammer","8280600":"Fire Blacksmith Hammer","8280700":"Chaos Blacksmith Hammer","8280800":"Lightning Blacksmith Hammer","8280900":"Deep Blacksmith Hammer","8281000":"Dark Blacksmith Hammer","8281100":"Poison Blacksmith Hammer","8281200":"Blood Blacksmith Hammer","8281300":"Raw Blacksmith Hammer","8281400":"Blessed Blacksmith Hammer","8281500":"Hollow Blacksmith Hammer","8290000":"Morne's Great Hammer","8300000":"Spiked Mace","8300100":"Heavy Spiked Mace","8300200":"Sharp Spiked Mace","8300300":"Refined Spiked Mace","8300400":"Simple Spiked Mace","8300500":"Crystal Spiked Mace","8300600":"Fire Spiked Mace","8300700":"Chaos Spiked Mace","8300800":"Lightning Spiked Mace","8300900":"Deep Spiked Mace","8301000":"Dark Spiked Mace","8301100":"Poison Spiked Mace","8301200":"Blood Spiked Mace","8301300":"Raw Spiked Mace","8301400":"Blessed Spiked Mace","8301500":"Hollow Spiked Mace","8310000":"Quakestone Hammer","8320000":"Ledo's Great Hammer","9000000":"Spear","9000100":"Heavy Spear","9000200":"Sharp Spear","9000300":"Refined Spear","9000400":"Simple Spear","9000500":"Crystal Spear","9000600":"Fire Spear","9000700":"Chaos Spear","9000800":"Lightning Spear","9000900":"Deep Spear","9001000":"Dark Spear","9001100":"Poison Spear","9001200":"Blood Spear","9001300":"Raw Spear","9001400":"Blessed Spear","9001500":"Hollow Spear","9010000":"Winged Spear","9010100":"Heavy Winged Spear","9010200":"Sharp Winged Spear","9010300":"Refined Winged Spear","9010400":"Simple Winged Spear","9010500":"Crystal Winged Spear","9010600":"Fire Winged Spear","9010700":"Chaos Winged Spear","9010800":"Lightning Winged Spear","9010900":"Deep Winged Spear","9011000":"Dark Winged Spear","9011100":"Poison Winged Spear","9011200":"Blood Winged Spear","9011300":"Raw Winged Spear","9011400":"Blessed Winged Spear","9011500":"Hollow Winged Spear","9030000":"Partizan","9030100":"Heavy Partizan","9030200":"Sharp Partizan","9030300":"Refined Partizan","9030400":"Simple Partizan","9030500":"Crystal Partizan","9030600":"Fire Partizan","9030700":"Chaos Partizan","9030800":"Lightning Partizan","9030900":"Deep Partizan","9031000":"Dark Partizan","9031100":"Poison Partizan","9031200":"Blood Partizan","9031300":"Raw Partizan","9031400":"Blessed Partizan","9031500":"Hollow Partizan","9080000":"Greatlance","9080100":"Heavy Greatlance","9080200":"Sharp Greatlance","9080300":"Refined Greatlance","9080400":"Simple Greatlance","9080500":"Crystal Greatlance","9080600":"Fire Greatlance","9080700":"Chaos Greatlance","9080800":"Lightning Greatlance","9080900":"Deep Greatlance","9081000":"Dark Greatlance","9081100":"Poison Greatlance","9081200":"Blood Greatlance","9081300":"Raw Greatlance","9081400":"Blessed Greatlance","9081500":"Hollow Greatlance","9090000":"Lothric Knight Long Spear","9090100":"Heavy Lothric Long Spear","9090200":"Sharp Lothric Long Spear","9090300":"Refined Lothric Long Spear","9090400":"Simple Lothric Long Spear","9090500":"Crystal Lothric Long Spear","9090600":"Fire Lothric Long Spear","9090700":"Chaos Lothric Long Spear","9090800":"Lightning Lothric Long Spear","9090900":"Deep Lothric Long Spear","9091000":"Dark Lothric Long Spear","9091100":"Poison Lothric Long Spear","9091200":"Blood Lothric Long Spear","9091300":"Raw Lothric Long Spear","9091400":"Blessed Lothric Long Spear","9091500":"Hollow Lothric Long Spear","9100000":"Four-Pronged Plow","9100100":"Heavy Four-Pronged Plow","9100200":"Sharp Four-Pronged Plow","9100300":"Refined Four-Pronged Plow","9100400":"Simple Four-Pronged Plow","9100500":"Crystal Four-Pronged Plow","9100600":"Fire Four-Pronged Plow","9100700":"Chaos Four-Pronged Plow","9100800":"Lightning Four-Pronged Plow","9100900":"Deep Four-Pronged Plow","9101000":"Dark Four-Pronged Plow","9101100":"Poison Four-Pronged Plow","9101200":"Blood Four-Pronged Plow","9101300":"Raw Four-Pronged Plow","9101400":"Blessed Four-Pronged Plow","9101500":"Hollow Four-Pronged Plow","9110000":"Gargoyle Flame Spear","9120000":"Rotten Ghru Spear","9120100":"Heavy Rotten Ghru Spear","9120200":"Sharp Rotten Ghru Spear","9120300":"Refined Rotten Ghru Spear","9120400":"Simple Rotten Ghru Spear","9120500":"Crystal Rotten Ghru Spear","9120600":"Fire Rotten Ghru Spear","9120700":"Chaos Rotten Ghru Spear","9120800":"Lightning Rotten Ghru Spear","9120900":"Deep Rotten Ghru Spear","9121000":"Dark Rotten Ghru Spear","9121100":"Poison Rotten Ghru Spear","9121200":"Blood Rotten Ghru Spear","9121300":"Raw Rotten Ghru Spear","9121400":"Blessed Rotten Ghru Spear","9121500":"Hollow Rotten Ghru Spear","9130000":"Tailbone Spear","9140000":"Soldering Iron","9160000":"Dragonslayer Swordspear","9170000":"Arstor's Spear","9180000":"Saint Bident","9180100":"Heavy Saint Bident","9180200":"Sharp Saint Bident","9180300":"Refined Saint Bident","9180400":"Simple Saint Bident","9180500":"Crystal Saint Bident","9180600":"Fire Saint Bident","9180700":"Chaos Saint Bident","9180800":"Lightning Saint Bident","9180900":"Deep Saint Bident","9181000":"Dark Saint Bident","9181100":"Poison Saint Bident","9181200":"Blood Saint Bident","9181300":"Raw Saint Bident","9181400":"Blessed Saint Bident","9181500":"Hollow Saint Bident","9190000":"Yorshka's Spear","9200000":"Pike","9200100":"Heavy Pike","9200200":"Sharp Pike","9200300":"Refined Pike","9200400":"Simple Pike","9200500":"Crystal Pike","9200600":"Fire Pike","9200700":"Chaos Pike","9200800":"Lightning Pike","9200900":"Deep Pike","9201000":"Dark Pike","9201100":"Poison Pike","9201200":"Blood Pike","9201300":"Raw Pike","9201400":"Blessed Pike","9201500":"Hollow Pike","9220000":"Dragonslayer Spear","9230000":"Follower Javelin","9230100":"Heavy Follower Javelin","9230200":"Sharp Follower Javelin","9230300":"Refined Follower Javelin","9230400":"Simple Follower Javelin","9230500":"Crystal Follower Javelin","9230600":"Fire Follower Javelin","9230700":"Chaos Follower Javelin","9230800":"Lightning Follower Javelin","9230900":"Deep Follower Javelin","9231000":"Dark Follower Javelin","9231100":"Poison Follower Javelin","9231200":"Blood Follower Javelin","9231300":"Raw Follower Javelin","9231400":"Blessed Follower Javelin","9231500":"Hollow Follower Javelin","9240000":"Ringed Knight Spear","9250000":"Lothric War Banner","9250100":"Heavy Lothric War Banner","9250200":"Sharp Lothric War Banner","9250300":"Refined Lothric War Banner","9250400":"Simple Lothric War Banner","9250500":"Crystal Lothric War Banner","9250600":"Fire Lothric War Banner","9250700":"Chaos Lothric War Banner","9250800":"Lightning Lothric War Banner","9250900":"Deep Lothric War Banner","9251000":"Dark Lothric War Banner","9251100":"Poison Lothric War Banner","9251200":"Blood Lothric War Banner","9251300":"Raw Lothric War Banner","9251400":"Blessed Lothric War Banner","9251500":"Hollow Lothric War Banner","9260000":"Crucifix of the Mad King","10000000":"Great Scythe","10000100":"Heavy Great Scythe","10000200":"Sharp Great Scythe","10000300":"Refined Great Scythe","10000400":"Simple Great Scythe","10000500":"Crystal Great Scythe","10000600":"Fire Great Scythe","10000700":"Chaos Great Scythe","10000800":"Lightning Great Scythe","10000900":"Deep Great Scythe","10001000":"Dark Great Scythe","10001100":"Poison Great Scythe","10001200":"Blood Great Scythe","10001300":"Raw Great Scythe","10001400":"Blessed Great Scythe","10001500":"Hollow Great Scythe","10010000":"Lucerne","10010100":"Heavy Lucerne","10010200":"Sharp Lucerne","10010300":"Refined Lucerne","10010400":"Simple Lucerne","10010500":"Crystal Lucerne","10010600":"Fire Lucerne","10010700":"Chaos Lucerne","10010800":"Lightning Lucerne","10010900":"Deep Lucerne","10011000":"Dark Lucerne","10011100":"Poison Lucerne","10011200":"Blood Lucerne","10011300":"Raw Lucerne","10011400":"Blessed Lucerne","10011500":"Hollow Lucerne","10020000":"Glaive","10020100":"Heavy Glaive","10020200":"Sharp Glaive","10020300":"Refined Glaive","10020400":"Simple Glaive","10020500":"Crystal Glaive","10020600":"Fire Glaive","10020700":"Chaos Glaive","10020800":"Lightning Glaive","10020900":"Deep Glaive","10021000":"Dark Glaive","10021100":"Poison Glaive","10021200":"Blood Glaive","10021300":"Raw Glaive","10021400":"Blessed Glaive","10021500":"Hollow Glaive","10030000":"Halberd","10030100":"Heavy Halberd","10030200":"Sharp Halberd","10030300":"Refined Halberd","10030400":"Simple Halberd","10030500":"Crystal Halberd","10030600":"Fire Halberd","10030700":"Chaos Halberd","10030800":"Lightning Halberd","10030900":"Deep Halberd","10031000":"Dark Halberd","10031100":"Poison Halberd","10031200":"Blood Halberd","10031300":"Raw Halberd","10031400":"Blessed Halberd","10031500":"Hollow Halberd","10050000":"Black Knight Greataxe","10070000":"Pontiff Knight Great Scythe","10080000":"Great Corvian Scythe","10080100":"Heavy Corvian Scythe","10080200":"Sharp Corvian Scythe","10080300":"Refined Corvian Scythe","10080400":"Simple Corvian Scythe","10080500":"Crystal Corvian Scythe","10080600":"Fire Corvian Scythe","10080700":"Chaos Corvian Scythe","10080800":"Lightning Corvian Scythe","10080900":"Deep Corvian Scythe","10081000":"Dark Corvian Scythe","10081100":"Poison Corvian Scythe","10081200":"Blood Corvian Scythe","10081300":"Raw Corvian Scythe","10081400":"Blessed Corvian Scythe","10081500":"Hollow Corvian Scythe","10090000":"Winged Knight Halberd","10090100":"Heavy Winged Knight Halberd","10090200":"Sharp Winged Knight Halberd","10090300":"Refined Winged Knight Halberd","10090400":"Simple Winged Knight Halberd","10090500":"Crystal Winged Knight Halberd","10090600":"Fire Winged Knight Halberd","10090700":"Chaos Winged Knight Halberd","10090800":"Lightning Winged Knight Halberd","10090900":"Deep Winged Knight Halberd","10091000":"Dark Winged Knight Halberd","10091100":"Poison Winged Knight Halberd","10091200":"Blood Winged Knight Halberd","10091300":"Raw Winged Knight Halberd","10091400":"Blessed Winged Knight Halberd","10091500":"Hollow Winged Knight Halberd","10100000":"Gundyr's Halberd","10140000":"Red Hilted Halberd","10140100":"Heavy Red Halberd","10140200":"Sharp Red Halberd","10140300":"Refined Red Halberd","10140400":"Simple Red Halberd","10140500":"Crystal Red Halberd","10140600":"Fire Red Halberd","10140700":"Chaos Red Halberd","10140800":"Lightning Red Halberd","10140900":"Deep Red Halberd","10141000":"Dark Red Halberd","10141100":"Poison Red Halberd","10141200":"Blood Red Halberd","10141300":"Raw Red Halberd","10141400":"Blessed Red Halberd","10141500":"Hollow Red Halberd","10150000":"Black Knight Glaive","10160000":"Immolation Tinder","10170000":"Splitleaf Greatsword","10170100":"Heavy Splitleaf Greatsword","10170200":"Sharp Splitleaf Greatsword","10170300":"Refined Splitleaf Greatsword","10170400":"Simple Splitleaf Greatsword","10170500":"Crystal Splitleaf Greatsword","10170600":"Fire Splitleaf Greatsword","10170700":"Chaos Splitleaf Greatsword","10170800":"Lightning Splitleaf Greatsword","10170900":"Deep Splitleaf Greatsword","10171000":"Dark Splitleaf Greatsword","10171100":"Poison Splitleaf Greatsword","10171200":"Blood Splitleaf Greatsword","10171300":"Raw Splitleaf Greatsword","10171400":"Blessed Splitleaf Greatsword","10171500":"Hollow Splitleaf Greatsword","10180000":"Friede's Great Scythe","11000000":"Claw","11000100":"Heavy Claw","11000200":"Sharp Claw","11000300":"Skilled Claw","11000400":"Simple Claw","11000500":"Crystal Claw","11000600":"Fire Claw","11000700":"Chaos Claw","11000800":"Lightning Claw","11000900":"Deep Claw","11001000":"Dark Claw","11001100":"Poison Claw","11001200":"Blood Claw","11001300":"Raw Claw","11001400":"Blessed Claw","11001500":"Hollow Claw","11010000":"Caestus","11010100":"Heavy Caestus","11010200":"Sharp Caestus","11010300":"Skilled Caestus","11010400":"Simple Caestus","11010500":"Crystal Caestus","11010600":"Fire Caestus","11010700":"Chaos Caestus","11010800":"Lightning Caestus","11010900":"Deep Caestus","11011000":"Dark Caestus","11011100":"Poison Caestus","11011200":"Blood Caestus","11011300":"Raw Caestus","11011400":"Blessed Caestus","11011500":"Hollow Caestus","11020000":"Manikin Claws","11020100":"Heavy Manikin Claws","11020200":"Sharp Manikin Claws","11020300":"Skilled Manikin Claws","11020400":"Simple Manikin Claws","11020500":"Crystal Manikin Claws","11020600":"Fire Manikin Claws","11020700":"Chaos Manikin Claws","11020800":"Lightning Manikin Claws","11020900":"Deep Manikin Claws","11021000":"Dark Manikin Claws","11021100":"Poison Manikin Claws","11021200":"Blood Manikin Claws","11021300":"Raw Manikin Claws","11021400":"Blessed Manikin Claws","11021500":"Hollow Manikin Claws","11030000":"Demon's Fist","11040000":"Dark Hand","11050000":"Crow Talons","11050100":"Heavy Crow Talons","11050200":"Sharp Crow Talons","11050300":"Refined Crow Talons","11050400":"Simple Crow Talons","11050500":"Crystal Crow Talons","11050600":"Fire Crow Talons","11050700":"Chaos Crow Talons","11050800":"Lightning Crow Talons","11050900":"Deep Crow Talons","11051000":"Dark Crow Talons","11051100":"Poison Crow Talons","11051200":"Blood Crow Talons","11051300":"Raw Crow Talons","11051400":"Blessed Crow Talons","11051500":"Hollow Crow Talons","12000000":"Whip","12000100":"Heavy Whip","12000200":"Sharp Whip","12000300":"Skilled Whip","12000400":"Simple Whip","12000500":"Crystal Whip","12000600":"Fire Whip","12000700":"Chaos Whip","12000800":"Lightning Whip","12000900":"Deep Whip","12001000":"Dark Whip","12001100":"Poison Whip","12001200":"Blood Whip","12001300":"Raw Whip","12001400":"Blessed Whip","12001500":"Hollow Whip","12040000":"Witch's Locks","12050000":"Notched Whip","12050100":"Heavy Notched Whip","12050200":"Sharp Notched Whip","12050300":"Skilled Notched Whip","12050400":"Simple Notched Whip","12050500":"Crystal Notched Whip","12050600":"Fire Notched Whip","12050700":"Chaos Notched Whip","12050800":"Lightning Notched Whip","12050900":"Deep Notched Whip","12051000":"Dark Notched Whip","12051100":"Poison Notched Whip","12051200":"Blood Notched Whip","12051300":"Raw Notched Whip","12051400":"Blessed Notched Whip","12051500":"Hollow Notched Whip","12060000":"Spotted Whip","12070000":"Rose of Ariandel","13050000":"Talisman","13060000":"Sorcerer's Staff","13070000":"Storyteller's Staff","13080000":"Mendicant's Staff","13100000":"Man-grub's Staff","13110000":"Archdeacon's Great Staff","13120000":"Golden Ritual Spear","13140000":"Yorshka's Chime","13160000":"Sage's Crystal Staff","13170000":"Heretic's Staff","13180000":"Court Sorcerer's Staff","13190000":"Witchtree Branch","13200000":"Izalith Staff","13210000":"Cleric's Sacred Chime","13220000":"Priest's Chime","13230000":"Saint-tree Bellvine","13240000":"Caitha's Chime","13250000":"Crystal Chime","13260000":"Sunlight Talisman","13270000":"Canvas Talisman","13280000":"Sunless Talisman","13290000":"Saint's Talisman","13300000":"White Hair Talisman","13400000":"Pyromancy Flame","13410000":"Pyromancer's Parting Flame","13420000":"Murky Longstaff","13430000":"Sacred Chime of Filianore","13440000":"Preacher's Right Arm","13600000":"Dragonslayer Greatbow","14010000":"Short Bow","14020000":"Composite Bow","14040000":"Light Crossbow","14050000":"Arbalest","14060000":"Longbow","14070000":"Dragonrider Bow","14090000":"Avelyn","14100000":"Knight's Crossbow","14110000":"Heavy Crossbow","14120000":"White Birch Bow","14130000":"Darkmoon Longbow","14140000":"Onislayer Greatbow","14150000":"Black Bow of Pharis","14170000":"Sniper Crossbow","14180000":"Millwood Greatbow","14190000":"Repeating Crossbow","16000000":"Sellsword Twinblades","16000100":"Heavy Sellsword Twinblades","16000200":"Sharp Sellsword Twinblades","16000300":"Refined Sellsword Twinblades","16000400":"Simple Sellsword Twinblades","16000500":"Crystal Sellsword Twinblades","16000600":"Fire Sellsword Twinblades","16000700":"Chaos Sellsword Twinblades","16000800":"Lightning Sellsword Twinblades","16000900":"Deep Sellsword Twinblades","16001000":"Dark Sellsword Twinblades","16001100":"Poison Sellsword Twinblades","16001200":"Blood Sellsword Twinblades","16001300":"Raw Sellsword Twinblades","16001400":"Blessed Sellsword Twinblades","16001500":"Hollow Sellsword Twinblades","16020000":"Warden Twinblades","16020100":"Heavy Warden Twinblades","16020200":"Sharp Warden Twinblades","16020300":"Refined Warden Twinblades","16020400":"Simple Warden Twinblades","16020500":"Crystal Warden Twinblades","16020600":"Fire Warden Twinblades","16020700":"Chaos Warden Twinblades","16020800":"Lightning Warden Twinblades","16020900":"Deep Warden Twinblades","16021000":"Dark Warden Twinblades","16021100":"Poison Warden Twinblades","16021200":"Blood Warden Twinblades","16021300":"Raw Warden Twinblades","16021400":"Blessed Warden Twinblades","16021500":"Hollow Warden Twinblades","16030000":"Winged Knight Twinaxes","16030100":"Heavy Winged Knight Twinaxes","16030200":"Sharp Winged Knight Twinaxes","16030300":"Refined Winged Knight Twinaxes","16030400":"Simple Winged Knight Twinaxes","16030500":"Crystal Winged Knight Twinaxes","16030600":"Fire Winged Knight Twinaxes","16030700":"Chaos Winged Knight Twinaxes","16030800":"Lightning Winged Knight Twinaxes","16030900":"Deep Winged Knight Twinaxes","16031000":"Dark Winged Knight Twinaxes","16031100":"Poison Winged Knight Twinaxes","16031200":"Blood Winged Knight Twinaxes","16031300":"Raw Winged Knight Twinaxes","16031400":"Blessed Winged Knight Twinaxes","16031500":"Hollow Winged Knight Twinaxes","16040000":"Dancer's Enchanted Swords","16050000":"Great Machete","16050100":"Heavy Great Machete","16050200":"Sharp Great Machete","16050300":"Refined Great Machete","16050400":"Simple Great Machete","16050500":"Crystal Great Machete","16050600":"Fire Great Machete","16050700":"Chaos Great Machete","16050800":"Lightning Great Machete","16050900":"Deep Great Machete","16051000":"Dark Great Machete","16051100":"Poison Great Machete","16051200":"Blood Great Machete","16051300":"Raw Great Machete","16051400":"Blessed Great Machete","16051500":"Hollow Great Machete","16060000":"Brigand Twindaggers","16060100":"Heavy Brigand Twindaggers","16060200":"Sharp Brigand Twindaggers","16060300":"Refined Brigand Twindaggers","16060400":"Simple Brigand Twindaggers","16060500":"Crystal Brigand Twindaggers","16060600":"Fire Brigand Twindaggers","16060700":"Chaos Brigand Twindaggers","16060800":"Lightning Brigand Twindaggers","16060900":"Deep Brigand Twindaggers","16061000":"Dark Brigand Twindaggers","16061100":"Poison Brigand Twindaggers","16061200":"Blood Brigand Twindaggers","16061300":"Raw Brigand Twindaggers","16061400":"Blessed Brigand Twindaggers","16061500":"Hollow Brigand Twindaggers","16070000":"Gotthard Twinswords","16070100":"Heavy Gotthard Twinswords","16070200":"Sharp Gotthard Twinswords","16070300":"Refined Gotthard Twinswords","16070400":"Simple Gotthard Twinswords","16070500":"Crystal Gotthard Twinswords","16070600":"Fire Gotthard Twinswords","16070700":"Chaos Gotthard Twinswords","16070800":"Lightning Gotthard Twinswords","16070900":"Deep Gotthard Twinswords","16071000":"Dark Gotthard Twinswords","16071100":"Poison Gotthard Twinswords","16071200":"Blood Gotthard Twinswords","16071300":"Raw Gotthard Twinswords","16071400":"Blessed Gotthard Twinswords","16071500":"Hollow Gotthard Twinswords","16090000":"Onikiri and Ubadachi","16090100":"Heavy Onikiri and Ubadachi","16090200":"Sharp Onikiri and Ubadachi","16090300":"Refined Onikiri and Ubadachi","16090400":"Simple Onikiri and Ubadachi","16090500":"Crystal Onikiri and Ubadachi","16090600":"Fire Onikiri and Ubadachi","16090700":"Chaos Onikiri and Ubadachi","16090800":"Lightning Onikiri and Ubadachi","16090900":"Deep Onikiri and Ubadachi","16091000":"Dark Onikiri and Ubadachi","16091100":"Poison Onikiri and Ubadachi","16091200":"Blood Onikiri and Ubadachi","16091300":"Raw Onikiri and Ubadachi","16091400":"Blessed Onikiri and Ubadachi","16091500":"Hollow Onikiri and Ubadachi","16100000":"Drang Twinspears","16100100":"Heavy Drang Twinspears","16100200":"Sharp Drang Twinspears","16100300":"Refined Drang Twinspears","16100400":"Simple Drang Twinspears","16100500":"Crystal Drang Twinspears","16100600":"Fire Drang Twinspears","16100700":"Chaos Drang Twinspears","16100800":"Lightning Drang Twinspears","16100900":"Deep Drang Twinspears","16101000":"Dark Drang Twinspears","16101100":"Poison Drang Twinspears","16101200":"Blood Drang Twinspears","16101300":"Raw Drang Twinspears","16101400":"Blessed Drang Twinspears","16101500":"Hollow Drang Twinspears","16120000":"Giant Door Shield","16120100":"Heavy Giant Door Shield","16120200":"Sharp Giant Door Shield","16120300":"Refined Giant Door Shield","16120400":"Simple Giant Door Shield","16120500":"Crystal Giant Door Shield","16120600":"Fire Giant Door Shield","16120700":"Chaos Giant Door Shield","16120800":"Lightning Giant Door Shield","16120900":"Deep Giant Door Shield","16121000":"Dark Giant Door Shield","16121100":"Poison Giant Door Shield","16121200":"Blood Giant Door Shield","16121300":"Raw Giant Door Shield","16121400":"Blessed Giant Door Shield","16121500":"Hollow Giant Door Shield","16130000":"Drang Hammers","16130100":"Heavy Drang Hammers","16130200":"Sharp Drang Hammers","16130300":"Refined Drang Hammers","16130400":"Simple Drang Hammers","16130500":"Crystal Drang Hammers","16130600":"Fire Drang Hammers","16130700":"Chaos Drang Hammers","16130800":"Lightning Drang Hammers","16130900":"Deep Drang Hammers","16131000":"Dark Drang Hammers","16131100":"Poison Drang Hammers","16131200":"Blood Drang Hammers","16131300":"Raw Drang Hammers","16131400":"Blessed Drang Hammers","16131500":"Hollow Drang Hammers","16140000":"Valorheart","16150000":"Crow Quills","16150100":"Heavy Crow Quills","16150200":"Sharp Crow Quills","16150300":"Refined Crow Quills","16150400":"Simple Crow Quills","16150500":"Crystal Crow Quills","16150600":"Fire Crow Quills","16150700":"Chaos Crow Quills","16150800":"Lightning Crow Quills","16150900":"Deep Crow Quills","16151000":"Dark Crow Quills","16151100":"Poison Crow Quills","16151200":"Blood Crow Quills","16151300":"Raw Crow Quills","16151400":"Blessed Crow Quills","16151500":"Hollow Crow Quills","16160000":"Ringed Knight Paired Greatswords","20000000":"Buckler","20000100":"Heavy Buckler","20000200":"Sharp Buckler","20000300":"Refined Buckler","20000400":"Simple Buckler","20000500":"Crystal Buckler","20000600":"Fire Buckler","20000700":"Chaos Buckler","20000800":"Lightning Buckler","20000900":"Deep Buckler","20001000":"Dark Buckler","20001100":"Poison Buckler","20001200":"Blood Buckler","20001300":"Raw Buckler","20001400":"Blessed Buckler","20001500":"Hollow Buckler","20010000":"Small Leather Shield","20010100":"Heavy Small Leather Shield","20010200":"Sharp Small Leather Shield","20010300":"Refined Small Leather Shield","20010400":"Simple Small Leather Shield","20010500":"Crystal Small Leather Shield","20010600":"Fire Small Leather Shield","20010700":"Chaos Small Leather Shield","20010800":"Lightning Small Leather Shield","20010900":"Deep Small Leather Shield","20011000":"Dark Small Leather Shield","20011100":"Poison Small Leather Shield","20011200":"Blood Small Leather Shield","20011300":"Raw Small Leather Shield","20011400":"Blessed Small Leather Shield","20011500":"Hollow Small Leather Shield","20030000":"Round Shield","20030100":"Heavy Round Shield","20030200":"Sharp Round Shield","20030300":"Refined Round Shield","20030400":"Simple Round Shield","20030500":"Crystal Round Shield","20030600":"Fire Round Shield","20030700":"Chaos Round Shield","20030800":"Lightning Round Shield","20030900":"Deep Round Shield","20031000":"Dark Round Shield","20031100":"Poison Round Shield","20031200":"Blood Round Shield","20031300":"Raw Round Shield","20031400":"Blessed Round Shield","20031500":"Hollow Round Shield","20040000":"Large Leather Shield","20040100":"Heavy Large Leather Shield","20040200":"Sharp Large Leather Shield","20040300":"Refined Large Leather Shield","20040400":"Simple Large Leather Shield","20040500":"Crystal Large Leather Shield","20040600":"Fire Large Leather Shield","20040700":"Chaos Large Leather Shield","20040800":"Lightning Large Leather Shield","20040900":"Deep Large Leather Shield","20041000":"Dark Large Leather Shield","20041100":"Poison Large Leather Shield","20041200":"Blood Large Leather Shield","20041300":"Raw Large Leather Shield","20041400":"Blessed Large Leather Shield","20041500":"Hollow Large Leather Shield","20070000":"Hawkwood's Shield","20070100":"Hawkwood's Heavy Shield","20070200":"Hawkwood's Sharp Shield","20070300":"Hawkwood's Refined Shield","20070400":"Hawkwood's Simple Shield","20070500":"Hawkwood's Crystal Shield","20070600":"Hawkwood's Fire Shield","20070700":"Hawkwood's Chaos Shield","20070800":"Hawkwood's Lightning Shield","20070900":"Hawkwood's Deep Shield","20071000":"Hawkwood's Dark Shield","20071100":"Hawkwood's Poison Shield","20071200":"Hawkwood's Blood Shield","20071300":"Hawkwood's Raw Shield","20071400":"Hawkwood's Blessed Shield","20071500":"Hawkwood's Hollow Shield","20080000":"Iron Round Shield","20080100":"Heavy Iron Shield","20080200":"Sharp Iron Shield","20080300":"Refined Iron Shield","20080400":"Simple Iron Shield","20080500":"Crystal Iron Shield","20080600":"Fire Iron Shield","20080700":"Chaos Iron Shield","20080800":"Lightning Iron Shield","20080900":"Deep Iron Shield","20081000":"Dark Iron Shield","20081100":"Poison Iron Shield","20081200":"Blood Iron Shield","20081300":"Raw Iron Shield","20081400":"Blessed Iron Shield","20081500":"Hollow Iron Shield","20110000":"Wooden Shield","20110100":"Heavy Wooden Shield","20110200":"Sharp Wooden Shield","20110300":"Refined Wooden Shield","20110400":"Simple Wooden Shield","20110500":"Crystal Wooden Shield","20110600":"Fire Wooden Shield","20110700":"Chaos Wooden Shield","20110800":"Lightning Wooden Shield","20110900":"Deep Wooden Shield","20111000":"Dark Wooden Shield","20111100":"Poison Wooden Shield","20111200":"Blood Wooden Shield","20111300":"Raw Wooden Shield","20111400":"Blessed Wooden Shield","20111500":"Hollow Wooden Shield","20120000":"Kite Shield","20120100":"Heavy Kite Shield","20120200":"Sharp Kite Shield","20120300":"Refined Kite Shield","20120400":"Simple Kite Shield","20120500":"Crystal Kite Shield","20120600":"Fire Kite Shield","20120700":"Chaos Kite Shield","20120800":"Lightning Kite Shield","20120900":"Deep Kite Shield","20121000":"Dark Kite Shield","20121100":"Poison Kite Shield","20121200":"Blood Kite Shield","20121300":"Raw Kite Shield","20121400":"Blessed Kite Shield","20121500":"Hollow Kite Shield","20130000":"Ghru Rotshield","20130100":"Heavy Ghru Rotshield","20130200":"Sharp Ghru Rotshield","20130300":"Refined Ghru Rotshield","20130400":"Simple Ghru Rotshield","20130500":"Crystal Ghru Rotshield","20130600":"Fire Ghru Rotshield","20130700":"Chaos Ghru Rotshield","20130800":"Lightning Ghru Rotshield","20130900":"Deep Ghru Rotshield","20131000":"Dark Ghru Rotshield","20131100":"Poison Ghru Rotshield","20131200":"Blood Ghru Rotshield","20131300":"Raw Ghru Rotshield","20131400":"Blessed Ghru Rotshield","20131500":"Hollow Ghru Rotshield","20150000":"Havel's Greatshield","20160000":"Target Shield","20160100":"Heavy Target Shield","20160200":"Sharp Target Shield","20160300":"Refined Target Shield","20160400":"Simple Target Shield","20160500":"Crystal Target Shield","20160600":"Fire Target Shield","20160700":"Chaos Target Shield","20160800":"Lightning Target Shield","20160900":"Deep Target Shield","20161000":"Dark Target Shield","20161100":"Poison Target Shield","20161200":"Blood Target Shield","20161300":"Raw Target Shield","20161400":"Blessed Target Shield","20161500":"Hollow Target Shield","20170000":"Elkhorn Round Shield","20170100":"Heavy Elkhorn Shield","20170200":"Sharp Elkhorn Shield","20170300":"Refined Elkhorn Shield","20170400":"Simple Elkhorn Shield","20170500":"Crystal Elkhorn Shield","20170600":"Fire Elkhorn Shield","20170700":"Chaos Elkhorn Shield","20170800":"Lightning Elkhorn Shield","20170900":"Deep Elkhorn Shield","20171000":"Dark Elkhorn Shield","20171100":"Poison Elkhorn Shield","20171200":"Blood Elkhorn Shield","20171300":"Raw Elkhorn Shield","20171400":"Blessed Elkhorn Shield","20171500":"Hollow Elkhorn Shield","20180000":"Warrior's Round Shield","20180100":"Heavy Warrior's Shield","20180200":"Sharp Warrior's Shield","20180300":"Refined Warrior's Shield","20180400":"Simple Warrior's Shield","20180500":"Crystal Warrior's Shield","20180600":"Fire Warrior's Shield","20180700":"Chaos Warrior's Shield","20180800":"Lightning Warrior's Shield","20180900":"Deep Warrior's Shield","20181000":"Dark Warrior's Shield","20181100":"Poison Warrior's Shield","20181200":"Blood Warrior's Shield","20181300":"Raw Warrior's Shield","20181400":"Blessed Warrior's Shield","20181500":"Hollow Warrior's Shield","20190000":"Caduceus Round Shield","20190100":"Heavy Caduceus Shield","20190200":"Sharp Caduceus Shield","20190300":"Refined Caduceus Shield","20190400":"Simple Caduceus Shield","20190500":"Crystal Caduceus Shield","20190600":"Fire Caduceus Shield","20190700":"Chaos Caduceus Shield","20190800":"Lightning Caduceus Shield","20190900":"Deep Caduceus Shield","20191000":"Dark Caduceus Shield","20191100":"Poison Caduceus Shield","20191200":"Blood Caduceus Shield","20191300":"Raw Caduceus Shield","20191400":"Blessed Caduceus Shield","20191500":"Hollow Caduceus Shield","20200000":"Red and White Round Shield","20200100":"Heavy Red and White Shield","20200200":"Sharp Red and White Shield","20200300":"Refined Red and White Shield","20200400":"Simple Red and White Shield","20200500":"Crystal Red and White Shield","20200600":"Fire Red and White Shield","20200700":"Chaos Red and White Shield","20200800":"Lightning Red and White Shield","20200900":"Deep Red and White Shield","20201000":"Dark Red and White Shield","20201100":"Poison Red and White Shield","20201200":"Blood Red and White Shield","20201300":"Raw Red and White Shield","20201400":"Blessed Red and White Shield","20201500":"Hollow Red and White Shield","20210000":"Plank Shield","20210100":"Heavy Plank Shield","20210200":"Sharp Plank Shield","20210300":"Refined Plank Shield","20210400":"Simple Plank Shield","20210500":"Crystal Plank Shield","20210600":"Fire Plank Shield","20210700":"Chaos Plank Shield","20210800":"Lightning Plank Shield","20210900":"Deep Plank Shield","20211000":"Dark Plank Shield","20211100":"Poison Plank Shield","20211200":"Blood Plank Shield","20211300":"Raw Plank Shield","20211400":"Blessed Plank Shield","20211500":"Hollow Plank Shield","20220000":"Leather Shield","20220100":"Heavy Leather Shield","20220200":"Sharp Leather Shield","20220300":"Refined Leather Shield","20220400":"Simple Leather Shield","20220500":"Crystal Leather Shield","20220600":"Fire Leather Shield","20220700":"Chaos Leather Shield","20220800":"Lightning Leather Shield","20220900":"Deep Leather Shield","20221000":"Dark Leather Shield","20221100":"Poison Leather Shield","20221200":"Blood Leather Shield","20221300":"Raw Leather Shield","20221400":"Blessed Leather Shield","20221500":"Hollow Leather Shield","20230000":"Crimson Parma","20230100":"Heavy Crimson Parma","20230200":"Sharp Crimson Parma","20230300":"Refined Crimson Parma","20230400":"Simple Crimson Parma","20230500":"Crystal Crimson Parma","20230600":"Fire Crimson Parma","20230700":"Chaos Crimson Parma","20230800":"Lightning Crimson Parma","20230900":"Deep Crimson Parma","20231000":"Dark Crimson Parma","20231100":"Poison Crimson Parma","20231200":"Blood Crimson Parma","20231300":"Raw Crimson Parma","20231400":"Blessed Crimson Parma","20231500":"Hollow Crimson Parma","20240000":"Eastern Iron Shield","20240100":"Heavy Eastern Shield","20240200":"Sharp Eastern Shield","20240300":"Refined Eastern Shield","20240400":"Simple Eastern Shield","20240500":"Crystal Eastern Shield","20240600":"Fire Eastern Shield","20240700":"Chaos Eastern Shield","20240800":"Lightning Eastern Shield","20240900":"Deep Eastern Shield","20241000":"Dark Eastern Shield","20241100":"Poison Eastern Shield","20241200":"Blood Eastern Shield","20241300":"Raw Eastern Shield","20241400":"Blessed Eastern Shield","20241500":"Hollow Eastern Shield","20250000":"Llewellyn Shield","20250100":"Heavy Llewellyn Shield","20250200":"Sharp Llewellyn Shield","20250300":"Refined Llewellyn Shield","20250400":"Simple Llewellyn Shield","20250500":"Crystal Llewellyn Shield","20250600":"Fire Llewellyn Shield","20250700":"Chaos Llewellyn Shield","20250800":"Lightning Llewellyn Shield","20250900":"Deep Llewellyn Shield","20251000":"Dark Llewellyn Shield","20251100":"Poison Llewellyn Shield","20251200":"Blood Llewellyn Shield","20251300":"Raw Llewellyn Shield","20251400":"Blessed Llewellyn Shield","20251500":"Hollow Llewellyn Shield","20270000":"Golden Falcon Shield","20270100":"Heavy Falcon Shield","20270200":"Sharp Falcon Shield","20270300":"Refined Falcon Shield","20270400":"Simple Falcon Shield","20270500":"Crystal Falcon Shield","20270600":"Fire Falcon Shield","20270700":"Chaos Falcon Shield","20270800":"Lightning Falcon Shield","20270900":"Deep Falcon Shield","20271000":"Dark Falcon Shield","20271100":"Poison Falcon Shield","20271200":"Blood Falcon Shield","20271300":"Raw Falcon Shield","20271400":"Blessed Falcon Shield","20271500":"Hollow Falcon Shield","20280000":"Sacred Bloom Shield","20290000":"Ancient Dragon Greatshield","20300000":"Follower Shield","20300100":"Heavy Follower Shield","20300200":"Sharp Follower Shield","20300300":"Refined Follower Shield","20300400":"Simple Follower Shield","20300500":"Crystal Follower Shield","20300600":"Fire Follower Shield","20300700":"Chaos Follower Shield","20300800":"Lightning Follower Shield","20300900":"Deep Follower Shield","20301000":"Dark Follower Shield","20301100":"Poison Follower Shield","20301200":"Blood Follower Shield","20301300":"Raw Follower Shield","20301400":"Blessed Follower Shield","20301500":"Hollow Follower Shield","20310000":"Dragonhead Shield","21010000":"Lothric Knight Shield","21010100":"Heavy Lothric Shield","21010200":"Sharp Lothric Shield","21010300":"Refined Lothric Shield","21010400":"Simple Lothric Shield","21010500":"Crystal Lothric Shield","21010600":"Fire Lothric Shield","21010700":"Chaos Lothric Shield","21010800":"Lightning Lothric Shield","21010900":"Deep Lothric Shield","21011000":"Dark Lothric Shield","21011100":"Poison Lothric Shield","21011200":"Blood Lothric Shield","21011300":"Raw Lothric Shield","21011400":"Blessed Lothric Shield","21011500":"Hollow Lothric Shield","21040000":"Knight Shield","21040100":"Heavy Knight Shield","21040200":"Sharp Knight Shield","21040300":"Refined Knight Shield","21040400":"Simple Knight Shield","21040500":"Crystal Knight Shield","21040600":"Fire Knight Shield","21040700":"Chaos Knight Shield","21040800":"Lightning Knight Shield","21040900":"Deep Knight Shield","21041000":"Dark Knight Shield","21041100":"Poison Knight Shield","21041200":"Blood Knight Shield","21041300":"Raw Knight Shield","21041400":"Blessed Knight Shield","21041500":"Hollow Knight Shield","21060000":"Pontiff Knight Shield","21070000":"Carthus Shield","21070100":"Heavy Carthus Shield","21070200":"Sharp Carthus Shield","21070300":"Refined Carthus Shield","21070400":"Simple Carthus Shield","21070500":"Crystal Carthus Shield","21070600":"Fire Carthus Shield","21070700":"Chaos Carthus Shield","21070800":"Lightning Carthus Shield","21070900":"Deep Carthus Shield","21071000":"Dark Carthus Shield","21071100":"Poison Carthus Shield","21071200":"Blood Carthus Shield","21071300":"Raw Carthus Shield","21071400":"Blessed Carthus Shield","21071500":"Hollow Carthus Shield","21100000":"Black Knight Shield","21120000":"Silver Knight Shield","21130000":"Spiked Shield","21130100":"Heavy Spiked Shield","21130200":"Sharp Spiked Shield","21130300":"Refined Spiked Shield","21130400":"Simple Spiked Shield","21130500":"Crystal Spiked Shield","21130600":"Fire Spiked Shield","21130700":"Chaos Spiked Shield","21130800":"Lightning Spiked Shield","21130900":"Deep Spiked Shield","21131000":"Dark Spiked Shield","21131100":"Poison Spiked Shield","21131200":"Blood Spiked Shield","21131300":"Raw Spiked Shield","21131400":"Blessed Spiked Shield","21131500":"Hollow Spiked Shield","21140000":"Pierce Shield","21140100":"Heavy Pierce Shield","21140200":"Sharp Pierce Shield","21140300":"Refined Pierce Shield","21140400":"Simple Pierce Shield","21140500":"Crystal Pierce Shield","21140600":"Fire Pierce Shield","21140700":"Chaos Pierce Shield","21140800":"Lightning Pierce Shield","21140900":"Deep Pierce Shield","21141000":"Dark Pierce Shield","21141100":"Poison Pierce Shield","21141200":"Blood Pierce Shield","21141300":"Raw Pierce Shield","21141400":"Blessed Pierce Shield","21141500":"Hollow Pierce Shield","21150000":"East-West Shield","21150100":"Heavy East-West Shield","21150200":"Sharp East-West Shield","21150300":"Refined East-West Shield","21150400":"Simple East-West Shield","21150500":"Crystal East-West Shield","21150600":"Fire East-West Shield","21150700":"Chaos East-West Shield","21150800":"Lightning East-West Shield","21150900":"Deep East-West Shield","21151000":"Dark East-West Shield","21151100":"Poison East-West Shield","21151200":"Blood East-West Shield","21151300":"Raw East-West Shield","21151400":"Blessed East-West Shield","21151500":"Hollow East-West Shield","21160000":"Sunlight Shield","21160100":"Heavy Sunlight Shield","21160200":"Sharp Sunlight Shield","21160300":"Refined Sunlight Shield","21160400":"Simple Sunlight Shield","21160500":"Crystal Sunlight Shield","21160600":"Fire Sunlight Shield","21160700":"Chaos Sunlight Shield","21160800":"Lightning Sunlight Shield","21160900":"Deep Sunlight Shield","21161000":"Dark Sunlight Shield","21161100":"Poison Sunlight Shield","21161200":"Blood Sunlight Shield","21161300":"Raw Sunlight Shield","21161400":"Blessed Sunlight Shield","21161500":"Hollow Sunlight Shield","21170000":"Crest Shield","21180000":"Dragon Crest Shield","21190000":"Spider Shield","21190100":"Heavy Spider Shield","21190200":"Sharp Spider Shield","21190300":"Refined Spider Shield","21190400":"Simple Spider Shield","21190500":"Crystal Spider Shield","21190600":"Fire Spider Shield","21190700":"Chaos Spider Shield","21190800":"Lightning Spider Shield","21190900":"Deep Spider Shield","21191000":"Dark Spider Shield","21191100":"Poison Spider Shield","21191200":"Blood Spider Shield","21191300":"Raw Spider Shield","21191400":"Blessed Spider Shield","21191500":"Hollow Spider Shield","21200000":"Grass Crest Shield","21210000":"Sunset Shield","21210100":"Heavy Sunset Shield","21210200":"Sharp Sunset Shield","21210300":"Refined Sunset Shield","21210400":"Simple Sunset Shield","21210500":"Crystal Sunset Shield","21210600":"Fire Sunset Shield","21210700":"Chaos Sunset Shield","21210800":"Lightning Sunset Shield","21210900":"Deep Sunset Shield","21211000":"Dark Sunset Shield","21211100":"Poison Sunset Shield","21211200":"Blood Sunset Shield","21211300":"Raw Sunset Shield","21211400":"Blessed Sunset Shield","21211500":"Hollow Sunset Shield","21220000":"Golden Wing Crest Shield","21230000":"Blue Wooden Shield","21230100":"Heavy Blue Shield","21230200":"Sharp Blue Shield","21230300":"Refined Blue Shield","21230400":"Simple Blue Shield","21230500":"Crystal Blue Shield","21230600":"Fire Blue Shield","21230700":"Chaos Blue Shield","21230800":"Lightning Blue Shield","21230900":"Deep Blue Shield","21231000":"Dark Blue Shield","21231100":"Poison Blue Shield","21231200":"Blood Blue Shield","21231300":"Raw Blue Shield","21231400":"Blessed Blue Shield","21231500":"Hollow Blue Shield","21240000":"Silver Eagle Kite Shield","21240100":"Heavy Eagle Kite Shield","21240200":"Sharp Eagle Kite Shield","21240300":"Refined Eagle Kite Shield","21240400":"Simple Eagle Kite Shield","21240500":"Crystal Eagle Kite Shield","21240600":"Fire Eagle Kite Shield","21240700":"Chaos Eagle Kite Shield","21240800":"Lightning Eagle Kite Shield","21240900":"Deep Eagle Kite Shield","21241000":"Dark Eagle Kite Shield","21241100":"Poison Eagle Kite Shield","21241200":"Blood Eagle Kite Shield","21241300":"Raw Eagle Kite Shield","21241400":"Blessed Eagle Kite Shield","21241500":"Hollow Eagle Kite Shield","21250000":"Stone Parma","21250100":"Heavy Stone Parma","21250200":"Sharp Stone Parma","21250300":"Refined Stone Parma","21250400":"Simple Stone Parma","21250500":"Crystal Stone Parma","21250600":"Fire Stone Parma","21250700":"Chaos Stone Parma","21250800":"Lightning Stone Parma","21250900":"Deep Stone Parma","21251000":"Dark Stone Parma","21251100":"Poison Stone Parma","21251200":"Blood Stone Parma","21251300":"Raw Stone Parma","21251400":"Blessed Stone Parma","21251500":"Hollow Stone Parma","21260000":"Spirit Tree Crest Shield","21270000":"Porcine Shield","21270100":"Heavy Porcine Shield","21270200":"Sharp Porcine Shield","21270300":"Refined Porcine Shield","21270400":"Simple Porcine Shield","21270500":"Crystal Porcine Shield","21270600":"Fire Porcine Shield","21270700":"Chaos Porcine Shield","21270800":"Lightning Porcine Shield","21270900":"Deep Porcine Shield","21271000":"Dark Porcine Shield","21271100":"Poison Porcine Shield","21271200":"Blood Porcine Shield","21271300":"Raw Porcine Shield","21271400":"Blessed Porcine Shield","21271500":"Hollow Porcine Shield","21280000":"Shield of Want","21290000":"Wargod Wooden Shield","21290100":"Heavy Wargod Shield","21290200":"Sharp Wargod Shield","21290300":"Refined Wargod Shield","21290400":"Simple Wargod Shield","21290500":"Crystal Wargod Shield","21290600":"Fire Wargod Shield","21290700":"Chaos Wargod Shield","21290800":"Lightning Wargod Shield","21290900":"Deep Wargod Shield","21291000":"Dark Wargod Shield","21291100":"Poison Wargod Shield","21291200":"Blood Wargod Shield","21291300":"Raw Wargod Shield","21291400":"Blessed Wargod Shield","21291500":"Hollow Wargod Shield","21300000":"Ethereal Oak Shield","21310000":"Dragonhead Greatshield","22010000":"Lothric Knight Greatshield","22010100":"Heavy Lothric Greatshield","22010200":"Sharp Lothric Greatshield","22010300":"Refined Lothric Greatshield","22010400":"Simple Lothric Greatshield","22010500":"Crystal Lothric Greatshield","22010600":"Fire Lothric Greatshield","22010700":"Chaos Lothric Greatshield","22010800":"Lightning Lothric Greatshield","22010900":"Deep Lothric Greatshield","22011000":"Dark Lothric Greatshield","22011100":"Poison Lothric Greatshield","22011200":"Blood Lothric Greatshield","22011300":"Raw Lothric Greatshield","22011400":"Blessed Lothric Greatshield","22011500":"Hollow Lothric Greatshield","22020000":"Cathedral Knight Greatshield","22020100":"Heavy Cathedral Greatshield","22020200":"Sharp Cathedral Greatshield","22020300":"Refined Cathedral Greatshield","22020400":"Simple Cathedral Greatshield","22020500":"Crystal Cathedral Greatshield","22020600":"Fire Cathedral Greatshield","22020700":"Chaos Cathedral Greatshield","22020800":"Lightning Cathedral Greatshield","22020900":"Deep Cathedral Greatshield","22021000":"Dark Cathedral Greatshield","22021100":"Poison Cathedral Greatshield","22021200":"Blood Cathedral Greatshield","22021300":"Raw Cathedral Greatshield","22021400":"Blessed Cathedral Greatshield","22021500":"Hollow Cathedral Greatshield","22040000":"Dragonslayer Greatshield","22050000":"Moaning Shield","22070000":"Yhorm's Greatshield","22080000":"Black Iron Greatshield","22080100":"Heavy Black Iron Greatshield","22080200":"Sharp Black Iron Greatshield","22080300":"Refined Black Iron Greatshield","22080400":"Simple Black Iron Greatshield","22080500":"Crystal Black Iron Greatshield","22080600":"Fire Black Iron Greatshield","22080700":"Chaos Black Iron Greatshield","22080800":"Lightning Black Iron Greatshield","22080900":"Deep Black Iron Greatshield","22081000":"Dark Black Iron Greatshield","22081100":"Poison Black Iron Greatshield","22081200":"Blood Black Iron Greatshield","22081300":"Raw Black Iron Greatshield","22081400":"Blessed Black Iron Greatshield","22081500":"Hollow Black Iron Greatshield","22090000":"Wolf Knight's Greatshield","22100000":"Twin Dragon Greatshield","22100100":"Heavy Twin Dragon Greatshield","22100200":"Sharp Twin Dragon Greatshield","22100300":"Refined Twin Dragon Greatshield","22100400":"Simple Twin Dragon Greatshield","22100500":"Crystal Twin Dragon Greatshield","22100600":"Fire Twin Dragon Greatshield","22100700":"Chaos Twin Dragon Greatshield","22100800":"Lightning Twin Dragon Greatshield","22100900":"Deep Twin Dragon Greatshield","22101000":"Dark Twin Dragon Greatshield","22101100":"Poison Twin Dragon Greatshield","22101200":"Blood Twin Dragon Greatshield","22101300":"Raw Twin Dragon Greatshield","22101400":"Blessed Twin Dragon Greatshield","22101500":"Hollow Twin Dragon Greatshield","22110000":"Greatshield of Glory","22120000":"Curse Ward Greatshield","22130000":"Bonewheel Shield","22130100":"Heavy Bonewheel Shield","22130200":"Sharp Bonewheel Shield","22130300":"Refined Bonewheel Shield","22130400":"Simple Bonewheel Shield","22130500":"Crystal Bonewheel Shield","22130600":"Fire Bonewheel Shield","22130700":"Chaos Bonewheel Shield","22130800":"Lightning Bonewheel Shield","22130900":"Deep Bonewheel Shield","22131000":"Dark Bonewheel Shield","22131100":"Poison Bonewheel Shield","22131200":"Blood Bonewheel Shield","22131300":"Raw Bonewheel Shield","22131400":"Blessed Bonewheel Shield","22131500":"Hollow Bonewheel Shield","22140000":"Stone Greatshield","22140100":"Heavy Stone Greatshield","22140200":"Sharp Stone Greatshield","22140300":"Refined Stone Greatshield","22140400":"Simple Stone Greatshield","22140500":"Crystal Stone Greatshield","22140600":"Fire Stone Greatshield","22140700":"Chaos Stone Greatshield","22140800":"Lightning Stone Greatshield","22140900":"Deep Stone Greatshield","22141000":"Dark Stone Greatshield","22141100":"Poison Stone Greatshield","22141200":"Blood Stone Greatshield","22141300":"Raw Stone Greatshield","22141400":"Blessed Stone Greatshield","22141500":"Hollow Stone Greatshield","23000000":"Torch","23010000":"Follower Torch","63990000":"[Debug] Arrow","67000000":"[Debug] Bolt","90040000":"[Debug] Daggers","90050000":"[Debug] Twinswords","90060000":"[Debug] Shield"},"FaceGenParam":{"0":"Testdata -- testData","1":"Men _ Prototype 1 -- 男性_試作1","2":"Men _ Prototype 2 -- 男性_試作2","3":"Men _ Prototype 3 -- 男性_試作3","4":"Men _ Prototype 4 -- 男性_試作4","5":"Men _ Prototype 5 -- 男性_試作5","6":"Men _ Prototype 6 -- 男性_試作6","7":"Men _ Prototype 7 -- 男性_試作7","8":"Men _ Prototype 8 -- 男性_試作8","9":"Men _ Prototype 9 -- 男性_試作9","10":"Men _ Prototype 10 -- 男性_試作10","11":"Men _ Prototype 11 -- 男性_試作11","12":"Men _ Prototype 12 -- 男性_試作12","13":"Men _ Prototype 13 -- 男性_試作13","14":"Men _ Prototype 14 -- 男性_試作14","20":"Women _ Prototype 1 -- 女性_試作1","21":"Women _ Prototype 2 -- 女性_試作2","30":"4th End Edition Warrior _ Man -- 4末版 戦士_男","31":"4th End Edition Knight _ Man -- 4末版 騎士_男","32":"4-End Edition Witch _ Woman -- 4末版 魔法使い_女","33":"4th end version of a sorcerer _ Man -- 4末版 呪術師_男","34":"E3 Solar Knights _ Man -- E3 太陽騎士_男","100":"Default Face Test _01 -- デフォルト顔テスト_01","101":"Default Face Test _02 -- デフォルト顔テスト_02","102":"Default Face Test _03 -- デフォルト顔テスト_03","103":"Default Face Test _04 -- デフォルト顔テスト_04","104":"Default Face Test _05 -- デフォルト顔テスト_05","105":"Default Face Test _06 -- デフォルト顔テスト_06","106":"Default Face Test _07 -- デフォルト顔テスト_07","107":"Default Face Test _08 -- デフォルト顔テスト_08","108":"Default Face Test _09 -- デフォルト顔テスト_09","109":"Default Face Test _10 -- デフォルト顔テスト_10","110":"Default Face Test _11 -- デフォルト顔テスト_11","111":"Default Face Test _12 -- デフォルト顔テスト_12","112":"Default Face Test _13 -- デフォルト顔テスト_13","113":"Default Face Test _14 -- デフォルト顔テスト_14","114":"Default Face Test _15 -- デフォルト顔テスト_15","115":"Default Face Test _16 -- デフォルト顔テスト_16","116":"Default Face Test _17 -- デフォルト顔テスト_17","117":"Default Face Test _18 -- デフォルト顔テスト_18","118":"Default Face Test _19 -- デフォルト顔テスト_19","119":"Default Face Test _20 -- デフォルト顔テスト_20","120":"Default Face Test _21 -- デフォルト顔テスト_21","121":"Default Face Test _22 -- デフォルト顔テスト_22","122":"Default Face Test _23 -- デフォルト顔テスト_23","123":"Default Face Test _24 -- デフォルト顔テスト_24","124":"Default Face Test _25 -- デフォルト顔テスト_25","125":"Default Face Test _26 -- デフォルト顔テスト_26","126":"Default Face Test _27 -- デフォルト顔テスト_27","127":"Default Face Test _28 -- デフォルト顔テスト_28","128":"Default Face Test _29 -- デフォルト顔テスト_29","129":"Default Face Test _30 -- デフォルト顔テスト_30","130":"Default Face Test _31 -- デフォルト顔テスト_31","131":"Default Face Test _32 -- デフォルト顔テスト_32","132":"Default Face Test _33 -- デフォルト顔テスト_33","133":"Default Face Test _34 -- デフォルト顔テスト_34","134":"Default Face Test _35 -- デフォルト顔テスト_35","135":"Default Face Test _36 -- デフォルト顔テスト_36","136":"Default Face Test _37 -- デフォルト顔テスト_37","137":"Default Face Test _38 -- デフォルト顔テスト_38","138":"Default Face Test _39 -- デフォルト顔テスト_39","139":"Default Face Test _40 -- デフォルト顔テスト_40","140":"Default Face Test _41 -- デフォルト顔テスト_41","141":"Default Face Test _42 -- デフォルト顔テスト_42","142":"Default Face Test _43 -- デフォルト顔テスト_43","143":"Default Face Test _44 -- デフォルト顔テスト_44","144":"Default Face Test _45 -- デフォルト顔テスト_45","145":"Default Face Test _46 -- デフォルト顔テスト_46","146":"Default Face Test _47 -- デフォルト顔テスト_47","147":"Default Face Test _48 -- デフォルト顔テスト_48","148":"Default Face Test _49 -- デフォルト顔テスト_49","149":"Default Face Test _50 -- デフォルト顔テスト_50","300":"The Gray saint -- 灰色の聖女","1000":"A plain face -- 平民顔","1001":"Farmer's face of five Fingers River -- 五指河の農民顔","1002":"Astra Noble face -- アストラの貴族顔","1003":"The student face of the Dragon Academy -- 竜学院の書生顔","1004":"Sollond Saint Face -- ソルロンドの聖者顔","1005":"The cheerful face of Catalina -- カタリナの陽気顔","1006":"Karim's dismal face -- カリムの陰気顔","1007":"Xena timers -- ゼナの古顔","1008":"Heterophase of Onuma -- 大沼の異相","1009":"The foreigner face of the east -- 東の異人顔","2000":"A plain face -- 平民顔","2001":"Farmer's face of five Fingers River -- 五指河の農民顔","2002":"Astra Noble face -- アストラの貴族顔","2003":"The student face of the Dragon Academy -- 竜学院の書生顔","2004":"Sollond Saint Face -- ソルロンドの聖者顔","2005":"The cheerful face of Catalina -- カタリナの陽気顔","2006":"Karim's dismal face -- カリムの陰気顔","2007":"Xena timers -- ゼナの古顔","2008":"Heterophase of Onuma -- 大沼の異相","2009":"The foreigner face of the east -- 東の異人顔","6000":"Knight of the Sun -- 太陽の騎士","6001":"Knight of the Sun (Sun Worm ver.) -- 太陽の騎士(太陽虫Ver)","6002":"Knight of the Sun (dead) -- 太陽の騎士(亡者)","6010":"Knight of the Dark Moon -- 暗月の騎士","6020":"Knight OST -- 騎士オストラ","6021":"Knight male Tiger (hostile) -- 騎士オストラ(敵対)","6030":"\"Big Hat\" Logarn -- ”ビッグハット”ロガーン","6031":"\"Big Hat\" Logarn (dead) -- ”ビッグハット”ロガーン(亡者)","6040":"Logarn Disciple -- ロガーンの弟子","6041":"Logarn Disciple (dead) -- ロガーンの弟子(亡者)","6050":"A ruined princess -- 亡国の王女","6060":"The Gray saint -- 灰色の聖女","6070":"White Saint -- 白の聖女","6071":"White Saint (Dead) -- 白の聖女(亡者)","6080":"Saint Knight A -- 聖女の騎士A","6090":"Saint Knight B -- 聖女の騎士B","6091":"Saint Knight B (dead) -- 聖女の騎士B (亡者)","6100":"Saint Knight C -- 聖女の騎士C","6101":"Saint Knight C (dead) -- 聖女の騎士C (亡者)","6130":"The Sorcerer of the Vase -- 壺の呪術師","6131":"The Sorcerer of the Vase (dead) -- 壺の呪術師(亡者)","6170":"Wandering Chaos -- さまよう混沌","6180":"Healing Hands -- 癒し手","6220":"Blacksmith Heinrich Rickert -- 鍛冶屋リッケルト","6250":"A broken-hearted merchant -- 心折れた商人","6260":"Trickster -- トリックスター","6270":"Broken Heart Warrior -- 心折れた戦士","6271":"Heart-Broken Warrior (dead) -- 心折れた戦士(亡者)","6280":"Onion Knight -- たまねぎ騎士","6290":"Onion Knight's Daughter -- たまねぎ騎士の娘","6300":"Knight Lek held -- 抱かれ騎士ロートレク","6310":"Bandits -- 野武士","6320":"Graveyard Cowards Patch -- 墓地の卑怯者パッチ","6370":"Dragon Priest -- ドラゴンの神官","6390":"Black Knights -- 黒騎士タルカス","6400":"Belka Knight -- ベルカ騎士","6410":"Witch Malose -- 魔女マロース","6420":"Ninja -- 忍者","6490":"One companion of the funnel -- ロートレクのお供1","6500":"The companion of the Funnel 2 -- ロートレクのお供2","6530":"Swamp Woman (NPC Multi) -- 沼女(NPCマルチ)","6550":"Temple Knight (NPC Multi) -- 神殿騎士(NPCマルチ)","6560":"Thorn Knight (NPC Multi) -- トゲ騎士(NPCマルチ)","6570":"Yellow Robe (NPC Multi) -- 黄衣(NPCマルチ)","6580":"NPC (Havel) -- 城下塔のNPC(ハベル)","6600":"Ojo 1 NPC (Ricard) -- 王城1塔のNPC(リカール)","6610":"Crystal Knight -- 結晶騎士","6801":"Bandit a Gatekeeper -- 山賊A 門番","6802":"Bandit B Warrior -- 山賊B 戦士","6803":"Bandit C Archer -- 山賊C 弓使い","6804":"Bandit D Magic (Attack) -- 山賊D 魔法(攻撃)","6805":"Bandit e Magic (recovery) -- 山賊E 魔法(回復)","6806":"Bandit F Covert -- 山賊F 隠密","9999":"Phantom (no Face) -- 幻影(顔なし)"},"FaceParam":{"0":"Test -- test","1":"Character Makeup Test -- キャラメイクテスト","20":"20: NT version A (Wandering Knight) -- 20:NT版 A (放浪の騎士)","21":"21: NT version B (North Warrior) -- 21:NT版 B (北の戦士)","22":"22: NT version C (Wizard) -- 22:NT版 C (魔法使い)","23":"23: NT version D (Temple Knight) -- 23:NT版 D (神殿騎士)","1000":"Newgame presets Face _ man 0 -- NewGameプリセット顔_男0","1001":"Newgame preset Face _ man 1 -- NewGameプリセット顔_男1","1002":"Newgame presets Face _ Man 2 -- NewGameプリセット顔_男2","1003":"Newgame Preset Face _ Man 3 -- NewGameプリセット顔_男3","1004":"Newgame Preset Face _ man 4 -- NewGameプリセット顔_男4","1005":"Newgame Preset Face _ man 5 -- NewGameプリセット顔_男5","1006":"Newgame Preset Face _ man 6 -- NewGameプリセット顔_男6","1007":"Newgame Presets Face _ Man 7 -- NewGameプリセット顔_男7","1008":"Newgame presets Face _ Man 8 -- NewGameプリセット顔_男8","1009":"Newgame Presets Face _ Man 9 -- NewGameプリセット顔_男9","2000":"Newgame preset Face _ woman 0 -- NewGameプリセット顔_女0","2001":"Newgame preset Face _ woman 1 -- NewGameプリセット顔_女1","2002":"Newgame preset Face _ woman 2 -- NewGameプリセット顔_女2","2003":"Newgame preset Face _ woman 3 -- NewGameプリセット顔_女3","2004":"Newgame preset Face _ woman 4 -- NewGameプリセット顔_女4","2005":"Newgame preset Face _ woman 5 -- NewGameプリセット顔_女5","2006":"Newgame preset Face _ woman 6 -- NewGameプリセット顔_女6","2007":"Newgame preset Face _ woman 7 -- NewGameプリセット顔_女7","2008":"Newgame preset Face _ woman 8 -- NewGameプリセット顔_女8","2009":"Newgame preset Face _ woman 9 -- NewGameプリセット顔_女9","3000":"0 for base body (mixed) -- ベースボディ用0(男女共用)","3001":"For base body 1 (mixed) -- ベースボディ用1(男女共用)","3002":"For base body 2 (mixed) -- ベースボディ用2(男女共用)","3003":"For base body 3 (mixed) -- ベースボディ用3(男女共用)","3004":"For base body 4 (mixed) -- ベースボディ用4(男女共用)","3005":"For base body 5 (mixed) -- ベースボディ用5(男女共用)","3006":"For base body 6 (mixed) -- ベースボディ用6(男女共用)","3007":"Base Body 7 (mixed) -- ベースボディ用7(男女共用)","3008":"For base body 8 (mixed) -- ベースボディ用8(男女共用)","3009":"Base Body 9 (mixed) -- ベースボディ用9(男女共用)","4000":"Character make top menu male -- キャラメイクトップメニュー男性","5000":"Character make top menu female -- キャラメイクトップメニュー女性","9999":"Phantom (no Face) -- 幻影(顔なし)"},"FaceRangeParam":{"1":"Range Minimum Value -- 範囲最小値","2":"Range Maximum Value -- 範囲最大値"},"FootSfxParam":{},"GameAreaParam":{"0":"Test -- テスト","1":"Test One -- テスト1","100":"Lat _ Bastards -- 石柱_なりそこない","200":"Ojo 1_ Phalanx (main body) -- 王城1_ファランクス(本体)","201":"Ojo 2_ King's Shield -- 王城2_王の盾","202":"Ojo 3_ King's Sword -- 王城3_王の剣","203":"Ojo 4_ King -- 王城4_レンドル王","301":"The old Fort 1_ referee -- 古砦1_審判者","302":"Old Fort 2_ Storm Warrior -- 古砦2_嵐の戦士","303":"Old Fort 3_ Storm Beast -- 古砦3_嵐の獣","400":"1_-sama -- 牢城1_カミサマ","401":"Jail 2_ Chimera -- 牢城2_キメラ","402":"3_ Summon NPC -- 牢城3_召喚NPC","500":"Unholy 1_ Leech Daemon -- 不浄1_蛭デーモン","501":"Unholy 2_ flies bummed -- 不浄2_蠅たかり","502":"Unholy 3_ Saint Lee Bra -- 不浄3_聖女リーブラ","600":"1_, Large spider -- 坑道1_大蜘蛛","601":"Mine 2_ Flame Phantom -- 坑道2_炎怪人","602":"Mine 3_ Dragon Demon (mine) -- 坑道3_ドラゴンデーモン(坑道)","801":"Tutorial _ Deb Daemon -- チュートリアル_デブデーモン","1000800":"2_ the Castle -- 城下2_貪食ドラゴン","1010700":"1_ Castle -- 城下1_ハンマーデーモン","1010750":"1_-Natal Demon Castle -- 城下1_ナタデーモン","1010800":"Castle 1_ Gargoyle -- 城下1_ガーゴイル","1100160":"Painting World _ semi-dragon Priscilla -- 絵画世界_半竜プリシラ","1200800":"Forest Garden _ The Wolf of the Holy Sword -- 森庭_聖剣の狼","1200801":"Forest Garden _ Dragon -- 森庭_カゲロウ龍","1210401":"Past Forest _ black Dragon -- 過去森_黒竜","1210800":"Past Forest _ Gold Chimera -- 過去森_金キメラ","1210820":"Past Forest _ al-Triana -- 過去森_アルトリウス","1210840":"Lord of the past forest -- 過去森_深淵の主","1300800":"Cemetery 1_ Three Haori -- 墓地1_三人羽織","1310800":"Cemetery 2_ Tomb King NITs -- 墓地2_墓王ニト","1400800":"Shadow Town _ the Witch of the Flame Klagspider -- 影町_焔の魔女クラグスパイダー","1410400":"Waste City _ The Fat Demon -- 廃都_デブデーモン","1410600":"Waste City _ what continues to sore -- 廃都_爛れ続けるもの","1410700":"Disused City _ Mucademon -- 廃都_ムカデーモン","1410800":"The disused city _ the King -- 廃都_キングイザリス","1500800":"Ojo 1_ Iron Golem -- 王城1_アイアンゴーレム","1510650":"Ojo 2_ mother Brother -- 王城2_王母弟","1510801":"Ojo 2_ Huge Griffith -- 王城2_ヒュージグリフィス","1510811":"Ojo 2_ Lightningsmow -- 王城2_ライトニングスモウ","1600800":"The Abyss -- 深淵_ジャイールデーモン","1700800":"Crystal Tower _ Sheath -- 結晶塔_シース","1800800":"The Great Tomb _ the King of firewood -- 大墓_薪の王","1810800":"Tutorial _ Mini Deb Daemon -- チュートリアル_ミニデブデーモン","1810810":"Tutorial _ Deb Daemon -- チュートリアル_デブデーモン","2010800":"Religious District -- 宗教街_教区長","2910400":"Dungeon A_ Beast of Flames -- ダンジョンA_炎の獣","2920800":"Dungeon B_ Beast of Flames -- ダンジョンB_炎の獣","3000800":"Ojo 1_ Daemon -- 王城1_デーモン","3010800":"Ojo 2_ -- 王城2_孤王","3100800":"City of Colossus -- 街_巨像","3200800":"Bridge _ Mother Dragon -- 橋_母ドラゴン","3500800":"The Church of the Cardinals -- 聖堂_枢機卿団","3700800":"Anole _ Salivan -- アノール_サリヴァーン","3700850":"Anole _ the Witch of the Moonlight -- アノール_月光の魔女","3800800":"Waste City _ King of the Dead -- 廃都_死霊の王","3900800":"Prison _ Hallec -- 牢_ハレック","4000800":"Stronghold _ Segunda -- 拠点_グンダ","9901010":"Boss Seoul Get verified -- ボスソウル入手検証"},"GameProgressParam":{},"GemCategoryParam":{"0":"Nothing is absorbed. -- なにもおこらない","1":"Attack system -- 攻撃系","2":"Recovery system -- 回復系","3":"Status system -- ステータス系"},"GemDropDopingParam":{"0":"Nothing is absorbed. -- なにもおこらない"},"GemDropModifyParam":{"0":"Nothing is absorbed. -- なにもおこらない"},"GemGenParam":{"0":"Sweet Ishikoro -- あまいいしころ","1":"Increased attack power and defensive power -- 攻撃力アップ & 防御力アップ","2":"HP Regen -- HPリジェネ","3":"Max HP up -- マックスHPアップ"},"GemeffectParam":{"0":"Nothing is absorbed. -- なにもおこらない","1":"Increased attack power -- 攻撃力アップ","2":"Defense up -- 防御力アップ","3":"HP Regen -- HPリジェネ","4":"Max HP up -- マックスHPアップ"},"HPEstusFlaskRecoveryParam":{"0":"Host -- ホスト","1":"Cooperation Pathway Clients -- 協力経路のクライアント","2":"Intrusion Path Client -- 侵入経路のクライアント"},"HitEffectSeParam":{"1":"Cobblestone -- 石畳","2":"Stone -- 石","3":"Soil -- 土","4":"Wood -- 木材","5":"Grassland -- 草地","6":"Gravel -- 砂利","7":"Gaps -- 欠番","8":"Trees -- 樹木","9":"Swamp -- 沼","10":"Nest -- 巣","11":"Iron -- 鉄","12":"Flesh -- 血肉","13":"Sand -- 砂","14":"Bone -- 骨","15":"Ash -- 灰","16":"Roof Tiles -- 屋根瓦","17":"Cloth -- 布","18":"Fallen leaves -- 落ち葉","19":"Bell -- 鐘","20":"Water (Puddle) -- 水(水溜り程度)","21":"Water (ankle level) -- 水(足首程度)","22":"Water (knee) -- 水(膝下)","23":"Poison Swamp (shallow) -- 毒沼(浅い)","24":"Poison Swamp (deep) -- 毒沼(深い)","25":"Poison Swamp (knee) -- 毒沼(膝下)","26":"Poison Swamp (about puddle) -- 毒沼(水溜まり程度)","27":"Water (waist or more) -- 水(腰以上)","28":"Carpet -- 絨毯","29":"Without -- なし","30":"Caries -- 蝕","31":"God Grave Net -- 神墓ネット","50":"Weapon Iron -- 武器鉄","51":"Wax -- 蝋","52":"Weapon tree -- 武器木","53":"Weapon meat -- 武器肉","54":"Shield Iron -- 盾鉄","55":"Shield Tree -- 盾木","56":"Iron -- 鉄","58":"Armor Leather -- 鎧革","59":"Meat (Live) -- 肉(生者)","60":"Meat (raw) _ Weakness -- 肉(生者)_弱点","62":"Heavy Iron -- 重鉄","63":"Cloth -- 布","64":"Humanity -- 人間性","65":"Hair -- 毛","66":"Soft Stone -- 石(軟)","67":"Feathers -- 羽","68":"Carrion -- 腐肉","69":"Ash -- 灰","70":"Lava -- 溶岩","71":"Evil -- 死霊","72":"Crystal -- 結晶","74":"Bone -- 骨","75":"Flame -- 炎","76":"Rock -- 岩","77":"Shield Stone -- 盾石","78":"Tree -- 木","79":"Heavy Iron Shield -- 盾重鉄","80":"Ghost Enemy Black -- ゴースト敵ブラック","84":"Drool -- よだれ","85":"Ghost Enemy Black (for guard) -- ゴースト敵ブラック(ガード時用)","89":"Without -- なし","90":"Penetration -- 眼光","91":"Caries -- 蝕","92":"Maggots -- うじ","93":"Charcoal -- 炭","94":"Bugs -- 虫","95":"Fluid -- 体液","98":"Caries weakness -- 蝕_弱点"},"HitEffectSfxConceptParam":{"1":"Cobblestone -- 石畳","2":"Stone -- 石","3":"Soil -- 土","4":"Wood -- 木材","5":"Grassland -- 草地","6":"Gravel -- 砂利","7":"Gaps -- 欠番","8":"Trees -- 樹木","9":"Swamp -- 沼","10":"Nest -- 巣","11":"Iron -- 鉄","12":"Flesh -- 血肉","13":"Sand -- 砂","14":"Bone -- 骨","15":"Ash -- 灰","16":"Roof Tiles -- 屋根瓦","17":"Cloth -- 布","18":"Fallen leaves -- 落ち葉","19":"Bell -- 鐘","20":"Water (Puddle) -- 水(水溜り程度)","21":"Water (ankle level) -- 水(足首程度)","22":"Water (knee) -- 水(膝下)","23":"Poison Swamp (shallow) -- 毒沼(浅い)","24":"Poison Swamp (deep) -- 毒沼(深い)","25":"Poison Swamp (knee) -- 毒沼(膝下)","26":"Poison Swamp (about puddle) -- 毒沼(水溜まり程度)","27":"Water (waist or more) -- 水(腰以上)","28":"Carpet -- 絨毯","29":"Without -- なし","30":"Caries -- 蝕","31":"God Grave Net -- 神墓ネット","100":"Weapon Iron -- 武器鉄","101":"Wax -- 蝋","102":"Weapon tree -- 武器木","103":"Weapon meat -- 武器肉","104":"Shield Iron -- 盾鉄","105":"Shield Tree -- 盾木","106":"Iron -- 鉄","107":"Bugs -- 虫","108":"Armor Leather -- 鎧革","109":"Meat -- 肉","110":"Flesh _ Weakness -- 肉_弱点","111":"Dragon Meat -- 竜肉","112":"Heavy Iron -- 重鉄","113":"Cloth -- 布","114":"Humanity -- 人間性","115":"Hair -- 毛","116":"Soft Stone -- 石(軟)","117":"Feathers -- 羽","118":"Carrion -- 腐肉","119":"Ash -- 灰","120":"Lava -- 溶岩","121":"Evil -- 死霊","122":"Crystal -- 結晶","123":"Liquid -- 液体","124":"Bone -- 骨","125":"Flame -- 炎","126":"Rock -- 岩","127":"Shield Stone -- 盾石","128":"Tree -- 木","129":"Heavy Iron Shield -- 盾重鉄","130":"Ghost White -- ゴーストホワイト","131":"Ghost Black -- ゴーストブラック","132":"Ghost Enemy White -- ゴースト敵ホワイト","133":"Ghost Enemy Black -- ゴースト敵ブラック","134":"Drool -- よだれ","135":"Ghost White (for guard) -- ゴーストホワイト(ガード時用)","136":"Ghost Black (for guard) -- ゴーストブラック(ガード時用)","137":"Ghost Enemy White (for guard) -- ゴースト敵ホワイト(ガード時用)","138":"Ghost Enemy Black (for guard) -- ゴースト敵ブラック(ガード時用)","139":"Without -- なし","140":"Penetration -- 眼光","141":"Caries -- 蝕","142":"Maggots -- 蛆","143":"Charcoal -- 炭","144":"Gaps -- 欠番","145":"Fluid -- 体液","146":"Meat (Live) -- 肉(生者)","147":"Meat (raw) _ Weakness -- 肉(生者)_弱点","148":"Caries weakness -- 蝕_弱点"},"HitEffectSfxParam":{"0":"Without -- なし","10":"Spark -- 火花","20":"General smoke -- 汎用煙","30":"Dust -- 砂煙","40":"Soil -- 土","50":"Gravel -- 砂利","60":"Ash Smoke -- 灰煙","70":"Dust -- 埃","80":"Wood -- 木片","90":"A piece of stone -- 石片","100":"Bone fragments -- 骨片","110":"Crystal Pieces -- 結晶片","120":"A piece of grass -- 草片","130":"Leaves -- 葉","140":"Deciduous -- 落葉","150":"God grave net Piece -- 神墓ネット片","160":"Splashes -- 水飛沫","170":"Mud Splash -- 泥飛沫","180":"Poison Swamp Splash -- 毒沼飛沫","190":"Oil -- 油","200":"The front of the blood -- 血(生者)_正面","201":"On the Blood -- 血(生者)_上","202":"Under the blood -- 血(生者)_下","203":"Blood (Live) _ Left -- 血(生者)_左","204":"Blood (The Raw) _ Right -- 血(生者)_右","210":"Blood (dead) _ Front -- 血(亡者)_正面","211":"On Blood (Dead) _ -- 血(亡者)_上","212":"Blood (Dead) _ under -- 血(亡者)_下","213":"Blood (dead) _ Left -- 血(亡者)_左","214":"Blood (dead) _ Right -- 血(亡者)_右","220":"Blood (Dragon) _ Front -- 血(竜)_正面","221":"On Blood (Dragons) _ -- 血(竜)_上","222":"Under Blood (Dragon) -- 血(竜)_下","223":"Blood (Dragon) left -- 血(竜)_左","224":"Blood (Dragon) _ Right -- 血(竜)_右","230":"Caries _ Front -- 蝕_正面","231":"On caries _ -- 蝕_上","232":"Under Eclipse -- 蝕_下","233":"Eclipse left -- 蝕_左","234":"Caries right -- 蝕_右","240":"Fluid -- 体液","250":"Drool -- よだれ","260":"Maggots -- 蛆","270":"Wax -- 蝋","280":"Insect fluids -- 虫体液","290":"Humanity -- 人間性","300":"Hair fragments -- 毛片","310":"Feathers -- 羽","320":"Carrion pieces -- 腐肉片","330":"Ash Daemon -- 灰デーモン","340":"Lava -- 溶岩","350":"Spirits -- 霊","360":"Ghost White -- ゴーストホワイト","370":"Ghost Black -- ゴーストブラック","380":"Flame -- 炎","390":"Lightning -- 雷","400":"Seoul -- ソウル","410":"Poison -- 毒","420":"Caries map -- 蝕マップ","430":"Fire Powder and Flame -- 火の粉と炎","440":"Eclipse hits (gas) -- 蝕ヒット(気体)","450":"Eclipse hits (liquid) -- 蝕ヒット(液体)","460":"Energy (Strong) -- エネルギー(強)","470":"Preliminary -- 予備","480":"Preliminary -- 予備","490":"Preliminary -- 予備","500":"Preliminary -- 予備","510":"Preliminary -- 予備","520":"Preliminary -- 予備","530":"Preliminary -- 予備","540":"Preliminary -- 予備","550":"Preliminary -- 予備","560":"Preliminary -- 予備","570":"Preliminary -- 予備","580":"Preliminary -- 予備","590":"Preliminary -- 予備","600":"Preliminary -- 予備"},"HitMtrlParam":{"0":"Dummy -- ダミー","1":"Cobblestone -- 石畳","2":"Stone -- 石","3":"Soil -- 土","4":"Wood -- 木材","5":"Grassland -- 草地","6":"Gravel -- 砂利","7":"Gaps -- 欠番","8":"Trees -- 樹木","9":"Swamp -- 沼","10":"Nest -- 巣","11":"Iron -- 鉄","12":"Flesh -- 血肉","13":"Sand -- 砂","14":"Bone -- 骨","15":"Ash -- 灰","16":"Roof Tiles -- 屋根瓦","17":"Cloth -- 布","18":"Fallen leaves -- 落ち葉","19":"Bell -- 鐘","20":"Water (Puddle) -- 水(水溜り程度)","21":"Water (ankle level) -- 水(足首程度)","22":"Water (knee) -- 水(膝下)","23":"Poison Swamp (shallow) -- 毒沼(浅い)","24":"Poison Swamp (deep) -- 毒沼(深い)","25":"Poison Swamp (knee) -- 毒沼(膝下)","26":"Poison Swamp (about puddle) -- 毒沼(水溜まり程度)","27":"Water (waist or more) -- 水(腰以上)","28":"Carpet -- 絨毯","29":"Without -- なし","30":"Caries -- 蝕","31":"God Grave Net -- 神墓ネット"},"ItemLotParam":{"0":"DEBUG","1":"DEBUG","2":"DEBUG","10":"DEBUG","2000":"[Boss] Soul of Boreal Valley Vordt","2010":"[Boss] Soul of the Dancer","2020":"[Boss] Soul of Consumed Oceiros","2030":"[Boss] Soul of Dragonslayer Armour","2040":"[Boss] Cinders of a Lord","2041":"[Boss] Soul of the Twin Princes","2050":"INVALID","2060":"[Boss] Soul of the Rotted Greatwood","2061":"[Boss] Transposing Kiln","2070":"[Boss] Dragon Head Stone","2080":"[Boss] Soul of the Nameless King","2090":"[Boss] Soul of a Crystal Sage","2100":"[Boss] Cinders of a Lord","2101":"[Boss] Soul of the Blood of the Wolf","2110":"[Boss] Small Doll","2111":"[Boss] Soul of the Deacons of the Deep","2120":"[Boss] Soul of Pontiff Sulyvahn","2130":"[Boss] Cinders of a Lord","2131":"[Boss] Soul of Aldrich","2140":"[Boss] Soul of High Lord Wolnir","2150":"[Boss] Soul of the Old Demon King","2160":"INVALID","2170":"[Boss] Cinders of a Lord","2171":"[Boss] Soul of Yhorm the Giant","2180":"[Boss] Coiled Sword","2190":"[Boss] Soul of Champion Gundyr","2200":"[Boss] Soul of the Lords","2300":"[Boss] Soul of Sister Friede","2310":"[Boss] Champion's Bones","2311":"[Boss] Valorheart","2330":"[Boss] Soul of the Demon Prince","2340":"[Boss] Titanite Slab","2341":"[Boss] Filianore's Spear Ornament","2350":"[Boss] Soul of Darkeater Midir","2351":"[Boss] Spears of the Church","2360":"[Boss] Soul of Slave Knight Gael","2361":"[Boss] Blood of the Dark Soul","2500":"Coiled Sword","2520":"INVALID","4000":"Seed of a Giant Tree","4010":"Rosaria's Fingers - Emblem","4020":"Way of White Circlet","4200":"Warrior of Sunlight - Emblem","4207":"[Covenant] Warrior of Sunlight Rank 2 - Sunlight Straight Sword","4208":"[Covenant] Warrior of Sunlight Rank 1 - Sunlight Shield","4210":"Mound-makers - Emblem","4217":"[Covenant] Mound-makers Rank 2 - Warmth","4218":"[Covenant] Mound-makers Rank 1 - Bloodlust","4220":"Watchdogs of Farron - Emblem","4226":"[Covenant] Watchdogs of Farron Rank 2 - Wolf Knight's Greatshield","4227":"[Covenant] Watchdogs of Farron Rank 2 - Wolf Ring","4228":"[Covenant] Watchdogs of Farron Rank 1 - Old Wolf Curved Sword","4230":"Aldrich Faithful - Emblem","4237":"[Covenant] Aldrich Faithful Rank 2 - Archdeacon's Great Staff","4238":"[Covenant] Aldrich Faithful Rank 1 - Great Deep Soul","4240":"Blue Sentinels - Emblem","4247":"Firebomb","4248":"Kukri","4250":"Blade of the Darkmoon - Emblem","4257":"Firebomb","4258":"Firebomb","4260":"Rosaria's Fingers - Emblem","4267":"[Covenant] Rosaria's Fingers Rank 2 - Man-grub's Staff","4268":"[Covenant] Rosaria's Fingers Rank 1 - Obscuring Ring","4270":"Way of Blue - Emblem","4277":"Firebomb","4278":"Firebomb","4280":"EMPTY","4287":"Divine Spear Fragment","4288":"Young Grass Dew","4300":"[Crow] Iron Bracelets","4301":"[Crow] Ring of Sacrifice","4302":"[Crow] Porcine Shield","4303":"[Crow] Lucatiel's Mask","4304":"[Crow] Very good! Carving","4305":"[Crow] Thank you Carving","4306":"[Crow] I'm sorry Carving","4307":"[Crow] Sunlight Shield","4308":"[Crow] Hollow Gem","4309":"[Crow] Titanite Scale","4310":"[Crow] Help me! Carving","4311":"[Crow] Titanite Slab","4312":"EMPTY","4313":"EMPTY","4314":"EMPTY","4315":"EMPTY","4316":"EMPTY","4317":"EMPTY","4318":"EMPTY","4319":"EMPTY","4320":"[Crow] Hello Carving","4321":"[Crow] Armor of the Sun","4322":"[Crow] Large Titanite Shard","4323":"[Crow] Titanite Chunk","4324":"[Crow] Iron Helm","4325":"[Crow] Twinkling Titanite","4326":"[Crow] Iron Leggings","4327":"[Crow] Lightning Gem","4328":"[Crow] Twinkling Titanite","4329":"[Crow] Blessed Gem","4330":"[Crow] Titanite Scale","4331":"EMPTY","4332":"EMPTY","4333":"EMPTY","4334":"EMPTY","4335":"EMPTY","4336":"EMPTY","4337":"EMPTY","4338":"EMPTY","4339":"EMPTY","4500":"Pale Tongue","4510":"Proof of a Concord Kept","4530":"Vertebra Shackle","4550":"Ember","4600":"Storm Ruler","4700":"Titanite Slab","4810":"INVALID","4811":"INVALID","4812":"INVALID","4813":"INVALID","4814":"INVALID","5000":"Titanite Shard, INVALID, Titanite Scale, Twinkling Titanite, INVALID, INVALID, Rubbish, Pendant","5010":"INVALID","5020":"Vertebra Shackle","5030":"Sunlight Medal","5040":"Sharp Gem","5200":"INVALID","5210":"INVALID","5220":"INVALID","5230":"INVALID","5240":"INVALID","5250":"INVALID","5260":"INVALID","5270":"INVALID","5280":"White Sign Soapstone","5500":"INVALID","5510":"Ember","5520":"Ember","5530":"Pale Tongue","5540":"Forked Pale Tongue","5550":"Proof of a Concord Kept","5560":"Vertebra Shackle","5570":"Proof of a Concord Well Kept","5580":"Wolf's Blood Swordgrass","5590":"EMPTY","5600":"Human Dregs","5610":"EMPTY","5620":"Filianore's Spear Ornament","5630":"Filianore's Spear Ornament","5640":"Filianore's Spear Ornament","5650":"Filianore's Spear Ornament","5660":"Filianore's Spear Ornament","5670":"Filianore's Spear Ornament","6000":"Divine Blessing, Large Soul of an Unknown Traveler, Soul of a Weary Warrior","6010":"Divine Blessing, Rusted Coin, Dung Pie","6020":"Divine Blessing, Rusted Coin, Soul of a Deserted Corpse","6030":"Divine Blessing, Rusted Coin, Soul of a Weary Warrior","6040":"Hidden Blessing, Pale Pine Resin","6050":"Divine Blessing, Rusted Coin","6060":"Divine Blessing, Rusted Coin","6070":"Divine Blessing, INVALID, Rusted Coin","6080":"Twinkling Titanite","6090":"Ember, Young White Branch","6100":"Titanite Scale, Hidden Blessing, INVALID","6110":"Titanite Slab","6120":"Ember","6130":"Ember","6140":"Ember","6150":"Ember","6160":"Ember","6170":"Ember","6180":"Ember","6190":"Ember","9000":"Ember","9010":"Ember","9020":"INVALID","9030":"Charcoal Pine Resin","50300":"[Ludleth of Courland] Skull Ring","50400":"[Yuria of Londor] Darkdrift","50401":"[Yuria of Londor] Yuria's Ashes","50600":"[Company Captain Yorshka] Blade of the Darkmoon","50610":"[Company Captain Yorshka] Yorshka's Chime","50700":"[Hawkwood the Deserter] Heavy Gem","50800":"[Sirris of the Sunless Realms] Sunless Talisman","50900":"[Ringfinger Leonhard] Cracked Red Eye Orb","50901":"[Ringfinger Leonhard] Silver Mask","50902":"[Ringfinger Leonhard] Lift Chamber Key","51100":"[Shrine Handmaid] Priestess Ring","51200":"[Greirat of the Undead Settlement] Blue Tearstone Ring","51201":"[Greirat of the Undead Settlement] Greirat's Ashes","51300":"[Orbeck of Vinheim] Orbeck's Ashes","51400":"[Cornyx of the Great Swamp] Pyromancy Flame","51401":"[Cornyx of the Great Swamp] Old Sage's Blindfold","51402":"[Cornyx of the Great Swamp] Cornyx's Garb","51403":"[Cornyx of the Great Swamp] Cornyx's Wrap","51404":"[Cornyx of the Great Swamp] Cornyx's Skirt","51405":"[Cornyx of the Great Swamp] Cornyx's Ashes","51500":"[Karla] Karla's Pointed Hat","51501":"[Karla] Karla's Coat","51502":"[Karla] Karla's Gloves","51503":"[Karla] Karla's Trousers","51504":"[Karla] Karla's Ashes","51600":"[Irina of Carim] Tower Key","51601":"[Irina of Carim] Irina's Ashes","51700":"[Eygon of Carim] Morne's Great Hammer","51701":"[Eygon of Carim] Moaning Shield","51900":"[Anri of Astora #1] Anri's Straight Sword","51910":"[Anri of Astora #2] Anri's Straight Sword","51911":"[Anri of Astora #2] Ring of the Evil Eye","52000":"[Unbreakable Patches #1] Winged Spear","52001":"[Unbreakable Patches #1] Horsehoof Ring","52002":"[Unbreakable Patches #1] Patches' Ashes","52010":"[Unbreakable Patches #2] Horsehoof Ring","52011":"[Unbreakable Patches #2] Patches' Ashes","52020":"[Unbreakable Patches #3] Pierce Shield","52021":"[Unbreakable Patches #3] Catarina Helm","52022":"[Unbreakable Patches #3] Catarina Armor","52023":"[Unbreakable Patches #3] Catarina Gauntlets","52024":"[Unbreakable Patches #3] Catarina Leggings","52100":"[Siegward of Catarina #1] Catarina Helm","52101":"[Siegward of Catarina #1] Catarina Armor","52102":"[Siegward of Catarina #1] Catarina Gauntlets","52103":"[Siegward of Catarina #1] Catarina Leggings","52104":"[Siegward of Catarina #1] Storm Ruler","52105":"[Siegward of Catarina #1] Pierce Shield","52110":"[Siegward of Catarina #2] Catarina Helm","52111":"[Siegward of Catarina #2] Catarina Armor","52112":"[Siegward of Catarina #2] Catarina Gauntlets","52113":"[Siegward of Catarina #2] Catarina Leggings","52114":"[Siegward of Catarina #2] Storm Ruler","52115":"[Siegward of Catarina #2] Pierce Shield","52116":"[Siegward of Catarina #3] Titanite Slab","52300":"[High Priestess Emma] Small Lothric Banner","52301":"[High Priestess Emma] Way of Blue","52302":"[High Priestess Emma] Basin of Vows","52500":"[Giant] Hawk Ring","52600":"[Horace the Hushed] Blue Sentinels","52601":"[Horace the Hushed] Llewellyn Shield","53000":"[Londor Pilgrim] Chameleon","53010":"[Londor Pilgrim] Sword of Avowal","53011":"[Londor Pilgrim] Chameleon","53100":"[Drowsy Forlorn] Homeward Bone","55200":"[Sir Vilhelm] Contraption Key","55201":"[Sir Vilhelm] Onyx Blade","55400":"[Forlorn Corvian Settler] Titanite Slab","55500":"[Sister Friede] Chillbite Ring","56200":"[Amnesiac Lapp #1] Champion's Bones","56210":"[Amnesiac Lapp #2] Siegbräu","56211":"[Amnesiac Lapp #2] Champion's Bones","56220":"[Amnesiac Lapp #3] Siegbräu","56221":"[Amnesiac Lapp #3] Champion's Bones","56230":"[Amnesiac Lapp #4] Siegbräu","56231":"[Amnesiac Lapp #4] Champion's Bones","56240":"[Amnesiac Lapp #5] Siegbräu","56241":"[Amnesiac Lapp #5] Champion's Bones","56250":"[Amnesiac Lapp #6] Titanite Slab","56251":"[Amnesiac Lapp #6] Siegbräu","56252":"[Amnesiac Lapp #6] Champion's Bones","56300":"[Shira, Knight of Filianore #1] Sacred Chime of Filianore","56301":"[Shira, Knight of Filianore #1] Titanite Slab","56302":"[Shira, Knight of Filianore #1] Crucifix of the Mad King","56310":"[Shira, Knight of Filianore #2] Sacred Chime of Filianore","56311":"[Shira, Knight of Filianore #2] Titanite Slab","56312":"[Shira, Knight of Filianore #2] Crucifix of the Mad King","56600":"[Stone-humped Hag] Old Woman's Ashes","57000":"[Black Hand Gotthard] Grand Archives Key","57001":"[Black Hand Gotthard] Gotthard Twinswords","57010":"[Black Hand Kamui] Onikiri and Ubadachi","57100":"[Havel the Rock] Dragon Tooth","57101":"[Havel the Rock] Havel's Greatshield","57200":"[Sword Master] Uchigatana","57201":"[Sword Master] Master's Attire","57202":"[Sword Master] Master's Gloves","57300":"[Brigand] Spider Shield","57400":"[Drakeblood Knight] Drakeblood Greatsword","57500":"[Rapier Champion] Ricard's Rapier","57600":"[Exile Watchdog] Exile Greatsword","57700":"[Exile Watchdog] Great Club","57800":"[Yellowfinger Heysel] Heysel Pick","57801":"[Yellowfinger Heysel] Xanthous Crown","57900":"[Londor Pale Shade] Manikin Claws","58000":"[Lion Knight Albert] Golden Wing Crest Shield","58100":"[Daughter of Crystal Kriemhild] Sage's Crystal Staff","58200":"[Court Sorcerer] Logan's Scroll","58300":"[Drang Knight] Drang Twinspears","58400":"[Knight Slayer Tsorig #1] Knight Slayer's Ring","58410":"[Knight Slayer Tsorig #2] Knight Slayer's Ring","58411":"[Knight Slayer Tsorig #2] Fume Ultra Greatsword","58412":"[Knight Slayer Tsorig #2] Black Iron Greatshield","58500":"[Creighton the Wanderer] Dragonslayer's Axe","58600":"[Alva, Seeker of the Spurned] Murakumo","58700":"[Longfinger Kirk] Barbed Straight Sword","58701":"[Longfinger Kirk] Spiked Shield","58800":"[Isabella the Mad] Butcher Knife","59200":"[Livid Pyromancer Dunnel] Floating Chaos","59300":"[Shira, Knight of Filianore] Crucifix of the Mad King","59400":"[Unk] White Birch Bow","59500":"[Desert Pyromancer Zoey] Flame Fan","59600":"[Silver Knight Ledo] Ledo's Great Hammer","59700":"[Alva, Seeker of the Spurned] Wolf Ring+3","59800":"[Moaning Knight] Blindfold Mask","60200":"[Untended Graves] Eyes of a Fire Keeper","60300":"[Smouldering Lake] Anri's Straight Sword","60310":"[Ludleth of Courland] Twin Princes' Greatsword","60400":"[Yuria of Londor] Morion Blade","60410":"[Yuria of Londor] Darkdrift - Lord of Hollow reward","60411":"[Yuria of Londor] Billed Mask - Lord of Hollow reward","60412":"[Yuria of Londor] Black Dress - Lord of Hollow reward","60413":"[Yuria of Londor] Black Gauntlets - Lord of Hollow reward","60414":"[Yuria of Londor] Black Leggings - Lord of Hollow reward","60600":"[Covenant] Blade of the Darkmoon","60610":"[Covenant] Darkmoon Ring","60620":"[Covenant] Darkmoon Blade","60630":"[Covenant] Darkmoon Ring","60631":"[Covenant] Darkmoon Blade","60640":"Kukri","60700":"Heavy Gem","60703":"Heavy Gem","60705":"INVALID","60710":"[Archdragon Peak] Twinkling Dragon Torso Stone - Pray at Altar","60711":"[Hawkwood] Twinkling Dragon Head Stone","60720":"[Hawkwood] Farron Ring","60730":"[Hawkwood] Hawkwood's Shield","60800":"[Sirris of the Sunless Realms] Sunless Talisman","60804":"[Sirris of the Sunless Realms] Sunless Talisman","60805":"[Sirris of the Sunless Realms] Blessed Mail Breaker","60806":"[Sirris of the Sunless Realms] Silvercat Ring","60810":"[Sirris of the Sunless Realms] Sunset Shield","60830":"[Sirris of the Sunless Realms] Sunset Helm","60831":"[Sirris of the Sunless Realms] Sunset Armor","60832":"[Sirris of the Sunless Realms] Sunset Gauntlets","60833":"[Sirris of the Sunless Realms] Sunset Leggings","60900":"[Ringfinger Leonhard] Cracked Red Eye Orb","60910":"[Ringfinger Leonhard] Lift Chamber Key","60920":"[Ringfinger Leonhard] Black Eye Orb","60930":"[Ringfinger Leonhard] Soul of Rosaria","60931":"[Ringfinger Leonhard] Crescent Moon Sword","60932":"[Ringfinger Leonhard] Silver Mask","60940":"[Ringfinger Leonhard] Red Eye Orb","61000":"[Andre] Hawkwood's Swordgrass","61200":"[Greirat of the Undead Settlement] Blue Tearstone Ring","61300":"[Orbeck of Vinheim] Young Dragon Ring","61310":"[Orbeck of Vinheim] Slumbering Dragoncrest Ring","61400":"[Cornyx of the Great Swamp] Pyromancy Flame","61600":"[Undead Settlement] Saint's Talisman","61610":"[Cathedral of the Deep] Deep Braille Divine Tome - Mimic drop","61611":"[Yuria of Londor] Londor Braille Divine Tome","61900":"[Anri of Astora] Ring of the Evil Eye","61930":"[Yoel of Londor] Dark Sigil","62000":"Rusted Coin","62010":"Rusted Gold Coin","62100":"[Siegward of Catarina] Siegbräu","62103":"[Siegward of Catarina] Siegbräu","62105":"[Siegward of Catarina] Siegbräu","62110":"[Siegward of Catarina] Kukri","62120":"[Siegward of Catarina] Emit Force","62130":"[Siegward of Catarina] Titanite Slab","62140":"[Siegward of Catarina] Storm Ruler","62141":"[Siegward of Catarina] Titanite Slab","62300":"[High Priestess Emma] Small Lothric Banner","62310":"[High Priestess Emma] Way of Blue","62320":"[High Priestess Emma] Basin of Vows","62500":"[Giant] Young White Branch","62510":"[Giant] Hawk Ring","62600":"[Horace the Hushed] Blue Sentinels","62700":"EMPTY","63010":"[Londor Pilgrim] Sword of Avowal","63100":"[Holy Knight Hodrick] Mound-makers","63110":"[Holy Knight Hodrick] Homeward Bone","65400":"[Forlorn Corvian Settler] Titanite Slab","65500":"[Sister Friede] Chillbite Ring","66200":"[Amnesiac Lapp] Siegbräu","66210":"[Amnesiac Lapp] Titanite Slab","66220":"[Amnesiac Lapp] Siegbräu","66230":"[Amnesiac Lapp] Champion's Bones","66231":"[Amnesiac Lapp] Lapp's Helm","66232":"[Amnesiac Lapp] Lapp's Armor","66233":"[Amnesiac Lapp] Lapp's Gauntlets","66234":"[Amnesiac Lapp] Lapp's Leggings","66300":"[Shira, Knight of Filianore] Sacred Chime of Filianore","66310":"[Shira, Knight of Filianore] Titanite Slab","66311":"[Shira, Knight of Filianore] Sacred Chime of Filianore","3000000":"[High Wall of Lothric] Estus Shard","3000010":"[High Wall of Lothric] Green Blossom","3000020":"[High Wall of Lothric] Gold Pine Resin","3000030":"[High Wall of Lothric] Large Soul of a Deserted Corpse","3000040":"[High Wall of Lothric] Soul of a Deserted Corpse","3000060":"[High Wall of Lothric] Longbow","3000061":"[High Wall of Lothric] Standard Arrow","3000070":"[High Wall of Lothric] Firebomb","3000090":"[High Wall of Lothric] Throwing Knife","3000110":"[High Wall of Lothric] Soul of a Deserted Corpse","3000120":"[High Wall of Lothric] Club","3000130":"[High Wall of Lothric] Claymore","3000140":"[High Wall of Lothric] Ember","3000150":"[High Wall of Lothric] Firebomb","3000160":"[High Wall of Lothric] Titanite Shard","3000170":"[High Wall of Lothric] Undead Hunter Charm","3000180":"[High Wall of Lothric] Firebomb","3000210":"[High Wall of Lothric] Cell Key","3000230":"[High Wall of Lothric] Ember","3000240":"[High Wall of Lothric] Soul of a Deserted Corpse","3000250":"[High Wall of Lothric] Lucerne","3000270":"[High Wall of Lothric] Mail Breaker","3000280":"[High Wall of Lothric] Titanite Shard","3000290":"[High Wall of Lothric] Rapier","3000300":"[High Wall of Lothric] Titanite Shard","3000310":"[High Wall of Lothric] Large Soul of a Deserted Corpse","3000320":"[High Wall of Lothric] Black Firebomb","3000340":"[High Wall of Lothric] Soul of a Deserted Corpse","3000360":"[High Wall of Lothric] Ember","3000370":"[High Wall of Lothric] Large Soul of a Deserted Corpse","3000380":"[High Wall of Lothric] Binoculars","3000390":"[High Wall of Lothric] Ring of Sacrifice","3000400":"[High Wall of Lothric] Throwing Knife","3000410":"[High Wall of Lothric] Soul of a Deserted Corpse","3000420":"[High Wall of Lothric] Green Blossom","3000430":"[Consumed King's Garden] Shadow Mask","3000431":"[Consumed King's Garden] Shadow Garb","3000432":"[Consumed King's Garden] Shadow Gauntlets","3000433":"[Consumed King's Garden] Shadow Leggings","3000440":"[High Wall of Lothric] Broadsword","3000450":"[High Wall of Lothric] Soul of a Deserted Corpse","3000470":"[High Wall of Lothric] Black Firebomb","3000480":"[Consumed King's Garden] Claw","3000490":"[Consumed King's Garden] Large Titanite Shard","3000500":"[Consumed King's Garden] Dragonscale Ring","3000510":"[Consumed King's Garden] Human Pine Resin","3000520":"[Consumed King's Garden] Titanite Chunk","3000530":"[Consumed King's Garden] Titanite Chunk","3000540":"[Consumed King's Garden] Soul of a Weary Warrior","3000550":"[Consumed King's Garden] Dark Gem","3000570":"[Consumed King's Garden] Refined Gem","3000580":"[Consumed King's Garden] Firebomb","3000610":"[Consumed King's Garden] Soul of a Deserted Corpse","3000620":"[Consumed King's Garden] Human Pine Resin","3000630":"[Consumed King's Garden] Titanite Chunk","3000640":"[Consumed King's Garden] Ring of Sacrifice","3000650":"[High Wall of Lothric] Estus Shard","3000700":"[High Wall of Lothric] Fleshbite Ring+1","3000710":"[High Wall of Lothric] Wood Grain Ring+1","3000720":"[High Wall of Lothric] Ring of the Evil Eye+2","3000730":"[Consumed King's Garden] Sage Ring+2","3000800":"[Consumed King's Garden] Titanite Scale","3000820":"[High Wall of Lothric] Silver Eagle Kite Shield","3000830":"[High Wall of Lothric] Astora Straight Sword","3000840":"[Consumed King's Garden] Titanite Scale","3000950":"[Consumed King's Garden] Drakeblood Helm","3000951":"[Consumed King's Garden] Drakeblood Armor","3000952":"[Consumed King's Garden] Drakeblood Gauntlets","3000953":"[Consumed King's Garden] Drakeblood Leggings","3010000":"[Lothric Castle] Sniper Crossbow","3010001":"[Lothric Castle] Sniper Bolt","3010010":"[Lothric Castle] Titanite Scale","3010020":"[Lothric Castle] Titanite Chunk","3010030":"[Lothric Castle] Greatlance","3010040":"[Lothric Castle] Titanite Chunk","3010050":"[Lothric Castle] Titanite Chunk","3010060":"[Lothric Castle] Sacred Bloom Shield","3010070":"[Lothric Castle] Titanite Chunk","3010080":"[Lothric Castle] Refined Gem","3010090":"[Lothric Castle] Soul of a Crestfallen Knight","3010100":"[Lothric Castle] Undead Bone Shard","3010110":"[Lothric Castle] Lightning Urn","3010120":"[Lothric Castle] Titanite Chunk","3010130":"[Lothric Castle] Titanite Chunk","3010140":"[Lothric Castle] Titanite Chunk","3010150":"[Grand Archives] Caitha's Chime","3010160":"[Lothric Castle] Lightning Urn","3010170":"[Lothric Castle] Ember","3010180":"[Lothric Castle] Raw Gem","3010190":"[Lothric Castle] Black Firebomb","3010200":"[Lothric Castle] Pale Pine Resin","3010210":"[Lothric Castle] Large Soul of a Weary Warrior","3010220":"[Lothric Castle] Sunlight Medal","3010230":"[Lothric Castle] Soul of a Crestfallen Knight","3010240":"[Lothric Castle] Titanite Chunk","3010250":"[Lothric Castle] Titanite Scale","3010260":"[Lothric Castle] Large Soul of a Nameless Soldier","3010270":"[Lothric Castle] Knight's Ring","3010280":"[Lothric Castle] Ember","3010290":"[Lothric Castle] Large Soul of a Weary Warrior","3010300":"[Lothric Castle] Ember","3010310":"[Lothric Castle] Twinkling Titanite","3010320":"[Lothric Castle] Large Soul of a Nameless Soldier","3010330":"[Lothric Castle] Ember","3010340":"[Lothric Castle] Winged Knight Helm","3010341":"[Lothric Castle] Winged Knight Armor","3010342":"[Lothric Castle] Winged Knight Gauntlets","3010343":"[Lothric Castle] Winged Knight Leggings","3010350":"[Lothric Castle] Rusted Coin","3010360":"[Lothric Castle] Titanite Slab","3010370":"[Lothric Castle] Braille Divine Tome of Lothric","3010380":"[Lothric Castle] Red Tearstone Ring","3010400":"[Lothric Castle] Twinkling Titanite","3010420":"[Lothric Castle] Large Soul of a Nameless Soldier","3010500":"[Lothric Castle] Titanite Scale","3010520":"[Lothric Castle] Titanite Scale","3010530":"[Lothric Castle] Hood of Prayer","3010531":"[Lothric Castle] Robe of Prayer","3010532":"[Lothric Castle] Skirt of Prayer","3010600":"[Lothric Castle] Spirit Tree Crest Shield","3010610":"[Lothric Castle] Titanite Scale","3010620":"[Lothric Castle] Twinkling Titanite","3010640":"[Lothric Castle] Twinkling Titanite","3010700":"[Lothric Castle] Life Ring+2","3010710":"[Lothric Castle] Dark Stoneplate Ring+1","3010720":"[Lothric Castle] Thunder Stoneplate Ring+2","3100000":"[Undead Settlement] Flynn's Ring","3100010":"[Undead Settlement] Undead Bone Shard","3100020":"[Undead Settlement] Alluring Skull","3100030":"[Undead Settlement] Mortician's Ashes","3100040":"[Undead Settlement] Homeward Bone","3100050":"[Undead Settlement] Caduceus Round Shield","3100060":"[Undead Settlement] Ember","3100070":"[Undead Settlement] Soul of an Unknown Traveler","3100080":"[Undead Settlement] Repair Powder","3100090":"[Undead Settlement] Homeward Bone","3100100":"[Undead Settlement] Spotted Whip","3100101":"[Undead Settlement] Cornyx's Garb","3100102":"[Undead Settlement] Cornyx's Wrap","3100103":"[Undead Settlement] Cornyx's Skirt","3100110":"[Undead Settlement] Titanite Shard","3100120":"[Undead Settlement] Wargod Wooden Shield","3100130":"[Undead Settlement] Large Soul of a Deserted Corpse","3100140":"[Undead Settlement] Ember","3100150":"[Undead Settlement] Large Soul of a Deserted Corpse","3100160":"[Undead Settlement] Titanite Shard","3100170":"[Undead Settlement] Alluring Skull","3100180":"[Undead Settlement] Charcoal Pine Bundle","3100190":"[Undead Settlement] Blue Wooden Shield","3100191":"[Undead Settlement] Cleric Hat","3100192":"[Undead Settlement] Cleric Blue Robe","3100193":"[Undead Settlement] Cleric Gloves","3100194":"[Undead Settlement] Cleric Trousers","3100200":"[Undead Settlement] Soul of an Unknown Traveler","3100210":"[Undead Settlement] Charcoal Pine Resin","3100220":"[Undead Settlement] Loincloth","3100230":"[Undead Settlement] Charcoal Pine Bundle","3100240":"[Undead Settlement] Soul of an Unknown Traveler","3100250":"[Undead Settlement] Titanite Shard","3100260":"[Undead Settlement] Red Hilted Halberd","3100270":"[Undead Settlement] Rusted Coin","3100280":"[Undead Settlement] Caestus","3100300":"[Undead Settlement] Saint's Talisman","3100310":"[Undead Settlement] Alluring Skull","3100320":"[Undead Settlement] Large Club","3100330":"[Undead Settlement] Titanite Shard","3100340":"[Undead Settlement] Titanite Shard","3100350":"[Undead Settlement] Fading Soul","3100360":"[Undead Settlement] Titanite Shard","3100370":"[Undead Settlement] Hand Axe","3100380":"[Undead Settlement] Soul of an Unknown Traveler","3100390":"[Undead Settlement] Ember","3100400":"[Undead Settlement] Mirrah Vest","3100401":"[Undead Settlement] Mirrah Gloves","3100402":"[Undead Settlement] Mirrah Trousers","3100410":"[Undead Settlement] Plank Shield","3100420":"[Undead Settlement] Red Bug Pellet","3100430":"[Undead Settlement] Chloranthy Ring","3100440":"[Undead Settlement] Fire Clutch Ring","3100450":"[Undead Settlement] Estus Shard","3100460":"[Undead Settlement] Firebomb","3100490":"[Undead Settlement] Whip","3100500":"[Undead Settlement] Great Scythe","3100540":"[Undead Settlement] Homeward Bone","3100550":"[Undead Settlement] Large Soul of a Deserted Corpse","3100570":"[Undead Settlement] Ember","3100610":"[Undead Settlement] Large Soul of a Deserted Corpse","3100620":"[Undead Settlement] Fading Soul","3100630":"[Undead Settlement] Young White Branch","3100640":"[Undead Settlement] Ember","3100650":"[Undead Settlement] Large Soul of a Deserted Corpse","3100660":"[Undead Settlement] Young White Branch","3100670":"[Undead Settlement] Reinforced Club","3100680":"[Undead Settlement] Soul of a Nameless Soldier","3100700":"[Undead Settlement] Loretta's Bone","3100710":"[Undead Settlement] Northern Helm","3100711":"[Undead Settlement] Northern Armor","3100712":"[Undead Settlement] Northern Gloves","3100713":"[Undead Settlement] Northern Trousers","3100720":"[Undead Settlement] Partizan","3100730":"[Undead Settlement] Flame Stoneplate Ring","3100740":"[Undead Settlement] Red and White Round Shield","3100750":"[Undead Settlement] Small Leather Shield","3100760":"[Undead Settlement] Pale Tongue","3100770":"[Undead Settlement] Large Soul of a Deserted Corpse","3100800":"[Undead Settlement] Kukri","3100850":"[Undead Settlement] Life Ring+1","3100860":"[Undead Settlement] Poisonbite Ring+1","3100870":"[Undead Settlement] Covetous Silver Serpent Ring+2","3100910":"[Undead Settlement] Human Pine Resin","3100950":"[Undead Settlement] Homeward Bone","3200000":"[Archdragon Peak] Lightning Clutch Ring","3200010":"[Archdragon Peak] Stalk Dung Pie","3200020":"[Archdragon Peak] Titanite Chunk","3200030":"[Archdragon Peak] Titanite Scale","3200040":"[Archdragon Peak] Soul of a Weary Warrior","3200050":"[Archdragon Peak] Titanite Chunk","3200060":"[Archdragon Peak] Lightning Gem","3200070":"[Archdragon Peak] Homeward Bone","3200080":"[Archdragon Peak] Soul of a Nameless Soldier","3200090":"[Archdragon Peak] Titanite Chunk","3200100":"[Archdragon Peak] Ember","3200110":"[Archdragon Peak] Large Soul of a Weary Warrior","3200120":"[Archdragon Peak] Large Soul of a Nameless Soldier","3200130":"[Archdragon Peak] Lightning Urn","3200140":"[Archdragon Peak] Lightning Bolt","3200150":"[Archdragon Peak] Titanite Chunk","3200160":"[Archdragon Peak] Dung Pie","3200170":"[Archdragon Peak] Titanite Scale","3200180":"[Archdragon Peak] Soul of a Weary Warrior","3200190":"[Archdragon Peak] Soul of a Crestfallen Knight","3200200":"[Archdragon Peak] Titanite Chunk","3200210":"[Archdragon Peak] Ember","3200220":"[Archdragon Peak] Thunder Stoneplate Ring","3200230":"[Archdragon Peak] Titanite Scale","3200240":"[Archdragon Peak] Ember","3200260":"[Archdragon Peak] Ancient Dragon Greatshield","3200270":"[Archdragon Peak] Large Soul of a Crestfallen Knight","3200280":"[Archdragon Peak] Dragon Chaser's Ashes","3200290":"[Archdragon Peak] Ember","3200300":"[Archdragon Peak] Dragonslayer Spear","3200310":"[Archdragon Peak] Dragonslayer Helm","3200311":"[Archdragon Peak] Dragonslayer Armor","3200312":"[Archdragon Peak] Dragonslayer Gauntlets","3200313":"[Archdragon Peak] Dragonslayer Leggings","3200330":"[Archdragon Peak] Twinkling Titanite","3200340":"[Archdragon Peak] Twinkling Titanite","3200350":"[Archdragon Peak] Titanite Slab","3200360":"[Archdragon Peak] Great Magic Barrier","3200370":"[Archdragon Peak] Titanite Slab","3200380":"[Archdragon Peak] Ring of Steel Protection","3200500":"[Archdragon Peak] Havel's Ring+1","3200510":"[Archdragon Peak] Covetous Gold Serpent Ring+2","3200700":"[Archdragon Peak] Titanite Scale","3200710":"[Archdragon Peak] Twinkling Titanite","3200900":"[Archdragon Peak] Twinkling Dragon Torso Stone","3200910":"[Archdragon Peak] Calamity Ring","3300000":"[Road of Sacrifices] Titanite Shard","3300010":"[Road of Sacrifices] Titanite Shard","3300020":"[Road of Sacrifices] Green Blossom","3300030":"[Road of Sacrifices] Estus Shard","3300040":"[Road of Sacrifices] Ring of Sacrifice","3300050":"[Road of Sacrifices] Soul of an Unknown Traveler","3300060":"[Road of Sacrifices] Fallen Knight Helm","3300061":"[Road of Sacrifices] Fallen Knight Armor","3300062":"[Road of Sacrifices] Fallen Knight Gauntlets","3300063":"[Road of Sacrifices] Fallen Knight Trousers","3300070":"[Road of Sacrifices] Heretic's Staff","3300080":"[Road of Sacrifices] Large Soul of an Unknown Traveler","3300090":"[Road of Sacrifices] Conjurator Hood","3300091":"[Road of Sacrifices] Conjurator Robe","3300092":"[Road of Sacrifices] Conjurator Manchettes","3300093":"[Road of Sacrifices] Conjurator Boots","3300100":"[Road of Sacrifices] Soul of an Unknown Traveler","3300110":"[Road of Sacrifices] Green Blossom","3300120":"[Road of Sacrifices] Great Swamp Pyromancy Tome","3300130":"[Road of Sacrifices] Homeward Bone","3300140":"[Road of Sacrifices] Titanite Shard","3300150":"[Road of Sacrifices] Purple Moss Clump","3300160":"[Road of Sacrifices] Purple Moss Clump","3300170":"[Road of Sacrifices] Greatsword","3300180":"[Road of Sacrifices] Twin Dragon Greatshield","3300190":"[Road of Sacrifices] Hollow Gem","3300210":"[Road of Sacrifices] Fading Soul","3300220":"[Road of Sacrifices] Sorcerer Hood","3300221":"[Road of Sacrifices] Sorcerer Robe","3300222":"[Road of Sacrifices] Sorcerer Gloves","3300223":"[Road of Sacrifices] Sorcerer Trousers","3300230":"[Road of Sacrifices] Sage Ring","3300240":"[Road of Sacrifices] Purple Moss Clump","3300270":"[Road of Sacrifices] Undead Bone Shard","3300280":"[Road of Sacrifices] Atonement","3300290":"[Road of Sacrifices] Titanite Shard","3300300":"[Road of Sacrifices] Iron Flesh","3300310":"[Road of Sacrifices] Grass Crest Shield","3300320":"[Road of Sacrifices] Stone Parma","3300340":"[Road of Sacrifices] Rotten Pine Resin","3300350":"[Road of Sacrifices] Titanite Shard","3300360":"[Road of Sacrifices] Rusted Gold Coin","3300370":"[Road of Sacrifices] Nameless Knight Helm","3300371":"[Road of Sacrifices] Nameless Knight Armor","3300372":"[Road of Sacrifices] Nameless Knight Gauntlets","3300373":"[Road of Sacrifices] Nameless Knight Leggings","3300380":"[Road of Sacrifices] Shriving Stone","3300390":"[Road of Sacrifices] Repair Powder","3300400":"[Road of Sacrifices] Golden Scroll","3300410":"[Road of Sacrifices] Sage's Scroll","3300420":"[Road of Sacrifices] Dreamchaser's Ashes","3300430":"[Road of Sacrifices] Titanite Shard","3300440":"[Road of Sacrifices] Wolf's Blood Swordgrass","3300450":"[Road of Sacrifices] Great Magic Weapon","3300460":"[Road of Sacrifices] Ember","3300470":"[Road of Sacrifices] Titanite Shard","3300480":"[Road of Sacrifices] Titanite Shard","3300490":"[Road of Sacrifices] Titanite Shard","3300500":"[Road of Sacrifices] Black Bug Pellet","3300510":"[Road of Sacrifices] Rotten Pine Resin","3300520":"[Road of Sacrifices] Poison Gem","3300525":"[Road of Sacrifices] Ragged Mask","3300530":"[Road of Sacrifices] Estus Shard","3300535":"[Road of Sacrifices] Homeward Bone","3300540":"[Road of Sacrifices] Titanite Shard","3300545":"[Road of Sacrifices] Large Soul of a Nameless Soldier","3300550":"[Road of Sacrifices] Prism Stone","3300555":"[Road of Sacrifices] Large Soul of a Nameless Soldier","3300560":"[Road of Sacrifices] Ember","3300570":"[Road of Sacrifices] Sage's Coal","3300580":"[Road of Sacrifices] Lightning Spear","3300590":"[Road of Sacrifices] Blue Bug Pellet","3300600":"[Road of Sacrifices] Soul of an Unknown Traveler","3300610":"[Road of Sacrifices] Shriving Stone","3300620":"[Road of Sacrifices] Titanite Shard","3300630":"[Road of Sacrifices] Brigand Twindaggers","3300640":"[Road of Sacrifices] Braille Divine Tome of Carim","3300650":"[Road of Sacrifices] Ember","3300680":"[Road of Sacrifices] Gold Pine Bundle","3300690":"[Road of Sacrifices] Ember","3300700":"[Road of Sacrifices] Soul of a Nameless Soldier","3300710":"[Road of Sacrifices] Large Soul of an Unknown Traveler","3300720":"[Road of Sacrifices] Sellsword Twinblades","3300730":"[Road of Sacrifices] Golden Falcon Shield","3300740":"[Road of Sacrifices] Herald Helm","3300741":"[Road of Sacrifices] Herald Armor","3300742":"[Road of Sacrifices] Herald Gloves","3300743":"[Road of Sacrifices] Herald Trousers","3300750":"[Road of Sacrifices] Brigand Axe","3300760":"[Road of Sacrifices] Brigand Hood","3300761":"[Road of Sacrifices] Brigand Armor","3300762":"[Road of Sacrifices] Brigand Gauntlets","3300763":"[Road of Sacrifices] Brigand Trousers","3300770":"[Road of Sacrifices] Morne's Ring","3300780":"[Road of Sacrifices] Sellsword Helm","3300781":"[Road of Sacrifices] Sellsword Armor","3300782":"[Road of Sacrifices] Sellsword Gauntlet","3300783":"[Road of Sacrifices] Sellsword Trousers","3300790":"[Road of Sacrifices] Farron Coal","3300800":"[Farron Keep] Havel's Helm","3300801":"[Farron Keep] Havel's Armor","3300802":"[Farron Keep] Havel's Gauntlets","3300803":"[Farron Keep] Havel's Leggings","3300810":"[Farron Keep] Greataxe","3300820":"[Farron Keep] Speckled Stoneplate Ring","3300830":"[Farron Keep] Ember","3300840":"[Farron Keep] Dragon Crest Shield","3300850":"[Farron Keep] Dark Stoneplate Ring+2","3300860":"[Farron Keep] Chloranthy Ring+2","3300870":"[Farron Keep] Lingering Dragoncrest Ring+1","3300880":"[Farron Keep] Magic Stoneplate Ring+1","3300890":"[Farron Keep] Wolf Ring+1","3300940":"[Farron Keep] Antiquated Dress","3300941":"[Farron Keep] Antiquated Gloves","3300942":"[Farron Keep] Antiquated Skirt","3300950":"[Farron Keep] Sunlight Talisman","3300960":"[Farron Keep] Young White Branch","3300970":"[Farron Keep] Young White Branch","3300980":"[Farron Keep] Crown of Dusk","3410000":"[Grand Archives] Titanite Chunk","3410010":"[Grand Archives] Titanite Chunk","3410020":"[Grand Archives] Soul of a Crestfallen Knight","3410030":"[Grand Archives] Titanite Chunk","3410040":"[Grand Archives] Fleshbite Ring","3410060":"[Grand Archives] Soul of a Crestfallen Knight","3410070":"[Grand Archives] Soul of a Nameless Soldier","3410080":"[Grand Archives] Crystal Chime","3410090":"[Grand Archives] Titanite Scale","3410100":"[Grand Archives] Estus Shard","3410110":"[Grand Archives] Homeward Bone","3410120":"[Grand Archives] Titanite Scale","3410130":"[Grand Archives] Titanite Chunk","3410140":"[Grand Archives] Hollow Gem","3410150":"[Grand Archives] Titanite Scale","3410160":"[Grand Archives] Titanite Scale","3410180":"[Grand Archives] Titanite Scale","3410200":"[Grand Archives] Shriving Stone","3410210":"[Grand Archives] Large Soul of a Crestfallen Knight","3410220":"[Grand Archives] Titanite Chunk","3410240":"[Grand Archives] Titanite Scale","3410250":"[Grand Archives] Titanite Chunk","3410260":"[Grand Archives] Soul of a Weary Warrior","3410280":"[Grand Archives] Titanite Chunk","3410290":"[Grand Archives] Ember","3410300":"[Grand Archives] Blessed Gem","3410320":"[Grand Archives] Titanite Chunk","3410330":"[Grand Archives] Large Soul of a Crestfallen Knight","3410350":"[Grand Archives] Avelyn","3410360":"[Grand Archives] Titanite Chunk","3410370":"[Grand Archives] Hunter's Ring","3410380":"[Grand Archives] Divine Pillars of Light","3410410":"[Grand Archives] Titanite Chunk","3410420":"[Grand Archives] Power Within","3410450":"[Grand Archives] Sage Ring+1","3410470":"[Grand Archives] Lingering Dragoncrest Ring+2","3410500":"[Grand Archives] Divine Blessing","3410510":"[Grand Archives] Twinkling Titanite","3410520":"[Grand Archives] Witch's Locks","3410530":"[Grand Archives] Titanite Slab","3410540":"[Grand Archives] Titanite Scale","3410600":"[Grand Archives] Soul Stream","3410610":"[Grand Archives] Scholar Ring","3410620":"[Grand Archives] Undead Bone Shard","3500000":"[Cathedral of the Deep] Notched Whip","3500010":"[Cathedral of the Deep] Titanite Shard","3500020":"[Cathedral of the Deep] Astora Greatsword","3500030":"[Cathedral of the Deep] Executioner's Greatsword","3500040":"[Cathedral of the Deep] Undead Bone Shard","3500050":"[Cathedral of the Deep] Curse Ward Greatshield","3500060":"[Cathedral of the Deep] Titanite Shard","3500070":"[Cathedral of the Deep] Large Soul of an Unknown Traveler","3500080":"[Cathedral of the Deep] Paladin's Ashes","3500090":"[Cathedral of the Deep] Arbalest","3500110":"[Cathedral of the Deep] Ember","3500130":"[Cathedral of the Deep] Ember","3500140":"[Cathedral of the Deep] Poisonbite Ring","3500150":"[Cathedral of the Deep] Drang Armor","3500160":"[Cathedral of the Deep] Ember","3500170":"[Cathedral of the Deep] Duel Charm","3500180":"[Cathedral of the Deep] Seek Guidance","3500200":"[Cathedral of the Deep] Estus Shard","3500210":"[Cathedral of the Deep] Maiden Hood","3500211":"[Cathedral of the Deep] Maiden Robe","3500212":"[Cathedral of the Deep] Maiden Gloves","3500213":"[Cathedral of the Deep] Maiden Skirt","3500220":"[Cathedral of the Deep] Pale Tongue","3500230":"[Cathedral of the Deep] Fading Soul","3500240":"[Cathedral of the Deep] Blessed Gem","3500260":"[Cathedral of the Deep] Red Bug Pellet","3500270":"[Cathedral of the Deep] Soul of a Nameless Soldier","3500280":"[Cathedral of the Deep] Duel Charm","3500300":"[Cathedral of the Deep] Large Soul of an Unknown Traveler","3500310":"[Cathedral of the Deep] Ember","3500320":"[Cathedral of the Deep] Repair Powder","3500330":"[Cathedral of the Deep] Large Soul of an Unknown Traveler","3500340":"[Cathedral of the Deep] Large Soul of an Unknown Traveler","3500370":"[Cathedral of the Deep] Undead Hunter Charm","3500380":"[Cathedral of the Deep] Red Bug Pellet","3500390":"[Cathedral of the Deep] Titanite Shard","3500400":"[Cathedral of the Deep] Titanite Shard","3500420":"[Cathedral of the Deep] Rusted Coin","3500430":"[Cathedral of the Deep] Drang Hammers","3500450":"[Cathedral of the Deep] Drang Shoes","3500460":"[Cathedral of the Deep] Large Soul of an Unknown Traveler","3500470":"[Cathedral of the Deep] Pale Tongue","3500480":"[Cathedral of the Deep] Drang Gauntlets","3500490":"[Cathedral of the Deep] Soul of a Nameless Soldier","3500500":"[Cathedral of the Deep] Helm of Thorns","3500501":"[Cathedral of the Deep] Armor of Thorns","3500502":"[Cathedral of the Deep] Gauntlets of Thorns","3500503":"[Cathedral of the Deep] Leggings of Thorns","3500540":"[Cathedral of the Deep] Exploding Bolt","3500550":"[Cathedral of the Deep] Lloyd's Sword Ring","3500560":"[Cathedral of the Deep] Soul of a Nameless Soldier","3500620":"[Cathedral of the Deep] Homeward Bone","3500630":"[Cathedral of the Deep] Deep Gem","3500680":"[Cathedral of the Deep] Titanite Shard","3500690":"[Cathedral of the Deep] Large Soul of an Unknown Traveler","3500800":"[Cathedral of the Deep] Ring of the Evil Eye+1","3500810":"[Cathedral of the Deep] Ring of Favor+2","3500850":"[Cathedral of the Deep] Crest Shield","3500860":"[Cathedral of the Deep] Young White Branch","3500870":"[Cathedral of the Deep] Young White Branch","3500880":"[Cathedral of the Deep] Saint-tree Bellvine","3500890":"[Cathedral of the Deep] Saint Bident","3500950":"[Cathedral of the Deep] Archdeacon White Crown","3500951":"[Cathedral of the Deep] Archdeacon Holy Garb","3500952":"[Cathedral of the Deep] Archdeacon Skirt","3600000":"Large Soul of an Unknown Traveler","3600010":"Large Soul of an Unknown Traveler","3600020":"Large Soul of an Unknown Traveler","3600030":"Large Soul of an Unknown Traveler","3600040":"Large Soul of an Unknown Traveler","3600050":"Large Soul of an Unknown Traveler","3600060":"Large Soul of an Unknown Traveler","3600070":"Large Soul of an Unknown Traveler","3600080":"Large Soul of an Unknown Traveler","3600090":"Large Soul of an Unknown Traveler","3700000":"[Irithyll] Creighton's Steel Mask","3700001":"[Irithyll] Mirrah Chain Mail","3700002":"[Irithyll] Mirrah Chain Gloves","3700003":"[Irithyll] Mirrah Chain Leggings","3700010":"[Irithyll] Homeward Bone","3700020":"[Irithyll] Large Soul of a Nameless Soldier","3700030":"[Irithyll] Large Titanite Shard","3700040":"[Irithyll] Soul of a Weary Warrior","3700050":"[Irithyll] Soul of a Weary Warrior","3700060":"[Irithyll] Rime-blue Moss Clump","3700070":"[Irithyll] Witchtree Branch","3700080":"[Irithyll] Large Titanite Shard","3700090":"[Irithyll] Estus Shard","3700100":"[Irithyll] Budding Green Blossom","3700110":"[Irithyll] Rime-blue Moss Clump","3700120":"[Irithyll] Large Titanite Shard","3700130":"[Irithyll] Large Titanite Shard","3700140":"[Irithyll] Ring of the Sun's First Born","3700150":"[Irithyll] Large Soul of a Nameless Soldier","3700160":"[Irithyll] Large Titanite Shard","3700170":"[Irithyll] Large Titanite Shard","3700180":"[Irithyll] Soul of a Weary Warrior","3700190":"[Irithyll] Magic Clutch Ring","3700200":"[Irithyll] Fading Soul","3700210":"[Irithyll] Fading Soul","3700220":"[Anor Londo] Painting Guardian's Curved Sword","3700230":"[Irithyll] Homeward Bone","3700240":"[Irithyll] Undead Bone Shard","3700250":"[Irithyll] Kukri","3700260":"[Irithyll] Rusted Gold Coin","3700270":"[Irithyll] Brass Helm","3700271":"[Irithyll] Brass Armor","3700272":"[Irithyll] Brass Gauntlets","3700273":"[Irithyll] Brass Leggings","3700280":"[Irithyll] Blue Bug Pellet","3700290":"[Irithyll] Shriving Stone","3700300":"[Irithyll] Human Dregs","3700310":"[Irithyll] Roster of Knights","3700320":"[Irithyll] Blood Gem","3700330":"[Irithyll] Green Blossom","3700340":"[Irithyll] Ring of Sacrifice","3700350":"[Irithyll] Great Heal","3700360":"[Irithyll] Large Soul of a Nameless Soldier","3700370":"[Irithyll] Green Blossom","3700380":"[Irithyll] Dung Pie","3700390":"[Irithyll] Dung Pie","3700400":"[Irithyll] Excrement-covered Ashes","3700410":"[Irithyll] Ember","3700420":"[Irithyll] Large Titanite Shard","3700430":"[Irithyll] Large Soul of a Nameless Soldier","3700440":"[Irithyll] Soul of a Weary Warrior","3700450":"[Irithyll] Large Titanite Shard","3700460":"[Irithyll] Blue Bug Pellet","3700470":"[Irithyll] Ember","3700480":"[Irithyll] Large Titanite Shard","3700490":"[Irithyll] Large Titanite Shard","3700500":"[Irithyll] Soul of a Weary Warrior","3700510":"[Irithyll] Ember","3700520":"[Irithyll] Ember","3700530":"[Irithyll] Large Titanite Shard","3700540":"[Irithyll] Dark Stoneplate Ring","3700550":"[Irithyll] Large Titanite Shard","3700560":"[Irithyll] Green Blossom","3700600":"[Irithyll] Deep Gem","3700610":"[Irithyll] Titanite Scale","3700620":"[Irithyll] Dragonslayer Greatbow","3700621":"[Irithyll] Dragonslayer Greatarrow","3700630":"[Irithyll] Easterner's Ashes","3700640":"[Anor Londo] Painting Guardian Hood","3700641":"[Anor Londo] Painting Guardian Gown","3700642":"[Anor Londo] Painting Guardian Gloves","3700643":"[Anor Londo] Painting Guardian Waistcloth","3700660":"[Anor Londo] Soul of a Crestfallen Knight","3700670":"[Irithyll] Lightning Gem","3700690":"[Anor Londo] Moonlight Arrow","3700700":"[Irithyll] Proof of a Concord Kept","3700720":"[Irithyll] Large Soul of a Nameless Soldier","3700740":"[Irithyll] Soul of a Weary Warrior","3700750":"[Irithyll] Proof of a Concord Kept","3700760":"[Irithyll] Rusted Gold Coin","3700770":"[Irithyll] Large Soul of a Weary Warrior","3700800":"[Anor Londo] Giant's Coal","3700810":"[Irithyll] Chloranthy Ring+1","3700820":"[Irithyll] Havel's Ring+2","3700830":"[Irithyll] Ring of Favor+1","3700840":"[Irithyll] Sun Princess Ring","3700850":"[Irithyll] Covetous Gold Serpent Ring+1","3700860":"[Irithyll] Wood Grain Ring+2","3700900":"[Irithyll] Divine Blessing","3700920":"[Irithyll] Smough's Great Hammer","3700940":"[Irithyll] Reversal Ring","3700950":"[Irithyll] Yorshka's Spear","3700960":"[Irithyll] Leo Ring","3800000":"[Catacombs of Carthus] Carthus Rouge","3800010":"[Catacombs of Carthus] Sharp Gem","3800020":"[Catacombs of Carthus] Soul of a Nameless Soldier","3800030":"[Catacombs of Carthus] Titanite Shard","3800040":"[Catacombs of Carthus] Bloodred Moss Clump","3800050":"[Catacombs of Carthus] Carthus Milkring","3800060":"[Catacombs of Carthus] Ember","3800070":"[Catacombs of Carthus] Carthus Rouge","3800080":"[Catacombs of Carthus] Ember","3800090":"[Catacombs of Carthus] Carthus Bloodring","3800100":"[Catacombs of Carthus] Titanite Shard","3800110":"[Catacombs of Carthus] Titanite Shard","3800120":"[Catacombs of Carthus] Ember","3800130":"[Catacombs of Carthus] Carthus Pyromancy Tome","3800140":"[Catacombs of Carthus] Large Titanite Shard","3800150":"[Catacombs of Carthus] Large Titanite Shard","3800160":"[Catacombs of Carthus] Yellow Bug Pellet","3800170":"[Catacombs of Carthus] Large Soul of a Nameless Soldier","3800180":"[Catacombs of Carthus] Black Bug Pellet","3800190":"[Catacombs of Carthus] Grave Warden's Ashes","3800200":"[Catacombs of Carthus] Large Titanite Shard","3800210":"[Catacombs of Carthus] Large Titanite Shard","3800220":"[Catacombs of Carthus] Large Titanite Shard","3800230":"[Catacombs of Carthus] Large Titanite Shard","3800240":"[Catacombs of Carthus] Large Titanite Shard","3800250":"[Catacombs of Carthus] Large Titanite Shard","3800260":"[Catacombs of Carthus] Yellow Bug Pellet","3800270":"[Catacombs of Carthus] Large Titanite Shard","3800280":"[Catacombs of Carthus] Large Titanite Shard","3800290":"[Catacombs of Carthus] Large Titanite Shard","3800300":"[Catacombs of Carthus] Speckled Stoneplate Ring","3800310":"[Catacombs of Carthus] Homeward Bone","3800330":"[Catacombs of Carthus] Ember","3800340":"[Catacombs of Carthus] Chaos Gem","3800350":"[Catacombs of Carthus] Ember","3800360":"[Catacombs of Carthus] Izalith Pyromancy Tome","3800370":"[Catacombs of Carthus] Black Knight Sword","3800380":"[Catacombs of Carthus] Large Soul of a Nameless Soldier","3800390":"[Catacombs of Carthus] Old Sage's Blindfold","3800391":"[Catacombs of Carthus] Witch's Ring","3800400":"[Catacombs of Carthus] Ember","3800410":"[Catacombs of Carthus] Quelana Pyromancy Tome","3800420":"[Catacombs of Carthus] Izalith Staff","3800430":"[Catacombs of Carthus] White Hair Talisman","3800440":"[Catacombs of Carthus] Toxic Mist","3800450":"[Catacombs of Carthus] Undead Bone Shard","3800460":"[Catacombs of Carthus] Titanite Scale","3800470":"[Catacombs of Carthus] Soul of a Nameless Soldier","3800500":"[Catacombs of Carthus] Grave Warden Pyromancy Tome","3800510":"[Catacombs of Carthus] Grave Warden Pyromancy Tome","3800520":"[Catacombs of Carthus] Shield of Want","3800530":"[Catacombs of Carthus] Soul of a Crestfallen Knight","3800540":"[Catacombs of Carthus] Ember","3800560":"[Catacombs of Carthus] Sacred Flame","3800570":"[Catacombs of Carthus] Large Soul of an Unknown Traveler","3800580":"[Catacombs of Carthus] Dragonrider Bow","3800590":"[Catacombs of Carthus] Estus Shard","3800600":"[Catacombs of Carthus] Ring of Steel Protection+2","3800610":"[Catacombs of Carthus] Thunder Stoneplate Ring+1","3800620":"[Catacombs of Carthus] Bloodbite Ring+1","3800630":"[Catacombs of Carthus] Flame Stoneplate Ring+2","3800760":"[Catacombs of Carthus] Large Titanite Shard","3800900":"[Catacombs of Carthus] Undead Bone Shard","3800910":"[Catacombs of Carthus] Dark Gem","3900000":"[Irithyll Dungeon] Large Titanite Shard","3900010":"[Irithyll Dungeon] Fading Soul","3900030":"[Irithyll Dungeon] Large Soul of a Nameless Soldier","3900040":"[Irithyll Dungeon] Jailbreaker's Key","3900050":"[Irithyll Dungeon] Pale Pine Resin","3900060":"[Irithyll Dungeon] Simple Gem","3900070":"[Irithyll Dungeon] Large Soul of a Nameless Soldier","3900080":"[Irithyll Dungeon] Large Titanite Shard","3900090":"[Irithyll Dungeon] Homeward Bone","3900100":"[Irithyll Dungeon] Bellowing Dragoncrest Ring","3900110":"[Irithyll Dungeon] Soul of a Weary Warrior","3900120":"[Irithyll Dungeon] Soul of a Crestfallen Knight","3900130":"[Irithyll Dungeon] Alva Helm","3900131":"[Irithyll Dungeon] Alva Armor","3900132":"[Irithyll Dungeon] Alva Gauntlets","3900133":"[Irithyll Dungeon] Alva Leggings","3900140":"[Irithyll Dungeon] Lightning Bolt","3900150":"[Irithyll Dungeon] Large Titanite Shard","3900160":"[Irithyll Dungeon] Profaned Flame","3900180":"[Irithyll Dungeon] Large Titanite Shard","3900190":"[Irithyll Dungeon] Soul of a Weary Warrior","3900200":"[Irithyll Dungeon] Dung Pie","3900210":"[Irithyll Dungeon] Purging Stone","3900220":"[Irithyll Dungeon] Ember","3900230":"[Irithyll Dungeon] Ember","3900240":"[Irithyll Dungeon] Profaned Coal","3900250":"[Irithyll Dungeon] Large Titanite Shard","3900260":"[Irithyll Dungeon] Old Sorcerer Hat","3900261":"[Irithyll Dungeon] Old Sorcerer Coat","3900262":"[Irithyll Dungeon] Old Sorcerer Gauntlets","3900263":"[Irithyll Dungeon] Old Sorcerer Boots","3900270":"[Irithyll Dungeon] Large Soul of a Weary Warrior","3900280":"[Profaned Capital] Rusted Coin","3900290":"[Profaned Capital] Rusted Gold Coin","3900300":"[Profaned Capital] Purging Stone","3900310":"[Profaned Capital] Cursebite Ring","3900320":"[Profaned Capital] Poison Gem","3900330":"[Profaned Capital] Shriving Stone","3900340":"[Profaned Capital] Poison Arrow","3900350":"[Profaned Capital] Rubbish","3900360":"[Profaned Capital] Onislayer Greatarrow","3900370":"[Profaned Capital] Large Soul of a Weary Warrior","3900380":"[Profaned Capital] Rusted Coin","3900390":"[Profaned Capital] Rusted Coin","3900400":"[Profaned Capital] Covetous Gold Serpent Ring","3900410":"[Profaned Capital] Blooming Purple Moss Clump","3900420":"[Profaned Capital] Wrath of the Gods","3900430":"[Irithyll Dungeon] Lightning Blade","3900440":"[Irithyll Dungeon] Large Titanite Shard","3900450":"[Irithyll Dungeon] Rusted Coin","3900460":"[Irithyll Dungeon] Dusk Crown Ring","3900470":"[Irithyll Dungeon] Pickaxe","3900480":"[Irithyll Dungeon] Xanthous Ashes","3900490":"[Irithyll Dungeon] Onislayer Greatbow","3900500":"[Irithyll Dungeon] Rusted Gold Coin","3900510":"[Irithyll Dungeon] Large Titanite Shard","3900520":"[Irithyll Dungeon] Jailer's Key Ring","3900590":"[Irithyll Dungeon] Ember","3900610":"[Irithyll Dungeon] Old Cell Key","3900710":"[Irithyll Dungeon] Flame Stoneplate Ring+1","3900720":"[Irithyll Dungeon] Covetous Silver Serpent Ring+1","3900730":"[Irithyll Dungeon] Magic Stoneplate Ring+2","3900750":"[Irithyll Dungeon] Dragon Torso Stone","3900800":"[Profaned Capital] Court Sorcerer Hood","3900801":"[Profaned Capital] Court Sorcerer Robe","3900802":"[Profaned Capital] Court Sorcerer Gloves","3900803":"[Profaned Capital] Court Sorcerer Trousers","3900810":"[Profaned Capital] Storm Ruler","3900820":"[Irithyll Dungeon] Prisoner Chief's Ashes","3900900":"[Irithyll Dungeon] Undead Bone Shard","4000010":"[Cemetery of Ash] Broken Straight Sword","4000020":"[Cemetery of Ash] Soul of a Deserted Corpse","4000030":"[Cemetery of Ash] Firebomb","4000050":"[Cemetery of Ash] Titanite Shard","4000060":"[Cemetery of Ash] Homeward Bone","4000070":"[Cemetery of Ash] Ember","4000080":"[Cemetery of Ash] Soul of a Deserted Corpse","4000090":"[Cemetery of Ash] East-West Shield","4000100":"[Cemetery of Ash] Homeward Bone","4000110":"[Cemetery of Ash] Soul of an Unknown Traveler","4000120":"[Cemetery of Ash] Ember","4000140":"[Cemetery of Ash] Sneering Mask","4000141":"[Cemetery of Ash] Pale Shade Robe","4000142":"[Cemetery of Ash] Pale Shade Gloves","4000143":"[Cemetery of Ash] Pale Shade Trousers","4000160":"[Cemetery of Ash] Homeward Bone","4000170":"[Cemetery of Ash] Estus Ring","4000180":"[Cemetery of Ash] Estus Shard","4000190":"[Cemetery of Ash] Fire Keeper Soul","4000200":"[Cemetery of Ash] Shriving Stone","4000220":"[Cemetery of Ash] Titanite Chunk","4000230":"[Cemetery of Ash] Soul of a Crestfallen Knight","4000240":"[Cemetery of Ash] Titanite Chunk","4000250":"[Cemetery of Ash] Ashen Estus Ring","4000260":"[Cemetery of Ash] Black Knight Glaive","4000280":"[Cemetery of Ash] Eyes of a Fire Keeper","4000290":"[Cemetery of Ash] Soul of a Crestfallen Knight","4000300":"[Cemetery of Ash] Blacksmith Hammer","4000310":"[Cemetery of Ash] Chaos Blade","4000320":"[Cemetery of Ash] Hollow's Ashes","4000330":"[Cemetery of Ash] Hornet Ring","4000340":"[Cemetery of Ash] Coiled Sword Fragment","4000350":"[Cemetery of Ash] Fire Keeper Robe","4000351":"[Cemetery of Ash] Fire Keeper Gloves","4000352":"[Cemetery of Ash] Fire Keeper Skirt","4000400":"[Cemetery of Ash] Life Ring+3","4000410":"[Cemetery of Ash] Ring of Steel Protection+1","4000420":"[Cemetery of Ash] Speckled Stoneplate Ring+1","4000430":"[Cemetery of Ash] Wolf Ring+2","4000505":"Ashen Estus Flask","4000515":"Ashen Estus Flask+1","4000525":"Ashen Estus Flask+2","4000535":"Ashen Estus Flask+3","4000545":"Ashen Estus Flask+4","4000555":"Ashen Estus Flask+5","4000565":"Ashen Estus Flask+6","4000575":"Ashen Estus Flask+7","4000585":"Ashen Estus Flask+8","4000595":"Ashen Estus Flask+9","4000605":"Ashen Estus Flask+10","4000700":"[Cemetery of Ash] Covetous Silver Serpent Ring","4500000":"[Ariandel] Rime-blue Moss Clump","4500010":"[Ariandel] Poison Gem","4500020":"[Ariandel] Large Soul of an Unknown Traveler","4500030":"[Ariandel] Follower Javelin","4500040":"[Ariandel] Large Soul of an Unknown Traveler","4500050":"[Ariandel] Homeward Bone","4500060":"[Ariandel] Blessed Gem","4500070":"[Ariandel] Captain's Ashes","4500080":"[Ariandel] Black Firebomb","4500090":"[Ariandel] Shriving Stone","4500100":"[Ariandel] Millwood Greatbow","4500101":"[Ariandel] Millwood Greatarrow","4500110":"[Ariandel] Large Soul of an Unknown Traveler","4500120":"[Ariandel] Rusted Coin","4500130":"[Ariandel] Large Titanite Shard","4500140":"[Ariandel] Large Soul of an Unknown Traveler","4500150":"[Ariandel] Crow Quills","4500160":"[Ariandel] Simple Gem","4500170":"[Ariandel] Large Soul of an Unknown Traveler","4500180":"[Ariandel] Slave Knight Hood","4500181":"[Ariandel] Slave Knight Armor","4500182":"[Ariandel] Slave Knight Gauntlets","4500183":"[Ariandel] Slave Knight Leggings","4500190":"[Ariandel] Ember","4500200":"[Ariandel] Dark Gem","4500220":"[Ariandel] Large Soul of an Unknown Traveler","4500230":"[Ariandel] Large Soul of an Unknown Traveler","4500240":"[Ariandel] Rusted Gold Coin","4500250":"[Ariandel] Soul of a Crestfallen Knight","4500260":"[Ariandel] Way of White Corona","4500270":"[Ariandel] Rusted Coin","4500280":"[Ariandel] Young White Branch","4500290":"[Ariandel] Budding Green Blossom","4500300":"[Ariandel] Crow Talons","4500310":"[Ariandel] Prism Stone","4500320":"[Ariandel] Titanite Chunk","4500330":"[Ariandel] Titanite Chunk","4500340":"[Ariandel] Follower Shield","4500350":"[Ariandel] Large Titanite Shard","4500360":"[Ariandel] Quakestone Hammer","4500370":"[Ariandel] Ember","4500380":"[Ariandel] Large Titanite Shard","4500390":"[Ariandel] Soul of a Crestfallen Knight","4500400":"[Ariandel] Soul of a Crestfallen Knight","4500410":"[Ariandel] Large Soul of a Crestfallen Knight","4500420":"[Ariandel] Earth Seeker","4500430":"[Ariandel] Follower Torch","4500460":"[Ariandel] Dung Pie","4500470":"[Ariandel] Vilhelm's Helm","4500471":"[Ariandel] Vilhelm's Armor","4500472":"[Ariandel] Vilhelm's Gauntlets","4500473":"[Ariandel] Vilhelm's Leggings","4500480":"[Ariandel] Blood Gem","4500490":"[Ariandel] Hollow Gem","4500530":"[Ariandel] Rime-blue Moss Clump","4500540":"[Ariandel] Follower Sabre","4500550":"[Ariandel] Ember","4500560":"[Ariandel] Snap Freeze","4500570":"[Ariandel] Pyromancer's Parting Flame","4500571":"[Ariandel] Homeward Bone","4500600":"[Ariandel] Rime-blue Moss Clump","4500610":"[Ariandel] Large Soul of an Unknown Traveler","4500620":"[Ariandel] Ember","4500630":"[Ariandel] Frozen Weapon","4500640":"[Ariandel] Titanite Slab","4500650":"[Ariandel] Homeward Bone","4500660":"[Ariandel] Large Soul of an Unknown Traveler","4500670":"[Ariandel] Large Soul of a Weary Warrior","4500680":"[Ariandel] Large Soul of an Unknown Traveler","4500690":"[Ariandel] Heavy Gem","4500800":"[Ariandel] Large Soul of a Weary Warrior","4500810":"[Ariandel] Millwood Battle Axe","4500820":"[Ariandel] Ethereal Oak Shield","4500830":"[Ariandel] Soul of a Weary Warrior","5000000":"[Dreg Heap] Ember","5000010":"[Dreg Heap] Soul of a Weary Warrior","5000020":"[Dreg Heap] Titanite Chunk","5000030":"[Dreg Heap] Aquamarine Dagger","5000040":"[Dreg Heap] Twinkling Titanite","5000050":"[Dreg Heap] Murky Hand Scythe","5000060":"[Dreg Heap] Divine Blessing","5000070":"[Dreg Heap] Ring of Steel Protection+3","5000080":"[Dreg Heap] Soul of a Crestfallen Knight","5000090":"[Dreg Heap] Rusted Coin","5000100":"[Dreg Heap] Titanite Chunk","5000110":"[Dreg Heap] Murky Longstaff","5000120":"[Dreg Heap] Ember","5000130":"[Dreg Heap] Great Soul Dregs","5000140":"[Dreg Heap] Covetous Silver Serpent Ring+3","5000150":"[Dreg Heap] Fading Soul","5000160":"[Dreg Heap] Titanite Chunk","5000170":"[Dreg Heap] Homeward Bone","5000180":"[Dreg Heap] Fading Soul","5000190":"[Dreg Heap] Lightning Urn","5000200":"[Dreg Heap] Projected Heal","5000210":"[Dreg Heap] Large Soul of a Weary Warrior","5000220":"[Dreg Heap] Lothric War Banner","5000230":"[Dreg Heap] Titanite Scale","5000240":"[Dreg Heap] Fading Soul","5000250":"[Dreg Heap] Fading Soul","5000260":"[Dreg Heap] Fading Soul","5000270":"[Dreg Heap] Fading Soul","5000280":"[Dreg Heap] Fading Soul","5000290":"[Dreg Heap] Fading Soul","5000300":"[Dreg Heap] Black Firebomb","5000310":"[Dreg Heap] Titanite Chunk","5000320":"[Dreg Heap] Twinkling Titanite","5000330":"[Dreg Heap] Desert Pyromancer Garb","5000340":"[Dreg Heap] Titanite Chunk","5000350":"[Dreg Heap] Giant Door Shield","5000360":"[Dreg Heap] Ember","5000370":"[Dreg Heap] Desert Pyromancer Hood","5000371":"[Dreg Heap] Desert Pyromancer Garb","5000372":"[Dreg Heap] Desert Pyromancer Gloves","5000373":"[Dreg Heap] Desert Pyromancer Skirt","5000380":"[Dreg Heap] Desert Pyromancer Gloves","5000390":"[Dreg Heap] Desert Pyromancer Skirt","5000400":"[Dreg Heap] Titanite Scale","5000410":"[Dreg Heap] Purple Moss Clump","5000420":"[Dreg Heap] Ring of Favor+3","5000430":"[Dreg Heap] Titanite Chunk","5000440":"[Dreg Heap] Large Soul of a Weary Warrior","5000450":"[Dreg Heap] Titanite Slab","5000460":"[Dreg Heap] Titanite Chunk","5000470":"[Dreg Heap] Loincloth","5000480":"[Dreg Heap] Titanite Chunk","5000490":"[Dreg Heap] Large Soul of a Weary Warrior","5000500":"[Dreg Heap] Harald Curved Greatsword","5000510":"[Dreg Heap] Homeward Bone","5000520":"[Dreg Heap] Prism Stone","5000530":"[Dreg Heap] Desert Pyromancer Hood","5000540":"[Dreg Heap] Twinkling Titanite","5000550":"[Dreg Heap] Divine Blessing","5000560":"[Dreg Heap] Ember","5000600":"[Dreg Heap] Small Envoy Banner","5100000":"[Dreg Heap] Titanite Scale","5100010":"[Ringed City] Ruin Helm","5100011":"[Ringed City] Ruin Armor","5100012":"[Ringed City] Ruin Gauntlets","5100013":"[Ringed City] Ruin Leggings","5100020":"[Ringed City] Budding Green Blossom","5100030":"[Ringed City] Titanite Chunk","5100040":"[Ringed City] Ember","5100050":"[Ringed City] Budding Green Blossom","5100060":"[Ringed City] Hidden Blessing","5100070":"[Ringed City] Soul of a Crestfallen Knight","5100080":"[Ringed City] Large Soul of a Weary Warrior","5100090":"[Ringed City] Fading Soul","5100100":"[Ringed City] Soul of a Crestfallen Knight","5100110":"[Ringed City] Ember","5100120":"[Ringed City] Purging Stone","5100130":"[Ringed City] Fading Soul","5100140":"[Ringed City] Fading Soul","5100150":"[Ringed City] Hollow Gem","5100160":"[Ringed City] Titanite Chunk","5100170":"[Ringed City] Twinkling Titanite","5100180":"[Ringed City] Shriving Stone","5100190":"[Ringed City] Shira's Crown","5100191":"[Ringed City] Shira's Armor","5100192":"[Ringed City] Shira's Gloves","5100193":"[Ringed City] Shira's Trousers","5100200":"[Ringed City] Mossfruit","5100210":"[Ringed City] Fading Soul","5100220":"[Ringed City] Large Soul of a Crestfallen Knight","5100230":"[Ringed City] Ringed Knight Spear","5100240":"[Ringed City] Fading Soul","5100250":"[Ringed City] Black Witch Hat","5100251":"[Ringed City] Black Witch Garb","5100252":"[Ringed City] Black Witch Wrappings","5100253":"[Ringed City] Black Witch Trousers","5100260":"[Ringed City] Dragonhead Shield","5100270":"[Ringed City] Titanite Chunk","5100280":"[Ringed City] Mossfruit","5100290":"[Ringed City] Large Soul of a Crestfallen Knight","5100300":"[Ringed City] Covetous Gold Serpent Ring+3","5100310":"[Ringed City] Fading Soul","5100320":"[Ringed City] Fading Soul","5100330":"[Ringed City] Titanite Chunk","5100340":"[Ringed City] Fading Soul","5100350":"[Ringed City] Dark Gem","5100360":"[Ringed City] Prism Stone","5100370":"[Ringed City] Ringed Knight Straight Sword","5100380":"[Ringed City] Havel's Ring+3","5100390":"[Ringed City] Titanite Chunk","5100400":"[Ringed City] Twinkling Titanite","5100410":"[Ringed City] Fading Soul","5100420":"[Ringed City] Soul of a Weary Warrior","5100430":"[Ringed City] Preacher's Right Arm","5100440":"[Ringed City] Rubbish","5100450":"[Ringed City] Titanite Chunk","5100460":"[Ringed City] Black Witch Veil","5100470":"[Ringed City] Church Guardian Shiv","5100480":"[Ringed City] Twinkling Titanite","5100490":"[Ringed City] Fading Soul","5100500":"[Ringed City] Fading Soul","5100510":"[Ringed City] Soul of a Crestfallen Knight","5100520":"[Ringed City] White Preacher Head","5100530":"[Ringed City] Fading Soul","5100540":"[Ringed City] Titanite Scale","5100550":"[Ringed City] Titanite Scale","5100560":"[Ringed City] Dragonhead Greatshield","5100570":"[Ringed City] Titanite Scale","5100580":"[Ringed City] Rubbish","5100590":"[Ringed City] Large Soul of a Weary Warrior","5100600":"[Ringed City] Titanite Scale","5100610":"[Ringed City] Titanite Scale","5100620":"[Ringed City] Lightning Gem","5100630":"[Ringed City] Blessed Gem","5100640":"[Ringed City] Simple Gem","5100650":"[Ringed City] Large Soul of a Weary Warrior","5100660":"[Ringed City] Lightning Arrow","5100670":"[Ringed City] Chloranthy Ring+3","5100680":"[Ringed City] Ember","5100690":"[Ringed City] Filianore's Spear Ornament","5100700":"[Ringed City] Antiquated Plain Garb","5100701":"[Ringed City] Violet Wrappings","5100710":"[Ringed City] Soul of a Weary Warrior","5100720":"[Ringed City] Fading Soul","5100730":"[Ringed City] Fading Soul","5100740":"[Ringed City] Fading Soul","5100750":"[Ringed City] Twinkling Titanite","5100760":"[Ringed City] Ritual Spear Fragment","5100770":"[Ringed City] Budding Green Blossom","5100780":"[Ringed City] Fading Soul","5100790":"[Ringed City] Fading Soul","5100800":"[Ringed City] Titanite Chunk","5100810":"[Ringed City] Large Soul of a Weary Warrior","5100820":"[Ringed City] Fading Soul","5100830":"[Ringed City] Soul of a Weary Warrior","5100840":"[Ringed City] Fading Soul","5100850":"[Ringed City] Titanite Scale","5100860":"[Ringed City] Soul of a Crestfallen Knight","5100870":"[Ringed City] White Birch Bow","5100880":"[Ringed City] Titanite Chunk","5100890":"[Ringed City] Fading Soul","5100900":"[Ringed City] Young White Branch","5100910":"[Ringed City] Young White Branch","5100920":"[Ringed City] Young White Branch","10700000":"[Skeleton - Scimitar] Scimitar","10700001":"[Skeleton - Scimitar] Human Pine Resin","10700100":"[Skeleton - Falchion] Falchion","10700101":"[Skeleton - Falchion] Human Pine Resin","10701000":"[Skeleton - Scimitar] Scimitar","10701001":"[Skeleton - Scimitar] Kukri","10701100":"[Skeleton - Falchion] Falchion","10701101":"[Skeleton - Falchion] Carthus Rouge","10701200":"[Skeleton - Bow] Longbow","10701201":"[Skeleton - Bow] Fire Arrow","10701300":"[Skeleton - Firebomb] Firebomb","10701400":"[Skeleton - Ball] Alluring Skull","10701500":"[Skeleton - Ball] Alluring Skull","10702000":"[Skeleton - Scimitar] Scimitar","10702001":"[Skeleton - Scimitar] Yellow Bug Pellet","10702100":"[Skeleton - Falchion] Falchion","10702101":"[Skeleton - Falchion] Yellow Bug Pellet","10702200":"[Skeleton - Bow] Longbow","10702201":"[Skeleton - Bow] Fire Arrow","10702300":"[Skeleton - Firebomb] Firebomb","10702400":"[Skeleton] Alluring Skull","10703000":"[Skeleton] Human Pine Resin","10703100":"[Skeleton] Human Pine Resin","10900000":"[Pus of Man #1] Dark Gem, Titanite Shard","10900001":"[Pus of Man #1] Titanite Shard","10900002":"[Pus of Man #1] Ember","10900003":"[Pus of Man #1] Ember","10900010":"[Pus of Man #2] Dark Gem, Titanite Shard","10900011":"[Pus of Man #2] Titanite Shard","10900012":"[Pus of Man #2] Ember","10900013":"[Pus of Man #2] Ember","10901000":"[Pus of Man #3] Dark Gem, Large Titanite Shard, Titanite Chunk","10901001":"[Pus of Man #3] Ember","10902000":"[Pus of Man #4] Dark Gem, Large Titanite Shard, Titanite Chunk","10902001":"[Pus of Man #4] Ember","10903000":"[Pus of Man #5] Dark Gem, Large Titanite Shard, Titanite Chunk","10903001":"[Pus of Man #5] Ember","11000000":"[Hollow Soldier - Sword] Long Sword","11000001":"[Hollow Soldier - Sword] Deserter Trousers","11000002":"[Hollow Soldier - Sword] Firebomb","11000003":"[Hollow Soldier - Sword] Titanite Shard","11000004":"[Hollow Soldier - Sword] Raw Gem","11000100":"[Hollow Soldier - Hilt] Broken Straight Sword","11000101":"[Hollow Soldier - Hilt] Titanite Shard","11000102":"[Hollow Soldier - Hilt] Raw Gem","11000200":"[Hollow Soldier - Sword & Shield] Long Sword","11000201":"[Hollow Soldier - Sword & Shield] Iron Round Shield","11000202":"[Hollow Soldier - Sword & Shield] Steel Soldier Helm","11000203":"[Hollow Soldier - Sword & Shield] Deserter Armor","11000204":"[Hollow Soldier - Sword & Shield] Deserter Trousers","11000205":"[Hollow Soldier - Sword & Shield] Firebomb","11000206":"[Hollow Soldier - Sword & Shield] Titanite Shard","11000207":"[Hollow Soldier - Sword & Shield] Raw Gem","11000300":"[Hollow Soldier - Lantern] Broken Straight Sword","11000301":"[Hollow Soldier - Lantern] Deserter Trousers","11000302":"[Hollow Soldier - Lantern] Titanite Shard","11000303":"[Hollow Soldier - Lantern] Raw Gem","11000400":"[Hollow Soldier - Crossbow] Light Crossbow","11000401":"[Hollow Soldier - Crossbow] Steel Soldier Helm","11000402":"[Hollow Soldier - Crossbow] Deserter Trousers","11000403":"[Hollow Soldier - Crossbow] Standard Bolt","11000404":"[Hollow Soldier - Crossbow] Titanite Shard","11000405":"[Hollow Soldier - Crossbow] Raw Gem","11000500":"[Hollow Soldier - Spear and Shield] Spear","11000501":"[Hollow Soldier - Spear and Shield] Wooden Shield","11000502":"[Hollow Soldier - Spear and Shield] Steel Soldier Helm","11000503":"[Hollow Soldier - Spear and Shield] Deserter Armor","11000504":"[Hollow Soldier - Spear and Shield] Deserter Trousers","11000505":"[Hollow Soldier - Spear and Shield] Titanite Shard","11000506":"[Hollow Soldier - Spear and Shield] Raw Gem","11000600":"[Hollow Assassin] Dagger","11000601":"[Hollow Assassin] Deserter Trousers","11000602":"[Hollow Assassin] Throwing Knife","11000603":"[Hollow Assassin] Titanite Shard","11000604":"[Hollow Assassin] Raw Gem","11001000":"[Hollow Soldier - Sword] Long Sword","11001001":"[Hollow Soldier - Sword] Deserter Trousers","11001002":"[Hollow Soldier - Sword] Firebomb","11001003":"[Hollow Soldier - Sword] Large Titanite Shard","11001004":"[Hollow Soldier - Sword] Titanite Chunk","11001005":"[Hollow Soldier - Sword] Raw Gem","11001100":"[Hollow Soldier - Hilt] Broken Straight Sword","11001101":"[Hollow Soldier - Hilt] Large Titanite Shard","11001102":"[Hollow Soldier - Hilt] Titanite Chunk","11001103":"[Hollow Soldier - Hilt] Raw Gem","11001200":"[Hollow Soldier - Sword & Shield] Long Sword","11001201":"[Hollow Soldier - Sword & Shield] Iron Round Shield","11001202":"[Hollow Soldier - Sword & Shield] Steel Soldier Helm","11001203":"[Hollow Soldier - Sword & Shield] Deserter Armor","11001204":"[Hollow Soldier - Sword & Shield] Deserter Trousers","11001205":"[Hollow Soldier - Sword & Shield] Firebomb","11001206":"[Hollow Soldier - Sword & Shield] Large Titanite Shard","11001207":"[Hollow Soldier - Sword & Shield] Titanite Chunk","11001208":"[Hollow Soldier - Sword & Shield] Raw Gem","11001300":"[Hollow Soldier - Lantern] Broken Straight Sword","11001301":"[Hollow Soldier - Lantern] Deserter Trousers","11001302":"[Hollow Soldier - Lantern] Large Titanite Shard","11001303":"[Hollow Soldier - Lantern] Titanite Chunk","11001304":"[Hollow Soldier - Lantern] Raw Gem","11001400":"[Hollow Soldier - Crossbow] Light Crossbow","11001401":"[Hollow Soldier - Crossbow] Steel Soldier Helm","11001402":"[Hollow Soldier - Crossbow] Deserter Trousers","11001403":"[Hollow Soldier - Crossbow] Standard Bolt","11001404":"[Hollow Soldier - Crossbow] Large Titanite Shard","11001405":"[Hollow Soldier - Crossbow] Titanite Chunk","11001406":"[Hollow Soldier - Crossbow] Raw Gem","11001500":"[Hollow Soldier - Spear and Shield] Spear","11001501":"[Hollow Soldier - Spear and Shield] Wooden Shield","11001502":"[Hollow Soldier - Spear and Shield] Steel Soldier Helm","11001503":"[Hollow Soldier - Spear and Shield] Deserter Armor","11001504":"[Hollow Soldier - Spear and Shield] Deserter Trousers","11001505":"[Hollow Soldier - Spear and Shield] Large Titanite Shard","11001506":"[Hollow Soldier - Spear and Shield] Titanite Chunk","11001507":"[Hollow Soldier - Spear and Shield] Raw Gem","11001600":"[Hollow Assassin] Dagger","11001601":"[Hollow Assassin] Deserter Trousers","11001602":"[Hollow Assassin] Throwing Knife","11001603":"[Hollow Assassin] Large Titanite Shard","11001604":"[Hollow Assassin] Titanite Chunk","11001605":"[Hollow Assassin] Raw Gem","11002000":"[Hollow Soldier - Sword] Long Sword","11002001":"[Hollow Soldier - Sword] Deserter Trousers","11002002":"[Hollow Soldier - Sword] Firebomb","11002003":"[Hollow Soldier - Sword] Large Titanite Shard","11002004":"[Hollow Soldier - Sword] Titanite Chunk","11002100":"[Hollow Soldier - Hilt] Broken Straight Sword","11002101":"[Hollow Soldier - Hilt] Large Titanite Shard","11002102":"[Hollow Soldier - Hilt] Titanite Chunk","11002200":"[Hollow Soldier - Sword & Shield] Long Sword","11002201":"[Hollow Soldier - Sword & Shield] Iron Round Shield","11002202":"[Hollow Soldier - Sword & Shield] Steel Soldier Helm","11002203":"[Hollow Soldier - Sword & Shield] Deserter Armor","11002204":"[Hollow Soldier - Sword & Shield] Deserter Trousers","11002205":"[Hollow Soldier - Sword & Shield] Firebomb","11002206":"[Hollow Soldier - Sword & Shield] Large Titanite Shard","11002207":"[Hollow Soldier - Sword & Shield] Titanite Chunk","11002400":"[Hollow Soldier - Crossbow] Light Crossbow","11002401":"[Hollow Soldier - Crossbow] Steel Soldier Helm","11002402":"[Hollow Soldier - Crossbow] Deserter Trousers","11002403":"[Hollow Soldier - Crossbow] Standard Bolt","11002404":"[Hollow Soldier - Crossbow] Large Titanite Shard","11002405":"[Hollow Soldier - Crossbow] Titanite Chunk","11002500":"[Hollow Soldier - Spear and Shield] Spear","11002501":"[Hollow Soldier - Spear and Shield] Wooden Shield","11002502":"[Hollow Soldier - Spear and Shield] Steel Soldier Helm","11002503":"[Hollow Soldier - Spear and Shield] Deserter Armor","11002504":"[Hollow Soldier - Spear and Shield] Deserter Trousers","11002505":"[Hollow Soldier - Spear and Shield] Large Titanite Shard","11002506":"[Hollow Soldier - Spear and Shield] Titanite Chunk","11050000":"[Large Hollow Soldier - Greataxe] Greataxe","11050001":"[Large Hollow Soldier - Greataxe] Titanite Shard","11050002":"[Large Hollow Soldier - Greataxe] Raw Gem","11050100":"[Large Hollow Soldier - Halberd] Halberd","11050101":"[Large Hollow Soldier - Halberd] Titanite Shard","11050102":"[Large Hollow Soldier - Halberd] Raw Gem","11051000":"[Large Hollow Soldier - Greataxe] Greataxe","11051001":"[Large Hollow Soldier - Greataxe] Large Titanite Shard","11051002":"[Large Hollow Soldier - Greataxe] Titanite Chunk","11051003":"[Large Hollow Soldier - Greataxe] Raw Gem","11051100":"[Large Hollow Soldier - Halberd] Halberd","11051101":"[Large Hollow Soldier - Halberd] Large Titanite Shard","11051102":"[Large Hollow Soldier - Halberd] Titanite Chunk","11051103":"[Large Hollow Soldier - Halberd] Raw Gem","11300000":"[Unk16] Poison Gem","11300001":"[Unk16] Heavy Gem","11301000":"[Unk16] Dark Gem","11700000":"[Carthus Swordsman - Sword] Carthus Curved Sword","11700001":"[Carthus Swordsman - Sword] Carthus Shield","11700002":"[Carthus Swordsman - Sword] Sharp Gem, Titanite Shard, Large Titanite Shard","11700003":"[Carthus Swordsman - Sword] Vertebra Shackle, Ember","11700100":"[Carthus Swordsman - Greatsword] Carthus Curved Greatsword","11700101":"[Carthus Swordsman - Greatsword] Sharp Gem, Titanite Shard, Large Titanite Shard","11700102":"[Carthus Swordsman - Greatsword] Vertebra Shackle, Ember","11700103":"[Carthus Swordsman - Greatsword] Carthus Rouge","11700200":"[Carthus Swordsman - Bow] Longbow","11700201":"[Carthus Swordsman - Bow] Fire Arrow","11700202":"[Carthus Swordsman - Bow] Sharp Gem, Titanite Shard, Large Titanite Shard","11700203":"[Carthus Swordsman - Bow] Vertebra Shackle, Ember","11800000":"[Carthus Swordsman - Shotel] Carthus Shotel","11800001":"[Carthus Swordsman - Shotel] Sharp Gem, Titanite Shard, Large Titanite Shard","11800002":"[Carthus Swordsman - Shotel] Vertebra Shackle, Ember","11800003":"[Carthus Swordsman - Shotel] Kukri","11800100":"[Carthus Swordsman - Shotel] Carthus Shotel","11800101":"[Carthus Swordsman - Shotel] Sharp Gem, Titanite Shard, Large Titanite Shard","11800102":"[Carthus Swordsman - Shotel] Vertebra Shackle, Ember","11801000":"[Carthus Swordsman - Shotel] Carthus Shotel","11801001":"[Carthus Swordsman - Shotel] Sharp Gem, Titanite Shard, Large Titanite Shard","11801002":"[Carthus Swordsman - Shotel] Vertebra Shackle, Ember","11801003":"[Carthus Swordsman - Shotel] Yellow Bug Pellet","11801100":"[Carthus Swordsman - Shotel] Carthus Shotel","11801101":"[Carthus Swordsman - Shotel] Sharp Gem, Titanite Shard, Large Titanite Shard","11801102":"[Carthus Swordsman - Shotel] Vertebra Shackle, Ember","11801103":"[Carthus Swordsman - Shotel] Yellow Bug Pellet","11900000":"[Cathedral Knight - Mace] Great Mace","11900001":"[Cathedral Knight - Mace] Cathedral Knight Greatshield","11900002":"[Cathedral Knight - Mace] Cathedral Knight Helm","11900003":"[Cathedral Knight - Mace] Cathedral Knight Armor","11900004":"[Cathedral Knight - Mace] Cathedral Knight Gauntlets","11900005":"[Cathedral Knight - Mace] Cathedral Knight Leggings","11900006":"[Cathedral Knight - Mace] Titanite Shard, Ember","11900100":"[Cathedral Knight - Greatsword] Cathedral Knight Greatsword","11900101":"[Cathedral Knight - Greatsword] Cathedral Knight Helm","11900102":"[Cathedral Knight - Greatsword] Cathedral Knight Armor","11900103":"[Cathedral Knight - Greatsword] Cathedral Knight Gauntlets","11900104":"[Cathedral Knight - Greatsword] Cathedral Knight Leggings","11900105":"[Cathedral Knight - Greatsword] Titanite Shard, Ember","11900200":"[Cathedral Knight - Mace] Great Mace","11900201":"[Cathedral Knight - Mace] Cathedral Knight Greatshield","11900202":"[Cathedral Knight - Mace] Heavy Crossbow","11900203":"[Cathedral Knight - Mace] Cathedral Knight Helm","11900204":"[Cathedral Knight - Mace] Cathedral Knight Armor","11900205":"[Cathedral Knight - Mace] Cathedral Knight Gauntlets","11900206":"[Cathedral Knight - Mace] Cathedral Knight Leggings","11900207":"[Cathedral Knight - Mace] Heavy Bolt","11900208":"[Cathedral Knight - Mace] Titanite Shard, Ember","11901000":"[Cathedral Knight - Greatsword] Great Mace","11901001":"[Cathedral Knight - Greatsword] Cathedral Knight Greatshield","11901002":"[Cathedral Knight - Greatsword] Cathedral Knight Helm","11901003":"[Cathedral Knight - Greatsword] Cathedral Knight Armor","11901004":"[Cathedral Knight - Greatsword] Cathedral Knight Gauntlets","11901005":"[Cathedral Knight - Greatsword] Cathedral Knight Leggings","11901006":"[Cathedral Knight - Greatsword] Large Titanite Shard, Titanite Chunk, Ember","11901100":"[Cathedral Knight - Mace] Cathedral Knight Greatsword","11901101":"[Cathedral Knight - Mace] Cathedral Knight Helm","11901102":"[Cathedral Knight - Mace] Cathedral Knight Armor","11901103":"[Cathedral Knight - Mace] Cathedral Knight Gauntlets","11901104":"[Cathedral Knight - Mace] Cathedral Knight Leggings","11901105":"[Cathedral Knight - Mace] Large Titanite Shard, Titanite Chunk, Ember","11901110":"[Cathedral Knight - Greatsword] Cathedral Knight Greatsword","11901111":"[Cathedral Knight - Greatsword] Cathedral Knight Helm","11901112":"[Cathedral Knight - Greatsword] Cathedral Knight Armor","11901113":"[Cathedral Knight - Greatsword] Cathedral Knight Gauntlets","11901114":"[Cathedral Knight - Greatsword] Cathedral Knight Leggings","11901120":"[Cathedral Knight - Oceiros] Magic Stoneplate Ring","12000000":"[Hollow Slave - Axe] Thrall Axe","12000001":"[Hollow Slave - Axe] Thrall Hood","12000002":"[Hollow Slave - Axe] Titanite Shard","12000100":"[Hollow Slave - Axe] Thrall Hood","12000101":"[Hollow Slave - Axe] Titanite Shard","12000200":"[Hollow Slave - Flamberge] Flamberge","12000201":"[Hollow Slave - Flamberge] Thrall Hood","12000202":"[Hollow Slave - Flamberge] Titanite Shard","12000300":"[Hollow Slave - Flamberge] Thrall Hood","12000301":"[Hollow Slave - Flamberge] Titanite Shard","12001000":"[Hollow Slave - Axe] Thrall Axe","12001001":"[Hollow Slave - Axe] Thrall Hood","12001002":"[Hollow Slave - Axe] Titanite Shard, Deep Gem","12001100":"[Hollow Slave - Axe] Thrall Hood","12001101":"[Hollow Slave - Axe] Titanite Shard, Deep Gem","12001200":"[Hollow Slave - Flamberge] Flamberge","12001201":"[Hollow Slave - Flamberge] Thrall Hood","12001202":"[Hollow Slave - Flamberge] Titanite Shard, Deep Gem","12001300":"[Hollow Slave - Flamberge] Thrall Hood","12001301":"[Hollow Slave - Flamberge] Titanite Shard, Deep Gem","12002000":"[Hollow Slave - Axe] Thrall Axe","12002001":"[Hollow Slave - Axe] Thrall Hood","12002002":"[Hollow Slave - Axe] Crystal Gem, Titanite Chunk","12002100":"[Hollow Slave - Axe] Thrall Hood","12002101":"[Hollow Slave - Axe] Crystal Gem, Titanite Chunk","12002200":"[Hollow Slave - Flamberge] Flamberge","12002201":"[Hollow Slave - Flamberge] Thrall Hood","12002202":"[Hollow Slave - Flamberge] Crystal Gem, Titanite Chunk","12002300":"[Hollow Slave - Flamberge] Thrall Hood","12002301":"[Hollow Slave - Flamberge] Crystal Gem, Titanite Chunk","12003000":"[Hollow Slave - Axe] Thrall Axe","12003001":"[Hollow Slave - Axe] Thrall Hood","12003002":"[Hollow Slave - Axe] Titanite Chunk","12003100":"[Hollow Slave - Axe] Thrall Hood","12003101":"[Hollow Slave - Axe] Titanite Chunk","12003200":"[Hollow Slave - Flamberge] Flamberge","12003201":"[Hollow Slave - Flamberge] Thrall Hood","12003202":"[Hollow Slave - Flamberge] Titanite Chunk","12003300":"[Hollow Slave - Flamberge] Thrall Hood","12003301":"[Hollow Slave - Flamberge] Titanite Chunk","12004000":"[Hollow Slave - Axe] Thrall Hood","12004001":"[Hollow Slave - Axe] Titanite Chunk, Titanite Chunk","12004100":"[Hollow Slave - Axe] Thrall Hood","12004101":"[Hollow Slave - Axe] Titanite Chunk, Titanite Chunk","12004200":"[Hollow Slave - Flamberge] Thrall Hood","12004201":"[Hollow Slave - Flamberge] Titanite Chunk, Titanite Chunk","12004210":"[Hollow Slave - Flamberge] Thrall Hood","12004211":"[Hollow Slave - Flamberge] Titanite Chunk, Titanite Chunk","12004220":"[Hollow Slave - Flamberge] Thrall Hood","12004221":"[Hollow Slave - Flamberge] Titanite Chunk, Titanite Chunk","12004222":"[Hollow Slave - Flamberge] Titanite Chunk","12100000":"[Ghru - Spear] Rotten Ghru Spear","12100001":"[Ghru - Spear] Ghru Rotshield","12100002":"[Ghru - Spear] Titanite Shard","12100003":"[Ghru - Spear] Poison Gem","12100004":"[Ghru - Spear] Rotten Pine Resin","12100005":"[Ghru - Spear] Wolf's Blood Swordgrass","12100100":"[Ghru - Curved Sword] Rotten Ghru Curved Sword","12100101":"[Ghru - Curved Sword] Titanite Shard","12100102":"[Ghru - Curved Sword] Poison Gem","12100103":"[Ghru - Curved Sword] Rotten Pine Resin","12100104":"[Ghru - Curved Sword] Wolf's Blood Swordgrass","12100200":"[Ghru - Dagger] Rotten Ghru Dagger","12100201":"[Ghru - Dagger] Titanite Shard","12100202":"[Ghru - Dagger] Heavy Gem","12100203":"[Ghru - Dagger] Black Bug Pellet","12100204":"[Ghru - Dagger] Wolf's Blood Swordgrass","12100300":"[Mad Ghru] Titanite Shard","12100301":"[Mad Ghru] Heavy Gem","12100302":"[Mad Ghru] Black Bug Pellet","12100303":"[Mad Ghru] Wolf's Blood Swordgrass","12100400":"[Smouldering Ghru - Spear] Titanite Shard","12101000":"[Smouldering Ghru - Spear] Rotten Ghru Spear","12101001":"[Smouldering Ghru - Spear] Ghru Rotshield","12101002":"[Smouldering Ghru - Spear] Titanite Shard","12101003":"[Smouldering Ghru - Spear] Large Titanite Shard","12101100":"[Smouldering Ghru - Curved Sword] Rotten Ghru Curved Sword","12101101":"[Smouldering Ghru - Curved Sword] Titanite Shard","12101102":"[Smouldering Ghru - Curved Sword] Large Titanite Shard","12101200":"[Smouldering Ghru - Dagger] Rotten Ghru Dagger","12101201":"[Smouldering Ghru - Dagger] Titanite Shard","12101202":"[Smouldering Ghru - Dagger] Large Titanite Shard, Fire Gem","12101300":"[Smouldering Mad Ghru] Titanite Shard","12101301":"[Smouldering Mad Ghru] Large Titanite Shard, Fire Gem","12101400":"[Smouldering Mad Ghru] Titanite Shard","12101401":"[Smouldering Mad Ghru] Large Titanite Shard","12300000":"[Cathedral Evangelist] Spiked Mace","12300001":"[Cathedral Evangelist] Evangelist Hat","12300002":"[Cathedral Evangelist] Evangelist Robe","12300003":"[Cathedral Evangelist] Evangelist Gloves","12300004":"[Cathedral Evangelist] Evangelist Trousers","12300005":"[Cathedral Evangelist] Titanite Shard","12300006":"[Cathedral Evangelist] Blessed Gem","12301000":"[Cathedral Evangelist #2] Spiked Mace","12301001":"[Cathedral Evangelist #2] Evangelist Hat","12301002":"[Cathedral Evangelist #2] Evangelist Robe","12301003":"[Cathedral Evangelist #2] Evangelist Gloves","12301004":"[Cathedral Evangelist #2] Evangelist Trousers","12301005":"[Cathedral Evangelist #2] Titanite Shard","12301006":"[Cathedral Evangelist #2] Blessed Gem","12302000":"[Cathedral Evangelist #3] Spiked Mace","12302001":"[Cathedral Evangelist #3] Evangelist Hat","12302002":"[Cathedral Evangelist #3] Evangelist Robe","12302003":"[Cathedral Evangelist #3] Evangelist Gloves","12302004":"[Cathedral Evangelist #3] Evangelist Trousers","12302005":"[Cathedral Evangelist #3] Titanite Shard","12302006":"[Cathedral Evangelist #3] Blessed Gem","12303000":"[Cathedral Evangelist #4] Spiked Mace","12303001":"[Cathedral Evangelist #4] Evangelist Hat","12303002":"[Cathedral Evangelist #4] Evangelist Robe","12303003":"[Cathedral Evangelist #4] Evangelist Gloves","12303004":"[Cathedral Evangelist #4] Evangelist Trousers","12303010":"[Cathedral Evangelist #4] Dorhys' Gnawing","12400000":"[Peasant Hollow - Axe] Firebomb","12400001":"[Peasant Hollow - Axe] Worker Hat","12400002":"[Peasant Hollow - Axe] Worker Garb","12400003":"[Peasant Hollow - Axe] Worker Gloves","12400004":"[Peasant Hollow - Axe] Worker Trousers","12400005":"[Peasant Hollow - Axe] Charcoal Pine Resin","12400100":"[Peasant Hollow - Lantern] Firebomb","12400101":"[Peasant Hollow - Lantern] Worker Hat","12400102":"[Peasant Hollow - Lantern] Worker Garb","12400103":"[Peasant Hollow - Lantern] Worker Gloves","12400104":"[Peasant Hollow - Lantern] Worker Trousers","12400105":"[Peasant Hollow - Lantern] Fire Gem","12400200":"[Peasant Hollow - Sickle] Harpe","12400201":"[Peasant Hollow - Sickle] Worker Garb","12400202":"[Peasant Hollow - Sickle] Worker Gloves","12400203":"[Peasant Hollow - Sickle] Worker Trousers","12400204":"[Peasant Hollow - Sickle] Charcoal Pine Bundle","12400300":"[Peasant Hollow - Mallet] Great Wooden Hammer","12400301":"[Peasant Hollow - Mallet] Worker Garb","12400302":"[Peasant Hollow - Mallet] Worker Gloves","12400303":"[Peasant Hollow - Mallet] Worker Trousers","12400304":"[Peasant Hollow - Mallet] Titanite Shard","12400400":"[Peasant Hollow - Hoe] Four-Pronged Plow","12400401":"[Peasant Hollow - Hoe] Worker Hat","12400402":"[Peasant Hollow - Hoe] Worker Garb","12400403":"[Peasant Hollow - Hoe] Worker Gloves","12400404":"[Peasant Hollow - Hoe] Worker Trousers","12400405":"[Peasant Hollow - Hoe] Rubbish","12410000":"[Giant Slave] Firebomb","12410001":"[Giant Slave] Large Titanite Shard","12410002":"[Giant Slave] Dung Pie","12410100":"[Giant Slave #2] Firebomb","12410101":"[Giant Slave #2] Large Titanite Shard","12410102":"[Giant Slave #2] Dung Pie","12410200":"[Giant Slave #3] Large Titanite Shard","12410201":"[Giant Slave #3] Dung Pie","12410300":"[Giant Slave #4] Large Titanite Shard","12410301":"[Giant Slave #4] Dung Pie","12410400":"[Giant Slave #5] Large Titanite Shard","12410401":"[Giant Slave #5] Dung Pie","12410500":"[Giant Slave #6] Large Titanite Shard","12410501":"[Giant Slave #6] Dung Pie","12500000":"[Cathedral Grave Warden] Warden Twinblades","12500001":"[Cathedral Grave Warden] Grave Warden Hood","12500002":"[Cathedral Grave Warden] Grave Warden Robe","12500003":"[Cathedral Grave Warden] Grave Warden Wrap","12500004":"[Cathedral Grave Warden] Grave Warden Skirt","12500005":"[Cathedral Grave Warden] Titanite Shard","12500006":"[Cathedral Grave Warden] Bloodred Moss Clump","12501000":"[Cathedral Grave Warden #2] Warden Twinblades","12501001":"[Cathedral Grave Warden #2] Grave Warden Hood","12501002":"[Cathedral Grave Warden #2] Grave Warden Robe","12501003":"[Cathedral Grave Warden #2] Grave Warden Wrap","12501004":"[Cathedral Grave Warden #2] Grave Warden Skirt","12501005":"[Cathedral Grave Warden #2] Large Titanite Shard, Titanite Chunk","12600000":"[Hollow Manservant - Saw] Great Machete","12600001":"[Hollow Manservant - Saw] Titanite Shard","12600002":"[Hollow Manservant - Saw] Rubbish","12600100":"[Hollow Manservant - Pot] Great Machete","12600101":"[Hollow Manservant - Pot] Titanite Shard","12600102":"[Hollow Manservant - Pot] Rubbish","12600200":"[Hollow Manservant - Pot #2] Great Machete","12600201":"[Hollow Manservant - Pot #2] Titanite Shard","12600202":"[Hollow Manservant - Pot #2] Rubbish","12601100":"[Hollow Manservant - Pot #3] Great Machete","12601101":"[Hollow Manservant - Pot #3] Titanite Shard","12601102":"[Hollow Manservant - Pot #3] Rubbish","12800000":"[Lothric Knight - Sword and Shield] Lothric Knight Sword","12800001":"[Lothric Knight - Sword and Shield] Knight's Crossbow","12800002":"[Lothric Knight - Sword and Shield] Lothric Knight Shield","12800003":"[Lothric Knight - Sword and Shield] Lothric Knight Helm","12800004":"[Lothric Knight - Sword and Shield] Lothric Knight Armor","12800005":"[Lothric Knight - Sword and Shield] Lothric Knight Gauntlets","12800006":"[Lothric Knight - Sword and Shield] Lothric Knight Leggings","12800007":"[Lothric Knight - Sword and Shield] Titanite Shard","12800008":"[Lothric Knight - Sword and Shield] Ember","12800100":"[Lothric Knight - Spear and Shield] Lothric Knight Sword","12800101":"[Lothric Knight - Spear and Shield] Lothric Knight Shield","12800102":"[Lothric Knight - Spear and Shield] Lothric Knight Helm","12800103":"[Lothric Knight - Spear and Shield] Lothric Knight Armor","12800104":"[Lothric Knight - Spear and Shield] Lothric Knight Gauntlets","12800105":"[Lothric Knight - Spear and Shield] Lothric Knight Leggings","12800106":"[Lothric Knight - Spear and Shield] Titanite Shard","12800107":"[Lothric Knight - Spear and Shield] Ember","12800108":"[Lothric Knight - Spear and Shield] Refined Gem","12800200":"[Lothric Knight - Spear and Greatshield] Lothric Knight Long Spear","12800201":"[Lothric Knight - Spear and Greatshield] Lothric Knight Greatshield","12800202":"[Lothric Knight - Spear and Greatshield] Lothric Knight Helm","12800203":"[Lothric Knight - Spear and Greatshield] Lothric Knight Armor","12800204":"[Lothric Knight - Spear and Greatshield] Lothric Knight Gauntlets","12800205":"[Lothric Knight - Spear and Greatshield] Lothric Knight Leggings","12800206":"[Lothric Knight - Spear and Greatshield] Titanite Shard","12800207":"[Lothric Knight - Spear and Greatshield] Ember","12800300":"[Lothric Knight - Spear and Greatshield] Lothric Knight Long Spear","12800301":"[Lothric Knight - Spear and Greatshield] Lothric Knight Greatshield","12800302":"[Lothric Knight - Spear and Greatshield] Lothric Knight Helm","12800303":"[Lothric Knight - Spear and Greatshield] Lothric Knight Armor","12800304":"[Lothric Knight - Spear and Greatshield] Lothric Knight Gauntlets","12800305":"[Lothric Knight - Spear and Greatshield] Lothric Knight Leggings","12800306":"[Lothric Knight - Spear and Greatshield] Titanite Shard","12800307":"[Lothric Knight - Spear and Greatshield] Ember","12800308":"[Lothric Knight - Spear and Greatshield] Refined Gem","12800400":"[Lothric Knight] Lothric Knight Sword","12800401":"[Lothric Knight] Knight's Crossbow","12800402":"[Lothric Knight] Lothric Knight Shield","12800403":"[Lothric Knight] Lothric Knight Helm","12800404":"[Lothric Knight] Lothric Knight Armor","12800405":"[Lothric Knight] Lothric Knight Gauntlets","12800406":"[Lothric Knight] Lothric Knight Leggings","12800407":"[Lothric Knight] Titanite Shard","12800408":"[Lothric Knight] Ember","12800409":"[Lothric Knight] Raw Gem","12800420":"[Lothric Knight] Raw Gem","12801000":"[Lothric Knight #1 - Lothric Castle] Lothric Knight Sword","12801001":"[Lothric Knight #1 - Lothric Castle] Knight's Crossbow","12801002":"[Lothric Knight #1 - Lothric Castle] Lothric Knight Shield","12801003":"[Lothric Knight #1 - Lothric Castle] Lothric Knight Helm","12801004":"[Lothric Knight #1 - Lothric Castle] Lothric Knight Armor","12801005":"[Lothric Knight #1 - Lothric Castle] Lothric Knight Gauntlets","12801006":"[Lothric Knight #1 - Lothric Castle] Lothric Knight Leggings","12801007":"[Lothric Knight #1 - Lothric Castle] Large Titanite Shard, Titanite Chunk","12801008":"[Lothric Knight #1 - Lothric Castle] Ember","12801009":"[Lothric Knight #1 - Lothric Castle] Sunlight Medal","12801100":"[Lothric Knight #2 - Lothric Castle]","12801101":"[Lothric Knight #2 - Lothric Castle]","12801102":"[Lothric Knight #2 - Lothric Castle]","12801103":"[Lothric Knight #2 - Lothric Castle]","12801104":"[Lothric Knight #2 - Lothric Castle]","12801105":"[Lothric Knight #2 - Lothric Castle]","12801106":"[Lothric Knight #2 - Lothric Castle]","12801107":"[Lothric Knight #2 - Lothric Castle]","12801108":"[Lothric Knight #2 - Lothric Castle] Sunlight Medal","12801109":"[Lothric Knight #3 - Lothric Castle]","12801200":"[Lothric Knight #3 - Lothric Castle]","12801201":"[Lothric Knight #3 - Lothric Castle]","12801202":"[Lothric Knight #3 - Lothric Castle]","12801203":"[Lothric Knight #3 - Lothric Castle]","12801204":"[Lothric Knight #3 - Lothric Castle]","12801205":"[Lothric Knight #3 - Lothric Castle]","12801206":"[Lothric Knight #3 - Lothric Castle]","12801207":"[Lothric Knight #3 - Lothric Castle]","12801208":"[Lothric Knight #3 - Lothric Castle] Sunlight Medal","12801300":"[Lothric Knight #4 - Lothric Castle]","12801301":"[Lothric Knight #4 - Lothric Castle]","12801302":"[Lothric Knight #4 - Lothric Castle]","12801303":"[Lothric Knight #4 - Lothric Castle]","12801304":"[Lothric Knight #4 - Lothric Castle]","12801305":"[Lothric Knight #4 - Lothric Castle]","12801306":"[Lothric Knight #4 - Lothric Castle]","12801307":"[Lothric Knight #4 - Lothric Castle]","12801308":"[Lothric Knight #4 - Lothric Castle] Sunlight Medal","12801309":"[Lothric Knight #5 - Lothric Castle]","12801400":"[Lothric Knight #5 - Lothric Castle]","12801401":"[Lothric Knight #5 - Lothric Castle]","12801402":"[Lothric Knight #5 - Lothric Castle]","12801403":"[Lothric Knight #5 - Lothric Castle]","12801404":"[Lothric Knight #5 - Lothric Castle]","12801405":"[Lothric Knight #5 - Lothric Castle]","12801406":"[Lothric Knight #5 - Lothric Castle]","12801407":"[Lothric Knight #5 - Lothric Castle] Sunlight Medal","12801408":"[Lothric Knight #5 - Lothric Castle]","12802100":"[Lothric Knight #1 - Grand Archives] Lothric Knight Sword","12802101":"[Lothric Knight #1 - Grand Archives]","12802102":"[Lothric Knight #1 - Grand Archives]","12802103":"[Lothric Knight #1 - Grand Archives]","12802104":"[Lothric Knight #1 - Grand Archives]","12802105":"[Lothric Knight #1 - Grand Archives]","12802106":"[Lothric Knight #1 - Grand Archives]","12802107":"[Lothric Knight #1 - Grand Archives]","12802108":"[Lothric Knight #1 - Grand Archives] Raw Gem","12802300":"[Lothric Knight #2 - Grand Archives] Lothric Knight Long Spear","12802301":"[Lothric Knight #2 - Grand Archives]","12802302":"[Lothric Knight #2 - Grand Archives]","12802303":"[Lothric Knight #2 - Grand Archives]","12802304":"[Lothric Knight #2 - Grand Archives]","12802305":"[Lothric Knight #2 - Grand Archives]","12802306":"[Lothric Knight #2 - Grand Archives]","12802307":"[Lothric Knight #2 - Grand Archives]","12802308":"[Lothric Knight #2 - Grand Archives] Raw Gem","12802400":"[Lothric Knight #3 - Grand Archives] Lothric Knight Greatsword","12802401":"[Lothric Knight #3 - Grand Archives]","12802402":"[Lothric Knight #3 - Grand Archives]","12802403":"[Lothric Knight #3 - Grand Archives]","12802404":"[Lothric Knight #3 - Grand Archives]","12802405":"[Lothric Knight #3 - Grand Archives]","12802406":"[Lothric Knight #3 - Grand Archives]","12802407":"[Lothric Knight #3 - Grand Archives] Lightning Gem","12830000":"[Lothric Knight #4 - Grand Archives] Lothric Knight Sword","12830001":"[Lothric Knight #4 - Grand Archives]","12830002":"[Lothric Knight #4 - Grand Archives]","12830003":"[Lothric Knight #4 - Grand Archives]","12830004":"[Lothric Knight #4 - Grand Archives]","12830005":"[Lothric Knight #4 - Grand Archives]","12830006":"[Lothric Knight #4 - Grand Archives] Titanite Chunk","12830007":"[Lothric Knight #4 - Grand Archives]","12830008":"[Lothric Knight #4 - Grand Archives] Raw Gem","12830100":"[Lothric Knight #5 - Grand Archives] Lothric Knight Greatshield","12830101":"[Lothric Knight #5 - Grand Archives]","12830102":"[Lothric Knight #5 - Grand Archives]","12830103":"[Lothric Knight #5 - Grand Archives]","12830104":"[Lothric Knight #5 - Grand Archives]","12830105":"[Lothric Knight #5 - Grand Archives] Titanite Chunk","12830106":"[Lothric Knight #5 - Grand Archives]","12830107":"[Lothric Knight #5 - Grand Archives] Raw Gem","12830300":"[Lothric Knight #6 - Grand Archives] Lothric Knight Greatsword","12830301":"[Lothric Knight #6 - Grand Archives]","12830302":"[Lothric Knight #6 - Grand Archives]","12830303":"[Lothric Knight #6 - Grand Archives]","12830304":"[Lothric Knight #6 - Grand Archives]","12830305":"[Lothric Knight #6 - Grand Archives] Titanite Chunk","12830306":"[Lothric Knight #6 - Grand Archives]","12830307":"[Lothric Knight #6 - Grand Archives] Lightning Gem","12900000":"[Winged Knight - High Wall] Winged Knight Halberd","12900001":"[Winged Knight - High Wall] Titanite Shard","12900002":"[Winged Knight - High Wall] Blessed Gem","12901000":"[Winged Knight #1 - Lothric Castle] Winged Knight Halberd","12901001":"[Winged Knight #1 - Lothric Castle] Titanite Shard, Titanite Chunk","12901002":"[Winged Knight #1 - Lothric Castle] Blessed Gem","12901100":"[Winged Knight #2 - Lothric Castle] Winged Knight Twinaxes","12901101":"[Winged Knight #2 - Lothric Castle] Titanite Shard, Titanite Chunk","12901102":"[Winged Knight #2 - Lothric Castle] Blessed Gem","12902000":"[Winged Knight #1 - Grand Archives] Winged Knight Halberd","12902001":"[Winged Knight #1 - Grand Archives] Titanite Shard, Titanite Chunk","12902002":"[Winged Knight #1 - Grand Archives] Blessed Gem","12902100":"[Winged Knight #2 - Grand Archives] Winged Knight Twinaxes","12902101":"[Winged Knight #2 - Grand Archives] Titanite Shard, Titanite Chunk","12902102":"[Winged Knight #2 - Grand Archives] Blessed Gem","12902200":"[Winged Knight #3 - Grand Archives] Titanite Slab","13000000":"[Black Knight #1] Black Knight Greatsword","13000001":"[Black Knight #1]","13000002":"[Black Knight #1]","13000003":"[Black Knight #1]","13000004":"[Black Knight #1]","13000005":"[Black Knight #1]","13000006":"[Black Knight #1] Ember","13000100":"[Black Knight #2] Black Knight Greataxe","13000101":"[Black Knight #2]","13000102":"[Black Knight #2]","13000103":"[Black Knight #2]","13000104":"[Black Knight #2]","13000105":"[Black Knight #2]","13000106":"[Black Knight #2] Ember","13001000":"[Black Knight #3] Black Knight Greatsword","13001001":"[Black Knight #3]","13001002":"[Black Knight #3]","13001003":"[Black Knight #3]","13001004":"[Black Knight #3]","13001005":"[Black Knight #3]","13001006":"[Black Knight #3] Ember","13001100":"[Black Knight #4] Black Knight Greataxe","13001101":"[Black Knight #4]","13001102":"[Black Knight #4]","13001103":"[Black Knight #4]","13001104":"[Black Knight #4]","13001105":"[Black Knight #4]","13001106":"[Black Knight #4] Ember","13002000":"[Black Knight #5] Black Knight Greatsword","13002001":"[Black Knight #5]","13002002":"[Black Knight #5]","13002003":"[Black Knight #5]","13002004":"[Black Knight #5]","13002005":"[Black Knight #5]","13002006":"[Black Knight #5] Ember","13002100":"[Black Knight #6] Black Knight Greataxe","13002101":"[Black Knight #6]","13002102":"[Black Knight #6]","13002103":"[Black Knight #6]","13002104":"[Black Knight #6]","13002105":"[Black Knight #6]","13002106":"[Black Knight #6] Ember","13100000":"[Boreal Outrider Knight] Irithyll Straight Sword","13101000":"[Boreal Outrider Knight] Outrider Knight Helm","13101001":"[Boreal Outrider Knight] Outrider Knight Armor","13101002":"[Boreal Outrider Knight] Outrider Knight Gauntlets","13101003":"[Boreal Outrider Knight] Outrider Knight Leggings","13102000":"[Boreal Outrider Knight] Irithyll Straight Sword","13103000":"[Boreal Outrider Knight] Irithyll Rapier","13210000":"[Crystal Sage] Crystal Scroll","13400000":"[Archive Scholar] Scholar's Candlestick","13400001":"[Archive Scholar] Scholar's Robe","13400002":"[Archive Scholar] Crystal Gem","13400100":"[Archive Scholar #2] Scholar's Candlestick","13400101":"[Archive Scholar #2] Scholar's Robe","13400102":"[Archive Scholar #2] Crystal Gem","13500000":"[Irithyllian Slave] Blood Gem","13500001":"[Irithyllian Slave] Blue Bug Pellet","13500100":"[Irithyllian Slave #2] Blood Gem","13500101":"[Irithyllian Slave #2] Blue Bug Pellet","13500200":"[Irithyllian Slave #3] Blood Gem","13500201":"[Irithyllian Slave #3] Blue Bug Pellet","13500300":"[Irithyllian Slave #4] Blood Gem","13500301":"[Irithyllian Slave #4] Blue Bug Pellet","13500400":"[Irithyllian Slave #5] Blood Gem","13500401":"[Irithyllian Slave #5] Claymore","13600000":"[Lycanthrope] Titanite Shard","13600001":"[Lycanthrope] Ember","13700000":"[Lycanthrope Hunter] Titanite Shard","13700001":"[Lycanthrope Hunter] Pike","13800000":"[Serpent-man Summoner] Mendicant's Staff","13900000":"[Serpent-man] Large Titanite Shard, Titanite Chunk","13900001":"[Serpent-man] Lightning Gem","13900100":"[Serpent-man #2] Man Serpent Hatchet","13900101":"[Serpent-man #2] Small Leather Shield","13900102":"[Serpent-man #2] Large Titanite Shard, Titanite Chunk","13900103":"[Serpent-man #2] Lightning Gem","13900200":"[Serpent-man #3] Man Serpent Hatchet","13900201":"[Serpent-man #3] Large Titanite Shard, Titanite Chunk","13900202":"[Serpent-man #3] Lightning Gem","13900300":"[Serpent-man #4] Man Serpent Hatchet","13900301":"[Serpent-man #4] Large Titanite Shard, Titanite Chunk","13900302":"[Serpent-man #4] Lightning Gem","13901000":"[Serpent-man #5] Large Titanite Shard, Titanite Chunk","13910000":"[Giant Serpent-man #1] Large Titanite Shard, Titanite Chunk","13910001":"[Giant Serpent-man #1] Lightning Gem","13910100":"[Giant Serpent-man #2] Large Titanite Shard, Titanite Chunk","13910101":"[Giant Serpent-man #2] Lightning Gem","14100000":"[Silver Knight #1] Silver Knight Shield","14100001":"[Silver Knight #1]","14100002":"[Silver Knight #1]","14100003":"[Silver Knight #1]","14100004":"[Silver Knight #1]","14100005":"[Silver Knight #1]","14100006":"[Silver Knight #1]","14100100":"[Silver Knight #2]","14100101":"[Silver Knight #2]","14100102":"[Silver Knight #2]","14100103":"[Silver Knight #2]","14100104":"[Silver Knight #2]","14100105":"[Silver Knight #2]","14100200":"[Silver Knight #3]","14100201":"[Silver Knight #3]","14100202":"[Silver Knight #3]","14100203":"[Silver Knight #3]","14100204":"[Silver Knight #3]","14100205":"[Silver Knight #3]","14100206":"[Silver Knight #3]","14101000":"[Silver Knight #4]","14101001":"[Silver Knight #4]","14101002":"[Silver Knight #4]","14101003":"[Silver Knight #4]","14101004":"[Silver Knight #4]","14101005":"[Silver Knight #4]","14101006":"[Silver Knight #4] Proof of a Concord Kept","14101100":"[Silver Knight #5]","14101101":"[Silver Knight #5]","14101102":"[Silver Knight #5]","14101103":"[Silver Knight #5]","14101104":"[Silver Knight #5]","14101105":"[Silver Knight #5] Proof of a Concord Kept","14101200":"[Silver Knight #6]","14101201":"[Silver Knight #6]","14101202":"[Silver Knight #6]","14101203":"[Silver Knight #6]","14101204":"[Silver Knight #6]","14101205":"[Silver Knight #6]","14101206":"[Silver Knight #6]","14101207":"[Silver Knight #6] Proof of a Concord Kept","14101300":"[Silver Knight #7]","14101301":"[Silver Knight #7]","14101302":"[Silver Knight #7]","14101303":"[Silver Knight #7]","14101304":"[Silver Knight #7]","14101305":"[Silver Knight #7]","14101306":"[Silver Knight #7] Proof of a Concord Kept","14300000":"[Undead Cleric #1 - Cemetery of Ash] Cleric's Sacred Chime","14300001":"[Undead Cleric #1 - Cemetery of Ash] Fading Soul","14300100":"[Undead Cleric #2 - Cemetery of Ash] Cleric's Sacred Chime","14300101":"[Undead Cleric #2 - Cemetery of Ash] Fading Soul","14300200":"[Undead Cleric #3 - Cemetery of Ash] Cleric's Sacred Chime","14300201":"[Undead Cleric #3 - Cemetery of Ash] Fading Soul","14300300":"[Undead Cleric #4 - Cemetery of Ash] Cleric's Sacred Chime","14300301":"[Undead Cleric #4 - Cemetery of Ash] Fading Soul","14300400":"[Undead Cleric #5 - Cemetery of Ash] Cleric's Sacred Chime","14300401":"[Undead Cleric #5 - Cemetery of Ash] Fading Soul","14300500":"[Undead Cleric #6 - Cemetery of Ash] Cleric's Sacred Chime","14300501":"[Undead Cleric #6 - Cemetery of Ash] Fading Soul","14300600":"[Undead Cleric #7 - Cemetery of Ash] Cleric's Sacred Chime","14300601":"[Undead Cleric #7 - Cemetery of Ash] Fading Soul","14301000":"[Undead Cleric #1 - Untended Graves] Cleric's Sacred Chime","14301001":"[Undead Cleric #1 - Untended Graves] Large Soul of a Deserted Corpse","14301100":"[Undead Cleric #2 - Untended Graves] Cleric's Sacred Chime","14301101":"[Undead Cleric #2 - Untended Graves] Large Soul of a Deserted Corpse","14301200":"[Undead Cleric #3 - Untended Graves] Cleric's Sacred Chime","14301201":"[Undead Cleric #3 - Untended Graves] Large Soul of a Deserted Corpse","14301300":"[Undead Cleric #4 - Untended Graves] Cleric's Sacred Chime","14301301":"[Undead Cleric #4 - Untended Graves] Large Soul of a Deserted Corpse","14301400":"[Undead Cleric #5 - Untended Graves] Cleric's Sacred Chime","14301401":"[Undead Cleric #5 - Untended Graves] Large Soul of a Deserted Corpse","14301500":"[Undead Cleric #6 - Untended Graves] Cleric's Sacred Chime","14301501":"[Undead Cleric #6 - Untended Graves] Large Soul of a Deserted Corpse","14301600":"[Undead Cleric #7 - Untended Graves] Cleric's Sacred Chime","14301601":"[Undead Cleric #7 - Untended Graves] Large Soul of a Deserted Corpse","14400000":"[Sage Prentice #1] Long Sword","14400001":"[Sage Prentice #1] Firebomb","14400002":"[Sage Prentice #1] Crystal Gem","14400100":"[Sage Prentice #2] Broken Straight Sword","14400101":"[Sage Prentice #2] Crystal Gem","14400200":"[Sage Prentice #3] Long Sword","14400201":"[Sage Prentice #3] Firebomb","14400202":"[Sage Prentice #3] Crystal Gem","14400300":"[Sage Prentice #4] Broken Straight Sword","14400301":"[Sage Prentice #4] Crystal Gem","14400400":"[Sage Prentice #5] Light Crossbow","14400401":"[Sage Prentice #5] Standard Bolt","14400402":"[Sage Prentice #5] Crystal Gem","14400500":"[Sage Prentice #6] Pike","14400501":"[Sage Prentice #6] Wooden Shield","14400502":"[Sage Prentice #6] Crystal Gem","14400600":"[Sage Prentice #7] Dagger","14400601":"[Sage Prentice #7] Throwing Knife","14400602":"[Sage Prentice #7] Crystal Gem","14401000":"[#1] Long Sword","14401001":"[#1] Firebomb, Red Bug Pellet","14401100":"[#2] Broken Straight Sword","14401200":"[#3] Long Sword","14401201":"[#3] Firebomb, Red Bug Pellet","14401300":"[#4] Broken Straight Sword","14401301":"[#4] Red Bug Pellet","14401400":"[#5] Light Crossbow","14401401":"[#5] Standard Bolt","14401500":"[#6] Spear","14401501":"[#6] Wooden Shield","14401502":"[#6] Red Bug Pellet","14401600":"[#7] Dagger","14401601":"[#7] Throwing Knife","14401602":"[#7] Red Bug Pellet","14401700":"[#8] Arbalest","14401701":"[#8] Heavy Bolt","14401702":"[#8] Red Bug Pellet","14402000":"[#1] Blessed Gem","14403000":"[#1] Blessed Gem","14450000":"[#1] Greataxe","14450001":"[#1] Crystal Gem","14450100":"[#2] Halberd","14450101":"[#2] Crystal Gem","14460000":"[Sage's Devout] Sorcerer's Staff","14460001":"[Sage's Devout] Crystal Gem","14700000":"[Bonewheel Skeleton] Bonewheel Shield","14700001":"[Bonewheel Skeleton] Large Titanite Shard","20200000":"[Undead Dog - High Wall] None","20201000":"[Large Undead Dog - High Wall] None","20202000":"[Undead Dog] None","20203000":"[Undead Dog] None","20204000":"[Undead Dog] None","20210000":"[Small Undead Dog - High Wall] None","20211000":"[Small Undead Dog - High Wall] None","20212000":"[Undead Dog] None","20213000":"[Undead Dog] None","20300000":"[Pontiff Knight #1] Pontiff Knight Curved Sword","20300001":"[Pontiff Knight #1] Pontiff Knight Shield","20300002":"[Pontiff Knight #1] Pontiff Knight Crown","20300003":"[Pontiff Knight #1] Pontiff Knight Armor","20300004":"[Pontiff Knight #1] Pontiff Knight Gauntlets","20300005":"[Pontiff Knight #1] Pontiff Knight Leggings","20300006":"[Pontiff Knight #1] Large Titanite Shard","20300100":"[Pontiff Knight #2] Pontiff Knight Curved Sword","20300101":"[Pontiff Knight #2] Pontiff Knight Crown","20300102":"[Pontiff Knight #2] Pontiff Knight Armor","20300103":"[Pontiff Knight #2] Pontiff Knight Gauntlets","20300104":"[Pontiff Knight #2] Pontiff Knight Leggings","20300105":"[Pontiff Knight #2] Large Titanite Shard","20300200":"[Pontiff Knight #3] Pontiff Knight Great Scythe","20300201":"[Pontiff Knight #3] Pontiff Knight Crown","20300202":"[Pontiff Knight #3] Pontiff Knight Armor","20300203":"[Pontiff Knight #3] Pontiff Knight Gauntlets","20300204":"[Pontiff Knight #3] Pontiff Knight Leggings","20300205":"[Pontiff Knight #3] Large Titanite Shard","20400000":"[Monstrosity of Sin #1] Dung Pie","20400001":"[Monstrosity of Sin #1] Dung Pie","20400010":"[Monstrosity of Sin #2] Dung Pie","20400011":"[Monstrosity of Sin #2] Dung Pie","20400020":"[Monstrosity of Sin #3] Eleonora","20600000":"[Corpse-grub #1] Soul of a Deserted Corpse, Large Soul of a Deserted Corpse","20601000":"[Corpse-grub #2] None","20601010":"[Corpse-grub #2] Great Magic Shield","20700000":"[Wretch #1] Pale Pine Resin","20700100":"[Wretch #2] Tailbone Spear","20700101":"[Wretch #2] Pale Pine Resin","20700200":"[Wretch #3] Tailbone Short Sword","20700201":"[Wretch #3] Pale Pine Resin","20800000":"None","21000000":"[Sewer Centipede - Irithyll] Green Blossom, Budding Green Blossom","21001000":"[Sewer Centipede - Profaned Capital] Purging Stone","21100000":"[Hound-rat] Soul of a Deserted Corpse","21101000":"[Hound-rat] Soul of a Deserted Corpse","21102000":"[Hound-rat] Soul of a Deserted Corpse","21103000":"[Hound-rat] Soul of a Deserted Corpse","21200000":"[Mimic] Symbol of Avarice","21200001":"[Mimic] Deep Braille Divine Tome","21201000":"[Mimic] Symbol of Avarice","21201001":"[Mimic] Sunlight Straight Sword","21201100":"[Mimic] Symbol of Avarice","21201101":"[Mimic] Titanite Scale","21202000":"[Mimic] Symbol of Avarice","21202001":"[Mimic] Black Blade","21203000":"[Mimic] Symbol of Avarice","21203001":"[Mimic] Dragonslayer Lightning Arrow","21203010":"[Mimic] Symbol of Avarice","21203011":"[Mimic] Titanite Scale","21203020":"[Mimic] Symbol of Avarice","21203021":"[Mimic] Rusted Gold Coin","21203030":"[Mimic] Symbol of Avarice","21203031":"[Mimic] Court Sorcerer's Staff","21203040":"[Mimic] Symbol of Avarice","21203041":"[Mimic] Greatshield of Glory","21203050":"[Mimic] Symbol of Avarice","21203051":"[Mimic] Estus Shard","21203100":"[Mimic] Symbol of Avarice","21203101":"[Mimic] Dark Clutch Ring","21204000":"[Mimic] Symbol of Avarice","21204001":"[Mimic] Golden Ritual Spear","21205000":"[Mimic] Symbol of Avarice","21205001":"[Mimic] Deep Battle Axe","21206000":"[Mimic] Symbol of Avarice","21206001":"[Mimic] Ring of the Evil Eye +3","21300000":"[Writhing Rotten Flesh] Titanite Shard","21301000":"[Writhing Rotten Flesh] Titanite Shard","21310000":"[Writhing Rotten Flesh] Titanite Shard","21311000":"[Writhing Rotten Flesh] Titanite Shard","21320000":"[Smouldering Rotten Flesh] Titanite Shard","21320001":"[Smouldering Rotten Flesh] Fire Gem","21400000":"[Basilisk] Mossfruit","21401000":"[Basilisk] Mossfruit","21402000":"[Basilisk] Mossfruit","21500000":"[Crystal Lizard] Raw Gem","21501000":"[Crystal Lizard] Sharp Gem","21501010":"[Crystal Lizard] Heavy Gem","21502000":"[Crystal Lizard] Crystal Gem","21502010":"[Crystal Lizard] Twinkling Titanite","21502020":"[Crystal Lizard] Twinkling Titanite","21502030":"[Crystal Lizard] Large Titanite Shard","21502040":"[Crystal Lizard] Large Titanite Shard","21502050":"[Crystal Lizard] Heavy Gem","21502060":"[Crystal Lizard] Twinkling Titanite","21503000":"[Crystal Lizard] Twinkling Titanite","21503010":"[Crystal Lizard] Twinkling Titanite","21504000":"[Crystal Lizard] Twinkling Titanite","21504010":"[Crystal Lizard] Twinkling Titanite","21505000":"[Crystal Lizard] Twinkling Titanite","21505001":"[Crystal Lizard] Chaos Gem","21505010":"[Crystal Lizard] Crystal Gem","21505011":"[Crystal Lizard] Twinkling Titanite","21505020":"[Crystal Lizard] Twinkling Titanite","21505030":"[Crystal Lizard] Titanite Scale","21505040":"[Crystal Lizard] Twinkling Titanite","21505041":"[Crystal Lizard] Heavy Gem","21505050":"[Crystal Lizard] Twinkling Titanite","21505051":"[Crystal Lizard] Sharp Gem","21505060":"[Crystal Lizard] Twinkling Titanite","21505061":"[Crystal Lizard] Refined Gem","21505070":"[Crystal Lizard] Twinkling Titanite","21506000":"[Crystal Lizard] Twinkling Titanite","21506010":"[Crystal Lizard] Fire Gem","21506020":"[Crystal Lizard] Twinkling Titanite","21506030":"[Crystal Lizard] Titanite Chunk","21506040":"[Crystal Lizard] Chaos Gem","21507000":"[Crystal Lizard] Twinkling Titanite","21507010":"[Crystal Lizard] Simple Gem","21507020":"[Crystal Lizard] Twinkling Titanite","21507030":"[Crystal Lizard] Twinkling Titanite","21507040":"[Crystal Lizard] Twinkling Titanite","21508000":"[Crystal Lizard] Titanite Chunk","21508010":"[Crystal Lizard] Twinkling Titanite","21508020":"[Crystal Lizard] Twinkling Titanite","21508030":"[Crystal Lizard] Titanite Scale","21509000":"[Crystal Lizard] Twinkling Titanite","21509500":"[Crystal Lizard] Twinkling Titanite","21509600":"[Crystal Lizard] Twinkling Titanite","21509610":"[Crystal Lizard] Twinkling Titanite","21509620":"[Crystal Lizard] Large Titanite Shard","21509630":"[Crystal Lizard] Twinkling Titanite","21509640":"[Crystal Lizard] Twinkling Titanite","21509650":"[Crystal Lizard] Twinkling Titanite","21509660":"[Crystal Lizard] Twinkling Titanite","21509670":"[Crystal Lizard] Twinkling Titanite","21509680":"[Crystal Lizard] Twinkling Titanite","21509690":"[Crystal Lizard] Large Titanite Shard","21509700":"[Crystal Lizard] Twinkling Titanite","21509800":"[Crystal Lizard] Twinkling Titanite","21509801":"[Crystal Lizard] Titanite Scale","21509810":"[Crystal Lizard] Titanite Scale","21509820":"[Crystal Lizard] Twinkling Titanite","21509830":"[Crystal Lizard] Twinkling Titanite","21509840":"[Crystal Lizard] Twinkling Titanite","21509850":"[Crystal Lizard] Twinkling Titanite","21509860":"[Crystal Lizard] Twinkling Titanite","21509861":"[Crystal Lizard] Titanite Scale","21509870":"[Crystal Lizard] Twinkling Titanite","21800000":"[Yellowfinger Heysel] Undead Hunter Charm","21800010":"[Yellowfinger Heysel] Heysel Pick","21800011":"[Yellowfinger Heysel] Xanthous Crown","21800100":"Duel Charm","21800110":"Red Sign Soapstone","21801000":"Undead Hunter Charm","21801100":"Duel Charm","21900000":"[Gargoyle - Profaned Capital] Gargoyle Flame Hammer","21900100":"[Gargoyle - Profaned Capital] Gargoyle Flame Spear","21910000":"[Gargoyle - Grand Archives] Gargoyle Flame Hammer","21910100":"[Gargoyle - Grand Archives] Gargoyle Flame Spear","22000000":"[Carthus Sandworm] Lightning Stake","22000001":"[Carthus Sandworm] Undead Bone Shard","22100000":"[Corvian #1 - Road of Sacrifices] Corvian Greatknife","22100001":"[Corvian #1 - Road of Sacrifices] Shriving Stone","22100100":"[Corvian #2 - Road of Sacrifices] Great Corvian Scythe","22100101":"[Corvian #2 - Road of Sacrifices] Shriving Stone","22100200":"[Corvian #3 - Road of Sacrifices] Storyteller's Staff","22100201":"[Corvian #3 - Road of Sacrifices] Hollow Gem","22101000":"[Corvian #1 - Farron Keep] Corvian Greatknife","22101001":"[Corvian #1 - Farron Keep] Shriving Stone","22101100":"[Corvian #2 - Farron Keep] Great Corvian Scythe","22101101":"[Corvian #2 - Farron Keep] Shriving Stone","22101200":"[Corvian #3 - Farron Keep] Storyteller's Staff","22101201":"[Corvian #3 - Farron Keep] Hollow Gem","22102000":"[Corvian #1 - Irithyll] Corvian Greatknife","22102001":"[Corvian #1 - Irithyll] Shriving Stone","22102100":"[Corvian #2 - Irithyll] Great Corvian Scythe","22102101":"[Corvian #2 - Irithyll] Shriving Stone","22102200":"[Corvian #3 - Irithyll] Storyteller's Staff","22102201":"[Corvian #3 - Irithyll] Hollow Gem","22103000":"[Corvian #1 - Untended Graves] Corvian Greatknife","22103001":"[Corvian #1 - Untended Graves]","22103100":"[Corvian #2 - Untended Graves]","22103101":"[Corvian #2 - Untended Graves]","22103200":"[Corvian #3 - Untended Graves]","22103201":"[Corvian #3 - Untended Graves]","22300000":"[Jailer #1] Soldering Iron","22300001":"[Jailer #1] Aristocrat's Mask","22300002":"[Jailer #1] Jailer Robe","22300003":"[Jailer #1] Jailer Gloves","22300004":"[Jailer #1] Jailer Trousers","22300005":"[Jailer #1] Magic Gem","22300010":"[Jailer #2] Jailer's Key Ring","22300100":"[Jailer Handmaid #1] Handmaid's Dagger","22300101":"[Jailer Handmaid #1] Rusted Coin, Rusted Gold Coin","22500000":"[Sulyvahn's Beast #1] Pontiff's Right Eye","22501000":"[Sulyvahn's Beast #2] None","22501010":"[Sulyvahn's Beast #2] Ring of Favor","22600000":"None","22700000":"[Great Crab - Road of Sacrifices] Titanite Shard","22700010":"[Great Crab - Road of Sacrifices] Titanite Shard","22700020":"[Great Crab - Road of Sacrifices] Great Swamp Ring","22701000":"[Great Crab - Smouldering Lake] Titanite Shard","22701001":"[Great Crab - Smouldering Lake] Large Titanite Shard","22702000":"[Great Crab - Farron Keep] Titanite Shard","22702010":"[Great Crab - Farron Keep] Lingering Dragoncrest Ring","22710000":"[Lesser Crab] Bloodred Moss Clump, Purple Moss Clump","22711000":"[Lesser Crab] Blooming Purple Moss Clump, Rime-blue Moss Clump","22800000":"[Giant Rat] Bloodbite Ring","22800010":"[Giant Rat] Large Soul of a Deserted Corpse","22801000":"[Giant Rat] Soul of an Unknown Traveler","22802000":"[Giant Rat] Large Soul of an Unknown Traveler","22900000":"None","22910000":"None","30200000":"[Giant Slave #1 - Irithyll] Stalk Dung Pie","30200001":"[Giant Slave #1 - Irithyll] Titanite Shard, Large Titanite Shard","30200100":"[Giant Slave #2 - Irithyll] Stalk Dung Pie","30200101":"[Giant Slave #2 - Irithyll] Titanite Shard, Large Titanite Shard","30210000":"[Giant Slave - Cathedral of the Deep] Large Titanite Shard","30210001":"[Giant Slave - Cathedral of the Deep] Dung Pie","30211000":"[Giant Slave - Irithyll Dungeon] Titanite Chunk","30211001":"[Giant Slave - Irithyll Dungeon] Dung Pie","30600000":"[Demon] Fire Gem","30601000":"[Demon] Soul of a Demon","30700000":"[Demon Cleric] Chaos Gem","30700001":"[Demon Cleric] Titanite Shard, Large Titanite Shard","30900000":"[Cage Spider] Fading Soul","30901000":"[Cage Spider] Fading Soul","31000000":"[#] Titanite Scale","31001000":"[#] Titanite Scale","31002000":"[#] Titanite Scale","31004000":"[#] Titanite Scale","31100000":"[Deep Acursed] Aldrich's Sapphire","31101000":"[#] Titanite Shard, Large Titanite Shard, Titanite Chunk","31102000":"[Deep Acursed] Aldrich's Ruby","31200000":"[Elder Ghru #1] Poison Gem, Heavy Gem","31200001":"[Elder Ghru #1] Stone Greatshield","31200002":"[Elder Ghru #1] Ember","31200100":"[Elder Ghru #2] Poison Gem, Heavy Gem","31200101":"[Elder Ghru #2] Stone Greatshield","31200102":"[Elder Ghru #2] Ember","31200110":"[Elder Ghru #3] Pharis's Hat","31200200":"[Elder Ghru #3] Poison Gem, Heavy Gem","31200201":"[Elder Ghru #3] Stone Greatshield","31200202":"[Elder Ghru #3] Ember","31200210":"[Elder Ghru #4] Black Bow of Pharis","31410000":"[Ancient Wyvern] Large Titanite Shard","31411000":"[Ancient Wyvern] Titanite Chunk","31411001":"[Ancient Wyvern] Ember","31411100":"[Ancient Wyvern] Titanite Chunk","31411101":"[Ancient Wyvern] Ember","31412000":"[Ancient Wyvern] Titanite Chunk","31412001":"[Ancient Wyvern] Titanite Scale","31412002":"[Ancient Wyvern] Twinkling Titanite","31600000":"[Dragonslayer Armour] Iron Dragonslayer Helm","31600001":"[Dragonslayer Armour] Iron Dragonslayer Armor","31600002":"[Dragonslayer Armour] Iron Dragonslayer Gauntlets","31600003":"[Dragonslayer Armour] Iron Dragonslayer Leggings","31700000":"[Darkwraith #1] Dark Sword","31700001":"[Darkwraith #1] Dark Mask","31700002":"[Darkwraith #1] Dark Armor","31700003":"[Darkwraith #1] Dark Gauntlets","31700004":"[Darkwraith #1] Dark Leggings","31700005":"[Darkwraith #1] Pale Tongue","31700006":"[Darkwraith #1] Cracked Red Eye Orb","31701000":"[Darkwraith #2] Dark Sword","31701001":"[Darkwraith #2] Dark Mask","31701002":"[Darkwraith #2] Dark Armor","31701003":"[Darkwraith #2] Dark Gauntlets","31701004":"[Darkwraith #2] Dark Leggings","31701005":"[Darkwraith #2] Pale Tongue","32100000":"[Poisonhorn Bug] Rotten Pine Resin","32200000":"[Rock Lizard] Titanite Scale","32200001":"[Rock Lizard] Twinkling Titanite","52000000":"[Stray Demon] Soul of a Stray Demon","52210000":"[Deacon #1] None","52210100":"[Deacon #1] None","52210200":"[Deacon #2] Deep Gem","52210201":"[Deacon #2] Deacon Robe","52210202":"[Deacon #2] Deacon Skirt","52220000":"[Deacon #3] None","52220100":"[Deacon #3] None","52220200":"[Deacon #3] Deep Gem","52220201":"[Deacon #3] Deacon Robe","52220202":"[Deacon #3] Deacon Skirt","52230000":"[Deacon #4] None","52230100":"[Deacon #5] None","52230200":"[Deacon #6] Deep Gem","52230201":"[Deacon #6] Deacon Robe","52230202":"[Deacon #6] Deacon Skirt","52230310":"[Deacon #1 - Irithyll] Deep Ring","52250000":"[Deacon #2 - Irithyll] Deep Gem","52250001":"[Deacon #2 - Irithyll] Deacon Robe","52250002":"[Deacon #2 - Irithyll] Deacon Skirt","52250003":"[Deacon #2 - Irithyll] Human Dregs","52250100":"[Deacon #3 - Irithyll] Deep Gem","52250101":"[Deacon #3 - Irithyll] Deacon Robe","52250102":"[Deacon #3 - Irithyll] Deacon Skirt","52250103":"[Deacon #4 - Irithyll] Human Dregs","52260000":"[Deacon #4 - Irithyll] Deep Gem","52260001":"[Deacon #4 - Irithyll] Deacon Robe","52260002":"[Deacon #4 - Irithyll] Deacon Skirt","52260003":"[Deacon #5 - Irithyll] Human Dregs","52260100":"[Deacon #5 - Irithyll] Deep Gem","52260101":"[Deacon #5 - Irithyll] Deacon Robe","52260102":"[Deacon #5 - Irithyll] Deacon Skirt","52260103":"[Deacon #5 - Irithyll] Human Dregs","52270000":"[Deacon #1 - Anor Londo] Deep Gem","52270001":"[Deacon #1 - Anor Londo] Deacon Robe","52270002":"[Deacon #1 - Anor Londo] Deacon Skirt","52270003":"[Deacon #1 - Anor Londo] Human Dregs","52270100":"[Deacon #2 - Anor Londo] Deep Gem","52270101":"[Deacon #2 - Anor Londo] Deacon Robe","52270102":"[Deacon #2 - Anor Londo] Deacon Skirt","52270103":"[Deacon #2 - Anor Londo] Human Dregs","52400000":"[Irithyll Fire Witch] Immolation Tinder","52400001":"[Irithyll Fire Witch] Fire Witch Helm","52400002":"[Irithyll Fire Witch] Fire Witch Armor","52400003":"[Irithyll Fire Witch] Fire Witch Gauntlets","52400004":"[Irithyll Fire Witch] Fire Witch Leggings","52400005":"[Irithyll Fire Witch] Large Titanite Shard","62300001":"Human Dregs","62300011":"Human Dregs","62310001":"Human Dregs","62310011":"Human Dregs","62600004":"Filianore's Spear Ornament","70010000":"INVALID","95040000":"INVALID","95040001":"Fading Soul","95040002":"Fading Soul","95040003":"Fading Soul","95040004":"INVALID","203000030":"Large Soul of a Proud Paladin","203000040":"Soul of a Proud Paladin","203000110":"Soul of a Proud Paladin","203000240":"Soul of a Proud Paladin","203000310":"Large Soul of a Proud Paladin","203000340":"Soul of a Proud Paladin","203000370":"Large Soul of a Proud Paladin","203000410":"Soul of a Proud Paladin","203000450":"Soul of a Proud Paladin","203000540":"Soul of a Proud Paladin","203000610":"Soul of a Proud Paladin","203010090":"Soul of a Champion","203010210":"Soul of a Venerable Old Hand","203010230":"Soul of a Champion","203010260":"Large Soul of a Seasoned Warrior","203010290":"Soul of a Venerable Old Hand","203010320":"Large Soul of a Seasoned Warrior","203010420":"Large Soul of a Seasoned Warrior","203100070":"Soul of an Intrepid Hero","203100130":"Large Soul of a Proud Paladin","203100150":"Large Soul of a Proud Paladin","203100200":"Soul of an Intrepid Hero","203100240":"Soul of an Intrepid Hero","203100380":"Soul of an Intrepid Hero","203100550":"Large Soul of a Proud Paladin","203100610":"Large Soul of a Proud Paladin","203100650":"Large Soul of a Proud Paladin","203100680":"Soul of a Seasoned Warrior","203100770":"Large Soul of a Proud Paladin","203200040":"Soul of an Old Hand","203200080":"Soul of a Seasoned Warrior","203200110":"Soul of a Venerable Old Hand","203200120":"Large Soul of a Seasoned Warrior","203200180":"Soul of an Old Hand","203200190":"Soul of a Champion","203200270":"Soul of a Great Champion","203300050":"Soul of an Intrepid Hero","203300080":"Large Soul of an Intrepid Hero","203300100":"Soul of an Intrepid Hero","203300545":"Large Soul of a Seasoned Warrior","203300555":"Large Soul of a Seasoned Warrior","203300600":"Soul of an Intrepid Hero","203300700":"Soul of a Seasoned Warrior","203300710":"Large Soul of an Intrepid Hero","203410020":"Soul of a Champion","203410060":"Soul of a Champion","203410070":"Soul of a Seasoned Warrior","203410210":"Soul of a Great Champion","203410260":"Soul of an Old Hand","203410330":"Soul of a Great Champion","203500070":"Large Soul of an Intrepid Hero","203500270":"Soul of a Seasoned Warrior","203500300":"Large Soul of an Intrepid Hero","203500330":"Large Soul of an Intrepid Hero","203500340":"Large Soul of an Intrepid Hero","203500460":"Large Soul of an Intrepid Hero","203500490":"Soul of a Seasoned Warrior","203500560":"Soul of a Seasoned Warrior","203500690":"Large Soul of an Intrepid Hero","203700020":"Large Soul of a Seasoned Warrior","203700040":"Soul of an Old Hand","203700050":"Soul of an Old Hand","203700150":"Large Soul of a Seasoned Warrior","203700180":"Soul of an Old Hand","203700360":"Large Soul of a Seasoned Warrior","203700430":"Large Soul of a Seasoned Warrior","203700440":"Soul of an Old Hand","203700500":"Soul of an Old Hand","203700660":"Soul of a Champion","203700720":"Large Soul of a Seasoned Warrior","203700740":"Soul of an Old Hand","203700770":"Soul of a Venerable Old Hand","203800020":"Soul of a Seasoned Warrior","203800170":"Large Soul of a Seasoned Warrior","203800380":"Large Soul of a Seasoned Warrior","203800470":"Soul of a Seasoned Warrior","203800530":"Soul of a Champion","203800570":"Large Soul of an Intrepid Hero","203900030":"Large Soul of a Seasoned Warrior","203900070":"Large Soul of a Seasoned Warrior","203900110":"Soul of an Old Hand","203900120":"Soul of a Champion","203900190":"Soul of an Old Hand","203900270":"Soul of a Venerable Old Hand","203900370":"Soul of a Venerable Old Hand","204000020":"Soul of a Proud Paladin","204000080":"Soul of an Intrepid Hero","204000110":"Soul of an Intrepid Hero","204000230":"Soul of a Champion","204000290":"Soul of a Champion","204500020":"Large Soul of an Intrepid Hero","204500040":"Large Soul of an Intrepid Hero","204500110":"Large Soul of an Intrepid Hero","204500140":"Large Soul of an Intrepid Hero","204500170":"Large Soul of an Intrepid Hero","204500220":"Large Soul of an Intrepid Hero","204500230":"Large Soul of an Intrepid Hero","204500250":"Soul of a Champion","204500390":"Soul of a Champion","204500400":"Soul of a Champion","204500410":"Soul of a Great Champion","204500610":"Large Soul of an Intrepid Hero","204500660":"Large Soul of an Intrepid Hero","204500670":"Soul of a Venerable Old Hand","204500680":"Large Soul of an Intrepid Hero","204500800":"Soul of a Venerable Old Hand","204500830":"Soul of an Old Hand","205000010":"Soul of an Old Hand","205000080":"Soul of a Champion","205000210":"Soul of a Venerable Old Hand","205000440":"Soul of a Venerable Old Hand","205000490":"Soul of a Venerable Old Hand","205100070":"Soul of a Champion","205100080":"Soul of a Venerable Old Hand","205100220":"Soul of a Great Champion","205100290":"Soul of a Great Champion","205100420":"Soul of an Old Hand","205100510":"Soul of a Champion","205100590":"Soul of a Venerable Old Hand","205100650":"Soul of a Venerable Old Hand","205100710":"Soul of an Old Hand","205100810":"Soul of a Venerable Old Hand","205100830":"Soul of an Old Hand","205100860":"Soul of a Champion","210900000":"Throwing Knife","263300001":"Soul of an Intrepid Hero","263300002":"Soul of a Seasoned Warrior","263300003":"Soul of a Champion","503400040":"Green Blossom","603400040":"Throwing Knife","703400040":"Charcoal Pine Resin"},"KnockBackParam":{"0":"Generic -- 汎用","1":"For PC -- PC用","10":"Enemy generic Old -- 敵汎用old"},"KnowledgeLoadScreenItemParam":{},"LoadBalancerDrawDistScaleParam":{},"LoadBalancerParam":{},"LockCamParam":{"0":"Default value -- デフォルト値","1":"Summon Magic for range designation -- 召喚魔法射程距離指定用","2":"【 SP 】 Test Map for Hammer warfare _ Normal Time -- 【SP】テストマップハンマー戦用_通常時","3":"【 SP 】 Test Map for hammer warfare _ near -- 【SP】テストマップハンマー戦用_近接時","101":"Short -- 近距離","102":"Medium -- 中距離","103":"Long distance -- 遠距離","104":"Centipede only -- ムカデ専用","105":"Dragon Zombie Only -- ドラゴンゾンビ専用","110":"usually dark -- 通常_暗闇","111":"Close range _ Darkness -- 近距離_暗闇","112":"Medium Range _ Darkness -- 中距離_暗闇","113":"Distant Darkness -- 遠距離_暗闇","200":"【 Protomap 】 Darkness -- 【プロトマップ】暗闇","210":"[DLC] warmonger camera of the abyss -- 【DLC】深淵の主戦用カメラ","211":"[DLC] Camera for al-Tri-race -- 【DLC】アルトリウス戦用カメラ","212":"[DLC] black dragon Warfare camera -- 【DLC】黒竜戦用カメラ","213":"[DLC] chain person war camera -- 【DLC】鎖人戦用カメラ","214":"[DLC] Camera for Go warfare -- 【DLC】ゴー戦用カメラ","220":"[DLC] Exclusive lock camera for the arena -- 【DLC】闘技場専用ロックカメラ","1000":"Phagocytic Dragon Only -- 貪食ドラゴン専用","1010":"Camera for Gargoyle -- ガーゴイル用カメラ","1100":"【 1st map 】 Suspension Bridge -- 【1stマップ】つり橋","1101":"[1st map] Long distance -- 【1stマップ】遠距離","1102":"[1st map] Boss Room -- 【1stマップ】ボス部屋","1103":"[1st map] Old boss Room -- 【1stマップ】旧ボス部屋","1210":"[DLC] Gold Chimera Camera -- 【DLC】金キメラ用カメラ","1300":"Near the grave -- 墓場近距離","1301":"Grave distance -- 墓場遠距離","1410":"Dedicated to the abolition of the visor -- 廃都イザリス専用","1510":"Camera for Gargoyle -- ガーゴイル用カメラ","1511":"Camera for Gargoyle Night -- ガーゴイル用カメラ_夜用","1700":"Sheath Combat Camera -- シース戦闘用カメラ","2000":"[SP] vs Parish General -- 【SP】vs教区長 通常","2001":"[SP] vs Parish Long distance -- 【SP】vs教区長 近距離","2002":"【 SP 】 Ohashi -- 【SP】大橋","2003":"【 SP 】 Full of statues -- 【SP】彫像いっぱい","2004":"【 SP 】 Avoiding sunflowers -- 【SP】ひまわり回避","2010":"[SP] vs fire Beast usually -- 【SP】vs炎の獣 通常","2011":"[SP] vs Beast of flames close range -- 【SP】vs炎の獣 近距離","3000":"[FDP] vs Tracker -- 【FDP】vs追跡者","3001":"[FDP] vs Tracker (throw camera) -- 【FDP】vs追跡者(投げ時カメラ)","3002":"[FDP] vs Tracker (2-knife-throwing camera) -- 【FDP】vs追跡者(2刀流投げ時カメラ)","3010":"[FDP] Camera for distant view -- 【FDP】遠景用カメラ","3100":"[FDP] Ceremonial camera -- 【FDP】儀式用カメラ","3101":"[FDP] Ceremonial cameras _ on the way -- 【FDP】儀式用カメラ_途中変更","3102":"[FDP] Camera for flame ritual changed on the way -- 【FDP】炎儀式用カメラ_途中変更","3120":"[FDP] Forest Sacred Beast _ lock-on camera -- 【FDP】森の霊獣_ロックオンカメラ","3160":"[FDP] Guardian Knight of the Dragon -- 【FDP】竜の守護騎士","3200":"[FDP] for Segunda -- 【FDP】グンダ用","3201":"[FDP] for snake spirits possession segunda -- 【FDP】蛇霊憑きグンダ用","3202":"[FDP] for the snake spirits -- 【FDP】蛇霊用","3203":"[FDP] for elevators -- 【FDP】エレベーター用","3204":"[FDP] Possession segunda-throwing snake spirits -- 【FDP】蛇霊憑きグンダ投げ演出","3300":"[FDP] Full Armor Beast -- 【FDP】フルアーマー獣","3301":"[FDP] Stench crab -- 【FDP】死臭蟹","5020":"[FDP] Crimson Bat -- 【FDP】クリムゾンバット","5030":"[FDP] King of the Storm (cowgirl) -- 【FDP】嵐の王(騎乗)","5140":"[FDP] The old king of caries -- 【FDP】蝕の老王","5160":"[FDP] King of the Dead -- 【FDP】死霊の王","5180":"[FDP] Cursed Colossus test -- 【FDP】呪われた巨像テスト","5190":"[FDP] King of the disused city: the first half -- 【FDP】廃都の孤王:前半戦","5191":"[FDP] King of the disused city: Late war -- 【FDP】廃都の孤王:後半戦","5230":"[FDP] Mother Dragon -- 【FDP】母ドラゴン","5250":"[FDP] Prince of Darkness -- 【FDP】闇の双皇子","5260":"[FDP] Mad Warrior Hallec -- 【FDP】狂戦士ハレック","6000":"[FDP] Crystal elders _ only when throwing -- 【FDP】結晶の古老_投げ時のみ","7370":"[FDP] Anole _ starting point -- 【FDP】アノール_スタート地点","8000":"[FDP] Ceiling Low Place -- 【FDP】天井低い場所","9000":"[FDP] for servant ride -- 【FDP】下男乗車用","10000":"Short distance camera -- 近距離カメラ","10001":"Medium Range Camera -- 中距離カメラ","10002":"Long Distance Camera -- 遠距離カメラ","10003":"Dark Rock -- 暗闇ロック","10004":"【 Protomap 】 Darkness -- 【プロトマップ】暗闇","10005":"[Protomap] a little wide -- 【プロトマップ】ちょっと広い","10006":"[FDP] Test -- 【FDP】テスト","10100":"[FDP] Narrow-wide test _ narrow camera -- 【FDP】狭~広テスト_狭いカメラ","10101":"[FDP] Narrow to wide test _ wide Camera -- 【FDP】狭~広テスト_広いカメラ","10102":"[FDP] Stoning machine test -- 【FDP】投石機テスト","10103":"[FDP] Death of a stoned machine -- 【FDP】投石機死亡","10104":"[FDP] death-following stoning machine -- 【FDP】投石機死亡追従","10120":"[FDP] is swallowed slime -- 【FDP】スライム飲み込まれ","10121":"[FDP] is swallowed slime -- 【FDP】スライム飲み込まれ","10200":"[FDP] Entrance door of the candle room -- 【FDP】蝋燭部屋の入り口扉","10201":"[FDP] Candle Room camera -- 【FDP】蝋燭部屋カメラ","10202":"[FDP] Candle room warp camera -- 【FDP】蝋燭部屋ワープ時カメラ","10300":"[FDP] Wolf Kara -- 【FDP】ウルフ飛び掛かられ時","10400":"[FDP] Player map start -- 【FDP】プレイヤーマップスタート時","90000":"Covert Camera-Zoom in -- 隠密カメラ-ズームイン","90001":"Covert Camera-Zoom Out -- 隠密カメラ-ズームアウト","90010":"Monster House Boss Camera -- モンスターハウスボス用カメラ"},"LodParam":{"0":"Default settings -- デフォルト設定","1":"L0 Main -- L0メイン","2":"L1 Main -- L1メイン","3":"Not LOD -- LODしない","4":"Testparm -- testparm","10":"Small size -- サイズ小","11":"Medium size -- サイズ中","12":"Large size -- サイズ大","13":"Size Oversized -- サイズ特大","19":"Don't switch to LOD models -- LODモデルに切り替わらない","20":"Lake Beast -- 湖獣","60":"Not switch to low texture -- lowテクスチャに切り替わらない","61":"Not switch to the low texture that does not switch to the LOD model -- LODモデルに切り替わらない lowテクスチャに切り替わらない","62":"L2 only (Reflection scene default) -- L2のみ(反射シーンデフォルト)","63":"Do not switch to LOD model (for poly play) -- LODモデルに切り替わらない(ポリ劇用)"},"LodParam_ps4":{"0":"Default settings -- デフォルト設定","1":"L0 Main -- L0メイン","2":"L1 Main -- L1メイン","3":"Not LOD -- LODしない","4":"Testparm -- testparm","10":"Small size -- サイズ小","11":"Medium size -- サイズ中","12":"Large size -- サイズ大","13":"Size Oversized -- サイズ特大","19":"Don't switch to LOD models -- LODモデルに切り替わらない","20":"Lake Beast -- 湖獣","60":"Not switch to low texture -- lowテクスチャに切り替わらない","61":"Not switch to the low texture that does not switch to the LOD model -- LODモデルに切り替わらない lowテクスチャに切り替わらない","62":"L2 only (Reflection scene default) -- L2のみ(反射シーンデフォルト)","63":"Do not switch to LOD model (for poly play) -- LODモデルに切り替わらない(ポリ劇用)"},"LodParam_xb1":{"0":"Default settings -- デフォルト設定","1":"L0 Main -- L0メイン","2":"L1 Main -- L1メイン","3":"Not LOD -- LODしない","4":"Testparm -- testparm","10":"Small size -- サイズ小","11":"Medium size -- サイズ中","12":"Large size -- サイズ大","13":"Size Oversized -- サイズ特大","19":"Don't switch to LOD models -- LODモデルに切り替わらない","20":"Lake Beast -- 湖獣","60":"Not switch to low texture -- lowテクスチャに切り替わらない","61":"Not switch to the low texture that does not switch to the LOD model -- LODモデルに切り替わらない lowテクスチャに切り替わらない","62":"L2 only (Reflection scene default) -- L2のみ(反射シーンデフォルト)","63":"Do not switch to LOD model (for poly play) -- LODモデルに切り替わらない(ポリ劇用)"},"MPEstusFlaskRecoveryParam":{"0":"Host -- ホスト","1":"Cooperation Pathway Clients -- 協力経路のクライアント","2":"Intrusion Path Client -- 侵入経路のクライアント"},"Magic":{"1200000":"Farron Dart","1210000":"Great Farron Dart","1300000":"Soul Arrow","1301000":"Great Soul Arrow","1302000":"Heavy Soul Arrow","1303000":"Great Heavy Soul Arrow","1304000":"Homing Soulmass","1305000":"Homing Crystal Soulmass","1306000":"Soul Spear","1307000":"Crystal Soul Spear","1308000":"Deep Soul","1309000":"Great Deep Soul","1310000":"Magic Weapon","1311000":"Great Magic Weapon","1312000":"Crystal Magic Weapon","1313000":"Frozen Weapon","1330000":"Magic Shield","1331000":"Great Magic Shield","1340000":"Hidden Weapon","1341000":"Hidden Body","1350000":"Cast Light","1353000":"Repair","1354000":"Spook","1355000":"Chameleon","1356000":"Aural Decoy","1370000":"White Dragon Breath","1372000":"Farron Hail","1373000":"Crystal Hail","1374000":"Soul Greatsword","1375000":"Farron Flashsword","1376000":"Old Moonlight","1603000":"Affinity","1604000":"Great Soul Dregs","1613000":"Dark Edge","1620000":"Soul Stream","1651000":"Twisted Wall of Light","1740000":"Pestilent Mist","1741000":"Snap Freeze","2400000":"Fireball","2402000":"Fire Orb","2403000":"Firestorm","2405000":"Fire Surge","2407000":"Black Serpent","2410000":"Combustion","2411000":"Great Combustion","2420000":"Poison Mist","2421000":"Toxic Mist","2422000":"Acid Surge","2430000":"Iron Flesh","2431000":"Flash Sweat","2435000":"Carthus Flame Arc","2436000":"Rapport","2440000":"Power Within","2450000":"Great Chaos Fire Orb","2451000":"Chaos Storm","2452000":"Fire Whip","2453000":"Black Flame","2455000":"Profaned Flame","2456000":"Chaos Bed Vestiges","2457000":"Floating Chaos","2458000":"Flame Fan","2470000":"Warmth","2562000":"Profuse Sweat","2600000":"Dark Orb","2610000":"Black Fire Orb","2620000":"Bursting Fireball","2630000":"Boulder Heave","2640000":"Sacred Flame","2650000":"Carthus Beacon","2660000":"Seething Chaos","3490000":"Heal Aid","3500000":"Heal","3501000":"Med Heal","3502000":"Great Heal","3503000":"Soothing Sunlight","3504000":"Replenishment","3505000":"Bountiful Sunlight","3507000":"Bountiful Light","3508000":"Caressing Tears","3509000":"Lightning Arrow","3513000":"Morbid Temptation","3520000":"Tears of Denial","3521000":"Homeward","3530000":"Force","3531000":"Wrath of the Gods","3532000":"Emit Force","3540000":"Seek Guidance","3550000":"Lightning Spear","3551000":"Great Lightning Spear","3552000":"Sunlight Spear","3553000":"Lightning Storm","3554000":"Gnaw","3555000":"Dorhys' Gnawing","3556000":"Way of White Corona","3557000":"Projected Heal","3560000":"Magic Barrier","3561000":"Great Magic Barrier","3563000":"Sacred Oath","3581000":"Vow of Silence","3590000":"Lightning Blade","3591000":"Darkmoon Blade","3640000":"Dark Blade","3700000":"Dead Again","3710000":"Lightning Stake","3720000":"Divine Pillars of Light","3730000":"Lifehunt Scythe","3750000":"Dorris Swarm","3760000":"Blessed Weapon","3770000":"Deep Protection","3780000":"Atonement"},"MapMimicryEstablishmentParam":{"0":"Do not erase -- 消すべからず"},"MenuOffscrRendParam":{},"MenuPropertyLayoutParam":{"1000":"Detail status: Normal item -- 詳細ステータス:通常アイテム","1006":"Detail status: Normal item: Termination -- 詳細ステータス:通常アイテム:終端","2000":"Detail status: Weapons: Others -- 詳細ステータス:武器:その他","2059":"Detail Status: Weapon: Other: termination -- 詳細ステータス:武器:その他:終端","4000":"Detail Status: Armor -- 詳細ステータス:防具","4023":"Detail Status: Armor: Termination -- 詳細ステータス:防具:終端","5000":"Detail Status: Spelling -- 詳細ステータス:スペル","5011":"Detail status: spelling: Terminating -- 詳細ステータス:スペル:終端","6000":"Detail status: Arrow, Bolt -- 詳細ステータス:矢、ボルト","6022":"Detail status: Arrow, Bolt: termination -- 詳細ステータス:矢、ボルト:終端","10000":"Player Status: First page -- プレイヤーステータス:1ページ目","10024":"Player Status: First page: End -- プレイヤーステータス:1ページ目:終端","11000":"Player Status: Second page -- プレイヤーステータス:2ページ目","11033":"Player Status: second page: termination -- プレイヤーステータス:2ページ目:終端","15000":"Status: Second page (player info) -- ステータス:2ページ目(プレイヤー情報)","15006":"Status: Second page: termination -- ステータス:2ページ目:終端","16000":"Status: First page (player status) -- ステータス:1ページ目(プレイヤーステータス)","16043":"Status: first page: termination -- ステータス:1ページ目:終端","20000":"Inventory: Top -- インベントリ:上部","20100":"Shop: Top -- ショップ:上部","20200":"Shop For Sale: Top -- 売却ショップ:上部","20900":"Other item selection system: Top -- その他アイテム選択系:上部","30000":"Level Up Left -- レベルアップ左側","30015":"Level Up left: End -- レベルアップ左側:終端","31000":"Level Up Right -- レベルアップ右側","31031":"Level Up right: End -- レベルアップ右側:終端","40000":"Character make top: Top -- キャラメイクトップ:上部","40005":"Character make top: Bottom -- キャラメイクトップ:下部"},"MenuPropertySpecParam":{"0":"---- -- ----","100":"[Item common name] -- 【アイテム共通】 名前","101":"[Item Common] Description -- 【アイテム共通】 説明","102":"[Item common] Unchiku -- 【アイテム共通】 うんちく","103":"[Items Common] weight -- 【アイテム共通】 重量","110":"[Item common] number of possession -- 【アイテム共通】 所持数","111":"[Item Common] Possession number _ maximum value -- 【アイテム共通】 所持数_最大値","112":"Number of items in the warehouse -- 【アイテム共通】 倉庫所持数","113":"[Item common] Warehouse possession number _ maximum value -- 【アイテム共通】 倉庫所持数_最大値","120":"[Items common] required Seoul -- 【アイテム共通】 必要ソウル","121":"[Items common] earning soul -- 【アイテム共通】 獲得ソウル","300":"Weapon type -- 【武器】 武器種別","301":"Weapon: Attack attributes -- 【武器】 攻撃属性","302":"【 Weapon 】 Arts name -- 【武器】 アーツ名","310":"[Weapon] Attack Force: Physics -- 【武器】 攻撃力:物理","311":"[Weapon] Attack power: Magic -- 【武器】 攻撃力:魔法","312":"[Weapon] Attack force: Flame -- 【武器】 攻撃力:炎","313":"[Weapon] Attack power: Thunder -- 【武器】 攻撃力:雷","314":"[Weapon] Attack power: Darkness -- 【武器】 攻撃力:闇","315":"[Weapon] Additional attack force: Physics -- 【武器】付加攻撃力:物理","316":"[Weapon] additional attack force: Magic -- 【武器】 付加攻撃力:魔法","317":"[Weapon] Additional attack force: Flame -- 【武器】 付加攻撃力:炎","318":"[Weapon] Additional attack force: Thunder -- 【武器】 付加攻撃力:雷","319":"[Weapon] Additional attack force: Darkness -- 【武器】 付加攻撃力:闇","320":"Weapon Range -- 【武器】 射程距離","321":"[Weapon] Magic power correction -- 【武器】 魔法威力修正","322":"【 Weapon 】 Deadlier -- 【武器】 致命","330":"【 Weapon 】 Special effects: Poison -- 【武器】 特殊効果:毒","331":"【 Weapon 】 Special effects: Bleeding -- 【武器】 特殊効果:出血","332":"【 Weapon 】 Special effects: Sacred -- 【武器】 特殊効果:神聖","333":"【 Weapon 】 Special effects: Voodoo -- 【武器】 特殊効果:邪教","334":"【 Weapon 】 Special effects: cold air -- 【武器】 特殊効果:冷気","340":"【 weapon 】 Damage cut rate: physical -- 【武器】 ダメージカット率:物理","341":"[Weapon] damage cut rate: Magic -- 【武器】 ダメージカット率:魔法","342":"【 weapon 】 Damage cut rate: Flame -- 【武器】 ダメージカット率:炎","343":"【 weapon 】 Damage cut rate: lightning -- 【武器】 ダメージカット率:雷","344":"[Weapon] Damage cut rate: darkness -- 【武器】 ダメージカット率:闇","350":"Weapon: Ability to receive -- 【武器】 受け能力","360":"[Weapon] Required ability value: Muscular strength -- 【武器】 必要能力値:筋力","361":"[Weapon] Required ability value: workmanship -- 【武器】 必要能力値:技量","362":"[Weapon] Required ability value: Power -- 【武器】 必要能力値:理力","363":"[Weapon] Required ability value: Faith -- 【武器】 必要能力値:信仰","370":"【 Weapon 】 Ability Correction: Muscular strength -- 【武器】 能力補正:筋力","371":"[Weapon] Capacity correction: workmanship -- 【武器】 能力補正:技量","372":"【 Weapon 】 Ability Correction: Power -- 【武器】 能力補正:理力","373":"【 weapons 】 Ability Correction: Faith -- 【武器】 能力補正:信仰","380":"Current value of weapon endurance -- 【武器】 耐久度 現在値","381":"Weapon: Maximum Endurance -- 【武器】 耐久度 最大値","390":"【 Weapon 】 Consumption Arts point: L1 -- 【武器】 消費アーツポイント:L1","391":"【 Weapon 】 Consumption Arts point: L2 -- 【武器】 消費アーツポイント:L2","392":"【 Weapon 】 Consumption Arts point: R1 -- 【武器】 消費アーツポイント:R1","393":"[Weapon] Consumption arts point: R2 -- 【武器】 消費アーツポイント:R2","400":"[Armor] Defense Force: Physical -- 【防具】 防御力:物理","401":"[Armor] defensive force: physical versus blow -- 【防具】 防御力:物理 対打撃","402":"[Armor] Defense Force: Physics vs slashing -- 【防具】 防御力:物理 対斬撃","403":"[Armor] Defense Force: physical versus biting -- 【防具】 防御力:物理 対刺突","404":"[Armor] Defense Force: Magic -- 【防具】 防御力:魔法","405":"[Armor] Defense Force: Flame -- 【防具】 防御力:炎","406":"[Armor] Defense Force: Thunder -- 【防具】 防御力:雷","410":"[Armor] Strength degree -- 【防具】 強靭度","411":"[Armor] Resistant: poison -- 【防具】 耐性:毒","412":"[Armor] Resistant: bleeding -- 【防具】 耐性:出血","413":"[Armor] Resistant: curse -- 【防具】 耐性:呪い","414":"[Armor] Resistant: cold air -- 【防具】 耐性:冷気","420":"[Armor] Endurance Current Value -- 【防具】 耐久度 現在値","421":"[Armor] Endurance maximum -- 【防具】 耐久度 最大値","430":"[Armor] damage Cut: physical -- 【防具】 ダメージカット:物理","431":"[Armor] damage cut: physical versus blow -- 【防具】 ダメージカット:物理 対打撃","432":"[Armor] damage Cut: physics vs. slashing -- 【防具】 ダメージカット:物理 対斬撃","433":"[Armor] damage cut: physical versus biting -- 【防具】 ダメージカット:物理 対刺突","434":"[Armor] damage Cut: Magic -- 【防具】 ダメージカット:魔法","435":"[Armor] damage Cut: Flame -- 【防具】 ダメージカット:炎","436":"[Armor] damage Cut: Thunder -- 【防具】 ダメージカット:雷","437":"[Armor] damage Cut: Darkness -- 【防具】 ダメージカット:闇","500":"Spell type -- 【スペル】 スペル種別","501":"Spell Attack attribute -- 【スペル】 攻撃属性","502":"[Spell] Number of slots used -- 【スペル】 使用スロット数","503":"[spell] number of times used -- 【スペル】 使用回数","504":"[Spell] Required ability value Force -- 【スペル】 必要能力値 理力","505":"[Spell] Required Ability value Faith -- 【スペル】 必要能力値 信仰","520":"【 spell 】 Consumption MP -- 【スペル】 消費MP","600":"Arrow: Weapon type -- 【矢】 武器種別","601":"[Arrow] Attack attribute -- 【矢】 攻撃属性","610":"[Arrow] Attack Force: Physics -- 【矢】 攻撃力:物理","611":"[Arrow] Attack Force: Magic -- 【矢】 攻撃力:魔法","612":"[Arrow] Attack Force: Flame -- 【矢】 攻撃力:炎","613":"[Arrow] Attack Force: Thunder -- 【矢】 攻撃力:雷","614":"【 Arrow 】 Deadlier -- 【矢】 致命","615":"[Arrow] attack power: Darkness -- 【矢】 攻撃力:闇","620":"【 Arrow 】 Special Effect: Poison -- 【矢】 特殊効果:毒","621":"【 Arrow 】 Special effects: Bleeding -- 【矢】 特殊効果:出血","622":"【 Arrow 】 Special effects: Sacred -- 【矢】 特殊効果:神聖","623":"【 Arrow 】 Special Effect: Voodoo -- 【矢】 特殊効果:邪教","624":"【 Arrow 】 Special Effect: cold air -- 【矢】 特殊効果:冷気","10000":"PC Basic Name -- 【PC基本】 名前","10001":"[PC Basic] Sex -- 【PC基本】 性別","10002":"[Basic PC] Feature -- 【PC基本】 素性","10003":"[PC Basic] Gift -- 【PC基本】 贈り物","10004":"[Basic PC] Body type -- 【PC基本】 体型","10005":"[PC Basic] Face -- 【PC基本】 顔","10006":"[PC Basic] Hairstyle -- 【PC基本】 髪型","10007":"[Basic PC] hair and pupil color -- 【PC基本】 髪と瞳の色","10008":"Basic PC Level -- 【PC基本】 レベル","10009":"[PC Basic] Possession Soul -- 【PC基本】 所持ソウル","10010":"[PC Basic] required Seoul -- 【PC基本】 必要ソウル","10011":"Basic PC Pledge -- 【PC基本】 誓約","10012":"[Basic PC] age group -- 【PC基本】 年齢層","10013":"[PC basic] dead degree -- 【PC基本】 亡者度","10100":"[PC1 next] life force -- 【PC1次】 生命力","10101":"[PC1 Next] Endurance -- 【PC1次】 持久力","10102":"[PC1 Next] Memory -- 【PC1次】 記憶力","10103":"[PC1 next] muscular strength -- 【PC1次】 筋力","10104":"[PC1 Next] Workmanship -- 【PC1次】 技量","10105":"[PC1 next] Physical fitness -- 【PC1次】 体力","10106":"[PC1 next] power of science -- 【PC1次】 理力","10107":"[PC1 Next] Faith -- 【PC1次】 信仰","10108":"[PC1 next] human nature -- 【PC1次】 人間性","10109":"[PC1 Next] Luck -- 【PC1次】 運","10200":"[PC2 Next] HP Current Value -- 【PC2次】 HP 現在値","10201":"[PC2 Next] HP Max Value -- 【PC2次】 HP 最大値","10202":"[PC2 Next] MP Current Value -- 【PC2次】 MP 現在値","10203":"[PC2 Next] MP Max Value -- 【PC2次】 MP 最大値","10204":"[PC2 Next] Stamina -- 【PC2次】 スタミナ","10205":"[PC2 next] equipment weight current value -- 【PC2次】 装備重量 現在値","10206":"[PC2 Next] equipment weight maximum -- 【PC2次】 装備重量 最大値","10207":"[PC2 Next] Right weapon 1 attack force -- 【PC2次】 右武器1 攻撃力","10208":"[PC2 Next] Right Weapon 2 attack force -- 【PC2次】 右武器2 攻撃力","10209":"[PC2 Next] Right Weapon 3 attack force -- 【PC2次】 右武器3 攻撃力","10210":"[PC2 next] left Weapon 1 attack force -- 【PC2次】 左武器1 攻撃力","10211":"[PC2 next] left Weapon 2 attack force -- 【PC2次】 左武器2 攻撃力","10212":"[PC2 next] left Weapon 3 attack force -- 【PC2次】 左武器3 攻撃力","10213":"[PC2 next] Defense Force: Physical -- 【PC2次】 防御力:物理","10214":"[PC2] defensive force: physical versus blow -- 【PC2次】 防御力:物理 対打撃","10215":"[PC2] Defense Force: Physics vs. slashing -- 【PC2次】 防御力:物理 対斬撃","10216":"[PC2] Defense Force: Physical vs. piercing -- 【PC2次】 防御力:物理 対刺突","10217":"[PC2 next] Defense Force: Magic -- 【PC2次】 防御力:魔法","10218":"[PC2] Defense Force: Flame -- 【PC2次】 防御力:炎","10219":"[PC2] Defense Force: Thunder -- 【PC2次】 防御力:雷","10220":"[PC2] Resistant: Poison -- 【PC2次】 耐性:毒","10221":"[PC2] Resistant: bleeding -- 【PC2次】 耐性:出血","10222":"[PC2] Resistance: Curse -- 【PC2次】 耐性:呪い","10223":"[PC2 next] strong degree -- 【PC2次】 強靭度","10224":"[PC2] Number of memory slots -- 【PC2次】 記憶スロット数","10225":"[PC2 Next] Item discovery Power -- 【PC2次】 アイテム発見力","10242":"[PC2 next] armor damage cut: physical -- 【PC2次】 防具ダメージカット:物理","10243":"[PC2 next] Armor damage Cut: Magic -- 【PC2次】 防具ダメージカット:魔法","10244":"[PC2 next] armor damage cut: Flame -- 【PC2次】 防具ダメージカット:炎","10245":"[PC2 next] Armor damage Cut: Thunder -- 【PC2次】 防具ダメージカット:雷","10258":"[PC2 next] Dark Defense Force -- 【PC2次】 闇防御力","10259":"[PC2 next] armor damage cut: physical versus blow -- 【PC2次】 防具ダメージカット:物理 対打撃","10260":"[PC2 next] Armor damage cut: Physics vs slashing -- 【PC2次】 防具ダメージカット:物理 対斬撃","10261":"[PC2 next] armor damage cut: physical vs. piercing -- 【PC2次】 防具ダメージカット:物理 対刺突","10262":"[PC2 next] Armor damage Cut: Darkness -- 【PC2次】 防具ダメージカット:闇","10263":"[PC2 Next] Resistance: cold air -- 【PC2次】 耐性:冷気","10264":"[PC2] Armor resistance: bleeding -- 【PC2次】 防具耐性:出血","10265":"[PC2] Armor Resistant: Poison -- 【PC2次】 防具耐性:毒","10266":"[PC2 Next] armor resistant: cold air -- 【PC2次】 防具耐性:冷気","10270":"【 PC2 Next 】 Arts point: Muscular strength Current value -- 【PC2次】 アーツポイント:筋力 現在値","10271":"【 PC2 Next 】 Arts point: Skill present Value -- 【PC2次】 アーツポイント:技量 現在値","10272":"【 PC2 Next 】 Arts point: Magic present Value -- 【PC2次】 アーツポイント:魔法 現在値","10273":"【 PC2 Next 】 Arts point: Miracle present Value -- 【PC2次】 アーツポイント:奇跡 現在値","10280":"【 PC2 Next 】 Arts point: Maximum muscle value -- 【PC2次】 アーツポイント:筋力 最大値","10281":"【 PC2 Next 】 Arts point: Maximum skill level -- 【PC2次】 アーツポイント:技量 最大値","10282":"【 PC2 Next 】 Arts point: Magic Max -- 【PC2次】 アーツポイント:魔法 最大値","10283":"【 PC2 Next 】 Arts point: Miracle Maximum -- 【PC2次】 アーツポイント:奇跡 最大値"},"MenuValueTableParam":{"100":"A table that converts a number to an e-s character -- 数値をE~Sの文字へ変換するテーブル","110":"Pledge -- 誓約"},"ModelSfxParam":{"0":"For testing -- テスト用","80000":"Message tombstone (before lighting) -- メッセージ墓石(点灯前)","80010":"Message tombstone (after lighting) -- メッセージ墓石(点灯後)","1030000":"[Ritual] Princess alternative obj -- 【儀式】皇女代替OBJ","1230000":"Ojo Candlestick (Low) -- 王城燭台(低)","1240000":"Candle ver00 -- 蝋燭ver00","1240001":"Candle Ver01 -- 蝋燭ver01","1240002":"Candle Ver02 -- 蝋燭ver02","1240010":"Blue Flame バリエ 1 -- 青炎バリエ1","1240011":"Blue Flame バリエ 2 -- 青炎バリエ2","1510000":"Old Lantern -- ランタン(古)","2120000":"Statue Candle lit -- 石像ロウソク点灯","4660000":"General-purpose wall lighting (torches) -- 汎用壁照明(松明)","4661000":"General-purpose Ceiling lighting (torches) -- 汎用天井照明(松明)","9004010":"Concept Solar -- コンセプト版太陽","302518000":"Ojo Candles -- 王城蝋燭","302525000":"Hanging Lantern 1 -- 吊るし灯篭1","302526000":"Fire of firewood -- 薪の炎","302564000":"Burnt Corpse -- 燃えた死体","302565000":"Having a statue candle -- 彫像蝋燭持ち","304517000":"Ojo 1 Lantern 1 -- 王城1ランタン1","304857000":"Ojo Candlestick (High) -- 王城燭台(高)","304863000":"Ojo 2 Torch -- 王城2 トーチ","315100000":"Bonfires Tree -- 焚火のツリー","316500000":"Hanging Lantern 1 -- 吊るし灯篭1","316500001":"Hanging Lantern 1 -- 吊るし灯篭1","319006000":"Candle with Dish -- 蝋燭(皿付き)","319010000":"Lantern -- ランタン","319012000":"Hanging Torch -- 吊るしトーチ","324014000":"Incense Burner M32 -- 香炉m32","330009000":"Skeleton Forest Candle -- 森骸骨蝋燭","330010000":"Mori Lantern -- 森ランタン","331390000":"Mori boss Room Skeleton Candle 01 -- 森 ボス部屋骸骨蝋燭01","331391000":"Mori boss Room Skeleton Candle 02 -- 森 ボス部屋骸骨蝋燭02","331392000":"Mori boss Room Skeleton Candle 03 -- 森 ボス部屋骸骨蝋燭03","344857000":"Ojo 2, 3 candlestick (high) -- 王城2,3燭台(高)","344859000":"Ojo 2, 3 candlesticks (Low) -- 王城2,3燭台(低)","344863000":"Ojo 2, 3 torch -- 王城2,3 トーチ","350000000":"Cathedral Church Chandelier -- 聖堂教会シャンデリア","350010000":"Cathedral Church Candlestick A -- 聖堂教会燭台A","350013000":"Cathedral Church Candlestick Bver00 -- 聖堂教会燭台Bver00","350013001":"Cathedral Church Candlestick Bver01 -- 聖堂教会燭台Bver01","350015000":"Cathedral church boss Room Candle -- 聖堂教会 ボス部屋蝋燭","352000000":"Cathedral Church _ Indoor Torches -- 聖堂教会_室内松明","359050000":"Cathedral Church Outdoor Torches -- 聖堂教会 屋外松明","364512000":"God Tomb Lantern 2 -- 神墓ランタン2","364517000":"God Tomb Lantern 1 -- 神墓ランタン1","372010000":"Anol Lantan A -- アノールランタンA","381004000":"Candle ver00 -- 蝋燭ver00","381008000":"Wall Lantern -- 壁灯篭","381009000":"Hanging lantern -- 吊るし灯篭","391000000":"Candle One -- 蝋燭1","391000001":"Candle 2 -- 蝋燭2","391100000":"Incense Burner 1 -- 香炉1","392300000":"Shaking Incense Burner 1 -- 揺れる香炉1","392310000":"Shaking Incense Burner 2 -- 揺れる香炉2","398000000":"Corpse Mountain 1 -- 死体の山1","399100000":"Wall Torches 1 -- 壁掛け松明1","399100001":"Wall Torches 1 -- 壁掛け松明1","399110000":"Wall Torches 2 -- 壁掛け松明2","399999000":"Candle test -- 蝋燭テスト","934630000":"Bonfire Candlestick Normal Fire -- 篝火燭台ノーマル火","962120000":"Statue Candle lit (6-digit version) -- 石像ロウソク点灯(6桁版)","962140000":"Hanging lighting -- 吊るし照明","969004010":"Concept Solar (6-digit version) -- コンセプト版太陽(6桁版)","969007000":"Torch 1 -- 松明1"},"MoveParam":{"0":"Lightweight -- 軽量","1":"Lightweight + -- 軽量+","5":"Medium Amount -- 中量","6":"Medium Amount + -- 中量+","10":"Weight -- 重量","15":"Over weight -- 重量オーバー","16":"Super light -- 超軽量","20":"Mimicry _ Light Weight -- 擬態_軽量","21":"Mimicry _ lightweight + -- 擬態_軽量+","25":"Mimicry _ Medium Volume -- 擬態_中量","26":"Mimicry _ Medium Amount + -- 擬態_中量+","30":"Mimicry weight -- 擬態_重量","35":"Mimicry _ over Weight -- 擬態_重量オーバー","36":"Mimicry _ ultra-light -- 擬態_超軽量","40":"Underwater (deep) _ Lightweight -- 水中(深)_軽量","41":"Underwater (deep) _ Lightweight + -- 水中(深)_軽量+","45":"Underwater (deep) _ Medium volume -- 水中(深)_中量","46":"Underwater (deep) _ Medium Volume + -- 水中(深)_中量+","50":"Underwater (deep) _ Weight -- 水中(深)_重量","55":"Underwater (deep) _ Over weight -- 水中(深)_重量オーバー","56":"Underwater (deep) _ Ultra-Light -- 水中(深)_超軽量","60":"【 SP 】 Guard Vigilance _ Lightweight -- 【SP】ガード警戒_軽量","61":"【 SP 】 Guard Vigilance _ lightweight + -- 【SP】ガード警戒_軽量+","65":"【 SP 】 Guard Vigilance _ medium volume -- 【SP】ガード警戒_中量","66":"【 SP 】 Guard Vigilance _ Medium Amount + -- 【SP】ガード警戒_中量+","70":"【 SP 】 Guard Vigilance _ Weight -- 【SP】ガード警戒_重量","75":"[SP] Guard vigilance _ over weight -- 【SP】ガード警戒_重量オーバー","76":"[SP] Guard Vigilance _ ultra-light -- 【SP】ガード警戒_超軽量","100":"Enemy Base Combat -- 敵基本 戦闘時","101":"Bird Standard -- 鳥標準","102":"Guard -- ガード","103":"Dog -- 犬","104":"Dragon Demon -- ドラゴンデーモン","105":"Enemy base non-combat time -- 敵基本 非戦闘時","106":"Scale miners during combat -- ウロコ鉱夫 戦闘時","107":"Scales Miners Non-combat (bag) -- ウロコ鉱夫 非戦闘時(袋)","108":"Scales Miners Non-combat (pick) -- ウロコ鉱夫 非戦闘時(ピックル)","109":"Big Spider Peeping -- 大蜘蛛 のぞき込み","110":"Gargoyletest -- ガーゴイルテスト","111":"Dragon Demon (mine) -- ドラゴンデーモン(坑道)","112":"For the beast of the Storm -- 嵐の獣用","113":"Storm Beast (CUB) Bichibichi wait -- 嵐の獣(子エイ)ビチビチ待機","114":"Scales Miners Non-combat (bare hands) -- ウロコ鉱夫 非戦闘時(素手)","115":"Octopus head when fighting -- タコ頭  戦闘時","116":"Gargoyle aerial (for 3050) -- ガーゴイル空中(3050用)","117":"Gargoyle Ground (for 3050) -- ガーゴイル地上(3050用)","118":"Shadow woman _ for disappearing -- 影女_消える用","119":"Blood mites only -- 血ダニ専用","120":"Paris AIM -- パリィ狙い","121":"[DLC] Enemy Basic combat (running/swirling anime without version) -- 【DLC】敵基本 戦闘時(走行/旋回アニメなしバージョン)","900":"Four-legged type for PG -- PG用4足タイプ","910":"[FDP] Test _ First time -- 【FDP】テスト_はじめてのろじっく"},"MultiHPEstusFlaskBonusParam":{},"MultiMPEstusFlaskBonusParam":{},"MultiPlayCorrectionParam":{"0":"Do not erase -- 消すべからず","10":"Test Data 2 -- テストデータ2","100":"Super Ability -- ザコ","200":"Formidable -- 強敵","300":"Boss -- ボス"},"MultiSoulBonusRateParam":{},"NetworkAreaParam":{"0":"Default (delete not allowed) -- デフォルト(削除禁止)","300000":"Ojo of caries 1 -- 蝕の王城1","310000":"City of Towers -- 塔の街","320000":"The Bridge of Flying Dragon -- 飛竜の橋","330000":"Poison Swamp Forest -- 毒沼の森","341000":"Ojo of caries 3 -- 蝕の王城3","350000":"Cathedral Church -- 聖堂教会","370000":"Anole ruins -- アノール遺跡","380000":"Dungeon -- ダンジョン","390000":"Dungeon -- 地下牢","400000":"Base -- 拠点","981000":"Multi-Play Test map -- マルチプレイテストマップ","991000":"Old multi-play test map -- 旧マルチプレイテストマップ"},"NetworkMsgParam":{},"NetworkParam":{},"NewMenuColorTableParam":{"0":"Chara Makeup: ○ ○ -- キャラメイク:○○用","100":"Character Makeover: White for skin -- キャラメイク:肌用 白人","105":"Black -- 黒人","110":"Yellow people -- 黄人","115":"India -- インド","120":"Ruddy -- 赤ら顔","125":"Shing -- 鈍色"},"NpcAiActionParam":{},"NpcParam":{"0":"Do not erase -- 消すべからず","1":"Atarisawari data (copy and paste recommended) -- あたりさわりのないデータ(コピペ元推奨)","10":"Treasure Test 1 -- 宝テスト1","11":"Treasure Test 2 -- 宝テスト2","12":"Treasure Test 3 -- 宝テスト3","100":"Automatic patrol (default) -- 自動巡回用(デフォルト)","540":"For automatic patrol (running) -- 自動巡回用(走り)","541":"Automatic patrol (walking) -- 自動巡回用(歩き)","542":"Automatic patrol (super dash) -- 自動巡回用(スーパーダッシュ)","10000":"Collective Patrol dummy leader -- 集団巡回ダミーリーダー","10010":"City Map Sniper Platoon target dummy character -- 街マップスナイパーの小隊ターゲット用ダミーキャラ","10100":"NPC Conversation Test 1 (garbled NPC in pot) -- NPC会話テスト1 (壺に化けるNPC)","10101":"NPC Conversation Test 2 -- NPC会話テスト2","10102":"NPC Conversation Test _ α 2 -- NPC会話テスト_α2","10200":"NPC Logic Test -- NPCロジックテスト","10290":"NPC Combat Test -- NPC戦闘テスト","10298":"City Map intrusion NPC test -- 街マップ侵入NPCテスト","10299":"City map cooperation NPC Logic test -- 街マップ協力NPCロジックテスト","20000":"NPC Behavior Test 1 -- NPC挙動テスト1","21000":"21,000: [Multi NPC] Berserker: ■ Darkness 1 -- 21000:【マルチNPC】バーサーカー:街■闇霊1","21100":"21100: [multi-NPC] Sniper NPC: Sniper NPC: Super Distance -- 21100:【マルチNPC】スナイパーNPC:スナイパーNPC:超距離","21200":"21200: [Multi-NPC] Dragon Hunting Warrior: Bridge ★ White Spirits 1 -- 21200:【マルチNPC】竜狩りの戦士:橋★白霊1","21300":"21300: [Multi-NPC] Warrior fell in mid-★: Bridge White Spirit 2 -- 21300:【マルチNPC】志半ばで倒れた戦士:橋★白霊2","21400":"21400: [multi-NPC] blunt with healing: Forest ★ White Spirits 1_ -- 21400:【マルチNPC】鈍器持ち治癒使い:森★白霊1_道中","21500":"21500: [multi-NPC] Hit man: Mori ★ White Spirits 2_vs Elders -- 21500:【マルチNPC】一撃にかける男:森★白霊2_VS古老","21800":"21800: [multi-NPC] King's SS chief: Ojo 3 ■ Dark Spirits 1 -- 21800:【マルチNPC】王の親衛隊長:王城3■闇霊1","22000":"22,000: [Multi NPC] Paris love: The temple ★ White Spirits 2_ -- 22000:【マルチNPC】パリィ大好き:聖堂★白霊2_道中","29000":"Enemy NPC Warrior Ojo 1 Mausoleum side -- 敵NPC 戦士 王城1霊廟側","29100":"Enemy NPC Wizard Ojo 1 Mausoleum side -- 敵NPC 魔法使い 王城1霊廟側","29200":"Enemy NPC Hunter Ojo 1 Mausoleum side -- 敵NPC 狩人 王城1霊廟側","100000":"Dummy character for Bonfire -- 篝火用ダミーキャラ","107000":"【 test 】 Skeleton: Poison Swamp forest _ boss Room -- 【テスト】スケルトン:毒沼の森_ボス部屋","107001":"Skeleton: Song Sword -- スケルトン:曲剣","107002":"Skeleton: a Sword -- スケルトン:大曲剣","107003":"Skeleton: Bow -- スケルトン:弓","107006":"Skeleton: Flame Pots -- スケルトン:火炎壺","107007":"Skeleton: Song Sword (single Effect) -- スケルトン:曲剣(一きり効果)","107008":"Skeleton: One-way sword (single effect) -- スケルトン:大曲剣(一きり効果)","107009":"Skeleton: Bow (One effect) -- スケルトン:弓(一きり効果)","109000":"Dead soldier: Segunda State folding Sword Half-naked Ojo 1 -- 亡者兵士:グンダ状態 折剣 半裸 王城1","109100":"Dead soldier: Segunda State folding Sword Half-naked Ojo 2 -- 亡者兵士:グンダ状態 折剣 半裸 王城2","109200":"Dead soldier: Segunda State folding Sword Half-naked Ojo 3 -- 亡者兵士:グンダ状態 折剣 半裸 王城3","110000":"Dead Soldier Sword only dress Ojo 1 -- 亡者兵士 剣のみ 軽装 王城1","110001":"Dead Soldier Sword only lightly waist lantern no Ojo 1 -- 亡者兵士 剣のみ 軽装 腰ランタン無し 王城1","110010":"Dead Soldier folding Sword Half-naked Ojo 1 -- 亡者兵士 折剣 半裸 王城1","110011":"Dead Soldier Folding Sword Tea suit Ojo 1 -- 亡者兵士 折剣 茶服 王城1","110012":"Dead Soldier Folding Sword white clothes Ojo 1 -- 亡者兵士 折剣 白服 王城1","110013":"Dead Soldier Folding Sword White suit Vest Ojo 1 -- 亡者兵士 折剣 白服ベスト 王城1","110020":"Dead Soldier Sword Shield full equipment Ojo 1 -- 亡者兵士 剣盾 フル装備 王城1","110021":"Dead Soldier Sword Shield full equipment No waist lantern Ojo 1 -- 亡者兵士 剣盾 フル装備腰ランタン無し 王城1","110030":"Dead Soldier folding Sword lantern Black skirt Ojo 1 -- 亡者兵士 折剣ランタン 黒スカート 王城1","110040":"Dead soldiers cross-bow full equipment _ without scarves Ojo 1 -- 亡者兵士 クロスボウ フル装備_スカーフなし 王城1","110050":"Dead Soldier Spear Large shield Full equipment _ with Scarf Ojo 1 -- 亡者兵士 槍大盾 フル装備_スカーフあり 王城1","110070":"Dead Soldier evil Spirit makeover pre-folded sword half-naked Ojo 1 -- 亡者兵士 邪霊変身前 折剣 半裸 王城1","110080":"Dead soldier Dagger half-naked black Cape Ojo 1 -- 亡者兵士 短剣 半裸黒頭巾 王城1","110100":"Dead Soldier Sword only dress Ojo 2 -- 亡者兵士 剣のみ 軽装 王城2","110110":"Dead Soldier folding Sword Half-naked Ojo 2 -- 亡者兵士 折剣 半裸 王城2","110111":"Dead Soldier folding Sword tea Clothes Ojo 2 -- 亡者兵士 折剣 茶服 王城2","110112":"Dead Soldier Folding Sword white clothes Ojo 2 -- 亡者兵士 折剣 白服 王城2","110113":"Dead Soldier Folding Sword White suit Vest Ojo 2 -- 亡者兵士 折剣 白服ベスト 王城2","110120":"Dead Soldier Sword Shield full Equipment Ojo 2 -- 亡者兵士 剣盾 フル装備 王城2","110130":"Dead Soldier Folding sword lantern Half-naked Ojo 2 -- 亡者兵士 折剣ランタン 半裸 王城2","110140":"Dead soldiers cross-bow full equipment _ without scarves Ojo 2 -- 亡者兵士 クロスボウ フル装備_スカーフなし 王城2","110150":"Dead Soldier Spear Large shield Full equipment _ scarf available Ojo 2 -- 亡者兵士 槍大盾 フル装備_スカーフあり 王城2","110170":"Dead Soldier evil Spirit makeover pre-folded sword half-naked Ojo 2 -- 亡者兵士 邪霊変身前 折剣 半裸 王城2","110180":"Dead soldier Dagger half-naked black Cape Ojo 2 -- 亡者兵士 短剣 半裸黒頭巾 王城2","110200":"Dead Soldier Sword only dress base -- 亡者兵士 剣のみ 軽装 拠点","110210":"Dead soldier half-naked base -- 亡者兵士 折剣 半裸 拠点","110220":"Dead Soldier Sword Shield lightly-dressed base -- 亡者兵士 剣盾 軽装 拠点","110240":"Dead soldier cross-bow half-naked base -- 亡者兵士 クロスボウ 半裸 拠点","110250":"Dead soldier spear large shield half-naked base -- 亡者兵士 槍大盾 半裸 拠点","110300":"Dead Soldier Sword only Light Cathedral church -- 亡者兵士 剣のみ 軽装 聖堂教会","110400":"Dead Soldier Sword only dress Ojo 3 -- 亡者兵士 剣のみ 軽装 王城3","110410":"Dead Soldier folding Sword Half-naked Ojo 3 -- 亡者兵士 折剣 半裸 王城3","110420":"Dead Soldier Sword Shield full Equipment Ojo 3 -- 亡者兵士 剣盾 フル装備 王城3","110430":"Dead Soldier Folding sword lantern Half-naked Ojo 3 -- 亡者兵士 折剣ランタン 半裸 王城3","110440":"Dead soldiers cross-bow full equipment _ no scarves Ojo 3 -- 亡者兵士 クロスボウ フル装備_スカーフなし 王城3","110450":"Dead Soldier Spear Large shield Full equipment _ with Scarf Ojo 3 -- 亡者兵士 槍大盾 フル装備_スカーフあり 王城3","110470":"Dead Soldier evil Spirit makeover pre-folded sword half-naked Ojo 3 -- 亡者兵士 邪霊変身前 折剣 半裸 王城3","110480":"Dead soldier Dagger half-naked black Cape Ojo 3 -- 亡者兵士 短剣 半裸黒頭巾 王城3","110500":"Dead Soldier (Large) Axe Ojo 1 -- 亡者兵士(大) 斧 王城1","110510":"Dead Soldier (Large) Ojo 1 -- 亡者兵士(大) ハルバード 王城1","110600":"Dead Soldier (Large) Axe Basilica Church -- 亡者兵士(大) 斧 聖堂教会","110610":"Dead Soldier (Dai) The church of the Jardin Basilica -- 亡者兵士(大) ハルバード 聖堂教会","113000":"Caries slug small usually ojo 1 -- 蝕のナメクジ小 通常 王城1","113050":"Caries slug small usually poison swamp forest -- 蝕のナメクジ小 通常 毒沼の森","113060":"Slugs of caries small arm out poison swamp forest -- 蝕のナメクジ小 腕出し 毒沼の森","117000":"Skeleton Warrior A: Scimitar + shield -- スケルトン戦士A:シミター+盾","117010":"Skeleton Warrior A: Nodachi -- スケルトン戦士A:野太刀","117020":"Skeleton Warrior A: Bow -- スケルトン戦士A:弓","118000":"Skeleton Warrior B: Scimitar one hand -- スケルトン戦士B:シミター片手","118010":"Skeleton Warrior B: Scimitar Nitori -- スケルトン戦士B:シミター二刀流","119000":"Dead Knight Grey Tome + Large Shield -- 亡者僧騎士 グレートメイス+大盾","119010":"Dead Priest Great Sword -- 亡者僧騎士 グレートソード","119100":"Dead Knight Grey Tome + Large Shield -- 亡者僧騎士 グレートメイス+大盾","119110":"Dead Priest Great Sword -- 亡者僧騎士 グレートソード","120000":"Dwarf people Hatchet -- 矮小人 ハチェット","120010":"Dwarf man ice-ax -- 矮小人 ピッケル","120020":"Dwarf Man Large Sword -- 矮小人 大剣","120100":"Dwarf Man Hatchet Ojo 3 -- 矮小人 ハチェット 王城3","120110":"Dwarf man ice-ax Ojo 3 -- 矮小人 ピッケル 王城3","120120":"Dwarf Man Large Sword Ojo 3 -- 矮小人 大剣 王城3","120200":"Dwarf people Hatchet City -- 矮小人 ハチェット 街","120210":"Dwarf-ice-ax City -- 矮小人 ピッケル 街","120220":"Dwarf men's Great Swords Street -- 矮小人 大剣 街","121000":"Blue: Spear shield poison Swamp forest -- ブルー:槍盾 毒沼の森","121010":"Blue: Sword Poison Swamp Forest -- ブルー:剣 毒沼の森","121020":"Blue: Deep Poison swamp forest -- ブルー:ディープ 毒沼の森","121030":"Blue: The Forest of estrus poison Swamp -- ブルー:発情 毒沼の森","121040":"Blue: Dog Poison Swamp Forest -- ブルー:犬 毒沼の森","122000":"Resurrection _ Host Basilica Church -- よみがえり_宿主 聖堂教会","122010":"Resurrection _ Host + Body Basilica Church -- よみがえり_宿主+本体 聖堂教会","123000":"Missionary Town -- 宣教師 街","123010":"Missionary Town * For Sniper stand-in -- 宣教師 街 ※スナイパー代役用","123100":"Missionary Cathedral Church -- 宣教師 聖堂教会","123200":"Missionary Poison Swamp first half -- 宣教師 毒沼前半","124000":"Poor dead (hatchet) city -- 貧民亡者(鉈) 街","124010":"The poor dead (hatchet + lantern) town -- 貧民亡者(鉈+ランタン) 街","124020":"The poor dead (sickle + dagger) City -- 貧民亡者(鎌+短剣) 街","124030":"Poor dead (Mallet) Street -- 貧民亡者(木槌) 街","124040":"Poor dead (hoe) city -- 貧民亡者(鍬) 街","124100":"Poor dead (hatchet) underground lake -- 貧民亡者(鉈) 地底湖","124110":"Poor dead (hatchet + lantern) underground Lake -- 貧民亡者(鉈+ランタン) 地底湖","124120":"The poor dead (sickle + dagger) underground Lake -- 貧民亡者(鎌+短剣) 地底湖","124130":"Poor dead (wooden mallet) underground lake -- 貧民亡者(木槌) 地底湖","124140":"Poor dead (hoe) underground lake -- 貧民亡者(鍬) 地底湖","125000":"Poor dead Elite Basilica Church -- 貧民亡者エリート 聖堂教会","125100":"Poor dead Elite Base -- 貧民亡者エリート 拠点","126000":"Poor dead servant: sawing wooden-shouldered Street -- 貧民亡者下男:のこぎり 木板背負い 街","126001":"Poor dead servant: a town with a saw-iron basket -- 貧民亡者下男:のこぎり 鉄籠背負い 街","126010":"Poor dead servant: Mortar → saw Town -- 貧民亡者下男:臼→のこぎり 街","128000":"Shin Ojo Knight Straight Sword + Shield visor Close Ojo 1 -- 新王城騎士 直剣+盾 バイザー閉め 王城1","128003":"New Ojo Knight Straight Sword + shield visor Open red eye Ojo 1 -- 新王城騎士 直剣+盾 バイザー開け 赤目 王城1","128010":"New Ojo Knight Spear + shield visor close Ojo 1 -- 新王城騎士 槍+盾 バイザー閉め 王城1","128013":"New Ojo Knight Spear + shield visor open red eye Ojo 1 -- 新王城騎士 槍+盾 バイザー開け 赤目 王城1","128100":"Shin Ojo Knight Straight Sword + Shield visor Close Ojo 2 -- 新王城騎士 直剣+盾 バイザー閉め 王城2","128101":"New Ojo Knight Straight Sword + shield visor open red eye Ojo 2 -- 新王城騎士 直剣+盾 バイザー開け 赤目 王城2","128110":"New Ojo Knight Spear + shield visor close Ojo 2 -- 新王城騎士 槍+盾 バイザー閉め 王城2","128111":"New Ojo Knight Spear + shield visor open red eye Ojo 2 -- 新王城騎士 槍+盾 バイザー開け 赤目 王城2","128120":"New Ojo Knight Great Sword visor Close Ojo 2 -- 新王城騎士 大剣 バイザー閉め 王城2","128121":"New Ojo Knight Large sword visor open red-eye Ojo 2 -- 新王城騎士 大剣 バイザー開け 赤目 王城2","128201":"New Ojo Knight Straight Sword + shield visor open red eye Ojo 3 -- 新王城騎士 直剣+盾 バイザー開け 赤目 王城3","128211":"New Ojo Knight Spear + shield visor open red eye Ojo 3 -- 新王城騎士 槍+盾 バイザー開け 赤目 王城3","128221":"New Ojo Knight Large sword visor open red-eye Ojo 3 -- 新王城騎士 大剣 バイザー開け 赤目 王城3","129000":"Ojo fat-long axe Ojo 1 -- 王城デブ 長斧 王城1","129100":"Ojo Fatty Axe Ojo 2 -- 王城デブ 長斧 王城2","129110":"Ojo fat Short Axe Nitori Ojo 2 -- 王城デブ 短斧二刀流 王城2","129400":"Ojo Long Axe forest late -- 王城デブ 長斧 森後半","129410":"Ojo fat short Axe Nitori Mori -- 王城デブ 短斧二刀流 森後半","130010":"Black Knight: Oversized Sword -- 黒騎士:特大剣","130020":"Black Knight: The Great Axe -- 黒騎士:大斧","130110":"Black Knight: Oversized sword Waste City -- 黒騎士:特大剣 廃都","130120":"Black Knight: Large axe Waste city -- 黒騎士:大斧 廃都","130610":"Black Knight: Oversized Sword -- 黒騎士:特大剣","130620":"Black Knight: The Great Axe -- 黒騎士:大斧","131000":"Dark Knight Beast Ojo 1 -- ダークナイトビースト 王城1","131001":"Dark Knight Beast Ojo 1 -- ダークナイトビースト 王城1","131100":"Dark Knight Beast Ojo 3 -- ダークナイトビースト 王城3","132000":"Crystal Elders -- 結晶の古老","132010":"Elders alter ego of Crystal -- 結晶の古老 分身","134000":"Dead Wax: Whip + Magic Ojo 3 -- 蝋の死人:鞭+魔法 王城3","134010":"Dead wax: Beating Ojo 3 -- 蝋の死人:殴り 王城3","135000":"Slave Spirits: Dagger -- 奴隷霊:短剣","135010":"Slave Spirits: fetters -- 奴隷霊:足枷","135020":"Slave Spirits: no Legs -- 奴隷霊:足なし","135030":"Slave Spirit: Straight Sword -- 奴隷霊:直剣","136000":"Crucifixion dead A -- 磔亡者A","137000":"Crucifixion dead B -- 磔亡者B","138000":"Snake Man priest -- 蛇人の司祭","139000":"Snake Assassin (Dagger x 2) -- 蛇人の暗殺者(短刀×2)","139010":"Snake Assassin (shorty + small shield) -- 蛇人の暗殺者(ショーテル+小盾)","139100":"The assassin of the Snake (Kusarigama) -- 蛇人の暗殺者(鎖鎌)","140000":"Fire-proof woman -- 火防女","141000":"Silver Knight: Sword + Shield -- 銀騎士:剣+盾","141010":"Silver Knight: Spear + Shield -- 銀騎士:槍+盾","141020":"Silver Knight: Bow → sword + shield -- 銀騎士:弓 → 剣+盾","141030":"Silver Knight: Bow → Spear + shield -- 銀騎士:弓 → 槍 + 盾","144000":"Pilgrimage dead -- 巡礼亡者","147000":"Wheel Skeleton Dungeon -- 車輪スケルトン ダンジョン","148000":"Dark Knight (Phantom) -- ダークナイト(幻影)","149000":"Tracker (Phantom) -- 追跡者(幻影)","202000":"Dead Dog (Large) no arrow Ojo 1 -- 亡者犬(大) 矢無し 王城1","202001":"Dead Dog (Large) arrow Little Ojo 1 -- 亡者犬(大) 矢少しあり 王城1","202002":"Dead Dog (Large) arrow many Ojo 1 -- 亡者犬(大) 矢多くあり 王城1","202010":"Dead Dog (Large) without an arrow -- 亡者犬(大) 矢無し 街","202020":"Dead Dog (Large) no arrow forest -- 亡者犬(大) 矢無し 森","202021":"Dead Dog (Large) arrow little forest -- 亡者犬(大) 矢少しあり 森","202022":"Dead Dog (Large) arrow many Woods -- 亡者犬(大) 矢多くあり 森","202100":"Dead Dog (small) no arrow Ojo 1 -- 亡者犬(小) 矢無し 王城1","202110":"Dead Dog (small) no Arrow street -- 亡者犬(小) 矢無し 街","202210":"Dead Dog (small) no arrow forest -- 亡者犬(小) 矢無し 森","203000":"Salivan's death: the song Sword -- サリヴァーンの死神:曲剣","203010":"Salivan's death: Sickle -- サリヴァーンの死神:鎌","204000":"Hungry Jack -- はらぺこジャック","206000":"Resurrection (Third form) -- よみがえり(第3形態)","207000":"Prisoner of the Dungeon: bare hands -- 地下牢の囚人:素手","207010":"Prisoner of the Dungeon: Spear -- 地下牢の囚人:槍","207020":"Prisoner of the Dungeon: Dagger -- 地下牢の囚人:短剣","208000":"Dead dog: Maggots belly poison swamp forest -- 亡者犬:蛆腹 毒沼の森","209000":"Dragon's Errand Ojo 2 -- 竜の御使い 王城2","210000":"Drifting Stuff -- 漂うもの","210100":"One of the drifting dungeons -- 漂うもの 地下牢","211000":"Dog Rat Street -- 犬ネズミ 街","211100":"Rat Dungeon -- 犬ネズミ 地下牢","211200":"Dog Rat Waste City -- 犬ネズミ 廃都","211300":"A dog rat wastes underground lake -- 犬ネズミ 廃都 地底湖","212000":"Mimic _ Normal -- ミミック_ノーマル","212100":"Mimic _ Normal Ojo 2 -- ミミック_ノーマル 王城2","212110":"Mimic _ Exorcist Ojo 2 -- ミミック_エクソシスト 王城2","212200":"Mimic _ Normal Dungeon -- ミミック_ノーマル ダンジョン","212300":"Mimic _ Normal Dungeons -- ミミック_ノーマル 地下牢","212310":"Mimic _ Exorcist Dungeon -- ミミック_エクソシスト 地下牢","213000":"Wriggles Carrion Street -- 蠢く腐肉 街","213100":"Wriggles Carrion -- 蠢く腐肉 廃都","213200":"Wriggles Carrion, an underground lake -- 蠢く腐肉 廃都 地底湖","214000":"Basilisk -- バジリスク","215000":"Crystal Lizard Ojo 1 -- 結晶トカゲ 王城1","215100":"Crystal Lizard Town -- 結晶トカゲ 街","215200":"Crystal Lizard Ojo 2 -- 結晶トカゲ 王城2","215300":"Crystal Lizard Ojo 3 -- 結晶トカゲ 王城3","215400":"Crystal Lizard Bridge -- 結晶トカゲ 橋","215500":"Crystal Lizard Anole -- 結晶トカゲ アノール","215600":"Crystal Lizard Dungeon -- 結晶トカゲ 地下牢","215700":"Crystal Lizard Poison Swamp -- 結晶トカゲ 毒沼","215800":"Crystal Lizard Cathedral Church -- 結晶トカゲ 聖堂教会","215900":"Crystal Lizard Dungeon -- 結晶トカゲ ダンジョン","215950":"Crystal Lizard Base -- 結晶トカゲ 拠点","216000":"What we call caries (small) Ojo 1 -- 蝕を呼ぶもの(小) 王城1","217000":"Saint of the Prison -- 牢獄の聖女","218000":"Maggots (slug type) -- 蛆人(なめくじタイプ)","218010":"Maggots (witch type) -- 蛆人(魔法使いタイプ)","219000":"Ojo's Gargoyle Light Dungeon -- 王城のガーゴイル 灯火 地下牢","219010":"Ojo's Vampire spear Dungeon -- 王城のガーゴイル 槍 地下牢","219100":"Ojo Gargoyle Lights Ojo 3 -- 王城のガーゴイル 灯火 王城3","219110":"Ojo Gargoyle Spear Ojo 3 -- 王城のガーゴイル 槍 王城3","220000":"Sand worm in the waste city -- 廃都のサンドワーム","221000":"Zombie Glass: Dagger -- ゾンビガラス:短剣","221001":"Zombie Glass: Scythe -- ゾンビガラス:大鎌","223000":"New Shing -- 新獄吏","224000":"Full Armor Beast Ojo 1 -- フルアーマー獣 王城1","224001":"Full Armor Beast Ojo 1 (after HU) -- フルアーマー獣 王城1(HU後)","225000":"Tindalos -- ティンダロス","226000":"3-Ream Varistor -- 3連バリスタ","227000":"Stench Crab Poison Swamp -- 死臭蟹 毒沼","227020":"Stench Crab Waste City -- 死臭蟹 廃都","227100":"Stench crab (small) poison swamp -- 死臭蟹(小) 毒沼","227120":"Stench crab (small) disused city -- 死臭蟹(小) 廃都","228000":"Dog Rats (Large) -- 犬ネズミ(大)","229000":"Salivan watchdog -- サリヴァーンの番犬","229100":"Salivan watchdog (small) -- サリヴァーンの番犬(小)","302000":"Golem -- ゴーレム","302010":"Golem (Iron Sphere) -- ゴーレム(鉄球)","302100":"Golem, Cathedral Church -- ゴーレム(大)_聖堂教会","302101":"Golem (Large) _ Cathedral church (special effects differences _ events) -- ゴーレム(大)_聖堂教会(特殊効果違い_イベント)","302198":"Golem (Large) _ Dungeon test -- ゴーレム(大)_地下牢テスト","304000":"Observer of the Abyss -- 深淵の監視者","305000":"Ash Daemon -- 灰のデーモン","306000":"Wood Demon Street -- 薪のデーモン 街","306100":"Daemon base of firewood -- 薪のデーモン 拠点","307000":"Daemon Priest -- デーモン司祭","308000":"Caries Butterfly Ojo 2 -- 蝕の蝶 王城2","309000":"Spider Town -- 牢蜘蛛 街","310000":"The Divine City of Crystal lizards -- 結晶トカゲの神 街","310200":"Church of the Divine Cathedral of Crystal Lizards -- 結晶トカゲの神 聖堂教会","310320":"The God of crystal lizards (Crystal high) underground lake -- 結晶トカゲの神(結晶多い) 廃都 地底湖","310400":"Crystal Lizard God (short tail) Basilica Church -- 結晶トカゲの神(尻尾短い) 聖堂教会","311000":"Eclipse Spider Ojo 3 -- 蝕の蜘蛛 王城3","311100":"Spider Cathedral of caries -- 蝕の蜘蛛 聖堂","311200":"Spider waste of caries -- 蝕の蜘蛛 廃都","312000":"Sacred Beast of the Forest -- 森の霊獣","314000":"The Flying Dragon of the bridge _ Hashimoto -- 橋の飛竜_ヘルカイト_橋下","314010":"The Flying Dragon of the bridge _ the Climb 2 -- 橋の飛竜_ヘルカイト_登る2","314100":"The Flying Dragon of the bridge _ Hel Kite _ Ojo 1 -- 橋の飛竜_ヘルカイト_王城1","316000":"Dragon's Guardian Knight Ojo 2 -- 竜の守護騎士 王城2","317000":"Dark Wraith -- ダークレイス","501000":"King of storms: simple -- 嵐の王:単体","502000":"Crimson Bat -- クリムゾンバット","503000":"The King of the Storm: riding -- 嵐の王:騎乗","511000":"Hero Segunda -- 英雄グンダ","512000":"Snake Spirit -- 蛇霊","514000":"The Old king of caries -- 蝕の老王","514010":"The old king of caries _ an apparition -- 蝕の老王_幻影","515000":"Salivan -- サリヴァーン","516000":"King of the Dead -- 死霊の王","518000":"Cursed Colossus City -- 呪われた巨像 街","518001":"Cursed Colossus (heat up Test) -- 呪われた巨像(ヒートアップテスト)","520000":"Fat Daemon -- デブデーモン","520001":"Fat daemon (heat up) -- デブデーモン(ヒートアップ)","521000":"Sinful Rosalia -- 罪深きロザリア","522000":"Cardinal (Long) -- 枢機卿団(長)","522098":"Cardinal HP Dummy -- 枢機卿団 HPダミー","522100":"Cardinal (Deb): Wheel or Sword -- 枢機卿団(デブ):輪っか剣","522102":"The Cardinal (Deb): Long Wheel or sword -- 枢機卿団(デブ):長い輪っか剣","522110":"Cardinal (SS Deb): A Ring or a sword -- 枢機卿団(親衛隊デブ):輪っか剣","522112":"The Cardinal (SS Deb): Long Wheel or sword -- 枢機卿団(親衛隊デブ):長い輪っか剣","522200":"Cardinal (tall): Wheel or Sword -- 枢機卿団(のっぽ):輪っか剣","522202":"Cardinal (tall): Long Wheel or sword -- 枢機卿団(のっぽ):長い輪っか剣","522301":"Cardinal (normal): Wheel or Sword -- 枢機卿団(通常):輪っか剣","522302":"Cardinal (normal): candlestick -- 枢機卿団(通常):燭台","522303":"Cardinal (usually): Long Wheel or sword -- 枢機卿団(通常):長い輪っか剣","524000":"Moonlight Witch -- 月光の魔女","525000":"Prince of Darkness (elder brother) Ojo 3 -- 闇の双皇子(兄) 王城3","525001":"Prince of Darkness (elder brother): HU Ojo 3 -- 闇の双皇子(兄):HU 王城3","525100":"Prince of Darkness (brother) Ojo 3 -- 闇の双皇子(弟) 王城3","526000":"Mad Warrior Hallec -- 狂戦士ハレック","527000":"Tracker Ojo 1 -- 追跡者 王城1","800000":"■ ■ ■ ■ ■ For products up here ■ ■ ■ ■. ■. -- ■■■■■製品用ここまで■■■■■","890000":"Adjustment base character for the time being -- とりあえずの調整ベースキャラ","890001":"(during testing) player assumption _ Level 1 -- (テスト中)プレイヤー想定_レベル1","890100":"Player assumed _ Level 100 (during testing) -- (テスト中)プレイヤー想定_レベル100","890200":"Start Game -- ゲーム開始","890210":"Ojo 1 -- 王城1","890220":"City of Towers -- 塔の街","890230":"Mori 1 (first half) -- 森1(前半)","890240":"Cathedral Church -- 聖堂教会","890260":"Dungeon -- ダンジョン","890280":"Anole -- アノール","890290":"Dungeon -- 地下牢","890330":"Base -- 拠点","890340":"End of game -- ゲーム終了","890900":"Enemy character for E3 -- E3用敵キャラ","890910":"Avoidance test character -- 回避テストキャラ","891000":"ID Book -- ID予約","900001":"Sound character -- 音出し用キャラ","950100":"Black Knight Default -- 黒騎士デフォルト","960099":"quadruped test -- 四脚テスト","970003":"FDP Skeleton (item drop dummy) -- FDP スケルトン(アイテムドロップダミー)","992000":"Production character test -- 演出キャラテスト","999000":"NPC Test NPC Multi cooperation -- NPCテスト  NPCマルチ協力","999001":"NPC Test NPC Multi Intrusion -- NPCテスト  NPCマルチ侵入"},"NpcThinkParam":{"0":"For testing -- テスト用","1":"For not doing anything -- なにもしない用","2":"Atarisawari data (copy and paste recommended) -- あたりさわりのないデータ(コピペ元推奨)","10":"Logic for animation check: near -- アニメチェック用ロジック:近","11":"Logic for animation check: Far -- アニメチェック用ロジック:遠","50":"Ishizaki Test -- 石崎テスト","100":"Automatic patrol (default) -- 自動巡回用(デフォルト)","540":"For automatic patrol (running) -- 自動巡回用(走り)","541":"Automatic patrol (walking) -- 自動巡回用(歩き)","542":"Automatic patrol (super dash) -- 自動巡回用(スーパーダッシュ)","10000":"Collective Patrol dummy leader -- 集団巡回ダミーリーダー","10001":"For funnels -- ファンネル用","10010":"City Map Sniper Platoon target dummy character -- 街マップスナイパーの小隊ターゲット用ダミーキャラ","10200":"For NPC Logic Testing -- NPCロジックテスト用","20000":"NPC Sub-goal Test 00: Combat -- NPCサブゴールテスト00:戦闘","20001":"NPC Sub-goal Test 01: walking and Running -- NPCサブゴールテスト01:歩行・走行","20002":"NPC Sub-goal Test 02: Quick Turn/left/right movement -- NPCサブゴールテスト02:クイックターン・左右移動","20003":"NPC Sub-goal Test 03: Retreat/Step -- NPCサブゴールテスト03:後退・ステップ","20010":"NPC Test 00: Test -- NPCテスト00:テスト","90390":"Dungeon Objects (for bullet owners) -- 地下牢 器オブジェ(弾丸オーナー用)","107000":"Skeleton (King of the Evil Kin) -- スケルトン(死霊の王 眷属)","107001":"Skeleton (song sword) -- スケルトン(曲剣)","107002":"Skeleton (Sword) -- スケルトン(大曲剣)","107003":"Skeleton (bow) -- スケルトン(弓)","107004":"Skeleton (song sword) * Always running -- スケルトン(曲剣)※必ず走る","107005":"Skeleton (Sword) * Always running -- スケルトン(大曲剣)※必ず走る","107006":"Skeleton (Flame vase) -- スケルトン(火炎壺)","107081":"Skeleton (Sword for suspension bridge) -- スケルトン(吊り橋用 剣)","107082":"Skeleton (torch for suspension bridge) -- スケルトン(吊り橋用 松明)","109000":"Dead Soldier: Segunda State -- 亡者兵士 :グンダ状態","110000":"Dead Soldier (Straight Sword + shield) -- 亡者兵士 (直剣+盾)","110001":"Dead Soldier (Straight Sword + shield): Oil pot possible -- 亡者兵士 (直剣+盾):油壺可能","110003":"Dead Soldier (Straight Sword + shield): Flame bottle possible -- 亡者兵士 (直剣+盾):火炎瓶可能","110004":"Dead Soldier (Straight Sword + shield): Love Molotov cocktails -- 亡者兵士 (直剣+盾):火炎瓶大好き","110005":"Dead Soldier (Straight sword only) -- 亡者兵士 (直剣のみ)","110006":"Dead Soldier (Straight sword only): Love Molotov cocktails -- 亡者兵士 (直剣のみ):火炎瓶大好き","110007":"Dead Soldier (Straight sword only): Flame bottle possible -- 亡者兵士 (直剣のみ):火炎瓶可能","110008":"Dead Soldier (Straight sword only): Oil pot possible -- 亡者兵士 (直剣のみ):油壷可能","110010":"Dead soldier (Spear + large shield) -- 亡者兵士 (槍+大盾)","110020":"Dead Soldier (Crossbow) -- 亡者兵士 (クロスボウ)","110030":"Dead Soldier (Lantern) -- 亡者兵士 (ランタン)","110050":"Dead Soldier (broken) -- 亡者兵士 (折れ直)","110053":"Dead Soldier (Ojo 1) -- 亡者兵士 (折れ直 嗅覚有 王城1)","110054":"Dead soldier (for a broken straight makeover. Only closer) -- 亡者兵士 (折れ直 変身用。近づくだけ)","110060":"Dead Soldier (Dagger) -- 亡者兵士 (短剣)","110070":"Dead Soldier (Common) special standby ※ When you become a combat state, change to another thought ID on the event side -- 亡者兵士 (共通)特殊待機時 ※戦闘状態になったら、イベント側で別の思考IDに変更する","110090":"[Monster House] dead soldier (Straight sword) -- 【モンスターハウス】亡者兵士 (直剣)","110091":"[Monster House] dead soldier (Spear + large shield) -- 【モンスターハウス】亡者兵士 (槍+大盾)","110093":"[Monster House] dead soldier (lantern) -- 【モンスターハウス】亡者兵士 (ランタン)","110094":"[For City Test] dead Sniper -- 【街テスト用】亡者スナイパー","110098":"Dead soldier Test: Straight Sword + Shield -- 亡者兵士テスト用:直剣+盾","110500":"Dead Soldier (Large) _ Axe -- 亡者兵士(大)_斧","110501":"Dead Soldier (Large) _ Axe visibility Low Ojo 1 -- 亡者兵士(大)_斧 視界低い 王城1","110510":"Dead Soldier (Large) _ Halle Bird -- 亡者兵士(大)_ハルバード","110511":"Dead Soldier (Large) _ Halle Bird Vision/Hearing Low Ojo 1 -- 亡者兵士(大)_ハルバード 視界/聴覚低い 王城1","110580":"Dead Soldier (Large) _ Axe _interupttest -- 亡者兵士(大)_斧_INTERUPTTest","110590":"Dead Soldier (Large) _ for Umeda test -- 亡者兵士(大)_梅田テスト用","111000":"Dark Knight Straight Sword + Shield -- ダークナイト 直剣 + 盾","111001":"Dark Knight Straight Sword + shield (olfactory parameters for events) -- ダークナイト 直剣 + 盾  (イベント用嗅覚パラメータ)","111050":"Dark Knight Straight Sword + shield for Avatar -- ダークナイト 直剣 + 盾 アバター用","111098":"For the Dark Knight Test (Nakano) -- ダークナイト テスト用(中野)","112000":"Dead Knight (Sword shield) -- 亡者騎士(剣盾)","113000":"Small slugs of caries -- 蝕のナメクジ小","113010":"It's a small arm slug. -- 蝕のナメクジ小 腕だし","113200":"A slug of the caries (dead dumpling) -- 蝕のナメクジ(亡者団子)","115000":"Dead Shi Mace + Large Shield -- 亡者僧兵 メイス+大盾","115010":"Dead Shi both hand held hammer -- 亡者僧兵 両手持ちハンマー","115020":"Dead Shi Ice-ax -- 亡者僧兵 ピッケル","115030":"Dead Shi Mace + Miracle -- 亡者僧兵 メイス+奇跡","115040":"Dead Shi Long Distance miracle -- 亡者僧兵 遠距離奇跡","115070":"Narrow visual range for dead Shi circuit -- 亡者僧兵 巡回用 視覚範囲狭い","117000":"Skeleton Warrior a Scimitar + shield -- スケルトン戦士A シミター+盾","117010":"Skeleton Warrior A Nodachi -- スケルトン戦士A 野太刀","117030":"Skeleton Warrior A bow (pre-creation) -- スケルトン戦士A 弓(先行作成)","118000":"Skeleton Warrior B: Scimitar one hand -- スケルトン戦士B:シミター片手","118010":"Skeleton Warrior B: Scimitar Nitori -- スケルトン戦士B:シミター二刀流","119000":"Dead Priest Grey Tome + Cathedral Church of the Great Shield -- 亡者僧騎士 グレートメイス+大盾 聖堂教会","119005":"Dead Priest Grey tome + great Shield Bow Switching Basilica Association -- 亡者僧騎士 グレートメイス+大盾 弓持ち替え可 聖堂協会","119010":"Dead Priest the Great Sword Basilica Church -- 亡者僧騎士 グレートソード 聖堂教会","119050":"Dead Knight Grey Tome + Large shield (avatar) -- 亡者僧騎士 グレートメイス+大盾(アバター)","120000":"Dwarf man hatchet/ice-ax: blowgun possible -- 矮小人 ハチェット/ピッケル :吹き矢可能","120001":"Dwarf man hatchet/ice-ax: blowgun narrow View -- 矮小人 ハチェット/ピッケル :吹き矢可能 視野狭い","120002":"Dwarf man hatchet/ice-ax: blowgun possible?? -- 矮小人 ハチェット/ピッケル :吹き矢可能 ??","120003":"Dwarf man hatchet/ice-ax: Flame pots available -- 矮小人 ハチェット/ピッケル :火炎壺可能","120004":"Dwarf man hatchet/ice-ax: Fire Pot battery -- 矮小人 ハチェット/ピッケル :火炎壺砲台","120005":"Dwarf man hatchet/ice-ax: blowgun/flame vase not available -- 矮小人 ハチェット/ピッケル :吹き矢/火炎壺 不可","120010":"Dwarf man hatchet/ice-ax: blowgun Main -- 矮小人 ハチェット/ピッケル :吹き矢メイン","120020":"Dwarf Man Large Sword -- 矮小人 大剣","120050":"Dwarf man hatchet/ice-ax (avatar) -- 矮小人 ハチェット/ピッケル (アバター)","121000":"Blue _ Spear + Shield -- ブルー_槍+盾","121001":"Blue _ Spear + Shield: Arimoro -- ブルー_槍+盾:専守","121010":"Blue _ Sword -- ブルー_剣","121020":"Deep Blue -- ブルー_ディープ","121030":"Blue _ Estrus -- ブルー_発情","121040":"Blue _ quadruped -- ブルー_四足","122000":"Resurrection (first to second form) patrol -- よみがえり(第1~2形態) 巡回","122010":"Resurrection (first to second form) fixed battery -- よみがえり(第1~2形態) 固定砲台","122020":"Resurrection (first to second form) body appearance solid -- よみがえり(第1~2形態) 本体出現固体","122030":"Resurrection (first to second form) body injection solid -- よみがえり(第1~2形態) 本体射出固体","123000":"Missionary -- 宣教師","123001":"Long distance attack version until missionary PC approaches -- 宣教師 PCが近づくまで遠距離攻撃版","123051":"Missionary (Avatar: Retreat) -- 宣教師(アバター:後退)","123098":"Missionaries (for snipers) -- 宣教師(スナイパー用)","123099":"Missionary -- 宣教師","124000":"Poor dead (hatchet) -- 貧民亡者(鉈)","124001":"Poor Dead (hatchet): Fire pot fixed Battery -- 貧民亡者(鉈):火炎壺固定砲台","124002":"Poor Dead (hatchet): Use of flame pots -- 貧民亡者(鉈):火炎壺使用","124003":"Poor Dead (hatchet): Oil pot fixed Battery -- 貧民亡者(鉈):油壺固定砲台","124004":"Poor Dead (hatchet): Oil jar use -- 貧民亡者(鉈):油壷使用","124010":"Poor dead (hatchet + lantern) -- 貧民亡者(鉈+ランタン)","124020":"The poor dead (sickle + dagger) -- 貧民亡者(鎌+短剣)","124030":"Poor dead (Mallet) -- 貧民亡者(木槌)","124040":"Poor dead (hoe) -- 貧民亡者(鍬)","125000":"Poor dead Elite -- 貧民亡者エリート","125099":"Poor dead Elite patrol test -- 貧民亡者エリート巡回テスト用","126000":"Poor dead servant: common -- 貧民亡者下男:共通","126090":"Poor dead servant: sawing -- 貧民亡者下男:鋸","126091":"Poor dead servant: common/Upper Visibility Limited edition -- 貧民亡者下男:共通/上視界制限版","128000":"Shin Ojo Knight: Straight Sword + Shield -- 新王城騎士:直剣+盾","128010":"New Ojo Knight: Spear + Shield -- 新王城騎士:槍+盾","128020":"New Ojo Knight: the Great Sword -- 新王城騎士:大剣","128030":"Shin Ojo Knight: Crossbow -- 新王城騎士:クロスボウ","129000":"Ojo Deb: Long axe -- 王城デブ:長斧","129010":"Ojo Deb: Short Axe Nitori -- 王城デブ:短斧二刀流","130000":"Black Knight: Sword -- 黒騎士:剣","130010":"Black Knight: Oversized Sword -- 黒騎士:特大剣","130020":"Black Knight: The Great Axe -- 黒騎士:大斧","130030":"Black Knight: Axe Spear -- 黒騎士:斧槍","131000":"Dark Knight Beast -- ダークナイトビースト","132000":"Crystal Elders -- 結晶の古老","132010":"Elders alter ego of Crystal -- 結晶の古老 分身","132200":"Crystal Elders Funnel -- 結晶の古老 ファンネル","133000":"The Keeper of the Forest: Long axe -- 森の番人:長斧","133010":"The Keeper of the Forest: the Great Sword -- 森の番人:大剣","133098":"Forest keeper: Long axe for bug test -- 森の番人:長斧バグテスト用","133099":"The Keeper of the Forest: the Great Sword test -- 森の番人:大剣 テスト","134000":"Dead Wax: Whip + Magic -- 蝋の死人:鞭+魔法","134010":"Dead Wax: Beating -- 蝋の死人:殴り","135000":"Slave Spirits: Dagger -- 奴隷霊:短剣","135010":"Slave Spirits: fetters -- 奴隷霊:足枷","135020":"Slave Spirits: no Legs -- 奴隷霊:足なし","135030":"Slave Spirit: Straight Sword -- 奴隷霊:直剣","136000":"Crucifixion dead A -- 磔亡者A","137000":"Crucifixion dead B -- 磔亡者B","137090":"Crucifixion dead b * old -- 磔亡者B ※古い","138000":"Snake Man priest -- 蛇人の司祭","139000":"Snake Assassin (Dagger x 2) -- 蛇人の暗殺者(短刀×2)","139010":"Snake Assassin (shorty + small shield) -- 蛇人の暗殺者(ショーテル+小盾)","139100":"Snake Assassin (Large) (Kusarigama) -- 蛇人の暗殺者(大) (鎖鎌)","141000":"Silver Knight Sword + Shield -- 銀騎士 剣+盾","141010":"Silver Knight Spear + Shield -- 銀騎士 槍+盾","141020":"Silver Knight Bow → Sword + shield -- 銀騎士 弓 → 剣+盾","141030":"Silver Knight bow → Spear + shield -- 銀騎士 弓 → 槍+盾","146000":"Painting Protection (phantom) -- 絵画守り(幻影)","147000":"Wheel skeleton -- 車輪スケルトン","148000":"Dark Knight (spirit body) -- ダークナイト(霊体)","149000":"A tracker (spirit body) -- 追跡者(霊体)","200000":"Eclipse Wolf -- 蝕のオオカミ","200096":"Eclipse Wolf: Kayukawa test -- 蝕のオオカミ:粥川テスト","200097":"Eclipse Wolf (heat up): Yoshida test -- 蝕のオオカミ(ヒートアップ):吉田テスト","200098":"Eclipse Wolf: Yoshida Test -- 蝕のオオカミ:吉田テスト","200099":"Eclipse Wolf: Kayukawa test -- 蝕のオオカミ:粥川テスト","202000":"Dead Dog (Large) -- 亡者犬(大)","202050":"Dead Dog (Large): Avatar test -- 亡者犬(大):アバタ―テスト","202099":"Dead Dog (Large): test -- 亡者犬(大):テスト","202100":"Dead Dog (Large) visual range minimum, hearing lower forest first half (dog skeleton instead) -- 亡者犬(大) 視覚範囲極小,聴覚低め 森前半(犬スケルトン代わり)","202101":"Dead Dog (small) -- 亡者犬(小)","202102":"Dead Dog (small) visibility Low Ojo 1 -- 亡者犬(小) 視界低い 王城1","202200":"Dead Dog (Large) (Salivan dog instead) -- 亡者犬(大)(サリヴァーン犬代わり)","202201":"Dead Dog (Large) (Salivan dog instead) _ Olfactory strong -- 亡者犬(大)(サリヴァーン犬代わり)_嗅覚強い","203000":"Salivan Reaper (song sword) -- サリヴァーンの死神(曲剣)","203010":"Salivan's death (sickle) -- サリヴァーンの死神(鎌)","203099":"Salivan Reaper: Test -- サリヴァーンの死神:テスト","204000":"Hungry Jack -- はらぺこジャック","204050":"Hungry Jack: The 12-end Avatar Edition -- はらぺこジャック:12末アバタ―版","204099":"Hungry Jack: Test -- はらぺこジャック:テスト","206000":"Resurrection (Third form) -- よみがえり(第3形態)","206010":"Resurrection (third form) Poison swamp forest -- よみがえり(第3形態) 毒沼の森","207000":"Prisoners in Dungeons (bare hands) -- 地下牢の囚人たち(素手)","207010":"Prisoners in Dungeons (spear) -- 地下牢の囚人たち(槍)","207020":"Prisoners in Dungeons (Daggers) -- 地下牢の囚人たち(短剣)","208000":"Dead Dog (Jibara) -- 亡者犬(うじばら)","209000":"The Angel of the Dragon -- 竜の御使い","210000":"Drifting Stuff -- 漂うもの","210010":"Drifting Stuff (mimicry) -- 漂うもの(擬態)","211000":"Dog Rats -- 犬ネズミ","211098":"Dog Rat (Test ai) -- 犬ネズミ(テストAI)","212000":"Mimic _ Normal -- ミミック_ノーマル","212010":"Mimic _ Exorcist -- ミミック_エクソシスト","213000":"Wriggles Carrion -- 蠢く腐肉","213090":"Wriggles Carrion (underground test) -- 蠢く腐肉(地下テスト)","214000":"Basilisk -- バジリスク","215000":"Crystal Lizard -- 結晶トカゲ","216000":"What we call Eclipse (small) -- 蝕を呼ぶもの(小)","218000":"Maggots (slug type) -- 蛆人(ナメクジタイプ)","218010":"Maggots (witch type) -- 蛆人(魔法使いタイプ)","218100":"Maggots (slug type): for Salivan warfare -- 蛆人(ナメクジタイプ):サリヴァーン戦用","218110":"Maggots (witch type): for Salivan warfare -- 蛆人(魔法使いタイプ):サリヴァーン戦用","219000":"Ojo Gargoyle: Lights -- 王城のガーゴイル:灯火","219010":"Ojo Gargoyle: Spear -- 王城のガーゴイル:槍","220000":"Sand worm in the waste city -- 廃都のサンドワーム","220100":"Sand worm in the Waste City (queen) -- 廃都のサンドワーム(女王)","221000":"Zombie Glass (dagger) -- ゾンビガラス(短剣)","221001":"Zombie Glass (scythe) -- ゾンビガラス(大鎌)","221002":"Zombie Glass (Cane) -- ゾンビガラス(杖)","223000":"New Shing -- 新獄吏","223010":"New Shing Sniper -- 新獄吏 スナイパー","224000":"Full Armor Beast -- フルアーマー獣","224100":"Full Armor Beast Ojo 2 small -- フルアーマー獣 王城2 雑魚","225000":"Tindalos -- ティンダロス","226000":"3-Ream Varistor -- 3連バリスタ","227000":"Stench crab -- 死臭蟹","227100":"Stench Crab (small) -- 死臭蟹(小)","229000":"Salivan watchdog (Large) -- サリヴァーンの番犬(大)","229100":"Salivan watchdog (small) -- サリヴァーンの番犬(小)","302000":"Golem (Bare hands) -- ゴーレム(素手)","302010":"Golem (Iron Sphere) -- ゴーレム(鉄球)","302100":"Golem (Large) -- ゴーレム(大)","302197":"Golem (Large) olfactory test -- ゴーレム(大) 嗅覚テスト","302198":"Golem (Large) Dungeon -- ゴーレム(大) 地下牢","302199":"Golem Cathedral -- ゴーレム(大) 聖堂","304000":"Observer of the Abyss -- 深淵の監視者","304090":"Observer of the Abyss * old -- 深淵の監視者 ※古い","304098":"Observer of the Abyss: Yoshida Test -- 深淵の監視者:吉田テスト","305000":"Ash Daemon -- 灰のデーモン","306000":"Firewood Daemon -- 薪のデーモン","306099":"Firewood Daemon (old) -- 薪のデーモン(古い)","306100":"Fire Wood Demon Street entrance square -- 薪のデーモン 街 入口広場","307000":"Daemon Priest -- デーモン司祭","308000":"Butterfly in caries -- 蝕の蝶","308001":"Butterfly of caries (not landing) -- 蝕の蝶(着地しない)","309000":"The prison spider -- 牢蜘蛛","310000":"Crystal Lizard God -- 結晶トカゲの神","310050":"Crystal Lizard God-avatar-bver- -- 結晶トカゲの神-アバタ-Bver-","311000":"Eclipse Spider -- 蝕の蜘蛛","312000":"Sacred Beast of the Forest -- 森の霊獣","312020":"Sacred Beast in the Forest (test) -- 森の霊獣(テスト)","314000":"The Flying Dragon of the bridge _ Hashimoto -- 橋の飛竜_ヘルカイト_橋下","314010":"The Flying Dragon of the bridge _ the Climb 2 -- 橋の飛竜_ヘルカイト_登る2","314020":"The bridge Flying Dragon _ hellfire _ Normal Combat -- 橋の飛竜_ヘルカイト_通常戦闘","314100":"The Flying Dragon of the bridge _ Ojo 1 (without sight or hearing) -- 橋の飛竜_ヘルカイト_王城1 (視覚・聴覚なし)","316000":"Dragon's Guardian Knight -- 竜の守護騎士","317000":"Dark Wraith -- ダークレイス","501000":"King of storms, simple -- 嵐の王・単体","502000":"Crimson Bat -- クリムゾンバット","503000":"The King of the Storm: riding -- 嵐の王:騎乗","511000":"Hero Segunda -- 英雄グンダ","511080":"Segunda (for throwing sync confirmation) -- グンダ(投げ同期確認用)","511090":"Segunda (Dead soldier control) monster House -- グンダ(亡者兵士系制御)モンスターハウス","511091":"Segunda (tracker-based control) monster House -- グンダ(追跡者系制御)モンスターハウス","511098":"Segunda (servant) -- グンダ(下男)","511099":"Segunda (tracker-based control) -- グンダ(追跡者系制御)","512000":"Snake Spirit -- 蛇霊","512092":"Snake Spirit Test _ Monster House -- 蛇霊テスト_モンスターハウス","512099":"Snake Spirit Test -- 蛇霊テスト","514000":"The Old king of caries -- 蝕の老王","514010":"The old king of caries _ an apparition -- 蝕の老王_幻影","514099":"The old king of caries test -- 蝕の老王テスト","515000":"Salivan -- サリヴァーン","516000":"King of the Dead -- 死霊の王","518000":"Cursed Colossus -- 呪われた巨像","518001":"Cursed Colossus (heat up Test) -- 呪われた巨像(ヒートアップテスト)","518002":"Cursed Colossus (normal test) -- 呪われた巨像(通常時テスト)","519000":"King of the disused city -- 廃都の孤王","520000":"Fat Daemon -- デブデーモン","520001":"Deb Demon Ojo 1 (Mausoleum) -- デブデーモン 王城1(霊廟)","520002":"Fat Demon Dungeon (surrogate) -- デブデーモン ダンジョン(代理)","522000":"Cardinal (Long) -- 枢機卿団(長)","522099":"Cardinal Test -- 枢機卿団テスト","522100":"Cardinal (Deb) -- 枢機卿団(デブ)","522101":"Cardinal (long guards Deb) -- 枢機卿団(長親衛デブ)","522200":"Cardinal (tall) -- 枢機卿団(のっぽ)","522300":"Cardinal (Normal) -- 枢機卿団(通常)","523000":"Mother Dragon -- 母ドラゴン","524000":"Moonlight Witch -- 月光の魔女","525000":"Prince of Darkness (brother) -- 闇の双皇子(兄)","525001":"Prince of Darkness (brother): HU -- 闇の双皇子(兄):HU","525100":"Prince of Darkness (brother) -- 闇の双皇子(弟)","526000":"Mad Warrior Hallec -- 狂戦士ハレック","527000":"A tracker -- 追跡者","900000":"■ ■ ■ ■ ■ For products up here ■ ■ ■ ■. ■. -- ■■■■■製品用ここまで■■■■■","901000":"Hiras Test -- hirasテスト","901100":"Yoshihi Test -- yoshihiテスト","901200":"Tsuruy Test -- tsuruyテスト","901300":"Move sub-goal Test 1: walking and running -- 移動サブゴールテスト1:歩行・走行","901301":"Move sub-goal Test 2: Quick turn/left/right movement -- 移動サブゴールテスト2:クイックターン・左右移動","901302":"Move sub-goal Test 3: Retreat Step -- 移動サブゴールテスト3:後退・ステップ","901400":"Masut Test -- masutテスト","902000":"Yoshihi damage Check -- yoshihiダメージチェック用","999305":"[FDP] Proto-wolf (weakening) -- 【FDP】プロト_ウルフ(弱化)","999410":"[FDP] Dead _ for covert confirmation -- 【FDP】亡者_隠密確認用","999901":"Team AI Reader test -- チームAIリーダーテスト","999910":"For sound Confirmation -- 音確認用"},"ObjActParam":{"0":"Need -- 必要","110":"Treasure Chest -- 宝箱","200":"Treasure Chest -- 宝箱","350":"M93_01_ Door _ Candle Room -- m93_01_扉_蝋燭部屋","351":"M93_01_ Door _ Candle Room -- m93_01_扉_蝋燭部屋","360":"M96_00 Door Concept Map _ Entrance -- m96_00 扉 コンセプトマップ_入口","370":"M96_00 Door Concept Map _ Temple entrance -- m96_00 扉 コンセプトマップ_聖堂入口","371":"M96_00 Door Concept Map _ Distant Entrance -- m96_00 扉 コンセプトマップ_遠景入口","475":"M20_01_ Door _ Orphanage 2f_ Small -- m20_01_扉_孤児院2F_小","1011":"Test_ Door Test -- test_扉テスト","1012":"Test_ Door Test -- test_扉テスト","10000":"Default -- デフォルト","90000":"Versatile door for FDP_ testing (double doors) -- FDP_テスト用_汎用扉(両開き)","90001":"Door with key for FDP_ test (double doors) -- FDP_テスト用_鍵付扉(両開き)","90002":"Key door for FDP_ test -- FDP_テスト用_内鍵扉","90010":"General purpose door for FDP_ test (single open) -- FDP_テスト用_汎用扉(片開き)","90011":"FDP_ Test door with key (single open) -- FDP_テスト用_鍵付扉(片開き)","90012":"Key door for FDP_ test (single open) -- FDP_テスト用_内鍵扉(片開き)","90013":"FDP_ test for Play -- FDP_テスト用_プレイアブル動作確認A","90014":"FDP_ Test (Play-AB operation confirmation B -- FDP_テスト用_プレイアブル動作確認B","90015":"FDP_ Test (Play-AB operation confirmation B -- FDP_テスト用_プレイアブル動作確認B","300300":"m30_00_ Door _ Mausoleum Short cut -- m30_00_扉_霊廟ショートカット","300301":"m30_00_ Door _ starting point -- m30_00_扉_スタート地点","300310":"M30_00_ Doors _ Wall Shortcuts -- m30_00_扉_城壁ショートカット","300311":"M30_00_ door _ Beast Room door -- m30_00_扉_ビースト部屋扉","300312":"m30_00_ Door _ One Way -- m30_00_扉_一方通行","300320":"M30_01_ doors _ Old garden buildings -- m30_01_扉_旧ガーデン建物","300370":"m30_00_ Door _ Salon Entrance -- m30_00_扉_大広間入口","300371":"m30_00_ Door _ Mausoleum exit door -- m30_00_扉_霊廟出口扉","300500":"m30_00_ Lever _ Mausoleum Façade elevator -- m30_00_レバー_霊廟正面エレベータ","300510":"m30_00_ Lever _ walled Elevator -- m30_00_レバー_城壁エレベーター","302420":"M30_02_ Lever _ a library elevator -- m30_02_レバー_書庫エレベータ","304873":"M30_01_ Lever _ Saloon Elevators -- m30_01_レバー_大広間エレベータ","310300":"m31_00_ doors _ with sewer keys -- m31_00_扉_下水道 鍵付き","310301":"m31_00_ Door _ Sewer one-way door -- m31_00_扉_下水道 一方通行扉","314027":"m31_00_ Door _ before the Sniper tower -- m31_00_扉_スナイパー塔前","314028":"m31_00_ Door _ Elephant Boss room ago -- m31_00_扉_巨象ボス部屋前","324012":"M32_00 Levers _ Ohgane -- m32_00 レバー_大鐘","324051":"M32_00 Lever _ Bridge Elevator -- m32_00 レバー_橋エレベーター","331312":"m33_00 lever poison swamp forest elevator -- m33_00 レバー 毒沼の森エレベーター","331321":"M33_00 Front door boss -- m33_00 両開き扉 ボス前","332100":"m33_00_ Doors _ Shotka -- m33_00_扉_ショトカ","340320":"m34_00_ doors _ Old garden buildings -- m34_00_扉_旧ガーデン建物","340330":"m34_00_ Doors _ Stacks Entrance -- m34_00_扉_書庫入口","350003":"M35_00 Levers _ Elevators -- m35_00 レバー_エレベーター","350005":"M35_00 Big Door _ Both sides of the basilica -- m35_00 大扉_聖堂両脇","350021":"m35_00 Lever _ shutter -- m35_00 レバー_シャッター","350206":"m35_00 Main Gate -- m35_00 大扉_聖堂正門","351000":"M35_00 Double Door -- m35_00 両開き扉","360320":"M36_00 double door in front of boss -- m36_00 両開き扉 中ボス前","360330":"m36_00 Double Door Shotka -- m36_00 両開き扉 ショトカ","370301":"m37_00_ Door _ Landmark Church Plaza -- m37_00_扉_ランドマーク教会前広場","370302":"M37_00_ Doors _ Garden Buildings -- m37_00_扉_ガーデン建物","370502":"m37_00_ Lever -- m37_00_レバー","382002":"M38_00 for Double Door Shotka -- m38_00 両開き扉 ショトカ用","390300":"m39_00_ Normal Door -- m39_00_通常扉","390301":"m39_00_ Fence Doors _ Outside -- m39_00_鉄柵扉_外側","390302":"m39_00_ Fence Door _ inside -- m39_00_鉄柵扉_内側","390305":"m39_00_ door one-way door -- m39_00_扉 一方通行扉","390306":"m39_00_ Door (Large) one-way door -- m39_00_扉(大) 一方通行扉","390500":"m39_00_ Dungeon Shotka Elebator -- m39_00_地下牢ショトカエレベーター","400340":"m40_00_ Room Door -- m40_00_ラスボス部屋扉","400510":"m40_00_ Lever -- m40_00_レバー","1000370":"M96_00 Door Concept Map _ Temple entrance -- m96_00 扉 コンセプトマップ_聖堂入口","1000371":"M96_00 Door Concept Map _ Distant Entrance -- m96_00 扉 コンセプトマップ_遠景入口","1300311":"M30_00_ Door _ Wall Shortcut 1 -- m30_00_扉_城壁ショートカット1","1314027":"m31_00_ Door _ before the Sniper tower -- m31_00_扉_スナイパー塔前","2300311":"M30_00_ Door _ Wall Shortcut 2 -- m30_00_扉_城壁ショートカット2"},"ObjectMaterialSfxParam":{},"ObjectParam":{"0":"Barista -- バリスタ","100":"Bonfire -- 篝火","350":"M93_01 Candle Room Door -- m93_01 蝋燭部屋扉","360":"[Concept version] start door -- 【コンセプト版】スタート扉","370":"[Concept version] boss entrance -- 【コンセプト版】ボス入口","371":"[Concept version] boss exit -- 【コンセプト版】ボス出口","400":"Small white Door -- 白扉(小)","401":"White Door (Medium) -- 白扉(中)","402":"Large White Door -- 白扉(大)","700":"Ladder test -- はしごテスト","705":"Ladder test -- はしごテスト","706":"Ladder test -- はしごテスト","707":"Ladder test -- はしごテスト","1010":"Wooden Desk Small -- 木の机 小","1020":"Wooden Desk -- 木の机","1030":"【 ritual 】 Princess Alternative obj00 -- 【儀式】皇女代替OBJ00","1031":"【 ritual 】 Princess Alternative obj01 -- 【儀式】皇女代替OBJ01","1032":"【 ritual 】 Princess Alternative obj02 -- 【儀式】皇女代替OBJ02","1033":"【 ritual 】 Princess Alternative obj03 -- 【儀式】皇女代替OBJ03","1034":"【 ritual 】 Princess Alternative obj04 -- 【儀式】皇女代替OBJ04","1050":"Wooden Chair -- 木の椅子","1060":"Wooden Stand -- 木の台","1080":"Crates -- 木箱","1090":"Barrels -- 樽","1091":"Flammable barrels -- 引火する樽","1095":"Oil Pot test -- 油壺テスト","1100":"Font -- 壷","1110":"Tub -- 桶","1190":"Mummy -- ミイラ","1240":"Candle Set -- 蝋燭セット","1241":"Candle Set -- 蝋燭セット","1270":"Firewood -- 薪","1279":"Cart Wheels -- 荷車車輪","1280":"Carts -- 荷車","1290":"Bookshelf -- 本棚","1332":"Skeleton Remnant -- 骸骨像残骸","1334":"Skeleton Mountain -- 骸骨の山","1336":"One Foot skull -- 足元髑髏1","1337":"Foot Skull 2 -- 足元髑髏2","2040":"Barista -- バリスタ","2050":"Wall broken with a sling -- 投石器で壊れる壁","2060":"Wall a broken by huge slime -- 巨大スライムによって壊れる壁A","2061":"Wall b broken by huge slime -- 巨大スライムによって壊れる壁B","2110":"Candle Room Coffin A -- 蝋燭部屋棺桶A","2111":"Candle Room Coffin B -- 蝋燭部屋棺桶B","2112":"Under the candle room coffin A -- 蝋燭部屋棺桶A下","2113":"Under the candle room coffin B -- 蝋燭部屋棺桶B下","2114":"Candle room on a coffin a -- 蝋燭部屋棺桶A上","2115":"On the candle room coffin B -- 蝋燭部屋棺桶B上","2132":"Candle Room: Pillar candle 1 (top) -- 【ロウソク部屋】柱ロウソク1(上)","2133":"Candle Room: Pillar Candle 2 (top) -- 【ロウソク部屋】柱ロウソク2(上)","2134":"Candle Room: Pillar Candle 3 (top) -- 【ロウソク部屋】柱ロウソク3(上)","2135":"[Candle room] pillar candle 4 (top) -- 【ロウソク部屋】柱ロウソク4(上)","2136":"[Candle Room] pillar candle 5 (top) -- 【ロウソク部屋】柱ロウソク5(上)","2137":"Candle Room: Pillar Candle 6 (top) -- 【ロウソク部屋】柱ロウソク6(上)","2138":"[Candle Room] pillar candle 7 (top) -- 【ロウソク部屋】柱ロウソク7(上)","2139":"[Candle Room] pillar candle 8 (top) -- 【ロウソク部屋】柱ロウソク8(上)","2140":"Hung Incense Burner -- 吊るされた香炉","2142":"Candle Room: Pillar candle 1 (bottom) -- 【ロウソク部屋】柱ロウソク1(下)","2143":"[Candle Room] pillar candle 2 (bottom) -- 【ロウソク部屋】柱ロウソク2(下)","2144":"[Candle Room] pillar candle 3 (bottom) -- 【ロウソク部屋】柱ロウソク3(下)","2145":"[Candle room] pillar candle 4 (bottom) -- 【ロウソク部屋】柱ロウソク4(下)","2146":"[Candle Room] pillar candle 5 (bottom) -- 【ロウソク部屋】柱ロウソク5(下)","2147":"[Candle Room] pillar candle 6 (bottom) -- 【ロウソク部屋】柱ロウソク6(下)","2148":"[Candle Room] pillar candle 7 (bottom) -- 【ロウソク部屋】柱ロウソク7(下)","2149":"[Candle Room] pillar candle 8 (bottom) -- 【ロウソク部屋】柱ロウソク8(下)","2150":"Candlestick -- 燭台","2160":"Oil jar -- 油壷","2170":"Column -- 柱","2172":"High pillar -- 高い柱","2182":"Cloth -- 布","2188":"Cloth Burning -- 布燃焼","2189":"Cloth Burning 2 -- 布燃焼2","2190":"Cloth Burning 3 -- 布燃焼3","2191":"Cloth Burning 4 -- 布燃焼4","2192":"Cloth Burning 5 -- 布燃焼5","2425":"Column Crates -- 柱木枠","2426":"Crate 01 -- 木枠01","2427":"Crate 02 -- 木枠02","2428":"Crate 03 -- 木枠03","2429":"Crate 04 -- 木枠04","2486":"Chain cloth -- チェーン布","3015":"Corpse D -- 死体D","4500":"Statue of Ishibashi -- 石橋像","4501":"Statue of Ishibashi 2 -- 石橋像2","4502":"Statue of Ishibashi 3 -- 石橋像3","4510":"Ishibashi Entrance Gate -- 石橋入口門","4520":"Tower entrance -- 塔入口","4541":"Ishibashi Entrance -- 石橋入口","4542":"Ishibashi Second -- 石橋2番目","4543":"Ishibashi Dragon Destruction -- 石橋ドラゴン破壊","4545":"Ishibashi Last -- 石橋最後","4546":"Ishibashi Middle Dragon Destruction -- 石橋中間ドラゴン破壊","4550":"Candle Room Altar -- 蝋燭部屋祭壇","4610":"Rack broken -- 壊れるラック","4620":"Wheel of wood broken -- 壊れる木の車輪","4650":"Destruction obj for m93_01_00 -- m93_01_00用 破壊OBJ","4651":"Destruction Obj2 for m93_01_00 -- m93_01_00用 破壊OBJ2","6025":"Flying snake -- 飛び蛇","7010":"Wood windows for FDP -- FDP用_木窓","7011":"Wood for FDP-_M95 -- FDP用_m95用木材","7100":"Muzha -- 木柵","8000":"Crystal Lizard God Crystal -- 結晶トカゲの神 結晶","8100":"Crystal Elders Crystals -- 結晶の古老 結晶","9020":"Tree -- 木","9036":"Tree -- 木","9039":"Icicles on -- つらら 上用","9041":"Suspension Bridge Test -- 吊り橋テスト","9042":"Test -- test","9043":"Test2 -- test2","9044":"Suspension Bridge Test 2 -- 吊り橋テスト2","9046":"For icicles -- つらら 下用","9055":"Hidden aisle Right -- 隠し通路 右","9056":"In the hidden aisle -- 隠し通路 中","9057":"Hidden aisle Left -- 隠し通路 左","9064":"Icicles -- つらら","9070":"Branch PO -- 枝ポき","9200":"Branch to be squared -- 乗れる枝","9201":"Small trees -- 小さい木","9202":"Waterfall (bottom) -- 滝(下)","9203":"Waterfall (top) -- 滝(上)","9204":"Suspension bridge -- 吊り橋","9205":"Can break tower -- 壊せる塔","9206":"Cornice (small) -- 雪庇(小)","9207":"Cornice (Large) -- 雪庇(大)","9208":"Bridge Bar -- 橋棒","300305":"M30_00 Mausoleum Door -- m30_00 霊廟扉","300310":"M30_00 Barred Door -- m30_00 鉄格子扉","300370":"M30_00_ Hall Entrance Door -- m30_00_大広間入り口の扉","300400":"White Door Saloon -- 白扉大広間","300510":"m30_00_ Elevator Lever -- m30_00_エレベータレバー","300700":"Ojo Ladder A -- 王城梯子A","300711":"Ojo Ladder B -- 王城梯子B","300712":"Ojo Ladder C -- 王城梯子C","300713":"Ojo Ladder D -- 王城梯子D","300714":"Ojo Ladder E -- 王城梯子E","300720":"Ojo Hall Ladder A -- 王城大広間用梯子A","301100":"M30_00 Ball -- m30_00 大玉","301336":"Bone Mountain A -- 骨の山A","301337":"Bone Mountain B -- 骨の山B","301880":"M30_00 Boss Room Altar A -- m30_00 ボス部屋祭壇A","301881":"M30_00 boss Room Altar C -- m30_00 ボス部屋祭壇C","301883":"M30_00 Boss Room Altar B -- m30_00 ボス部屋祭壇B","301885":"M30_00 Boss Room Pillar B -- m30_00 ボス部屋柱B","301890":"M30_00 Boss Room Pillar A -- m30_00 ボス部屋柱A","301895":"M30_00 Boss Room Beam -- m30_00 ボス部屋梁","301896":"M30_00 boss Room Wall C -- m30_00 ボス部屋壁C","301898":"M30_00 boss Room carpet on the floor -- m30_00 ボス部屋床の絨毯","301970":"M30_00 Boss Room Grass A -- m30_00ボス部屋草A","301971":"M30_00 Boss Room Grass B -- m30_00ボス部屋草B","302040":"m30_00 Luggage availed Mounting obj -- m30_00 荷物吊り上げる土台OBJ","302041":"m30_00 Luggage availed obj -- m30_00 荷物吊り上げるOBJ","302512":"Tableware Set 1 -- 食器セット1","302513":"Tableware Set 2 -- 食器セット2","302514":"Wooden Shelves -- 木の棚","302517":"Tree -- 組み木","302519":"Tower Tip -- 塔先端","302520":"Salon Chaise -- 大広間の長椅子","302525":"Ojo Wall Lantern -- 王城城壁用灯篭","302526":"Burning timbered -- 燃えている木組み","302552":"Caries Armor 1 -- 蝕の鎧1","302553":"Caries Armor 2 -- 蝕の鎧2","302554":"Caries Armor 3 -- 蝕の鎧3","302555":"Iron Sword -- 鉄の剣","302563":"Fat Knight Corpse -- デブ騎士死体","302565":"Stone Candle -- 石像蝋燭持ち","302566":"No statue head -- 石像頭無し","302567":"The Altar of the tavern -- 酒場の祭壇","302580":"Dead Tree A -- 亡者の木A","302581":"Dead b -- 亡者の木B","302582":"Dead Tree C -- 亡者の木C","302583":"Dead Tree D -- 亡者の木D","302584":"Dead E -- 亡者の木E","302585":"Dead Tree E Swell -- 亡者の木Eのウネリ","302590":"The body that calls for eclipse -- 蝕を呼ぶもの死体","304005":"Crates -- 木箱","304500":"M30_00 Boss Room Pillar A -- m30_00ボス部屋柱A","304501":"M30_00 Boss Room Pillar B -- m30_00ボス部屋柱B","304502":"M30_00 Boss Room column C -- m30_00ボス部屋柱C","304517":"Lantern -- 灯篭","304663":"Cup -- コップ","304664":"M30_00 Segunda Mausoleum Sword -- m30_00 グンダ霊廟の剣","304665":"Sword entity of the m30_00 Segunda mausoleum -- m30_00 グンダ霊廟の剣実体","304670":"M30_00 Weapon Racks -- m30_00 武器ラック","304715":"Wooden Chair -- 木の椅子","304783":"M30_00 Chandelier -- m30_00 シャンデリア","304822":"M30_00 Elevator -- m30_00エレベーター","304837":"M30_00 Boss Room Stone Monument -- m30_00ボス部屋石碑","304851":"Luxury chairs in the saloon -- 大広間の豪華椅子","304852":"M30_00 Chair -- m30_00 椅子","304853":"Saloon Pulpit -- 大広間の説教台","304854":"Wooden Chair -- 木の椅子","304855":"Wooden Desk -- 木の机","304856":"Wooden Desk 2 -- 木の机2","304857":"Shu of the Saloon -- 大広間の蜀台","305000":"Salon Tapestry -- 大広間タペストリ","309002":"m30_00 Dragon Corpse -- m30_00 ドラゴンの死体","309003":"m30_00 Dragon Corpse -- m30_00 ドラゴンの死体","311000":"Wooden Fence 1 -- 木製柵1","311001":"Wooden Fence 2 -- 木製柵2","311800":"Crates (city) -- 木箱(街)","311900":"Boss Room Floor -- ボス部屋床","311910":"Boss Room Floor Rubble -- ボス部屋床瓦礫","312001":"Iron Cage -- 鉄檻","313000":"Piles of wood -- 木の杭","314000":"Curse Dolls -- 呪いの人形","314004":"Wooden Chair (city) -- 木製椅子 (街)","314005":"Crates (city) -- 木箱(街)","314007":"Small Ladder (city) -- 小梯子(街)","314008":"Zaru -- ざる","314009":"Small urn (city) -- 壷小(街)","314010":"Crock 1 (city) -- 壷1(街)","314027":"Boss Room: Door -- ボス部屋:扉","314100":"M31_00 OBJ -- m31_00 OBJ","314101":"M31_00 OBJ -- m31_00 OBJ","314102":"M31_00 OBJ -- m31_00 OBJ","314103":"M31_00 OBJ -- m31_00 OBJ","315600":"Barrel with cloth -- 布付き樽","315700":"Destructive board -- 破壊可能板","316000":"Font -- 壷","316010":"Carts -- 荷車","316500":"Suspended torches -- 吊るされた松明","319000":"M31_00 Test Model -- m31_00 テストモデル","319002":"Iron Carriage 1 (cover) -- 鉄馬車1(遮蔽物)","319004":"Iron Carriage 2 (cover) -- 鉄馬車2(遮蔽物)","319012":"A light-up thing -- 街灯的な物","319180":"The suspended body (on the foot) -- 吊るされた死体(足が上)","319181":"Dead body (head up) -- 吊るされた死体(頭が上)","321030":"Bridge Destruction Dummy -- 橋の破壊ダミー","331000":"Tree -- 木","331003":"Tree -- 木","331004":"Tree -- 木","331005":"Tree -- 木","331006":"Tree -- 木","331007":"Tree -- 木","331008":"Tree -- 木","331204":"Tree Grave 1 -- 木の墓標1","331205":"Tree Grave 2 -- 木の墓標2","331206":"Tree Grave 3 -- 木の墓標3","331207":"Tree Grave 4 -- 木の墓標4","331208":"Tree Grave 5 -- 木の墓標5","331322":"Ruined church floor -- 廃教会破壊床","340700":"Ladder 0 -- 梯子0","340701":"Ladder One -- 梯子1","340702":"Ladder 2 -- 梯子2","340703":"Ladder 3 -- 梯子3","340704":"Ladder 4 -- 梯子4","340705":"Ladder 5 -- 梯子5","342200":"Boss Destruction Pillar 00 -- ボス破壊柱00","342210":"Boss Destruction Pillar 10 -- ボス破壊柱10","342220":"Boss Destruction Wall 20 -- ボス破壊壁20","342230":"Boss Destruction Wall 30 -- ボス破壊壁30","342240":"Boss Destruction Wall 40 -- ボス破壊壁40","342300":"Globe -- 地球儀","342301":"Telescope -- 望遠鏡","342400":"Elevator -- エレベータ","344783":"Chandelier -- シャンデリア","344850":"Decorated stand -- 装飾された台","344851":"Decorated chairs -- 装飾された椅子","344852":"Simple Chair -- 簡素な椅子","344854":"Chair -- 椅子","344855":"Desk -- 机","344856":"Desk (lots of decorations) -- 机(装飾多め)","344857":"Candlestick (Large) -- 燭台(大)","344858":"Chandelier (Castle Style) -- シャンデリア(城風)","344859":"Candlestick (small) -- 燭台(小)","344863":"Torch -- トーチ","344884":"Small box -- 小物箱","344885":"Vase -- 壺","344886":"Feature -- 本立て","344890":"Loading book 0 -- 積み本0","344891":"Loading Book 1 -- 積み本1","344892":"Loading Book 2 -- 積み本2","344893":"Loading Book 3 -- 積み本3","344894":"Loading Book 4 -- 積み本4","350002":"Elevator -- 昇降機","350003":"Lever One -- レバー1","350004":"Wooden Chair -- 木製椅子","350006":"Incense Burner (small) -- 香炉(小)","350007":"Incense Burner (Medium) -- 香炉(中)","350008":"Incense Burner (Large) -- 香炉(大)","350010":"Candlestick 1 -- 燭台1","350013":"A candle stand -- 蝋燭台","350016":"Statue One -- 石像1","350017":"Stone Statue 2 -- 石像2","350018":"Fence Door -- 鉄柵扉","350019":"Lat -- 石柱","350021":"Lever 2 -- レバー2","350034":"Bell tower -- 鐘楼","350051":"Grave -- 墓","350053":"Grave (Large) -- 墓(大)","350063":"The edge of a moving scaffold -- 動く足場の端","351102":"Ladder -- はしご","353000":"Book -- 本","353010":"Candlestick 2 -- 燭台2","359010":"Coffin -- 棺","359012":"Fallen trees -- 倒木","359013":"Tomb (Sarcophagus set) -- 墓(石棺セット)","359019":"Wooden Fence 2 -- 木製柵2","359020":"Wooden Desk -- 木の机","359021":"Wooden Chair -- 木の椅子","359101":"Rosalia Room Vert A -- ロザリア部屋のヴェールA","359112":"Cradle -- ゆりかご","359114":"Rosalia Room Vert B -- ロザリア部屋のヴェールB","359115":"Cradle Hung -- 吊るされたゆりかご","359200":"Golem only can break statue -- ゴーレムのみ壊せる石像","360710":"The God grave destroyed ladder -- 神墓破壊される梯子","369100":"God grave Test Branch -- 神墓 テスト枝","373001":"A small desk -- キチンの机(小)","373002":"Chitin Cage 01 -- キチンのケージ01","373003":"Chitin Cage 02 -- キチンのケージ02","373004":"Cage 03 of Chitin -- キチンのケージ03","373011":"Kitchen Desk (Large) version 02 -- キチンの机(大)バージョン02","373012":"Kitchen Desk (Large) version 03 -- キチンの机(大)バージョン03","373013":"Kitchen Desk (Large) version 04 -- キチンの机(大)バージョン04","373014":"Kitchen Desk (small) version 02 -- キチンの机(小)バージョン02","373016":"Bonfire Church Chair -- 篝火教会の椅子","381004":"Candle Set -- 蝋燭セット","381015":"For bridge Event obj -- 吊橋イベント用OBJ","381034":"Dungeon Varistor Avoidance Wall -- ダンジョンバリスタ回避壁","389010":"Dungeon Destruction Floor -- ダンジョン破壊床","389020":"Dungeon Varistor Avoidance Wall A -- ダンジョンバリスタ回避壁A","389021":"Dungeon Varistor Avoidance Wall B -- ダンジョンバリスタ回避壁B","389041":"Dungeon Suspension Bridge -- ダンジョン 吊り橋","389042":"Dungeon Suspension Bridge post-destruction ladder -- ダンジョン 吊り橋破壊後梯子","390300":"Fence Door 1 -- 鉄柵扉1","390301":"Fence Door 2 -- 鉄柵扉2","390302":"Fence Door 3 -- 鉄柵扉3","390303":"Fence Door 4 -- 鉄柵扉4","390304":"Fence Door 5 -- 鉄柵扉5","390500":"Lever One -- レバー1","390501":"Lever 2 -- レバー2","390550":"Elevator 1 -- エレベーター1","392000":"Tableware 1 -- 食器1","392001":"Tableware 2 -- 食器2","392100":"Wooden Scaffolding 1 -- 木製足場1","392101":"Wooden Scaffolding 2 -- 木製足場2","392200":"Iron Basket 1 -- 鉄籠1","392400":"Swaying chain (long) -- 揺れる鎖(長)","392410":"Swinging Chain (Medium) -- 揺れる鎖(中)","392420":"Short chain swaying -- 揺れる鎖(短)","400340":"Fence Door 1 -- 鉄柵扉1","400510":"Lever -- レバー","400700":"Ladder -- はしご","404011":"Big bells -- でかい鐘","404822":"Elevator -- エレベーター","962121":"The image of a woman praying -- 祈っている女像(壊)","990023":"Caries test -- 蝕テスト","990026":"The king expression test of firewood -- 薪の王表現テスト","990060":"Test box -- テストボックス","999993":"A suspended cage -- 吊るされた檻","999999":"Default -- デフォルト"},"PhantomParam":{"1":"小白 Phantom -- 小白ファントム","2":"White Phantom -- 白ファントム","3":"Blue Phantom 0 -- 青ファントム0","4":"Blue Phantom 1 -- 青ファントム1","5":"Blue Phantom 2 -- 青ファントム2","6":"Koganeyu Phantom -- 小金ファントム","7":"Gold Phantom -- 金ファントム","8":"Red Phantom 0 -- 赤ファントム0","9":"Red Phantom 1 -- 赤ファントム1","10":"Red Phantom 2 -- 赤ファントム2","11":"Black Phantom -- 黒ファントム","12":"Dragon Spirit Phantom -- 竜霊ファントム","13":"The Abyss Phantom -- 深淵ファントム","14":"Servant Phantom -- 下僕ファントム","15":"Ghost Phantom usually -- 通常幻影ファントム","16":"Bonfire Ghost Phantom -- 篝火幻影ファントム","17":"Tomb Ghost Phantom -- 墓霊ファントム","18":"Weapon Enchantment _ Physical reinforcement -- 武器エンチャント_物理強化","19":"Weapon Enchantment _ Magical reinforcement -- 武器エンチャント_魔力強化","20":"Weapon Enchant _ Lightning strengthening -- 武器エンチャント_雷強化","21":"Weapon Enchant _ Flame Enhancement -- 武器エンチャント_炎強化","22":"Weapon Enchantment _ Dark Reinforcement -- 武器エンチャント_闇強化","23":"Weapons Enchant _ Poison strengthening -- 武器エンチャント_毒強化","24":"Weapons Enchant _ Bleeding strengthening -- 武器エンチャント_出血強化","25":"Weapon Enchantment _ Weapon destruction reinforcement -- 武器エンチャント_武器破壊強化","26":"Weapons Enchanted _ Curse Enhanced -- 武器エンチャント_呪強化","27":"Phantom Ghost (tentative name) -- 幻影霊ファントム(仮称)","28":"Weapon Enchantment _ Chill -- 武器エンチャント_冷気","29":"Red Phantom 3 -- 赤ファントム3","30":"Weapon Enchantment _ Greater Magic -- 武器エンチャント_魔力強化(大)","31":"Ghost Knight _ Ghost State -- 亡霊騎士_亡霊状態","32":"Painting Mamoru Phantom -- 絵画守 幻影","33":"Old King Illusion of caries -- 蝕の老王 幻影","35":"King of Firewood Test -- 薪の王テスト","36":"King of Firewood Test (with Edge) -- 薪の王テスト(エッジあり)","40":"Tiger Translucent -- トラ 半透明","41":"Tiger completely transparent -- トラ 完全に透明","42":"Tiger Normal -- トラ 通常","43":"Black Tiger Normal -- 黒トラ 通常","50":"Shield Enchantment _ Physical reinforcement -- 盾エンチャント_物理強化","51":"Shield Enchantment _ Strengthening Magic -- 盾エンチャント_魔力強化","52":"Shield Enchantment _ Lightning strengthening -- 盾エンチャント_雷強化","53":"Shield Enchantment _ Flame Enhancement -- 盾エンチャント_炎強化","54":"Shield Enchantment _ Dark Reinforcement -- 盾エンチャント_闇強化","55":"Shield Enchantment _ Strengthening Poison -- 盾エンチャント_毒強化","56":"Shield Enchantment _ Bleeding strengthening -- 盾エンチャント_出血強化","57":"Shield Enchantment _ Shield destruction reinforcement -- 盾エンチャント_盾破壊強化","58":"Shield Enchanted _ Curse Enhanced -- 盾エンチャント_呪強化","59":"Shield Enchantment _ Chill -- 盾エンチャント_冷気","60":"Dark Spirits -- 闇霊","61":"White Spirits -- 白霊","62":"Wandering Ghosts -- 徘徊幻影","63":"Blood Phantom. -- 血痕幻影","64":"Solar White Spirits -- 太陽白霊","65":"Sun Red Spirits -- 太陽赤霊","66":"Berserker White Spirits -- バーサーカー白霊","67":"Berserker Red Spirits -- バーサーカー赤霊","68":"The Sinner Hero Spirit -- 罪人英雄霊","69":"Sinners Hunting Spirits -- 罪人狩り霊","70":"Red Hunting Spirits -- 赤狩り霊","71":"Rosalia Guardian Spirits -- ロザリア守護霊","72":"Map Guardian Spirits (bridge) -- マップ守護霊(橋)","73":"Map Guardian Spirits (tbd) -- マップ守護霊(未定)","74":"Sign Illusion -- サイン幻影","101":"小白 Phantom-time to rest-inside -- 小白ファントム-残り時間-中","102":"White Phantom-time remaining-medium -- 白ファントム-残り時間-中","103":"Koganeyu Phantom-time to rest-inside -- 小金ファントム-残り時間-中","104":"Gold Phantom-remaining time-in -- 金ファントム-残り時間-中","105":"Red Phantom 0-remaining time-medium -- 赤ファントム0-残り時間-中","106":"Red Phantom 1-time to rest-medium -- 赤ファントム1-残り時間-中","107":"Red Phantom 2-time to rest-medium -- 赤ファントム2-残り時間-中","108":"Red Phantom 3-remaining time-medium -- 赤ファントム3-残り時間-中","109":"Black Phantom-time remaining-medium -- 黒ファントム-残り時間-中","201":"小白 Phantom-Time remaining-small -- 小白ファントム-残り時間-小","202":"White Phantom-Time left-small -- 白ファントム-残り時間-小","203":"Koganeyu Phantom-Time remaining-small -- 小金ファントム-残り時間-小","204":"Gold Phantom-time remaining-small -- 金ファントム-残り時間-小","205":"Red Phantom 0-time left-small -- 赤ファントム0-残り時間-小","206":"Red Phantom 1-time left-small -- 赤ファントム1-残り時間-小","207":"Red Phantom 2-time left-small -- 赤ファントム2-残り時間-小","208":"Red Phantom 3-time left-small -- 赤ファントム3-残り時間-小","209":"Black Phantom-Time left-small -- 黒ファントム-残り時間-小"},"PlayRegionParam":{"0":"Invalid data (no deletion) -- 無効データ(削除禁止)","300001":"Ojo 1_01 -- 王城1_01","300002":"Ojo 1_02 -- 王城1_02","300003":"Ojo 1_03 -- 王城1_03","300004":"Ojo 1_04 -- 王城1_04","300006":"Ojo 1_06 -- 王城1_06","300007":"Ojo 1_07 -- 王城1_07","300008":"Ojo 1_08 -- 王城1_08","300009":"Ojo 1_09 -- 王城1_09","300020":"Ojo 1_20 -- 王城1_20","300021":"Ojo 1_21 -- 王城1_21","300022":"Ojo 1_22 -- 王城1_22","300023":"Ojo 1_24 -- 王城1_24","300024":"Ojo 1_25 -- 王城1_25","301000":"Ojo 2_00 -- 王城2_00","301001":"Ojo 2_01 -- 王城2_01","301002":"Ojo 2_02 -- 王城2_02","301003":"Ojo 2_03 -- 王城2_03","301010":"Ojo 2_10 -- 王城2_10","301011":"Ojo 2_11 -- 王城2_11","310000":"_00 City of the tower -- 塔の街_00","310001":"_01 City of the tower -- 塔の街_01","310002":"_02 City of the tower -- 塔の街_02","310003":"_03 City of the tower -- 塔の街_03","310004":"_04 City of the tower -- 塔の街_04","310020":"_20 City of the tower -- 塔の街_20","310021":"_21 City of the tower -- 塔の街_21","320001":"Bridge _01 -- 橋_01","320002":"Bridge _02 -- 橋_02","320010":"Bridge _10 -- 橋_10","320011":"Bridge _11 -- 橋_11","330001":"Poison Swamp forest _01 -- 毒沼の森_01","330002":"Poison Swamp forest _02 -- 毒沼の森_02","341000":"Ojo 3_00 -- 王城3_00","341001":"Ojo 3_01 -- 王城3_01","341002":"Ojo 3_02 -- 王城3_02","341003":"Ojo 3_03 -- 王城3_03","341010":"Ojo 3_10 -- 王城3_10","341011":"Ojo 3_11 -- 王城3_11","350001":"Basilica Church _01 -- 聖堂教会_01","350002":"Basilica Church _02 -- 聖堂教会_02","350003":"Basilica Church _03 -- 聖堂教会_03","360001":"God Grave _01 -- 神墓_01","360002":"God Grave _02 -- 神墓_02","360003":"God Grave _03 -- 神墓_03","370001":"Anole Ruins _01 -- アノール遺跡_01","370002":"Anole Ruins _02 -- アノール遺跡_02","370003":"Anole Ruins _03 -- アノール遺跡_03","380001":"Dungeon _01 -- ダンジョン_01","380002":"Dungeon _02 -- ダンジョン_02","380003":"Dungeon _03 -- ダンジョン_03","390001":"Dungeon _01 -- 地下牢_01","390002":"Dungeon _02 -- 地下牢_02","390003":"Dungeon _03 -- 地下牢_03","400001":"Base _01 -- 拠点_01","400002":"Base _02 -- 拠点_02","981001":"Test Map _01 -- テストマップ_01","981002":"Test Map _02 -- テストマップ_02","981003":"Test Map _03 -- テストマップ_03","981004":"Test Map _04 -- テストマップ_04","981005":"Test Map _05 -- テストマップ_05"},"ProtectorGenParam":{"0":"The Impossible -- ぬのきれ","770000":"[Proto] Hunter _ head _ New joint -- 【プロト】ハンター_頭_新関節","771000":"[Proto] Hunter _ torso _ New Joint -- 【プロト】ハンター_胴_新関節","772000":"[Proto] Hunter _ arms _ New Joints -- 【プロト】ハンター_腕_新関節","773000":"[Proto] Hunter _ leg _ New joint -- 【プロト】ハンター_脚_新関節"},"RagdollParam":{"0":"Move -- 動かない","1":"Havok Default Value -- Havokのデフォルト値","1000":"Segunda: The Evil Spirits -- グンダ:邪霊","1001":"Segunda Ragdoll Test 2 -- グンダのラグドールテスト2","1100":"Snake Spirit: Right arm -- 蛇霊:右腕","1101":"Snake Spirit: Left arm -- 蛇霊:左腕","1102":"Snake Spirit: small feet -- 蛇霊:小足","1103":"Snake Spirit: Tail root -- 蛇霊:尻尾付け根","1104":"Snake Spirit: Tail tip -- 蛇霊:尻尾先端","1105":"Snake Spirit: Head -- 蛇霊:頭","1106":"Snake Spirit: Neck -- 蛇霊:首","1201":"King of the Dead: Crown -- 死霊の王:王冠","1202":"King of the Dead: torso -- 死霊の王:胴体","1203":"King of the dead: right arm -- 死霊の王:右腕","1204":"King of the dead: left arm -- 死霊の王:左腕","1206":"King of the Dead: Head -- 死霊の王:頭","1301":"Mad Warrior Hallec: Head -- 狂戦士ハレック:頭","1302":"Mad Warrior Hallec: Torso -- 狂戦士ハレック:胴","1303":"Mad Warrior Hallec: left arm -- 狂戦士ハレック:左腕","1304":"Mad Warrior Hallec: right arm -- 狂戦士ハレック:右腕","1305":"Mad Warrior Hallec: Left Shin -- 狂戦士ハレック:左脛","1306":"Mad Warrior Hallec: Right Shin -- 狂戦士ハレック:右脛","1307":"Mad Warrior Hallec: right hand weapon -- 狂戦士ハレック:右手武器","1401":"Dead Slug (dumpling): Dead dumpling -- 蝕のナメクジ(亡者団子):亡者団子","1500":"Hell Kite: twines in the legs -- ヘルカイト:脚に絡みつく蝕","1501":"Hell Kite: Before your left ankle -- ヘルカイト:左足の足首より先","1600":"Golem: Iron Ball -- ゴーレム:鉄球","9999":"Dummy -- ダミー"},"ReinforceParamProtector":{"0":"Usually -- 通常","1":"Normal + 1 -- 通常+1","2":"Normal + 2 -- 通常+2","3":"usually + 3 -- 通常+3","4":"usually + 4 -- 通常+4","5":"Normal + 5 -- 通常+5","6":"usually + 6 -- 通常+6","7":"usually + 7 -- 通常+7","8":"usually + 8 -- 通常+8","9":"usually + 9 -- 通常+9","10":"Normal + 10 -- 通常+10","100":"Special -- 特殊","101":"Special + 1 -- 特殊+1","102":"Special + 2 -- 特殊+2","103":"Special + 3 -- 特殊+3","104":"Special + 4 -- 特殊+4","105":"Special + 5 -- 特殊+5"},"ReinforceParamWeapon":{"0":"Standard","1":"Standard+1","2":"Standard+2","3":"Standard+3","4":"Standard+4","5":"Standard+5","6":"Standard+6","7":"Standard+7","8":"Standard+8","9":"Standard+9","10":"Standard+10","100":"Heavy","101":"Heavy+1","102":"Heavy+2","103":"Heavy+3","104":"Heavy+4","105":"Heavy+5","106":"Heavy+6","107":"Heavy+7","108":"Heavy+8","109":"Heavy+9","110":"Heavy+10","200":"Sharp","201":"Sharp+1","202":"Sharp+2","203":"Sharp+3","204":"Sharp+4","205":"Sharp+5","206":"Sharp+6","207":"Sharp+7","208":"Sharp+8","209":"Sharp+9","210":"Sharp+10","300":"Refined","301":"Refined+1","302":"Refined+2","303":"Refined+3","304":"Refined+4","305":"Refined+5","306":"Refined+6","307":"Refined+7","308":"Refined+8","309":"Refined+9","310":"Refined+10","400":"Magic A -- 魔法A","401":"Magic A + 1 -- 魔法A+1","402":"Magic A + 2 -- 魔法A+2","403":"Magic A + 3 -- 魔法A+3","404":"Magic A + 4 -- 魔法A+4","405":"Magic A + 5 -- 魔法A+5","406":"Magic A + 6 -- 魔法A+6","407":"Magic A + 7 -- 魔法A+7","408":"Magic A + 8 -- 魔法A+8","409":"Magic A + 9 -- 魔法A+9","410":"Magic A + 10 -- 魔法A+10","500":"Magic B -- 魔法B","501":"Magic B + 1 -- 魔法B+1","502":"Magic B + 2 -- 魔法B+2","503":"Magic B + 3 -- 魔法B+3","504":"Magic B + 4 -- 魔法B+4","505":"Magic B + 5 -- 魔法B+5","506":"Magic B + 1 -- 魔法B+1","507":"Magic B + 2 -- 魔法B+2","508":"Magic B + 3 -- 魔法B+3","509":"Magic B + 4 -- 魔法B+4","510":"Magic B + 5 -- 魔法B+5","600":"Flame -- 炎","601":"Flame + 1 -- 炎+1","602":"Flame + 2 -- 炎+2","603":"Flame + 3 -- 炎+3","604":"Flame + 4 -- 炎+4","605":"Flame + 5 -- 炎+5","606":"Flame + 6 -- 炎+6","607":"Flame + 7 -- 炎+7","608":"Flame + 8 -- 炎+8","609":"Flame + 9 -- 炎+9","610":"Flame + 10 -- 炎+10","700":"Flames of Chaos -- 混沌の炎","701":"Flames of Chaos + 1 -- 混沌の炎+1","702":"Flames of Chaos + 2 -- 混沌の炎+2","703":"Flames of Chaos + 3 -- 混沌の炎+3","704":"Flames of Chaos + 4 -- 混沌の炎+4","705":"Flames of Chaos + 5 -- 混沌の炎+5","706":"Flame of Chaos + 6 -- 混沌の炎+6","707":"Flames of Chaos + 7 -- 混沌の炎+7","708":"Flames of Chaos + 8 -- 混沌の炎+8","709":"Flames of Chaos + 9 -- 混沌の炎+9","710":"Flames of Chaos + 10 -- 混沌の炎+10","800":"Lightning -- 雷","801":"Thunder + 1 -- 雷+1","802":"Thunder + 2 -- 雷+2","803":"Thunder + 3 -- 雷+3","804":"Thunder + 4 -- 雷+4","805":"Thunder + 5 -- 雷+5","806":"Thunder + 6 -- 雷+6","807":"Thunder + 7 -- 雷+7","808":"Thunder + 8 -- 雷+8","809":"Thunder + 9 -- 雷+9","810":"Thunder + 10 -- 雷+10","900":"Lightning -- 雷","901":"Thunder + 1 -- 雷+1","902":"Thunder + 2 -- 雷+2","903":"Thunder + 3 -- 雷+3","904":"Thunder + 4 -- 雷+4","905":"Thunder + 5 -- 雷+5","906":"Thunder + 6 -- 雷+6","907":"Thunder + 7 -- 雷+7","908":"Thunder + 8 -- 雷+8","909":"Thunder + 9 -- 雷+9","910":"Thunder + 10 -- 雷+10","1000":"Lightning -- 雷","1001":"Thunder + 1 -- 雷+1","1002":"Thunder + 2 -- 雷+2","1003":"Thunder + 3 -- 雷+3","1004":"Thunder + 4 -- 雷+4","1005":"Thunder + 5 -- 雷+5","1006":"Thunder + 6 -- 雷+6","1007":"Thunder + 7 -- 雷+7","1008":"Thunder + 8 -- 雷+8","1009":"Thunder + 9 -- 雷+9","1010":"Thunder + 10 -- 雷+10","1100":"Lightning -- 雷","1101":"Thunder + 1 -- 雷+1","1102":"Thunder + 2 -- 雷+2","1103":"Thunder + 3 -- 雷+3","1104":"Thunder + 4 -- 雷+4","1105":"Thunder + 5 -- 雷+5","1106":"Thunder + 6 -- 雷+6","1107":"Thunder + 7 -- 雷+7","1108":"Thunder + 8 -- 雷+8","1109":"Thunder + 9 -- 雷+9","1110":"Thunder + 10 -- 雷+10","1200":"Lightning -- 雷","1201":"Thunder + 1 -- 雷+1","1202":"Thunder + 2 -- 雷+2","1203":"Thunder + 3 -- 雷+3","1204":"Thunder + 4 -- 雷+4","1205":"Thunder + 5 -- 雷+5","1206":"Thunder + 6 -- 雷+6","1207":"Thunder + 7 -- 雷+7","1208":"Thunder + 8 -- 雷+8","1209":"Thunder + 9 -- 雷+9","1210":"Thunder + 10 -- 雷+10","1300":"Lightning -- 雷","1301":"Thunder + 1 -- 雷+1","1302":"Thunder + 2 -- 雷+2","1303":"Thunder + 3 -- 雷+3","1304":"Thunder + 4 -- 雷+4","1305":"Thunder + 5 -- 雷+5","1306":"Thunder + 6 -- 雷+6","1307":"Thunder + 7 -- 雷+7","1308":"Thunder + 8 -- 雷+8","1309":"Thunder + 9 -- 雷+9","1310":"Thunder + 10 -- 雷+10","1400":"Sacred -- 神聖","1401":"Sacred + 1 -- 神聖+1","1402":"Sacred + 2 -- 神聖+2","1403":"Sacred + 3 -- 神聖+3","1404":"Sacred + 4 -- 神聖+4","1405":"Sacred + 5 -- 神聖+5","1406":"Sacred + 6 -- 神聖+6","1407":"Sacred + 7 -- 神聖+7","1408":"Sacred + 8 -- 神聖+8","1409":"Sacred + 9 -- 神聖+9","1410":"Sacred + 10 -- 神聖+10","1500":"Dark -- 暗黒","1501":"Darkness + 1 -- 暗黒+1","1502":"Darkness + 2 -- 暗黒+2","1503":"Darkness + 3 -- 暗黒+3","1504":"Darkness + 4 -- 暗黒+4","1505":"Darkness + 5 -- 暗黒+5","2000":"Daemon -- デーモン","2001":"Daemon + 1 -- デーモン+1","2002":"Daemon + 2 -- デーモン+2","2003":"Daemon + 3 -- デーモン+3","2004":"Daemon + 4 -- デーモン+4","2005":"Daemon + 5 -- デーモン+5","2100":"Dragon -- ドラゴン","2101":"Dragon + 1 -- ドラゴン+1","2102":"Dragon + 2 -- ドラゴン+2","2103":"Dragon + 3 -- ドラゴン+3","2104":"Dragon + 4 -- ドラゴン+4","2105":"Dragon + 5 -- ドラゴン+5","2200":"Special -- 特別","2201":"Special + 1 -- 特別+1","2202":"Special + 2 -- 特別+2","2203":"Special + 3 -- 特別+3","2204":"Special + 4 -- 特別+4","2205":"Special + 5 -- 特別+5","5000":"Shield usually -- 【盾】通常","5001":"Shield: Normal + 1 -- 【盾】通常+1","5002":"Shield: Normal + 2 -- 【盾】通常+2","5003":"Shield: Normal + 3 -- 【盾】通常+3","5004":"Shield: Normal + 4 -- 【盾】通常+4","5005":"Shield: Normal + 5 -- 【盾】通常+5","5006":"Shield: usually + 6 -- 【盾】通常+6","5007":"Shield: usually + 7 -- 【盾】通常+7","5008":"Shield: usually + 8 -- 【盾】通常+8","5009":"Shield: Normal + 9 -- 【盾】通常+9","5010":"Shield: Normal + 10 -- 【盾】通常+10"},"RoleParam":{"0":"Survival player -- 生存プレイヤ","1":"White Ghost -- 白ゴースト","2":"Black Ghost -- 黒ゴースト","3":"Wandering -- 徘徊","4":"Wandering NPC -- 徘徊NPC","5":"Normal enemy -- 通常敵","6":"Animal enemies -- 動物敵","7":"Boss Enemy -- ボス敵","8":"Grey Ghost -- グレイゴースト","9":"Npc -- NPC","10":"Replay -- リプレイ","11":"Display -- 表示","12":"Intruders -- 侵入者","13":"For the Arena -- 闘技場用","10001":"White Ghost (Red Hunt white pledge) -- 白ゴースト(赤狩り白誓約)","10002":"Black Ghost (Red Hunt white pledge) -- 黒ゴースト(赤狩り白誓約)","20001":"White Ghost (Sun Pledge) -- 白ゴースト(太陽誓約)","20002":"Black Ghost (Sun Pledge) -- 黒ゴースト(太陽誓約)","30001":"White Ghost (Berserker Pledge) -- 白ゴースト(バーサーカー誓約)","30002":"Black Ghost (Berserker Pledge) -- 黒ゴースト(バーサーカー誓約)","40001":"White Ghost (Sinner Hero Pledge) -- 白ゴースト(罪人英雄誓約)","40002":"Black Ghost (Sinner Hero Pledge) -- 黒ゴースト(罪人英雄誓約)","50001":"White Ghost (Boss Guardian Pledge (Rosalia)) -- 白ゴースト(ボス守護者誓約(ロザリア))","50002":"Black Ghost (Boss Guardian Pledge (Rosalia)) -- 黒ゴースト(ボス守護者誓約(ロザリア))","60001":"White Ghost (Map Guardian pledge (bridge)) -- 白ゴースト(マップ守護者誓約(橋))","60002":"Black Ghost (Map Guardian pledge (bridge)) -- 黒ゴースト(マップ守護者誓約(橋))"},"SeMaterialConvertParam":{"1":"Cobblestone -- 石畳","2":"Stone -- 石","3":"Soil -- 土","4":"Wood -- 木材","5":"Grassland -- 草地","6":"Gravel -- 砂利","8":"Trees -- 樹木","9":"Swamp -- 沼","10":"Nest -- 巣","11":"Iron -- 鉄","12":"Flesh -- 血肉","13":"Sand -- 砂","14":"Bone -- 骨","15":"Ash -- 灰","16":"Roof Tiles -- 屋根瓦","17":"Cloth -- 布","18":"Fallen leaves -- 落ち葉","19":"Bell -- 鐘","20":"Water (Puddle) -- 水(水溜り程度)","21":"Water (ankle level) -- 水(足首程度)","22":"Water (knee) -- 水(膝下)","23":"Poison Swamp (shallow) -- 毒沼(浅い)","24":"Poison Swamp (deep) -- 毒沼(深い)","25":"Poison Swamp (knee) -- 毒沼(膝下)","26":"Poison Swamp (about puddle) -- 毒沼(水溜まり程度)","27":"Water (waist or more) -- 水(腰以上)","28":"Carpet -- 絨毯","29":"Without -- なし","30":"Caries -- 蝕","31":"God Grave Net -- 神墓ネット","100":"Weapon Iron -- 武器鉄","101":"Wax -- 蝋","102":"Weapon tree -- 武器木","103":"Weapon meat -- 武器肉","104":"Shield Iron -- 盾鉄","105":"Shield Tree -- 盾木","106":"Iron -- 鉄","107":"Bugs -- 虫","108":"Armor Leather -- 鎧革","109":"Meat -- 肉","110":"Flesh _ Weakness -- 肉_弱点","111":"Dragon Meat -- 竜肉","112":"Heavy Iron -- 重鉄","113":"Cloth -- 布","114":"Humanity -- 人間性","115":"Hair -- 毛","116":"Soft Stone -- 石(軟)","117":"Feathers -- 羽","118":"Carrion -- 腐肉","119":"Ash -- 灰","120":"Lava -- 溶岩","121":"Evil -- 死霊","122":"Crystal -- 結晶","123":"Liquid -- 液体","124":"Bone -- 骨","125":"Flame -- 炎","126":"Rock -- 岩","127":"Shield Stone -- 盾石","128":"Tree -- 木","129":"Heavy Iron Shield -- 盾重鉄","130":"Ghost White -- ゴーストホワイト","131":"Ghost Black -- ゴーストブラック","132":"Ghost Enemy White -- ゴースト敵ホワイト","133":"Ghost Enemy Black -- ゴースト敵ブラック","134":"Drool -- よだれ","135":"Ghost White (for guard) -- ゴーストホワイト(ガード時用)","136":"Ghost Black (for guard) -- ゴーストブラック(ガード時用)","137":"Ghost Enemy White (for guard) -- ゴースト敵ホワイト(ガード時用)","138":"Ghost Enemy Black (for guard) -- ゴースト敵ブラック(ガード時用)","139":"Without -- なし","140":"Penetration -- 眼光","141":"Caries -- 蝕","142":"Maggots -- 蛆","143":"Charcoal -- 炭","144":"Kusari Katabira -- くさりかたびら","145":"Fluid -- 体液","146":"Meat (Live) -- 肉(生者)","147":"Meat (raw) _ Weakness -- 肉(生者)_弱点","148":"Caries weakness -- 蝕_弱点"},"ShopLineupParam":{"1":"Do not erase -- 消すべからず","2000":"Noconata -- ノコナタ","2001":"Axe Rod -- 斧竿","2002":"Cane Whip -- 杖鞭","2010":"Atelier Handguns -- 工房短銃","2011":"Atelier Head Gun -- 工房長銃","900000":"Sword: Short Sword -- 剣:ショートソード","900001":"Shield: Buckler -- 盾:バックラー","900002":"Bow: Short Bow -- 弓:ショートボウ","900003":"Catalyst: Magician's Wand -- 触媒:魔術師の杖","900004":"Armor _ Head 1: Funeral Knights -- 防具_頭1:葬送騎士","900005":"Armor _ Head 2: Crimson Knight -- 防具_頭2:紅騎士","900006":"Armor _ Torso 1: Funeral Knight -- 防具_胴1:葬送騎士","900007":"Armor _ Torso 2: Crimson Knight -- 防具_胴2:紅騎士","900008":"Armor _ Hand 1: Funeral Knights -- 防具_手1:葬送騎士","900009":"Armor _ Hand 2: Crimson Knight -- 防具_手2:紅騎士","900010":"Armor _ Foot 1: Funeral Knight -- 防具_足1:葬送騎士","900011":"Armor _ Foot Two: -- 防具_足2:","900012":"Ring 1: Equipment weight up -- 指輪1:装備重量アップ","900013":"Ring 2: Pinch attack power up -- 指輪2:ピンチ攻撃力アップ","900014":"Ring 3: The Dark Moon God's ring -- 指輪3:暗月神の指輪","900015":"Ring 4: Ring of Thieves -- 指輪4:盗賊団の指輪","900016":"Ring 5: Stamina Recovery up -- 指輪5:スタミナ回復アップ","900017":"Arrow 1: Normal arrow -- 矢1:普通の矢","900018":"Arrow 2: Arrows -- 矢2:火矢","900019":"Arrow 3: Mantella -- 矢3:毒矢","900020":"Tool 1: Reinforcement items -- 道具1:強化アイテム","900021":"Tool 2: Reinforcement items -- 道具2:強化アイテム","900022":"Tool 3: Reinforcement items -- 道具3:強化アイテム","900023":"Tool 4: Reinforcement items -- 道具4:強化アイテム","900024":"Tool 5: Reinforcement items -- 道具5:強化アイテム","900025":"Tool 6: Reinforcement items -- 道具6:強化アイテム","900026":"Tool 7: Reinforcement items -- 道具7:強化アイテム","900027":"Tool 8: Reinforcement items -- 道具8:強化アイテム","900028":"Tool 9: Reinforcement items -- 道具9:強化アイテム","900029":"Tool 10: Reinforcement items -- 道具10:強化アイテム","900030":"Tool 11: Reinforcement items -- 道具11:強化アイテム","900031":"Tool 12: Reinforcement items -- 道具12:強化アイテム","900032":"Tool 13: Reinforcement items -- 道具13:強化アイテム","900033":"Tool 14: Reinforcement items -- 道具14:強化アイテム","900034":"Tool 15: Seoul -- 道具15:ソウル","900035":"Tool 16: Seoul -- 道具16:ソウル","900036":"Tool 17: Seoul -- 道具17:ソウル","900037":"Tool 18: Seoul -- 道具18:ソウル","900038":"Tool 19: Seoul -- 道具19:ソウル","900039":"Tool 20: Seoul -- 道具20:ソウル","900040":"Tool 21: Seoul -- 道具21:ソウル","900041":"Tool 22: Seoul -- 道具22:ソウル","900042":"Tool 23: Seoul -- 道具23:ソウル","900043":"Tool 24: Seoul -- 道具24:ソウル","900044":"Tool 25: Seoul -- 道具25:ソウル","900045":"Tool 26: Seoul -- 道具26:ソウル","900046":"Tool 27: Seoul -- 道具27:ソウル","900047":"Tool 28: Seoul -- 道具28:ソウル","900048":"Tool 29: Seoul -- 道具29:ソウル","900049":"Tool 30: Seoul -- 道具30:ソウル"},"SkeletonParam":{"0":"Move -- 動かない","1":"NPC Common Neck -- NPC共通 首","2":"NPC Common Body 1 -- NPC共通 胴1","3":"NPC Common Body 2 -- NPC共通 胴2","10":"Human-type general-purpose left foot -- 人型汎用左足","11":"Human-type universal right foot -- 人型汎用右足","18":"Copy _ Test Right leg -- コピー_テスト右脚","19":"Copy _ Test left leg -- コピー_テスト左脚","100":"Heroine -- ヒロイン","200":"Vips -- 要人","300":"Blacksmith Edo -- 鍛冶屋江戸","400":"Slave soldier -- 奴隷兵士","500":"Ex-noble lady -- 元貴族婦人","600":"Puppet use -- 人形使い","700":"Beggar Woman -- 乞食女","800":"Baldwin -- ボールドウィン","900":"Beggar Man -- 乞食男","998":"Copy _ old general-purpose left foot -- コピー_旧汎用左足","999":"Copy _ old-purpose right foot -- コピー_旧汎用右足","1000":"Hounds -- 猟犬_","1001":"Hounds -- 猟犬_","1002":"Hounds -- 猟犬_","1003":"Hounds -- 猟犬_","1010":"Priest _ Left Foot -- 司祭_左足","1011":"Priest _ Right foot -- 司祭_右足","1022":"Crowd A_ set neck shake -- 群衆A_首振り設定","1030":"B_ crowd left foot -- 群衆B_左足","1031":"Crowd b_ right foot -- 群衆B_右足","2000":"Mucademon right foot -- ムカデーモン右足","2001":"Mucademon left Foot -- ムカデーモン左足","2010":"Gargoyle Right Foot -- ガーゴイル右足","2011":"Gargoyle left Foot -- ガーゴイル左足","2020":"Iron Golem Right Foot -- アイアンゴーレム右足","2021":"Iron Golem left Foot -- アイアンゴーレム左足","2022":"Iron Golem Right Hand -- アイアンゴーレム右手","2030":"Hammer Demon left Foot -- ハンマーデーモン左足","2031":"Hammer Daemon Right foot -- ハンマーデーモン右足","3004":"Thaiwand Foot ⑤ -- クラグ足⑤","3005":"Thaiwand Foot ⑥ -- クラグ足⑥","3100":"Thaiwand Foot ⑦ -- クラグ足⑦","3101":"Thaiwand Foot ⑧ -- クラグ足⑧","3102":"Thaiwand Foot ⑨ -- クラグ足⑨","3103":"Thaiwand Foot ⑩ -- クラグ足⑩","3104":"Thaiwand Foot ⑪ -- クラグ足⑪","3105":"Thaiwand Foot ⑫ -- クラグ足⑫","3106":"Thaiwand Foot ⑬ -- クラグ足⑬","5010":"Beast of flames _ left leg -- 炎の獣_左前脚","5011":"Beast of flames _ right legs -- 炎の獣_右前脚","5012":"The Beast in flames _ left leg -- 炎の獣_左後脚","5013":"Beast of flames _ right after leg -- 炎の獣_右後脚","5014":"Beast of flames _ neck shaking _ head -- 炎の獣_首振り_頭","5015":"Fire Beast _ Neck Swing _ Neck 1 -- 炎の獣_首振り_首1","5016":"Fire Beast _ Neck Shaking _ Neck 2 -- 炎の獣_首振り_首2","5017":"Fire Beast _ Neck Shaking _ neck 3 -- 炎の獣_首振り_首3","5018":"Fire Beast _ Neck Swing _ Neck 4 -- 炎の獣_首振り_首4"},"SpEffectParam":{"0":"For testing -- テスト用","1":"Pledge effect test -- 誓約効果テスト","2":"Test_enchantweapon -- test_enchantweapon","3":"Test_cure -- test_cure","4":"Item: White Sign Soapstone","5":"Test_cureitem -- test_cureitem","6":"【 system 】 Kickout -- 【システム】kickout","7":"Item: Black Separation Crystal","8":"System: Parameter changes during ghosting -- 【システム】ゴースト時のパラメータ変化","9":"【 system 】 Black parameter change -- 【システム】ブラック時のパラメータ変化","10":"Item: Red Sign Soapstone","11":"Item: Cracked Red Eye Orb","12":"【 system 】 Bloodsign -- 【システム】bloodSign","13":"[System] Soul steel [multi] -- 【システム】ソウルスティール【マルチ】","14":"[System] Blue sign Visualization -- 【システム】青サイン可視化","15":"Item: Black Eye Orb","16":"【 system 】 NITs intrusion sign barreling -- 【システム】ニト侵入サインばらまき","17":"【 system 】 L Arena exit -- 【システム】l闘技場 退出","20":"【 System 】 Evaluation effect -- 【システム】評価効果","21":"[System] Point light source equipment -- 【システム】点光源装備","22":"Test_change_wep0 -- test_change_wep0","23":"Test_change_wep1 -- test_change_wep1","24":"【 system 】 Request for rescue -- 【システム】救援要請","25":"[System] effect for revival production -- 【システム】復活演出用効果","26":"【 system 】 Invasion of the prize neck -- 【システム】賞金首に侵入","27":"[System] to scatter the scales of dragons -- 【システム】竜のうろこをばらまく","28":"Item: Dried Finger","30":"Paris State (throwing conditions) -- パリィ崩され状態(投げ条件)","31":"Counter damage [puncture] -- カウンターダメージ【刺突】","32":"Player is falling (throwing condition) -- プレイヤが落下中(投げ条件)","33":"Petrified -- 石化","34":"Crystallization -- 結晶化","35":"Throwing invalid state -- 投げ無効状態","36":"Throwing ring equipment (throwing conditions) -- 指輪装備投げ(投げ条件)","37":"Soul Drain Throw condition -- ソウルドレイン投げ状態(投げ条件)","38":"Enhanced throwing damage up effect -- 強化投げダメージアップ効果","39":"【 DLC 】 Throwing disabled state _ for prevention of saddle -- 【DLC】投げ無効状態_ハメ防止用","40":"No resonance -- 共鳴なし","41":"Resonance LV1 -- 共鳴Lv1","42":"Resonance Lv2 -- 共鳴Lv2","43":"Resonance Lv3 -- 共鳴Lv3","44":"Resonance lv4 -- 共鳴Lv4","45":"Caries deaths -- 蝕死亡","50":"Magic Nature (slot + 3 version) -- 魔法の天性(スロット+3版)","52":"PG Test: Detection -- PGテスト:探知","53":"PG Test: Waiting for cooperation -- PGテスト:協力待ち","54":"PG Test: Cooperation -- PGテスト:協力","55":"PG Test: Cooperating send -- PGテスト:協力送信","57":"PG Test: Gravity disabled -- PGテスト:グラビティ無効","59":"Cooperation LV1 -- 協力Lv1","60":"Cooperation LV2 -- 協力Lv2","61":"Cooperation Lv3 -- 協力Lv3","62":"Waiting for cooperation -- 協力待ち解除","63":"Evil Eye Lv1 -- 邪眼Lv1","64":"Evil Eye Lv2 -- 邪眼Lv2","65":"The Evil eye (for use) -- 邪眼(使用者用)","71":"Curse effect _LV1 -- 呪い効果_LV1","72":"Curse effect _lv2 -- 呪い効果_LV2","73":"Curse effect _lv3 -- 呪い効果_LV3","74":"Curse effect _lv4 -- 呪い効果_LV4","80":"Curse effect [Strengthening of spirits] -- 呪い効果【対霊強化】","90":"Down -- ダウン中","91":"Not guarded: scheduled to be deleted -- ガード不可:削除予定","92":"Guard possible -- ガード可能","94":"SA addition disabled -- SA加算無効","95":"Movement magnification can be changed -- 移動倍率変更可能","96":"View Cut -- 視界カット","97":"In a posture collapse -- 体勢崩れ中","100":"Bonfire Recovery effect 1 -- かがり火回復効果1","101":"Bonfire Recovery Effect 2 -- かがり火回復効果2","102":"Bonfire Recovery Effect 3 -- かがり火回復効果3","103":"Bonfire Recovery Effect 4 -- かがり火回復効果4","104":"Bonfire Recovery Effect 5 -- かがり火回復効果5","105":"Bonfire Recovery Effect 6 -- かがり火回復効果6","106":"Bonfire Recovery Effect 7 -- かがり火回復効果7","107":"Bonfire Recovery Effect 8 -- かがり火回復効果8","108":"Bonfire Recovery Effect 9 -- かがり火回復効果9","109":"Bonfire Recovery effect 10 -- かがり火回復効果10","110":"Squirrel-Pong Recovery effect 1 -- リスポン回復効果1","111":"Squirrel Pong Recovery Effect 2 -- リスポン回復効果2","112":"Squirrel Pong Recovery Effect 3 -- リスポン回復効果3","113":"Squirrel Pong Recovery Effect 4 -- リスポン回復効果4","114":"Squirrel Pong Recovery Effect 5 -- リスポン回復効果5","115":"The Squirrel Pong Recovery effect 6 -- リスポン回復効果6","116":"Squirrel Pong Recovery Effect 7 -- リスポン回復効果7","117":"Squirrel Pong Recovery Effect 8 -- リスポン回復効果8","118":"Squirrel Pong Recovery Effect 9 -- リスポン回復効果9","119":"Squirrel Pong Recovery Effect 10 -- リスポン回復効果10","201":"【 QWC 】 Area _npc_ + 1 -- 【QWC】エリア_NPC_+1","202":"【 QWC 】 Area _npc_ + 2 -- 【QWC】エリア_NPC_+2","203":"【 QWC 】 Area _npc_ + 3 -- 【QWC】エリア_NPC_+3","206":"【 QWC 】 Area _npc_-1 -- 【QWC】エリア_NPC_-1","207":"【 QWC 】 Area _NPC_-2 -- 【QWC】エリア_NPC_-2","208":"【 QWC 】 Area _NPC_-3 -- 【QWC】エリア_NPC_-3","211":"[QWC] Area _ black _ + 1 -- 【QWC】エリア_ブラック_+1","212":"[QWC] Area _ black _ + 2 -- 【QWC】エリア_ブラック_+2","221":"[QWC] Area _ white _ + 1 -- 【QWC】エリア_ホワイト_+1","222":"[QWC] Area _ white _ + 2 -- 【QWC】エリア_ホワイト_+2","231":"[QWC] Area _ gray _ + 1 -- 【QWC】エリア_グレイ_+1","232":"[QWC] Area _ gray _ + 2 -- 【QWC】エリア_グレイ_+2","236":"[QWC] Area _ gray _-1 -- 【QWC】エリア_グレイ_-1","237":"[QWC] Area _ gray _-2 -- 【QWC】エリア_グレイ_-2","311":"[QWC] Player _ black _ + 1 -- 【QWC】プレイヤー_ブラック_+1","312":"[QWC] Player _ black _ + 2 -- 【QWC】プレイヤー_ブラック_+2","321":"[QWC] Player _ white _ + 1 -- 【QWC】プレイヤー_ホワイト_+1","322":"[QWC] Player _ white _ + 2 -- 【QWC】プレイヤー_ホワイト_+2","331":"[QWC] Player _ gray _ + 1 -- 【QWC】プレイヤー_グレイ_+1","332":"[QWC] Player _ gray _ + 2 -- 【QWC】プレイヤー_グレイ_+2","336":"[QWC] Player _ gray _-1 -- 【QWC】プレイヤー_グレイ_-1","337":"[QWC] Player _ gray _-2 -- 【QWC】プレイヤー_グレイ_-2","403":"Torches (for enemy sensing) -- 松明(敵感知用)","404":"[SP] Torches _ for flame effect -- 【SP】松明_炎エフェクト用","407":"[SP] Torch _ for Light ID offset -- 【SP】松明_ライトIDオフセット用","412":"[FDP] Torch _ for Flame effect (raised) -- 【FDP】松明_炎エフェクト用(掲げ時)","420":"[SP] covered with oil -- 【SP】油まみれ","421":"【 SP 】 Fire Daruma -- 【SP】火だるま","425":"【 SP 】 Fire Spread damage -- 【SP】延焼ダメージ","430":"[FDP] Damage in the fire Daruma -- 【FDP】火だるま中のダメージ","490":"[FDP] King of firewood added effect -- 【FDP】薪の王付加効果","491":"[FDP] Added SFX when attacking king of firewood -- 【FDP】薪の王 攻撃時追加SFX","499":"[FDP] King of firewood added effect _ client -- 【FDP】薪の王付加効果_クライアント","500":"Gravity -- グラビティ","510":"Gravity (for the use of) -- グラビティ(使用者用)","520":"Sound Feed -- 音送り","530":"Hidden -- 姿隠し","531":"Hidden-sound source for dead -- 姿隠し-音源亡者用","540":"Silence -- サイレンス","550":"Tip Blood Letters -- ヒント血文字","560":"Resurrection when dead -- 死んだとき復活","561":"Resurrection when dead (for determination of cord) -- 死んだとき復活(索状判定用)","570":"Regenerate -- リジェネレイト","580":"return [standby] -- 帰還【発動待機】","581":"Return of movement -- 帰還【発動】","600":"Anti Magic -- アンチマジック","610":"Anti-Magic (for the use) 【 effect 】 -- アンチマジック(使用者用)【効果】","611":"Anti-Magic (for the use of) [effect] -- アンチマジック(使用者用)【エフェクト】","620":"Light -- ライト","630":"Attracted -- 魅了","640":"Falling control -- フォーリングコントロール","650":"A firm oath -- 固い誓い_本体","651":"Hard Oath for icons -- 固い誓い_アイコン用","1000":"Weapon Magic Reinforcement 1 -- 武器魔法強化1","1010":"Weapon Magic Reinforcement 2 -- 武器魔法強化2","1020":"Weapon Magic Reinforcement 3 -- 武器魔法強化3","1040":"Shield Reinforcement 1 -- 盾強化1","1050":"Shield Reinforcement 2 -- 盾強化2","1060":"Invisible weapon -- インビジブルウェポン","1070":"Sword of the Sun -- 太陽の剣","1080":"Moon Sword -- 月の剣","1081":"Sword of the Moon _lv1 -- 月の剣_LV1","1082":"Sword of the Moon _lv2 -- 月の剣_LV2","1083":"Sword of the Moon _lv3 -- 月の剣_LV3","1090":"The Power of Madness -- 狂気の力","1100":"Fire Weapon Reinforcement 1 -- 炎武器強化1","1120":"Veil of water -- 水のヴェール","1130":"Body of iron [damage reduction effect] -- 鉄の身体【はじきダメージ減少効果】","1140":"Body of iron [moving slow effect] -- 鉄の身体【移動鈍足効果】","1150":"Body of iron [damage animation change effect] -- 鉄の身体【ダメージアニメ変化効果】","1160":"Magic Protection 1 -- 魔法防護1","1170":"Magic Protection 2 -- 魔法防護2","1200":"Poison for Poisoncloud -- ポイズンクラウド用の毒","1210":"Deadly poison for the desk loud -- デスクラウド用の猛毒","1220":"Corrosion for corrosion Cloud -- 腐食クラウド用の腐食","1230":"A deadly poison for the Mist of Darkness -- 闇の霧用の猛毒","1300":"Universal treatment [State Recovery] -- 万能治療【状態回復】","1301":"Universal treatment [recovery of bleeding immunity] -- 万能治療【出血耐性回復】","1302":"Universal cure [Poison tolerance recovery] -- 万能治療【毒耐性回復】","1303":"Universal cure [deadly poison resistant recovery] -- 万能治療【猛毒耐性回復】","1320":"Poison treatment [State recovery] -- 毒治療【状態回復】","1321":"Poison treatment [Resilient recovery] -- 毒治療【耐性回復】","1330":"Weapon Armor Repair -- 武器防具修復","1340":"A curse -- 解呪","1350":"Worm Recovery -- うじ回復","1400":"HP Recovery 1_ Yourself -- HP回復1_自分","1401":"HP Recovery 1_ around -- HP回復1_周囲","1420":"HP Recovery 3_ Yourself -- HP回復3_自分","1421":"HP Recovery 3_ around -- HP回復3_周囲","1430":"HP Recovery 4 -- HP回復4","1431":"HP Recovery 4_ Resonance LV1 -- HP回復4_共鳴LV1","1500":"Mimicry -- 擬態","1510":"Mimicry [moving slow effect] -- 擬態【移動鈍足効果】","1520":"Dragon Change 1 -- 竜変化1","1530":"Dragon Change 2 -- 竜変化2","1600":"Soul Drain 1 [AI] -- ソウルドレイン1【AI】","1610":"Soul Drain 1 【 PC 】 -- ソウルドレイン1【PC】","1620":"Soul Drain 2 [AI] -- ソウルドレイン2【AI】","1630":"Soul Drain 2 [PC] -- ソウルドレイン2【PC】","1700":"White Relief Magic -- 白救援探知魔法","1710":"Black Relief Magic -- 黒救援探知魔法","1720":"Item Detection Magic -- アイテム探知魔法","1800":"Causal retribution _ for counting -- 因果応報_カウント用","1810":"Causal retribution _ for explosive generation -- 因果応報_爆発発生用","1900":"[FDP] Tread SA -- 【FDP】踏込SA","1901":"FDP ID override test -- 【FDP】ID上書きテスト","1902":"[FDP] covered with Uzi test -- 【FDP】ウジまみれテスト","1903":"[FDP] Tread guard -- 【FDP】踏込ガード","1904":"[FDP] Rotation movement gap -- 【FDP】回転移動隙","1905":"[FDP] Holding guard compensation for continuous firing -- 【FDP】構え連撃用ガード補正","1906":"[FDP] Double chanting -- 【FDP】二重詠唱","1907":"FDP SA chanting -- 【FDP】SA詠唱","2000":"Item: Estus Flask","2001":"Item: Estus Flask+1","2002":"Item: Estus Flask+2","2003":"Item: Estus Flask+3","2004":"Item: Estus Flask+4","2005":"Item: Estus Flask+5","2006":"Item: Estus Flask+6","2007":"Item: Estus Flask+7","2008":"Item: Estus Flask+8","2009":"Item: Estus Flask+9","2010":"Item: Estus Flask+10","2020":"Item: Ashen Estus Flask","2021":"Item: Ashen Estus Flask+1","2022":"Item: Ashen Estus Flask+2","2023":"Item: Ashen Estus Flask+3","2024":"Item: Ashen Estus Flask+4","2025":"Item: Ashen Estus Flask+5","2026":"Item: Ashen Estus Flask+6","2027":"Item: Ashen Estus Flask+7","2028":"Item: Ashen Estus Flask+8","2029":"Item: Ashen Estus Flask+9","2030":"Item: Ashen Estus Flask+10","2100":"Item: Charcoal Pine Resin","2110":"Item: Charcoal Pine Bundle","2120":"Item: Gold Pine Resin","2130":"Item: Gold Pine Bundle","2140":"Resonance -- 共鳴","2150":"Item: Rotten Pine Resin","2170":"Item: Human Pine Resin","2180":"Item: Carthus Rouge","2190":"Item: Pale Pine Resin","2300":"Power Up Miracles -- 奇跡威力アップ","2310":"Magic Slot-up B -- 魔法スロットアップB","2320":"Dark Moon God's ring -- 暗月神の指輪","2330":"Ring of Thieves -- 盗賊団の指輪","2340":"HP Slight increase -- HP微増","2350":"Black Dragon Ring -- 黒竜の指輪","3000":"HP Recovery Grass -- HP回復草","3040":"Item: Green Blossom","3041":"[DLC] Fragment of mushroom -- 【DLC】エリンギの欠片","3042":"Item: Budding Green Blossom","3050":"bleeding treatment [State recovery] -- 出血治療【状態回復】","3051":"bleeding treatment [resistance recovery] -- 出血治療【耐性回復】","3060":"Poison treatment [State recovery] -- 毒治療【状態回復】","3061":"Poison treatment [Resilient recovery] -- 毒治療【耐性回復】","3070":"Toxic treatment [State recovery] -- 猛毒治療【状態回復】","3071":"Toxic treatment [Resilient recovery] -- 猛毒治療【耐性回復】","3080":"Universal treatment [State Recovery] -- 万能治療【状態回復】","3090":"Curse treatment -- 呪治療","3091":"Egg treatment -- 卵治療","3092":"Caries treatment -- 蝕治療","3093":"Item: Purging Stone","3100":"Item: Repair Powder","3110":"Poison-throwing knife [poison effect] -- 毒投げナイフ【毒効果】","3120":"To make the opponent a poisonous poison -- 糞団子【相手を猛毒にする】","3121":"I take damage -- 糞団子【自分もダメージを受ける】","3130":"Each time a -- またたびA","3140":"And every time B -- またたびB","3150":"EST not available [for mimic sleep determination] -- エスト使用不可【ミミック睡眠判定用】","3151":"EST not available [EST] -- エスト使用不可【エスト使用不可】","3152":"EST not available [for mimic sleep judgment] -- エスト使用不可【ミミック睡眠判定消し用】","3160":"Weapon Flame Enhancement -- 武器炎強化","3161":"Weapon Flame Enhancement (quick) -- 武器炎強化(クイック)","3170":"Weapon Lightning Reinforcement -- 武器雷強化","3171":"Weapon Lightning Enhancement (quick) -- 武器雷強化(クイック)","3180":"Weapon versus Spirit reinforcement -- 武器対霊強化","3210":"Excitement Incense -- 興奮香","3220":"Item: Coiled Sword Fragment","3221":"Return Stone A -- 帰還石A","3222":"return Stone B -- 帰還石B","3223":"return Stone C -- 帰還石C","3224":"return Stone D -- 帰還石D","3225":"Return Stone E -- 帰還石E","3226":"Item: Darksign","3230":"Resurrection Stone [Resurrection effect] -- 復活石【復活効果】","3231":"Human Nature Recovery -- 人間性回復","3240":"Item: Binoculars","3250":"Pledge discarded -- 誓約破棄","3269":"Item: Fading Soul","3270":"Item: Soul of a Deserted Corpse","3271":"Item: Large Soul of a Deserted Corpse","3272":"Item: Soul of an Unknown Traveler","3273":"Item: Large Soul of an Unknown Traveler","3274":"Item: Soul of a Nameless Soldier","3275":"Item: Large Soul of a Nameless Soldier","3276":"Item: Soul of a Weary Warrior","3277":"Item: Large Soul of a Weary Warrior","3278":"Item: Soul of a Crestfallen Knight","3279":"Item: Large Soul of a Crestfallen Knight","3280":"Item: Soul of a Proud Paladin","3281":"Item: Large Soul of a Proud Paladin","3282":"Item: Soul of an Intrepid Hero","3283":"Item: Large Soul of an Intrepid Hero","3284":"Item: Soul of a Seasoned Warrior","3285":"Item: Large Soul of a Seasoned Warrior","3286":"Item: Soul of an Old Hand","3287":"Item: Soul of a Venerable Old Hand","3288":"Item: Soul of a Champion","3289":"Item: Soul of a Great Champion","3290":"Item: Ember","3291":"Wang Hua of firewood when SFX: right elbow -- 薪の王化時SFX:右肘","3292":"Wang Hua of firewood when SFX: right shoulder -- 薪の王化時SFX:右肩","3293":"Wang Hua of firewood when SFX: upper body -- 薪の王化時SFX:上半身","3294":"Wang Hua of firewood when SFX: systemic -- 薪の王化時SFX:全身","3295":"Wang Hua of firewood when SFX: -- 薪の王化時SFX:","3296":"Wang Hua of firewood when SFX: -- 薪の王化時SFX:","3297":"Wang Hua of firewood when SFX: -- 薪の王化時SFX:","3298":"Wang Hua of firewood when SFX: -- 薪の王化時SFX:","3330":"Human Nature Recovery -- 人間性回復","3340":"Item: Hidden Blessing","3400":"Item: Soul of a Crystal Sage","3401":"Soul of the Wolf of the eclipse of the boss soul -- 【ボスソウル】蝕のオオカミのソウル","3402":"Item: Soul of the Blood of the Wolf","3403":"Item: Soul of Consumed Oceiros","3404":"Item: Soul of Boreal Valley Vordt","3405":"Item: Soul of the Old Demon King","3406":"Item: Soul of Dragonslayer Armour","3407":"Item: Soul of the Nameless King","3408":"[Boss Soul] Crimson bat Soul -- 【ボスソウル】クリムゾンバットのソウル","3409":"Item: Soul of Champion Gundyr","3410":"[Boss Soul] soul of evil spirits -- 【ボスソウル】邪霊のソウル","3411":"Item: Soul of Pontiff Sulyvahn","3412":"Item: Soul of Aldrich","3413":"Item: Soul of High Lord Wolnir","3414":"Item: Soul of the Rotted Greatwood","3415":"Item: Soul of Rosaria","3416":"Item: Soul of the Deacons of the Deep","3417":"Boss Soul: Prince of Darkness, soul of Brother -- 【ボスソウル】闇の双皇子兄のソウル","3418":"Item: Soul of the Twin Princes","3419":"Item: Soul of Yhorm the Giant","3420":"Item: Soul of the Dancer","3421":"Item: Soul of the Lords","3427":"Item: Soul of a Demon","3431":"Item: Soul of a Stray Demon","3432":"Item: Soul of Sister Friede","3433":"Item: Soul of Slave Knight Gael","3434":"Item: Soul of the Demon Prince","3435":"Item: Soul of Darkeater Midir","3700":"Item: Seed of a Giant Tree","3730":"Item: Way of White Circlet","3740":"Item: Forked Pale Tongue","3750":"Item: Proof of a Concord Well Kept","3820":"Item: Mossfruit","3870":"Item: Young White Branch","3880":"Item: Rusted Coin","3890":"Item: Rusted Gold Coin","3900":"Item: Siegbräu Heal","3901":"Item: Siegbräu Frost Resistence","3910":"Item: Blue Bug Pellet","3920":"Item: Red Bug Pellet","3930":"Item: Yellow Bug Pellet","3940":"Item: Black Bug Pellet","4000":"Sustained damage floor [slow for poison] -- 持続ダメージ床【毒用鈍足】","4001":"Sustained damage floor [Poison _ Interval Adjustment _ Poison swamp Forest (deep)] -- 持続ダメージ床【毒_間隔調整_毒沼の森(深)】","4002":"Sustained damage floor [poison _ Effect Body _ Poison swamp Forest (deep)] -- 持続ダメージ床【毒_効果本体_毒沼の森(深)】","4003":"Sustained damage floor [Poison _ Interval Adjustment _ Poison swamp forest (shallow)] -- 持続ダメージ床【毒_間隔調整_毒沼の森(浅)】","4004":"Sustained damage floor [poison _ Effect Body _ Poison swamp forest (shallow)] -- 持続ダメージ床【毒_効果本体_毒沼の森(浅)】","4050":"Forced fall death disabled [used in God's Tomb map] -- 強制落下死亡無効【神墓マップで使用】","4060":"Drop damage disabled [used in stronghold map] -- 落下ダメージ無効【拠点マップで使用】","4100":"Slow effect (weak) -- 鈍足効果(弱)","4101":"Slow effect (strong) -- 鈍足効果(強)","4150":"Inside Key of Universal door -- 汎用扉の内鍵","4200":"The swamp of caries -- 蝕の沼","5000":"Non-combat action running -- 非戦闘行動 走り化","5001":"Non-combat behavior smooth disregard -- 非戦闘行動 なめらか無視","5020":"General effect for logic judgment 1 -- ロジック判定用 汎用効果1","5021":"General effect for logic judgment 2 -- ロジック判定用 汎用効果2","5022":"General effect for logic judgment 3 -- ロジック判定用 汎用効果3","5023":"General effect for logic judgment 4 -- ロジック判定用 汎用効果4","5024":"General effect for logic judgment 5 -- ロジック判定用 汎用効果5","5025":"General effect for logic judgment 6 -- ロジック判定用 汎用効果6","5026":"General effect for logic judgment 7 -- ロジック判定用 汎用効果7","5027":"General effect for logic judgement 8 -- ロジック判定用 汎用効果8","5028":"General effect for logic judgment 9 -- ロジック判定用 汎用効果9","5029":"General effect for logic judgment 10 -- ロジック判定用 汎用効果10","5030":"General effect for logic judgment 11 -- ロジック判定用 汎用効果11","5031":"General effect for logic judgement 12 -- ロジック判定用 汎用効果12","5032":"General effect for logic judgment 13 -- ロジック判定用 汎用効果13","5033":"General effect for logic judgment 14 -- ロジック判定用 汎用効果14","5034":"General effect for logic judgment 15 -- ロジック判定用 汎用効果15","5040":"MP Decrease-1 -- MP減少-1","5041":"MP Decrease-2 -- MP減少-2","5042":"MP Decrease-3 -- MP減少-3","5043":"MP Decrease-4 -- MP減少-4","5044":"MP Decrease-5 -- MP減少-5","5045":"MP Recovery + 1 -- MP回復+1","5046":"MP Recovery + 2 -- MP回復+2","5047":"MP Recovery + 3 -- MP回復+3","5048":"MP Recovery + 4 -- MP回復+4","5049":"MP Recovery + 5 -- MP回復+5","5100":"Maggots covered -- うじまみれ","5101":"Blood damage so that the maggots smeared -- うじまみれよう出血ダメージ","5247":"Cold air Damage Release -- 冷気ダメージ解除","5300":"Normal damage anime changes [all disabled] -- 通常時ダメージアニメ変化【全て無効】","5301":"Normal damage anime changes [minimal, small, medium, large, beating, launch, pushing disabled] -- 通常時ダメージアニメ変化【極小・小・中・大・叩き・打上・押し 無効】","5302":"Normal damage anime changes [minimum, small, medium, large, push disabled] -- 通常時ダメージアニメ変化【極小・小・中・大・押し 無効】","5303":"Normal damage anime change [Minimal, small, medium, press disabled] -- 通常時ダメージアニメ変化【極小・小・中・押し 無効】","5304":"Normal damage anime change [minimal, small, push disabled] -- 通常時ダメージアニメ変化【極小・小・押し 無効】","5305":"Normal damage anime change [minimal, push disabled] -- 通常時ダメージアニメ変化【極小・押し 無効】","5306":"Normal time damage anime change [press → Small] -- 通常時ダメージアニメ変化【押し→小】","5307":"Normal damage anime change [minimum → small] -- 通常時ダメージアニメ変化【極小→小】","5308":"Normal Time damage Anime change -- 通常時ダメージアニメ変化【中以上】","5309":"Normal damage Anime change -- 通常時ダメージアニメ変化【中以上、押しあり】","5310":"Normal damage anime changes [lv1 down] -- 通常時ダメージアニメ変化【Lv1ダウン】","5311":"Normal damage anime changes [small, 吹tsu飛bimasu, launch only] -- 通常時ダメージアニメ変化【小・吹っ飛び・打ち上げ のみ】","5320":"Normal damage anime change [large only] -- 通常時ダメージアニメ変化【大 のみ】","5321":"Normal damage anime change [Medium, large, only slams] -- 通常時ダメージアニメ変化【中・大・叩きつけ のみ】","5322":"Normal damage anime changes [吹tsu飛bimasu] -- 通常時ダメージアニメ変化【吹っ飛びがない】","5323":"Normal damage anime changes [no 吹tsu飛bimasu/slams] -- 通常時ダメージアニメ変化【吹っ飛び・叩きつけ がない】","5324":"Normal damage anime change [Minimal, small, medium, large only] -- 通常時ダメージアニメ変化【極小・小・中・大のみ】","5325":"Normal damage anime changes [吹tsu飛bimasu/push] -- 通常時ダメージアニメ変化【吹っ飛び・押し がない】","5326":"Normal damage anime changes [small and medium only] -- 通常時ダメージアニメ変化【小・中のみ】","5327":"Normal damage anime change [small, medium, large only] -- 通常時ダメージアニメ変化【小・中・大のみ】","5328":"Normal damage anime change [small, medium, large, only slapping] -- 通常時ダメージアニメ変化【小・中・大・叩きのみ】","5329":"Normal damage anime change [small only] -- 通常時ダメージアニメ変化【小のみ】","5330":"Normal damage anime change [small, large, 吹tsu飛bimasu only] -- 通常時ダメージアニメ変化【小・大・吹っ飛びのみ】","5331":"Normal damage anime change [for crystal lizards] -- 通常時ダメージアニメ変化【結晶トカゲ用】","5332":"Normal damage anime changes [under the big deal] -- 通常時ダメージアニメ変化【中以下は大扱い】","5333":"Normal damage anime changes [during only] -- 通常時ダメージアニメ変化【中のみ】","5334":"Normal damage anime change [medium/吹tsu飛bimasu only] -- 通常時ダメージアニメ変化【中・吹っ飛びのみ】","5335":"Normal damage anime change [reaction large] -- 通常時ダメージアニメ変化【リアクション大】","5350":"Normal damage anime change [all disabled] (instant) -- 通常時ダメージアニメ変化【全て無効】(瞬間)","5351":"Normal damage anime changes [minimal, small, medium, large, beating, launch, pushing disabled] (instant) -- 通常時ダメージアニメ変化【極小・小・中・大・叩き・打上・押し 無効】(瞬間)","5352":"Normal damage anime change [minimum, small, medium, large, push disabled] (instant) -- 通常時ダメージアニメ変化【極小・小・中・大・押し 無効】(瞬間)","5353":"Normal damage anime change [Minimal, small, medium, press disabled] (instant) -- 通常時ダメージアニメ変化【極小・小・中・押し 無効】(瞬間)","5354":"Normal damage anime change [minimal, small, push disabled] (instant) -- 通常時ダメージアニメ変化【極小・小・押し 無効】(瞬間)","5360":"SA Time damage Anime change [all anime No] -- SA時ダメージアニメ変化【全てアニメなし】","5361":"SA Time damage Anime change [small only] -- SA時ダメージアニメ変化【小のみ】","5362":"SA Time damage Anime changes -- SA時ダメージアニメ変化【中のみ】","5363":"SA when damage anime changes [small and medium] -- SA時ダメージアニメ変化【小と中】","5364":"SA Time damage Anime change [small only/large void] -- SA時ダメージアニメ変化【小のみ・大無効】","5370":"SA Time damage Anime change [all disabled] (instant) -- SA時ダメージアニメ変化【全て無効】(瞬間)","5371":"SA Time damage Anime change [small only] (instant) -- SA時ダメージアニメ変化【小のみ】(瞬間)","5372":"SA Time damage Anime change [medium only] (instant) -- SA時ダメージアニメ変化【中のみ】(瞬間)","5373":"SA when damage anime changes [small and medium] (instant) -- SA時ダメージアニメ変化【小と中】(瞬間)","5374":"SA Time damage Anime change [small only/large void] (instant) -- SA時ダメージアニメ変化【小のみ・大無効】(瞬間)","5400":"Weapon change Anime ID offset 0 -- 武器チェンジ アニメIDオフセット0","5404":"Anime ID offset 1,000,000 -- アニメIDオフセット1000000","5405":"Anime ID offset 2,000,000 -- アニメIDオフセット2000000","5406":"Anime ID offset 3,000,000 -- アニメIDオフセット3000000","5407":"Anime ID offset 4 million -- アニメIDオフセット4000000","5408":"Anime ID Offset 5,000,000 -- アニメIDオフセット5000000","5450":"An enemy special waiting: for event processing -- エネミー特殊待機中:イベント処理用","5460":"Enemy character est [HP] -- 敵キャラ エスト【HP】","5461":"Enemy character est [HP] -- 敵キャラ エスト【HP】","5540":"Maggots flame condition (for Panish Flag) -- 蛆人 炎状態(パニッシュフラグ用)","5600":"Salivan Enchant -- サリヴァーンエンチャント","5700":"_c2180 maggots for special damage assessment -- 特殊ダメージ判定用_c2180蛆人","5701":"_c1360 Crucifixion dead for special damage determination -- 特殊ダメージ判定用_c1360磔亡者A","5702":"_c1370 Crucifixion dead B for special damage determination -- 特殊ダメージ判定用_c1370磔亡者B","5703":"_c2250 Tindalos for special damage determination -- 特殊ダメージ判定用_c2250ティンダロス","5704":"_c1390 snake Assassin for special damage determination -- 特殊ダメージ判定用_c1390蛇人の暗殺者","5705":"Sand worm c2201 sharing of _c2200 waste for special damage determination -- 特殊ダメージ判定用_c2200廃都のサンドワーム c2201共有","5706":"_c2020 dead dog for special damage determination -- 特殊ダメージ判定用_c2020亡者犬","5707":"_c5230_ Mother Dragon for special damage determination -- 特殊ダメージ判定用_c5230_母ドラゴン","5708":"_c2190_ Ojo Gargoyle for special Damage determination -- 特殊ダメージ判定用_c2190_王城のガーゴイル","5709":"_c1090_ dead soldier for special damage Determination (Segunda State) -- 特殊ダメージ判定用_c1090_亡者兵士(グンダ状態)","5710":"_c2240_ Full Armor beast for special damage determination -- 特殊ダメージ判定用_c2240_フルアーマー獣","5711":"_c2250_ Tindalos for special Damage Determination (for animation transition after large throw) -- 特殊ダメージ判定用_c2250_ティンダロス(大型投げ後アニメ遷移用)","5712":"_c1170 Skeleton Warrior a c1180 share for special damage determination -- 特殊ダメージ判定用_c1170 スケルトン戦士A c1180共有","5750":"For special Damage Determination _ Continuous Regeneration Prevention: duration of flag pulling -- 特殊ダメージ判定用_連続再生防止 :フラグ引いている期間","5751":"For special Damage Determination _ Continuous regeneration Prevention: cool time 3 seconds -- 特殊ダメージ判定用_連続再生防止 :クールタイム3秒","5752":"For special Damage Determination _ Continuous regeneration Prevention: cool time 5 seconds -- 特殊ダメージ判定用_連続再生防止 :クールタイム5秒","5800":"[Behavior] Do not cut the movement amount of damage anime -- 【Behavior】 ダメージアニメの移動量カットをしない","5820":"[Behavior] Stance: Valid only for the duration of the flag pulling -- 【Behavior】 構え中 :フラグ引いている期間のみ有効","5830":"The VFX will light your eyes and revive you once and for all -- VFXで目が光り、一度きりの復活をかける","5831":"If the 5830 is at stake, let the dead anime transition -- 5830がかかっている場合、死んだふりアニメに遷移させる","6000":"[Behavior] touchable in rolling -- 【Behavior】 ローリングで押せる","6001":"[Behavior] is flipped when the damage judgment is hit the map anime reproduction -- 【Behavior】 ダメージ判定がマップに命中すると弾かれアニメ再生","6002":"[Behavior] Wait offset instantaneous switching -- 【Behavior】 待機オフセット瞬時切り替え","6003":"[Behavior] Count any number of seconds -- 【Behavior】 任意の秒数を数える","6050":"Golem keeps crumbling state -- ゴーレム崩れ状態維持","6200":"Stamina Recovery Down _ head _ Level 1 -- スタミナ回復ダウン_頭_レベル1","6201":"Stamina Recovery Down _ head _ Level 2 -- スタミナ回復ダウン_頭_レベル2","6202":"Stamina Recovery Down _ head _ Level 3 -- スタミナ回復ダウン_頭_レベル3","6203":"Stamina Recovery Down _ head _ Level 4 -- スタミナ回復ダウン_頭_レベル4","6210":"Stamina Recovery Down _ torso _ Level 1 -- スタミナ回復ダウン_胴_レベル1","6211":"Stamina Recovery Down _ torso _ Level 2 -- スタミナ回復ダウン_胴_レベル2","6212":"Stamina Recovery Down _ torso _ Level 3 -- スタミナ回復ダウン_胴_レベル3","6213":"Stamina Recovery Down _ torso _ Level 4 -- スタミナ回復ダウン_胴_レベル4","6220":"Stamina Recovery Down _ arm _ Level 1 -- スタミナ回復ダウン_腕_レベル1","6221":"Stamina Recovery Down _ arms _ Level 2 -- スタミナ回復ダウン_腕_レベル2","6222":"Stamina Recovery Down _ arms _ Level 3 -- スタミナ回復ダウン_腕_レベル3","6223":"Stamina Recovery Down _ arm _ Level 4 -- スタミナ回復ダウン_腕_レベル4","6230":"Stamina Recovery Down _ leg _ Level 1 -- スタミナ回復ダウン_脚_レベル1","6231":"Stamina Recovery Down _ leg _ Level 2 -- スタミナ回復ダウン_脚_レベル2","6232":"Stamina Recovery Down _ leg _ Level 3 -- スタミナ回復ダウン_脚_レベル3","6233":"Stamina Recovery Down _ leg _ Level 4 -- スタミナ回復ダウン_脚_レベル4","6300":"Super Armor -- スーパーアーマー","6335":"Chain Missing: damage reduction -- チェイン抜け:ダメージ減少","6340":"Strength: Damage Reduction: Medium -- 強靭度:ダメージ減少:中","6350":"Strength: Minimum (30 or less) -- 強靭度:極小(30以下)","6351":"Strong: Small (less than 50) -- 強靭度:小(50以下)","6352":"Strong: Medium (70 or less) -- 強靭度:中(70以下)","6353":"Strong: Large (100 or less) -- 強靭度:大(100以下)","6354":"Strong: Oversized (greater than 100) -- 強靭度:特大(100より大きい)","6400":"Bleeding _1 -- 出血_1","6401":"Bleeding _2 -- 出血_2","6402":"Bleeding _3 -- 出血_3","6403":"Bleeding _4 -- 出血_4","6404":"Bleeding _5 -- 出血_5","6405":"Bleeding _6 -- 出血_6","6500":"Poison _1 -- 毒_1","6501":"Poison _2 -- 毒_2","6502":"Poison _3 -- 毒_3","6503":"Poison _4 -- 毒_4","6504":"Poison _5 -- 毒_5","6505":"Poison _6 -- 毒_6","6510":"Poison _1 (sustained short) -- 毒_1(持続短い)","6511":"Poison _2 (short lasting) -- 毒_2(持続短い)","6512":"Poison _3 (sustained short) -- 毒_3(持続短い)","6513":"Poison _4 (sustained short) -- 毒_4(持続短い)","6514":"Poison _5 (sustained short) -- 毒_5(持続短い)","6515":"Poison _6 (sustained short) -- 毒_6(持続短い)","6600":"Poisonous _1 -- 猛毒_1","6601":"Poisonous _2 -- 猛毒_2","6602":"Poisonous _3 -- 猛毒_3","6603":"Poisonous _4 -- 猛毒_4","6604":"Poisonous _5 -- 猛毒_5","6605":"Poisonous _6 -- 猛毒_6","6700":"Cold _1 -- 冷気_1","6701":"Chill _2 -- 冷気_2","6702":"Cold _3 -- 冷気_3","6703":"Cold _4 -- 冷気_4","6704":"Cold _5 -- 冷気_5","6705":"Cold _6 -- 冷気_6","6800":"Petrified Curse Damage 1 -- 石化呪いダメージ1","6801":"Petrified Curse Damage 2 -- 石化呪いダメージ2","6802":"Petrified Curse Damage 3 -- 石化呪いダメージ3","6803":"Petrified Curse Damage 4 -- 石化呪いダメージ4","6804":"Petrified Curse Damage 5 -- 石化呪いダメージ5","6805":"Petrified Curse damage 0 (weaker than 1) -- 石化呪いダメージ0(1より弱い)","6980":"Event: City Maps Nipe stop -- イベント:街マップスナイプ停止","7000":"Level doping 0: Game start -- レベルドーピング0:ゲーム開始","7010":"Level doping 1: Ojo 1 -- レベルドーピング1:王城1","7020":"Level doping 2: City of Towers -- レベルドーピング2:塔の街","7030":"Level Doping 3: Mori 1 (first half) -- レベルドーピング3:森1(前半)","7040":"Level doping 4: Cathedral Church -- レベルドーピング4:聖堂教会","7060":"Level Doping 6: Dungeon -- レベルドーピング6:ダンジョン","7070":"Level doping 7: Dungeon Underground Lake (sub) -- レベルドーピング7:ダンジョン地底湖(サブ)","7080":"Level Doping 8: Anole -- レベルドーピング8:アノール","7090":"Level doping 9: Dungeons -- レベルドーピング9:地下牢","7120":"Level doping 12: Bridge (sub) -- レベルドーピング12:橋(サブ)","7130":"Level doping 13: Bases -- レベルドーピング13:拠点","7140":"Level doping 14: End of game -- レベルドーピング14:ゲーム終了","7150":"Level doping 15: (unused) -- レベルドーピング15:(未使用)","7160":"Level doping 16: (unused) -- レベルドーピング16:(未使用)","7300":"Soul Black -- ソウルブラック","7410":"Doping laps 1: Ojo 1 -- 周回ドーピング1:王城1","7420":"Doping laps 2: City of the Tower -- 周回ドーピング2:塔の街","7430":"Doping laps 3: Mori 1 (first half) -- 周回ドーピング3:森1(前半)","7440":"Doping laps 4: Basilica of the Church -- 周回ドーピング4:聖堂教会","7460":"Doping laps 6: Dungeon -- 周回ドーピング6:ダンジョン","7470":"Doping laps 7: Dungeon Underground Lake -- 周回ドーピング7:ダンジョン地底湖","7480":"Doping laps 8: Anole -- 周回ドーピング8:アノール","7490":"Doping laps 9: Dungeons -- 周回ドーピング9:地下牢","7520":"Doping laps 12: Bridge -- 周回ドーピング12:橋","7530":"Doping laps 13: Bases -- 周回ドーピング13:拠点","7540":"Doping laps 14: End of game -- 周回ドーピング14:ゲーム終了","7550":"Doping laps 15: (Unused) -- 周回ドーピング15:(未使用)","7560":"Doping laps 16: (unused) -- 周回ドーピング16:(未使用)","9000":"VFX for Avatar (Super Ability) -- アバター(ザコ)用VFX","9010":"No warp. -- ワープ不可","9100":"World Baff: Return blood of poison -- ワールドバフ:毒の返り血","9200":"Invasion occurring -- 侵入発生中","9201":"Intrusion Outbreak & Intrusion Stop State -- 侵入発生中&侵入停止状態","9500":"ABATABAF: 3 times the actual damage -- アバターバフ:実ダメージ3倍","10501":"The Curse of the Evil King -- 死霊の王 呪い解除中","10502":"King of the evil dissipated state -- 死霊の王 霧散状態","10503":"The King of the evil right arm part -- 死霊の王 右腕部位破壊状態","10504":"King of the Dead left arm part breakdown state -- 死霊の王 左腕部位破壊状態","10505":"The King of the evil whole body miasma -- 死霊の王 全身瘴気","10506":"The King of the evil whole body miasma -- 死霊の王 全身瘴気","10510":"Daemon Priest Magic Special effects for SFX (small) -- デーモン司祭 呪術SFX(小)用特殊効果","10511":"Daemon Priest Magic SFX (medium) special effects -- デーモン司祭 呪術SFX(中)用特殊効果","10512":"Daemon Priest Magic Special effects for SFX (Large) -- デーモン司祭 呪術SFX(大)用特殊効果","10513":"Daemon Priest Magic SFX (NO) special effects -- デーモン司祭 呪術SFX(無)用特殊効果","10514":"Daemon Priest Mojo SFX Reservoir Speed doubled -- デーモン司祭 呪術SFX溜め速度倍化","10515":"Daemon Priest for Flame Enchantment -- デーモン司祭 炎エンチャント用","10530":"Salivan Reaper (Straight sword) -- サリヴァーンの死神(直剣)","10531":"Salivan's death (sickle) -- サリヴァーンの死神(鎌)","10532":"Death (resident SFX) -- 死神(常駐SFX)","10540":"Maggots flame condition (for Panish Flag) -- 蛆人 炎状態(パニッシュフラグ用)","10550":"Crystal Elders Buff (for myself) -- 結晶の古老 バフ (自分用)","10551":"Crystal Elders Buff (for ally) -- 結晶の古老 バフ (味方用)","10552":"Elders weapon switching ban special effects on crystals -- 結晶の古老 武器持ち替え禁止特殊効果","10553":"Elders casting of crystals for camera application judgment -- 結晶の古老 投げ演出カメラ適用判定","10560":"Dead soldier Hand-held lantern resident SFX -- 亡者兵士 手持ちランタン常駐SFX","10561":"Dead soldier: Segunda State resident SFX -- 亡者兵士:グンダ状態 常駐SFX","10562":"Dead soldier Waist Lantern resident SFX -- 亡者兵士 腰ランタン常駐SFX","10563":"Dead soldier: Est recovery 40% -- 亡者兵士:エスト回復40%","10570":"Blue: Avatars (tentative) slow granted -- ブルー:アバター(仮) 鈍足付与","10571":"Blue: Avatar (tentative) around recovery -- ブルー:アバター(仮) 周囲回復","10572":"Blue: Avatar (tentative) self-enhancement -- ブルー:アバター(仮) 自己強化","10573":"Blue: Avatar Reinforcement -- ブルー:アバター(仮) 味方強化","10574":"During guard -- ガード中","10580":"Firewood Daemon _ (resident SFX) -- 薪のデーモン_(常駐SFX)","10581":"Firewood Daemon Hu_ (resident SFX) -- 薪のデーモンHU_(常駐SFX)","10590":"New Skeleton Torch (resident SFX) -- 新スケルトン松明(常駐SFX)","10591":"New Skeleton _hp informing -- 新スケルトン_HP全快","10600":"Old King of caries _ Trace judgement 00 -- 蝕の老王_トレース判定00","10601":"Old King of caries _ Trace judgement 01 -- 蝕の老王_トレース判定01","10602":"Old King of caries _ Trace Determination 02 -- 蝕の老王_トレース判定02","10603":"Old King of caries _ Trace Determination 03 -- 蝕の老王_トレース判定03","10604":"Old King of caries _ Trace Determination 04 -- 蝕の老王_トレース判定04","10605":"Old King of caries _ Trace judgement 05 -- 蝕の老王_トレース判定05","10606":"Old King of caries _ Trace Determination 06 -- 蝕の老王_トレース判定06","10607":"Old King of caries _ Trace judgement 07 -- 蝕の老王_トレース判定07","10608":"Old King of caries _ Trace judgement 08 -- 蝕の老王_トレース判定08","10609":"Old King of caries _ tracing judgement 09 -- 蝕の老王_トレース判定09","10610":"Old King of caries _ Trace judgement 10 -- 蝕の老王_トレース判定10","10611":"Old King of caries _ Trace judgement 11 -- 蝕の老王_トレース判定11","10612":"Old King of caries _ Trace Determination 12 -- 蝕の老王_トレース判定12","10613":"Old King of caries _ Trace Determination 13 -- 蝕の老王_トレース判定13","10614":"Old King of caries _ Trace Determination 14 -- 蝕の老王_トレース判定14","10615":"Old King of caries _ Trace judgement 15 -- 蝕の老王_トレース判定15","10616":"Old King of caries _ Trace judgement 16 -- 蝕の老王_トレース判定16","10617":"Old King of caries _ Trace judgement 17 -- 蝕の老王_トレース判定17","10618":"Old King of caries _ Trace judgement 18 -- 蝕の老王_トレース判定18","10619":"Old King of caries _ Trace Determination 19 -- 蝕の老王_トレース判定19","10620":"Old King of caries _ Trace Determination 20 -- 蝕の老王_トレース判定20","10621":"Old King of caries _ Trace Determination 21 -- 蝕の老王_トレース判定21","10622":"Old King of caries _ Trace Determination 22 -- 蝕の老王_トレース判定22","10623":"Old King of caries _ Trace Determination 23 -- 蝕の老王_トレース判定23","10624":"Old King of caries _ Trace Determination 24 -- 蝕の老王_トレース判定24","10625":"Old King of caries _ Trace Determination 25 -- 蝕の老王_トレース判定25","10629":"Old King of caries _ illusion transparent invalidation -- 蝕の老王_幻影透明無効化","10630":"Caries Old King resident sfx Hu Mae -- 蝕の老王 常駐SFX Hu前","10631":"Old King resident SFX Hu after caries -- 蝕の老王 常駐SFX Hu後","10632":"The old king of caries _ the illusion becomes translucent -- 蝕の老王_幻影が半透明になる","10633":"The old king of caries _ the illusion becomes completely transparent -- 蝕の老王_幻影が完全透明になる","10634":"The old king of caries _ Disabling Ghosts -- 蝕の老王_幻影を無効化する","10635":"The old king of caries _ void the full transparency of the apparition and become translucent -- 蝕の老王_幻影の完全透明を無効化し、半透明になる","10640":"The Old King _hu1 stage of caries -- 蝕の老王_HU1段階目","10641":"The Old King _hu2 stage of caries -- 蝕の老王_HU2段階目","10642":"The old king of caries _ the illusion of Enchantment ID addition for ghosts -- 蝕の老王_幻影用エンチャント前行動判定ID加算","10650":"Tindalos for Event state transition a20000 from prayer transition permission conditions -- ティンダロス イベント状態遷移用 a20000祈りから立ち上がる 遷移許可条件","10651":"Tindalos Event state Transition a20004 for death transition permission conditions -- ティンダロス イベント状態遷移用 a20004仰向けから死亡 遷移許可条件","10652":"Tindalos Events & Warp execution request for AI -- ティンダロス イベント&AI用 ワープ実行要求","10700":"Butterfly resident SFX of caries -- 蝕の蝶常駐SFX","10800":"New Ojo Knights: Red Eye -- 新王城騎士:赤目","10900":"Dark Knight Beast resident SFX -- ダークナイトビースト 常駐SFX","10901":"Dark Knight Beast resident Chill bullet firing (for freezing) -- ダークナイトビースト 常駐冷気弾丸発射(凍結用)","10902":"Dark Knight Beast resident Chill Bullet firing (for decals) -- ダークナイトビースト 常駐冷気弾丸発射(デカール用)","10920":"Moonlight Witch Resident SFX -- 月光の魔女 常駐SFX","10921":"Moonlight Witch Torch for Damage -- 月光の魔女 松明ダメージ用","10922":"Moonlight Witch Anime ID offset 1,000,000 -- 月光の魔女 アニメIDオフセット1000000","10930":"Salivan _ NITs Sword Enchantment (SFX display, for AI judgement) -- サリヴァーン_ニト剣エンチャント(SFX表示、AI判定用)","11000":"Hell Kite (Ojo 1) _ Still not blowing breath once -- ヘルカイト(王城1)_まだブレスを1回も吹いていない状態","11001":"Hel Kite (Ojo 1) _ Event Animation Transition Timing -- ヘルカイト(王城1)_イベントアニメ遷移タイミング","11002":"Hell Kite (Ojo 1) _ Breath blowing good condition -- ヘルカイト(王城1)_ブレスを吹いていい状態","11003":"Hel Kite (Ojo 1) _ Front Breath frequency: High -- ヘルカイト(王城1)_正面ブレス頻度:高","11004":"The Hel Kite (Ojo 1) _ Stop blowing the breath -- ヘルカイト(王城1)_ブレスを吹くのをやめる","11005":"Hel Kite (Ojo 1) _ Side street Breath Frequency: High -- ヘルカイト(王城1)_脇道ブレス頻度:高","11006":"Hell Kite (Ojo 1) _ Lost player status -- ヘルカイト(王城1)_プレイヤーを見失った状態","11007":"Hell Kite (Ojo 1) _ Lost player status _ lifted -- ヘルカイト(王城1)_プレイヤーを見失った状態_解除","11008":"Hel Kite (Ojo 1) _ for the caries foot SFX -- ヘルカイト(王城1)_蝕足SFX用","11009":"Hellfire (Ojo 1) _ for removal of caries feet SFX -- ヘルカイト(王城1)_蝕足SFX用 削除用","11010":"Hel Kite (Ojo 1) _ Lower left breath frequency: high -- ヘルカイト(王城1)_左下ブレス頻度:高","11011":"Hel Kite (Ojo 1) _ Top left breath frequency: high -- ヘルカイト(王城1)_左上ブレス頻度:高","11060":"Go back on the golem rampage -- ゴーレム大暴れで反撃","11100":"Tracker _ Body Chill (resident SFX) -- 追跡者_体の冷気(常駐SFX)","11101":"Tracker _ Flaming Sword (resident SFX) -- 追跡者_炎の剣(常駐SFX)","11102":"Tracker _ The Sword of the Eclipse (cold) (resident SFX) -- 追跡者_蝕(冷気)の剣(常駐SFX)","11103":"Tracker Hu Pre-throwing frequency control 10 seconds -- 追跡者 HU前 投げ頻度制御 10秒","11200":"Triple Barista _ Special effects for three-shot shooting 1 -- 三連バリスタ_三連射撃用特殊効果1","11201":"Triple Barista _ Special effects for three-shot shooting 2 -- 三連バリスタ_三連射撃用特殊効果2","11202":"Tri-Barista _ three-shot special effects 3 -- 三連バリスタ_三連射撃用特殊効果3","11280":"Snake Spirit _hu -- 蛇霊_HU","11281":"Snake Spirits _hu: caries Reservoir bullet (right hand) -- 蛇霊_HU:蝕溜まり弾丸(右手)","11282":"Snake Spirits _hu: caries Reservoir bullets (left) -- 蛇霊_HU:蝕溜まり弾丸(左手)","11283":"Snake Spirits _hu: caries Reservoir bullets (right elbow) -- 蛇霊_HU:蝕溜まり弾丸(右肘)","11284":"Snake Spirits _hu: caries Reservoir bullets (left elbow) -- 蛇霊_HU:蝕溜まり弾丸(左肘)","11285":"Snake Spirits _hu: caries Reservoir bullet (tail) -- 蛇霊_HU:蝕溜まり弾丸(尻尾)","11300":"Dragon's Guardian Knight _hu -- 竜の守護騎士_HU","11400":"Mad Warrior Hallec _hu -- 狂戦士ハレック_HU","11500":"Cardinal _ Curse: Bullet outbreak -- 枢機卿団_呪詛:弾丸発生","11501":"Cardinal _ Curse: appearance -- 枢機卿団_呪詛:見た目","11520":"Cardinal _ Eye Light (resident SFX) -- 枢機卿団_目光(常駐SFX)","11521":"Cardinal _ Aura (resident SFX) -- 枢機卿団_オーラ(常駐SFX)","11530":"Helmeted of the Cardinal Corps _ curse -- 枢機卿団_呪詛の号令","11531":"Helmeted of the Cardinal Corps _ curse -- 枢機卿団_呪詛の号令解除","11560":"Cardinal: For damage to the body (large) -- 枢機卿団:本体へのダメージ用(大)","11561":"Cardinal: For damage to the body (medium) -- 枢機卿団:本体へのダメージ用(中)","11562":"Cardinal: For damage to the body (small) -- 枢機卿団:本体へのダメージ用(小)","11600":"Prince of Darkness (brother): Regen revival -- 闇の双皇子(兄):リジェネ復活","11601":"Prince of Darkness (brother): Character attachment -- 闇の双皇子(兄):キャラアタッチ","11700":"Mimic: \"○ Open the Treasure Chest\" condition -- ミミック:「○宝箱を開ける」条件","11710":"Mimic: Back to mimicry conditions -- ミミック:擬態に戻る条件","11720":"Mimic: Sleep judgment condition -- ミミック:眠り判定条件","11721":"Mimic: Sleep judgement disabled -- ミミック:眠り判定無効","11730":"Mimic: The condition to mimic after awakening -- ミミック:目覚めた後に擬態する条件","11731":"Mimic: Remove the mimic condition after awakening -- ミミック:目覚めた後に擬態する条件削除","11800":"Hungry Jack: Ai visual distance change _0.25 times -- はらぺこジャック:AI視覚距離変更_0.25倍","11900":"New Shing: Lantern resident SFX -- 新獄吏:ランタン常駐SFX","11910":"Gargoyle resident -- ガーゴイル常駐","11911":"During guard -- ガード中","11920":"Full Armor Beast _ resident SFX (before HU) -- フルアーマー獣_常駐SFX(HU前)","11921":"Full Armor Beast _ resident SFX (after HU) -- フルアーマー獣_常駐SFX(HU後)","11922":"Full Armor animal resident cold air bullet firing (for decals) -- フルアーマー獣 常駐冷気弾丸発射(デカール用)","11923":"Full Armor Beast _hu -- フルアーマー獣_HU","11926":"Full Armor Beast _ Blizzard breath suspended wince damage -- フルアーマー獣_吹雪ブレス中断ひるみダメージ","11950":"Phantom of the Painting (Stone hat) -- 絵画守り_幻影(石コロ帽子)","11960":"Drifting stuff _ Underwater offset switching -- 漂うもの_水中時オフセット切り替え","11970":"Dead Wax _ Resident SFX -- 蝋の死人_常駐SFX","11980":"Segunda to change the damage magnification from dead enemy -- グンダ化亡者 敵からのダメージ倍率変更用","12000":"Sacred Beast in the woods _ gravity -- 森の霊獣_グラビティ","12010":"Salivan watchdog (Large) Resident SFX -- サリヴァーンの番犬(大)常駐SFX","12011":"Salivan watchdog (small) Resident SFX -- サリヴァーンの番犬(小)常駐SFX","12020":"Wax: The energetic ball: the first form -- 蝋まみれ:元気玉:第一形態","12021":"Wax covered: Fine ball: Check -- 蝋まみれ:元気玉:チェック","12022":"Wax covered: The second form of energy ball -- 蝋まみれ:元気玉第二形態","12023":"Shing Slow effect -- 獄吏 鈍足効果","12030":"City Map Sniper Transparent effect -- 街マップスナイパー用透明効果","12040":"Stench Crab _ Slow effect for bubble breath -- 死臭蟹_泡ブレス用鈍足効果","12041":"Stench crab for step (right) -- 死臭蟹_ステップ用(右)","12042":"Stench crab for step (left) -- 死臭蟹_ステップ用(左)","71100":"Disable all -- すべて無効","71110":"Immortality disabled -- 不死系無効","71111":"All enabled -- すべて有効","80000":"Disable all -- すべて無効","80011":"Remnant & Soul-absorbing disabled -- 名残&吸魂無効","80101":"Remnant & Fascination Disabled -- 名残&魅了無効","80111":"Remnants invalid -- 名残無効","81001":"Soul & Fascination Disabled -- 吸魂&魅了無効","81011":"Soul Absorption disabled -- 吸魂無効","81101":"Fascinated disabled -- 魅了無効","81111":"All enabled -- すべて有効","90000":"Disable all -- すべて無効","90001":"Poison & Bleeding & plague Disabled -- 毒&出血&疫病無効","90010":"Poison & Bleeding & curse disabled -- 毒&出血&呪い無効","90011":"Poison & Bleeding Disabled -- 毒&出血無効","90100":"Poison & Plague & Curse Disabled -- 毒&疫病&呪い無効","90101":"Poison & Plague Disabled -- 毒&疫病無効","90110":"Poison & Curse Disabled -- 毒&呪い無効","90111":"Poison disabled -- 毒無効","91000":"Bleeding & plague & Curse Disabled -- 出血&疫病&呪い無効","91001":"Bleeding & plague Disabled -- 出血&疫病無効","91010":"Bleeding & curses disabled -- 出血&呪い無効","91011":"Bleeding disabled -- 出血無効","91100":"Plague & Curse Invalid -- 疫病&呪い無効","91101":"Plague disabled -- 疫病無効","91110":"Curse disabled -- 呪い無効","91111":"All enabled -- すべて有効","99000":"Shallow snow -- 浅い雪","99001":"Deep snow -- 深い雪","99002":"Dead Torches State -- 亡者松明状態","99003":"Desaster from the Sword -- 剣から血糊飛ばし","99004":"Show off -- 表示消し","99005":"Test after caries ritual -- 蝕儀式後テスト","99006":"Play an enemy that does not notice the version -- プレイアブル版 気づかない敵","99007":"The power of the evil spirits in the play -- プレイアブル版 邪霊の力","99008":"Counter Test -- カウンターtest","99013":"Always throwing off for concept bridge dead -- コンセプト版吊り橋亡者用常時投げ無効","99014":"Suspension dead for determining waiting condition -- 吊り橋亡者待機状態判定用","99020":"Special effects for Slime -- スライム用特殊効果","99050":"The swamp of caries -- 蝕の沼","99100":"[FDP] Test _ No damage against flames -- 【FDP】テスト_炎に対してノーダメージ","99101":"[FDP] Test _ wolf-throwing damage -- 【FDP】テスト_ウルフ投げ時のダメージ","99102":"[FDP] Test _ Firefly Item Use event acquisition -- 【FDP】テスト_蛍アイテム使用イベント取得","99200":"[FDP] Proto-giant slime freezing -- 【FDP】プロト_巨大スライム凍結","99201":"[FDP] Proto _ giant slime freezing SFX -- 【FDP】プロト_巨大スライム凍結SFX","99300":"Dragon Bleeding -- 龍出血","99310":"Dragon Bleeding 1 -- ドラゴン出血1","99311":"Dragon Bleeding 2 -- ドラゴン出血2","99312":"Dragon Bleeding 3 -- ドラゴン出血3","99313":"Dragon Bleeding 4 -- ドラゴン出血4","99314":"Dragon Bleeding 5 -- ドラゴン出血5","99400":"[Test] Curse of the Evil King -- 【テスト】死霊の王 呪い","99401":"C1210 Blue estrus Permit test -- c1210ブルー発情許可テスト","99402":"c1210 Blue estrus Anime ID offset 3,000,000 -- c1210ブルー発情中 アニメIDオフセット3000000","99410":"Touchable in c1240 poor dead rolling -- c1240貧民亡者 ローリングで押せるテスト","99420":"c2180 maggots test for changing animation of damage in flames -- c2180 蛆人 炎でダメージアニメを変える用テスト","99430":"12 End edition avatar for pseudo-death state -- 12末版アバター 擬死状態用","99440":"Ash Daemon hot air damage large -- 灰のデーモン熱風ダメージ大","99441":"Ash Daemon hot air damage small -- 灰のデーモン熱風ダメージ小","99450":"Resident damage Anime change [for provisional Black Knight] -- 常駐ダメージアニメ変化【仮黒騎士用】","99451":"Resident damage Anime change [for temporary crucifixion dead a] -- 常駐ダメージアニメ変化【仮磔亡者A用】","99500":"Test for the Cathedral Golem -- 聖堂ゴーレム用テスト","99600":"Test for time measurement until the pseudo-death resurrection -- 擬似死亡復活までの時間計測用テスト","99700":"Team Type Change test -- チームタイプ変更テスト","99800":"Tae-eventmaker Collaboration Test -- TAE-EventMaker連携テスト","100000":"Moving (walking) -- 移動中(歩行)","100001":"On the move -- 移動中(走行)","100002":"Moving (dash) -- 移動中(ダッシュ)","100005":"Movement Stop (walking) -- 移動停止(歩行)","100006":"Travel stop -- 移動停止(走行)","100007":"Stop Moving (DASH) -- 移動停止(ダッシュ)","100010":"Quick Turn decision -- クイックターン判定","100020":"Player stamina out of judgment -- プレイヤースタミナ切れ判定用","100030":"upper body Anime End transition judgement -- 上半身アニメ終了遷移判定用","100040":"Lower body anime End transition judgement -- 下半身アニメ終了遷移判定用","100050":"Rotation attack transition available for specified period -- 回転攻撃遷移可能期間指定用","100060":"吹tsu飛bimasu for back-step Prohibition in motion -- 吹っ飛び系モーション中のバックステップ禁止判定用","100070":"For the fall transition judging of jump animation -- ジャンプアニメの落下遷移判定用","100080":"For judgment of wall collision during throwing -- 投げ時の壁衝突処理判定用","100090":"For determining the timing of the possible interruption of the reservoir attack -- 溜め攻撃の中断可能タイミング判定用","100100":"For determining death timing for wall collisions -- 投げ時壁衝突用の死亡タイミング判定用","100110":"Bonfire Event Issue Timing determination -- 篝火イベント発行タイミング判定用","100120":"Guard reversal Possible timing determination -- ガードリバーサル可能タイミング判定用","100130":"Right for Movement judgment -- 右向き移動判定用","100140":"For right diagonal movement judgment -- 右斜め移動判定用","100150":"For Left movement judgment -- 左向き移動判定用","100160":"Left diagonal Movement judgment -- 左斜め移動判定用","100170":"For determination of 180 degree turning in dash -- ダッシュ中180度旋回判定用","100180":"For no dash judgment -- ダッシュ不可判定用","100190":"For the driving and dash no judgment -- 走行・ダッシュ不可判定用","100200":"For non-moving judgment -- 移動不可判定用","100210":"Left-hand attack transition timing -- 左繋ぎ攻撃遷移可能タイミング","100220":"Continue to dash even if dash input is missing -- ダッシュ入力がなくなってもダッシュし続ける","100230":"Make a default attack instead of a combo attack -- コンボ攻撃ではなくデフォルトの攻撃を出す","100240":"No turning when rolling -- ローリング時旋回不可判定","100250":"The second stage of attack can be derived or determined -- 構え攻撃2段目派生可能か判定","100260":"The second stage of the rush attack can be derived or determined -- 突進攻撃2段目派生可能か判定","100270":"Can rise and roll -- 起き上がりローリング可能か判定","120000":"Arts: Axe: War cry -- アーツ:斧:ウォークライ","120010":"Arts: Axe: War cry: lack of points -- アーツ:斧:ウォークライ:ポイント不足","120020":"Arts: Axe: War cry Shockwave: Point shortage -- アーツ:斧:ウォークライ衝撃波:ポイント不足","120110":"Arts: Oversized Sword: Depression attack: lack of points -- アーツ:特大剣:踏み込み攻撃:ポイント不足","120210":"Arts: Straight Sword: Poised attack: lack of points -- アーツ:直剣:構え攻撃:ポイント不足","120310":"Arts: Song Sword: Spinning attack: lack of points -- アーツ:曲剣:回転攻撃:ポイント不足","120410":"Arts: Bow: Fire: Point shortage -- アーツ:弓:連射:ポイント不足","120500":"Arts: Cane: Magic power Up (right) -- アーツ:杖:魔法威力アップ(右手)","120501":"Arts: Cane: Magic power Up (left hand) -- アーツ:杖:魔法威力アップ(左手)","120510":"Arts: Cane: Magic power Up (right): lack of points -- アーツ:杖:魔法威力アップ(右手):ポイント不足","120511":"Arts: Cane: Magic power Up (left hand): lack of points -- アーツ:杖:魔法威力アップ(左手):ポイント不足","120610":"Arts: Spear: Assault: lack of points -- アーツ:槍:突撃:ポイント不足","120700":"Arts: Hammered: Patience -- アーツ:槌:我慢","120710":"Arts: Hammered: Patience: lack of points -- アーツ:槌:我慢:ポイント不足","120800":"Arts: Talisman: SA chant -- アーツ:タリスマン:SA詠唱","120801":"Arts: Talisman: SA chanting damage replacement -- アーツ:タリスマン:SA詠唱ダメージ差し替え","120810":"Arts: Talisman: SA chant (point shortage) -- アーツ:タリスマン:SA詠唱(ポイント不足)","120811":"Arts: Talisman: SA cast damage replacement (lack of points) -- アーツ:タリスマン:SA詠唱ダメージ差し替え(ポイント不足)","120910":"Arts: Miyakonojo: Shoot through: lack of points -- アーツ:大弓:貫通射撃:ポイント不足","130000":"Wet control: Water wet -- 濡れ制御:水濡れ","130010":"Wet control: Poison wet -- 濡れ制御:毒濡れ","130020":"Wet control: Mud wet -- 濡れ制御:泥濡れ","130040":"Wet control: Frostbite wetting -- 濡れ制御:凍傷濡れ","140001":"Multi-Doping: Super Ability: Client 1 -- マルチドーピング:ザコ:クライアント1名","140002":"Multi-Doping: Super Ability: 2 clients -- マルチドーピング:ザコ:クライアント2名","140003":"Multi-Doping: Super Ability: 3 clients -- マルチドーピング:ザコ:クライアント3名","140101":"Multi-Doping: Strong enemy: 1 Client -- マルチドーピング:強敵:クライアント1名","140102":"Multi-Doping: formidable: 2 clients -- マルチドーピング:強敵:クライアント2名","140103":"Multi-Doping: formidable: 3 clients -- マルチドーピング:強敵:クライアント3名","140201":"Multi-Doping: Boss: 1 Client -- マルチドーピング:ボス:クライアント1名","140202":"Multi-Doping: Boss: 2 Clients -- マルチドーピング:ボス:クライアント2名","140203":"Multi-Doping: Boss: 3 clients -- マルチドーピング:ボス:クライアント3名","224690":"Item:","224691":"Item:","224692":"Item:","224693":"Item:","900100":"SFX Confirmation: EST recovery -- SFX確認用:エスト使用回数回復","900200":"Ring:","900201":"Ring:","900202":"Ring:","900203":"Ring:","900210":"Ring:","900211":"Ring:","900212":"Ring:","111000000":"Ring: Blade of the Darkmoon","111001000":"Ring: Spears of the Church","111002000":"Ring: Watchdogs of Farron","111003000":"Ring: Aldrich Faithful","111004000":"Ring: Blue Sentinels","112000000":"Ring: Life Ring","112000100":"Ring: Life Ring+1","112000200":"Ring: Life Ring+2","112000300":"Ring: Life Ring+3","112001000":"Ring: Chloranthy Ring","112001100":"Ring: Chloranthy Ring+1","112001200":"Ring: Chloranthy Ring+2","112001300":"Ring: Chloranthy Ring+3","112002000":"Ring: Havel's Ring","112002100":"Ring: Havel's Ring+1","112002200":"Ring: Havel's Ring+2","112002300":"Ring: Havel's Ring+3","112003000":"Ring: Ring of Favor","112003100":"Ring: Ring of Favor+1","112003200":"Ring: Ring of Favor+2","112003300":"Ring: Ring of Favor+3","112004000":"Ring: Ring of Steel Protection","112004100":"Ring: Ring of Steel Protection+1","112004200":"Ring: Ring of Steel Protection+2","112004300":"Ring: Ring of Steel Protection+3","112005000":"Ring: Flame Stoneplate Ring","112005100":"Ring: Flame Stoneplate Ring+1","112005200":"Ring: Flame Stoneplate Ring+2","112006000":"Ring: Thunder Stoneplate Ring","112006100":"Ring: Thunder Stoneplate Ring+1","112006200":"Ring: Thunder Stoneplate Ring+2","112007000":"Ring: Magic Stoneplate Ring","112007100":"Ring: Magic Stoneplate Ring+1","112007200":"Ring: Magic Stoneplate Ring+2","112008000":"Ring: Dark Stoneplate Ring","112008100":"Ring: Dark Stoneplate Ring+1","112008200":"Ring: Dark Stoneplate Ring+2","112009000":"Ring: Speckled Stoneplate Ring","112009100":"Ring: Speckled Stoneplate Ring+1","112010000":"Ring: Bloodbite Ring","112010100":"Ring: Bloodbite Ring+1","112011000":"Ring: Poisonbite Ring","112011100":"Ring: Poisonbite Ring+1","112012000":"Ring: Cursebite Ring","112013000":"Ring: Fleshbite Ring","112013100":"Ring: Fleshbite Ring+1","112014000":"Ring: Wood Grain Ring","112014100":"Ring: Wood Grain Ring+1","112014200":"Ring: Wood Grain Ring+2","112015000":"Ring: Scholar Ring","112016000":"Ring: Priestess Ring","112017000":"Ring: Red Tearstone Ring","112018000":"Ring: Blue Tearstone Ring","112019000":"Ring: Wolf Ring","112019100":"Ring: Wolf Ring+1","112019200":"Ring: Wolf Ring+2","112019300":"Ring: Wolf Ring+3","112020000":"Ring: Leo Ring","112021000":"Ring: Ring of Sacrifice","112022000":"Ring: Ring of Sacrifice (Complementary)","112023000":"Ring: Young Dragon Ring","112023100":"Ring: Bellowing Dragoncrest Ring","112024000":"Ring: Great Swamp Ring","112024100":"Ring: Witch's Ring","112025000":"Ring: Morne's Ring","112025100":"Ring: Ring of the Sun's First Born","112027000":"Ring: Lingering Dragoncrest Ring","112027100":"Ring: Lingering Dragoncrest Ring+1","112027200":"Ring: Lingering Dragoncrest Ring+2","112028000":"Ring: Sage Ring","112028100":"Ring: Sage Ring+1","112028200":"Ring: Sage Ring+2","112029000":"Ring: Slumbering Dragoncrest Ring","112030000":"Ring: Dusk Crown Ring","112031000":"Ring: Saint's Ring","112032000":"Ring: Deep Ring","112033000":"Ring: Darkmoon Ring","112037000":"Ring: Hawk Ring","112038000":"Ring: Hornet Ring","112039000":"Ring: Covetous Gold Serpent Ring","112039100":"Ring: Covetous Gold Serpent Ring+1","112039200":"Ring: Covetous Gold Serpent Ring+2","112039300":"Ring: Covetous Gold Serpent Ring+3","112040000":"Ring: Covetous Silver Serpent Ring","112040100":"Ring: Covetous Silver Serpent Ring+1","112040200":"Ring: Covetous Silver Serpent Ring+2","112040300":"Ring: Covetous Silver Serpent Ring+3","112041000":"Ring: Sun Princess Ring","112042000":"Ring: Silvercat Ring","112043000":"Ring: Skull Ring","112044000":"Ring: Untrue White Ring","112045000":"Ring: Carthus Milkring - Effect","112045010":"Ring: Carthus Milkring - Condition","112046000":"Ring: Knight's Ring","112047000":"Ring: Hunter's Ring","112048000":"Ring: Knight Slayer's Ring","112049000":"Ring: Magic Clutch Ring","112050000":"Ring: Lightning Clutch Ring","112051000":"Ring: Fire Clutch Ring","112052000":"Ring: Dark Clutch Ring","112054000":"Ring: Flynn's Ring","112055000":"Ring: Prisoner's Chain","112056000":"Ring: Untrue Dark Ring","112058000":"Ring: Obscuring Ring","112059000":"Ring: Ring of the Evil Eye","112059010":"Ring: Ring of the Evil Eye - Effect","112059100":"Ring: Ring of the Evil Eye+1","112059110":"Ring: Ring of the Evil Eye+1 - Effect","112059200":"Ring: Ring of the Evil Eye+2","112059210":"Ring: Ring of the Evil Eye+2 - Effect","112059300":"Ring: Ring of the Evil Eye+3","112059310":"Ring: Ring of the Evil Eye+3 - Effect","112060000":"Ring: Calamity Ring","112061000":"Ring: Farron Ring","112062000":"Ring: Aldrich's Ruby","112062001":"Ring: Aldrich's Ruby - Condition","112062002":"Ring: Aldrich's Ruby - Effect","112063000":"Ring: Aldrich's Sapphire","112063001":"Ring: Aldrich's Sapphire - Condition","112063002":"Ring: Aldrich's Sapphire - Effect","112066000":"Ring: Lloyd's Sword Ring","112067000":"Ring: Lloyd's Shield Ring","112070000":"Ring: Estus Ring","112071000":"Ring: Ashen Estus Ring","112072000":"Ring: Horsehoof Ring","112073000":"Ring: Carthus Bloodring","112074000":"Ring: Reversal Ring","112075000":"Ring: Pontiff's Right Eye - Condition","112075010":"Ring: Pontiff's Right Eye - Condition (Complementary)","112075020":"Ring: Pontiff's Right Eye - Condition (Complementary)","112075030":"Ring: Pontiff's Right Eye - Condition (Complementary)","112075100":"Ring: Pontiff's Right Eye - Effect (Complementary)","112075110":"Ring: Pontiff's Right Eye - Effect (Complementary)","112075120":"Ring: Pontiff's Right Eye - Effect (Complementary)","112075130":"Ring: Pontiff's Right Eye - Effect","112079000":"Ring: Pontiff's Left Eye","112079100":"Ring: Pontiff's Left Eye - Effect","112083000":"Ring: Dragonscale Ring","112100000":"Ring: Chillbite Ring","129000500":"Infusion: Simple","129000501":"Infusion: Simple +1","129000502":"Infusion: Simple +2","129000503":"Infusion: Simple +3","129000504":"Infusion: Simple +4","129000505":"Infusion: Simple +5","129000506":"Infusion: Simple +6","129000507":"Infusion: Simple +7","129000508":"Infusion: Simple +8","129000509":"Infusion: Simple +9","129000510":"Infusion: Simple +10","129001100":"Infusion: Poison","129001101":"Infusion: Poison +1","129001102":"Infusion: Poison +2","129001103":"Infusion: Poison +3","129001104":"Infusion: Poison +4","129001105":"Infusion: Poison +5","129001106":"Infusion: Poison +6","129001107":"Infusion: Poison +7","129001108":"Infusion: Poison +8","129001109":"Infusion: Poison +9","129001110":"Infusion: Poison +10","129001200":"Infusion: Bleed","129001201":"Infusion: Bleed +1","129001202":"Infusion: Bleed +2","129001203":"Infusion: Bleed +3","129001204":"Infusion: Bleed +4","129001205":"Infusion: Bleed +5","129001206":"Infusion: Bleed +6","129001207":"Infusion: Bleed +7","129001208":"Infusion: Bleed +8","129001209":"Infusion: Bleed +9","129001210":"Infusion: Bleed +10","129001400":"Infusion: Blessed","129001401":"Infusion: Blessed +1","129001402":"Infusion: Blessed +2","129001403":"Infusion: Blessed +3","129001404":"Infusion: Blessed +4","129001405":"Infusion: Blessed +5","129001406":"Infusion: Blessed +6","129001407":"Infusion: Blessed +7","129001408":"Infusion: Blessed +8","129001409":"Infusion: Blessed +9","129001410":"Infusion: Blessed +10","129001500":"Infusion: Hollow","129001501":"Infusion: Hollow +1","129001502":"Infusion: Hollow +2","129001503":"Infusion: Hollow +3","129001504":"Infusion: Hollow +4","129001505":"Infusion: Hollow +5","129001506":"Infusion: Hollow +6","129001507":"Infusion: Hollow +7","129001508":"Infusion: Hollow +8","129001509":"Infusion: Hollow +9","129001510":"Infusion: Hollow +10","129010500":"Infusion: Simple Level 2","129010501":"Infusion: Simple Level 2 +1","129010502":"Infusion: Simple Level 2 +2","129010503":"Infusion: Simple Level 2 +3","129010504":"Infusion: Simple Level 2 +4","129010505":"Infusion: Simple Level 2 +5","129010506":"Infusion: Simple Level 2 +6","129010507":"Infusion: Simple Level 2 +7","129010508":"Infusion: Simple Level 2 +8","129010509":"Infusion: Simple Level 2 +9","129010510":"Infusion: Simple Level 2 +10","129011100":"Infusion: Poison Level 2","129011101":"Infusion: Poison Level 2 +1","129011102":"Infusion: Poison Level 2 +2","129011103":"Infusion: Poison Level 2 +3","129011104":"Infusion: Poison Level 2 +4","129011105":"Infusion: Poison Level 2 +5","129011106":"Infusion: Poison Level 2 +6","129011107":"Infusion: Poison Level 2 +7","129011108":"Infusion: Poison Level 2 +8","129011109":"Infusion: Poison Level 2 +9","129011110":"Infusion: Poison Level 2 +10","129011200":"Infusion: Bleed Level 2","129011201":"Infusion: Bleed Level 2 +1","129011202":"Infusion: Bleed Level 2 +2","129011203":"Infusion: Bleed Level 2 +3","129011204":"Infusion: Bleed Level 2 +4","129011205":"Infusion: Bleed Level 2 +5","129011206":"Infusion: Bleed Level 2 +6","129011207":"Infusion: Bleed Level 2 +7","129011208":"Infusion: Bleed Level 2 +8","129011209":"Infusion: Bleed Level 2 +9","129011210":"Infusion: Bleed Level 2 +10","129011400":"Infusion: Blessed Level 2","129011401":"Infusion: Blessed Level 2 +1","129011402":"Infusion: Blessed Level 2 +2","129011403":"Infusion: Blessed Level 2 +3","129011404":"Infusion: Blessed Level 2 +4","129011405":"Infusion: Blessed Level 2 +5","129011406":"Infusion: Blessed Level 2 +6","129011407":"Infusion: Blessed Level 2 +7","129011408":"Infusion: Blessed Level 2 +8","129011409":"Infusion: Blessed Level 2 +9","129011410":"Infusion: Blessed Level 2 +10","129021100":"Infusion: Poison Level 3","129021101":"Infusion: Poison Level 3 +1","129021102":"Infusion: Poison Level 3 +2","129021103":"Infusion: Poison Level 3 +3","129021104":"Infusion: Poison Level 3 +4","129021105":"Infusion: Poison Level 3 +5","129021106":"Infusion: Poison Level 3 +6","129021107":"Infusion: Poison Level 3 +7","129021108":"Infusion: Poison Level 3 +8","129021109":"Infusion: Poison Level 3 +9","129021110":"Infusion: Poison Level 3 +10","129021200":"Infusion: Bleed Level 3","129021201":"Infusion: Bleed Level 3 +1","129021202":"Infusion: Bleed Level 3 +2","129021203":"Infusion: Bleed Level 3 +3","129021204":"Infusion: Bleed Level 3 +4","129021205":"Infusion: Bleed Level 3 +5","129021206":"Infusion: Bleed Level 3 +6","129021207":"Infusion: Bleed Level 3 +7","129021208":"Infusion: Bleed Level 3 +8","129021209":"Infusion: Bleed Level 3 +9","129021210":"Infusion: Bleed Level 3 +10","129031100":"Infusion: Poison Level 4","129031101":"Infusion: Poison Level 4 +1","129031102":"Infusion: Poison Level 4 +2","129031103":"Infusion: Poison Level 4 +3","129031104":"Infusion: Poison Level 4 +4","129031105":"Infusion: Poison Level 4 +5","129031106":"Infusion: Poison Level 4 +6","129031107":"Infusion: Poison Level 4 +7","129031108":"Infusion: Poison Level 4 +8","129031109":"Infusion: Poison Level 4 +9","129031110":"Infusion: Poison Level 4 +10","129031200":"Infusion: Bleed Level 4","129031201":"Infusion: Bleed Level 4 +1","129031202":"Infusion: Bleed Level 4 +2","129031203":"Infusion: Bleed Level 4 +3","129031204":"Infusion: Bleed Level 4 +4","129031205":"Infusion: Bleed Level 4 +5","129031206":"Infusion: Bleed Level 4 +6","129031207":"Infusion: Bleed Level 4 +7","129031208":"Infusion: Bleed Level 4 +8","129031209":"Infusion: Bleed Level 4 +9","129031210":"Infusion: Bleed Level 4 +10","129041100":"Infusion: Poison Level 5","129041101":"Infusion: Poison Level 5 +1","129041102":"Infusion: Poison Level 5 +2","129041103":"Infusion: Poison Level 5 +3","129041104":"Infusion: Poison Level 5 +4","129041105":"Infusion: Poison Level 5 +5","129041106":"Infusion: Poison Level 5 +6","129041107":"Infusion: Poison Level 5 +7","129041108":"Infusion: Poison Level 5 +8","129041109":"Infusion: Poison Level 5 +9","129041110":"Infusion: Poison Level 5 +10","129041200":"Infusion: Bleed Level 5","129041201":"Infusion: Bleed Level 5 +1","129041202":"Infusion: Bleed Level 5 +2","129041203":"Infusion: Bleed Level 5 +3","129041204":"Infusion: Bleed Level 5 +4","129041205":"Infusion: Bleed Level 5 +5","129041206":"Infusion: Bleed Level 5 +6","129041207":"Infusion: Bleed Level 5 +7","129041208":"Infusion: Bleed Level 5 +8","129041209":"Infusion: Bleed Level 5 +9","129041210":"Infusion: Bleed Level 5 +10","129051100":"Infusion: Poison Level 6","129051101":"Infusion: Poison Level 6 +1","129051102":"Infusion: Poison Level 6 +2","129051103":"Infusion: Poison Level 6 +3","129051104":"Infusion: Poison Level 6 +4","129051105":"Infusion: Poison Level 6 +5","129051106":"Infusion: Poison Level 6 +6","129051107":"Infusion: Poison Level 6 +7","129051108":"Infusion: Poison Level 6 +8","129051109":"Infusion: Poison Level 6 +9","129051110":"Infusion: Poison Level 6 +10","129051200":"Infusion: Bleed Level 6","129051201":"Infusion: Bleed Level 6 +1","129051202":"Infusion: Bleed Level 6 +2","129051203":"Infusion: Bleed Level 6 +3","129051204":"Infusion: Bleed Level 6 +4","129051205":"Infusion: Bleed Level 6 +5","129051206":"Infusion: Bleed Level 6 +6","129051207":"Infusion: Bleed Level 6 +7","129051208":"Infusion: Bleed Level 6 +8","129051209":"Infusion: Bleed Level 6 +9","129051210":"Infusion: Bleed Level 6 +10","160000000":"Ring:"},"SpEffectVfxParam":{"0":"For testing -- テスト用","1":"Flame -- 炎","2":"Poison -- 毒","3":"Hill -- ヒル","4":"Corrosion -- 腐食","5":"Plague -- 疫病","6":"Bleeding -- 出血","8":"Hidden -- 姿隠し","9":"Gravity user -- グラビティ使用者","10":"State abnormal recovery [poison] -- 状態異常回復【毒】","11":"State abnormal recovery [plague] -- 状態異常回復【疫病】","12":"State abnormal recovery [bleeding] -- 状態異常回復【出血】","13":"State abnormal recovery [Universal] -- 状態異常回復【万能】","14":"Soul Steele -- ソウルスティール","15":"Zoom -- ズーム","16":"Warp -- ワープ","17":"Demon's Souls -- デモンズソウル","18":"Black Ghost Disperse -- 黒ゴースト退散","19":"Strong Ghost -- 強ゴースト","20":"White Hope -- ホワイト希望","21":"Black Hope -- ブラック希望","22":"Black Ghost -- 黒ゴースト化","23":"Resuscitation -- 蘇生","24":"Magic Prohibition -- 魔法使用禁止","25":"Miracle Motion Extension -- 奇跡モーション延長","26":"Grinding wheel -- 砥石","27":"Asphyxia Resuscitation -- 仮死蘇生","28":"Weapon reinforcement -- 武器強化","29":"Defense Shield -- 防御シールド","30":"Covered yarn -- 糸まみれ","31":"【 system 】 Ghost Rum Change -- 【システム】ゴーストパラム変化","32":"Incubus -- 金縛り","33":"Flies bummed -- 蠅たかり","34":"[FDP proto] slime freezing -- 【FDPプロト】スライム凍結","35":"Flame Phantom _ Second phase -- 炎怪人_第2段階","36":"Flame Phantom _ Third stage -- 炎怪人_第3段階","37":"Flame Phantom _ Fourth stage -- 炎怪人_第4段階","38":"Hallucinations -- 幻聴","39":"Soul Coins -- ソウルコイン","40":"Strong defense Shield -- 強防御シールド","41":"Fire Resistant Shield -- 火耐性シールド","42":"HP Recovery Status -- HP回復状態","43":"Forced ghosting first Stage -- 強制ゴースト化 第1段階","44":"Forced ghosting Phase II -- 強制ゴースト化 第2段階","45":"Forced ghosting third phase -- 強制ゴースト化 第3段階","46":"Pheromones -- フェロモン","47":"Cat Landing -- 猫着地","48":"Pinch attack power up -- ピンチ攻撃力アップ","49":"Pinch defensive power up -- ピンチ防御力アップ","50":"Regenerate -- リジェネレイト","51":"Torchlight -- たいまつ","52":"Weak Regenerate -- 弱リジェネレイト","53":"Weak Ghost Camouflage -- 弱ゴーストカムフラージュ","54":"Hidden weakness -- 弱姿隠し","55":"Tip Blood Letters -- ヒント血文字","56":"Hill Foot -- ヒル足","57":"Yellow Robe -- 黄衣","58":"Point Light -- 点光源","59":"Blood character evaluation -- 血文字評価","60":"Weapon reinforcement [medium] -- 武器強化【中】","61":"Weapon reinforcement [large] -- 武器強化【大】","62":"Flame Enhancement -- 炎強化","63":"flame enhancement [Large] -- 炎強化【大】","64":"Magic Reinforcement -- 魔法強化","65":"Chimera Reinforcement -- キメラ強化","66":"Item Drop correction -- アイテムドロップ補正","67":"MP Regenerate -- MPリジェネレイト","68":"Weak MP Regenerate -- 弱MPリジェネレイト","69":"Resurrection when dead -- 死んだとき復活","70":"Poison tolerance up -- 毒耐性UP","71":"Magic Power Up -- 魔法威力UP","72":"Magic Defense Up -- 魔法防御UP","73":"Bleeding resistance up -- 出血耐性UP","74":"Plague resistant up -- 疫病耐性UP","75":"Stamina Recovery Up -- スタミナ回復UP","76":"Seoul gets up -- ソウル取得UP","77":"Flame resistant up -- 炎耐性UP","78":"King's Shield one step left foot -- 王の盾1段階左足","79":"King's Shield 2 step left foot -- 王の盾2段階左足","80":"King's Shield three step left foot -- 王の盾3段階左足","91":"King's Shield one step right foot -- 王の盾1段階右足","92":"King's Shield 2 stage right foot -- 王の盾2段階右足","93":"King's Shield 3 stage right foot -- 王の盾3段階右足","94":"Referee's belly bleeding -- 審判者腹出血","95":"Mimicry -- 擬態","96":"[SP] Makeover -- 【SP】変身","97":"Extension -- ガスマン","98":"Detection -- 探知","99":"Waiting for cooperation -- 協力待ち","100":"Cooperation -- 協力","101":"Send cooperation -- 協力送信","102":"Gravity -- グラビティ","103":"Evil Eye -- 邪眼","104":"State lifting [waiting for cooperation] -- 状態解除【協力待ち】","105":"Effect LV1 -- エフェクトLv1","106":"Effect LV2 -- エフェクトLv2","107":"Effect Lv3 -- エフェクトLv3","108":"Evil Eye Lv1 -- 邪眼Lv1","109":"Evil Eye Lv2 -- 邪眼Lv2","110":"Counter -- カウンター","111":"Planting Egg Standby -- 植卵スタンバイ","112":"Planting eggs -- 植卵","113":"Egg Head Standby -- 卵頭スタンバイ","114":"Egg Head -- 卵頭","115":"Super Light Movement -- 超軽量移動","116":"Curse -- 呪い","117":"Petrified -- 石化","118":"Curse lifted -- 呪い解除","119":"Human Nature Damage -- 人間性ダメージ","120":"Damage Anime Change _sa Limited time -- ダメージアニメ変化_SA時限定","121":"Damage Anime Changes _ added -- ダメージアニメ変化_追加","122":"Underwater behavior -- 水中挙動","123":"Weapon Head -- 武器頭","124":"Weapon Torso -- 武器胴","125":"Weapon hand -- 武器手","126":"Weapon legs -- 武器脚","127":"Sleep -- 眠り","128":"Mimic _ mimicry -- ミミック_擬態","129":"Mimic _ Mimicry Slumber -- ミミック_擬態眠り","130":"Mimic _ usually -- ミミック_通常","131":"Mimic _ usually asleep -- ミミック_通常眠り","132":"Attracted -- 魅了","133":"Blood character acquisition -- 血文字取得","134":"A change in the -- はじき変化","135":"Mimic _ usually beginning to sleep -- ミミック_通常眠り始め","136":"Crystallization -- 結晶化","137":"Resonance lv0 -- 共鳴Lv0","138":"Resonance LV1 -- 共鳴Lv1","139":"Resonance Lv2 -- 共鳴Lv2","140":"Resonance Lv3 -- 共鳴Lv3","141":"Resonance lv4 -- 共鳴Lv4","142":"Behavior ID Specification -- 行動ID指定","143":"Immortal Enemy -- 敵_不死","144":"Enemy _ Asphyxia -- 敵_仮死","145":"The Sacred attribute -- 聖属性","146":"Whole Body Grindstone -- 全身砥石","147":"Light Magic -- ライト魔法","148":"Request for Relief -- 救援要請","149":"White Relief -- 白救援","150":"Black Relief -- 黒救援","151":"Lightning Reinforcement -- 雷強化","152":"Poison Reinforcement -- 毒強化","153":"Strengthening the plague -- 疫病強化","154":"EST unavailable -- エスト使用不可","155":"SA reinforcement -- SA強化","156":"Endurance decrease disabled -- 耐久度減少無効","157":"Strengthening against spirituality -- 対霊強化","158":"Guard Reinforcement -- ガード強化","159":"Usually dead when the ring resurrection -- 通常死んだとき指輪復活","160":"When a curse dies, the ring revives. -- 呪いで死んだとき指輪復活","161":"Warp b -- ワープB","162":"Warp C -- ワープC","163":"Warp D -- ワープD","164":"Warp E -- ワープE","165":"Warp A -- ワープA","166":"Pledge discarded -- 誓約破棄","167":"【 SP 】 Systemic makeover -- 【SP】全身変身","168":"Precision Reinforcement -- 精密強化","169":"resonance enhancement -- 共鳴強化","170":"Causal retribution -- 因果応報","171":"Causal retribution explosion -- 因果応報爆発","172":"Sheath Invincible 1 -- シース無敵1","173":"Sheath Invincible 2 -- シース無敵2","174":"Sheath Invincible 3 -- シース無敵3","175":"Revival of humanity -- 人間性復活","176":"Soul Coin (Immortal) -- ソウルコイン(不死系)","177":"Soul Coin (Beast System) -- ソウルコイン(獣系)","178":"Ally Reinforcement Magic -- 味方強化魔法","179":"Curse effect LV1 -- 呪い効果Lv1","180":"Curse effect Lv2 -- 呪い効果Lv2","181":"Curse effect Lv3 -- 呪い効果Lv3","182":"Curse effect Lv4 -- 呪い効果Lv4","183":"SOS Vis -- SOS可視","184":"Invisible weapon -- インビジブルウェポン","185":"NITs effect -- ニト効果","186":"Fire Kick -- 炎キック","187":"A death -- 死神化","188":"Forest thieves summon Hope -- 森の盗賊団召喚希望","189":"Forest thieves in territory -- 森の盗賊団テリトリ内","190":"Wang Mother brother summoned Hope -- 王母弟召喚希望","191":"King Mother Brother Territory -- 王母弟テリトリ内","192":"Egg Head _ Two -- 卵頭_二段目","193":"Life extension -- 寿命延長","194":"Magic Use up -- 魔法使用回数アップ","195":"Dragon NEWT Sines -- ドラゴンニュートサイン","196":"Prize Neck sign -- 賞金首サイン","197":"Counter up -- カウンターアップ","198":"Egg condemning -- 卵くだし","199":"HP Drain -- HPドレイン","200":"The Power of Madness -- 狂気の力","201":"For magic ban effect -- 魔法禁止エフェクト用","202":"Dragon Roar -- 竜咆哮","203":"Magic usage Down -- 魔法使用回数ダウン","204":"Strengthen guard [large] -- ガード強化【大】","205":"[DLC] Dark reinforcement -- 【DLC】闇強化","206":"Arena 1 vs. 1 [small] in territory -- 闘技場1対1【小】テリトリ内","207":"Arena 2 vs. 2 [small] territory -- 闘技場2対2【小】テリトリ内","208":"Arena Battle Royal [small] territory -- 闘技場バトルロイヤル【小】テリトリ内","209":"Arena 1 vs. 1 [small] summon hope a -- 闘技場1対1【小】召喚希望A","210":"Arena 1 vs. 1 [small] Summon Hope B -- 闘技場1対1【小】召喚希望B","211":"Arena 2 vs. 2 [small] summon hope A1 -- 闘技場2対2【小】召喚希望A1","212":"Arena 2 vs. 2 [small] summon hope A2 -- 闘技場2対2【小】召喚希望A2","213":"Arena 2 vs. 2 [small] Summon Hope B1 -- 闘技場2対2【小】召喚希望B1","214":"Arena 2 vs. 2 [small] Summon hope B2 -- 闘技場2対2【小】召喚希望B2","215":"Arena Battle Royal [small] summon hope a -- 闘技場バトルロイヤル【小】召喚希望A","216":"Arena Battle Royal [small] summon Hope B -- 闘技場バトルロイヤル【小】召喚希望B","217":"Arena Battle Royal [small] Summon hope C -- 闘技場バトルロイヤル【小】召喚希望C","218":"Arena Battle Royal [small] summon hope D -- 闘技場バトルロイヤル【小】召喚希望D","219":"Arena 1 to 1 [large] in territory -- 闘技場1対1【大】テリトリ内","220":"Arena 2 vs. 2 [large] territory -- 闘技場2対2【大】テリトリ内","221":"Arena Battle Royal 【 Dai 】 Territory -- 闘技場バトルロイヤル【大】テリトリ内","222":"Arena 1 to 1 [large] Summon hope a -- 闘技場1対1【大】召喚希望A","223":"Arena 1 to 1 [large] Summon hope B -- 闘技場1対1【大】召喚希望B","224":"Arena 2 vs. 2 [large] summon request A1 -- 闘技場2対2【大】召喚希望A1","225":"Arena 2 vs. 2 [large] summon hope A2 -- 闘技場2対2【大】召喚希望A2","226":"Arena 2 vs. 2 [large] Summon hope B1 -- 闘技場2対2【大】召喚希望B1","227":"Arena 2 vs. 2 [large] Summon hope B2 -- 闘技場2対2【大】召喚希望B2","228":"Arena Battle Royal [large] summon hope a -- 闘技場バトルロイヤル【大】召喚希望A","229":"Arena Battle Royal [large] Summon hope B -- 闘技場バトルロイヤル【大】召喚希望B","230":"Arena Battle Royal [large] Summon hope C -- 闘技場バトルロイヤル【大】召喚希望C","231":"Arena Battle Royal [large] summon hope D -- 闘技場バトルロイヤル【大】召喚希望D","232":"Prohibition of use prohibited items in the arena -- 闘技場使用禁止アイテム使用禁止","233":"Arena dead -- 闘技場死亡","234":"Provisional first place in the arena -- 闘技場暫定1位","235":"Arena Nodead -- 闘技場NoDead","236":"Arena Equal # 1 -- 闘技場同率1位","237":"Black Dragon Ring -- 黒竜の指輪","238":"More than ten fighting pits -- 闘技場10勝以上","239":"Over 30 wins in the arena -- 闘技場30勝以上","240":"Arena 50 wins over -- 闘技場50勝以上","241":"Over 100 wins in the arena -- 闘技場100勝以上","242":"Blood material override -- 血材質上書き","243":"Blood Material _ Blood -- 血材質_血","244":"Blood Material _ Flame -- 血材質_炎","245":"Blood Material _ blood Small -- 血材質_血少","246":"Stacking Magic A_LV1 -- 重ね掛け魔法A_LV1","247":"Stacking Magic A_lv2 -- 重ね掛け魔法A_LV2","248":"Stacking Magic A_lv3 -- 重ね掛け魔法A_LV3","249":"Stacking Magic B_LV1 -- 重ね掛け魔法B_LV1","250":"Stacking Magic B_lv2 -- 重ね掛け魔法B_LV2","251":"Stacking Magic B_lv3 -- 重ね掛け魔法B_LV3","252":"Covered with oil -- 油まみれ","253":"Fire Daruma -- 火だるま","254":"In the midst of being possessed -- 取り憑かれ中","255":"Dark Magic -- 暗闇魔法","256":"Burning Body combustion Level 1 -- 焼死体燃焼レベル1","257":"Burning Body combustion Level 2 -- 焼死体燃焼レベル2","258":"Sound magnification change -- 音倍率変更","259":"Target Down -- ターゲットダウン中","260":"Caries -- 蝕","261":"Maggots -- 蛆","262":"State abnormal recovery [maggots] -- 状態異常回復【蛆】","263":"Bleeding state -- 出血状態","265":"Quick Match Request -- クイックマッチリクエスト","266":"Dead disabled during fall -- 落下中死亡無効","267":"Change Visual Range -- 視覚範囲変更","268":"Caries deaths -- 蝕死亡","269":"Double chanting -- 二重詠唱中","270":"General ABATABAF 1 -- 汎用アバターバフ1","271":"General ABATABAF 2 -- 汎用アバターバフ2","272":"General ABATABAF 3 -- 汎用アバターバフ3","273":"General ABATABAF 4 -- 汎用アバターバフ4","274":"General ABATABAF 5 -- 汎用アバターバフ5","5000":"Torches _ Flame Effect -- 松明_炎エフェクト","5001":"Torches, the effect of hanging -- 松明、掲げた時のエフェクト","5010":"King of Firewood State Fire powder (small) -- 薪の王状態 火の粉(小)","5011":"King of Firewood State Fire powder (Large) -- 薪の王状態 火の粉(大)","5020":"Wang Hua of firewood when SFX: right arm -- 薪の王化時SFX:右腕","5021":"Wang Hua of firewood when SFX: right elbow -- 薪の王化時SFX:右肘","5022":"Wang Hua of firewood when SFX: right shoulder -- 薪の王化時SFX:右肩","5023":"Wang Hua of firewood when SFX: upper body -- 薪の王化時SFX:上半身","5024":"Wang Hua of firewood when SFX: systemic -- 薪の王化時SFX:全身","5025":"Wang Hua of firewood when SFX: -- 薪の王化時SFX:","5026":"Wang Hua of firewood when SFX: -- 薪の王化時SFX:","5027":"Wang Hua of firewood when SFX: -- 薪の王化時SFX:","5028":"Wang Hua of firewood when SFX: -- 薪の王化時SFX:","6900":"Arts: Axe: War cry -- アーツ:斧:ウォークライ","6910":"Arts: Cane: strengthening Magic (right) -- アーツ:杖:魔力強化(右)","6911":"Arts: Cane: strengthening Magic (left) -- アーツ:杖:魔力強化(左)","6920":"Arts: Hammered: Patience -- アーツ:槌:我慢","6930":"Arts: Talisman: Bearable chanting -- アーツ:タリスマン:我慢詠唱","6999":"SFX Confirmation: EST recovery -- SFX確認用:エスト使用回数回復","8000":"Fire weapon Reinforcement -- 炎武器強化","8010":"Regen Double Chanting -- リジェネ二重詠唱","8020":"Recovery double Chanting -- 回復二重詠唱","8030":"Sun Sword -- 太陽剣","8040":"Great recovery -- 大回復","8050":"A firm vow -- 固い誓い","40002":"Poison (Body Center effect) -- 毒(体中心エフェクト)","40253":"Fire Daruma -- 火だるま","40260":"Caries (Body center effect) -- 蝕(体中心エフェクト)","50000":"Daemon Priest _ Mojo Small -- デーモン司祭_呪術小","50001":"Demon Priest _ in Witchcraft -- デーモン司祭_呪術中","50002":"Demon Priest _ Great Mojo -- デーモン司祭_呪術大","50003":"Demon Priest _ Flame Enchant -- デーモン司祭_炎エンチャント","50004":"Daemon Priest _ -- デーモン司祭_","50010":"Elders of Crystals _ ally -- 結晶の古老_味方","50020":"Dead Wax (head) -- 蝋の死人_蝋まみれ(頭)","50021":"Dead of wax _ head Flame -- 蝋の死人_頭の炎","50030":"Firewood Daemon Head (resident SFX) -- 薪のデーモン_頭(常駐SFX)","50031":"Firewood Daemon _ Breast (resident SFX) -- 薪のデーモン_胸(常駐SFX)","50032":"Firewood Daemon _ Back (resident SFX) -- 薪のデーモン_背中(常駐SFX)","50033":"Firewood Daemon _ Weapons (resident SFX) -- 薪のデーモン_武器(常駐SFX)","50034":"Daemon Hu_ Head of firewood (resident SFX) -- 薪のデーモンHU_頭(常駐SFX)","50035":"Firewood Daemon hu_ Chest (resident SFX) -- 薪のデーモンHU_胸 (常駐SFX)","50036":"Firewood Daemon Hu_ back (resident SFX) -- 薪のデーモンHU_背中(常駐SFX)","50037":"Wood Daemon Hu_ Weapon (resident SFX) -- 薪のデーモンHU_武器(常駐SFX)","50040":"New Skeleton Torch (resident SFX) -- 新スケルトン松明(常駐SFX)","50050":"Salivan's Reaper _ Sword Enchanted -- サリヴァーンの死神_剣エンチャント","50051":"Salivan's Reaper _ Sickle Enchantment -- サリヴァーンの死神_鎌エンチャント","50052":"Salivan Reaper (Resident SFX) -- サリヴァーンの死神(常駐SFX)","50053":"Salivan Reaper _ (resident SFX) -- サリヴァーンの死神_(常駐SFX)","50055":"Tindalos _ Eyed -- ティンダロス_眼光","50058":"Gargoyl Torch -- ガーゴイルトーチ","50060":"King of the evil miasma chest resident SFX -- 死霊の王 瘴気胸 常駐SFX","50061":"King of the Evil Miasma -- 死霊の王 瘴気","50070":"The old king of caries Aura resident SFX -- 蝕の老王 蝕オーラ 常駐SFX","50071":"The old king of caries Aura Hu-Resident SFX -- 蝕の老王 蝕オーラHu 常駐SFX","50072":"The old king caries Vane resident SFX -- 蝕の老王 蝕羽根 常駐SFX","50073":"The old king caries Vane resident SFX -- 蝕の老王 蝕羽根 常駐SFX","50074":"Old King Style resident SFX of caries -- 蝕の老王 風 常駐SFX","50075":"The Old king illusion of Eclipse translucent -- 蝕の老王 幻影半透明","50076":"The Old king illusion of caries completely transparent -- 蝕の老王 幻影完全透明","50080":"Butterfly Scales resident of caries -- 蝕の蝶鱗粉常駐","50090":"Ash Daemon _ Weapon Smoke (resident SFX) -- 灰のデーモン_武器の煙(常駐SFX)","50091":"Ash Daemon _ Full Body smoke (resident SFX) -- 灰のデーモン_全身煙(常駐SFX)","50092":"Ash Daemon _ Joint 1 (Resident SFX) -- 灰のデーモン_関節1(常駐SFX)","50093":"Ash Daemon _ Joint 2 (Resident SFX) -- 灰のデーモン_関節2(常駐SFX)","50094":"Ash Daemon _ Joint 3 (Resident SFX) -- 灰のデーモン_関節3(常駐SFX)","50095":"Ash Daemon _ Joint 4 (Resident SFX) -- 灰のデーモン_関節4(常駐SFX)","50096":"Ash Daemon _ Strain 1 (resident SFX) -- 灰のデーモン_歪み1(常駐SFX)","50097":"Ash Daemon _ Strain 2 (resident SFX) -- 灰のデーモン_歪み2(常駐SFX)","50098":"Ash Daemon _ Strain 3 (resident SFX) -- 灰のデーモン_歪み3(常駐SFX)","50110":"Dead soldier Hand-held lantern resident SFX -- 亡者兵士 手持ちランタン常駐SFX","50120":"Dead soldier: Segunda State resident SFX -- 亡者兵士:グンダ状態 常駐SFX","50121":"Dead soldier: Segunda State resident SFX -- 亡者兵士:グンダ状態 常駐SFX","50122":"Dead soldier: Segunda State resident SFX -- 亡者兵士:グンダ状態 常駐SFX","50123":"Dead soldier: Segunda State resident SFX -- 亡者兵士:グンダ状態 常駐SFX","50124":"Dead soldier: Segunda State resident SFX -- 亡者兵士:グンダ状態 常駐SFX","50125":"Dead Soldier: Segunda status (Resident SFX) -- 亡者兵士:グンダ状態 両目(常駐SFX)","50130":"Dead soldier Waist Lantern resident SFX -- 亡者兵士 腰ランタン常駐SFX","50150":"New Ojo Knight: Red Eye (resident SFX) -- 新王城騎士:赤目(常駐SFX)","50200":"Dark Knight Beast _ Head (resident SFX) -- ダークナイトビースト_頭(常駐SFX)","50201":"Dark Knight Beast _ Torso (resident SFX) -- ダークナイトビースト_胴(常駐SFX)","50202":"Dark Knight Beast _ left arm (resident SFX) -- ダークナイトビースト_左腕(常駐SFX)","50203":"Dark Knight Beast _ right arm (resident SFX) -- ダークナイトビースト_右腕(常駐SFX)","50204":"Dark Knight Beast _ right foot (resident SFX) -- ダークナイトビースト_右足(常駐SFX)","50205":"Dark Knight Beast _ Left foot (resident SFX) -- ダークナイトビースト_左足(常駐SFX)","50206":"Dark Knight Beast _ Weapons (resident SFX) -- ダークナイトビースト_武器(常駐SFX)","50207":"Dark Knight Beast Eyes (resident SFX) -- ダークナイトビースト_目(常駐SFX)","50210":"Tracker _ Body Chill (resident SFX) -- 追跡者_体の冷気(常駐SFX)","50211":"Tracker _ Flaming Sword (resident SFX) -- 追跡者_炎の剣(常駐SFX)","50212":"Tracker _ The Sword of the Eclipse (cold) (resident SFX) -- 追跡者_蝕(冷気)の剣(常駐SFX)","50220":"Cardinal _ Curse (resident SFX) -- 枢機卿団_呪詛(常駐SFX)","50221":"Cardinals _ Range Regen (Effect SFX) -- 枢機卿団_範囲リジェネ(効果SFX)","50222":"Cardinals _ Range Scrut (Effect SFX) -- 枢機卿団_範囲スクルト(効果SFX)","50223":"Cardinal _ Eye Light (resident SFX) -- 枢機卿団_目光(常駐SFX)","50224":"Cardinal _ Aura (resident SFX) -- 枢機卿団_オーラ(常駐SFX)","50230":"Moonlight Witch (resident SFX) -- 月光の魔女(常駐SFX)","50240":"New Shing (resident SFX) -- 新獄吏(常駐SFX)","50250":"Full Armor Beast _ Whole body chill (before HU) -- フルアーマー獣_全身冷気(HU前)","50251":"Full Armor Beast _ weapon cold (before HU) -- フルアーマー獣_武器冷気(HU前)","50252":"Full Armor Beast _ Whole body chill (after HU) -- フルアーマー獣_全身冷気(HU後)","50253":"Full Armor Beast _ weapon cold (after Hu) -- フルアーマー獣_武器冷気(HU後)","50254":"Full Armor Beast _ Eye light (after Hu) -- フルアーマー獣_眼の光(HU後)","50260":"Salivan (NITs Sword Enchanted) -- サリヴァーン(ニト剣エンチャント)","50270":"Phantom of the painting -- 絵画守り_幻影","50280":"Hel Kite _ Ojo 1 feet -- ヘルカイト_王城1蝕足","50290":"Dead-resident SFX of Wax -- 蝋の死人 常駐SFX","50300":"Salivan watchdog (Large) Resident SFX -- サリヴァーンの番犬(大)常駐SFX","50301":"Salivan watchdog (small) Resident SFX -- サリヴァーンの番犬(小)常駐SFX"},"SwordArtsParam":{"0":"None","1":"None","10":"Weapon Skill","60":"Weapon Skill","70":"Weapon Skill","80":"Weapon Skill","90":"Parry","91":"Parry","92":"Spell Parry","93":"Spell Parry","99":"Parry","100":"Quickstep","101":"Blind Spot","102":"Unleash Dragon","103":"Guiding Light","104":"Blind Spot","105":"Shield Splitter","106":"Stance","107":"Crystal Blade","108":"Quickstep","200":"Stance","201":"Stomp","202":"Guiding Light","203":"Oath of Sunlight","204":"Sacred Lothric Light","205":"Stance","206":"Lion Stance","207":"Ember","300":"Stance","301":"Wrath of the Gods","302":"Ember","303":"Moonlight Vortex","304":"Stance of Judgment","305":"Sacred Light and Flame","306":"Wolf Sword","307":"Stomp","308":"Stomp","309":"Storm King","310":"Perseverance","311":"Elfriede's Blackflame","312":"Blade of Peril","400":"Stomp","401":"Parry","402":"Charge","403":"Profaned Flame","404":"Flame of Lorian","405":"Stomp","406":"Stomp","407":"Stomp","410":"Ember","500":"Stance","501":"Shield Splitter","502":"Ricard's Lunge and Press","503":"Quill Dart","600":"Spin Slash","601":"Crescent Blade","602":"Tornado","603":"Frost Blade","604":"Spin Slash","605":"Spin Slash","606":"Chained Dance","607":"Prying Wedge","608":"Spin Slash","700":"Spin Slash","701":"Wolf Leap","702":"Spin Slash","703":"Spin Slash","704":"Sever","800":"Hold","801":"Bloodlust","802":"Hold","803":"Darkdrift","804":"Hold","900":"Warcry","901":"Sharpen","902":"Feast Bell","903":"Quickstep","904":"Warcry","1000":"Warcry","1002":"Demonic Flare","1003":"Falling Bolt","1004":"Warcry","1005":"Sharpen","1006":"Earthen Wrath","1100":"Perseverance","1101":"Warcry","1102":"Steady Chant","1103":"Galvanize","1104":"Breathe Fire","1200":"Perseverance","1201":"Molten Perseverance","1202":"Kindled Flurry","1203":"Warcry","1204":"Morne's Rage","1205":"Spin Bash","1206":"Galvanize","1207":"Quake","1208":"Call to Stone","1300":"Charge","1301":"Falling Bolt","1302":"Pacify","1303":"Shield Splitter","1304":"Steady Chant","1305":"Unleash Dragon","1306":"Charge","1307":"Charge","1308":"Lightning Charge","1309":"Kindled Charge","1310":"Charge","1311":"Spin Sweep","1312":"Hurl Spear","1313":"Ember","1314":"Lothric War Banner","1400":"Spin Sweep","1401":"Chain Spin","1402":"Champion's Charge","1404":"Punitive Flame","1405":"Warcry","1406":"Charge","1407":"Perseverance","1408":"Wind Wheel","1409":"Mad King's Folly","1500":"Neck Swipe","1502":"Frost","1504":"Elfriede's Stance","1600":"Impact","1601":"Flame Whip","1700":"Quickstep","1701":"Flame Whirlwind","1702":"Lifedrain","1703":"Perseverance","1800":"Leaping Slash","1801":"Quickstep","1802":"Quickstep","1803":"Raptor Flurry","1900":"Rapid Fire","1901":"Puncture","1902":"Pharis Triple-shot","1903":"Darkmoon Arrow","1904":"Unseen Arrow","2000":"Puncturing Arrow","2001":"Puncturing Arrow","2002":"Pierce Earth","2101":"Tackle","2102":"Quickstep","2103":"Repeat Fire","2200":"Steady Chant","2201":"Steady Chant","2202":"Poison Spores","2203":"Steady Chant","2204":"Chant from the Depths","2205":"Feasting Branch","2300":"Unfaltering Prayer","2301":"Gentle Prayer","2302":"Combustion","2303":"Unfaltering Prayer","2304":"Unfaltering Prayer","2305":"Awakening","2306":"Pray for Favor","2400":"Combustion","2401":"Parting Flame","2500":"Quickstep","2600":"Spin Slash","2700":"Spin Slash","2701":"Spin Slash","2720":"Dancer's Grace","2800":"Onislayer","2900":"Charge","3000":"Chain Spin","3100":"Spin Bash","3200":"Shield Bash","3201":"Shield Strike","3300":"Shield Bash","3301":"Moan","3310":"Stone Flesh","3320":"Wheel of Fate","3321":"Dragon Roar","3330":"Lockout","3400":"Shield Bash","3401":"Dragon Breath"},"TalkParam":{"22000000":"It's a blade of God. -- 神の姿に刃するものよ","22000001":"My name is Gwindlin. -- 我が名はグウィンドリン","22000002":"Thy profane shall never be forgiven. -- 汝の不敬は、決して許されるものではない","22000003":"The night of Anole Rondo is good. -- アノール・ロンドの夜に果てるがよい","22000100":"A profane person... -- 不敬者が…","22000101":"Not only the appearance of the princess, Susu to the grave of the great... -- 王女の姿のみならず、大王の墓所まで穢すとは…","22000102":"In the shade of the sun, in the name of Gwindlin -- 陰の太陽、グウィンドリンの名において","22000103":"Never think you'll be forgiven! -- 決して、許されるものと思うなよ!","22000200":"The profane who was born in the dark... -- 闇に生まれた不敬者が…","22000201":"To you, The Curse of eternity... -- 貴様に、永遠の呪いを…","22000300":"Stop. -- 止まりなさい","22000301":"Beyond this, the tomb of the Great Gwin -- これより先は、大王グウィンの墓所","22000302":"No one is allowed to Susu this. -- 何人であれ、これを穢すことは許されない","22000500":"Good went back. The Sword of the Dark Moon. -- よくぞ戻った。暗月の剣よ","22000600":"Good, dark Moon sword. -- よいだろう、暗月の剣よ","22000800":"The stupid... -- 愚かな…","22000900":"The sun in the shadows. -- 陰の太陽の信徒よ","22000901":"Good came here and heard my voice -- よくぞここに至り、我の声を聞いた","22000902":"Thou shalt be my pledge and be a sword to hunt the enemies of God. -- 汝、我の誓約者となり神の敵を狩る剣となる","22000903":"The shadow of my father Gwin and elder sister Gwynevia -- 我が父グウィンと、姉グウィネヴィアの陰となり","22000904":"If you are prepared to be a sword to hunt the enemies of God -- 神の敵を狩る、剣となる覚悟があるならば","22001000":"May Then thou shall be the Sword of the Dark Moon. -- よろしい。ならば、汝はこれより暗月の剣となる","22001001":"The shadow of the sun, the power of the Dark Moon, will hunt the enemy of God. -- 陰の太陽、暗月の力もて、神の敵を狩るがよい","22001100":"That's good. -- それもよい","22001101":"But then we intersect. -- だが、ならば我らは交わらぬ","22001102":"Leave here and do thy work. -- ここを去り、汝のつとめを果たすがよい"},"ThrowDirectionSfxParam":{},"ThrowParam":{"100":"back PC → PC -- 背面 PC→PC","101":"Paris pc → PC -- パリィ PC→PC","107000":"Back PC → Skeleton -- 背面 PC→スケルトン","110400":"Back PC → dead -- 背面 PC→亡者","111000":"Back PC → dead soldier -- 背面 PC→亡者兵士","111050":"Back PC → dead soldier (Large) -- 背面 PC→亡者兵士(大)","111100":"Back PC → Dark Knight -- 背面 PC→ダークナイト","111200":"Back PC → dead Knight -- 背面 PC→亡者騎士","111500":"Back PC → dead Shi -- 背面 PC→亡者僧兵","111800":"Back PC → Skeleton frontier -- 背面 PC→スケルトン辺境","111900":"Back PC → dead priest Knight -- 背面 PC→亡者僧騎士","112000":"Back PC → dwarf people -- 背面 PC→矮小人","112100":"Back PC → Blue -- 背面 PC→ブルー","112200":"Back PC → Resurrection -- 背面 PC→よみがえり","112300":"Back PC → Missionary -- 背面 PC→宣教師","112400":"Back PC → Poor dead -- 背面 PC→貧民亡者","112500":"Back PC → Poor dead elite -- 背面 PC→貧民亡者エリート","112800":"Back PC → New Ojo Knights -- 背面 PC→新王城騎士","112900":"Back PC → Ojo Deb -- 背面 PC→王城デブ","113000":"Back PC → Black Knight -- 背面 PC→黒騎士","113400":"Back PC → dead wax -- 背面 PC→蝋の死人","113700":"Back PC → Crucifixion dead b -- 背面 PC→磔亡者B","113900":"Rear PC → Snake man assassin -- 背面 PC→蛇人の暗殺者","114100":"Back PC → Silver Knight -- 背面 PC→銀騎士","114400":"Back PC → pilgrimage dead -- 背面 PC→巡礼亡者","120300":"Back PC → Salivan Reaper -- 背面 PC→サリヴァーンの死神","131700":"Back PC → Dark Wraith -- 背面 PC→ダークレイス","152200":"Back PC → cardinal (long) -- 背面 PC→枢機卿団(長)","152210":"Back PC → cardinal (deb) -- 背面 PC→枢機卿団(デブ)","152220":"Back PC → cardinal (tall) -- 背面 PC→枢機卿団(のっぽ)","152230":"Back PC → cardinal (normal) -- 背面 PC→枢機卿団(通常)","210400":"Paris PC → dead -- パリィ PC→亡者","210701":"Paris PC → Skeleton -- パリィ PC→スケルトン","211000":"Paris PC → dead soldier -- パリィ PC→亡者兵士","211050":"Paris PC → dead soldier (Large) -- パリィ PC→亡者兵士(大)","211100":"Paris PC → Dark Knight -- パリィ PC→ダークナイト","211200":"Paris PC → dead Knight -- パリィ PC→亡者騎士","211500":"Paris PC → dead Shi -- パリィ PC→亡者僧兵","211800":"Paris PC → Skeleton Frontier -- パリィ PC→スケルトン辺境","211900":"Paris PC → dead Priest Knight -- パリィ PC→亡者僧騎士","212000":"Paris PC → dwarf people -- パリィ PC→矮小人","212100":"Paris PC → Blue -- パリィ PC→ブルー","212300":"Paris PC → Missionary -- パリィ PC→宣教師","212400":"Paris PC → Poor dead -- パリィ PC→貧民亡者","212500":"Paris PC → Poor dead elite -- パリィ PC→貧民亡者エリート","212600":"Paris PC → Poor dead servant -- パリィ PC→貧民亡者下男","212800":"Paris PC → New Ojo Knight -- パリィ PC→新王城騎士","213000":"Paris PC → Black Knight -- パリィ PC→黒騎士","213400":"Paris PC → dead Wax -- パリィ PC→蝋の死人","213900":"Paris PC → Snake man assassin -- パリィ PC→蛇人の暗殺者","213910":"Paris PC → Snake Assassin (Large) -- パリィ PC→蛇人の暗殺者(大)","214100":"Paris PC → Silver Knight -- パリィ PC→銀騎士","214400":"Paris PC → Pilgrimage dead -- パリィ PC→巡礼亡者","220300":"Paris PC → Salivan's death -- パリィ PC→サリヴァーンの死神","221600":"Paris PC → What you call caries (small) -- パリィ PC→蝕を呼ぶもの(小)","231700":"Paris PC → Dark Wraith -- パリィ PC→ダークレイス","252200":"Paris PC → cardinal (long) -- パリィ PC→枢機卿団(長)","252210":"Paris PC → cardinal (deb) -- パリィ PC→枢機卿団(デブ)","252220":"Paris PC → cardinal (tall) -- パリィ PC→枢機卿団(のっぽ)","252230":"Paris PC → cardinal (normal) -- パリィ PC→枢機卿団(通常)","410700":"Paris new skeleton → PC throwing -- パリィ 新スケルトン→PC 投げ","413900":"Paris Assassin (shorty) → PC throwing -- パリィ 蛇人の暗殺者(ショーテル)→PC 投げ","505000":"Wolf → PC throwing -- ウルフ→PC 投げ","505110":"Segunda → PC throwing -- グンダ→PC 投げ","505111":"Segunda (snake spirits possession) → PC throwing -- グンダ(蛇霊憑き)→PC 投げ","510900":"Dead soldier: Segunda state → PC throwing -- 亡者兵士:グンダ状態→PC 投げ","511000":"Dead soldier: Dagger → PC throwing -- 亡者兵士:短剣→PC 投げ","511310":"caries slugs → PC throwing -- 蝕ナメクジ→PC 投げ","511312":"Caries slug (dead dumpling) → PC throwing -- 蝕ナメクジ(亡者団子)→PC 投げ","512000":"Dwarf person → PC throwing -- 矮小人→PC 投げ","512100":"Blue → PC throwing -- ブルー→PC 投げ","512200":"Resurrection → PC throwing -- よみがえり→PC 投げ","512300":"Missionary → PC throwing -- 宣教師→PC 投げ","512400":"Poor dead (bi-stiletto) → PC throwing -- 貧民亡者(双小剣)→PC 投げ","513200":"Crystal Elders → PC throwing -- 結晶の古老→PC 投げ","513600":"Crucifixion dead A → PC throwing -- 磔亡者A→PC 投げ","513910":"Snake man Assassin (kusarigama) → PC throwing -- 蛇人の暗殺者(鎖鎌)→PC 投げ","520400":"Hungry jack (small) → PC throwing -- はらぺこジャック(小)→PC 投げ","520600":"Resurrection (main body) → PC throwing -- よみがえり(本体)→PC 投げ","520800":"Dead dog (maggots belly) → PC throwing -- 亡者犬(蛆腹)→PC 投げ","521200":"Mimic hug → PC toss -- ミミック 抱きつく→PC 投げ","521201":"Mimic jumped → PC throwing -- ミミック 飛びつき→PC 投げ","521202":"Mimic back bit → PC throwing -- ミミック 背面噛み付き→PC 投げ","521203":"Mimic mimicry 1 → PC throwing -- ミミック 擬態1→PC 投げ","521204":"Mimic mimicry 2 → PC throwing -- ミミック 擬態2→PC 投げ","521300":"Wriggles carrion → PC fall Throw -- 蠢く腐肉→PC 落下時投げ","521301":"Wriggles carrion → PC fell down crowded throw -- 蠢く腐肉→PC 倒れこみ投げ","522000":"Sand worm → PC throwing -- サンドワーム→PC 投げ","522010":"Sand worm (parent) → PC throwing -- サンドワーム(親)→PC 投げ","522300":"New Shing → PC throwing (front judgment) -- 新獄吏→PC 投げ(正面判定)","522301":"New Shing → PC throw (back judgment) -- 新獄吏→PC 投げ(背面判定)","522500":"Tindalos → PC throwing -- ティンダロス→PC 投げ","522700":"Stench Crab → PC toss -- 死臭蟹→PC 投げ","530201":"Golem → Throw from the PC probe -- ゴーレム→PC 探りからの投げ","530210":"Golem (Large) → PC throwing -- ゴーレム(大)→PC 投げ","530400":"Observer → PC thrower -- 監視者→PC 投げ","530800":"Butterfly of caries → PC throwing -- 蝕の蝶→PC 投げ","531700":"Dark Wraith → PC Toss -- ダークレイス→PC 投げ","550100":"King of the Storm → PC throwing -- 嵐の王→PC 投げ","551400":"The old king of caries → PC throwing -- 蝕の老王→PC 投げ","551800":"Colossus → PC throwing -- 巨像→PC 投げ","552400":"Moonlight Witch → PC throwing -- 月光の魔女→PC 投げ","552700":"Tracker → PC throwing -- 追跡者→PC 投げ","552701":"Tracker Hu → PC throwing -- 追跡者HU→PC 投げ","620400":"PC → Hungry Jack (small) Large throw -- PC→はらぺこジャック(小) 大型投げ","622500":"PC → Tindalos Large Throw -- PC→ティンダロス 大型投げ","630200":"PC → Golem Large Throw -- PC→ゴーレム 大型投げ","630500":"PC → Ash daemon Large throw -- PC→灰のデーモン 大型投げ","631100":"PC → large spider throw of caries -- PC→蝕の蜘蛛 大型投げ","631200":"PC → Sacred beast Large throw of forest -- PC→森の霊獣 大型投げ","650300":"PC → Storm King (cowgirl) Large throw -- PC→嵐の王(騎乗) 大型投げ","651200":"PC → Snake spirit large throw -- PC→蛇霊 大型投げ","652500":"PC → Prince of Darkness big throw -- PC→闇の双皇子 大型投げ","652600":"PC → Mad Warrior Hallec Large Throw -- PC→狂戦士ハレック 大型投げ","652700":"PC → tracker Large Throw -- PC→追跡者 大型投げ"},"ToughnessParam":{"1":"Generic parameters for enemies -- 敵用の汎用パラメータ","10":"Generic: 1.0 x -- 汎用:1.0倍","15":"Versatile: 1.5 x -- 汎用:1.5倍","20":"Generic: 2.0 X -- 汎用:2.0倍","25":"General Purpose: 2.5 x -- 汎用:2.5倍","30":"Generic: 3.0 x -- 汎用:3.0倍","100":"Attack: one hand: weak -- 攻撃:片手:弱","101":"Attack: one hand: weak: Minimum warranty -- 攻撃:片手:弱:最低保障","110":"Attack: one hand: Strong -- 攻撃:片手:強","111":"Attack: one hand: strong: Minimum security -- 攻撃:片手:強:最低保障","120":"Attack: one hand: Strong Max Infuser -- 攻撃:片手:強MAX溜め","121":"Attack: one hand: Strong max Infuser: Minimum security -- 攻撃:片手:強MAX溜め:最低保障"},"UpperArmParam":{},"WeaponGenParam":{"0":"Fushikure. -- ふしくれたえだ","90000":"[Prototyping] Torches -- 【プロト用】松明","91000":"[Prototyping] Orb -- 【プロト用】オーブ","201000":"Long Sword -- ロングソード","1450000":"Shield -- 盾"},"WepAbsorpPosParam":{"0":"Test -- test","1":"Dmy -- dmy","2":"Dmy -- dmy","3":"Dmy -- dmy","4":"Dmy -- dmy","5":"Dmy -- dmy","6":"Dmy -- dmy","7":"Dmy -- dmy","8":"Dmy -- dmy","9":"Dmy -- dmy","10":"Dmy -- dmy","11":"Dmy -- dmy","12":"Dmy -- dmy","13":"Dmy -- dmy","14":"Dmy -- dmy","15":"Dmy -- dmy","16":"Dmy -- dmy","17":"Dmy -- dmy","18":"Dmy -- dmy","19":"Dmy -- dmy","20":"Dagger (normal) -- 短剣(通常)","21":"Dagger (piercing) -- 短剣(刺突)","22":"Dagger (throwing) -- 短剣(投擲)","23":"Straight Sword (normal) -- 直剣(通常)","24":"Straight Sword -- 直剣(刺突)","25":"Straight Sword (Large) -- 直剣(大型)","26":"Straight Sword (huge) -- 直剣(巨大)","27":"Piercing Swords (normal) -- 刺剣(通常)","28":"Song Sword (normal) -- 曲剣(通常)","29":"Song Sword (Sword) -- 曲剣(刀)","30":"Axe (normal) -- 斧(通常)","31":"Axe (throwing) -- 斧(投擲)","32":"Axe (Large) -- 斧(大型)","33":"Mallet (normal) -- 槌(通常)","34":"Hammer (Piercing) -- 槌(刺突)","35":"Mallet (Large) -- 槌(大型)","36":"Spear (normal) -- 槍(通常)","37":"Spear (throwing) -- 槍(投擲)","38":"Rod-like (slashing) -- 竿状(斬撃)","39":"Rod-like (puncture) -- 竿状(刺突)","40":"Rod-like compound -- 竿状(複合)","41":"Catalysts (normal) -- 触媒(通常)","42":"Fist (normal) -- 拳(通常)","43":"Fist (slashing) -- 拳(斬撃)","44":"Bow (small) -- 弓(小型)","45":"Large bow -- 弓(大型)","46":"Crossbow (normal) -- 弩(通常)","47":"Large Shield -- 盾(大型)","48":"Shield (small) -- 盾(小型)","49":"Torch (Proto) -- 松明(プロト)"},"WetAspectParam":{"1":"Water wet -- 水濡れ","2":"Poison Wet -- 毒濡れ","3":"Oil wet -- 油濡れ","4":"Mud Stains -- 泥汚れ","5":"Sand Dust -- 砂埃","6":"Freezing -- 凍結","7":"Covered with wax -- 蝋まみれ","8":"Frostbite -- 凍傷","9":"(Preliminary 1) -- (予備1)","10":"(Preliminary 2) -- (予備2)","11":"(Preliminary 3) -- (予備3)"},"WhiteSignCoolTimeParam":{},"Wind":{"0":"For testing -- テスト用","10":"General Environment Wind (weak) -- 汎用環境風(弱)","11":"General environment Wind (medium) -- 汎用環境風(中)","12":"General Environment Wind (strong) -- 汎用環境風(強)","50000":"General-Purpose one shot wind (weak) -- 汎用ワンショット風(弱)","50001":"General-Purpose one shot wind (medium) -- 汎用ワンショット風(中)","50002":"General-Purpose one shot wind (strong) -- 汎用ワンショット風(強)","100000":"Map Placement Collision -- マップ配置用コリジョン","120100000":"M20_01 start part (after door open) -- m20_01スタート部(扉OPEN後)","120100001":"m20_01 Start Room-Ohashi -- m20_01スタート部屋~大橋","120100002":"M20_01 Ohashi -- m20_01大橋","120100003":"M20_01 Orphanage -- m20_01孤児院前","120100004":"M20_01 Orphanage Armpit -- m20_01孤児院脇","120100005":"M20_01 Orphanage Passage (after window destruction) -- m20_01孤児院通路(窓破壊後)","120100006":"M20_01 Orphanage Hall -- m20_01孤児院ホール","120100007":"M20_01 Orphanage Terrace -- m20_01孤児院テラス","120100008":"M20_01 Orphanage-Basilica Terrace -- m20_01孤児院~聖堂テラス","120100009":"M20_01 Cathedral Terrace -- m20_01聖堂テラス","120100010":"m20_01 Basilica -- m20_01聖堂前","120100011":"M20_01 boss Front passage (after door open) -- m20_01ボス前通路(扉OPEN後)","120100012":"M20_01 Boss Room -- m20_01ボス部屋","120150000":"M20_01 a small door and blow it -- m20_01小扉開けて吹き込む","120150001":"M20_01 Open the big door and breathe -- m20_01大扉開けて吹き込む","120150002":"m20_01 Windows Blow broken -- m20_01窓壊れて吹き込む","120150003":"M20_01 Boss appearance production wind -- m20_01ボス登場演出風","129100000":"M29 boss Stairs 20 ° Wind -- m29 ボス前階段20°の風","191040000":"M91_04 Yamagishi Style -- m91_04 山岸風","200000000":"Test (Tae Style) -- テスト用(TAE風)","200000010":"General character style (weak) -- 汎用キャラ風(弱)","200000011":"General character style (medium) -- 汎用キャラ風(中)","200000012":"General character style (strong) -- 汎用キャラ風(強)","200000100":"Pc_ Front _ Wind -- PC_正面_風","200000101":"Pc_ Left _ Wind -- PC_左前_風","200000102":"Pc_ Right _ Wind -- PC_右前_風","200000103":"Pc_ left after _ wind -- PC_左後_風","200000104":"Pc_ right after _ wind -- PC_右後_風","200000810":"Pc_ bodies _ before _ wind -- PC_体_前_ 風","200000811":"Pc_ bodies _ after _ winds -- PC_体_後_風","200000812":"Pc_ Bodies _ left _ winds -- PC_体_左_風","200000813":"Pc_ Bodies _ right _ winds -- PC_体_右_風","200000814":"Test for debugging -- デバック用テスト","200001000":"Player collision body for SFX interference -- SFX干渉用プレイヤーコリジョン_ボディ","200001010":"SFX interference player collision right arm -- SFX干渉用プレイヤーコリジョン_右腕","200001020":"SFX interference player collision left arm -- SFX干渉用プレイヤーコリジョン_左腕","200001030":"SFX interference player collision right foot -- SFX干渉用プレイヤーコリジョン_右足","200001040":"The left foot of the player collision for SFX interference -- SFX干渉用プレイヤーコリジョン_左足","200001050":"SFX Interference player collision Weapon (Common) -- SFX干渉用プレイヤーコリジョン_武器(共通)","350000100":"Parish Chief _ front _ Wind -- 教区長_正面_風","350000101":"Parish Warden _ Before the Wind -- 教区長_左前_風","350000102":"Parish Chief _ right _ winds -- 教区長_右前_風","350000103":"Parish Warden _ After left _ winds -- 教区長_左後_風","350000104":"Parish Warden _ right after winds -- 教区長_右後_風","350000810":"Parish Chief _ Body _ before _ Wind -- 教区長_体_前_ 風","350000811":"Parish Warden _ After body _ winds -- 教区長_体_後_風","350000812":"Parish Chief _ Body _ left _ Wind -- 教区長_体_左_風","350000813":"Parish Chief _ Body _ right _ winds -- 教区長_体_右_風","350000900":"Parish Chief _ Feet -- 教区長_足元"}} \ No newline at end of file +{ + "ActionButtonParam": { + "0": "Test 0 -- テスト0", + "1": "Test One -- テスト1", + "1000": "Regain The Lost Life -- 失ったライフを取り戻す", + "1010": "Take a Life -- ライフをとる", + "1020": "Read Tombstone -- 墓碑を読む", + "2000": "Read a letter (summons) -- 手紙を読む(召喚)", + "2001": "Read a letter (summon red sign) -- 手紙を読む(赤サイン召喚)", + "2010": "Check your letter (summons) -- 自分の手紙を確認する(召喚)", + "3000": "Read the letter (blood character) -- 手紙を読む(血文字)", + "3010": "Check your letters (blood letters) -- 自分の手紙を確認する(血文字)", + "4000": "Pick up Items -- アイテムを拾う", + "4100": "They take a relic -- 遺物をとる", + "4110": "They take a relic -- 遺物をとる", + "4200": "They take a memento -- 遺品をとる", + "4300": "They take a treasure -- 宝物をとる", + "4400": "Ok -- OK", + "5000": "Rise Up a ladder -- はしごをのぼる", + "5010": "Hiccup The Ladder -- はしごをおりる", + "6000": "Talk -- 話しかける", + "6001": "Skip Conversation -- 会話スキップ", + "6100": "Light a bonfire -- 篝火を灯す", + "6101": "They rest in bonfire -- 篝火で休息する", + "7100": "Open Doors _ General purpose -- 扉を開ける_汎用", + "7101": "Open Doors _ General-purpose 101 standards -- 扉を開ける_汎用 101基準", + "7110": "Close the door _ generic -- 扉を閉める_汎用", + "7200": "Open the door _ generic (disabled guest) -- 扉を開ける_汎用(ゲスト無効)", + "8000": "Open Treasure Chest -- 宝箱を開ける", + "8010": "Open Treasure Chest -- 宝箱を開ける", + "8100": "Lift Open the Door -- 扉を開ける_持ち上げ", + "8200": "Start a gimmick -- 仕掛けを起動する", + "8300": "Launch lever -- レバーを起動", + "8310": "Ojo 1 vertical lever to launch lever -- レバーを起動 王城1縦レバー", + "8500": "Entering the wall of Light (test) -- 光の壁に入る(テスト)", + "8501": "Entering the wall of Light (test 2) -- 光の壁に入る(テスト2)", + "8900": "Pull out a sword from the Segunda grave -- グンダの墓標から剣を抜く", + "8901": "Pull a sword from the Segunda Grave 2 -- グンダの墓標から剣を抜く2", + "8910": "Simple Bonfire message -- 簡易篝火のメッセージ", + "8920": "Behind the door open -- 扉を開ける_裏側", + "9000": "For events -- イベント用", + "9010": "FDP Play kneel for events _ the evil spirits -- イベント用 FDPプレイアブル版_邪霊に跪く", + "9011": "FDP play for events seal the evil spirits -- イベント用 FDPプレイアブル版_邪霊を封印", + "9100": "Warp from the event base -- イベント用 拠点からのワープ", + "9101": "Warp from event base to Las Boss -- イベント用 拠点からラスボスへのワープ", + "9200": "Examining (for basilica brought) -- 調べる(聖堂蹴落とし用)", + "9300": "M37_ Anole Revolving Bridge _ Lever (right) -- m37_アノール回転橋_レバー(右側)", + "9301": "M37_ Anole Revolving Bridge _ Lever (left) -- m37_アノール回転橋_レバー(左側)", + "9320": "M38 (right) -- m38 廃都 バリスタ 回転レバー(右側)", + "9321": "M38 (left) -- m38 廃都 バリスタ 回転レバー(左側)", + "9330": "M33 Poison swamp forest fire Jigitai -- m33 毒沼の森 火継ぎ台", + "9400": "Messenger Tombstone (not ignited) -- メッセンジャー墓石(未点火)", + "9401": "Messenger Tombstone (already ignited) * Text difference -- メッセンジャー墓石(点火済)※テキスト違い", + "9410": "Messenger Tombstone (not ignited) -- メッセンジャー墓石(未点火)", + "9411": "Messenger Tombstone (already ignited) * Text difference -- メッセンジャー墓石(点火済)※テキスト違い", + "9997": "Find out (Ojo 1 saloon) -- 調べる(王城1大広間)", + "9999": "Inspect (for City/bridge warp obj) -- 調べる(街/橋ワープOBJ(仮)用)", + "3000250": "For the treasure corpse that broke from the vase -- 壺から壊した宝死体用", + "3001800": "Entering the wall of light (Ojo 1 Full Armor Beast) -- 光の壁に入る(王城1 フルアーマー獣)", + "3001830": "Entering the wall of light (Ojo 1 dragon) -- 光の壁に入る(王城1 竜の御使い)", + "3001890": "Entering the wall of Light (Ojo 1 E3 version Tracker) -- 光の壁に入る(王城1 E3版追跡者)", + "3011800": "Entering the wall of Light (Ojo 2 Dragon's Guardian Knight) -- 光の壁に入る(王城2 竜の守護騎士)", + "3100000": "Should probably rely to servant -- 下男にオンブしてもらう", + "3101800": "Entering the wall of Light (city) -- 光の壁に入る(街)", + "3201800": "Entering the wall of Light (bridge _ The nest of a flying dragon) -- 光の壁に入る(橋_飛竜の巣)", + "3201850": "Entering the wall of Light (bridge _ on the bridge) -- 光の壁に入る(橋_橋の上)", + "3301800": "Entering the wall of light (Poison swamp forest) -- 光の壁に入る(毒沼の森)", + "3301850": "Entering the wall of light (elders of the Forest of poisonous swamp crystals) -- 光の壁に入る(毒沼の森 結晶の古老)", + "3411830": "Entering the wall of Light (Ojo 2) -- 光の壁に入る(王城2 闇の双皇子)", + "3411860": "Entering the wall of Light (Ojo 2) -- 光の壁に入る(王城2 闇の双皇子 完全体)", + "3501800": "Entering the wall of Light (Basilica Church _ Cardinal) -- 光の壁に入る(聖堂教会_枢機卿団)", + "3501850": "Entering the wall of Light (Basilica Church _ Rosalia) -- 光の壁に入る(聖堂教会_ロザリア)", + "3601800": "Entering the wall of the light (God's Tomb _ the Angel of the Dragon) -- 光の壁に入る(神墓_竜の御使い)", + "3701800": "Entering the wall of light (Anole _ Saliva) -- 光の壁に入る(アノール_サリヴァ―ン)", + "3701850": "Entering the wall of Light (anole _ landmark Church) -- 光の壁に入る(アノール_ランドマーク教会)", + "3801800": "Entering the wall of light (disused city _ Hallec) -- 光の壁に入る(廃都_ハレック)", + "3801830": "Entering the wall of light (waste city _ sand Worm) -- 光の壁に入る(廃都_サンドワーム)", + "3801860": "Entering the wall of light (disused city _ the demon of Ashes) -- 光の壁に入る(廃都_灰のデーモン)", + "3901800": "Entering the wall of Light (Dungeon) -- 光の壁に入る(地下牢)", + "4001800": "Entering the wall of Light (base) -- 光の壁に入る(拠点)", + "4001830": "Entering the wall of Light (base) -- 光の壁に入る(拠点)", + "4001860": "Entering the wall of light (stronghold _ Russ Boss) -- 光の壁に入る(拠点_ラスボス)", + "9990800": "Entering the wall of Light (test) -- 光の壁に入る(テスト)" + }, + "AiSoundParam": { + "0": "Default (do not edit) -- デフォルト(編集しない)", + "1": "Walk -- 歩き", + "2": "Run -- 走り", + "3": "Dash -- ダッシュ", + "4": "Rolling -- ローリング", + "5": "Landing -- 着地", + "6": "A covert walk -- 隠密歩き", + "7": "Covert Run -- 隠密走り", + "8": "Object Destruction -- オブジェクト破壊", + "1000": "Walk -- 歩き", + "1010": "Run -- 走り", + "1020": "Dash -- ダッシュ", + "1030": "Rolling -- ローリング", + "1040": "Minimal landing -- 着地(極小)", + "1050": "Small landing -- 着地(小)", + "1060": "Normal landing -- 着地(普通)", + "1070": "Large Landing -- 着地(大)", + "2000": "Small attack sound -- 攻撃音小", + "2010": "During the attack sound -- 攻撃音中", + "2020": "Attack music -- 攻撃音大", + "2030": "Attack Sound Oversized -- 攻撃音特大", + "2100": "Attack Sound Small -- 攻撃発生音小", + "2110": "In the sound of an attack -- 攻撃発生音中", + "2120": "Attack music -- 攻撃発生音大", + "2200": "Attack sound small (normal sound) -- 攻撃音小(通常音)", + "3000": "Object Destruction Sound Small -- オブジェクト破壊音小", + "3010": "Object Breaking Sound -- オブジェクト破壊音中", + "3020": "Object Destruction Music -- オブジェクト破壊音大", + "4000": "Wake Up Sound -- 起きろ音", + "4010": "Buddy Call Sound: Medium -- 仲間呼び音:中", + "4020": "Companions Call Sound: Small -- 仲間呼び音:小", + "5000": "Anxious Sound One -- 気になる音1", + "6000": "Companion: Dead Soldier lantern -- 仲間呼び:亡者兵士ランタン", + "9002": "Mate call Test: Blue -- 仲間呼びテスト:ブルー", + "9003": "Unused -- 未使用", + "9004": "Per bullet -- 弾丸当たり", + "9005": "Per wall -- 壁当たり", + "9006": "Soul Coins -- ソウルコイン", + "9007": "Hallucinations -- 幻聴", + "9008": "Allure -- アラーム" + }, + "AtkParam_Npc": { + "0": "[System] Dummy bullets -- 【システム】ダミー弾", + "1": "[System] Dummy bullets (do not hit the characters) -- 【システム】ダミー弾(キャラにヒットしない)", + "4": "【 system 】 Disabled attack [common] -- 【システム】無効攻撃【共通】", + "5": "Dummy attack to keep out bullets -- 弾を出し続ける ダミー攻撃", + "10": "Ten pre LV1 small damage -- テンプレ LV1 小ダメージ", + "11": "Ten Pre LV2 damage -- テンプレ LV2 中ダメージ", + "12": "Ten pre LV3 large damage -- テンプレ LV3 大ダメージ", + "13": "Ten pre LV4 吹tsu飛bimasu (Large) -- テンプレ LV4 吹っ飛び(大)", + "14": "Ten Pre LV5 Press -- テンプレ LV5 押し", + "15": "Ten Pre LV6 damage -- テンプレ LV6 叩きつけダメージ", + "16": "Ten pre LV7 吹tsu飛bimasu (small) -- テンプレ LV7 吹っ飛び(小)", + "17": "Ten pre LV8 minimal damage -- テンプレ LV8 極小ダメージ", + "18": "Ten Pre lv9 damage -- テンプレ LV9 かち上げダメージ", + "19": "Ten pre LV10 吹tsu飛bimasu (oversized) -- テンプレ LV10 吹っ飛び(特大)", + "20": "Ten Pre lv11 Breath -- テンプレ LV11 ブレス", + "21": "Ten pre Guard -- テンプレ ガード", + "22": "Guard for ten pre Paris -- テンプレ パリィ用ガード", + "23": "Ten Pre Paris throw -- テンプレ パリィ投げ", + "24": "Ten pre-throw -- テンプレ 背面投げ", + "25": "Ten pre Paris -- テンプレ パリィ", + "26": "Paritest -- パリィテスト", + "101": "Npc_test1 -- NPC_test1", + "102": "Npc_test2 -- NPC_test2", + "103": "Npc_test3 -- NPC_test3", + "104": "Npc_test4_ Guard -- NPC_test4_ガード", + "105": "Npc_test5_ Big Attack -- NPC_test5_大攻撃", + "106": "Npc_test6_ Shield attack -- NPC_test6_盾攻撃", + "107": "Npc_test7_ attack -- NPC_test7_突進攻撃", + "200": "Drop RADIUS 1m -- 落下 半径1m", + "201": "吹tsu飛bimasu (weak) Radius 1m -- 吹っ飛び(弱) 半径1m", + "202": "吹tsu飛bimasu (strong) Radius 1m -- 吹っ飛び(強) 半径1m", + "2000": "Tomb King Demon Space attack -- 墓王 魔空間攻撃", + "3000": "Common attack [feet, large damage, human type] -- 共通攻撃【足元・大ダメージ・人型】", + "3001": "Common attack [center, large damage, human type] -- 共通攻撃【中心・大ダメージ・人型】", + "3002": "Common attack [feet, small damage, human type] -- 共通攻撃【足元・小ダメージ・人型】", + "3003": "Common attack [Center, small damage, human type] -- 共通攻撃【中心・小ダメージ・人型】", + "3010": "Common attack [Center, no damage, human type] -- 共通攻撃【中心・ダメージなし・人型】", + "3011": "Common attack [back, no damage, human type] -- 共通攻撃【背中・ダメージなし・人型】", + "3012": "Common attack [belly, no damage, human type] -- 共通攻撃【お腹・ダメージなし・人型】", + "3013": "Common attack [step, no damage, human type] -- 共通攻撃【足元・ダメージなし・人型】", + "3020": "Common attack [right hand, ladder damage, human type] -- 共通攻撃【右手・梯子ダメージ・人型】", + "3021": "Common attack [left hand, ladder damage, human type] -- 共通攻撃【左手・梯子ダメージ・人型】", + "3022": "Common attack [right foot, ladder damage, human type] -- 共通攻撃【右足・梯子ダメージ・人型】", + "3023": "Common attack [left leg, ladder damage, human type] -- 共通攻撃【左足・梯子ダメージ・人型】", + "3100": "Common attack [feet, large damage, large] -- 共通攻撃【足元・大ダメージ・大型】", + "3101": "Common attack [center, large damage, large] -- 共通攻撃【中心・大ダメージ・大型】", + "3102": "Common attack [feet, small damage, large] -- 共通攻撃【足元・小ダメージ・大型】", + "3103": "Common attack [Center, small damage, large] -- 共通攻撃【中心・小ダメージ・大型】", + "3110": "Common attack [Center, no damage, large] -- 共通攻撃【中心・ダメージなし・大型】", + "3111": "Common attack [back, no damage, large] -- 共通攻撃【背中・ダメージなし・大型】", + "3112": "Common attack [belly, no damage, large] -- 共通攻撃【お腹・ダメージなし・大型】", + "3113": "Common attack [foot, no damage, large] -- 共通攻撃【足元・ダメージなし・大型】", + "3120": "Common attack [right hand, no damage, obj no big, large] -- 共通攻撃【右手・ダメージなし・OBJダメ大・大型】", + "3121": "Common attack [left, no damage, obj no big, large] -- 共通攻撃【左手・ダメージなし・OBJダメ大・大型】", + "3122": "Common attack [right leg, no damage, obj no big, large] -- 共通攻撃【右足・ダメージなし・OBJダメ大・大型】", + "3123": "Common attack [left foot, no damage, obj no big, large] -- 共通攻撃【左足・ダメージなし・OBJダメ大・大型】", + "3130": "Common attack [right, no damage, obj, no small, large] -- 共通攻撃【右手・ダメージなし・OBJダメ小・大型】", + "3131": "Common attack [left, no damage, obj no small, large] -- 共通攻撃【左手・ダメージなし・OBJダメ小・大型】", + "3132": "Common attack [right leg, no damage, obj no small, large] -- 共通攻撃【右足・ダメージなし・OBJダメ小・大型】", + "3133": "Common attack [left foot, no damage, obj no small, large] -- 共通攻撃【左足・ダメージなし・OBJダメ小・大型】", + "5100": "Ojo 1 Ball of caries -- 蝕の王城1 大玉", + "5110": "Ojo 1 Bonfires of caries -- 蝕の王城1 焚火", + "5120": "Ojo 1 Carpet burning of caries -- 蝕の王城1 絨毯燃焼", + "5130": "Ojo one companion tone of caries -- 蝕の王城1 仲間呼び音", + "5300": "Arrows, disused city -- 廃都 火矢", + "6000": "Return of poison blood for human type -- 毒の返り血_人型用", + "7000": "FDP Proto explosive Tal -- FDPプロト 爆発タル", + "9900": "FDP proto-Oil jar -- FDPプロト 油壷", + "9902": "FDP proto-oil jar (obj generation) -- FDPプロト 油壷(Obj発生)", + "9910": "FDP Proto Flame Bottle -- FDPプロト 火炎瓶", + "9920": "FDP proto-map oil x Flame -- FDPプロト マップ油×炎", + "9930": "FDP proto Flame Continuous damage -- FDPプロト 炎上継続ダメージ", + "9950": "FDP Concept combustion test -- FDPコンセプト 燃焼テスト", + "11900": "C1190_ dead Priest (Gray Tome + Large Shield) _ miracles and attacks -- c1190_亡者僧騎士(グレートメイス+大盾)_奇跡・攻撃", + "11901": "C1190_ dead Monk Knight (Gray Tome + Large shield) _ Crossbow -- c1190_亡者僧騎士(グレートメイス+大盾)_クロスボウ", + "31200": "Sacred Beast of c3120_ Forest: Common Attack _ underfoot -- c3120_森の霊獣:共通攻撃_足元", + "51100": "c5120_ Segunda _ heat-up caries breath -- c5120_グンダ_ヒートアップ蝕ブレス", + "51800": "Common attack [Butt dragged/c5180 cursed Colossus] -- 共通攻撃【尻引きずり・c5180呪われた巨像】", + "52700": "Common attack [Movement (right leg)/c5270 tracker] -- 共通攻撃【移動(右脚)・c5270追跡者】", + "52701": "Common attack [movement (left leg)/c5270 tracker] -- 共通攻撃【移動(左脚)・c5270追跡者】", + "111000": "c1110_ Dark Knight (Straight Sword) _ Slashing 1 -- c1110_ダークナイト(直剣)_斬撃1", + "111001": "c1110_ Dark Knight (straight Blade) _ Slashing 2 -- c1110_ダークナイト(直剣)_斬撃2", + "111002": "c1110_ Dark Knight (Straight Sword) _ slashing 3 -- c1110_ダークナイト(直剣)_斬撃3", + "111003": "c1110_ Dark Knight (Straight Sword) _ Finish technique -- c1110_ダークナイト(直剣)_フィニッシュ技", + "111004": "c1110_ Dark Knight (Straight sword) _ strong slashing, single-shot -- c1110_ダークナイト(直剣)_強斬撃・単発", + "111005": "c1110_ Dark Knight (Straight sword) _ Strong slashing Combo -- c1110_ダークナイト(直剣)_強斬撃・コンボ", + "111006": "c1110_ Dark Knight (Straight Sword) _ Shield Bash -- c1110_ダークナイト(直剣)_シールドバッシュ", + "111007": "c1110_ Dark Knight (Straight sword) _ Distance packed attack (long) -- c1110_ダークナイト(直剣)_距離詰め攻撃(長)", + "111008": "c1110_ Dark Knight (Straight Sword) _ distance-packed attack (short) -- c1110_ダークナイト(直剣)_距離詰め攻撃(短)", + "111009": "c1110_ Dark Knight (Straight sword) _ strong slashing and whack second stage -- c1110_ダークナイト(直剣)_強斬撃・薙ぎ2段目", + "111010": "c1110_ Dark Knight (Straight Sword) _ Weak slashing 1 -- c1110_ダークナイト(直剣)_弱斬撃1", + "111011": "c1110_ Dark Knight (Straight Sword) _ Weak slashing 2 -- c1110_ダークナイト(直剣)_弱斬撃2", + "111012": "c1110_ Dark Knight (Straight Sword) _ Weak slashing 3 -- c1110_ダークナイト(直剣)_弱斬撃3", + "111013": "c1110_ Dark Knight (Straight Sword) _ Whack attack behind -- c1110_ダークナイト(直剣)_背後への薙ぎ攻撃", + "1070010": "c1070_ new Skeleton: Song Sword _ slashing One -- c1070_新スケルトン:曲剣_斬撃1", + "1070020": "c1070_ new Skeleton: Song Sword _ slashing 2 -- c1070_新スケルトン:曲剣_斬撃2", + "1070030": "c1070_ new Skeleton: Song Sword _ slashing 3 -- c1070_新スケルトン:曲剣_斬撃3", + "1070040": "c1070_ new Skeleton: Song Sword _ strong Slash -- c1070_新スケルトン:曲剣_強斬り", + "1070050": "c1070_ new Skeleton: Song Sword _ Spinning attack -- c1070_新スケルトン:曲剣_回転攻撃", + "1070060": "c1070_ new Skeleton: Song Sword _ Back step slash -- c1070_新スケルトン:曲剣_バックステップ斬り", + "1070070": "c1070_ new Skeleton: Song Sword _ the first stage -- c1070_新スケルトン:曲剣_助走斬り(一段目)", + "1070080": "c1070_ new Skeleton: Song Sword _ the Two -- c1070_新スケルトン:曲剣_助走斬り(二段目)", + "1070090": "c1070_ New skeleton: Throw -- c1070_新スケルトン:投げる", + "1070100": "c1070_ new Skeleton: Song Sword _ Song Sword 3 Step slashing (1 ~ two) -- c1070_新スケルトン:曲剣_曲剣 3段斬撃(一~二段目)", + "1070110": "c1070_ new Skeleton: Song Sword _ Song Sword 3 Step Slashing (SANDANME) -- c1070_新スケルトン:曲剣_曲剣 3段斬撃(三段目)", + "1070120": "c1070_ New skeleton: A masterpiece Sword _ slashing One -- c1070_新スケルトン:大曲剣_斬撃1", + "1070130": "c1070_ new Skeleton: Masterpiece Sword _ slashing 2 -- c1070_新スケルトン:大曲剣_斬撃2", + "1070140": "c1070_ New skeleton: A masterpiece Sword _ slashing Three -- c1070_新スケルトン:大曲剣_斬撃3", + "1070150": "c1070_ new skeleton: a sword -- c1070_新スケルトン:大曲剣_強斬り", + "1070160": "c1070_ New skeleton: A masterpiece Sword _ Nagi ① -- c1070_新スケルトン:大曲剣_なぎ払い①", + "1070170": "c1070_ New skeleton: A masterpiece Sword _ Nagi ② -- c1070_新スケルトン:大曲剣_なぎ払い②", + "1070180": "c1070_ New skeleton: A masterpiece Sword _ a dive attack -- c1070_新スケルトン:大曲剣_飛び込み攻撃", + "1070190": "c1070_ New skeleton: A masterpiece Sword _ a dive attack (long distance) -- c1070_新スケルトン:大曲剣_飛び込み攻撃(長距離)", + "1070200": "c1070_ new skeleton: A sword in the first stage -- c1070_新スケルトン:大曲剣_助走斬り(一段目)", + "1070210": "c1070_ new skeleton: A sword in the two -- c1070_新スケルトン:大曲剣_助走斬り(二段目)", + "1070220": "c1070_ new skeleton: Boat Sword -- c1070_新スケルトン:大曲剣_いなし斬り", + "1070230": "c1070_ new Skeleton: Masterpiece Sword _ Bow Fire -- c1070_新スケルトン:大曲剣_弓射撃", + "1070240": "c1070_ new skeleton: A sword with an arrow -- c1070_新スケルトン:大曲剣_矢で刺す", + "1070500": "c1070_ new skeleton: to guard -- c1070_新スケルトン:ガードする", + "1070510": "c1070_ New skeleton: Paridamage -- c1070_新スケルトン:パリィダメージ", + "1070520": "c1070_ New skeleton: Paris -- c1070_新スケルトン:パリィする", + "1090010": "c1090: Dead Soldier: Segunda _ crushing Combo in arms 1-1 -- c1090:亡者兵士:グンダ状態_腕で叩き潰す コンボ1-1", + "1090020": "c1090: Dead Soldier: Segunda State _ bite with consecutive 1_ head combo 2-1 -- c1090:亡者兵士:グンダ状態_連続で噛み付く1_頭 コンボ2-1", + "1090030": "c1090: Dead Soldier: Segunda State _ Saigi with left hand -- c1090:亡者兵士:グンダ状態_左手で薙ぎ払い", + "1090040": "c1090: Dead Soldier: Segunda State _ Saigi: Arms _ Arms Combo 1-2 -- c1090:亡者兵士:グンダ状態_薙ぎ払い:腕_腕 コンボ1-2", + "1090041": "c1090: Dead Soldier: Segunda State _ Saigi: Arms _ head Combo 1-2 -- c1090:亡者兵士:グンダ状態_薙ぎ払い:腕_頭 コンボ1-2", + "1090050": "c1090: Dead Soldier: Segunda State _ Face Attack _ Head combo 1-3 -- c1090:亡者兵士:グンダ状態_顔攻撃_頭 コンボ1-3", + "1090060": "c1090: Dead Soldier: Segunda State _ Bite 2_ Head Combo in succession 2-2 -- c1090:亡者兵士:グンダ状態_連続で噛み付く2_頭 コンボ2-2", + "1090070": "c1090: Dead Soldier: Segunda _ rushes _ head -- c1090:亡者兵士:グンダ状態_突進_頭", + "1090071": "c1090: Dead Soldier: Segunda _ lunge _ Arms -- c1090:亡者兵士:グンダ状態_突進_腕", + "1090080": "c1090: Dead Soldier: Segunda State _ behind attack -- c1090:亡者兵士:グンダ状態_背後攻撃", + "1090100": "c1090: Dead Soldier: Segunda State _ Segunda comes out _ head -- c1090:亡者兵士:グンダ状態_グンダが出てくる_頭", + "1090101": "c1090: Dead Soldier: Segunda State _ Segunda comes out _ arms -- c1090:亡者兵士:グンダ状態_グンダが出てくる_腕", + "1090102": "c1090: Dead Soldier: Segunda State _ Segunda comes out _ tails -- c1090:亡者兵士:グンダ状態_グンダが出てくる_尻尾", + "1100100": "C1100_ dead Soldiers _ Straight Swords _ right-hand swing -- c1100_亡者兵士_直剣_右手振り下ろし", + "1100101": "C1100_ dead Soldiers _ Straight Swords _ right-hand crosscut -- c1100_亡者兵士_直剣_右手切り返し", + "1100102": "C1100_ dead Soldiers _ Straight Swords _ right-hand thrusts (swords) -- c1100_亡者兵士_直剣_右手突き(剣)", + "1100110": "C1100_ dead Soldiers _ Straight Swords _ dash thrusts -- c1100_亡者兵士_直剣_ダッシュ突き", + "1100120": "C1100_ dead Soldiers _ straight swords _ shields pushed -- c1100_亡者兵士_直剣_盾プッシュ", + "1100130": "C1100_ dead Soldier _ Straight Sword _ two-handed slash -- c1100_亡者兵士_直剣_両手斬り", + "1100140": "C1100_ dead Soldiers _ straight Swords _ poked -- c1100_亡者兵士_直剣_突き", + "1100150": "C1100_ dead Soldiers _ Straight Swords _ Reversed this morning -- c1100_亡者兵士_直剣_逆けさ連続斬り", + "1100151": "C1100_ dead Soldiers _ Straight Swords _ reverse this morning's second row -- c1100_亡者兵士_直剣_逆けさ連続斬り 2段目", + "1100200": "C1100_ Dead Soldier _ spear _ poked combo first Hammer -- c1100_亡者兵士_槍_突きコンボ初撃", + "1100201": "C1100_ Dead Soldier _ spear _ thrusting combo second firing -- c1100_亡者兵士_槍_突きコンボ2撃目", + "1100210": "C1100_ Dead Soldiers _ spears _ infuser Thrusts -- c1100_亡者兵士_槍_溜め突き", + "1100220": "C1100_ Dead Soldiers _ spears _ Nagi -- c1100_亡者兵士_槍_なぎ払い", + "1100230": "C1100_ Dead Soldiers _ spears _ dash Thrusts -- c1100_亡者兵士_槍_ダッシュ突き", + "1100240": "C1100_ Dead Soldiers _ spear _ shields Push -- c1100_亡者兵士_槍_盾プッシュ", + "1100241": "C1100_ Dead Soldiers _ spear _ Shield Push _ Accelerated part -- c1100_亡者兵士_槍_盾プッシュ_加速部分", + "1100250": "C1100_ Dead Soldiers _ spears _ Lash One -- c1100_亡者兵士_槍_ラッシュ1", + "1100251": "C1100_ Dead Soldiers _ spears _ Rush 2 -- c1100_亡者兵士_槍_ラッシュ2", + "1100252": "C1100_ Dead Soldiers _ spears _ Rush 3 -- c1100_亡者兵士_槍_ラッシュ3", + "1100300": "C1100_ dead Soldier _ Broken Straight Sword _ right hand swing down -- c1100_亡者兵士_折れた直剣_右手振り下ろし", + "1100310": "C1100_ dead soldiers _ Broken Straight swords _ left Kesa -- c1100_亡者兵士_折れた直剣_左袈裟", + "1100320": "C1100_ dead soldiers _ Broken Straight swords _ handle Beats -- c1100_亡者兵士_折れた直剣_柄殴り", + "1100330": "C1100_ dead soldiers _ Broken Straight Swords _ rush first Stage -- c1100_亡者兵士_折れた直剣_ラッシュ1段目", + "1100331": "C1100_ dead soldiers _ Broken Straight Swords _ rush second Stage -- c1100_亡者兵士_折れた直剣_ラッシュ2段目", + "1100332": "C1100_ dead soldiers _ Broken Straight Swords _ rush third Stage -- c1100_亡者兵士_折れた直剣_ラッシュ3段目", + "1100333": "C1100_ dead soldiers _ Broken Straight Swords _ rush fourth Stage -- c1100_亡者兵士_折れた直剣_ラッシュ4段目", + "1100334": "C1100_ dead soldiers _ Broken Straight Swords _ rush fifth stage -- c1100_亡者兵士_折れた直剣_ラッシュ5段目", + "1100335": "C1100_ dead soldiers _ Broken Straight Swords _ rush sixth stage -- c1100_亡者兵士_折れた直剣_ラッシュ6段目", + "1100340": "C1100_ dead soldiers _ Broken Straight swords _ leapt -- c1100_亡者兵士_折れた直剣_飛びかかり", + "1100500": "C1100_ Dead Soldier _ dagger _ successive slash 1 -- c1100_亡者兵士_短剣_連続斬り1", + "1100501": "C1100_ Dead Soldier _ dagger _ successive slash 2 -- c1100_亡者兵士_短剣_連続斬り2", + "1100502": "C1100_ Dead Soldier _ dagger _ successive slash 3 -- c1100_亡者兵士_短剣_連続斬り3", + "1100510": "C1100_ Dead Soldiers _ daggers _ leapt (medium-range) -- c1100_亡者兵士_短剣_飛びかかり(中距離)", + "1100520": "C1100_ Dead Soldiers _ daggers _ leapt (FAR) -- c1100_亡者兵士_短剣_飛びかかり(遠距離)", + "1100530": "C1100_ Dead Soldiers _ daggers _ Small Depression & continuous slash first stage -- c1100_亡者兵士_短剣_小踏み込み&連続斬り1段目", + "1100531": "C1100_ Dead Soldiers _ daggers _ Small Depression & continuous slash second stage -- c1100_亡者兵士_短剣_小踏み込み&連続斬り2段目", + "1100540": "C1100_ Dead Soldiers _ daggers _ combo 2-1 thrusts -- c1100_亡者兵士_短剣_コンボ2-1 突き", + "1100550": "C1100_ Dead Soldiers _ daggers _ Baxta Thrusts (strong thrusts) -- c1100_亡者兵士_短剣_バクスタ突き(強突き)", + "1100551": "C1100_ Dead Soldier _ dagger _ tossed -- c1100_亡者兵士_短剣_投げ", + "1100700": "C1100_ Dead Soldiers _ guards -- c1100_亡者兵士_ガード", + "1100710": "C1100_ Dead Soldiers _ Guard (weak) -- c1100_亡者兵士_ガード(弱)", + "1100800": "C1100_ Dead Soldiers _ bows _ usually arrows -- c1100_亡者兵士_弓_通常矢", + "1100801": "C1100_ Dead Soldiers _ bows _ arrows -- c1100_亡者兵士_弓_火矢", + "1100810": "C1100_ dead Soldiers _ oil pots -- c1100_亡者兵士_油壺", + "1100820": "C1100_ dead Soldiers _ flame Pots -- c1100_亡者兵士_火炎壺", + "1105010": "C1105_ dead Soldier (Large) _ axe _ Swung down: Right tilted single-shot -- c1105_亡者兵士(大)_斧_振り下ろし:右ななめ単発", + "1105011": "C1105_ dead Soldier (Large) _ axe _ shaken down: Left tilted first stage -- c1105_亡者兵士(大)_斧_振り下ろし:左ななめ一段目", + "1105012": "C1105_ dead Soldier (Large) _ axe _ Swung down: right tilted two -- c1105_亡者兵士(大)_斧_振り下ろし:右ななめ二段目", + "1105020": "C1105_ dead Soldier (Large) _ axe _ Swing Down: Depression & timing Difference -- c1105_亡者兵士(大)_斧_振り下ろし:踏み込み&タイミング違い", + "1105030": "C1105_ dead Soldier (Large) _ ax _ steep approaching & swinging down -- c1105_亡者兵士(大)_斧_急接近&振り下ろし", + "1105040": "C1105_ dead Soldier (Large) _ axe _ Tilted sideways Sugu -- c1105_亡者兵士(大)_斧_思いきり横に薙ぐ", + "1105050": "C1105_ dead Soldier (Large) _ axe _ Saigi to right (for combo) -- c1105_亡者兵士(大)_斧_右に薙ぎ払い(コンボ用)", + "1105051": "C1105_ dead Soldier (Large) _ axe _ Saigi to left (for combo) -- c1105_亡者兵士(大)_斧_左に薙ぎ払い(コンボ用)", + "1105060": "C1105_ dead Soldier (Large) _ axe _ Right side payment -- c1105_亡者兵士(大)_斧_右側面払い", + "1105061": "C1105_ dead Soldier (Large) _ axe _ left side pay -- c1105_亡者兵士(大)_斧_左側面払い", + "1105070": "C1105_ dead Soldier (Large) _ ax _ Nagi from right to left -- c1105_亡者兵士(大)_斧_右から左になぎ払う", + "1105110": "C1105_ dead Soldier (Large) _ Saigi _ Hal Bird -- c1105_亡者兵士(大)_ハルバード_薙ぎ払い", + "1105111": "C1105_ dead Soldier (Large) _ Hal Bird _ Inverted Saigi -- c1105_亡者兵士(大)_ハルバード_逆薙ぎ払い", + "1105120": "C1105_ dead Soldier (Large) _ Hull Bird _ butting in: lingering forward -- c1105_亡者兵士(大)_ハルバード_突き:余韻で進む", + "1105130": "C1105_ dead Soldier (Large) _ Hull bird _ Swing down: Go down in the afterglow -- c1105_亡者兵士(大)_ハルバード_振り下ろす:余韻で下がる", + "1105140": "C1105_ dead Soldier (Large) _ Hal Bird _ Steep approaching Saigi: drops in Afterglow -- c1105_亡者兵士(大)_ハルバード_急接近薙ぎ払い:余韻で下がる", + "1105150": "C1105_ dead Soldier (Large) _ Hull Bird _ extruded -- c1105_亡者兵士(大)_ハルバード_押し出し", + "1105160": "C1105_ dead Soldier (Large) _ Hal Bird _ Strong Saigi -- c1105_亡者兵士(大)_ハルバード_強薙ぎ払い", + "1120010": "Straight Sword: Stepping Down (Combo ① 1) -- 直剣:踏み込み斬り下ろし(コンボ①1)", + "1120020": "Straight Sword: Stepping Left → right Saigi (combo ① 2) -- 直剣:踏み込み左→右薙ぎ払い(コンボ①2)", + "1120030": "Straight Sword: Depression deadline (Combo ① 3) -- 直剣:踏み込み〆突き(コンボ①3)", + "1120040": "Straight Sword: Left Shiri (Combo ② 1) -- 直剣:左袈裟斬り(コンボ②1)", + "1120050": "Straight Sword: Depression fast thrust 1 (Combo ② 2) -- 直剣:踏み込み高速突き1(コンボ②2)", + "1120060": "Straight Sword: Depression fast thrust 2 (Combo ② 3) -- 直剣:踏み込み高速突き2(コンボ②3)", + "1120070": "Straight Sword: Stepping Down (Large) (Combo ② 4) -- 直剣:踏み込み斬り下ろし(大)(コンボ②4)", + "1120080": "Straight Sword: Stepping Left → right Saigi (single) -- 直剣:踏み込み左→右薙ぎ払い(単発)", + "1120090": "Straight Sword: Rush Butt -- 直剣:突進突き", + "1120100": "Straight Sword: Shield bash -- 直剣:シールドバッシュ", + "1120200": "Halle Byrd: Guard Butt 1 (Combo ① 1) -- ハルバード:ガード突き1(コンボ①1)", + "1120210": "Halle Bird: Guard Butt 2 (Combo ① 2) -- ハルバード:ガード突き2(コンボ①2)", + "1120220": "Halle Byrd: Stepping Infuser (Combo ① 3) -- ハルバード:踏み込み溜め突き(コンボ①3)", + "1120230": "Saigi: Depression Right → Left (combo ② 1) -- ハルバード:踏み込み右→左薙ぎ払い(コンボ②1)", + "1120240": "Saigi: Stepping Left → right (combo ② 2) -- ハルバード:踏み込み左→右薙ぎ払い(コンボ②2)", + "1120250": "Halle Bird: Long distance thrust -- ハルバード:遠距離突き", + "1120260": "Halle Bird: The Butt -- ハルバード:溜突き", + "1120270": "Hal Bird: Slapping Down -- ハルバード:叩きおろし", + "1120280": "Halle Bird: Rush Butt -- ハルバード:突進突き", + "1120290": "Halle Byrd: Shield bash -- ハルバード:シールドバッシュ", + "1130000": "Caries slug: Bit -- 蝕ナメクジ:噛み付き", + "1130020": "Caries slug: Arm throwing transition attack -- 蝕ナメクジ:腕投げ遷移攻撃", + "1130021": "Caries slug: arm throwing pressure damage -- 蝕ナメクジ:腕投げ圧迫ダメージ", + "1130050": "Caries Slugs: landing -- 蝕ナメクジ:着地", + "1130700": "Caries slug: caries vomiting -- 蝕ナメクジ:蝕吐き", + "1130800": "Caries slugs: caries accumulation -- 蝕ナメクジ:蝕溜まり", + "1132010": "Caries slug: Arm throwing transition attack -- 蝕ナメクジ:腕投げ遷移攻撃", + "1132011": "Caries slug: arm throwing pressure damage -- 蝕ナメクジ:腕投げ圧迫ダメージ", + "1150100": "C1150_ dead Shi (mace + Large shield) _ Kesa beating 1 -- c1150_亡者僧兵(メイス+大盾)_袈裟殴り1", + "1150110": "C1150_ dead Shi (mace + Large shield) _ Kesa beating 2 -- c1150_亡者僧兵(メイス+大盾)_袈裟殴り2", + "1150120": "C1150_ dead Shi (mace + Large Shield) _ Sidewise 1 (one-shot) -- c1150_亡者僧兵(メイス+大盾)_横殴り1(単発)", + "1150130": "C1150_ dead Shi (mace + Large Shield) _ Sidewise 1 (combo) -- c1150_亡者僧兵(メイス+大盾)_横殴り1(コンボ)", + "1150140": "C1150_ dead Shi (mace + Large Shield) _ Sidewise 2 -- c1150_亡者僧兵(メイス+大盾)_横殴り2", + "1150150": "C1150_ dead Shi (mace + Large shield) _ knocked back against -- c1150_亡者僧兵(メイス+大盾)_叩き付け", + "1150160": "C1150_ dead Shi (mace + Large shield) _ Shield Bash -- c1150_亡者僧兵(メイス+大盾)_シールドバッシュ", + "1150200": "C1150_ dead Shi (both hand-held hammers) _ Sidewise 1 -- c1150_亡者僧兵(両手持ちハンマー)_横殴り1", + "1150210": "C1150_ dead Shi (both hand-held hammers) _ Sidewise 2 -- c1150_亡者僧兵(両手持ちハンマー)_横殴り2", + "1150220": "C1150_ dead Shi (both hand-held hammers) _ grated -- c1150_亡者僧兵(両手持ちハンマー)_振りおろし", + "1150230": "C1150_ dead Shi (both hand-held hammers) _ lateral swinging 1 -- c1150_亡者僧兵(両手持ちハンマー)_横振り回し1", + "1150240": "C1150_ dead Shi (both hand-held hammers) _ Lateral swinging 2 -- c1150_亡者僧兵(両手持ちハンマー)_横振り回し2", + "1150250": "C1150_ dead Shi (both hand-held hammers) _ a swing from shakes -- c1150_亡者僧兵(両手持ちハンマー)_振りかぶりからの振りおろし", + "1150300": "C1150_ dead Shi (Ice-Ax) _ Kesa cut 1 -- c1150_亡者僧兵(ピッケル)_袈裟切り1", + "1150310": "C1150_ dead Shi (Ice-Ax) _ Kesa Cut 2 -- c1150_亡者僧兵(ピッケル)_袈裟切り2", + "1150320": "C1150_ dead Shi (Ice-ax) _ Intense shaking off (combo) -- c1150_亡者僧兵(ピッケル)_強烈振り降ろし(コンボ)", + "1150330": "C1150_ dead Shi (Ice-ax) _ Intense shaking off (single-shot) -- c1150_亡者僧兵(ピッケル)_強烈振り降ろし(単発)", + "1150340": "C1150_ dead Shi (Ice-Ax) _ Sidewise -- c1150_亡者僧兵(ピッケル)_横殴り", + "1150350": "C1150_ dead Shi (Ice-Ax) _ Sidewise A (grated 1 derived) -- c1150_亡者僧兵(ピッケル)_横殴りA(振りおろし1派生)", + "1150360": "C1150_ dead Shi (Ice-Ax) _ Sidewise B (sidewise 1 derived) -- c1150_亡者僧兵(ピッケル)_横殴りB(横殴り1派生)", + "1150370": "C1150_ dead Shi (Ice-ax) _ Swinging from shakes -- c1150_亡者僧兵(ピッケル)_振りかぶりからの振りおろし", + "1170010": "Right hand: Rounding up -- 右手:切り上げ", + "1170011": "Right hand: Sword down -- 右手:斬り下ろし", + "1170012": "Right hand: Vertical rotation Sword down -- 右手:縦回転斬り下ろし", + "1170020": "Right hand: Shiri -- 右手:袈裟斬り", + "1170021": "Right hand: Butt -- 右手:突き", + "1170030": "Right hand: Slalom Slash -- 右手:大回転斬り", + "1170040": "Rolling down the derived sword -- ローリング派生斬り下ろし", + "1170050": "Rush (stage) -- ラッシュ(初段)", + "1170060": "Shield Bash -- シールドバッシュ", + "1170070": "Rolling -- ローリング", + "1170100": "c1170_ Skeleton Warrior A: Guard -- c1170_スケルトン戦士A:ガード", + "1170110": "Both hands: Right → left Saigi -- 両手:右→左薙ぎ払い", + "1170120": "Both hands: Shiri -- 両手:袈裟斬り", + "1170130": "Both hands: Tamenuri Left → right Saigi -- 両手:溜左→右薙ぎ払い", + "1170200": "Shooting -- 射撃", + "1170201": "Shooting (for combo) -- 射撃(コンボ用)", + "1180010": "C1180: Frontier Skeleton (Shorty) _ Whack: Wait -- c1180:辺境スケルトン(ショーテル)_薙ぎ:待機", + "1180020": "C1180: Frontier Skeleton (Shorty) __ Reverse whack: whack posture -- c1180:辺境スケルトン(ショーテル)__逆薙ぎ:薙ぎ姿勢", + "1180030": "C1180: Frontier Skeleton (Shorty) _ Jump Whack: reverse whack posture -- c1180:辺境スケルトン(ショーテル)_ジャンプ薙ぎ:逆薙ぎ姿勢", + "1180040": "C1180: Frontier Skeleton (Shorty) _ Reverse Kesa: Whack stance -- c1180:辺境スケルトン(ショーテル)_逆袈裟:薙ぎ姿勢", + "1180050": "C1180: Frontier Skeleton (Shorty) _ Stepping down -- c1180:辺境スケルトン(ショーテル)_踏み込み斬り下ろし", + "1180060": "C1180: Frontier Skeleton (Shorty) _ Thrust: Swing down posture -- c1180:辺境スケルトン(ショーテル)_突き:振り下ろし姿勢", + "1180070": "C1180: Frontier Skeleton (Shorty) _ Revolving Payment: Thrust posture -- c1180:辺境スケルトン(ショーテル)_回転払い:突き姿勢", + "1180080": "C1180: Frontier Skeleton (Shorty) _ Step Whack -- c1180:辺境スケルトン(ショーテル)_ステップ薙ぎ", + "1180090": "C1180: Frontier Skeleton (Shorty) _ Reverse Whack: standing posture -- c1180:辺境スケルトン(ショーテル)_逆薙ぎ:待機姿勢", + "1180100": "C1180: Frontier Skeleton (Shorty) _ Grated: depression Small -- c1180:辺境スケルトン(ショーテル)_振りおろし:踏み込み小", + "1180110": "C1180: Frontier Skeleton (Shorty) _ Revolving Payment -- c1180:辺境スケルトン(ショーテル)_回転払い", + "1180120": "C1180: Frontier Skeleton (Shorty) _ Shield through rake-up -- c1180:辺境スケルトン(ショーテル)_盾貫通すくい上げ", + "1180200": "C1180: Frontier Skeleton (Nitori) _ Two-handed (right) -- c1180:辺境スケルトン(二刀流)_両手払い(右)", + "1180201": "C1180: Frontier Skeleton (Nitori) _ Two-handed (left) -- c1180:辺境スケルトン(二刀流)_両手払い(左)", + "1180210": "C1180: Frontier Skeleton (Nitori) _ one-handed reverse payment (left) -- c1180:辺境スケルトン(二刀流)_片手逆払い(左)", + "1180220": "C1180: Frontier Skeleton (Nitori) _ Rotating one hand and grated (right) -- c1180:辺境スケルトン(二刀流)_回転片手振りおろし(右)", + "1180221": "C1180: Frontier Skeleton (Nitori) _ Rotating one-handed (left) -- c1180:辺境スケルトン(二刀流)_回転片手振りおろし(左)", + "1180230": "C1180: Frontier Skeleton (Nitori) _ Two-handed reverse payment (right) -- c1180:辺境スケルトン(二刀流)_両手逆払い(右)", + "1180231": "C1180: Frontier Skeleton (Nitori) _ Two-handed reverse payment (left) -- c1180:辺境スケルトン(二刀流)_両手逆払い(左)", + "1180240": "C1180: Frontier Skeleton (Nitori) _ Both hand and side grated (right) -- c1180:辺境スケルトン(二刀流)_両手振りおろし(右)", + "1180241": "C1180: Frontier Skeleton (Nitori) _ Both sides grated (left) -- c1180:辺境スケルトン(二刀流)_両手振りおろし(左)", + "1180250": "C1180: Frontier Skeleton (Nitori) _ Yupa Attack (right) -- c1180:辺境スケルトン(二刀流)_ユパ様アタック(右)", + "1180251": "C1180: Frontier Skeleton (Nitori) _ Yupa attack (left) -- c1180:辺境スケルトン(二刀流)_ユパ様アタック(左)", + "1180260": "C1180: Frontier Skeleton (Nitori) _ Both hands rounded up (right) -- c1180:辺境スケルトン(二刀流)_踏み込み両手切り上げ(右)", + "1180261": "C1180: Frontier Skeleton (Nitori) _ Two-handed rounding (left) -- c1180:辺境スケルトン(二刀流)_踏み込み両手切り上げ(左)", + "1180270": "C1180: Frontier Skeleton (Nitori) _ Diving rotation slash (right) -- c1180:辺境スケルトン(二刀流)_飛び込み回転斬り(右)", + "1180271": "C1180: Frontier Skeleton (Nitori) _ Diving rotation slash (left) -- c1180:辺境スケルトン(二刀流)_飛び込み回転斬り(左)", + "1180280": "C1180: Frontier Skeleton (Nitori) _ Left step payment (left) -- c1180:辺境スケルトン(二刀流)_左ステップ払い(左)", + "1180290": "C1180: Frontier Skeleton (Nitori) _ Right Step payment (left) -- c1180:辺境スケルトン(二刀流)_右ステップ払い(左)", + "1180300": "C1180: Frontier Skeleton (Nitori) _ Rush First stage (right) -- c1180:辺境スケルトン(二刀流)_ラッシュ1段目(右)", + "1180310": "C1180: Frontier Skeleton (Nitori) _ Stepping up one hand -- c1180:辺境スケルトン(二刀流)_踏み込み片手斬り上げ", + "1180320": "C1180: Frontier Skeleton (Nitori) _ Rush Second stage (right) -- c1180:辺境スケルトン(二刀流)_ラッシュ2段目(右)", + "1180321": "C1180: Frontier Skeleton (Nitori) _ Second stage of Rush (left) -- c1180:辺境スケルトン(二刀流)_ラッシュ2段目(左)", + "1180330": "C1180: Frontier Skeleton (Nitori) _ Rush Third stage (right) -- c1180:辺境スケルトン(二刀流)_ラッシュ3段目(右)", + "1180331": "C1180: Frontier Skeleton (Nitori) _ Rush Third stage (left) -- c1180:辺境スケルトン(二刀流)_ラッシュ3段目(左)", + "1180340": "C1180: Frontier Skeleton (Nitori) _ Rush Fourth stage (right) -- c1180:辺境スケルトン(二刀流)_ラッシュ4段目(右)", + "1180341": "C1180: Frontier Skeleton (Nitori) _ Rush Fourth stage (left) -- c1180:辺境スケルトン(二刀流)_ラッシュ4段目(左)", + "1180350": "C1180: Frontier Skeleton (Nitori) _ One-handed rounding: depression small -- c1180:辺境スケルトン(二刀流)_片手切り上げ:踏み込み小", + "1180700": "C1180: Frontier Skeletons _ Baxtenife tossed -- c1180:辺境スケルトン_バクステナイフ投げ", + "1180710": "c1180: Frontier Skeleton Knife Throw -- c1180:辺境スケルトンナイフ投げ", + "1180720": "C1180: Frontier Skeleton Step Knife Throw -- c1180:辺境スケルトンステップナイフ投げ", + "1190100": "Gray Tome + Large shield _ grated -- グレートメイス+大盾_振りおろし", + "1190110": "Grey Tome + Large shield _ swinging -- グレートメイス+大盾_振り上げ", + "1190120": "Grey Tome + Large shield _ grated Mei-slash 1 -- グレートメイス+大盾_振りおろしメイスラッシュ1", + "1190121": "Grey Tome + Large shield _ grated mae slash 2 -- グレートメイス+大盾_振りおろしメイスラッシュ2", + "1190130": "Grey Tome + Large Shield _ Saigi 1 -- グレートメイス+大盾_薙ぎ払い1", + "1190140": "Grey Tome + Large Shield _ Saigi 2 -- グレートメイス+大盾_薙ぎ払い2", + "1190150": "Grey Tome + Large shield _ knocked back against -- グレートメイス+大盾_溜めて叩き付け", + "1190160": "Grey Tome + Large shield _ Shield bash -- グレートメイス+大盾_シールドバッシュ", + "1190170": "Gray Tome + Large Shield _ Miracle attack -- グレートメイス+大盾_奇跡・攻撃", + "1190180": "Grey Tome + Large Shield _ Miracle/Recovery -- グレートメイス+大盾_奇跡・回復", + "1190190": "Gray Tome + Large Shield _ Crossbow -- グレートメイス+大盾_クロスボウ", + "1190290": "Grey Tome + Large Shield _ Guard -- グレートメイス+大盾_ガード", + "1190300": "Great Sword _ Saigi 1 -- グレートソード_薙ぎ払い1", + "1190310": "Great Sword _ Saigi 2 (Nagi 1) -- グレートソード_薙ぎ払い2(なぎ払い1から繋がる版)", + "1190320": "Great Sword _ Kesa cut 1 -- グレートソード_袈裟切り1", + "1190330": "Great Sword _ Saigi 3 (Kesa cut 1) -- グレートソード_薙ぎ払い3(袈裟切り1から繋がる版", + "1190340": "Great Sword, stepping round -- グレートソード_踏み込み切り上げ", + "1190350": "Great Sword, stepping round -- グレートソード_踏み込み切り上げ", + "1190360": "From the top of the Great Sword (combo) -- グレートソード_上段からの振りおろし(コンボ)", + "1190370": "Great Sword _ from the top of the Swing (single) -- グレートソード_上段からの振りおろし(単発)", + "1190380": "Great sword before kick: Kick -- グレートソード_前蹴り:蹴り", + "1190381": "Great Sword _ pre-kick: push -- グレートソード_前蹴り:押し", + "1190390": "Great Sword _ head Bud -- グレートソード_ヘッドバッド", + "1190400": "Great Sword _ back Whack -- グレートソード_背面薙ぎ", + "1190410": "Great Sword (combo) -- グレートソード_溜め振りおろし(コンボ)", + "1190420": "Great Sword _ close-up swing -- グレートソード_接近振りおろし", + "1190430": "The Great sword-stepping thrust -- グレートソード_踏み込み突き", + "1190440": "Great Sword _ Saigi (combo) -- グレートソード_薙ぎ払い(コンボ)", + "1190450": "The Great Sword: the second shot -- グレートソード_二連振り下ろし:一撃目", + "1190451": "Great Sword _ Double swing: Second hammer -- グレートソード_二連振り下ろし:二撃目", + "1200100": "c1200_ Dwarf Man (Hatchet/ice-AX) _ Kesa Cut -- c1200_矮小人(ハチェット/ピッケル)_袈裟切り", + "1200110": "c1200_ Dwarf Man (Hatchet/ice-Ax) _ Reverse Kesa cut -- c1200_矮小人(ハチェット/ピッケル)_逆袈裟切り", + "1200120": "c1200_ Dwarf (Hatchet/ice-AX) _ Kannagi -- c1200_矮小人(ハチェット/ピッケル)_横なぎ", + "1200130": "c1200_ Dwarf (Hatchet/ice-AX) _ Swing Down -- c1200_矮小人(ハチェット/ピッケル)_振り下ろし", + "1200140": "c1200_ Dwarf Man (Hatchet/ice-AX) _ Kari attack -- c1200_矮小人(ハチェット/ピッケル)_飛び掛かり攻撃", + "1200150": "c1200_ Dwarf Man (Hatchet/ice-Ax) _ Dash Kari attack -- c1200_矮小人(ハチェット/ピッケル)_ダッシュ飛び掛かり攻撃", + "1200160": "c1200_ Dwarf (Hatchet/ice-AX) _ Dash wielding attack -- c1200_矮小人(ハチェット/ピッケル)_ダッシュ振り回し攻撃", + "1200170": "c1200_ Dwarf Man (Hatchet/ice-Ax) _ Dash back attack -- c1200_矮小人(ハチェット/ピッケル)_ダッシュ後ろ逃げ攻撃", + "1200180": "c1200_ Dwarf (Hatchet/ice-AX) _ Wrap Attack (right) -- c1200_矮小人(ハチェット/ピッケル)_回り込み攻撃(右)", + "1200190": "c1200_ Dwarf Man (Hatchet/ice-Ax) _ Blowgun (1) -- c1200_矮小人(ハチェット/ ピッケル)_吹き矢(1)", + "1200191": "c1200_ Dwarf Man (Hatchet/ice-Ax) _ Blowgun (2) -- c1200_矮小人(ハチェット/ ピッケル)_吹き矢(2)", + "1200210": "c1200_ Dwarf (Hatchet/ice-AX) _ Companions -- c1200_矮小人(ハチェット/ピッケル)_仲間呼び", + "1200220": "c1200_ Dwarf Person (hatchet/ice ax) _ Throwing transition attack -- c1200_矮小人(ハチェット/ピッケル)_投げ遷移攻撃", + "1200240": "c1200_ Dwarf (Hatchet/ice-AX) _ Flame Vase -- c1200_矮小人(ハチェット/ピッケル)_火炎壺", + "1200300": "c1200_ Dwarf (Large sword) _ Lateral Whack 1 -- c1200_矮小人(大剣)_横薙ぎ1", + "1200310": "c1200_ Dwarf Man (large sword) _ Lateral Whack 2 -- c1200_矮小人(大剣)_横薙ぎ2", + "1200320": "c1200_ Dwarf (Large sword) _ Swinging -- c1200_矮小人(大剣)_振り上げ", + "1200330": "c1200_ Dwarf (Large sword) _ Swing Down -- c1200_矮小人(大剣)_振り下ろし", + "1200340": "c1200_ Dwarf (Large sword) _ Extruded attack -- c1200_矮小人(大剣)_押し出し攻撃", + "1200360": "c1200_ Dwarf (Large sword) _ Fall Attack -- c1200_矮小人(大剣)_落下攻撃", + "1200370": "c1200_ Dwarf (Large sword) _ companions called -- c1200_矮小人(大剣)_仲間呼び", + "1200700": "c1200_ Dwarf Man (Hatchet/ice ax) _ Tossed -- c1200_矮小人(ハチェット/ピッケル)_投げ", + "1200999": "c1200_ Dwarf (Large sword) _ Companion call test -- c1200_矮小人(大剣)_仲間呼びテスト", + "1210100": "c1210_ Blue (Spear shield) _ Thrust -- c1210_ブルー(槍盾)_突き", + "1210110": "c1210_ Blue (Spear shield) _ Continuous piercing -- c1210_ブルー(槍盾)_連続突き刺し", + "1210120": "c1210_ Blue (Spear shield) _ Continuous thrusting 2 -- c1210_ブルー(槍盾)_連続突き刺し2", + "1210130": "c1210_ Blue (Spear shield) _ Shield beating -- c1210_ブルー(槍盾)_盾殴り", + "1210140": "c1210_ Blue (Spear shield) _ Thrust -- c1210_ブルー(槍盾)_突き上げ", + "1210150": "c1210_ Blue (Spear shield) _ Rush Butt -- c1210_ブルー(槍盾)_突進突き", + "1210160": "c1210_ Blue (Spear shield) _ Rush attack -- c1210_ブルー(槍盾)_ラッシュ攻撃", + "1210161": "c1210_ Blue (Spear shield) _ Rush attack (last) -- c1210_ブルー(槍盾)_ラッシュ攻撃(最後)", + "1210170": "c1210_ Blue (Spear shield) _ Guard Butt -- c1210_ブルー(槍盾)_ガード突き", + "1210200": "c1210_ Blue (Sword) _ Swing Down -- c1210_ブルー(剣)_振り下ろし", + "1210210": "c1210_ Blue (Sword) _ Thrusting -- c1210_ブルー(剣)_突き", + "1210220": "c1210_ Blue (Sword) _ Scratching -- c1210_ブルー(剣)_引っ掻き", + "1210230": "c1210_ Blue (Sword) _ Stepping Right -- c1210_ブルー(剣)_踏み込み右", + "1210240": "c1210_ Blue (Sword) _ Depression 2-Saigi -- c1210_ブルー(剣)_踏み込み2連薙ぎ払い", + "1210250": "c1210_ Blue (Sword) _ Roundhouse Shiri -- c1210_ブルー(剣)_大振り袈裟斬り", + "1210260": "c1210_ Blue (Sword) _ Kicks -- c1210_ブルー(剣)_蹴り", + "1210270": "c1210_ Blue (Sword) _ a dung-throwing dumpling -- c1210_ブルー(剣)_糞団子投げ", + "1210300": "c1210_ Blue (deep) _ Stepping Thrust -- c1210_ブルー(ディープ)_踏み込み突き刺し", + "1210310": "c1210_ Blue (deep) _ Infuser Thrust -- c1210_ブルー(ディープ)_溜め突き刺し", + "1210320": "c1210_ Blue (deep) _ Move forward and cut down -- c1210_ブルー(ディープ)_前進しながら斬り下ろし", + "1210330": "c1210_ Blue (deep) _ Left → Right roundhouse Saigi -- c1210_ブルー(ディープ)_左→右大振り薙ぎ払い", + "1210340": "c1210_ Blue (deep) _ Poison fog chanting -- c1210_ブルー(ディープ)_毒霧詠唱", + "1210350": "c1210_ Blue (deep) _ Widespread poison fog chanting (may be lost) -- c1210_ブルー(ディープ)_広域猛毒霧詠唱(なくなるかも)", + "1210360": "c1210_ Blue (Deep) _ Estrus-inducing dance -- c1210_ブルー(ディープ)_発情誘発踊り", + "1210390": "c1210_ Blue (deep) _ Ambient Recovery Magic -- c1210_ブルー(ディープ)_周囲回復魔法", + "1210400": "c1210_ Blue (Estrus) _ Right scratching -- c1210_ブルー(発情)_右引っ掻き", + "1210410": "c1210_ Blue (Estrus) _ Left scratching -- c1210_ブルー(発情)_左引っ掻き", + "1210420": "c1210_ Blue (Estrus) _ with a hug -- c1210_ブルー(発情)_抱きつき", + "1210430": "c1210_ Blue (Estrus) _ Hug (from Waiting) -- c1210_ブルー(発情)_抱きつき(待機から)", + "1210440": "c1210_ Blue (Estrus) _ High jump -- c1210_ブルー(発情)_ハイジャンプ", + "1210490": "c1210_ Blue (Estrus) _ Throwing damage -- c1210_ブルー(発情)_投げ時ダメージ", + "1210500": "c1210_ Blue (dog) _ Right scratching -- c1210_ブルー(犬)_右引っ掻き", + "1210510": "c1210_ Blue (dog) _ Left scratching -- c1210_ブルー(犬)_左引っ掻き", + "1210520": "c1210_ Blue (dog) -- c1210_ブルー(犬)_叩きおろし", + "1210530": "c1210_ Blue (dog) _ Lunge -- c1210_ブルー(犬)_突進", + "1210540": "c1210_ Blue (dog) _ Triangular flying scratching -- c1210_ブルー(犬)_三角飛び引っかき", + "1210700": "c1210_ Blue (deep) _ Slow -- c1210_ブルー(ディープ)_鈍足", + "1210710": "c1210_ Blue (Deep) _ Recovery -- c1210_ブルー(ディープ)_回復", + "1210720": "c1210_ Blue (deep) _ Strengthened -- c1210_ブルー(ディープ)_強化", + "1210730": "c1210_ Blue (deep) _ Strengthen ally -- c1210_ブルー(ディープ)_強化味方", + "1210740": "c1210_ Blue (deep) _ Ignition -- c1210_ブルー(ディープ)_発火", + "1210750": "c1210_ Blue (Deep) _ Firing Combo -- c1210_ブルー(ディープ)_発火コンボ", + "1210760": "c1210_ Blue (Deep) _ -- c1210_ブルー(ディープ)_", + "1210770": "c1210_ Blue (Deep) _ Name set later -- c1210_ブルー(ディープ)_名称は後で設定", + "1210780": "c1210_ Blue (Deep) _ Name set later -- c1210_ブルー(ディープ)_名称は後で設定", + "1210999": "c1210_ Blue (Estrus) _ Grab (throw test) -- c1210_ブルー(発情)_掴みかかり(投げテスト)", + "1220010": "Head Butt -- 頭突き", + "1220020": "Spitting Grub -- ウジ吐き", + "1220030": "Maggots spitting _ body appearance -- ウジ吐き_本体出現", + "1220100": "Right whack -- 右手薙ぎ", + "1220110": "Left hand Whack -- 左手薙ぎ", + "1220120": "Throwing start technique (normal) -- 投げ始動技(通常時)", + "1220121": "Throwing start technique (pressure damage) -- 投げ始動技(圧迫ダメージ)", + "1220130": "For Uzi hit effect test -- ウジヒットエフェクトテスト用", + "1230010": "Left hand: Sword down -- 左手:斬り下ろし", + "1230020": "Left hand: Right Saigi -- 左手:左→右薙ぎ払い", + "1230030": "Left hand: Right → Saigi -- 左手:右→左薙ぎ払い", + "1230040": "Left hand: Right Saigi -- 左手:左→右薙ぎ払い", + "1230050": "Right hand: Bible Helmet Split -- 右手:聖書兜割り", + "1230060": "Left hand: Right swing Saigi -- 左手:左→右振り回し薙ぎ払い", + "1230070": "Throwing Start technique -- 投げ始動技", + "1230071": "Continuous damage during throwing -- 投げ時継続ダメージ", + "1230072": "Headed at times continued damage thrown -- 投げ時大継続ダメージ", + "1230080": "Bible Slap -- 聖書ビンタ", + "1230740": "Projection Magic -- 投射魔法", + "1240100": "c1240_ poor Dead (machete): lateral shaking 1 -- c1240_貧民亡者(ナタ):横振り1", + "1240110": "c1240_ poor Dead (machete): lateral shaking 2 -- c1240_貧民亡者(ナタ):横振り2", + "1240120": "c1240_ poor Dead (machete): Lateral swing -- c1240_貧民亡者(ナタ):大振り横振り", + "1240130": "c1240_ poor Dead (machete): the sword Down -- c1240_貧民亡者(ナタ):溜斬り下ろし", + "1240140": "c1240_ poor Dead (machete): Triple Tap -- c1240_貧民亡者(ナタ):3連叩きおろし", + "1240150": "c1240_ poor Dead (machete): both gestures 1 -- c1240_貧民亡者(ナタ):両手振り1", + "1240151": "c1240_ poor Dead (machete): both gestures 2 -- c1240_貧民亡者(ナタ):両手振り2", + "1240300": "C1240_ Poor Dead (dual dagger): Right-hand abdomen Saigi -- c1240_貧民亡者(デュアルダガー):右手腹部薙ぎ払い", + "1240310": "C1240_ Poor Dead (dual dagger): Left hand thrusting a -- c1240_貧民亡者(デュアルダガー):左手突きおろしA", + "1240320": "C1240_ Poor Dead (dual dagger): Left hand grated b -- c1240_貧民亡者(デュアルダガー):左手突きおろしB", + "1240330": "C1240_ Poor Dead (dual dagger): Right hand slash -- c1240_貧民亡者(デュアルダガー):右手斬りおろし", + "1240340": "C1240_ Poor Dead (dual dagger): Both hands simultaneous attack (right) -- c1240_貧民亡者(デュアルダガー):両手同時攻撃(右)", + "1240341": "C1240_ Poor Dead (dual dagger): Both hands simultaneous attack (left) -- c1240_貧民亡者(デュアルダガー):両手同時攻撃(左)", + "1240350": "C1240_ Poor Dead (dual dagger): Rush (1st Stage right) -- c1240_貧民亡者(デュアルダガー):ラッシュ(1段目右)", + "1240351": "C1240_ Poor Dead (dual dagger): Rush (second stage left) -- c1240_貧民亡者(デュアルダガー):ラッシュ(2段目左)", + "1240352": "C1240_ Poor Dead (dual dagger): Rush (third stage right) -- c1240_貧民亡者(デュアルダガー):ラッシュ(3段目右)", + "1240353": "C1240_ Poor Dead (dual dagger): Rush (fourth stage left) -- c1240_貧民亡者(デュアルダガー):ラッシュ(4段目左)", + "1240354": "C1240_ Poor Dead (dual dagger): Rush (5th stage right) -- c1240_貧民亡者(デュアルダガー):ラッシュ(5段目右)", + "1240355": "C1240_ Poor Dead (dual dagger): Rush (sixth stage left) -- c1240_貧民亡者(デュアルダガー):ラッシュ(6段目左)", + "1240360": "C1240_ Poor Dead (dual dagger): Left hand thrust (throwing transition) -- c1240_貧民亡者(デュアルダガー):左手突き刺し(投げ遷移)", + "1240361": "C1240_ Poor Dead (dual dagger): Left hand piercing (throw) -- c1240_貧民亡者(デュアルダガー):左手突き刺し(投げ)", + "1240370": "C1240_ Poor Dead (dual dagger): Jump Attack (left) -- c1240_貧民亡者(デュアルダガー):ジャンプ攻撃(左)", + "1240371": "C1240_ Poor Dead (dual dagger): Jump Attack (right) -- c1240_貧民亡者(デュアルダガー):ジャンプ攻撃(右)", + "1240500": "c1240_ Poor Dead (Hammer): Knocked back against 1 -- c1240_貧民亡者(ハンマー):叩き付け1", + "1240510": "c1240_ Poor Dead (Hammer): Knocked back against 2 -- c1240_貧民亡者(ハンマー):叩き付け2", + "1240520": "c1240_ Poor Dead (Hammer): Kesa slapping -- c1240_貧民亡者(ハンマー):袈裟叩き", + "1240530": "c1240_ Poor Dead (Hammer): Infuser knocked back against -- c1240_貧民亡者(ハンマー):溜め叩き付け", + "1240540": "c1240_ Poor Dead (hammer): Sticking out -- c1240_貧民亡者(ハンマー):突き出し", + "1240600": "C1240_ Poor Dead (Lance): both hand thrusts 1 -- c1240_貧民亡者(ランス):両手突き1", + "1240610": "C1240_ Poor Dead (Lance): both hand thrusts 2 -- c1240_貧民亡者(ランス):両手突き2", + "1240620": "C1240_ Poor Dead (Lance): both hand thrusts 3 -- c1240_貧民亡者(ランス):両手突き3", + "1240630": "C1240_ Poor Dead (Lance): Infuser Butt -- c1240_貧民亡者(ランス):溜め突き", + "1240640": "C1240_ Poor Dead (Lance): Lunge whack -- c1240_貧民亡者(ランス):突進薙ぎ", + "1240650": "C1240_ Poor Dead (Lance): slams -- c1240_貧民亡者(ランス):叩きつけ", + "1240660": "C1240_ Poor Dead (Lance): Added Nagi -- c1240_貧民亡者(ランス):追加なぎ払い", + "1240700": "c1240_ poor Dead (machete): Flame vase -- c1240_貧民亡者(ナタ):火炎壺", + "1240710": "c1240_ poor Dead (machete): Oil pot -- c1240_貧民亡者(ナタ):油壺", + "1250100": "C1250_ Poor Dead Elite _ right Pay -- c1250_貧民亡者エリート_右払い", + "1250110": "C1250_ Poor dead Elite _ left pay -- c1250_貧民亡者エリート_左払い", + "1250120": "c1250_ Poor Dead Elite _1-1 hands Shiri (right) -- c1250_貧民亡者エリート_1-1両手袈裟斬り(右)", + "1250121": "c1250_ Poor Dead Elite _1-1 hands Shiri (left) -- c1250_貧民亡者エリート_1-1両手袈裟斬り(左)", + "1250130": "c1250_ Poor Dead Elite _1-2 hands Saigi (right) -- c1250_貧民亡者エリート_1-2両手薙ぎ払い(右)", + "1250131": "c1250_ Poor Dead Elite _1-2 hands Saigi (left) -- c1250_貧民亡者エリート_1-2両手薙ぎ払い(左)", + "1250140": "c1250_ Poor Dead Elite _1-3 hands Saigi (right) -- c1250_貧民亡者エリート_1-3両手薙ぎ払い(右)", + "1250141": "c1250_ Poor Dead Elite _1-3 hands Saigi (left) -- c1250_貧民亡者エリート_1-3両手薙ぎ払い(左)", + "1250150": "c1250_ Poor Dead Elite _2-1 rounded up -- c1250_貧民亡者エリート_2-1切り上げ", + "1250160": "c1250_ Poor Dead Elite _2-2 Shiri -- c1250_貧民亡者エリート_2-2袈裟斬り", + "1250170": "c1250_ Poor Dead Elite _2-3 Shiri -- c1250_貧民亡者エリート_2-3袈裟斬り", + "1250180": "c1250_ Poor Dead Elite _x (right) -- c1250_貧民亡者エリート_X斬り(右)", + "1250181": "c1250_ Poor dead Elite _x (left) -- c1250_貧民亡者エリート_X斬り(左)", + "1250190": "c1250_ Poor Dead Elite _x (lunge) (right) -- c1250_貧民亡者エリート_X斬り(突進)(右)", + "1250191": "c1250_ Poor Dead Elite _x (lunge) (left) -- c1250_貧民亡者エリート_X斬り(突進)(左)", + "1250200": "C1250_ Poor dead Elite _ hands down (right) -- c1250_貧民亡者エリート_両手斬り下ろし(右)", + "1250201": "C1250_ Poor dead Elite _ hands down (left) -- c1250_貧民亡者エリート_両手斬り下ろし(左)", + "1250230": "C1250_ Poor Dead Elite _ both hand thrusts (right) -- c1250_貧民亡者エリート_両手突き(右)", + "1250231": "C1250_ Poor Dead Elite _ both hand thrusts (left) -- c1250_貧民亡者エリート_両手突き(左)", + "1250240": "C1250_ Poor dead Elite _ left step attack -- c1250_貧民亡者エリート_左ステップ攻撃", + "1250250": "C1250_ Poor Dead Elite _ right-step attack -- c1250_貧民亡者エリート_右ステップ攻撃", + "1250260": "C1250_ Poor Dead Elite _ Ranbu 1-1: Right hand -- c1250_貧民亡者エリート_乱舞1-1:右手", + "1250261": "C1250_ Poor Dead Elite _ Ranbu 1-1: Left hand -- c1250_貧民亡者エリート_乱舞1-1:左手", + "1250270": "C1250_ Poor Dead Elite _ Ranbu 1-2: Right hand -- c1250_貧民亡者エリート_乱舞1-2:右手", + "1250271": "C1250_ Poor Dead Elite _ Ranbu 1-2: Left hand -- c1250_貧民亡者エリート_乱舞1-2:左手", + "1250280": "C1250_ Poor Dead Elite _ Ranbu 1-3: Right hand -- c1250_貧民亡者エリート_乱舞1-3:右手", + "1250281": "C1250_ Poor Dead Elite _ Ranbu 1-3: Left hand -- c1250_貧民亡者エリート_乱舞1-3:左手", + "1250700": "C1250_ Poor Dead Elite _ fire-blowing -- c1250_貧民亡者エリート_火吹き", + "1260100": "C1260_ Poor Dead _ Servant (saws) _1-1 both hand-out 1 -- c1260_貧民亡者_下男(ノコギリ)_1-1両手振り抜き1", + "1260110": "C1260_ Poor Dead _ Servant (saws) _1-2 both hand-out 2 -- c1260_貧民亡者_下男(ノコギリ)_1-2両手振り抜き2", + "1260120": "C1260_ Poor Dead _ Servant (Saws) _ Both hand grated -- c1260_貧民亡者_下男(ノコギリ)_両手振りおろし", + "1260130": "C1260_ Poor Dead _ Servant (SAW) _2-1 hand-grated -- c1260_貧民亡者_下男(ノコギリ)_2-1片手振りおろし", + "1260140": "C1260_ Poor Dead _ Servant (saws) _2-2 Bun -- c1260_貧民亡者_下男(ノコギリ)_2-2ぶん回し", + "1260150": "C1260_ Poor Dead _ Servant (Saws) _ Behind attack -- c1260_貧民亡者_下男(ノコギリ)_背後攻撃", + "1260160": "C1260_ Poor Dead _ Servant (Saws) _ _1 in rush attack -- c1260_貧民亡者_下男(ノコギリ)_ラッシュ攻撃_1段目", + "1260161": "C1260_ Poor Dead _ Servant (Saws) _ Rush Attack _2 -- c1260_貧民亡者_下男(ノコギリ)_ラッシュ攻撃_2段目", + "1260162": "C1260_ Poor Dead _ Servant (Saws) _ _3 in rush attack -- c1260_貧民亡者_下男(ノコギリ)_ラッシュ攻撃_3段目", + "1260163": "C1260_ Poor Dead _ Servant (Saws) _ Lash Attack _ slapping first stage -- c1260_貧民亡者_下男(ノコギリ)_ラッシュ攻撃_叩き1段目", + "1260164": "C1260_ Poor Dead _ Servant (Saws) _ Lash Attack _ slapping second stage -- c1260_貧民亡者_下男(ノコギリ)_ラッシュ攻撃_叩き2段目", + "1260165": "C1260_ Poor Dead _ Servant (Saws) _ Lash Attack _ slapping third stage -- c1260_貧民亡者_下男(ノコギリ)_ラッシュ攻撃_叩き3段目", + "1260180": "C1260_ Poor Dead _ Servant (Saws) _ Poised lunge (beating) -- c1260_貧民亡者_下男(ノコギリ)_構え突進(殴り)", + "1260181": "C1260_ Poor Dead _ Servant (Saws) _ poised lunge (pushing) -- c1260_貧民亡者_下男(ノコギリ)_構え突進(押し)", + "1260190": "C1260_ Poor Dead _ Servant (Saws) _ Pay from right (one hand): wait -- c1260_貧民亡者_下男(ノコギリ)_右から払い(片手):待機", + "1260191": "C1260_ Poor Dead _ Servant (Saws) _ Pay from left (one hand): wait -- c1260_貧民亡者_下男(ノコギリ)_左から払い(片手):待機", + "1260192": "C1260_ Poor Dead _ Servant (Saws) _ Pay from right (one hand): left-handed posture -- c1260_貧民亡者_下男(ノコギリ)_右から払い(片手):左払い姿勢", + "1260193": "C1260_ Poor Dead _ Servant (Saws) _ Pay from left (one hand): right-handed posture -- c1260_貧民亡者_下男(ノコギリ)_左から払い(片手):右払い姿勢", + "1260194": "C1260_ Poor Dead _ Servant (saws) _ Continuous Swing down: left-hand Posture _1 -- c1260_貧民亡者_下男(ノコギリ)_連続振り下ろし:左払い姿勢_1段目", + "1260195": "C1260_ Poor Dead _ Servant (saws) _ Continuous Swing down: left-hand position _2 -- c1260_貧民亡者_下男(ノコギリ)_連続振り下ろし:左払い姿勢_2段目", + "1260196": "C1260_ Poor Dead _ Servant (saws) _ Continuous Swing down: left-hand Posture _3 -- c1260_貧民亡者_下男(ノコギリ)_連続振り下ろし:左払い姿勢_3段目", + "1260300": "C1260_ Poor Dead _ Servant (mortar) _ Knocked back against -- c1260_貧民亡者_下男(臼)_叩き付け", + "1260310": "C1260_ Poor Dead _ Servant (mortar) _ Knocked back against 2 -- c1260_貧民亡者_下男(臼)_叩き付け2", + "1260311": "C1260_ Poor Dead _ Servant (mortar) _ Kari (bearers posture) -- c1260_貧民亡者_下男(臼)_飛び掛かり(担ぎ姿勢)", + "1260312": "C1260_ Poor Dead _ Servant (mortar) _ left knocked back against -- c1260_貧民亡者_下男(臼)_左叩き付け", + "1260313": "C1260_ Poor Dead _ Servant (mortar) _ Right knocked back against -- c1260_貧民亡者_下男(臼)_右叩き付け", + "1260320": "C1260_ Poor Dead _ Servant (mortar) _ Knocked back against (bearers posture) -- c1260_貧民亡者_下男(臼)_叩き付け(担ぎ姿勢)", + "1260700": "C1260_ Poor Dead _ Servant (mortar) _ a mortar throw (spot) -- c1260_貧民亡者_下男(臼)_臼投げ(その場)", + "1260701": "C1260_ Poor Dead _ Servant (mortar) _ a mortar throw (bearers) -- c1260_貧民亡者_下男(臼)_臼投げ(担ぎ姿勢)", + "1280100": "C1280_ Shin Ojo Knight (Straight Sword + shield): Right Kesa cut -- c1280_新王城騎士(直剣+盾):右袈裟切り", + "1280101": "C1280_ Shin Ojo Knight (Straight Sword + shield): Left Whack -- c1280_新王城騎士(直剣+盾):左薙ぎ", + "1280102": "C1280_ Shin Ojo Knight (Straight Sword + shield): depression thrust -- c1280_新王城騎士(直剣+盾):踏み込み突き", + "1280110": "C1280_ Shin Ojo Knight (Straight Sword + shield): Left Swing -- c1280_新王城騎士(直剣+盾):左横振り", + "1280111": "C1280_ Shin Ojo Knight (Straight Sword + shield): Right -- c1280_新王城騎士(直剣+盾):右横振り", + "1280120": "C1280_ Shin Ojo Knight (Straight Sword + shield): Rush Butt -- c1280_新王城騎士(直剣+盾):突進突き", + "1280130": "C1280_ Shin Ojo Knight (Straight Sword + shield): Shield Bash -- c1280_新王城騎士(直剣+盾):盾バッシュ", + "1280140": "C1280_ Shin Ojo Knight (Straight Sword + shield): thrust -- c1280_新王城騎士(直剣+盾):構え突き", + "1280150": "C1280_ Shin Ojo Knight (Straight Sword + shield): Roll up -- c1280_新王城騎士(直剣+盾):構え巻き上げ", + "1280160": "C1280_ Shin Ojo Knight (Straight Sword + shield): counterattack from endure -- c1280_新王城騎士(直剣+盾):耐えるからの反撃", + "1280170": "c1280_ New Ojo Knight (Straight Sword + shield): Left side attack -- c1280_新王城騎士(直剣+盾):左側面攻撃", + "1280180": "C1280_ Shin Ojo Knight (Straight Sword + shield): Right flank attack -- c1280_新王城騎士(直剣+盾):右側面攻撃", + "1280300": "C1280_ Shin Ojo Knight (Spear + shield): Guard Butt 1 -- c1280_新王城騎士(槍+盾):ガード突き1", + "1280301": "C1280_ Shin Ojo Knight (Spear + shield): Guard Butt 2 -- c1280_新王城騎士(槍+盾):ガード突き2", + "1280310": "C1280_ Shin Ojo Knight (Spear + shield): Poised rush thrust (last) -- c1280_新王城騎士(槍+盾):構え突進突き(最後)", + "1280311": "C1280_ Shin Ojo Knight (Spear + shield): Thrust Rush (during rush) -- c1280_新王城騎士(槍+盾):構え突進突き(突進中)", + "1280320": "c1280_ New Ojo Knight (Spear + shield): Shield Bash -- c1280_新王城騎士(槍+盾):盾バッシュ", + "1280330": "c1280_ New Ojo Knight (Spear + shield): Poised plunge thrust -- c1280_新王城騎士(槍+盾):構え飛び込み突き", + "1280340": "c1280_ New Ojo Knight (Spear + shield): stance short-range thrust -- c1280_新王城騎士(槍+盾):構え近距離突き", + "1280350": "C1280_ Shin Ojo Knight (Spear + shield): Withstand counterattack -- c1280_新王城騎士(槍+盾):耐える反撃", + "1280360": "C1280_ Shin Ojo Knight (Spear + shield): Infuser Butt -- c1280_新王城騎士(槍+盾):溜め突き", + "1280370": "C1280_ Shin Ojo Knight (Spear + shield): Saigi -- c1280_新王城騎士(槍+盾):薙ぎ払い", + "1280500": "C1280_ Shin Ojo Knight (large sword): slams -- c1280_新王城騎士(大剣):叩きつけ", + "1280510": "C1280_ Shin Ojo Knight (large sword): Right Saigi -- c1280_新王城騎士(大剣):右薙ぎ払い", + "1280520": "C1280_ Shin Ojo Knight (large sword): Left Saigi -- c1280_新王城騎士(大剣):左薙ぎ払い", + "1280530": "C1280_ Shin Ojo Knight (large sword): Rush Saigi -- c1280_新王城騎士(大剣):突進薙ぎ払い", + "1280540": "C1280_ Shin Ojo Knight (large sword): Infuser Butt -- c1280_新王城騎士(大剣):溜め突き", + "1280550": "c1280_ New Ojo Knight (large sword): Behind the attack -- c1280_新王城騎士(大剣):背後攻撃", + "1280560": "C1280_ Shin Ojo Knight (Great Sword): depression -- c1280_新王城騎士(大剣):踏み込み", + "1280570": "C1280_ Shin-Ojo Knight (large sword): stepping Round -- c1280_新王城騎士(大剣):踏み込み切り上げ", + "1280580": "C1280_ Shin Ojo Knight (large sword): Swing Down (reservoir) -- c1280_新王城騎士(大剣):振り下ろし(溜め)", + "1280590": "C1280_ Shin Ojo Knight (large sword): Whack Kesa (infuser): Wait -- c1280_新王城騎士(大剣):薙ぎ袈裟(溜め):待機", + "1280600": "C1280_ Shin Ojo Knight (large sword): thrusting -- c1280_新王城騎士(大剣):突き", + "1280610": "C1280_ Shin Ojo Knight (large sword): Reverse Whack: stepping Posture -- c1280_新王城騎士(大剣):逆薙ぎ:踏み込み姿勢", + "1280620": "C1280_ Shin Ojo Knight (large sword): pattern Extrusion -- c1280_新王城騎士(大剣):柄押し出し", + "1280630": "C1280_ Shin Ojo Knight (large sword): Whack Swinging: enduring posture -- c1280_新王城騎士(大剣):薙ぎ振り上げ:耐える姿勢", + "1280640": "C1280_ Shin Ojo Knight (large Sword): Shiri (left side): Wait -- c1280_新王城騎士(大剣):袈裟斬り(左側面):待機", + "1280650": "C1280_ Shin Ojo Knight (large sword): Reverse Kesa (right side): Wait -- c1280_新王城騎士(大剣):逆袈裟(右側面):待機", + "1280700": "C1280_ Shin Ojo Knight (bow): shooting -- c1280_新王城騎士(弓):射撃", + "1280701": "C1280_ Shin Ojo Knight (bow): Shooting Combo -- c1280_新王城騎士(弓):射撃コンボ", + "1280900": "C1280_ Shin Ojo Knight (sword): Guard -- c1280_新王城騎士(剣):ガード", + "1280910": "C1280_ Shin Ojo Knight (Spear): Guard -- c1280_新王城騎士(槍):ガード", + "1280920": "C1280_ Shin Ojo Knight (large sword): Guard -- c1280_新王城騎士(大剣):ガード", + "1290100": "C1290_ Ojo Deb (Long axe): Swing Down (Blade) -- c1290_王城デブ(長斧):思い切り振りおろし(刃)", + "1290110": "C1290_ Ojo Deb (Long Axe): Combo ①-1 Angled Swing (blade) -- c1290_王城デブ(長斧):コンボ①~1 斜めに振り上げ(刃)", + "1290111": "C1290_ Ojo Deb (Long Axe): Combo ①-2 small Saigi (Blade) -- c1290_王城デブ(長斧):コンボ①~2 小薙ぎ払い(刃)", + "1290112": "C1290_ Ojo Deb (Long Axe): Combo ①-3 small Saigi (Blade) -- c1290_王城デブ(長斧):コンボ①~3 小薙ぎ払い(刃)", + "1290120": "C1290_ Ojo Deb (Long Axe): Compact and grated (blade) -- c1290_王城デブ(長斧):コンパクトに振りおろし(刃)", + "1290130": "C1290_ Ojo Deb (Long Axe): Combo ②-1 Saigi (Blade) -- c1290_王城デブ(長斧):コンボ②~1 薙ぎ払い (刃)", + "1290131": "C1290_ Ojo Deb (Long Axe): Combo ②-2 Saigi (Blade) -- c1290_王城デブ(長斧):コンボ②~2 薙ぎ払い (刃)", + "1290132": "C1290_ Ojo Deb (Long Axe): Combo ②-2, grated from the reservoir (Blade) -- c1290_王城デブ(長斧):コンボ②~2 ちょい溜めからの振りおろし(刃)", + "1290140": "C1290_ Ojo Deb (Long Axe): Saigi from running (Blade) -- c1290_王城デブ(長斧):走りからの薙ぎ払い(刃)", + "1290150": "C1290_ Ojo Deb (Long Axe): Force -- c1290_王城デブ(長斧):フォース", + "1290160": "C1290_ Ojo Deb (Long Axe): Rotation attack Combo First stage: Rotating part (Blade) -- c1290_王城デブ(長斧):回転攻撃コンボ 1段目:回転部(刃)", + "1290161": "C1290_ Ojo Deb (Long Axe): Rotation attack Combo first stage: Pay part (Blade) -- c1290_王城デブ(長斧):回転攻撃コンボ 1段目:払い部(刃)", + "1290170": "C1290_ Ojo Deb (Long Axe): Rotation attack Combo Second stage: Rotating part (Blade) -- c1290_王城デブ(長斧):回転攻撃コンボ 2段目:回転部(刃)", + "1290171": "C1290_ Ojo Deb (Long Axe): Rotating attack Combo Second stage: Pay part (Blade) -- c1290_王城デブ(長斧):回転攻撃コンボ 2段目:払い部(刃)", + "1290180": "C1290_ Ojo Deb (Long Axe): Rotation attack Combo Third stage: rotating part (Blade) -- c1290_王城デブ(長斧):回転攻撃コンボ 3段目:回転部(刃)", + "1290181": "C1290_ Ojo Deb (Long Axe): Rotation attack combo third stage: Pay part (Blade) -- c1290_王城デブ(長斧):回転攻撃コンボ 3段目:払い部(刃)", + "1290190": "C1290_ Ojo (Long Axe): Miracle: The light of the pillar dancing -- c1290_王城デブ(長斧):奇蹟:光の柱乱舞 予兆", + "1290191": "C1290_ Ojo Deb (Long Axe): Miracles: Columns of light, dance pillar of Light -- c1290_王城デブ(長斧):奇蹟:光の柱乱舞 光の柱", + "1290192": "C1290_ Ojo Deb (Long Axe): Miracles: The Pillar of Light danced -- c1290_王城デブ(長斧):奇蹟:光の柱乱舞 着弾", + "1290193": "C1290_ Ojo (Long Axe): Miracle: A shock wave in the motion of a pillar of light -- c1290_王城デブ(長斧):奇蹟:光の柱乱舞 発動時の衝撃波", + "1290200": "C1290_ Ojo Deb (Long axe): Swinging Down (stick) -- c1290_王城デブ(長斧):思い切り振りおろし(棒)", + "1290210": "C1290_ Ojo Deb (Long Axe): Combo ①-1 Angled Swing (rod) -- c1290_王城デブ(長斧):コンボ①~1 斜めに振り上げ(棒)", + "1290211": "C1290_ Ojo Deb (Long Axe): Combo ①-2 small Saigi (stick) -- c1290_王城デブ(長斧):コンボ①~2 小薙ぎ払い(棒)", + "1290212": "C1290_ Ojo Deb (Long Axe): Combo ①-3 small Saigi (stick) -- c1290_王城デブ(長斧):コンボ①~3 小薙ぎ払い(棒)", + "1290220": "C1290_ Ojo Deb (Long Axe): compact and grated (stick) -- c1290_王城デブ(長斧):コンパクトに振りおろし(棒)", + "1290230": "C1290_ Ojo Deb (Long Axe): Combo ②-1 Saigi (stick) -- c1290_王城デブ(長斧):コンボ②~1 薙ぎ払い (棒)", + "1290231": "C1290_ Ojo Deb (Long Axe): Combo ②-2 Saigi (stick) -- c1290_王城デブ(長斧):コンボ②~2 薙ぎ払い (棒)", + "1290232": "C1290_ Ojo Deb (Long Axe): Combo ②-2, grated from the reservoir (stick) -- c1290_王城デブ(長斧):コンボ②~2 ちょい溜めからの振りおろし(棒)", + "1290240": "C1290_ Ojo Deb (Long Axe): Saigi from the Run (stick) -- c1290_王城デブ(長斧):走りからの薙ぎ払い(棒)", + "1290260": "C1290_ Ojo Deb (Long Axe): Rotation attack Combo First stage: Rotating section (rod) -- c1290_王城デブ(長斧):回転攻撃コンボ 1段目:回転部(棒)", + "1290261": "C1290_ Ojo Deb (Long Axe): Rotation attack Combo first stage: Pay part (rod) -- c1290_王城デブ(長斧):回転攻撃コンボ 1段目:払い部(棒)", + "1290270": "C1290_ Ojo Deb (Long Axe): Rotation attack Combo Second Stage: Rotating section (rod) -- c1290_王城デブ(長斧):回転攻撃コンボ 2段目:回転部(棒)", + "1290271": "C1290_ Ojo Deb (Long Axe): Rotating attack Combo Second stage: Pay part (rod) -- c1290_王城デブ(長斧):回転攻撃コンボ 2段目:払い部(棒)", + "1290280": "C1290_ Ojo Deb (Long Axe): Rotation attack Combo Third stage: Rotating section (rod) -- c1290_王城デブ(長斧):回転攻撃コンボ 3段目:回転部(棒)", + "1290281": "C1290_ Ojo Deb (Long Axe): Rotation attack combo third stage: Pay part (rod) -- c1290_王城デブ(長斧):回転攻撃コンボ 3段目:払い部(棒)", + "1290300": "C1290_ Ojo Deb (ax Nitori): Combo ① ~ 1 Right axe knocked back against 1 -- c1290_王城デブ(斧二刀流):コンボ①~1 右斧叩き付け1", + "1290301": "C1290_ Ojo Deb (ax Nitori): Combo ① ~ 2 Right axe knocked back against 2 -- c1290_王城デブ(斧二刀流):コンボ①~2 右斧叩き付け2", + "1290302": "C1290_ Ojo Deb (ax Nitori): Combo ①-3 left axe knocked back against (strong) -- c1290_王城デブ(斧二刀流):コンボ①~3 左斧叩き付け(強)", + "1290303": "C1290_ Ojo Deb (ax Nitori): Combo ①-4 Right axe (knocked back against) -- c1290_王城デブ(斧二刀流):コンボ①~4 右斧叩き付け(強)", + "1290304": "C1290_ Ojo Deb (ax Nitori): both axe grated -- c1290_王城デブ(斧二刀流):両斧振りおろし", + "1290310": "C1290_ Ojo Deb (ax Nitori): Both axe and grated ② -- c1290_王城デブ(斧二刀流):両斧振りおろし②", + "1290320": "C1290_ Ojo Deb (ax Nitori): Cut to tuck in both axes -- c1290_王城デブ(斧二刀流):両斧で挟み込むように切る", + "1290330": "C1290_ Ojo Deb (ax Nitori): Force -- c1290_王城デブ(斧二刀流):フォース", + "1290340": "C1290_ Ojo Deb (ax Nitori): Combo ② ~ 1 left ax sideways whack -- c1290_王城デブ(斧二刀流):コンボ②~1 左斧横薙ぎ", + "1290341": "C1290_ Ojo Deb (ax Nitori): Combo ② ~ 2 Nito Lateral Whack -- c1290_王城デブ(斧二刀流):コンボ②~2 二刀横薙ぎ", + "1290350": "C1290_ Ojo Deb (ax Nitori): Cross-slash with both axes _ right hand -- c1290_王城デブ(斧二刀流):両斧でクロス斬り_右手", + "1290351": "C1290_ Ojo Deb (ax Nitori): Cross-slash with both axes _ left hand -- c1290_王城デブ(斧二刀流):両斧でクロス斬り_左手", + "1290360": "C1290_ Ojo Deb (axe Nitori): Reverse cross Slash -- c1290_王城デブ(斧二刀流):前転逆クロス斬り", + "1290370": "C1290_ Ojo Deb (axe Nitori): Rotating both axe slash -- c1290_王城デブ(斧二刀流):回転両斧斬り", + "1290380": "C1290_ Ojo Deb (ax Nitori): Ax throwing right -- c1290_王城デブ(斧二刀流):斧投擲 右", + "1290381": "C1290_ Ojo Deb (ax Nitori): Ax throwing left -- c1290_王城デブ(斧二刀流):斧投擲 左", + "1300100": "C1300_ Black Knight: left Kesa cut -- c1300_黒騎士:左袈裟切り", + "1300101": "c1300_ Black Knight: Right Whack -- c1300_黒騎士:右薙ぎ", + "1300102": "c1300_ Black Knight: thrusting -- c1300_黒騎士:突き", + "1300103": "C1300_ Black Knight: Swing Down -- c1300_黒騎士:振り下ろし", + "1300104": "C1300_ Black Knight: Infuser Combo -- c1300_黒騎士:溜め斬り・コンボ", + "1300110": "C1300_ Black Knight: Infuser, simple -- c1300_黒騎士:溜め斬り・単", + "1300120": "C1300_ Black Knight: beat with a shield -- c1300_黒騎士:盾で殴る", + "1300121": "C1300_ Black Knight: Rush Butt -- c1300_黒騎士:突進突き", + "1300300": "C1300_ Black Knight (oversized sword): Pay: Wait -- c1300_黒騎士(特大剣):払い:待機", + "1300310": "C1300_ Black Knight (oversized sword): reversal: Payment Attitude -- c1300_黒騎士(特大剣):逆払い:払い姿勢", + "1300320": "C1300_ Black Knight (oversized sword): Pay: Attitude -- c1300_黒騎士(特大剣):払い:逆払い姿勢", + "1300330": "C1300_ Black Knight (oversized sword): Rotation swing down: pay attitude -- c1300_黒騎士(特大剣):回転振り下ろし:払い姿勢", + "1300340": "C1300_ Black Knight (oversized sword): Swing down: posture of reversed payment -- c1300_黒騎士(特大剣):振り下ろし:逆払い姿勢", + "1300350": "C1300_ Black Knight (oversized sword): Swing Down: Wait -- c1300_黒騎士(特大剣):振り下ろし:待機", + "1300360": "C1300_ Black Knight (oversized sword): Reverse payment: Swing down posture -- c1300_黒騎士(特大剣):逆払い:振り下ろし姿勢", + "1300370": "C1300_ Black Knight (oversized sword): poking: Waiting -- c1300_黒騎士(特大剣):突き:待機", + "1300380": "C1300_ Black Knight (oversized sword): Thrust: Posture -- c1300_黒騎士(特大剣):突き:逆払い姿勢", + "1300390": "C1300_ Black Knight (oversized sword): rotating Butt: Pay attitude -- c1300_黒騎士(特大剣):回転突き:払い姿勢", + "1300400": "C1300_ Black Knight (oversized sword): two or three steps to swing -- c1300_黒騎士(特大剣):2、3歩踏み込んで振り下ろす", + "1300410": "C1300_ Black Knight (oversized sword): two or three steps to poke -- c1300_黒騎士(特大剣):2、3歩踏み込んで突く", + "1300420": "C1300_ Black Knight (oversized sword): Beat with a shield -- c1300_黒騎士(特大剣):盾で殴る", + "1300430": "C1300_ Black Knight (oversized sword): Dragon Hunt, one-handed thrust -- c1300_黒騎士(特大剣):竜狩り・片手突き上げ", + "1300440": "C1300_ Black Knight (oversized sword): Dragon Hunt, two hands swing -- c1300_黒騎士(特大剣):竜狩り・両手振り上げ", + "1300441": "C1300_ Black Knight (oversized sword): Dragon Hunt, hands Up (preliminary operation) -- c1300_黒騎士(特大剣):竜狩り・両手振り上げ(予備動作)", + "1300450": "C1300_ Black Knight (oversized sword): behind reverse Whack -- c1300_黒騎士(特大剣):背後逆薙ぎ", + "1300500": "C1300_ Black Knight (axe): Right Kesa -- c1300_黒騎士(斧):右袈裟", + "1300510": "C1300_ Black Knight (axe): Left Kesa: Right Kesa Posture -- c1300_黒騎士(斧):左袈裟:右袈裟姿勢", + "1300520": "C1300_ Black Knight (Axe): swinging: Left Kesa posture -- c1300_黒騎士(斧):振り上げ:左袈裟姿勢", + "1300530": "C1300_ Black Knight (axe): slams: Left Kesa posture -- c1300_黒騎士(斧):叩きつけ:左袈裟姿勢", + "1300540": "C1300_ Black Knight (ax): Swing down and simply -- c1300_黒騎士(斧):振り下ろし・単", + "1300550": "C1300_ Black Knight (axe): swing-up -- c1300_黒騎士(斧):振り上げ・単", + "1300560": "C1300_ Black Knight (axe): Beat with a shield -- c1300_黒騎士(斧):盾で殴る", + "1300570": "C1300_ Black Knight (axe): Pay from the left: swing attitude -- c1300_黒騎士(斧):左から払う:振り上げ姿勢", + "1300580": "C1300_ Black Knight (axe): One or two steps to pay -- c1300_黒騎士(斧):1、2歩踏み込んで払う", + "1300590": "C1300_ Black Knight (axe): Two, three steps pounding -- c1300_黒騎士(斧):2、3歩踏み込んで叩きつける", + "1300600": "C1300_ Black Knight (ax): Dragon Hunt, jump and swing down -- c1300_黒騎士(斧):竜狩り・飛び上がって振り下ろし", + "1300610": "C1300_ Black Knight (axe): Dragon Hunt, hands up -- c1300_黒騎士(斧):竜狩り・両手振り上げ", + "1300611": "C1300_ Black Knight (axe): Dragon Hunt, hands Up (preliminary operation) -- c1300_黒騎士(斧):竜狩り・両手振り上げ(予備動作)", + "1300620": "C1300_ Black Knight (AX): Behind continuous attack -- c1300_黒騎士(斧):背後連続攻撃", + "1300621": "C1300_ Black Knight (AX): Behind continuous attack -- c1300_黒騎士(斧):背後連続攻撃_2撃目", + "1300630": "C1300_ Black Knight (axe): Slams (feint): Left Kesa Posture -- c1300_黒騎士(斧):叩きつけ(フェイント):左袈裟姿勢", + "1300700": "C1300_ Black Knight: one poke while guarding -- c1300_黒騎士:ガードしながら突く1", + "1300701": "C1300_ Black Knight: two poke while guarding -- c1300_黒騎士:ガードしながら突く2", + "1300702": "c1300_ Black Knight: Poke 3 while guarding -- c1300_黒騎士:ガードしながら突く3", + "1300703": "C1300_ Black Knight: (spear) Nagi combo -- c1300_黒騎士:(槍)なぎ払い・コンボ", + "1300710": "C1300_ Black Knight: Strong attack -- c1300_黒騎士:強攻撃", + "1300720": "C1300_ Black Knight: Two, three steps, poke in the momentum -- c1300_黒騎士:2、3歩踏み込んだ勢いで突く", + "1300730": "C1300_ Black Knight: (spear) Nagi -- c1300_黒騎士:(槍)なぎ払い・単", + "1300731": "C1300_ Black Knight: (spear) Nagi 2 -- c1300_黒騎士:(槍)なぎ払い2", + "1300732": "C1300_ Black Knight: (spear) thrust and Nagi -- c1300_黒騎士:(槍)突き・なぎ払いから", + "1300740": "C1300_ Black Knight: (spear) Nagi-strong -- c1300_黒騎士:(槍)なぎ払い・強", + "1300750": "C1300_ Black Knight: (spear) PC diversion/one-handed attack -- c1300_黒騎士:(槍)PC流用・片手攻撃", + "1300751": "C1300_ Black Knight: (spear) PC diversion/One-handed attack (preliminary operation) -- c1300_黒騎士:(槍)PC流用・片手攻撃 (予備動作)", + "1300760": "C1300_ Black Knight: (spear) PC Diversion/Jump Slash -- c1300_黒騎士:(槍)PC流用・ジャンプ斬り", + "1300770": "C1300_ Black Knight: (spear) rush with Shield -- c1300_黒騎士:(槍)盾を構えて突進", + "1300900": "C1300_ Black Knight: (spear) Shield -- c1300_黒騎士:(槍)盾", + "1310100": "C1310_ Dark Knight Beast: Sword Up -- c1310_ダークナイトビースト:斬り上げ", + "1310101": "C1310_ Dark Knight beast: Swinging from the sword -- c1310_ダークナイトビースト:斬り上げからの振りおろし", + "1310110": "C1310_ Dark Knight beast: Back Up -- c1310_ダークナイトビースト:後ろ斬り上げ", + "1310111": "C1310_ Dark Knight beast: Swing from behind -- c1310_ダークナイトビースト:後ろ斬り上げからの振りおろし", + "1310120": "C1310_ Dark Knight Beast: Whack Stage -- c1310_ダークナイトビースト:薙ぎ 初段", + "1310130": "C1310_ Dark Knight Beast: Whack next stage -- c1310_ダークナイトビースト:薙ぎ 次段", + "1310140": "C1310_ Dark Knight Beast: Left 90 ° swivel whack -- c1310_ダークナイトビースト:左90°旋回薙ぎ", + "1310150": "C1310_ Dark Knight Beast: Right 90 ° swivel whack -- c1310_ダークナイトビースト:右90°旋回薙ぎ", + "1310160": "C1310_ Dark Knight Beast: thrusting -- c1310_ダークナイトビースト:突き", + "1310170": "C1310_ Dark Knight beast: jumping and attacking -- c1310_ダークナイトビースト:跳びかかり攻撃", + "1310180": "C1310_ Dark Knight Beast: Breath -- c1310_ダークナイトビースト:ブレス", + "1310181": "C1310_ Dark Knight Beast: Breath (no damage version) -- c1310_ダークナイトビースト:ブレス(ダメージ無い版)", + "1310190": "C1310_ Dark Knight Beast: Left Whack -- c1310_ダークナイトビースト:左薙ぎ", + "1310200": "C1310_ Dark Knight Beast: Rush first stage -- c1310_ダークナイトビースト:ラッシュ1段目", + "1310201": "C1310_ Dark Knight Beast: Rush second Stage -- c1310_ダークナイトビースト:ラッシュ2段目", + "1310700": "C1310_ Dark Knight Beast: Cold air (for freezing) -- c1310_ダークナイトビースト:冷気(凍結用)", + "1310710": "C1310_ Dark Knight Beast: Cold (for decals) -- c1310_ダークナイトビースト:冷気(デカール用)", + "1320100": "Crystal Spear -- 結晶の槍", + "1320110": "A mass of drifting crystals -- 漂う結晶の塊", + "1320111": "MP recovery bullet elders of drifting crystal Mass -- 漂う結晶の塊 古老のMP回復弾", + "1320130": "Ally Buff -- 味方バフ", + "1320140": "High Speed straight line magic (impact) -- 高速直線魔法(着弾)", + "1320141": "High Speed straight line magic (remaining) -- 高速直線魔法(残存)", + "1320150": "Drenched crystal bullets (parent) -- 降り注ぐ結晶弾(親)", + "1320151": "Drenched Crystal bullets (child) -- 降り注ぐ結晶弾(子)", + "1320152": "Falling crystal bullets (explosion) -- 降り注ぐ結晶弾(爆発)", + "1320160": "Proximity explosion (parent) -- 近接爆発(親)", + "1320161": "Proximity explosion (child) -- 近接爆発(子)", + "1320170": "Crystal Wall (search) -- 結晶壁(検索)", + "1320190": "Crystal Storm Signs -- 結晶の嵐 予兆", + "1320191": "Crystal Storm Crystal Storm -- 結晶の嵐 結晶の嵐", + "1320192": "Crystal Storm Impact -- 結晶の嵐 着弾", + "1320193": "Shock wave during the triggering of crystal storms -- 結晶の嵐 発動時の衝撃波", + "1330100": "C1330_ Forest Keeper (Long axe): Swing Down (Blade) -- c1330_森の番人(長斧):振り下ろし(刃)", + "1330101": "C1330_ Forest Keeper (Long Axe): Pay (Blade) (for combo) -- c1330_森の番人(長斧):払い(刃)(コンボ用)", + "1330110": "C1330_ Forest Keeper (Long Axe): Nagi (Blade) -- c1330_森の番人(長斧):なぎ払い(刃)", + "1330120": "C1330_ Forest Keeper (Long Axe): Reverse Nagi (Blade) -- c1330_森の番人(長斧):逆なぎ払い(刃)", + "1330130": "C1330_ Forest Keeper (Long Axe): Execution attack (Blade) -- c1330_森の番人(長斧):処刑攻撃(刃)", + "1330140": "C1330_ Forest Keeper (Long axe): stepping Down (Blade) -- c1330_森の番人(長斧):踏み込み振り下ろし(刃)", + "1330150": "C1330_ Forest Keeper (Long Axe): Pre-kick -- c1330_森の番人(長斧):前蹴り", + "1330160": "C1330_ Forest Keeper (Long Axe): Endure (for counter) -- c1330_森の番人(長斧):耐える(カウンター用)", + "1330161": "C1330_ Forest Keeper (Long Axe): Head butt -- c1330_森の番人(長斧):頭突き", + "1330200": "C1330_ Forest Keeper (Long axe): Swing Down (stick) -- c1330_森の番人(長斧):振り下ろし(棒)", + "1330201": "C1330_ Forest Keeper (Long Axe): Pay (stick) (for combo) -- c1330_森の番人(長斧):払い(棒)(コンボ用)", + "1330210": "C1330_ Forest Keeper (Long Axe): Nagi (Rod) -- c1330_森の番人(長斧):なぎ払い(棒)", + "1330220": "C1330_ Forest Keeper (Long Axe): Reverse Nagi (stick) -- c1330_森の番人(長斧):逆なぎ払い(棒)", + "1330230": "C1330_ Forest Keeper (Long Axe): Execution Attack (rod) -- c1330_森の番人(長斧):処刑攻撃(棒)", + "1330240": "C1330_ Forest Keeper (Long axe): Stepping down (stick) -- c1330_森の番人(長斧):踏み込み振り下ろし(棒)", + "1330300": "C1330_ Forest Keeper (sword): DV Combo 1: Swing Down -- c1330_森の番人(大剣):DVコンボ1:振り下ろし", + "1330301": "C1330_ Forest Keeper (sword): DV Combo 2: Swing Down -- c1330_森の番人(大剣):DVコンボ2:振り下ろし", + "1330302": "C1330_ Forest Keeper (sword): DV Combo 3: Strong attack -- c1330_森の番人(大剣):DVコンボ3:強攻撃", + "1330310": "C1330_ Forest Keeper (large sword): both hands guillotine -- c1330_森の番人(大剣):両手ギロチン", + "1330320": "C1330_ Forest Keeper (sword): Pay (before-left) -- c1330_森の番人(大剣):払い(前~左)", + "1330330": "C1330_ The Keeper of the Forest (large sword): Reverse payment (front to right) -- c1330_森の番人(大剣):逆払い(前~右)", + "1330340": "C1330_ Forest Keeper (large sword): Asai -- c1330_森の番人(大剣):足払い", + "1330350": "The keeper of the C1330_ Forest (sword): Depression attack -- c1330_森の番人(大剣):踏み込み攻撃", + "1330360": "C1330_ Forest Keeper (sword): Endure (for counter) -- c1330_森の番人(大剣):耐える(カウンター用)", + "1330361": "C1330_ Forest Keeper (sword): Head Butt -- c1330_森の番人(大剣):頭突き", + "1340070": "C1340_ dead: Beat up _ First stage -- c1340_蝋の死人:殴る_一段目", + "1340071": "C1340_ dead: Beat up _ Two -- c1340_蝋の死人:殴る_二段目", + "1340080": "The dead of c1340_ wax: depression thrust -- c1340_蝋の死人:踏み込み突き刺し", + "1340090": "Dead of c1340_ Wax: Infuser beating -- c1340_蝋の死人:溜め殴り", + "1340700": "The dead of c1340_ wax: the arrow of Seoul -- c1340_蝋の死人:ソウルの矢", + "1340710": "The dead of c1340_ wax: A Spear of disturbed soul -- c1340_蝋の死人:乱れるソウルの槍", + "1340720": "C1340_ dead: Wax _ knocked back against -- c1340_蝋の死人:蝋弾_叩き付け", + "1340730": "C1340_ dead: Wax _ Saigi -- c1340_蝋の死人:蝋弾_薙ぎ払い", + "1350100": "c1350_ slave Spirit (Dagger): Swing down _1 -- c1350_奴隷霊(短剣):振り下ろし_1段目", + "1350110": "c1350_ slave Spirits (dagger): Swing Down -- c1350_奴隷霊(短剣):振り下ろし_2段目", + "1350120": "c1350_ slave Spirit (Dagger): Swing Down _3 -- c1350_奴隷霊(短剣):振り下ろし_3段目", + "1350150": "c1350_ slave Spirits (dagger): both -- c1350_奴隷霊(短剣):両手振り下ろし", + "1350160": "c1350_ slave Spirits (dagger): Running thrust -- c1350_奴隷霊(短剣):走り突き刺し", + "1350170": "c1350_ slave Spirit (Dagger): the _1 Stage -- c1350_奴隷霊(短剣):斬り払い_1段目", + "1350180": "c1350_ slave Spirit (Dagger): The Sword -- c1350_奴隷霊(短剣):斬り払い_2段目", + "1350300": "c1350_ slave spirits (without legs): lateral payment -- c1350_奴隷霊(足なし):横払い", + "1350310": "c1350_ slave spirits (without legs): front slash -- c1350_奴隷霊(足なし):正面斬り払い", + "1350320": "c1350_ slave spirits (without legs): piercing -- c1350_奴隷霊(足なし):突き刺し", + "1350330": "c1350_ slave spirits (without legs): Rampage shook _1 -- c1350_奴隷霊(足なし):暴れ振り払い_1段目", + "1350331": "c1350_ slave spirits (without legs): Rampage shook -- c1350_奴隷霊(足なし):暴れ振り払い_2段目", + "1350340": "c1350_ slave spirits (without legs): falling throw -- c1350_奴隷霊(足なし):落下投げ", + "1350341": "c1350_ slave spirits (without legs): throwing damage -- c1350_奴隷霊(足なし):投げダメージ", + "1350400": "c1350_ slave Spirit (Straight Sword): Take the right hand -- c1350_奴隷霊(直剣):右手斬りかかり", + "1350410": "c1350_ slave Spirit (Straight Sword): Right hand cut back -- c1350_奴隷霊(直剣):右手斬り返し", + "1350420": "c1350_ slave Spirit (Straight Sword): Right hand Swing -- c1350_奴隷霊(直剣):右手振り下ろし", + "1350430": "c1350_ slave Spirit (Straight sword): both -- c1350_奴隷霊(直剣):両手振り下ろし", + "1350440": "c1350_ slave Spirit (Straight sword): The running slash -- c1350_奴隷霊(直剣):走り斬りかかり", + "1350450": "c1350_ slave Spirit (Straight sword): protruding slash -- c1350_奴隷霊(直剣):突き出し斬り", + "1350460": "c1350_ Slave Spirits (Straight sword): shook -- c1350_奴隷霊(直剣):振り払い", + "1360100": "C1360_ Crucifixion dead A: Throwing transition 1 -- c1360_磔亡者A:投げ遷移1", + "1360110": "C1361_ Crucifixion dead A: throwing transition 2 -- c1361_磔亡者A:投げ遷移2", + "1360200": "C1362_ Crucifixion dead A: tossed -- c1362_磔亡者A:投げ", + "1370100": "C1370_ Crucifixion dead B: Thrusting (weakly) _ Tip -- c1370_磔亡者B:突き(弱)_先端", + "1370101": "C1370_ Crucifixion dead B: Thrusting (weakly) _ Sticky hands-tip -- c1370_磔亡者B:突き(弱)_もち手~先端", + "1370110": "C1370_ Crucifixion dead B: butting (strong) _ Tip -- c1370_磔亡者B:突き(強)_先端", + "1370111": "C1370_ Crucifixion dead B: Thrust (strong) _ Sticky hands-tip -- c1370_磔亡者B:突き(強)_もち手~先端", + "1370120": "C1370_ Crucifixion dead B: Lifting and thrusting _ tip -- c1370_磔亡者B:持ち上げて突き刺し_先端", + "1370121": "C1370_ Crucifixion dead B: Lifting and thrusting _ sticky hands-tip -- c1370_磔亡者B:持ち上げて突き刺し_もち手~先端", + "1370130": "C1370_ Crucifixion dead B: Pay in piles _ tip -- c1370_磔亡者B:杭で払う_先端", + "1370131": "C1370_ Crucifixion dead B: Pay in piles _ Sticky hands-tip -- c1370_磔亡者B:杭で払う_もち手~先端", + "1370140": "C1370_ Crucifixion dead B: knocked back against to lift _ tip -- c1370_磔亡者B:持ち上げて叩き付け_先端", + "1370141": "C1370_ Crucifixion dead B: Lifting knocked back against _ Sticky hands-tip -- c1370_磔亡者B:持ち上げて叩き付け_もち手~先端", + "1370150": "C1370_ Crucifixion dead B: Rush Butt (Continuous) _ Tip -- c1370_磔亡者B:突進突き(連続)_先端", + "1370151": "C1370_ Crucifixion dead B: Rush Butt (continuous) _ Sticky hands-tip -- c1370_磔亡者B:突進突き(連続)_もち手~先端", + "1370152": "C1370_ Crucifixion dead B: Rush Butt (Final) _ Tip -- c1370_磔亡者B:突進突き(最終)_先端", + "1380010": "The priest of the c1380_ snake: beating with a whip (weak) -- c1380_蛇人の司祭:鞭で殴る(弱)", + "1380020": "C1380_ Snake man priest: Nagi with whips -- c1380_蛇人の司祭:鞭でなぎ払う", + "1380700": "C1380_ Priest: Magic Attack (weak) -- c1380_蛇人の司祭:魔法攻撃(弱)", + "1380710": "Priest of the snake c1380_: the Magic Attack (strong) -- c1380_蛇人の司祭:魔法攻撃(強)", + "1390010": "C1390_ Snake Assassin (short blade): Continuous attack 1-1_ blow -- c1390_蛇人の暗殺者(短刃):連続攻撃1-1_一撃目", + "1390011": "C1390_ Snake Assassin (short blade): Continuous attack 1-1_ second -- c1390_蛇人の暗殺者(短刃):連続攻撃1-1_二撃目", + "1390020": "C1390_ Snake Assassin (short blade): Continuous attack 1-2a_ blow -- c1390_蛇人の暗殺者(短刃):連続攻撃1-2A_一撃目", + "1390021": "C1390_ Snake Assassin (short blade): Continuous attack 1-2a_ second -- c1390_蛇人の暗殺者(短刃):連続攻撃1-2A_二撃目", + "1390030": "c1390_ (short blade): Rapid Melee attack 1-1 -- c1390_蛇人の暗殺者(短刃):急接近攻撃1-1", + "1390040": "C1390_ Snake Assassin (short blade): Rapid Melee attack 1-2_ -- c1390_蛇人の暗殺者(短刃):急接近攻撃1-2_一撃目", + "1390041": "C1390_ Snake Assassin (short blade): Rapid approaching attack 1-2_ second hammer -- c1390_蛇人の暗殺者(短刃):急接近攻撃1-2_二撃目", + "1390042": "c1390_ (short blade): Quick approaching attack 1-2_ 3 -- c1390_蛇人の暗殺者(短刃):急接近攻撃1-2_三撃目", + "1390050": "c1390_ Assassin (Short Blade): Rapid Melee attack 1-3a -- c1390_蛇人の暗殺者(短刃):急接近攻撃1-3A", + "1390060": "C1390_ Snake Assassin (short blade): bit -- c1390_蛇人の暗殺者(短刃):噛み付き", + "1390070": "c1390_ (Short blade): The Fall attack 1-1 -- c1390_蛇人の暗殺者(短刃):斬り下がり攻撃1-1", + "1390080": "c1390_ Assassin (Short Blade): A Down-rise attack -- c1390_蛇人の暗殺者(短刃):ダウン起き上がり攻撃", + "1390090": "C1390_ Snake man Assassin (short blade): Bit (right): from a3000 -- c1390_蛇人の暗殺者(短刃):噛み付き(右前):a3000から", + "1390100": "C1390_ Snake Assassin (short blade): bit (left): from a3000 -- c1390_蛇人の暗殺者(短刃):噛み付き(左前):a3000から", + "1390110": "C1390_ Snake man Assassin (short blade): Bit (right): from a3005 -- c1390_蛇人の暗殺者(短刃):噛み付き(右前):a3005から", + "1390120": "C1390_ Snake Assassin (short blade): bit (left): from a3005 -- c1390_蛇人の暗殺者(短刃):噛み付き(左前):a3005から", + "1390200": "C1390_ the Assassin (Shorty): Pay: Wait -- c1390_蛇人の暗殺者(ショーテル):払い:待機", + "1390210": "C1390_ (Shorty): Reverse Payment: A payment attitude -- c1390_蛇人の暗殺者(ショーテル):逆払い:払い姿勢", + "1390220": "C1390_ (Shorty): Reverse Payment: Wait -- c1390_蛇人の暗殺者(ショーテル):逆払い:待機", + "1390230": "The assassin of the C1390_ (Shorty): Pay: Attitude -- c1390_蛇人の暗殺者(ショーテル):払い:逆払い姿勢", + "1390240": "The assassin of the C1390_ (Shorty): Deferred payment: A reversed payment stance -- c1390_蛇人の暗殺者(ショーテル):遅延払い:逆払い姿勢", + "1390250": "The assassin of the c1390_ Snake (Shorty): Quick approaching attack -- c1390_蛇人の暗殺者(ショーテル):急接近攻撃", + "1390260": "C1390_ The assassin of the Serpent (Shorty): Up and down attack -- c1390_蛇人の暗殺者(ショーテル):ダウン起き上がり攻撃", + "1390270": "C1390_ Serpent Assassin (Shorty): Bit from guard break -- c1390_蛇人の暗殺者(ショーテル):ガードブレイクからの噛み付き", + "1390280": "The assassin of the c1390_ Snake (Shorty): Swing Down -- c1390_蛇人の暗殺者(ショーテル):振り下ろし", + "1390400": "The assassin of C1390_ (common): Breath -- c1390_蛇人の暗殺者(共通):ブレス", + "1390410": "Assassins of C1390_ (common): Pay bit: Wait -- c1390_蛇人の暗殺者(共通):払い噛み付き:待機", + "1390411": "C1390_ Serpent Assassin (Common): bit: a3016 -- c1390_蛇人の暗殺者(共通):払い噛み付き:a3016から", + "1390500": "The assassin of the c1390_ Snake (Shorty): Guard -- c1390_蛇人の暗殺者(ショーテル):ガード", + "1390600": "C1390_ Snake Assassin (short blade): Paris Throwing damage -- c1390_蛇人の暗殺者(短刃):パリィ投げダメージ", + "1390900": "C1390_ Snake Assassin (short blade): Paris -- c1390_蛇人の暗殺者(短刃):パリィする", + "1391010": "Assassin of the C1391_ (Kusarigama): A continuous attack 1-1 -- c1391_蛇人の暗殺者(鎖鎌):連続攻撃1-1", + "1391020": "Assassin of the C1391_ (Kusarigama): A continuous attack 1-2 -- c1391_蛇人の暗殺者(鎖鎌):連続攻撃1-2", + "1391030": "C1391_ (Kusarigama): Kusarigama Swing (Medium range) -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌振り下ろし(中距離)", + "1391031": "C1391_ (Kusarigama): Kusarigama Swing (medium range) [Chara Atari No] -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌振り下ろし(中距離)【キャラアタリ無】", + "1391032": "The assassin of the C1391_ (Kusarigama): Kusarigama Swing (medium range) [Return sickle] -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌振り下ろし(中距離)【戻り鎌】", + "1391040": "C1391_ (Kusarigama): Kusarigama Swing (long distance) -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌振り下ろし(遠距離)", + "1391041": "Assassins of C1391_ (Kusarigama): Kusarigama (long distance) [Chara Atari No] -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌振り下ろし(遠距離)【キャラアタリ無】", + "1391042": "The assassin of the C1391_ (Kusarigama): Kusarigama (long distance) [return sickle] -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌振り下ろし(遠距離)【戻り鎌】", + "1391050": "C1391_ Snake man Assassin (Kusarigama): Kusarigama -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌払い", + "1391051": "Assassins of C1391_ (Kusarigama): Kusarigama (Chain part) -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌払い【鎖部分】", + "1391052": "C1391_ Serpent Assassin (Kusarigama): Kusarigama (through sickle) -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌払い【貫通鎌】", + "1391060": "C1391_ Snake man Assassin (Kusarigama): Poison Mist -- c1391_蛇人の暗殺者(鎖鎌):毒霧", + "1391070": "C1391_ (Kusarigama): A reverse payment (wait) -- c1391_蛇人の暗殺者(鎖鎌):逆払い(待機)", + "1391080": "Assassins of C1391_ (Kusarigama): Swing Down (reverse posture) -- c1391_蛇人の暗殺者(鎖鎌):振り下ろし(逆払い姿勢)", + "1391090": "C1391_ Serpent Assassin (Kusarigama): Kusarigama (a3004 attitude) -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌払い(a3004姿勢)", + "1391091": "C1391_ (Kusarigama): Kusarigama (a3004 posture) [Chain part] -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌払い(a3004姿勢)【鎖部分】", + "1391092": "Assassins of C1391_ (Kusarigama): Kusarigama (a3004 posture) [through sickle] -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌払い(a3004姿勢)【貫通鎌】", + "1391100": "C1391_ Snake man Assassin (Kusarigama): Right side reverse payment -- c1391_蛇人の暗殺者(鎖鎌):右側面逆払い", + "1391110": "C1391_ Snake Assassin (kusarigama): Left side payment -- c1391_蛇人の暗殺者(鎖鎌):左側面払い", + "1391120": "C1391_ Snake man Assassin (Kusarigama): Front bit -- c1391_蛇人の暗殺者(鎖鎌):正面噛み付き", + "1391130": "C1391_ (Kusarigama): Kusarigama Swing down and strong (medium distance) -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌振り下ろし・強(中距離)", + "1391131": "Assassins of C1391_ (Kusarigama): Kusarigama, strong (medium range) [Chara Atari No] -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌振り下ろし・強(中距離)【キャラアタリ無】", + "1391132": "The assassin of the C1391_ (Kusarigama): Kusarigama Swing down and strong (medium range) [Return sickle] -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌振り下ろし・強(中距離)【戻り鎌】", + "1391140": "The assassin of the C1391_ (Kusarigama): Kusarigama Swing (medium distance) [Return sickle] -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌振り下ろし(中遠距離)【戻り鎌】", + "1391141": "The assassin of the C1391_ (Kusarigama): Kusarigama (long distance) [return sickle] -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌振り下ろし(遠距離)【戻り鎌】", + "1391150": "The assassin of the C1391_ (Kusarigama): Kusarigama Swing down and strong (medium distance) [Return sickle] -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌振り下ろし・強(中遠距離)【戻り鎌】", + "1391151": "The assassin of the C1391_ (Kusarigama): Kusarigama and strong (long distance) [return sickle] -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌振り下ろし・強(遠距離)【戻り鎌】", + "1391200": "C1391_ Snake man Assassin (Kusarigama): Throwing -- c1391_蛇人の暗殺者(鎖鎌):投げ", + "1391201": "C1391_ Snake man Assassin (Kusarigama): Throwing damage -- c1391_蛇人の暗殺者(鎖鎌):投げダメージ", + "1410100": "c1410: Silver Knight: Slashing 1 (sword) -- c1410:銀騎士:斬撃1(剣)", + "1410101": "c1410: Silver Knight: Slashing 2 (sword) -- c1410:銀騎士:斬撃2(剣)", + "1410102": "c1410: Silver Knight: Slashing 3 (sword) -- c1410:銀騎士:斬撃3・連(剣)", + "1410103": "c1410: Silver Knight: Slashing 3/strength (sword) -- c1410:銀騎士:斬撃3・強(剣)", + "1410104": "c1410: Silver Knight: Thrust: Reverse Kesa Posture -- c1410:銀騎士:突き:逆袈裟姿勢", + "1410110": "c1410: Silver Knight: Depression Slashing (sword) -- c1410:銀騎士:踏み込み斬撃(剣)", + "1410120": "c1410: Silver Knight: Swing Down (sword) -- c1410:銀騎士:振り下ろし(剣)", + "1410130": "c1410: Silver Knight: Thrusting (sword) -- c1410:銀騎士:突き(剣)", + "1410140": "c1410: Silver Knights: Breaking with shields -- c1410:銀騎士:盾で崩す", + "1410150": "c1410: Silver Knight: Jump swing Down: Wait -- c1410:銀騎士:ジャンプ振り下ろし:待機", + "1410151": "c1410: Silver Knight: Jump swing Down: a3015 posture -- c1410:銀騎士:ジャンプ振り下ろし:a3015姿勢", + "1410160": "c1410: Silver Knight: Twist behind: Wait -- c1410:銀騎士:後ろひねり斬り:待機", + "1410170": "c1410: Silver Knight: Slash: Wait -- c1410:銀騎士:斬り下がり:待機", + "1410200": "c1410: Silver Knight: Thrust 1 (spear) -- c1410:銀騎士:突き1(槍)", + "1410201": "c1410: Silver Knight: Thrust 2 (Spear) -- c1410:銀騎士:突き2(槍)", + "1410202": "c1410: Silver Knight: Thrust 3/strong (spear) -- c1410:銀騎士:突き3・強(槍)", + "1410210": "c1410: Silver Knight: a stepping Spear -- c1410:銀騎士:踏み込み突き(槍)", + "1410220": "c1410: Silver Knight: Nagi (Spear) -- c1410:銀騎士:なぎ払い・強(槍)", + "1410221": "c1410: Silver Knight: Thrust from Nagi (spear) -- c1410:銀騎士:なぎ払いから突き(槍)", + "1410230": "c1410: Silver Knight: Destroy with Shield (spear) -- c1410:銀騎士:盾で崩す(槍)", + "1410240": "c1410: Silver Knight: Step back -- c1410:銀騎士:バックステップ払い", + "1410250": "c1410: Silver Knight: Small boost thrust -- c1410:銀騎士:小ブースト突き", + "1410260": "c1410: Silver Knight: Dragon Hunt thrust 1 -- c1410:銀騎士:竜狩り突き1", + "1410261": "c1410: Silver Knight: Dragon Hunt thrust 2 -- c1410:銀騎士:竜狩り突き2", + "1410270": "c1410: Silver Knight: Behind both hands: waiting -- c1410:銀騎士:背後両手払い:待機", + "1410300": "c1410: Silver Knight: Miyakonojo -- c1410:銀騎士:大弓発射", + "1410310": "c1410: Silver Knight: Miyakonojo -- c1410:銀騎士:大弓強射", + "1410500": "c1410: Silver Knight Guard -- c1410:銀騎士ガード", + "1470010": "c1470_ Wheel skeleton: Beat by hand (right hand) -- c1470_車輪スケルトン:手で殴る(右手)", + "1470011": "c1470_ Wheel skeleton: Beat by hand (left hand) -- c1470_車輪スケルトン:手で殴る(左手)", + "1470020": "c1470_ wheel skeleton: transformed into a wheel -- c1470_車輪スケルトン:車輪に変身", + "1470100": "c1470_ Wheel Skeleton: rotation -- c1470_車輪スケルトン:回転", + "2000010": "Wolf of c2000_: a flying attack -- c2000_蝕のオオカミ:飛びかかり攻撃", + "2000020": "Wolf of c2000_: Tackle attack -- c2000_蝕のオオカミ:タックル攻撃", + "2000030": "Wolf of c2000_: feint bite attack -- c2000_蝕のオオカミ:フェイント噛みつき攻撃", + "2000040": "Wolf of c2000_: Forward bit -- c2000_蝕のオオカミ:前方噛み付き", + "2000050": "Wolf of c2000_: Inverted attack on the belly -- c2000_蝕のオオカミ:腹下反転攻撃", + "2000060": "Wolf of c2000_: Right reversal attack -- c2000_蝕のオオカミ:右反転攻撃", + "2000070": "Wolf of c2000_: Left reversal attack -- c2000_蝕のオオカミ:左反転攻撃", + "2000080": "Wolf of c2000_: Falling bit -- c2000_蝕のオオカミ:噛み付き下がり", + "2000090": "Wolf of c2000_: bit back step -- c2000_蝕のオオカミ:噛み付きバックステップ", + "2000100": "Wolf of c2000_: Forward bit 2 -- c2000_蝕のオオカミ:前方噛み付き2", + "2000160": "Wolf of c2000_: 180 degrees turn -- c2000_蝕のオオカミ:180度ターン", + "2000170": "Wolf of c2000_: Right -- c2000_蝕のオオカミ:右旋回", + "2000180": "Wolf of c2000_: Left -- c2000_蝕のオオカミ:左旋回", + "2000190": "C2000_ 's Wolf: Walking _ before -- c2000_蝕のオオカミ:歩行_前", + "2000200": "Wolf of c2000_: Running before -- c2000_蝕のオオカミ:走行_前", + "2000300": "c2000_ (heat up): depression right Saigi -- c2000_蝕のオオカミ(ヒートアップ):踏み込み右薙ぎ払い", + "2000310": "c2000_ Wolf (heat up): Melee Combo: Right Saigi -- c2000_蝕のオオカミ(ヒートアップ):近接コンボ:右薙ぎ払い", + "2000320": "c2000_ Wolf (heat up): Melee Combo: Left Saigi -- c2000_蝕のオオカミ(ヒートアップ):近接コンボ:左薙ぎ払い", + "2000330": "c2000_ Wolf (heat up): Melee Combo: knocked back against -- c2000_蝕のオオカミ(ヒートアップ):近接コンボ:叩き付け", + "2000350": "c2000_ (heat up): attack from a 180-degree turn -- c2000_蝕のオオカミ(ヒートアップ):180度ターンからの攻撃", + "2000360": "c2000_ Wolf (heat up): Dash left -- c2000_蝕のオオカミ(ヒートアップ):ダッシュ左切り抜け", + "2000370": "c2000_ Wolf (heat up): Melee Combo: Left Saigi right 90 ° turn -- c2000_蝕のオオカミ(ヒートアップ):近接コンボ:左薙ぎ払い右90°ターン", + "2000380": "c2000_ Wolf (heat up): Melee Combo: Right Saigi left 90 ° turn -- c2000_蝕のオオカミ(ヒートアップ):近接コンボ:右薙ぎ払い左90°ターン", + "2000390": "Wolf of c2000_ (heat up): Left Kiri left 180 ° turn -- c2000_蝕のオオカミ(ヒートアップ):左切り払い左180°ターン", + "2000400": "c2000_ Wolf (heat up): Long distance Combo: Jump Butt -- c2000_蝕のオオカミ(ヒートアップ):遠距離コンボ:ジャンプ突き", + "2000410": "Wolf of c2000_ (heat up): Long distance Combo: knocked back against -- c2000_蝕のオオカミ(ヒートアップ):遠距離コンボ:叩き付け", + "2000420": "Wolf of c2000_ (heat up): Long distance Combo: Left Saigi -- c2000_蝕のオオカミ(ヒートアップ):遠距離コンボ:左薙ぎ払い", + "2000430": "Wolf of c2000_ (heat up): 180 degree turn attack -- c2000_蝕のオオカミ(ヒートアップ):180度ターン攻撃", + "2000440": "Wolf of c2000_ (heat up): Right reversal attack -- c2000_蝕のオオカミ(ヒートアップ):右反転攻撃", + "2000450": "Wolf of c2000_ (heat up): Left reversal attack -- c2000_蝕のオオカミ(ヒートアップ):左反転攻撃", + "2020010": "C2020_ dead Dog (normal): Bite 1 -- c2020_亡者犬(通常):噛みつき1", + "2020011": "C2020_ dead Dog (normal): Bite 2 -- c2020_亡者犬(通常):噛みつき2", + "2020020": "C2020_ dead Dog (normal): The flight from the suspended state -- c2020_亡者犬(通常):止まった状態からの飛びかかり", + "2020030": "C2020_ dead Dog (normal): Jump from running -- c2020_亡者犬(通常):走行からの飛びかかり", + "2020040": "C2020_ dead Dog (normal): bit combo First stage: from the Run -- c2020_亡者犬(通常):噛み付きコンボ1段目:走りから", + "2020050": "C2020_ dead Dog (normal): jump (Long distance) -- c2020_亡者犬(通常):飛びかかり(遠距離)", + "2020060": "C2020_ dead Dog (usually): from running (long distance) -- c2020_亡者犬(通常):飛びかかり(遠距離):走りから", + "2020070": "C2020_ dead Dog (normal): left curve bit -- c2020_亡者犬(通常):左カーブ噛み付き", + "2020080": "C2020_ dead Dog (normal): right curve bit -- c2020_亡者犬(通常):右カーブ噛み付き", + "2020110": "c2290_ Salivan Guard Dog: Bite 1 -- c2290_サリヴァーンの番犬:噛みつき1", + "2020111": "c2290_ Salivan watchdog: Bite 2 -- c2290_サリヴァーンの番犬:噛みつき2", + "2020120": "C2290_ Salivan's Guard dog: jumping from a parked state -- c2290_サリヴァーンの番犬:止まった状態からの飛びかかり", + "2020130": "C2290_ Salivan's Guard Dog: jumping from running -- c2290_サリヴァーンの番犬:走行からの飛びかかり", + "2020140": "c2290_ Salivan watchdog: bit combo first stage: from the Run -- c2290_サリヴァーンの番犬:噛み付きコンボ1段目:走りから", + "2020150": "c2290_ Salivan Guard Dog: Jump (long distance) -- c2290_サリヴァーンの番犬:飛びかかり(遠距離)", + "2020160": "c2290_ Salivan Guard Dog: Jump (Long distance): from running -- c2290_サリヴァーンの番犬:飛びかかり(遠距離):走りから", + "2020170": "C2290_ Salivan guard dogs: Left curve bit -- c2290_サリヴァーンの番犬:左カーブ噛み付き", + "2020180": "c2290_ Salivan Guard Dog: right curve bit -- c2290_サリヴァーンの番犬:右カーブ噛み付き", + "2021010": "C2021_ dead Dog (small): Bite 1 -- c2021_亡者犬(小):噛みつき1", + "2021011": "C2021_ dead Dog (small): Bite 2 -- c2021_亡者犬(小):噛みつき2", + "2021020": "C2021_ dead Dog (small): Jump from a stopped state -- c2021_亡者犬(小):止まった状態からの飛びかかり", + "2021030": "C2021_ dead Dog (small): Jump from running -- c2021_亡者犬(小):走行からの飛びかかり", + "2021040": "C2021_ dead Dog (small): bit combo First stage: from the Run -- c2021_亡者犬(小):噛み付きコンボ1段目:走りから", + "2021050": "C2021_ dead Dog (small): jump (Long distance) -- c2021_亡者犬(小):飛びかかり(遠距離)", + "2021060": "C2021_ dead Dog (small): from running (long distance) -- c2021_亡者犬(小):飛びかかり(遠距離):走りから", + "2021070": "C2021_ dead Dog (small): left curve bit -- c2021_亡者犬(小):左カーブ噛み付き", + "2021080": "C2021_ dead Dog (small): right curve bit -- c2021_亡者犬(小):右カーブ噛み付き", + "2030110": "c2030_ Salivan Reaper: Combo 1-1 One-handed rounding ① -- c2030_サリヴァーンの死神:コンボ1-1片手切り上げ①", + "2030120": "c2030_ Salivan Reaper: Combo 1-2 one handed rounding ② -- c2030_サリヴァーンの死神:コンボ1-2片手切り上げ②", + "2030130": "c2030_ Salivan Reaper: Combo 1-3 Hand Saigi -- c2030_サリヴァーンの死神:コンボ1-3片手薙ぎ払い", + "2030140": "C2030_ Salivan's death: a distance-packed attack -- c2030_サリヴァーンの死神:距離詰め攻撃", + "2030150": "c2030_ Salivan Reaper: Combo 2-1 reverse Kesa cut ① -- c2030_サリヴァーンの死神:コンボ2-1逆袈裟切り①", + "2030160": "c2030_ Salivan Reaper: Combo 2-2 reverse Kesa cut ② -- c2030_サリヴァーンの死神:コンボ2-2逆袈裟切り②", + "2030170": "c2030_ Salivan Reaper: Combo 2-3 Hand Rounding -- c2030_サリヴァーンの死神:コンボ2-3片手切り上げ", + "2030180": "c2030_ Salivan Reaper: Combo 2-4 Hand Saigi -- c2030_サリヴァーンの死神:コンボ2-4片手薙ぎ払い", + "2030190": "C2030_ Salivan's death: Strong attack -- c2030_サリヴァーンの死神:強攻撃", + "2030210": "C2030_ Salivan's death: the Revolving arts -- c2030_サリヴァーンの死神:回転アーツ", + "2030220": "The death of c2030_ Salivan: the rotating arts (finish) -- c2030_サリヴァーンの死神:回転アーツ(フィニッシュ)", + "2030310": "c2030_ Salivan Reaper: Combo 1-1 Both hands rounded up ①: Blade -- c2030_サリヴァーンの死神:コンボ1-1両手切り上げ①:刃", + "2030311": "c2030_ Salivan Reaper: Combo 1-1 Both hands rounded up ①: hilt -- c2030_サリヴァーンの死神:コンボ1-1両手切り上げ①:柄", + "2030320": "c2030_ Salivan Reaper: Combo 1-2 Hands up ②: Blade -- c2030_サリヴァーンの死神:コンボ1-2両手切り上げ②:刃", + "2030321": "c2030_ Salivan Reaper: Combo 1-2 hands-up ②: Handle -- c2030_サリヴァーンの死神:コンボ1-2両手切り上げ②:柄", + "2030330": "c2030_ Salivan Reaper: Combo 1-3 One handed rounding ①: Blade -- c2030_サリヴァーンの死神:コンボ1-3片手切り上げ①:刃", + "2030331": "c2030_ Salivan Reaper: Combo 1-3 One handed rounding ①: hilt -- c2030_サリヴァーンの死神:コンボ1-3片手切り上げ①:柄", + "2030340": "c2030_ Salivan Reaper: Combo 1-4 hand rounded ②: Blade -- c2030_サリヴァーンの死神:コンボ1-4片手切り上げ②:刃", + "2030341": "c2030_ Salivan Reaper: Combo 1-4 One handed rounding ②: hilt -- c2030_サリヴァーンの死神:コンボ1-4片手切り上げ②:柄", + "2030350": "c2030_ Salivan Reaper: Combo 1-5 Two-handed devaluation: Blade -- c2030_サリヴァーンの死神:コンボ1-5両手切り下げ:刃", + "2030351": "The death of c2030_ Salivan: Combo 1-5 Two-handed devaluation: hilt -- c2030_サリヴァーンの死神:コンボ1-5両手切り下げ:柄", + "2030360": "c2030_ Salivan Reaper: Combo 2-1 hands down: Blade -- c2030_サリヴァーンの死神:コンボ2-1両手踏み込み切り:刃", + "2030361": "c2030_ Salivan Reaper: Combo 2-1 hands down: Handle -- c2030_サリヴァーンの死神:コンボ2-1両手踏み込み切り:柄", + "2030370": "c2030_ Salivan Reaper: Combo 2-2 hand Saigi: Blade -- c2030_サリヴァーンの死神:コンボ2-2片手薙ぎ払い:刃", + "2030371": "c2030_ Salivan Reaper: Combo 2-2 hand Saigi: Hilt -- c2030_サリヴァーンの死神:コンボ2-2片手薙ぎ払い:柄", + "2030380": "C2030_ Salivan's death: two-handed distance-packed attack: Blade -- c2030_サリヴァーンの死神:両手距離詰め攻撃:刃", + "2030381": "C2030_ Salivan's death: two-handed distance-packed attack: hilt -- c2030_サリヴァーンの死神:両手距離詰め攻撃:柄", + "2030390": "c2030_ Salivan Reaper: Combo 3-1 Two-handed attack: Blade -- c2030_サリヴァーンの死神:コンボ3-1両手引き寄せ攻撃:刃", + "2030391": "c2030_ Salivan Reaper: Combo 3-1 hand-drawn attack: hilt -- c2030_サリヴァーンの死神:コンボ3-1両手引き寄せ攻撃:柄", + "2030400": "c2030_ Salivan Reaper: Combo 3-2 both hands Saigi: Blade -- c2030_サリヴァーンの死神:コンボ3-2両手薙ぎ払い:刃", + "2030401": "c2030_ Salivan Reaper: Combo 3-2 Both hands Saigi: hilt -- c2030_サリヴァーンの死神:コンボ3-2両手薙ぎ払い:柄", + "2030410": "c2030_ Salivan Reaper: Combo 3-3 Two-handed lift: Blade -- c2030_サリヴァーンの死神:コンボ3-3両手斬り上げ:刃", + "2030411": "C2030_ Salivan's death: Combo 3-3 Hands up: Handle -- c2030_サリヴァーンの死神:コンボ3-3両手斬り上げ:柄", + "2030420": "The death of c2030_ Salivan: A round attack: Blade -- c2030_サリヴァーンの死神:回りこみ攻撃:刃", + "2030421": "The death of c2030_ Salivan: A round attack: pattern -- c2030_サリヴァーンの死神:回りこみ攻撃:柄", + "2030430": "c2030_ Salivan Reaper: Extrusion attack: Blade -- c2030_サリヴァーンの死神:押し出し攻撃:刃", + "2030431": "c2030_ Salivan Reaper: Extruded attack: Hilt -- c2030_サリヴァーンの死神:押し出し攻撃:柄", + "2030440": "C2030_ Salivan's Reaper: Distance packed strong attack: Blade -- c2030_サリヴァーンの死神:距離詰め強攻撃:刃", + "2030450": "C2030_ Salivan's death: [Miracle] dark Moon Light Sword -- c2030_サリヴァーンの死神:【奇跡】暗月の光の剣", + "2030900": "C2030_ Salivan's Reaper: (spear) Shield -- c2030_サリヴァーンの死神:(槍)盾", + "2040100": "Right hand slams -- 右手叩きつけ", + "2040110": "Left hand slams -- 左手叩きつけ", + "2040120": "Right hand finish -- 右手フィニッシュ", + "2040130": "Rising body Press -- 立ち上がりボディプレス", + "2040140": "Right direction -- 倒れ込み(右方向)", + "2040150": "Collapsed (right direction) ② -- 倒れ込み(右方向)②", + "2040160": "Fall Down (left) -- 倒れ込み(左方向)", + "2040170": "Collapsed (left direction) ② -- 倒れ込み(左方向)②", + "2040180": "Butt Press -- お尻プレス", + "2040200": "Start throwing -- 投げ始動", + "2040201": "Throwing attack (no pressure) -- 投げ攻撃(圧迫ダメ―ジ)", + "2040202": "Throwing attack (finish) -- 投げ攻撃(フィニッシュ)", + "2040210": "Right payment -- 右払い", + "2040220": "Left payment -- 左払い", + "2060010": "Right whack -- 右手薙ぎ", + "2060020": "Left hand Whack -- 左手薙ぎ", + "2060030": "Throwing start technique (jumped) -- 投げ始動技(飛びつき)", + "2060040": "Throwing start Technique (melee) -- 投げ始動技(近接)", + "2060070": "Rush _1 -- ラッシュ_1段目", + "2060080": "Melee Maggots -- 近接ウジ吐き", + "2060090": "Body throwing -- 本体出現投げ", + "2060100": "Throwing attack (pressure damage) -- 投げ攻撃(圧迫ダメージ)", + "2070010": "C2070_ Prisoner of the Dungeon (bare hands): Right hand scratching ① -- c2070_地下牢の囚人(素手):右手引っ掻き①", + "2070020": "C2070_ Prisoner of the Dungeon (bare hands): Right hand scratching ② -- c2070_地下牢の囚人(素手):右手引っ掻き②", + "2070030": "Prisoner of c2070_ Dungeon (bare hands): Left hand scratching -- c2070_地下牢の囚人(素手):左手引っ掻き", + "2070040": "Prisoner of c2070_ Dungeon (bare hands): continuous scratching ① -- c2070_地下牢の囚人(素手):連続引っ掻き①", + "2070041": "Prisoner of c2070_ Dungeon (bare hands): continuous scratching ② -- c2070_地下牢の囚人(素手):連続引っ掻き②", + "2070042": "Prisoner of c2070_ Dungeon (bare hands): continuous scratching ③ -- c2070_地下牢の囚人(素手):連続引っ掻き③", + "2070043": "Prisoner of c2070_ Dungeon (bare hands): continuous scratching ④ -- c2070_地下牢の囚人(素手):連続引っ掻き④", + "2070060": "C2070_ Prisoner of the Dungeon (bare hands): Grab attack ① -- c2070_地下牢の囚人(素手):掴み攻撃①", + "2070070": "C2070_ Prisoner of the Dungeon (bare hands): Grab attack ② -- c2070_地下牢の囚人(素手):掴み攻撃②", + "2070080": "Prisoner of the c2070_ Dungeon (bare hands): Fall attack -- c2070_地下牢の囚人(素手):倒れ込み攻撃", + "2070090": "C2070_ Prisoner of the Dungeon (bare hands): jumping -- c2070_地下牢の囚人(素手):跳びかかり", + "2070200": "Prisoner of the C2070_ Dungeon (Spear): poked ① -- c2070_地下牢の囚人(槍):突き①", + "2070210": "Prisoner of the C2070_ Dungeon (Spear): poked ② -- c2070_地下牢の囚人(槍):突き②", + "2070220": "C2070_ Prisoner of the Dungeon (Spear): Thrust down -- c2070_地下牢の囚人(槍):突き下ろし", + "2070230": "Prisoner of the C2070_ Dungeon (spear): Saigi -- c2070_地下牢の囚人(槍):薙ぎ払い", + "2070240": "Prisoner of c2070_ Dungeon (Spear): Left hand scratching -- c2070_地下牢の囚人(槍):左手引っ掻き", + "2070260": "Prisoner of the C2070_ Dungeon (Spear): Dragon Weapon (weapon) -- c2070_地下牢の囚人(槍):ドラゴンウェポン(武器)", + "2070400": "Prisoner of the c2070_ Dungeon (Dagger): Crossing ① -- c2070_地下牢の囚人(短剣):横切り①", + "2070410": "Prisoner of the c2070_ Dungeon (Dagger): Crossing ② -- c2070_地下牢の囚人(短剣):横切り②", + "2070420": "Prisoner of the c2070_ Dungeon (Dagger): Crossing ③ -- c2070_地下牢の囚人(短剣):横切り③", + "2070430": "Prisoner of the c2070_ Dungeon (Dagger): Cut down ① -- c2070_地下牢の囚人(短剣):切り下ろし①", + "2070440": "Prisoner of the c2070_ Dungeon (Dagger): Cut down ② -- c2070_地下牢の囚人(短剣):切り下ろし②", + "2070450": "Prisoner of the c2070_ Dungeon (Dagger): Continuous thrust ① -- c2070_地下牢の囚人(短剣):連続突き①", + "2070451": "Prisoner of the c2070_ Dungeon (Dagger): Continuous thrust ② -- c2070_地下牢の囚人(短剣):連続突き②", + "2070452": "Prisoner of the c2070_ Dungeon (Dagger): Continuous thrust ③ -- c2070_地下牢の囚人(短剣):連続突き③", + "2070470": "Prisoner of c2070_ Dungeon (Dagger): Continuous slash ① -- c2070_地下牢の囚人(短剣):連続斬り①", + "2070471": "Prisoner of c2070_ Dungeon (Dagger): Continuous slash ② -- c2070_地下牢の囚人(短剣):連続斬り②", + "2070472": "Prisoner of c2070_ Dungeon (Dagger): Continuous slash ③ -- c2070_地下牢の囚人(短剣):連続斬り③", + "2070473": "Prisoner of c2070_ Dungeon (Dagger): Continuous slash ④ -- c2070_地下牢の囚人(短剣):連続斬り④", + "2070700": "Breath -- ブレス", + "2070710": "Dragon Weapon (Magic) -- ドラゴンウェポン(魔法)", + "2080100": "C2080_ dead Dog (maggots belly): Bite 1 -- c2080_亡者犬(蛆腹):噛みつき1", + "2080110": "C2080_ dead Dog (maggots belly): Bite 2 -- c2080_亡者犬(蛆腹):噛みつき2", + "2080120": "C2080_ dead Dog (maggots belly): Bite rush -- c2080_亡者犬(蛆腹):噛みつきラッシュ", + "2080130": "C2080_ dead Dog (Maggots belly): Poison blood spitting -- c2080_亡者犬(蛆腹):毒血吐き", + "2080140": "C2080_ dead Dog (maggots belly): throwing transition -- c2080_亡者犬(蛆腹):投げ遷移", + "2080141": "C2080_ dead Dog (maggots belly): throwing (squeezing) -- c2080_亡者犬(蛆腹):投げ(圧迫)", + "2090100": "c2090_ Dragon: Lining -- c2090_竜の御使:裏打ち", + "2090110": "c2090_ Dragon: Attack _1 on the spot -- c2090_竜の御使:その場で伸びる攻撃_1撃目", + "2090111": "c2090_ Dragon: Attack on the spot -- c2090_竜の御使:その場で伸びる攻撃_2撃目", + "2090120": "The use of the c2090_ Dragon: a stretch attack -- c2090_竜の御使:伸びる攻撃", + "2090130": "The use of the c2090_ Dragon: Thrusting stick -- c2090_竜の御使:杖突き刺し", + "2090140": "The c2090_ of the Dragon: the tail payment _ the whole tail -- c2090_竜の御使:尻尾払い_尻尾全体", + "2090141": "c2090_ Dragon: Tail tip -- c2090_竜の御使:尻尾払い_尻尾先端", + "2090150": "The use of the c2090_ Dragon: the reservoir beating -- c2090_竜の御使:溜め叩き潰し", + "2090160": "c2090_ Dragon: Additional payment -- c2090_竜の御使:追加払い", + "2090170": "c2090_ Dragon: knocked back against -- c2090_竜の御使:叩き付け", + "2090180": "The use of the c2090_ Dragon: trampling weapons -- c2090_竜の御使:踏みつけ_武器", + "2090181": "The use of the c2090_ Dragon: trampled left foot -- c2090_竜の御使:踏みつけ_左足", + "2090182": "The use of c2090_ Dragon: trampling _ right foot -- c2090_竜の御使:踏みつけ_右足", + "2090183": "The use of the c2090_ Dragon: Trampling _ Body -- c2090_竜の御使:踏みつけ_身体", + "2090190": "c2090_ Dragon: Baby -- c2090_竜の御使:あかちゃんつぶし", + "2090300": "c2090_ Dragon: Neck whack Bit -- c2090_竜の御使:首薙ぎ噛み付き", + "2090301": "c2090_ Dragon: Neck whack Bit chase -- c2090_竜の御使:首薙ぎ噛み付き・追撃", + "2090310": "c2090_ Dragon: Front Jump bit _ mouth -- c2090_竜の御使:前ジャンプ噛み付き_口", + "2090311": "c2090_ Dragon: Front Jump bit _ left hand -- c2090_竜の御使:前ジャンプ噛み付き_左手", + "2090312": "c2090_ Dragon: Front Jump bit _ right hand -- c2090_竜の御使:前ジャンプ噛み付き_右手", + "2090313": "c2090_ Dragon: Front jump bit body -- c2090_竜の御使:前ジャンプ噛み付き_身体", + "2090320": "c2090_ Dragon: Crush -- c2090_竜の御使:叩き潰し", + "2090330": "c2090_ Dragon: Whack Bit _ whack -- c2090_竜の御使:薙ぎ噛み付き_薙ぎ", + "2090331": "c2090_ Dragon: Whack bit _ bite -- c2090_竜の御使:薙ぎ噛み付き_噛みつき", + "2090340": "The use of c2090_ Dragon: Rush -- c2090_竜の御使:突進", + "2090341": "C2090_ Dragon: Rush _ Bite -- c2090_竜の御使:突進_噛みつき", + "2090350": "c2090_ Dragon: Through inversion _ bite -- c2090_竜の御使:通り抜け反転_噛みつき", + "2090351": "The use of the c2090_ Dragon: through inversion _ body -- c2090_竜の御使:通り抜け反転_身体", + "2090360": "c2090_ Dragon: Tail Saigi 360 ° _ Tail -- c2090_竜の御使:尻尾薙ぎ払い360°_尻尾", + "2090361": "c2090_ Dragon: 360 ° _ Body Saigi Tail -- c2090_竜の御使:尻尾薙ぎ払い360°_身体", + "2090370": "The Angel of the c2090_ Dragon: Tail turned tail -- c2090_竜の御使:尻尾振り向き_尻尾", + "2090371": "c2090_ Dragon: Tail turned _ slams -- c2090_竜の御使:尻尾振り向き_叩きつけ", + "2090380": "c2090_ Dragon: Standing rampage _ Bite -- c2090_竜の御使:立ち暴れ_噛みつき", + "2090381": "c2090_ Dragon: Standing rampage _1 -- c2090_竜の御使:立ち暴れ_1撃目", + "2090382": "c2090_ Dragon: Standing rampage -- c2090_竜の御使:立ち暴れ_2撃目", + "2090383": "c2090_ Dragon: Standing Rampage _3 -- c2090_竜の御使:立ち暴れ_3撃目", + "2090384": "c2090_ Dragon: Standing rampage _4 -- c2090_竜の御使:立ち暴れ_4撃目", + "2090385": "c2090_ Dragon: Standing rampage _5 -- c2090_竜の御使:立ち暴れ_5撃目", + "2090390": "c2090_ Dragon: Airborne Breath _ Body -- c2090_竜の御使:空中ブレス_身体", + "2090391": "c2090_ Dragon: Aerial Breath _ Right hand -- c2090_竜の御使:空中ブレス_右手", + "2090392": "c2090_ Dragon: Aerial Breath _ Left hand -- c2090_竜の御使:空中ブレス_左手", + "2090700": "The use of c2090_ Dragon: Straight Breath -- c2090_竜の御使:直線ブレス", + "2090710": "The use of c2090_ Dragon: Whack Breath -- c2090_竜の御使:薙ぎブレス", + "2090720": "c2090_ Dragon: Aerial Breath -- c2090_竜の御使:空中ブレス", + "2100100": "c2100_ drifting: A flying attack -- c2100_漂うもの:飛びかかり攻撃", + "2100110": "c2100_ drifting: Jump-throwing transition -- c2100_漂うもの:ジャンプ投げ遷移", + "2100120": "c2100_ drifting: Rising dash attack -- c2100_漂うもの:立ち上がりダッシュ攻撃", + "2100130": "c2100_ drifting: The right hand one that rages on the spot -- c2100_漂うもの:その場で暴れる右手1", + "2100131": "c2100_ drifting: Right hand 2_1 on the spot -- c2100_漂うもの:その場で暴れる右手2_1", + "2100132": "c2100_ drifting: Right hand 2_2 on the spot -- c2100_漂うもの:その場で暴れる右手2_2", + "2100133": "c2100_ drifting: The right hand that rages on the spot -- c2100_漂うもの:その場で暴れる右手3", + "2100134": "c2100_ drifting: The right hand that rages on the spot 7 -- c2100_漂うもの:その場で暴れる右手7", + "2100135": "c2100_ drifting: Right hand 9_1 on the spot -- c2100_漂うもの:その場で暴れる右手9_1", + "2100136": "c2100_ drifting: Right hand 9_2 on the spot -- c2100_漂うもの:その場で暴れる右手9_2", + "2100137": "c2100_: A violent right hand on the spot 10 -- c2100_漂うもの:その場で暴れる右手10", + "2100138": "c2100_ drifting: One left hand violent on the spot -- c2100_漂うもの:その場で暴れる左手1", + "2100139": "c2100_ drifting: The left hand 2_1 violent on the spot -- c2100_漂うもの:その場で暴れる左手2_1", + "2100140": "c2100_ drifting: The left hand 2_2 violent on the spot -- c2100_漂うもの:その場で暴れる左手2_2", + "2100141": "c2100_ drifting: The left hand violent on the spot -- c2100_漂うもの:その場で暴れる左手3", + "2100142": "c2100_ drifting: The left hand violent on the spot 4 -- c2100_漂うもの:その場で暴れる左手4", + "2100143": "c2100_ drifting: The left hand nine violent on the spot -- c2100_漂うもの:その場で暴れる左手9", + "2100144": "C2100_: The left hand ten violent on the spot -- c2100_漂うもの:その場で暴れる左手10", + "2100700": "c2100_ Drifting stuff: spitting -- c2100_漂うもの:吐き", + "2110010": "Bite 1 -- かみつき1", + "2110020": "Bite 2 -- かみつき2", + "2110030": "Kari -- 飛び掛かり", + "2110040": "Scratching -- 引っ掻き", + "2110050": "Per -- 体当たり", + "2110060": "Large bite -- 大口噛みつき", + "2120010": "Right scratching -- 右引っ掻き", + "2120020": "Left scratching -- 左引っ掻き", + "2120030": "Pre Kick -- 前蹴り", + "2120040": "Rolling Sobat -- ローリングソバット", + "2120050": "Hug: Throwing Start -- 抱きつく:投げ始動", + "2120051": "Hug: Throwing damage -- 抱きつく:投げダメージ", + "2120110": "Jumped: Throwing start -- 飛びつき:投げ始動", + "2120111": "Jumped: Throwing damage -- 飛びつき:投げダメージ", + "2120120": "Rear bit: Throwing start -- 背面噛み付き:投げ始動", + "2120121": "Rear bit: Throw damage -- 背面噛み付き:投ダメージ", + "2120130": "Spitting Spit -- 唾吐き", + "2120210": "Mimicry throw 1: Start throwing -- 擬態投げ1:投げ始動", + "2120211": "Mimicry throw 1: Throwing damage -- 擬態投げ1:投げダメージ", + "2120220": "Mimicry throw 2: Start throwing -- 擬態投げ2:投げ始動", + "2120221": "Mimicry throw 2: Throwing damage -- 擬態投げ2:投ダメージ", + "2130010": "Before ① to shove a bone -- 骨を突き出す① 前", + "2130020": "After ② to shove the bone -- 骨を突き出す② 後", + "2130030": "Shove a bone in all directions -- 全方向に骨を突き出す", + "2130040": "Falling into a crowded attack -- 倒れこみ攻撃", + "2130041": "Fallen into a crowded attack -- 倒れこみ攻撃_投げ", + "2130050": "③ left to shove bones -- 骨を突き出す③ 左", + "2130060": "④ right to shove a bone -- 骨を突き出す④ 右", + "2130070": "Special waiting → Drop throw judgment -- 特殊待機→落下投げ 判定", + "2130071": "Special wait → drop throwing -- 特殊待機→落下投げ 投げ", + "2140010": "Petrified Breath -- 石化ブレス", + "2140020": "Jump & Breath -- ジャンプ&ブレス", + "2140021": "Jump & Breath Landing -- ジャンプ&ブレス 着弾", + "2150010": "Disappear -- 消える", + "2160010": "① (small): hitting with a cane -- 蝕を呼ぶもの(小):杖で殴る①", + "2160011": "② (small): hitting with a cane -- 蝕を呼ぶもの(小):杖で殴る②", + "2180010": "c2180_ Maggots: Head Butt -- c2180_蛆人:頭突き", + "2180020": "C2180_ Maggots: Heavily -- c2180_蛆人:のしかかり", + "2180030": "c2180_ Maggots: Kari -- c2180_蛆人:飛び掛かり", + "2180031": "C2180_ maggots: Jumping two steps -- c2180_蛆人:跳びかかり2段", + "2180040": "C2180_ Maggots: Vomit spitting -- c2180_蛆人:ゲロ吐き", + "2180050": "C2180_ Maggots: high-speed Shaktori scratching (Shidara) -- c2180_蛆人:高速シャクトリ引っかき(四段目)", + "2180110": "C2180_ Maggots: Magic -- c2180_蛆人:魔法", + "2180200": "C2180_ Maggots: Fire spreading -- c2180_蛆人:延焼", + "2190100": "C2190_ Gargoyle (Light): Saigi [Weapon] -- c2190_ガーゴイル(灯火):薙ぎ払い【武器】", + "2190110": "C2190_ Gargoyle (Light): slams [weapon] -- c2190_ガーゴイル(灯火):叩きつけ【武器】", + "2190120": "C2190_ Gargoyle (Light): Guard posture: slams [weapon] -- c2190_ガーゴイル(灯火):ガード体勢:叩きつけ【武器】", + "2190130": "C2190_ Gargoyle (Light): Guard Posture: Large ignition [weapon] -- c2190_ガーゴイル(灯火):ガード体勢:大発火【武器】", + "2190140": "C2190_ Gargoyle (Light): Slams from the sky [weapon] -- c2190_ガーゴイル(灯火):上空から叩きつけ【武器】", + "2190141": "C2190_ Gargoyle (Light): Slams from the sky [body] -- c2190_ガーゴイル(灯火):上空から叩きつけ【体】", + "2190150": "C2190_ Gargoyle (Light): Fire attack from above [weapon] -- c2190_ガーゴイル(灯火):上空から発火攻撃【武器】", + "2190151": "C2190_ Gargoyle (Light): Fire attack from the sky [body] -- c2190_ガーゴイル(灯火):上空から発火攻撃【体】", + "2190160": "C2190_ Gargoyle (Light): Inverted from the sky [weapon] -- c2190_ガーゴイル(灯火):上空から反転して叩きつけ【武器】", + "2190161": "C2190_ Gargoyle (Light): Inverted from the sky [body] -- c2190_ガーゴイル(灯火):上空から反転して叩きつけ【体】", + "2190170": "C2190_ Gargoyle (Light): Additional Saigi [weapon] -- c2190_ガーゴイル(灯火):追加薙ぎ払い【武器】", + "2190180": "C2190_ Gargoyle (Light): previous step slapping [weapon] -- c2190_ガーゴイル(灯火):前ステップ叩き【武器】", + "2190181": "C2190_ Gargoyle (Light): Front step slapping [body] -- c2190_ガーゴイル(灯火):前ステップ叩き【体】", + "2190190": "C2190_ Gargoyle (Light): Whack falling [weapon] -- c2190_ガーゴイル(灯火):薙ぎ下がり【武器】", + "2190191": "C2190_ Gargoyle (Light): Whack falling [body] -- c2190_ガーゴイル(灯火):薙ぎ下がり【体】", + "2190300": "C2190_ Gargoyle (Spear): Thrust 1-1 [Weapon] -- c2190_ガーゴイル(槍):突き1-1【武器】", + "2190301": "C2190_ Gargoyle (Spear): Thrust 1-2: Strong thrust [Weapon] -- c2190_ガーゴイル(槍):突き1-2:強突き【武器】", + "2190302": "C2190_ Gargoyle (Spear): Butt 1-3: Poke slams [weapon: thrust] -- c2190_ガーゴイル(槍):突き1-3:突き飛行叩きつけ【武器:突き】", + "2190303": "C2190_ Gargoyle (Spear): Butt 1-3: Poke slams [weapon: slapping] -- c2190_ガーゴイル(槍):突き1-3:突き飛行叩きつけ【武器:叩き】", + "2190304": "C2190_ Gargoyle (Spear): Butt 1-3: Poke slams [body] -- c2190_ガーゴイル(槍):突き1-3:突き飛行叩きつけ【体】", + "2190310": "C2190_ Gargoyle (Spear): rush [Weapon] -- c2190_ガーゴイル(槍):突進【武器】", + "2190311": "C2190_ Gargoyle (Spear): Rush [body] -- c2190_ガーゴイル(槍):突進【体】", + "2190320": "C2190_ Gargoyle (Spear): Guard Posture: Shield tock [Weapon] -- c2190_ガーゴイル(槍):ガード体勢:盾チク【武器】", + "2190321": "C2190_ Gargoyle (Spear): Guard Posture: Shield tock [pre-piercing swing attack] -- c2190_ガーゴイル(槍):ガード体勢:盾チク【突き刺し前振り回し攻撃】", + "2190330": "C2190_ Gargoyle (Spear): Guard Posture: rush [weapon] -- c2190_ガーゴイル(槍):ガード体勢:突進【武器】", + "2190331": "C2190_ Gargoyle (Spear): Guard Posture: rush [body] -- c2190_ガーゴイル(槍):ガード体勢:突進【体】", + "2190340": "C2190_ Gargoyle (Spear): Swinging from the sky [weapon] -- c2190_ガーゴイル(槍):上空から振り上げ【武器】", + "2190341": "C2190_ Gargoyle (Spear): Swinging from the sky [body] -- c2190_ガーゴイル(槍):上空から振り上げ【体】", + "2190350": "C2190_ Gargoyle (Spear): Dive attack [weapon] aiming from the sky -- c2190_ガーゴイル(槍):上空から狙って急降下攻撃【武器】", + "2190351": "C2190_ Gargoyle (Spear): Dive attack [body] aiming from the sky -- c2190_ガーゴイル(槍):上空から狙って急降下攻撃【体】", + "2190360": "C2190_ Gargoyle (Spear): continuous thrust from the Sky 1 [weapon] -- c2190_ガーゴイル(槍):上空から連続突き1【武器】", + "2190361": "C2190_ Gargoyle (Spear): continuous thrust from the Sky 2 [weapon] -- c2190_ガーゴイル(槍):上空から連続突き2【武器】", + "2190362": "C2190_ Gargoyle (Spear): continuous thrust from the Sky 3 [weapon] -- c2190_ガーゴイル(槍):上空から連続突き3【武器】", + "2190363": "C2190_ Gargoyle (Spear): continuous thrust from the sky [body] -- c2190_ガーゴイル(槍):上空から連続突き【体】", + "2190370": "C2190_ Gargoyle (Spear): Additional whack [weapon] -- c2190_ガーゴイル(槍):追加薙ぎ【武器】", + "2190380": "C2190_ Gargoyle (Spear): gliding thrust [weapon] -- c2190_ガーゴイル(槍):滑空突き【武器】", + "2190381": "C2190_ Gargoyle (Spear): gliding thrusting [flying body] -- c2190_ガーゴイル(槍):滑空突き【飛行中体】", + "2190382": "C2190_ Gargoyle (Spear): gliding thrust [body] -- c2190_ガーゴイル(槍):滑空突き【体】", + "2190600": "c2190_ Gargoyle (Common): Wings -- c2190_ガーゴイル(共通):翼", + "2190700": "C2190_ Gargoyle (Light): Saigi: Fire Bullets -- c2190_ガーゴイル(灯火):薙ぎ払い:炎弾", + "2190701": "C2190_ Gargoyle (Light): Saigi: Flames then (fire splashes) -- c2190_ガーゴイル(灯火):薙ぎ払い:炎弾その後(火飛沫)", + "2190710": "C2190_ Gargoyle (Light): Slams (fire splashes) -- c2190_ガーゴイル(灯火):叩きつけ:(火飛沫)", + "2190720": "C2190_ Gargoyle: Guard Posture: Large ignition -- c2190_ガーゴイル(灯火):ガード体勢:大発火", + "2190730": "C2190_ Gargoyle (Light): Fire attack from above -- c2190_ガーゴイル(灯火):上空から発火攻撃", + "2190900": "C2190_ Gargoyle (Light): Guard -- c2190_ガーゴイル(灯火):ガード", + "2190901": "C2190_ Gargoyle (Light): Guard (Strong) -- c2190_ガーゴイル(灯火):ガード(強)", + "2200110": "C2200_a3001_ slams A -- c2200_a3001_叩きつけA", + "2200120": "C2200_a3002_ stretched up pounding 1 -- c2200_a3002_伸び上がって叩きつける1", + "2200130": "C2200_a3003_ stretched up and pounding 2 -- c2200_a3003_伸び上がって叩きつける2", + "2200140": "c2200_a3004_ bit -- c2200_a3004_噛み付き", + "2201100": "C2201_a3000_ Dive into the ground -- c2201_a3000_地中に潜る", + "2201110": "C2201_a3001_ slams A -- c2201_a3001_叩きつけA", + "2201120": "C2201_a3002_ stretched up pounding 1 -- c2201_a3002_伸び上がって叩きつける1", + "2201130": "C2201_a3003_ stretched up and pounding 2 -- c2201_a3003_伸び上がって叩きつける2", + "2201140": "c2201_a3004_ bit -- c2201_a3004_噛み付き", + "2201150": "c2201_a3005_ Rush bit (throwing and grabbing) -- c2201_a3005_突進噛み付き(投げ・つかみ)", + "2201151": "c2201_a3005_ Rush bit (throwing and fuselage damage) -- c2201_a3005_突進噛み付き(投げ・胴体ダメージ)", + "2201152": "c2201_a3005_ Rush bit (throwing and throwing damage) -- c2201_a3005_突進噛み付き(投げ・投げダメージ)", + "2201300": "C2201_a100_3000_ out on the ground -- c2201_a100_3000_地上に出る", + "2210100": "c2210_ Zombie Crow (Dagger Downer): Sticking out -- c2210_ゾンビカラス(短剣ダウナー):突き出し", + "2210110": "c2210_ Zombie Crow (Dagger Downer): The Sword Falling -- c2210_ゾンビカラス(短剣ダウナー):斬り下がり", + "2210120": "c2210_ Zombie Crow (Dagger Downer): Single slash -- c2210_ゾンビカラス(短剣ダウナー):単発斬り", + "2210200": "c2210_ Zombie Crow (Scythe Downer): Saigi -- c2210_ゾンビカラス(大鎌ダウナー):薙ぎ払い", + "2210210": "c2210_ Zombie Crow (Scythe Downer): slams -- c2210_ゾンビカラス(大鎌ダウナー):叩きつけ", + "2210220": "c2210_ Zombie Crow (Scythe Downer): Extrusion -- c2210_ゾンビカラス(大鎌ダウナー):押し出し", + "2210300": "c2210_ Zombie Crow (Dagger Upper): Ran through rush-1 -- c2210_ゾンビカラス(短剣アッパー):走り抜けラッシュ - 1", + "2210301": "c2210_ Zombie Crow (Dagger Upper): Ran through the rush-2 -- c2210_ゾンビカラス(短剣アッパー):走り抜けラッシュ - 2", + "2210302": "c2210_ Zombie Crow (Dagger Upper): Ran through rush-3 -- c2210_ゾンビカラス(短剣アッパー):走り抜けラッシュ - 3", + "2210303": "c2210_ Zombie Crow (Dagger Upper): Ran through rush-4 -- c2210_ゾンビカラス(短剣アッパー):走り抜けラッシュ - 4", + "2210304": "c2210_ Zombie Crow (Dagger Upper): Ran through rush-5 -- c2210_ゾンビカラス(短剣アッパー):走り抜けラッシュ - 5", + "2210310": "c2210_ Zombie Crow (Dagger Upper): Take a stab with a jump-1 -- c2210_ゾンビカラス(短剣アッパー):跳びかかり付き刺し - 1", + "2210311": "c2210_ Zombie Crow (Dagger Upper): Take a stab with a jump-2 -- c2210_ゾンビカラス(短剣アッパー):跳びかかり付き刺し - 2", + "2210320": "c2210_ Zombie Crow (dagger Upper): Jumping attack -- c2210_ゾンビカラス(短剣アッパー):跳躍攻撃", + "2210330": "c2210_ Zombie Crow (Dagger Upper): Right Hand daggers Combo 1 -- c2210_ゾンビカラス(短剣アッパー):右手短剣払いコンボ1", + "2210340": "c2210_ Zombie Crow (Dagger Upper): Right Hand daggers Combo 2 -- c2210_ゾンビカラス(短剣アッパー):右手短剣払いコンボ2", + "2210350": "c2210_ Zombie Crow (Dagger Upper): Right Hand daggers Combo 3-1 -- c2210_ゾンビカラス(短剣アッパー):右手短剣払いコンボ3 - 1", + "2210351": "c2210_ Zombie Crow (Dagger Upper): Right Hand daggers Combo 3-2 -- c2210_ゾンビカラス(短剣アッパー):右手短剣払いコンボ3 - 2", + "2210352": "c2210_ Zombie Crow (Dagger Upper): Right Hand daggers Combo 3-3 -- c2210_ゾンビカラス(短剣アッパー):右手短剣払いコンボ3 - 3", + "2210353": "c2210_ Zombie Crow (Dagger Upper): Right Hand daggers Combo 3-4 -- c2210_ゾンビカラス(短剣アッパー):右手短剣払いコンボ3 - 4", + "2210354": "c2210_ Zombie Crow (Dagger Upper): Right Hand daggers Combo 3-5 -- c2210_ゾンビカラス(短剣アッパー):右手短剣払いコンボ3 - 5", + "2210360": "c2210_ Zombie Crow (Dagger Upper): Anti-aircraft attack-1 -- c2210_ゾンビカラス(短剣アッパー):対空攻撃 - 1", + "2210361": "c2210_ Zombie Crow (Dagger Upper): Anti-aircraft attack-2 -- c2210_ゾンビカラス(短剣アッパー):対空攻撃 - 2", + "2210362": "c2210_ Zombie Crow (Dagger Upper): Anti-aircraft attack-3 -- c2210_ゾンビカラス(短剣アッパー):対空攻撃 - 3", + "2210363": "c2210_ Zombie Crow (Dagger Upper): Anti-aircraft attack-4 -- c2210_ゾンビカラス(短剣アッパー):対空攻撃 - 4", + "2210364": "c2210_ Zombie Crow (Dagger Upper): Anti-aircraft attack-5 (left hand) -- c2210_ゾンビカラス(短剣アッパー):対空攻撃 - 5 (左手)", + "2210365": "c2210_ Zombie Crow (Dagger Upper): Anti-aircraft attack-6 (right hand) -- c2210_ゾンビカラス(短剣アッパー):対空攻撃 - 6 (右手)", + "2210370": "c2210_ Zombie Crow (Dagger Upper): 3 consecutive attacks left -- c2210_ゾンビカラス(短剣アッパー):3連撃 左", + "2210371": "c2210_ Zombie Crow (Dagger Upper): Triple Hammer Right -- c2210_ゾンビカラス(短剣アッパー):3連撃 右", + "2210400": "c2210_ Zombie Crow (scythe Upper): Jumping and lowering -- c2210_ゾンビカラス(大鎌アッパー):跳びかかり振りおろし", + "2210410": "c2210_ Zombie Crow (Scythe Upper): Run Kari attack -- c2210_ゾンビカラス(大鎌アッパー):走り飛び掛かり攻撃", + "2210420": "c2210_ Zombie Crow (Scythe Upper): Saigi First Stage -- c2210_ゾンビカラス(大鎌アッパー):薙ぎ払い1段目", + "2210430": "c2210_ Zombie Crow (Scythe Upper): Saigi Second Stage -- c2210_ゾンビカラス(大鎌アッパー):薙ぎ払い2段目", + "2210440": "c2210_ Zombie Crow (Scythe Upper): Shiri -- c2210_ゾンビカラス(大鎌アッパー):袈裟斬り", + "2210450": "c2210_ Zombie Crow (Scythe Upper): 3 consecutive knocked back against (1st half) -- c2210_ゾンビカラス(大鎌アッパー):3連叩き付け(前半1)", + "2210451": "c2210_ Zombie Crow (Scythe Upper): 3 consecutive knocked back against (first half 2) -- c2210_ゾンビカラス(大鎌アッパー):3連叩き付け(前半2)", + "2210460": "c2210_ Zombie Crow (Scythe Upper): 3 consecutive knocked back against (late whack) -- c2210_ゾンビカラス(大鎌アッパー):3連叩き付け(後半薙ぎ)", + "2210470": "c2210_ Zombie Crow (Scythe Upper): Additional jump attacks -- c2210_ゾンビカラス(大鎌アッパー):追加ジャンプ攻撃", + "2210500": "c2210_ Zombie Crow (Cane upper): Insane -- c2210_ゾンビカラス(杖アッパー):発狂させ", + "2210510": "c2210_ Zombie Crow (Cane upper): Magic (Reserve) -- c2210_ゾンビカラス(杖アッパー):魔法(予備)", + "2210520": "c2210_ Zombie Crow (Cane upper): Slams with cane -- c2210_ゾンビカラス(杖アッパー):杖での叩きつけ", + "2210530": "c2210_ Zombie Crow (Cane upper): Nagi with a cane -- c2210_ゾンビカラス(杖アッパー):杖でのなぎ払い", + "2210540": "c2210_ Zombie Crow (Cane upper): Magic (Saigi) -- c2210_ゾンビカラス(杖アッパー):魔法(薙ぎ払い)", + "2230100": "c2230_ Shing: Pressed against baked -- c2230_獄吏:焼きごて押し付け", + "2230101": "c2230_ Shing: Pressed against a baking iron _ flipped judgment -- c2230_獄吏:焼きごて押し付け_弾かれ判定", + "2230110": "C2230_ Shing: Bake and move forward -- c2230_獄吏:焼きごて構えて前進", + "2230111": "c2230_ Shing: A baking iron poised to move forward _ determined -- c2230_獄吏:焼きごて構えて前進_弾かれ判定", + "2230120": "c2230_ Shing: Petrified Mist (anterior) (head butt) -- c2230_獄吏:石化の霧(前方)(頭突き)", + "2230130": "c2230_ Shing: Burned and pressed -- c2230_獄吏:焼きごてを押し付ける", + "2230131": "c2230_ Shing: Pressing a baking iron _ flipped judgment -- c2230_獄吏:焼きごてを押し付ける_弾かれ判定", + "2230200": "c2230_ Shing: Petrified Mist (forward) -- c2230_獄吏:石化の霧(前方)", + "2230210": "c2230_ Shing: Petrified Mist (range) -- c2230_獄吏:石化の霧(範囲)", + "2230300": "c2230_ Shing: Grilled and tossed (frontal damage) -- c2230_獄吏:焼きごて投げ(前面ダメージ)", + "2230310": "c2230_ Shing: Grilled and tossed (back damage) -- c2230_獄吏:焼きごて投げ(背面ダメージ)", + "2230700": "Quick Turn Nakaishi breath (right turn) -- クイックターン中石化ブレス(右回転)", + "2230701": "Quick Turn Nakaishi breath (left turn) -- クイックターン中石化ブレス(左回転)", + "2230900": "Long Distance Magic: A spear of diffuse flames -- 遠距離魔法:拡散する炎の槍", + "2230910": "Long distance Magic: Diffuse Spear of Fire (pointer) -- 遠距離魔法:拡散する炎の槍(ポインター)", + "2240100": "C2240_ Full Armor Beast: knocked back against Combo First (weapon): after Hu -- c2240_フルアーマー獣:叩き付けコンボ初撃(武器):HU後", + "2240102": "C2240_ Full Armor Beast: knocked back against combo second firing (weapon): after Hu -- c2240_フルアーマー獣:叩き付けコンボ2撃目(武器):HU後", + "2240110": "c2240_ Full Armor: Ground sharpener Whack (weapon): Hu after -- c2240_フルアーマー獣:地削り薙ぎ(武器):HU後", + "2240111": "c2240_ Full Armor: ground scraping whack (body): After Hu -- c2240_フルアーマー獣:地削り薙ぎ(体):HU後", + "2240120": "C2240_ Full Armor Beast: per Body (during rush): after Hu -- c2240_フルアーマー獣:体当たり(突進時):HU後", + "2240121": "C2240_ Full Armor Beast: per Body (raised): After Hu -- c2240_フルアーマー獣:体当たり(かち上げ):HU後", + "2240130": "C2240_ Full Armor Beast: Body Press (body): After Hu -- c2240_フルアーマー獣:ボディプレス(体):HU後", + "2240131": "C2240_ Full Armor Beast: Body Press (weapon part, foot): Hu after -- c2240_フルアーマー獣:ボディプレス(武器部分、足):HU後", + "2240140": "C2240_ Full Armor Beast: Turning Attack (right): after Hu -- c2240_フルアーマー獣:旋回攻撃(右):HU後", + "2240150": "C2240_ Full Armor Beast: Turning Attack (left): after Hu -- c2240_フルアーマー獣:旋回攻撃(左):HU後", + "2240151": "C2240_ Full Armor Beast: Hammer (Arms): Around Hu -- c2240_フルアーマー獣:鉄槌(腕):HU前後", + "2240153": "C2240_ Full Armor Beast: longitudinal slapping: Before Hu -- c2240_フルアーマー獣:縦叩き:HU前", + "2240154": "C2240_ Full Armor Beast: Butt: Before Hu -- c2240_フルアーマー獣:突き:HU前", + "2240155": "C2240_ Full Armor Beast: Launch attack: Before Hu -- c2240_フルアーマー獣:打ち上げ攻撃:HU前", + "2240156": "C2240_ Full Armor Beast: Right tricky Kesa first Hammer (weapon): Hu after -- c2240_フルアーマー獣:右トリッキー袈裟初撃(武器):HU後", + "2240157": "C2241_ Full Armor Beast: Right tricky Kesa first Hammer (body): After Hu -- c2241_フルアーマー獣:右トリッキー袈裟初撃(体):HU後", + "2240158": "C2240_ Full Armor Beast: Right tricky Kesa second firing (weapon): Hu after -- c2240_フルアーマー獣:右トリッキー袈裟2撃目(武器):HU後", + "2240159": "C2240_ Full Armor Beast: Right tricky Kesa second firing (body): After Hu -- c2240_フルアーマー獣:右トリッキー袈裟2撃目(体):HU後", + "2240160": "C2240_ Full Armor Beast: Left Tricky Kesa First (weapon): Hu after -- c2240_フルアーマー獣:左トリッキー袈裟初撃(武器):HU後", + "2240161": "C2241_ Full Armor Beast: Left Tricky Kesa first Hammer (body): After Hu -- c2241_フルアーマー獣:左トリッキー袈裟初撃(体):HU後", + "2240162": "C2240_ Full Armor Beast: Left Tricky Kesa second firing (weapon): Hu after -- c2240_フルアーマー獣:左トリッキー袈裟2撃目(武器):HU後", + "2240163": "C2240_ Full Armor Beast: Left Tricky Kesa second firing (body): After Hu -- c2240_フルアーマー獣:左トリッキー袈裟2撃目(体):HU後", + "2240164": "C2240_ Full Armor Beast: per sprinter (weapon): after Hu -- c2240_フルアーマー獣:短距離体当たり(武器):HU後", + "2240165": "C2241_ Full Armor Beast: short-range Body (body): After Hu -- c2241_フルアーマー獣:短距離体当たり(体):HU後", + "2240166": "C2240_ Full Armor Beast: Rush (Retrospective) (Weapon 1): After Hu -- c2240_フルアーマー獣:突進(振り返り)(武器1):HU後", + "2240167": "C2240_ Full Armor Beast: Rush (Retrospective) (Weapon 2): After Hu -- c2240_フルアーマー獣:突進(振り返り)(武器2):HU後", + "2240168": "C2241_ Full Armor Beast: Rush (Retrospective) (Body 1): After Hu -- c2241_フルアーマー獣:突進(振り返り)(体1):HU後", + "2240169": "C2242_ Full Armor Beast: Rush (Retrospective) (Body 2): After Hu -- c2242_フルアーマー獣:突進(振り返り)(体2):HU後", + "2240170": "C2240_ Full Armor Beast: Rush (Continuous) (Weapon 1): After Hu -- c2240_フルアーマー獣:突進(連続)(武器1):HU後", + "2240171": "C2240_ Full Armor Beast: Rush (Continuous) (Weapon 2): After Hu -- c2240_フルアーマー獣:突進(連続)(武器2):HU後", + "2240172": "C2241_ Full Armor Beast: Rush (Continuous) (body 1): After Hu -- c2241_フルアーマー獣:突進(連続)(体1):HU後", + "2240173": "C2242_ Full Armor Beast: Rush (Continuous) (body 2): After Hu -- c2242_フルアーマー獣:突進(連続)(体2):HU後", + "2240174": "C2240_ Full Armor Beast: Turned Step (weapon): Before Hu -- c2240_フルアーマー獣:振り向き前ステップ(武器):HU前", + "2240175": "C2241_ Full Armor Beast: Turned Step (body): Before Hu -- c2241_フルアーマー獣:振り向き前ステップ(体):HU前", + "2240176": "C2240_ Full Armor Beast: Snowstorm breath: After Hu -- c2240_フルアーマー獣:吹雪ブレス:HU後", + "2240177": "C2240_ Full Armor Beast: lateral Saigi (weapon): Hu Mae -- c2240_フルアーマー獣:横薙ぎ払い(武器):HU前", + "2240179": "C2240_ Full Armor Beast: knocked back against (for combo) (weapon): Before Hu -- c2240_フルアーマー獣:叩き付け(コンボ用)(武器):HU前", + "2240181": "C2240_ Full Armor Beast: lateral Saigi (for combo) (weapon): Before Hu -- c2240_フルアーマー獣:横薙ぎ払い(コンボ用)(武器):HU前", + "2240183": "C2240_ Full Armor Beast: Blizzard Breath (Aura): After Hu -- c2240_フルアーマー獣:吹雪ブレス(オーラ):HU後", + "2240250": "C2240_ Full Armor Beast: right foot general purpose -- c2240_フルアーマー獣:右足汎用", + "2240251": "C2240_ Full Armor Beast: Left Foot General -- c2240_フルアーマー獣:左足汎用", + "2240260": "C2240_ Full Armor Beast: cold (for decals) -- c2240_フルアーマー獣:冷気(デカール用)", + "2250100": "c2250_ Tindalos: Bit from the top (depression) -- c2250_ティンダロス:上から噛み付き(踏み込み大)", + "2250101": "c2250_ Tindalos: From the top bit (depression) (body) -- c2250_ティンダロス:上から噛み付き(踏み込み大)(体)", + "2250102": "c2250_ Tindalos: From the top bit (depression) (right) -- c2250_ティンダロス:上から噛み付き(踏み込み大)(右手)", + "2250103": "c2250_ Tindalos: From the top bit (depression) (left hand) -- c2250_ティンダロス:上から噛み付き(踏み込み大)(左手)", + "2250110": "c2250_ Tindalos: Close bit (from right): wait -- c2250_ティンダロス:至近噛み付き(右から):待機", + "2250111": "c2250_ Tindalos: Close bit (right): Wait (body) -- c2250_ティンダロス:至近噛み付き(右から):待機(体)", + "2250112": "c2250_ Tindalos: Close bit (right): wait -- c2250_ティンダロス:至近噛み付き(右から):待機(右手)", + "2250113": "c2250_ Tindalos: Close bit (right): Wait (left) -- c2250_ティンダロス:至近噛み付き(右から):待機(左手)", + "2250120": "c2250_ Tindalos: Bit from the right: wait -- c2250_ティンダロス:右から噛み付き:待機", + "2250121": "c2250_ Tindalos: Bit from right: wait (body) -- c2250_ティンダロス:右から噛み付き:待機(体)", + "2250122": "c2250_ Tindalos: Bit from right: wait (right) -- c2250_ティンダロス:右から噛み付き:待機(右手)", + "2250123": "c2250_ Tindalos: Bit from right: wait (left hand) -- c2250_ティンダロス:右から噛み付き:待機(左手)", + "2250130": "c2250_ Tindalos: Bit from the left: wait -- c2250_ティンダロス:左から噛み付き:待機", + "2250131": "c2250_ Tindalos: Bit from the left: Wait (body) -- c2250_ティンダロス:左から噛み付き:待機(体)", + "2250132": "c2250_ Tindalos: Bit from the left: wait (left hand) -- c2250_ティンダロス:左から噛み付き:待機(左手)", + "2250133": "c2250_ Tindalos: Bit from the left: wait (left hand) -- c2250_ティンダロス:左から噛み付き:待機(左手)", + "2250140": "c2250_ Tindalos: Bit Dive -- c2250_ティンダロス:飛び込み噛み付き", + "2250141": "c2250_ Tindalos: Dive bit (body) -- c2250_ティンダロス:飛び込み噛み付き(体)", + "2250142": "c2250_ Tindalos: Bit dive (right) -- c2250_ティンダロス:飛び込み噛み付き(右手)", + "2250143": "c2250_ Tindalos: Bit dive (left hand) -- c2250_ティンダロス:飛び込み噛み付き(左手)", + "2250144": "c2250_ Tindalos: Bit dive (right foot) -- c2250_ティンダロス:飛び込み噛み付き(右足)", + "2250145": "c2250_ Tindalos: Bit dive (left foot) -- c2250_ティンダロス:飛び込み噛み付き(左足)", + "2250150": "c2250_ Tindalos: Flipping from the plunge -- c2250_ティンダロス:飛び込みからの反転", + "2250151": "c2250_ Tindalos: Flipped from the plunge (right) -- c2250_ティンダロス:飛び込みからの反転(右手)", + "2250152": "c2250_ Tindalos: Flipping from the dive (left hand) -- c2250_ティンダロス:飛び込みからの反転(左手)", + "2250153": "c2250_ Tindalos: Flipped from the plunge (right foot) -- c2250_ティンダロス:飛び込みからの反転(右足)", + "2250154": "c2250_ Tindalos: Flipped from the dive (left foot) -- c2250_ティンダロス:飛び込みからの反転(左足)", + "2250160": "c2250_ Tindalos: Bit to the right side -- c2250_ティンダロス:右側面へ噛み付き", + "2250161": "c2250_ Tindalos: Bit (body) to the right side -- c2250_ティンダロス:右側面へ噛み付き(体)", + "2250162": "c2250_ Tindalos: bit (right hand) to the right side -- c2250_ティンダロス:右側面へ噛み付き(右手)", + "2250163": "c2250_ Tindalos: Bit to the right side (left) -- c2250_ティンダロス:右側面へ噛み付き(左手)", + "2250164": "c2250_ Tindalos: Bit to the right side -- c2250_ティンダロス:右側面へ噛み付き(右足)", + "2250165": "c2250_ Tindalos: Bit (left foot) to the right side -- c2250_ティンダロス:右側面へ噛み付き(左足)", + "2250170": "c2250_ Tindalos: Bit to the left side -- c2250_ティンダロス:左側面へ噛み付き", + "2250171": "c2250_ Tindalos: Bit (body) to the left side -- c2250_ティンダロス:左側面へ噛み付き(体)", + "2250172": "c2250_ Tindalos: bit (right hand) to the left side -- c2250_ティンダロス:左側面へ噛み付き(右手)", + "2250173": "c2250_ Tindalos: Bit to left side (left) -- c2250_ティンダロス:左側面へ噛み付き(左手)", + "2250174": "c2250_ Tindalos: Bit to the left side (right foot) -- c2250_ティンダロス:左側面へ噛み付き(右足)", + "2250175": "c2250_ Tindalos: bit to left side -- c2250_ティンダロス:左側面へ噛み付き(左足)", + "2250180": "c2250_ Tindalos: Open Mouth and Rush -- c2250_ティンダロス:口を開けて突進", + "2250181": "c2250_ Tindalos: Open mouth and Rush (right hand) -- c2250_ティンダロス:口を開けて突進(右手)", + "2250182": "c2250_ Tindalos: Open mouth and Rush (left hand) -- c2250_ティンダロス:口を開けて突進(左手)", + "2250183": "c2250_ Tindalos: Open mouth and Rush (right foot) -- c2250_ティンダロス:口を開けて突進(右足)", + "2250184": "c2250_ Tindalos: Open mouth and Rush (left foot) -- c2250_ティンダロス:口を開けて突進(左足)", + "2250185": "c2250_ Tindalos: Throwing damage -- c2250_ティンダロス:投げダメージ", + "2250186": "c2250_ Tindalos: Throwing Damage 2 -- c2250_ティンダロス:投げダメージ2", + "2250187": "c2250_ Tindalos: Throwing Damage 3 -- c2250_ティンダロス:投げダメージ3", + "2250190": "c2250_ Tindalos: Lunge attack: bit 1 -- c2250_ティンダロス:突進攻撃:噛み付き1", + "2250191": "c2250_ Tindalos: Lunge attack: Bit 2 -- c2250_ティンダロス:突進攻撃:噛み付き2", + "2250192": "c2250_ Tindalos: Lunge attack: Bit 3 (finishes on -- c2250_ティンダロス:突進攻撃:噛み付き3(フィニッ", + "2250193": "c2250_ Tindalos: Rush attack: Bit (body) -- c2250_ティンダロス:突進攻撃:噛み付き(体)", + "2250194": "c2250_ Tindalos: Rush attack: bit (right hand) -- c2250_ティンダロス:突進攻撃:噛み付き(右手)", + "2250195": "c2250_ Tindalos: Rush attack: bit (left hand) -- c2250_ティンダロス:突進攻撃:噛み付き(左手)", + "2250196": "c2250_ Tindalos: Rush attack: Bit (right foot) -- c2250_ティンダロス:突進攻撃:噛み付き(右足)", + "2250197": "c2250_ Tindalos: Lunge attack: bit (left foot) -- c2250_ティンダロス:突進攻撃:噛み付き(左足)", + "2250200": "c2250_ Tindalos: Bit (strong): a3003 Posture -- c2250_ティンダロス:噛み付き(強):a3003姿勢", + "2250201": "c2250_ Tindalos: Bit (strong): a3003 Posture (body) -- c2250_ティンダロス:噛み付き(強):a3003姿勢(体)", + "2250202": "c2250_ Tindalos: Bit (strong): a3003 Posture (right) -- c2250_ティンダロス:噛み付き(強):a3003姿勢(右手)", + "2250203": "c2250_ Tindalos: Bit (strong): a3003 posture (left) -- c2250_ティンダロス:噛み付き(強):a3003姿勢(左手)", + "2250210": "c2250_ Tindalos: Writhes around on his back: head -- c2250_ティンダロス:仰向けでのたうち回る:頭", + "2250211": "c2250_ Tindalos: Writhes around on his back: right hand -- c2250_ティンダロス:仰向けでのたうち回る:右手", + "2250212": "c2250_ Tindalos: Writhes around on his back: left hand -- c2250_ティンダロス:仰向けでのたうち回る:左手", + "2250213": "c2250_ Tindalos: Writhes around on his back: right foot -- c2250_ティンダロス:仰向けでのたうち回る:右足", + "2250214": "c2250_ Tindalos: Writhes around on his back: left foot -- c2250_ティンダロス:仰向けでのたうち回る:左足", + "2250215": "c2250_ Tindalos: Writhes around on his back: tail -- c2250_ティンダロス:仰向けでのたうち回る:尻尾", + "2250700": "c2250_ Tindalos: Lightning breath: Direct hit -- c2250_ティンダロス:雷ブレス:直撃", + "2250701": "c2250_ Tindalos: Lightning Breath: Derived 1 -- c2250_ティンダロス:雷ブレス:派生1", + "2250702": "c2250_ Tindalos: Lightning Breath: Derived 2 (water only) -- c2250_ティンダロス:雷ブレス:派生2(水場のみ)", + "2250703": "c2250_ Tindalos: Lightning Breath: Derived 3 (water only) -- c2250_ティンダロス:雷ブレス:派生3(水場のみ)", + "2250704": "c2250_ Tindalos: Lightning Breath: Derived 4 (water only) -- c2250_ティンダロス:雷ブレス:派生4(水場のみ)", + "2260700": "C2260_: Barista Launches -- c2260_三連バリスタ:バリスタ発射", + "2270010": "c2270_ Stench Crab: Right scissors _ swing down near face -- c2270_死臭蟹:右鋏_顔付近振り下ろし", + "2270020": "c2270_ Stench Crab: Right Shears _ thrusting -- c2270_死臭蟹:右鋏_突き刺し", + "2270030": "c2270_ Stench Crab: Right Shears _ depression Piercing -- c2270_死臭蟹:右鋏_踏み込み突刺し", + "2270040": "c2270_ Stench Crab: Left shears _ face near Chockin -- c2270_死臭蟹:左鋏_顔付近ちょっきん", + "2270050": "c2270_ Stench Crab: Left shears _ poked -- c2270_死臭蟹:左鋏_突き", + "2270060": "c2270_ Stench Crab: Left shears _ diagonal Continuous attack (1 ~ two) -- c2270_死臭蟹:左鋏_斜め連続攻撃(一~二段目)", + "2270080": "c2270_ Stench Crab: Right Shears _ Saigi -- c2270_死臭蟹:右鋏_薙ぎ払い", + "2270090": "c2270_ Stench Crab: Left and Right scissors lash (1-two) -- c2270_死臭蟹:左右ハサミラッシュ(左鋏_一~二段目)", + "2270091": "c2270_ Stench Crab: Left and right scissors rush (Sandanme) -- c2270_死臭蟹:左右ハサミラッシュ(右鋏_三段目)", + "2270092": "c2270_ Stench Crab: Left and right scissors rush (Shidara) -- c2270_死臭蟹:左右ハサミラッシュ(左鋏_四段目)", + "2270093": "c2270_ Stench Crab: Left and right scissors rush (Guarder) -- c2270_死臭蟹:左右ハサミラッシュ(右鋏_五段目)", + "2270100": "c2270_ Stench Crab: General Press -- c2270_死臭蟹:全身プレス", + "2270110": "c2270_ Stench crab: Bubble spitting -- c2270_死臭蟹:泡吐き", + "2270120": "c2270_ Stench Crab: Right side attack (medium range) -- c2270_死臭蟹:右側面攻撃(中距離)", + "2270130": "c2270_ Stench Crab: Right side attack (long distance) -- c2270_死臭蟹:右側面攻撃(遠距離)", + "2270140": "c2270_ Stench Crab: Left side attack (medium range) -- c2270_死臭蟹:左側面攻撃(中距離)", + "2270150": "c2270_ Stench Crab: Left side attack (long distance) -- c2270_死臭蟹:左側面攻撃(遠距離)", + "2270200": "c2270_ Stench Crab: Throwing start -- c2270_死臭蟹:投げ始動", + "2270201": "c2270_ Stench Crab: Throwing attack (sandwiching) -- c2270_死臭蟹:投げ攻撃(挟み付け)", + "2270202": "c2270_ Stench Crab: Throwing attack (finish) -- c2270_死臭蟹:投げ攻撃(フィニッシュ)", + "2271010": "c2271_ Stench Crab (small) _ Chockin with right shears -- c2271_死臭蟹(小)_右鋏でちょっきん", + "2271020": "c2271_ Stench Crab (small) _ Chockin with left shears -- c2271_死臭蟹(小)_左鋏でちょっきん", + "2271030": "c2271_ Stench Crab (small) _ hit with both scissors (right) -- c2271_死臭蟹(小)_両ハサミで殴る(右手)", + "2271031": "c2271_ Stench Crab (small) _ with both scissors (left hand) -- c2271_死臭蟹(小)_両ハサミで殴る(左手)", + "2271040": "c2271_ Stench Crab (small) _ right-side attack (medium range) -- c2271_死臭蟹(小)_右側面攻撃(中距離)", + "2271050": "c2271_ Stench Crab (small) _ Left side attack (medium range) -- c2271_死臭蟹(小)_左側面攻撃(中距離)", + "3020100": "Bare Hands _ Right hook -- 素手_右フック", + "3020110": "Bare hands _ Left hand slams: left arm -- 素手_左手叩きつけ:左腕", + "3020111": "Bare hands _ The left hand slams: knees -- 素手_左手叩きつけ:両膝", + "3020120": "Bare hands _ both hand grated -- 素手_両手振りおろし", + "3020130": "Saigi about Bare hands _ left elbow: Ling -- 素手_左肘をついての薙ぎ払い:肘鉄", + "3020131": "Saigi about Bare hands _ left elbow: Saigi -- 素手_左肘をついての薙ぎ払い:薙ぎ払い", + "3020140": "Bare hands _ Left foot crushing -- 素手_左足踏み潰し", + "3020150": "Bare hands _ Right foot crush -- 素手_右足踏み潰し", + "3020160": "Bare Hands _ Explore action -- 素手_探りアクション", + "3020170": "Transition to bare hands _ throw -- 素手_投げへの遷移", + "3020171": "Bare hands _ Throwing damage -- 素手_投げダメージ", + "3020180": "Bare hands _ Turned Saigi -- 素手_振り向き薙ぎ払い", + "3020190": "Bare hands _ ground crushed: slams -- 素手_地面砕き:叩きつけ", + "3020191": "Bare hands _ ground crushed: crushed -- 素手_地面砕き:砕き", + "3020200": "Bare hands rampage: 1 shot left foot trampled -- 素手_大暴れ:1撃目左足踏みつけ", + "3020201": "Bare Hands _ Rampage: 2-hammer right foot trampling -- 素手_大暴れ:2撃目右足踏みつけ", + "3020202": "Bare Hands _ Rampage: 3rd Hammer left arm Saigi -- 素手_大暴れ:3撃目左腕薙ぎ払い", + "3020203": "Bare Hands _ Rampage: 4-shot left foot depression -- 素手_大暴れ:4撃目左足踏み込み", + "3020204": "Bare Hands _ Rampage: 5 Hammer right hook -- 素手_大暴れ:5撃目右フック", + "3020205": "Bare Hands _ Rampage: 6th Hammer Right Back Fist -- 素手_大暴れ:6撃目右裏拳", + "3020206": "Bare Hands _ Rampage: 7th Hammer left hook -- 素手_大暴れ:7撃目左フック", + "3020207": "Bare Hands _ Rampage: 8th Hammer left Fist -- 素手_大暴れ:8撃目左裏拳", + "3020208": "Bare Hands _ Rampage: 9th Hammer Right Saigi -- 素手_大暴れ:9撃目右薙ぎ払い", + "3020300": "Saigi The Iron Sphere _ right -- 鉄球_右薙ぎ払い", + "3020310": "Saigi The Iron Sphere _ left -- 鉄球_左薙ぎ払い", + "3020320": "Iron Ball _ Iron Ball -- 鉄球_鉄球振りおろし", + "3020330": "Iron Sphere _ Swing down: Left -- 鉄球_鉄球振り下ろし:左", + "3020340": "Iron Sphere _ Swing down: Right -- 鉄球_鉄球振り下ろし:右", + "3020350": "Iron Sphere _ Right foot crush -- 鉄球_右足踏み潰し", + "3020360": "Iron Sphere _ Left foot crushing -- 鉄球_左足踏み潰し", + "3020370": "Iron Sphere Bun -- 鉄球_鉄球ぶん回し", + "3020500": "Iron Sphere _ General pressure -- 鉄球_汎用風圧", + "3021100": "C3020_ Golem (Large): right leg trampling -- c3020_ゴーレム(大):右足踏みつけ", + "3021101": "C3020_ Golem (Large): Right foot trampled (wind pressure) -- c3020_ゴーレム(大):右足踏みつけ(風圧)", + "3021110": "C3020_ Golem (Large): Left foot trampled -- c3020_ゴーレム(大):左足踏みつけ", + "3021111": "C3020_ Golem (Large): Left foot trampled (wind pressure) -- c3020_ゴーレム(大):左足踏みつけ(風圧)", + "3021120": "C3020_ Golem (Large): grated both hand and hand 1 -- c3020_ゴーレム(大):両手振りおろし1", + "3021121": "C3020_ Golem (Large): both hand-in-hand 1 (wind pressure) -- c3020_ゴーレム(大):両手振りおろし1(風圧)", + "3021130": "C3020_ Golem (Large): Both hand and hand grated 2 -- c3020_ゴーレム(大):両手振りおろし2", + "3021131": "C3020_ Golem (Large): Both hand and hand 2 (wind pressure) -- c3020_ゴーレム(大):両手振りおろし2(風圧)", + "3021140": "C3020_ Golem (Large): Right hand (forward) -- c3020_ゴーレム(大):右手払い(前方)", + "3021150": "C3020_ Golem (Large): Right hand (rear) -- c3020_ゴーレム(大):右手払い(後方)", + "3021300": "C3020_ Golem (dai): Altar slapping -- c3020_ゴーレム(大):祭壇叩き", + "3021301": "C3020_ Golem (Large): Altar slapping (wind pressure) -- c3020_ゴーレム(大):祭壇叩き(風圧)", + "3021310": "C3020_ Golem (Large): Altar whack -- c3020_ゴーレム(大):祭壇薙ぎ", + "3021500": "C3020_ Golem (Large): right hand beating -- c3020_ゴーレム(大):右手前殴り", + "3021501": "C3020_ Golem (Large): Right hand punch (wind pressure) -- c3020_ゴーレム(大):右手前殴り(風圧)", + "3021510": "C3020_ Golem (Large): Right Saigi -- c3020_ゴーレム(大):右薙ぎ払い", + "3021520": "C3020_ Golem (Large): left-hand beating -- c3020_ゴーレム(大):左手前殴り", + "3021521": "C3020_ Golem (Large): Front left punch (wind pressure) -- c3020_ゴーレム(大):左手前殴り(風圧)", + "3021530": "C3020_ Golem (Large): Left Saigi -- c3020_ゴーレム(大):左薙ぎ払い", + "3021540": "C3020_ Golem (Large): Both sides of the front beating -- c3020_ゴーレム(大):両手前殴り", + "3021541": "C3020_ Golem (Large): Both sides beating (wind pressure) -- c3020_ゴーレム(大):両手前殴り(風圧)", + "3021550": "C3020_ Golem (Large): Head butt -- c3020_ゴーレム(大):頭突き", + "3021560": "C3020_ Golem (Large): Right-hand bridge beating -- c3020_ゴーレム(大):右手橋殴り", + "3021580": "C3020_ Golem (Large): Two-handed bridge punch -- c3020_ゴーレム(大):両手橋殴り", + "3021590": "C3020_ Golem (Large): Right-hand bridge Saigi (beating) -- c3020_ゴーレム(大):右手橋薙ぎ払い(殴り)", + "3021591": "C3020_ Golem (Large): Right-hand bridge Saigi (payable) -- c3020_ゴーレム(大):右手橋薙ぎ払い(払い)", + "3021600": "C3020_ Golem (Large): Left hand Dast Shute -- c3020_ゴーレム(大):左手ダストシュート殴り", + "3021700": "C3020_ Golem (Large): right hand beating -- c3020_ゴーレム(大):右手前殴り", + "3021701": "C3020_ Golem (Large): Right hand punch (wind pressure) -- c3020_ゴーレム(大):右手前殴り(風圧)", + "3021710": "C3020_ Golem (Large): Both hand and hand grated -- c3020_ゴーレム(大):両手振りおろし", + "3021711": "C3020_ Golem (Large): Both hand and hand (wind pressure) -- c3020_ゴーレム(大):両手振りおろし(風圧)", + "3021720": "C3020_ Golem (Large): Left hand Saigi knocked back against part -- c3020_ゴーレム(大):左手薙ぎ払い 叩き付け部分", + "3021721": "C3020_ Golem (Large): Left hand Saigi knocked back against partial wind pressure -- c3020_ゴーレム(大):左手薙ぎ払い 叩き付け部分 風圧", + "3021722": "C3020_ Golem (Large): Left hand Saigi Saigi -- c3020_ゴーレム(大):左手薙ぎ払い 薙ぎ払い", + "3021730": "C3020_ Golem (Large): Right hand Saigi -- c3020_ゴーレム(大):右手薙ぎ払い", + "3021740": "C3020_ Golem (Large): The right hand of the enshrined punch -- c3020_ゴーレム(大):安置パンチ右手", + "3021750": "C3020_ Golem (Large): The left hand of the morgue punch -- c3020_ゴーレム(大):安置パンチ左手", + "3021760": "C3020_ Golem (Large): left-hand beating -- c3020_ゴーレム(大):左手前殴り", + "3021761": "C3020_ Golem (Large): Front left punch (wind pressure) -- c3020_ゴーレム(大):左手前殴り(風圧)", + "3021770": "C3020_ Golem (Large): Right hand grip -- c3020_ゴーレム(大):右手安置掴み", + "3021780": "C3020_ Golem (Large): Left hand grip -- c3020_ゴーレム(大):左手安置掴み", + "3040010": "The warden of the c3040_ Abyss: the Rush Whack Dagger -- c3040_深淵の監視者:突進薙ぎ 短剣", + "3040011": "Warden of the c3040_ Abyss: Whack the rush -- c3040_深淵の監視者:突進薙ぎ 斬り払い", + "3040020": "Warden of the c3040_ Abyss: the Sword up -- c3040_深淵の監視者:斬り上げ", + "3040030": "Warden of the c3040_ Abyss: under the butt -- c3040_深淵の監視者:下突き", + "3040040": "The warden of the c3040_ Abyss: the reservoir thrust -- c3040_深淵の監視者:溜め突き", + "3040041": "The warden of the c3040_ Abyss: the Infuser Dash -- c3040_深淵の監視者:溜め突き ダッシュ", + "3040042": "The warden of the c3040_ Abyss: Infuser Guard -- c3040_深淵の監視者:溜め突き ガード", + "3040050": "Observer of the c3040_ Abyss: Shiri -- c3040_深淵の監視者:袈裟斬り", + "3040051": "Observer of the c3040_ abyss: lateral whack -- c3040_深淵の監視者:横薙ぎ", + "3040052": "Observer of the Abyss of c3040_: slams -- c3040_深淵の監視者:叩きつけ", + "3040060": "Warden of the c3040_ Abyss: the forward slash -- c3040_深淵の監視者:前転斬り", + "3040070": "Warden of the c3040_ Abyss: A slew of attacking turns -- c3040_深淵の監視者:切り抜け攻撃 旋回", + "3040071": "Warden of the c3040_ Abyss: the attack dash -- c3040_深淵の監視者:切り抜け攻撃 ダッシュ", + "3040080": "Observer of the c3040_ Abyss: Continuous Attack longsword -- c3040_深淵の監視者:連続攻撃 長剣", + "3040081": "Warden of the c3040_ Abyss: a succession attack dagger -- c3040_深淵の監視者:連続攻撃 短剣", + "3040082": "Observer of the c3040_ Abyss: Continuous attack tightening -- c3040_深淵の監視者:連続攻撃締め", + "3040090": "Warden of the c3040_ Abyss: short distance restraint -- c3040_深淵の監視者:近距離牽制", + "3040100": "The observer of the c3040_ Abyss: the Sword -- c3040_深淵の監視者:斬り払い", + "3040101": "The observer of the c3040_ Abyss: Dagger Stab -- c3040_深淵の監視者:短剣刺し", + "3040102": "Observer of the c3040_ Abyss: Swinging -- c3040_深淵の監視者:振り上げ", + "3040910": "Warden of the c3040_ Abyss: Middle Range Combo First stage -- c3040_深淵の監視者:中距離コンボ 1段目", + "3040911": "Observer of the c3040_ Abyss: Second Stage Combo -- c3040_深淵の監視者:中距離コンボ 2段目", + "3040920": "Observer of the c3040_ Abyss: Dust Makiage -- c3040_深淵の監視者:土埃まきあげ", + "3040930": "The warden of the c3040_ Abyss: the reservoir thrust -- c3040_深淵の監視者:溜め突き", + "3040940": "Warden of the c3040_ Abyss: The first stage of the short range combo -- c3040_深淵の監視者:近距離コンボ 1段目", + "3040941": "Warden of the c3040_ Abyss: Second stage of the short range combo -- c3040_深淵の監視者:近距離コンボ 2段目", + "3040942": "Warden of the c3040_ Abyss: The third stage of the short range combo -- c3040_深淵の監視者:近距離コンボ 3段目", + "3040950": "Warden of the c3040_ Abyss: attack -- c3040_深淵の監視者:切り抜け攻撃", + "3040960": "Observer of c3040_ Abyss: Positioning change -- c3040_深淵の監視者:ポジショニング替え", + "3040970": "Warden of the c3040_ Abyss: from left to right -- c3040_深淵の監視者:左から右の斬り払い", + "3040980": "Warden of the c3040_ Abyss: Attack from the right -- c3040_深淵の監視者:右からの斬り攻撃", + "3040990": "The observer of the c3040_ Abyss: The attack from the run -- c3040_深淵の監視者:走りからの攻撃", + "3050100": "c3050_ Ash Daemon: Combo 1-1 Saigi -- c3050_灰のデーモン:コンボ1-1薙ぎ払い", + "3050101": "c3050_ Ash Daemon: Combo 1-2 slams (center) -- c3050_灰のデーモン:コンボ1-2叩きつけ(中心部)", + "3050102": "c3050_ Ash Daemon: Combo 1-2 slams (outer circle) -- c3050_灰のデーモン:コンボ1-2叩きつけ(外円部)", + "3050110": "c3050_ Ash Daemon: Combo 1-2 Reverse Payment -- c3050_灰のデーモン:コンボ1-2逆払い", + "3050120": "c3050_ Ash daemon: Hammered slams (arms lengthwise, center) -- c3050_灰のデーモン:槌叩きつけ(武器縦持ち、中心部)", + "3050121": "c3050_ Ash daemon: Hammered slams (weapon vertical, outer circle) -- c3050_灰のデーモン:槌叩きつけ(武器縦持ち、外円部)", + "3050130": "c3050_ Ash daemon: Hammered and dropped (to the left, center) -- c3050_灰のデーモン:槌持ち上げ落とし(左側へ、中心部)", + "3050131": "c3050_ Ash daemon: Hammered and dropped (to the left, out of the circle) -- c3050_灰のデーモン:槌持ち上げ落とし(左側へ、外円部)", + "3050140": "c3050_ Ash daemon: slams (right, center) -- c3050_灰のデーモン:叩きつけ(右側へ、中心部)", + "3050141": "c3050_ Ash Daemon: slams (to the right, out of the circle) -- c3050_灰のデーモン:叩きつけ(右側へ、外円部)", + "3050150": "c3050_ Ash daemon: Hammered Lift Drop (center) -- c3050_灰のデーモン:槌持ち上げ落とし(中心部)", + "3050151": "c3050_ Ash daemon: Hammered Lift Drop (outer circle) -- c3050_灰のデーモン:槌持ち上げ落とし(外円部)", + "3050160": "c3050_ Ash daemon: slams (center) -- c3050_灰のデーモン:叩きつけ(中心部)", + "3050161": "c3050_ Ash daemon: slams (outer circle) -- c3050_灰のデーモン:叩きつけ(外円部)", + "3050170": "c3050_ Ash Daemon: Add Bun slams -- c3050_灰のデーモン:追加ぶん回し叩きつけ", + "3050171": "c3051_ Ash Daemon: Add Bun slams 2 -- c3051_灰のデーモン:追加ぶん回し叩きつけ2", + "3050172": "C3052_ Ash Daemon: Additional Bun slams 3 (center) -- c3052_灰のデーモン:追加ぶん回し叩きつけ3(中心部)", + "3050173": "C3052_ Ash Daemon: Additional Bun slams 3 (outer circle) -- c3052_灰のデーモン:追加ぶん回し叩きつけ3(外円部)", + "3050700": "c3050_ Ash daemon: Broad Breath (straight wind 1) -- c3050_灰のデーモン:広範囲ブレス(直風1)", + "3050710": "c3050_ Ash Daemon: Immediate Breath (straight wind) -- c3050_灰のデーモン:直下ブレス(直風)", + "3050730": "c3050_ Ash Daemon: Lava meteor -- c3050_灰のデーモン:溶岩メテオ", + "3050740": "c3050_ Ash daemon: Lava tsunami -- c3050_灰のデーモン:溶岩津波", + "3060010": "Combo 1_ both hands: Saigi -- コンボ1_両手:薙ぎ払い", + "3060011": "Combo 1_ both hands: slams -- コンボ1_両手:叩きつけ", + "3060020": "Rush: Per body -- 突進:体当たり", + "3060030": "Close-Up lowering -- 近距離打ちおろし", + "3060040": "Distance slams -- 距離詰め叩きつけ", + "3060050": "The first hammer -- 叩きつけ三連・初撃", + "3060051": "A triple -- 叩きつけ三連・弐撃", + "3060052": "Tri-Final Attack -- 叩きつけ三連・終撃", + "3060060": "Ground running Hatake -- 地走薙", + "3060700": "Breath: Fire -- ブレス:出火", + "3070010": "c3070_ Daemon priest: grated 1 -- c3070_デーモン司祭:振りおろし1", + "3070020": "c3070_ daemon priest: grated 2 -- c3070_デーモン司祭:振りおろし2", + "3070030": "c3070_ Daemon priest: grated -- c3070_デーモン司祭:振りおろし", + "3070700": "c3070_ Demon Priest: The Fire ball of chaos -- c3070_デーモン司祭:混沌の火球", + "3070710": "c3070_ daemon priest: Chaos Fireball (second) -- c3070_デーモン司祭:混沌の火球(2発目)", + "3070720": "c3070_ Daemon Priest: The Great Storm of Chaos -- c3070_デーモン司祭:混沌の大嵐", + "3080700": "Butterfly of c3080_: Scales rain -- c3080_蝕の蝶:鱗粉の雨", + "3080710": "Butterfly of c3080_: The Big God soldier laser -- c3080_蝕の蝶:巨神兵レーザー", + "3080720": "Butterfly of c3080_: high-speed explosion -- c3080_蝕の蝶:低速大爆発蝕弾", + "3090010": "c3090_: Violent -- c3090_牢蜘蛛:暴れる", + "3100010": "c3100_ crystal Lizard God: Right S-Saigi -- c3100_結晶トカゲの神:右S字薙ぎ払い", + "3100011": "c3100_ crystal Lizard God: Right S-Saigi _ Crystal -- c3100_結晶トカゲの神:右S字薙ぎ払い_結晶", + "3100020": "c3100_ crystal Lizard God: Left S-shaped Saigi -- c3100_結晶トカゲの神:左S字薙ぎ払い", + "3100021": "c3100_ crystal Lizard God: Left S-shaped Saigi _ Crystal -- c3100_結晶トカゲの神:左S字薙ぎ払い_結晶", + "3100030": "c3100_ crystal lizard God: Left tail attack -- c3100_結晶トカゲの神:左尻尾攻撃", + "3100040": "c3100_ crystal lizard God: Right tail attack -- c3100_結晶トカゲの神:右尻尾攻撃", + "3100050": "c3100_ crystal lizard God: crushing both hands -- c3100_結晶トカゲの神:両手叩き潰し", + "3100051": "c3100_ crystal lizard God: both hands crushed -- c3100_結晶トカゲの神:両手叩き潰し_結晶", + "3100060": "c3100_ crystal Lizard God: Plunge attack -- c3100_結晶トカゲの神:飛び込み攻撃", + "3100061": "c3100_ crystal Lizard God: Plunge attack _ Crystals -- c3100_結晶トカゲの神:飛び込み攻撃_結晶", + "3100070": "c3100_ crystal lizard God: Breath -- c3100_結晶トカゲの神:ブレス", + "3100080": "c3100_ crystal lizard God: Right scratching -- c3100_結晶トカゲの神:右引っ掻き", + "3100090": "c3100_ crystal lizard God: Left scratching -- c3100_結晶トカゲの神:左引っ掻き", + "3100100": "c3100_ Crystal lizard God: start of rotation (long distance) -- c3100_結晶トカゲの神:回転開始(遠距離)", + "3100110": "c3100_ crystal lizard God: spinning -- c3100_結晶トカゲの神:回転", + "3100120": "c3100_ crystal lizard God: Rotation complete -- c3100_結晶トカゲの神:回転完了", + "3100130": "c3100_ crystal lizard God: Rotation complete (reversal) -- c3100_結晶トカゲの神:回転完了(反転)", + "3100140": "c3100_ crystal lizard God: bit -- c3100_結晶トカゲの神:噛み付き", + "3100200": "c3100_ crystal lizard God: for breath -- c3100_結晶トカゲの神:ブレス用", + "3110010": "Spider of c3110_: bit -- c3110_蝕の蜘蛛:噛み付き", + "3110020": "Spider of c3110_: bit: Depression -- c3110_蝕の蜘蛛:噛み付き:踏み込み小", + "3110030": "Spider of c3110_: Crush with Arms: mouth -- c3110_蝕の蜘蛛:腕で叩き潰す:口", + "3110031": "Spider of c3110_: arms crushed by arms -- c3110_蝕の蜘蛛:腕で叩き潰す:腕", + "3110032": "Spider of c3110_: crushing with Arms: depression Small: Mouth -- c3110_蝕の蜘蛛:腕で叩き潰す:踏み込み小:口", + "3110033": "Spider of c3110_: crushing with Arms: stepping Small: Arms -- c3110_蝕の蜘蛛:腕で叩き潰す:踏み込み小:腕", + "3110040": "Spider of c3110_: Kari: High -- c3110_蝕の蜘蛛:飛び掛かり:高い", + "3110060": "Spider of c3110_: bit: Right side -- c3110_蝕の蜘蛛:噛み付き:右側面", + "3110070": "Spider of c3110_: bit: Left side -- c3110_蝕の蜘蛛:噛み付き:左側面", + "3110080": "Spider of c3110_: bit ② -- c3110_蝕の蜘蛛:噛み付き②", + "3110090": "Spider of c3110_: rampage: the mouth -- c3110_蝕の蜘蛛:暴れまわる:口", + "3110091": "Spider of c3110_: rampage: Left and right hind -- c3110_蝕の蜘蛛:暴れまわる:左右後足", + "3110092": "Spider of c3110_: rampage: the left leg -- c3110_蝕の蜘蛛:暴れまわる:左中足", + "3110093": "Spider of c3110_: rampage: Four Legs -- c3110_蝕の蜘蛛:暴れまわる:前四本足", + "3110700": "Spider of c3110_: Exhale: Ground -- c3110_蝕の蜘蛛:蝕を吐く:地面", + "3110710": "c3110_: Smoke Screen -- c3110_蝕の蜘蛛:煙幕", + "3110800": "c3110_ common attack [obj good small, large] -- c3110_共通攻撃【OBJダメ小・大型】", + "3120010": "c3120_ Mori no sacred beast: Beat with a cane -- c3120_森の霊獣:杖で殴る", + "3120020": "c3120_ Mori no sacred beast: Hit with a cane: depression -- c3120_森の霊獣:杖で殴る:踏み込み大", + "3120030": "C3120_ Forest Sacred Beast: Beat with a cane: left and right side -- c3120_森の霊獣:杖で殴る:左右側面", + "3120040": "c3120_ Mori no sacred Beast: Bun Cane: Depression -- c3120_森の霊獣:杖をぶん回す:踏み込み大", + "3120050": "c3120_ Mori no sacred beast: Punch with a cane: depression small -- c3120_森の霊獣:杖で殴る:踏み込み小", + "3120060": "Sacred Beast of c3120_ Forest: shaking with a cane: Bun posture -- c3120_森の霊獣:杖で振りおろし:ぶん回し姿勢", + "3120500": "c3120_ Mori no sacred beast: Cane common knocked back against shock wave: small -- c3120_森の霊獣:杖共通叩き付け衝撃波:小", + "3120510": "c3120_ Mori no sacred beast: Cane common knocked back against shock wave: large -- c3120_森の霊獣:杖共通叩き付け衝撃波:大", + "3120700": "Sacred Beast of c3120_ Forest: Magic 1: Force -- c3120_森の霊獣:魔法1:フォース", + "3120710": "c3120_ Mori no sacred Beast: Magic 2: Soul Restraints -- c3120_森の霊獣:魔法2:魂縛り", + "3140010": "Caries dripping _ for decals -- 蝕ポタポタ_デカール用", + "3140100": "Straight Breath _ Head -- 直線ブレス_頭", + "3140110": "Saigi Breath _ Head -- 薙ぎ払いブレス_頭", + "3140120": "Bit _ head -- 噛み付き_頭", + "3140121": "Bit _ Neck -- 噛み付き_首", + "3140130": "Scratching _ Feet -- 引っ掻き_足", + "3140131": "Scratching _ Blast -- 引っ掻き_爆風", + "3140140": "Right squished _ feet -- 右踏み付け_足", + "3140141": "Right squished _ Blast -- 右踏み付け_爆風", + "3140150": "Left squished _ feet -- 左踏み付け_足", + "3140151": "Left squished _ Blast -- 左踏み付け_爆風", + "3140160": "A tail payment -- 尻尾払い", + "3140170": "Rush Bit _ Head -- 突進噛み付き_頭", + "3140171": "Rush Bit _ Neck -- 突進噛み付き_首", + "3140180": "Immediate breath _ Foot -- 直下ブレス_足", + "3140181": "Immediate breath _ Blast -- 直下ブレス_爆風", + "3140190": "Glide Breath _ Head -- 滑空ブレス_頭", + "3140191": "Glide Breath _ Neck -- 滑空ブレス_首", + "3140192": "Glide Breath _ feet -- 滑空ブレス_足", + "3140193": "Glide Breath _ Blast -- 滑空ブレス_爆風", + "3140200": "Right bit _ head -- 右旋回噛み付き_頭", + "3140201": "Right bit _ neck -- 右旋回噛み付き_首", + "3140210": "Left bit _ head -- 左旋回噛み付き_頭", + "3140211": "Left bit _ neck -- 左旋回噛み付き_首", + "3140500": "Straight Breath _ Breath -- 直線ブレス_ブレス", + "3140502": "Straight Breath _ Breath (impact) -- 直線ブレス_ブレス(着弾)", + "3140510": "Saigi Bless _ Breath -- 薙ぎ払いブレス_ブレス", + "3140512": "Saigi Breath _ Breath (impact) -- 薙ぎ払いブレス_ブレス(着弾)", + "3140520": "Immediate breath _ Breath -- 直下ブレス_ブレス", + "3140522": "Immediate breath _ Breath (impact) -- 直下ブレス_ブレス(着弾)", + "3140530": "Glide Breath _ Breath -- 滑空ブレス_ブレス", + "3140532": "Glide Breath _ Breath (impact) -- 滑空ブレス_ブレス(着弾)", + "3140540": "Event ①: Hashimoto _ Swirling Breath _ bless ① -- イベント①:橋下_旋回ブレス_ブレス①", + "3140542": "Event ①: Hashimoto _ Swirling Breath _ breath ① (Impact) -- イベント①:橋下_旋回ブレス_ブレス①(着弾)", + "3140550": "Event ①: Hashimoto _ Swirling Breath _ bless ② -- イベント①:橋下_旋回ブレス_ブレス②", + "3140552": "Event ①: Hashimoto _ Swirling Breath _ breath ② (Impact) -- イベント①:橋下_旋回ブレス_ブレス②(着弾)", + "3140560": "Event ②: Climb 2_ appearance _ on tower → Square _ breath -- イベント②:登る2_登場_塔上→広場_ブレス", + "3140562": "Event ②: Climb 2_ appearance _ on tower → Square _ breath (impact) -- イベント②:登る2_登場_塔上→広場_ブレス(着弾)", + "3140570": "Event ②: Climb 2_ another tower → square → breath withdrawal _ breath -- イベント②:登る2_別塔→広場→ブレス撤退_ブレス", + "3140572": "Event ②: Climb 2_ another tower → square → breath withdrawal _ breath (impact) -- イベント②:登る2_別塔→広場→ブレス撤退_ブレス(着弾)", + "3140580": "Rampage Breath A (breath _max) -- 暴れブレスA(ブレス_MAX)", + "3140581": "Rampage Breath A (ground) -- 暴れブレスA(地面)", + "3140582": "Rampage Breath A (ground _ decal) -- 暴れブレスA(地面_デカール)", + "3140583": "Rampage Breath A (breath _ ①) -- 暴れブレスA(ブレス_①)", + "3140584": "Rampage Breath A (breath _ ②) -- 暴れブレスA(ブレス_②)", + "3140585": "Rampage Breath A (breath _ ③) -- 暴れブレスA(ブレス_③)", + "3140586": "Rampage Breath A (breath _ ④) -- 暴れブレスA(ブレス_④)", + "3140587": "Rampage Breath A (breath _ ⑤) -- 暴れブレスA(ブレス_⑤)", + "3140588": "Rampage Breath A (breath _ ⑥) -- 暴れブレスA(ブレス_⑥)", + "3140590": "Rampage Breath B (Breath _max) -- 暴れブレスB(ブレス_MAX)", + "3140591": "Rampage Breath B (ground) -- 暴れブレスB(地面)", + "3140592": "Rampage Breath B (ground _ Decal) -- 暴れブレスB(地面_デカール)", + "3140593": "Rampage Breath B (Breath _ ①) -- 暴れブレスB(ブレス_①)", + "3140594": "Rampage Breath B (Breath _ ②) -- 暴れブレスB(ブレス_②)", + "3140595": "Rampage Breath B (Breath _ ③) -- 暴れブレスB(ブレス_③)", + "3140596": "Rampage Breath B (Breath _ ④) -- 暴れブレスB(ブレス_④)", + "3140597": "Rampage Breath B (Breath _ ⑤) -- 暴れブレスB(ブレス_⑤)", + "3140598": "Rampage Breath B (Breath _ ⑥) -- 暴れブレスB(ブレス_⑥)", + "3140630": "Rampage Breath B (ground _ Aisle) -- 暴れブレスB(地面_通路)", + "3140631": "Rampage Breath B (ground _ Passage decal) -- 暴れブレスB(地面_通路デカール)", + "3140660": "Withdrawal breath (breath _max) -- 撤退ブレス(ブレス_MAX)", + "3140661": "Withdrawal Breath (Breath _ ①) -- 撤退ブレス(ブレス_①)", + "3140662": "Withdrawal Breath (Breath _ ②) -- 撤退ブレス(ブレス_②)", + "3140663": "Withdrawal Breath (Breath _ ③) -- 撤退ブレス(ブレス_③)", + "3140664": "Withdrawal Breath (Breath _ ④) -- 撤退ブレス(ブレス_④)", + "3140665": "Withdrawal Breath (Breath _ ⑤) -- 撤退ブレス(ブレス_⑤)", + "3140666": "Withdrawal Breath (Breath _ ⑥) -- 撤退ブレス(ブレス_⑥)", + "3140667": "Withdrawal breath (ground _ Passage) -- 撤退ブレス(地面_通路)", + "3140668": "Withdrawal breath (ground _ passage decal) -- 撤退ブレス(地面_通路デカール)", + "3140670": "Bonfire Breath (Breath _max) -- 篝火ブレス(ブレス_MAX)", + "3140671": "Bonfire Bless (Breath _ ①) -- 篝火ブレス(ブレス_①)", + "3140672": "Bonfire Bless (Breath _ ②) -- 篝火ブレス(ブレス_②)", + "3140673": "Bonfire Bless (Breath _ ③) -- 篝火ブレス(ブレス_③)", + "3140674": "Bonfire Bless (Breath _ ④) -- 篝火ブレス(ブレス_④)", + "3140675": "Bonfire Bless (Breath _ ⑤) -- 篝火ブレス(ブレス_⑤)", + "3140676": "Bonfire Bless (Breath _ ⑥) -- 篝火ブレス(ブレス_⑥)", + "3140677": "Bonfire Breath (Ground _ Passage) -- 篝火ブレス(地面_通路)", + "3140678": "Bonfire Breath (ground _ passage decal) -- 篝火ブレス(地面_通路デカール)", + "3140680": "Left side breath (breath _max) -- 左側面ブレス(ブレス_MAX)", + "3140681": "Left Side Breath (breath _ ①) -- 左側面ブレス(ブレス_①)", + "3140682": "Left Side Breath (breath _ ②) -- 左側面ブレス(ブレス_②)", + "3140683": "Left Side Breath (breath _ ③) -- 左側面ブレス(ブレス_③)", + "3140684": "Left Side Breath (breath _ ④) -- 左側面ブレス(ブレス_④)", + "3140685": "Left Side Breath (breath _ ⑤) -- 左側面ブレス(ブレス_⑤)", + "3140686": "Left Side Breath (breath _ ⑥) -- 左側面ブレス(ブレス_⑥)", + "3140687": "Left Side breath (ground _ Aisle) -- 左側面ブレス(地面_通路)", + "3140688": "Left Side breath (ground _ passage decal) -- 左側面ブレス(地面_通路デカール)", + "3140700": "Event ①: Hashimoto _ appeared _ Feet -- イベント①:橋下_登場_足", + "3140701": "Event ①: Hashimoto _ appeared _ Blast (left) -- イベント①:橋下_登場_爆風(左)", + "3140702": "Event ①: Hashimoto _ appeared _ Blast (right) -- イベント①:橋下_登場_爆風(右)", + "3140710": "Event ①: Hashimoto _ Circling Breath _ feet -- イベント①:橋下_旋回ブレス_足", + "3140711": "Event ①: Hashimoto _ Swirling Breath _ blast -- イベント①:橋下_旋回ブレス_爆風", + "3160010": "C3160_ Dragon's Guardian Knight: advancethe -- c3160_竜の守護騎士:走り込み振りおろし", + "3160020": "The Guardian Knight of the c3160_ Dragon: Crossing _1 -- c3160_竜の守護騎士:横切り_1段目", + "3160021": "The Guardian Knight of the c3160_ Dragon: cross-stage -- c3160_竜の守護騎士:横切り_2段目", + "3160030": "C3160_ Dragon's Guardian Knight: Shield bash -- c3160_竜の守護騎士:シールドバッシュ", + "3160031": "C3160_ Dragon's Guardian Knight: Axe Swing -- c3160_竜の守護騎士:斧振り降ろし", + "3160040": "C3160_ Dragon's Guardian Knight: Axe turned attack -- c3160_竜の守護騎士:斧振り向き攻撃", + "3160050": "C3160_ Dragon's Guardian Knight: Shield turned attack -- c3160_竜の守護騎士:盾振り向き攻撃", + "3160200": "C3160_ Dragon's Guardian Knight: [HU] Jump Shield knocked back against -- c3160_竜の守護騎士:[HU]ジャンプ盾叩き付け", + "3160210": "C3160_ Dragon's Guardian Knight: [HU] Derived Sword -- c3160_竜の守護騎士:[HU]派生斬り", + "3160220": "C3160_ Dragon's Guardian Knight: [HU] Shield knocked back against -- c3160_竜の守護騎士:[HU]盾叩き付け", + "3160230": "C3160_ Dragon's Guardian Knight: [HU] Shield Bash added -- c3160_竜の守護騎士:[HU]シールドバッシュ追加", + "3160240": "C3160_ Dragon's Guardian Knight: [HU] Shield Combo 1 -- c3160_竜の守護騎士:[HU]盾コンボ1", + "3160250": "C3160_ Dragon's Guardian Knight: [HU] Shield guillotine -- c3160_竜の守護騎士:[HU]盾ギロチン", + "3160260": "C3160_ Dragon's Guardian Knight: [HU] Gurdcancell Bash -- c3160_竜の守護騎士:[HU]ガードキャンセルバッシュ", + "3160270": "C3160_ Dragon's Guardian Knight: Arts _ Rush Dragon Hunt: Assault -- c3160_竜の守護騎士:アーツ_突進竜狩り:突撃", + "3160280": "C3160_ Dragon's patron Knight: arts _ extensive whack -- c3160_竜の守護騎士:アーツ_広範囲薙ぎ", + "3160290": "C3160_ Dragon's Guardian Knight: the Arts _ Shockwave: Axe -- c3160_竜の守護騎士:アーツ_衝撃波:斧", + "3160300": "C3160_ Dragon's Guardian Knight: arts _ Jump Guillotine -- c3160_竜の守護騎士:アーツ_ジャンプギロチン", + "3160700": "C3160_ Dragon's Guardian Knight: Shockwave -- c3160_竜の守護騎士:衝撃波", + "3160900": "Guardian Knight of the C3160_ Dragon: Guard -- c3160_竜の守護騎士:ガード", + "3170010": "Slashing 1 -- 斬撃1", + "3170011": "Slashing 2 -- 斬撃2", + "3170012": "Slashing 3 -- 斬撃3", + "3170013": "Slashing 4 -- 斬撃4", + "3170020": "Poke a Pause -- 間合いを詰めて突く", + "3170030": "Both hand-held strength 1 -- 両手持ちして強斬り1", + "3170031": "Both hand-held strength 2 -- 両手持ちして強斬り2", + "3170040": "Pre Kick -- 前蹴り", + "3170050": "Absorbing Soul Grab -- 吸魂掴みかかり", + "3170051": "Soul-grabbing: throwing damage -- 吸魂掴みかかり:投げダメージ", + "3170060": "Cancel Soul Grab -- キャンセル吸魂掴み", + "3170070": "Right side to attack -- 右側面~後背攻撃", + "3170080": "Left side to attack -- 左側面~後背攻撃", + "3170090": "Soul Grip: Guard Posture -- 吸魂掴み:ガード姿勢", + "3170100": "Cancel Kick -- キャンセル蹴り", + "3170110": "Jump skewered -- ジャンプ串刺し", + "3170120": "Dash Whack -- ダッシュ薙ぎ", + "5010010": "C5010_ Storm King: a3000_ Storm whack: Sword damage -- c5010_嵐の王:a3000_嵐薙ぎ:剣ダメージ", + "5010020": "C5010_ Storm King: A3001_ Storm whack second stage: Sword damage -- c5010_嵐の王:a3001_嵐薙ぎ2段目:剣ダメージ", + "5010030": "C5010_ Storm King: A3002_ Storm whack: Sword damage -- c5010_嵐の王:a3002_嵐薙ぎ振り下ろし:剣ダメージ", + "5010040": "C5010_ the King of storms: a3003_ one-handed Shiri ① -- c5010_嵐の王:a3003_片手袈裟斬り①", + "5010050": "C5010_ the King of storms: a3004_ both hands left Kesa -- c5010_嵐の王:a3004_両手左袈裟", + "5010060": "King of the c5010_ storm: a3005_ both hands thrust -- c5010_嵐の王:a3005_両手突き", + "5010070": "King of C5010_ Storm: The a3006_ of the deadly -- c5010_嵐の王:a3006_必殺の突き", + "5010080": "C5010_ Storm King: A3008_ two-handed 一閃 -- c5010_嵐の王:a3008_両手横一閃", + "5010090": "King of C5010_ Storm: a3009_ both -- c5010_嵐の王:a3009_両手振り降ろし", + "5010100": "King of c5010_ Storm: a3010_ left foot down -- c5010_嵐の王:a3010_左足踏み下ろし雷撃", + "5010110": "C5010_ Storm King: A3011_ turned attack -- c5010_嵐の王:a3011_振り向き攻撃", + "5010120": "King of C5010_ Storm: a3013_ both hand thrust combo ③ -- c5010_嵐の王:a3013_両手突きコンボ③", + "5010130": "c5010_ King of the Storm: a3014_ two-handed left pay -- c5010_嵐の王:a3014_両手左払い", + "5010140": "King of c5010_ Storm: a3015_ right foot down -- c5010_嵐の王:a3015_右足踏み下ろし雷撃", + "5010150": "C5010_ Storm King: a3016_ small dash rush & Flip -- c5010_嵐の王:a3016_小ダッシュ突進&反転", + "5010160": "King of c5010_ Storm: a3017_ Depression -- c5010_嵐の王:a3017_踏み込み払い", + "5010200": "King of c5010_ Storm: a3007_ Gwin throwing: grasping judgment -- c5010_嵐の王:a3007_グウィン投げ:掴み判定", + "5010201": "C5010_ Storm King: a3007_ Gwin Throwing: Explosion -- c5010_嵐の王:a3007_グウィン投げ:爆発", + "5010210": "King of C5010_ Storm: Rush from A3018_ floating -- c5010_嵐の王:a3018_浮遊からの突進", + "5010220": "C5010_ the King of storms: a3019_ thrust at Lightning -- c5010_嵐の王:a3019_雷で突き刺す", + "5010700": "C5010_ Storm King: a3000_ widespread storm whack: bullet damage -- c5010_嵐の王:a3000_広範囲嵐薙ぎ:弾丸ダメージ", + "5010710": "C5010_ Storm King: a3001_ wide Storm whack second stage: bullet damage -- c5010_嵐の王:a3001_広範囲嵐薙ぎ2段目:弾丸ダメージ", + "5010720": "King of the c5010_ storm: a3002_: Bullet Damage -- c5010_嵐の王:a3002_遠距離振り降ろし:弾丸ダメージ", + "5020010": "Right hook -- 右フック", + "5020020": "Kari: Right -- 飛び掛かり:右", + "5020030": "Hands slams: Right -- 両手叩きつけ:右", + "5020040": "Left hook to right side -- 右側面へ左フック", + "5020050": "Right hook to left side -- 左側面へ右フック", + "5020060": "Jump up and crush on Wings: Right -- 翼で飛び上がって叩き潰し:右", + "5030100": "c5030: a3000 Other ground payment 1 -- c5030:a3000ほか 地上払い1", + "5030110": "c5030: a3001 Swing attack: Pay -- c5030:a3001旋回攻撃:払い", + "5030111": "c5030: a3001 Swing attack: per body -- c5030:a3001旋回攻撃:体当たり", + "5030120": "c5030: a3002 trampled (left foot): Direct hit -- c5030:a3002踏みつけ(左足):直撃", + "5030121": "c5030: a3002 trampled (left foot): Blast -- c5030:a3002踏みつけ(左足):爆風", + "5030130": "c5030: a3003 Other flying attack: thrusting -- c5030:a3003ほか 飛びかかり攻撃:突き", + "5030131": "c5030: a3003 Other flying attacks: per body -- c5030:a3003ほか 飛びかかり攻撃:体当たり", + "5030140": "c5030: a3004, ground swing down: simple -- c5030:a3004ほか 地上振り下ろし:単", + "5030150": "c5030: a3005: Pay: For jumping -- c5030:a3005:払い:飛びかかり用", + "5030160": "c5030: a3007: Ground small setback & forward thrust -- c5030:a3007:地上小後退&前進突き", + "5030170": "c5030: a3008: Ground Small retreat Breath: Root -- c5030:a3008:地上小後退ブレス:根本", + "5030171": "c5030: a3008: Ground Small retreat breath: Middle -- c5030:a3008:地上小後退ブレス:真ん中", + "5030172": "c5030: a3008: Ground Small retreat Breath: Tip -- c5030:a3008:地上小後退ブレス:先端", + "5030180": "c5030: a3009: Jumped bless -- c5030:a3009:飛び上がりブレス", + "5030190": "c5030: a3011: Jump over: Rush on takeoff -- c5030:a3011:飛び越える:離陸時の突進", + "5030200": "c5030: a3012: Swing down: for jumping -- c5030:a3012:振り下ろし:飛びかかり用", + "5030201": "c5030: a3013: Ground payment 1 -- c5030:a3013:地上払い1", + "5030210": "c5030: a3014: Ground payment 2 -- c5030:a3014:地上払い2", + "5030220": "c5030: a3015: Ground down -- c5030:a3015:地上振り下ろし", + "5030221": "c5030: a3015: Ground Down (single) -- c5030:a3015:地上振り下ろし(単)", + "5030230": "c5030: a3017: Trampled (right foot): direct hit -- c5030:a3017:踏みつけ(右足):直撃", + "5030231": "c5030: a3017: Trampled (right foot): Blast -- c5030:a3017:踏みつけ(右足):爆風", + "5030240": "c5030: a3018: Pounce attack (Close range): Thrust -- c5030:a3018:飛びかかり攻撃(近距離):突き", + "5030241": "c5030: a3018: Flying Attack (close range): per body -- c5030:a3018:飛びかかり攻撃(近距離):体当たり", + "5030250": "c5030: a3019: Ground Down (simple: Distance Bali 2) -- c5030:a3019:地上振り下ろし(単:距離バリ2)", + "5030260": "c5030: a3021: Shaking down a3000 (from a3011) -- c5030:a3021:振り下ろしa3000(a3011から繋がる版)", + "5030270": "c5030: a3022: Shaking down a3006 (from a3011) -- c5030:a3022:振り下ろしa3006(a3011から繋がる版)", + "5030800": "c5030: General crush: Right foot Hit -- c5030:汎用 押しつぶし:右足直撃", + "5030810": "c5030: General crush: Right foot blast -- c5030:汎用 押しつぶし:右足爆風", + "5030820": "c5030: General crush: Left foot hit -- c5030:汎用 押しつぶし:左足直撃", + "5030830": "c5030: General crush: Left foot blast -- c5030:汎用 押しつぶし:左足爆風", + "5030835": "c5030: General crush: Body hit -- c5030:汎用 押しつぶし:胴体直撃", + "5030840": "C5030: General entrainment: Neck to face -- c5030:汎用 巻き込み:首~顔", + "5030850": "C5030: General entrainment: Right foot -- c5030:汎用 巻き込み:右足", + "5030860": "C5030: General entrainment: Left foot -- c5030:汎用 巻き込み:左足", + "5110010": "C5110_ rushes Combo ② (Saigi) -- c5110_突進コンボ②(薙ぎ払い)", + "5110020": "c5110_ Jump Attack -- c5110_ジャンプ攻撃", + "5110030": "c5110_ Punch (Hook at close range) -- c5110_パンチ(近距離でのフック)", + "5110040": "c5110_ Triple Combo ① (Saigi from left hand) -- c5110_三連コンボ①(左手からの薙ぎ払い)", + "5110050": "c5110_ Triple Combo ② (tackle) -- c5110_三連コンボ②(タックル)", + "5110060": "c5110_ Triple Combo ③ (TS) -- c5110_三連コンボ③(石突での振り下し)", + "5110070": "c5110_ Melee Combo ① (thrust attack) -- c5110_近接コンボ①(突き出し攻撃)", + "5110080": "c5110_ Melee Combo ② (jump-up attack) 1_ -- c5110_近接コンボ②(跳ね上げ攻撃)1_振り下ろし", + "5110090": "c5110_ Backward attack -- c5110_後方攻撃", + "5110100": "c5110_ throwing Transition Attack ① _ grabs -- c5110_投げ遷移攻撃①_掴み", + "5110110": "c5110_ Lateral Step Sword -- c5110_横ステップ斬り抜け", + "5110120": "c5110_ Melee Combo B ① (thrust) -- c5110_近接コンボB①(突き)", + "5110130": "c5110_ Melee Combo B ②-1 (thrust) -- c5110_近接コンボB②-1(突き)", + "5110140": "c5110_ Melee Combo B ②-2 (slams) -- c5110_近接コンボB②-2(叩きつけ)", + "5110200": "c5110_ Heat-up transition attack -- c5110_ヒートアップ遷移攻撃", + "5110300": "c5110_ Heat up combo a ① (piercing) -- c5110_ヒートアップコンボA①(突き刺し)", + "5110310": "c5110_ heat up attack: Combo a ② (bouncing up) -- c5110_ヒートアップ攻撃:コンボA②(跳ね上げ)", + "5110330": "c5110_ heat up attack: Combo B ② (return Saigi) -- c5110_ヒートアップ攻撃:コンボB②(返しの薙ぎ払い)", + "5110340": "c5110_ heat up attack: Combo B ③ (left hand slams) -- c5110_ヒートアップ攻撃:コンボB③(左手の叩きつけ)", + "5110350": "c5110_ heat up attack: Combo C ① (right hand jump ⇒ thrusting) -- c5110_ヒートアップ攻撃:コンボC①(右手ジャンプ⇒突き刺し )", + "5110351": "c5110_ heat up attack: Combo C ① (right hand jump ⇒ Piercing) _ Left hand judgment -- c5110_ヒートアップ攻撃:コンボC①(右手ジャンプ⇒突き刺し )_左手判定", + "5110360": "c5110_ heat up attack: Combo C ② (left hand Saigi) -- c5110_ヒートアップ攻撃:コンボC②(左手の薙ぎ払い)", + "5110370": "c5110_ heat up attack: Backward attack ① (tail, slams) -- c5110_ヒートアップ攻撃:後方攻撃①(尻尾、叩きつけ)", + "5110380": "c5110_ heat up attack: Rear attack ② (right hand Saigi, range) -- c5110_ヒートアップ攻撃:後方攻撃②(右手薙ぎ払い、範囲)", + "5110391": "c5110_ heat up attack: ⇒ slams _ range with tail & left body -- c5110_ヒートアップ攻撃:尻尾&左手で上体起こし⇒叩きつけ_範囲", + "5110400": "c5110_ Heat-up attack: Transition attack to throw ① -- c5110_ヒートアップ攻撃:投げ①への遷移攻撃", + "5110420": "c5110_ heat up attack: Walk/Tail Attack _ Swing -- c5110_ヒートアップ攻撃:歩行/尻尾攻撃_振り", + "5110430": "c5110_ heat up attack: Medium/Long Distance/Saigi _ arm -- c5110_ヒートアップ攻撃:中遠距離用/薙ぎ払い_腕", + "5110431": "c5110_ heat up attack: Medium/Long Distance/Saigi _ slashing -- c5110_ヒートアップ攻撃:中遠距離用/薙ぎ払い_斬撃", + "5110441": "c5110_ heat up attack: Melee attack _ Snake Spirit Arm -- c5110_ヒートアップ攻撃:近接攻撃_蛇霊腕", + "5110700": "c5110_ Throwing damage -- c5110_投げダメージ", + "5110710": "c5110_ heat up attack: Throwing damage _ slams ① -- c5110_ヒートアップ攻撃:投げダメージ_叩きつけ①", + "5110711": "c5110_ heat up attack: Throwing damage _ slams ② -- c5110_ヒートアップ攻撃:投げダメージ_叩きつけ②", + "5110712": "c5110_ heat up attack: Throwing damage _ slams ③ -- c5110_ヒートアップ攻撃:投げダメージ_叩きつけ③", + "5110713": "c5110_ heat up attack: Throw damage _ Finish -- c5110_ヒートアップ攻撃:投げダメージ_フィニッシュ", + "5110900": "c5110_ heat up caries breath -- c5110_ヒートアップ蝕ブレス", + "5120010": "c5120_ Snake Spirits: Frontal melee attack _ head knocked back against -- c5120_蛇霊:正面近接攻撃_頭叩き付け", + "5120011": "c5120_ Snake Spirit: Frontal melee attack _ head lateral shaking -- c5120_蛇霊:正面近接攻撃_頭横振り", + "5120012": "c5120_ Snake Spirits: Frontal melee Attack _ head + neck knocked back against -- c5120_蛇霊:正面近接攻撃_頭+首叩き付け", + "5120013": "c5120_ Snake Spirits: Frontal melee Attack _ head + neck knocked back against Shockwave -- c5120_蛇霊:正面近接攻撃_頭+首叩き付け衝撃波", + "5120020": "c5120_ Snake Spirit: Combo First hammer (right hand Saigi) -- c5120_蛇霊:コンボ初撃(右手薙ぎ払い)", + "5120030": "c5120_ Snake Spirit: Combo 2 firing (left hand Saigi) -- c5120_蛇霊:コンボ2撃目(左手薙ぎ払い)", + "5120040": "C5120_ Snake Spirits: Range Turning Attack _ Body Press _ Head -- c5120_蛇霊:範囲旋回攻撃_ボディープレス_頭部", + "5120041": "C5120_ Snake Spirits: Range Turning Attack _ body Press _ abdomen -- c5120_蛇霊:範囲旋回攻撃_ボディープレス_腹部", + "5120042": "C5120_ Snake Spirits: Range Turning Attack _ Body Press _ Shockwave -- c5120_蛇霊:範囲旋回攻撃_ボディープレス_衝撃波", + "5120050": "c5120_ Snake Spirit: per body (rush) -- c5120_蛇霊:体当たり(突進)", + "5120060": "c5120_ Snake Spirits: Backward bite attack (left) -- c5120_蛇霊:後方噛みつき攻撃(左)", + "5120070": "c5120_ Snake Spirits: Backward bite attack (right) -- c5120_蛇霊:後方噛みつき攻撃(右)", + "5120080": "c5120_ Snake spirit: bit attack first stage -- c5120_蛇霊:噛み付き攻撃1段目", + "5120090": "c5120_ Snake Spirit: bit attack second stage -- c5120_蛇霊:噛み付き攻撃2段目", + "5120100": "c5120_ Snake spirits: caries breath -- c5120_蛇霊:蝕ブレス", + "5120110": "c5120_ Snake Spirit: Tail attack -- c5120_蛇霊:尻尾攻撃", + "5120120": "c5120_ Snake Spirits: turned knocked back against: Head knocked back against -- c5120_蛇霊:振り向き叩き付け:頭叩き付け", + "5120121": "c5120_ Snake Spirits: turned knocked back against: lunge -- c5120_蛇霊:振り向き叩き付け:突進", + "5120130": "c5120_ Snake spirit: bit tail: bit first stage -- c5120_蛇霊:噛み付き尻尾払い:噛み付き1段目", + "5120131": "c5120_ Snake spirit: bit tail: bit second stage -- c5120_蛇霊:噛み付き尻尾払い:噛み付き2段目", + "5120132": "c5120_: Bit tail attack: tail -- c5120_蛇霊:噛み付き尻尾攻撃:尻尾", + "5120140": "C5120_ Snake Spirits: bit loop: bit 1st Stage -- c5120_蛇霊:噛み付きループ:噛み付き1段目", + "5120141": "C5120_ Snake Spirits: bit loop: bit second stage -- c5120_蛇霊:噛み付きループ:噛み付き2段目", + "5120142": "C5120_ Snake Spirits: bit loop: bit third stage -- c5120_蛇霊:噛み付きループ:噛み付き3段目", + "5120710": "c5120_: Caries explosion -- c5120_蛇霊:蝕爆発", + "5120720": "c5120_ Snake Spirits: caries accumulation -- c5120_蛇霊:蝕溜まり", + "5120800": "c5120_ Snake Spirit: Walking Torso -- c5120_蛇霊:歩行胴体", + "5120801": "c5120_ Snake Spirit: Walking right hand -- c5120_蛇霊:歩行右手", + "5120802": "c5120_ Snake Spirit: Walking left hand -- c5120_蛇霊:歩行左手", + "5120810": "c5120_ Snake Spirit: Traveling Torso -- c5120_蛇霊:走行胴体", + "5120811": "c5120_ Snake Spirit: Traveling right hand -- c5120_蛇霊:走行右手", + "5120812": "c5120_ Snake Spirit: Traveling left hand -- c5120_蛇霊:走行左手", + "5140010": "Right hand: Shiri (avoidance included) -- 右手:右回り込み袈裟斬り(回避込み)", + "5140020": "Left-hand thrust (evasion included) -- 左手:左回り込み突き刺し(回避込み)", + "5140030": "Right hand: Jump forward dive slash -- 右手:前方ジャンプ飛び込み斬り", + "5140040": "Right hand: Shiri 1 -- 右手:袈裟斬り1", + "5140050": "Right hand: Shiri 2 -- 右手:袈裟斬り2", + "5140060": "Right hand: Shiri 3 -- 右手:袈裟斬り3", + "5140070": "Left hand: Piercing (throwing start technique) -- 左手:突き刺し(投げ始動技)", + "5140071": "Left hand: piercing (throwing damage) -- 左手:突き刺し(投げダメージ)", + "5140072": "Left hand: piercing (throwing damage deadline) -- 左手:突き刺し(投げダメージ〆)", + "5140080": "Left hand: Piercing -- 左手:突き刺し", + "5140110": "Right hand: Clockwise Shiri (attack) -- 右手:右回り込み袈裟斬り(攻撃)", + "5140120": "Left hand: thrust (Attack) -- 左手:左回り込み突き刺し(攻撃)", + "5140330": "Right hand: Jump forward dive slash -- 右手:前方ジャンプ飛び込み斬り", + "5140340": "Left hand: Forward jump dive left thrusting -- 左手:前方ジャンプ飛び込み左突き刺し", + "5140350": "Right hand: Backward jump flapping back falling right hand slash -- 右手:後方ジャンプ羽ばたき後ろ下がり右手斬り", + "5140360": "Left hand: upward jump flapping -- 左手:上方ジャンプ羽ばたき左突き刺し", + "5150100": "c5150_ Saliva: Stick a cane -- c5150_サリヴァ―ン:杖を突きたてる", + "5150110": "c5150_ Saliva: Climb slams and right -- c5150_サリヴァ―ン:上昇叩きつけ・右", + "5150120": "c5150_ Saliva: Swinging Right -- c5150_サリヴァ―ン:振り上げ・右", + "5150130": "c5150_ Saliva: Ascent slams, left -- c5150_サリヴァ―ン:上昇叩きつけ・左", + "5150140": "c5150_ Saliva: Swinging left -- c5150_サリヴァ―ン:振り上げ・左", + "5150150": "c5150_ Saliva: Forward Thrust: Cane -- c5150_サリヴァ―ン:前進突き:杖", + "5150151": "c5150_ Saliva: Forward Thrust: Body -- c5150_サリヴァ―ン:前進突き:体", + "5150160": "c5150_ Saliva: Whack attack: Whack -- c5150_サリヴァ―ン:薙ぎ攻撃:薙ぎ", + "5150170": "c5150_ Saliva: Rear Swing -- c5150_サリヴァ―ン:背面振り上げ", + "5150180": "c5150_ Saliva: U-turn Iaido -- c5150_サリヴァ―ン:Uターン居合", + "5150190": "c5150_ Saliva: Dive: At the time of appearance -- c5150_サリヴァ―ン:潜航:出現時", + "5150200": "c5150_ Saliva: Tail Furi -- c5150_サリヴァ―ン:尻尾振り逃げ", + "5150700": "c5150_ Saliva: Induction Bullet -- c5150_サリヴァ―ン:誘導弾", + "5150710": "c5150_ Saliva: Whack: Magic shot -- c5150_サリヴァ―ン:薙ぎ:魔法散弾", + "5150720": "c5150_ Saliva: Magic Penetrating Bullets -- c5150_サリヴァ―ン:魔法貫通弾", + "5150740": "c5150_ Saliva: NITs self-centered explosion -- c5150_サリヴァ―ン:ニト自己中心爆発", + "5160010": "King of c5160_: Right hand knocked back against (before HU) -- c5160_死霊の王:右手叩き付け(HU前)", + "5160020": "King of c5160_: Right hand Saigi (before HU) -- c5160_死霊の王:右手薙ぎ払い(HU前)", + "5160030": "King of the c5160_: Left hand knocked back against (before HU) -- c5160_死霊の王:左手叩き付け(HU前)", + "5160040": "King of the C5160_: Skeleton Resurrection (before HU) -- c5160_死霊の王:スケルトン復活(HU前)", + "5160050": "C5160_ King: Forward Attack-right hand (before HU) -- c5160_死霊の王:前進攻撃 - 右手(HU前)", + "5160051": "C5160_ King: Forward attack-left hand (before HU) -- c5160_死霊の王:前進攻撃 - 左手(HU前)", + "5160060": "King of the c5160_: Miasma breath (before HU): Outbreak bullet -- c5160_死霊の王:瘴気ブレス(HU前):発生弾", + "5160061": "King of the c5160_: Miasma breath (before HU): Diffusion bullets -- c5160_死霊の王:瘴気ブレス(HU前):拡散弾", + "5160070": "King of the c5160_: Tomb King (before Hu) -- c5160_死霊の王:墓王剣取り出し(HU前)", + "5160080": "King of the c5160_: Tomb King Sword eject attack A (before HU) -- c5160_死霊の王:墓王剣取り出し攻撃A(HU前)", + "5160090": "King of the c5160_: Tomb King Sword eject attack B (before HU) -- c5160_死霊の王:墓王剣取り出し攻撃B(HU前)", + "5160300": "King of the c5160_: the grave elementalers of the tomb King (after Hu) -- c5160_死霊の王:墓王の大剣舞 突き刺し(HU後)", + "5160301": "King of the c5160_: The elementalers of the Grave King (after Hu) -- c5160_死霊の王:墓王の大剣舞 突き刺し爆発(HU後)", + "5160302": "King of c5160_: Tomb of the Grave King Elementalers Grave King sword (after Hu) -- c5160_死霊の王:墓王の大剣舞 墓王剣(HU後)", + "5160303": "King of the c5160_: the grave elementalers of the tomb king -- c5160_死霊の王:墓王の大剣舞 突出剣", + "5160313": "King of the c5160_: Right hand Sword attack (after Hu) -- c5160_死霊の王:右手剣定点攻撃(HU後)", + "5160320": "C5160_ King: Right hand sword Nagi (after Hu) -- c5160_死霊の王:右手剣なぎ払い(HU後)", + "5160330": "King of the c5160_: the left hand slams (after Hu) -- c5160_死霊の王:左手叩きつけ(HU後)", + "5160340": "King of c5160_: Forward attack (after Hu) _ Right hand -- c5160_死霊の王:前進攻撃(HU後)_右手", + "5160341": "King of c5160_: Forward attack (after Hu) _ Left hand -- c5160_死霊の王:前進攻撃(HU後)_左手", + "5160350": "The King of c5160_: Skeleton Resurrection -- c5160_死霊の王:スケルトン復活", + "5160360": "King of c5160_: Book -- c5160_死霊の王:予約", + "5160370": "King of c5160_: Right hand Saigi added (before HU) -- c5160_死霊の王:右手薙ぎ払い追加(HU前)", + "5160380": "King of c5160_: shifted hands slams (before Hu) _ Right hand -- c5160_死霊の王:ずらし両手叩きつけ(HU前)_右手", + "5160381": "King of c5160_: shifted hands slams (before Hu) _ Left hand -- c5160_死霊の王:ずらし両手叩きつけ(HU前)_左手", + "5160390": "King of the c5160_: The Rush (before Hu) _ Body -- c5160_死霊の王:突進(HU前)_体", + "5160391": "King of the c5160_: The Rush (before Hu) _ right arm -- c5160_死霊の王:突進(HU前)_右腕", + "5160392": "King of c5160_: Rush (before Hu) _ left arm -- c5160_死霊の王:突進(HU前)_左腕", + "5160400": "King of the c5160_: miasma (after HU): Outbreak bullet -- c5160_死霊の王:瘴気ブレス(HU後):発生弾", + "5160401": "King of c5160_: Miasma (after HU): diffusion bullets -- c5160_死霊の王:瘴気ブレス(HU後):拡散弾", + "5160410": "King of the c5160_: two-slash (after Hu) -- c5160_死霊の王:2連斬り(HU後)", + "5160420": "King of the c5160_: Right hand sword thrust (after Hu) -- c5160_死霊の王:右手剣刺突(HU後)", + "5160430": "King of the c5160_: The rush (after Hu) _ body -- c5160_死霊の王:突進(HU後)_体", + "5160431": "King of c5160_: Rush (after Hu) _ Left hand -- c5160_死霊の王:突進(HU後)_左手", + "5160432": "King of c5160_: Rush (after Hu) _ Right Hand Sword -- c5160_死霊の王:突進(HU後)_右手剣", + "5160700": "King of c5160_: Drifting miasma -- c5160_死霊の王:漂う瘴気", + "5170010": "c5170_ patron gu long: breath -- c5170_守護の古龍:ブレス", + "5180010": "c5180: a3000 right foot crush -- c5180:a3000右足踏み潰し", + "5180020": "c5180: a3001 left foot crushing -- c5180:a3001左足踏み潰し", + "5180030": "c5180: a3002 right hand slapping crush -- c5180:a3002右手叩き潰し", + "5180040": "c5180: a3003 left hand beating crush -- c5180:a3003左手叩き潰し", + "5180050": "c5180: a3004 Right-hand Saigi -- c5180:a3004右手薙ぎ払い", + "5180060": "c5180: a3005 left hand Saigi -- c5180:a3005左手薙ぎ払い", + "5180070": "c5180: a3006 Hip Drop -- c5180:a3006ヒップドロップ", + "5180080": "C5180: a3007 Rising hip drop -- c5180:a3007立ち上がりヒップドロップ", + "5180090": "c5180: a3008 two-handed crush -- c5180:a3008両手叩き潰し", + "5180100": "c5180: a3009 Right-hand rotation attack -- c5180:a3009右手回転攻撃", + "5180110": "c5180: a3010 left hand rotation attack -- c5180:a3010左手回転攻撃", + "5180120": "c5180: a3011 stomping crush: Belly near: Right hit -- c5180:a3011踏み潰し:腹付近:右直撃", + "5180130": "c5180: a3012 on foot: distant front: Left foot hit -- c5180:a3012足で叩き潰す:遠距離正面:左足直撃", + "5180140": "c5180: a3000 right foot crush: Second hammer -- c5180:a3000右足踏み潰し:二撃目", + "5180150": "c5180: a3001 left foot crushing: Second hammer -- c5180:a3001左足踏み潰し:二撃目", + "5180160": "c5180: a3002 right hand crush: Second Hammer -- c5180:a3002右手叩き潰し:二撃目", + "5180170": "c5180: a3003 left hand crush: Second Hammer -- c5180:a3003左手叩き潰し:二撃目", + "5180180": "Rush Crush -- 突進叩き潰し", + "5180300": "Right-turn attack: arm -- 右回転攻撃:右腕", + "5180301": "Right turning attack: belly arm -- 右回転攻撃:腹腕", + "5180310": "Left arm rotation attack -- 左回転攻撃:左腕", + "5180311": "Left turn attack: Belly arm -- 左回転攻撃:腹腕", + "5180340": "Ground gouge: The belly arm slams -- 地面えぐり:腹腕叩きつけ", + "5180341": "Ground Gouge: Gouge -- 地面えぐり:えぐり取り", + "5180350": "Hip Drop -- ヒップドロップ", + "5180370": "Get up and tumble -- 立ち上がって転倒", + "5180380": "Belly arm Continuous slams: 4 consecutive -- 腹腕連続叩きつけ:4連続", + "5180390": "Rush: belly Arms Saigi blow eyes -- 突進:腹腕薙ぎ払い一撃目", + "5180391": "Rush: Belly arm Saigi Second hammer -- 突進:腹腕薙ぎ払い二撃目", + "5180392": "Rush: Belly Arm slams -- 突進:腹腕叩きつけ", + "5180400": "Real crush: slams -- 実潰し:叩きつけ", + "5180401": "Actual Crush: Rubbed -- 実潰し:擦り付ける", + "5180410": "c5180: a1003010_ Throw -- c5180:a1003010_投げ", + "5180411": "c5180: a1003010_ Throwing damage -- c5180:a1003010_投げダメージ", + "5180420": "Slams: Combo Stage -- 叩きつけ:コンボ初段", + "5180430": "Real throw -- 実投げ", + "5180440": "Right foot crushing -- 右足踏み潰し:右足", + "5180441": "Right foot crushing: a blow to the belly -- 右足踏み潰し:腹腕一撃目", + "5180442": "Right foot crush: Belly arm Second Hammer -- 右足踏み潰し:腹腕二撃目", + "5180450": "Left foot crushing -- 左足踏み潰し:左足", + "5180451": "Left foot crushing: belly blow -- 左足踏み潰し:腹腕一撃目", + "5180452": "Left foot crushing: Belly arm second Hammer -- 左足踏み潰し:腹腕二撃目", + "5180460": "Right hand crush: Right hand -- 右手叩き潰し:右手", + "5180461": "Right hand crush: Belly blow -- 右手叩き潰し:腹腕一撃目", + "5180462": "Right hand crush: two-eyed belly -- 右手叩き潰し:腹腕二撃目", + "5180470": "Left hand crush: Left hand -- 左手叩き潰し:左手", + "5180471": "Crushing the left hand: a blow on his belly -- 左手叩き潰し:腹腕一撃目", + "5180472": "Crushing the left hand: two eyes on the belly -- 左手叩き潰し:腹腕二撃目", + "5180800": "c5180: Generic: Mystery Juice: Bullet -- c5180:汎用:謎の汁:弾丸", + "5180900": "Fuselage General: Scratch -- 胴体汎用:かすり", + "5180901": "Fuselage General: Shockwave -- 胴体汎用:衝撃波", + "5180902": "Fuselage General: Blast -- 胴体汎用:爆風", + "5180910": "Right arm general purpose: scratch -- 右腕汎用:かすり", + "5180911": "Right Palm General: Shockwave -- 右手のひら汎用:衝撃波", + "5180920": "Left arm General: Scratch -- 左腕汎用:かすり", + "5180921": "Left Palm General: Shockwave -- 左手のひら汎用:衝撃波", + "5180930": "Right foot general purpose: scratch -- 右足汎用:かすり", + "5180931": "Right Palm General: Shockwave -- 右足のひら汎用:衝撃波", + "5180940": "Left foot general: Scratch -- 左足汎用:かすり", + "5180941": "Left Palm General: Shockwave -- 左足のひら汎用:衝撃波", + "5180950": "Abdominal hand: Scratch -- 腹手汎用:かすり", + "5180951": "Belly-Palm Versatile: Shockwave -- 腹手のひら汎用:衝撃波", + "5190010": "King of the c5190_: The shaking: the front -- c5190_廃都の孤王:振りおろし:正面", + "5190011": "King of the c5190_: shaking: the front: Blast -- c5190_廃都の孤王:振りおろし:正面:爆風", + "5190020": "King of the c5190_: thrust: Around right foot -- c5190_廃都の孤王:突き刺し:右足周辺", + "5190021": "King of the c5190_: piercing: The right foot around: blast -- c5190_廃都の孤王:突き刺し:右足周辺:爆風", + "5190030": "King of c5190_: piercing: Around the left foot -- c5190_廃都の孤王:突き刺し:左足周辺", + "5190031": "King of the c5190_: thrust: Around the left leg: blast -- c5190_廃都の孤王:突き刺し:左足周辺:爆風", + "5190040": "King of c5190_: Thrust -- c5190_廃都の孤王:突き", + "5190041": "King of the c5190_: Thrust: Blast -- c5190_廃都の孤王:突き:爆風", + "5190050": "King of c5190_: Continuous attack 1-1: Payment -- c5190_廃都の孤王:連続攻撃1-1:払い", + "5190051": "King of c5190_: Continuous Attack 1-2: Payment -- c5190_廃都の孤王:連続攻撃1-2:払い", + "5190052": "King of c5190_: Continuous attack 1-1: Pay: Blast -- c5190_廃都の孤王:連続攻撃1-1:払い:爆風", + "5190053": "King of c5190_: Continuous Attack 1-2: Pay: Blast -- c5190_廃都の孤王:連続攻撃1-2:払い:爆風", + "5190300": "King of c5190_: Continuous attack 1-1: Nagi -- c5190_廃都の孤王:連続攻撃1-1:なぎ払い", + "5190301": "King of c5190_: Continuous Attack 1-2: Inverse Nagi -- c5190_廃都の孤王:連続攻撃1-2:逆なぎ払い", + "5190310": "King of c5190_: Continuous Attack 2-1: Inverse Nagi -- c5190_廃都の孤王:連続攻撃2-1:逆なぎ払い", + "5190311": "King of c5190_: Continuous Attack 2-2: Thrust -- c5190_廃都の孤王:連続攻撃2-2:突き", + "5190312": "King of c5190_: Continuous Attack 2-1: Inverse Nagi: Blast -- c5190_廃都の孤王:連続攻撃2-1:逆なぎ払い:爆風", + "5190313": "King of c5190_: Continuous Attack 2-2: Thrust: Blast -- c5190_廃都の孤王:連続攻撃2-2:突き:爆風", + "5190320": "C5190_: The king of the disused city -- c5190_廃都の孤王:振りおろし", + "5190321": "King of the c5190_: the blast -- c5190_廃都の孤王:振りおろし:爆風", + "5190330": "King of c5190_: Pay with the left hand -- c5190_廃都の孤王:左手で払う", + "5190340": "King of c5190_: Thrust -- c5190_廃都の孤王:突き", + "5190341": "King of the c5190_: Thrust: Blast -- c5190_廃都の孤王:突き:爆風", + "5190350": "King of c5190_: Reverse payment: Right side -- c5190_廃都の孤王:逆払い:右側面", + "5190360": "King of the c5190_: the left side -- c5190_廃都の孤王:振りおろし:左側面", + "5190361": "King of the c5190_: the left side: the blast -- c5190_廃都の孤王:振りおろし:左側面:爆風", + "5190700": "King of c5190_: squeezing out loud -- c5190_廃都の孤王:大声を絞り出す", + "5190710": "C5190_ King of the disused city: Kensaki Shockwave -- c5190_廃都の孤王:剣先衝撃波", + "5200010": "c5200_ deb Daemon: Right Nagi -- c5200_デブデーモン:右なぎ払い", + "5200020": "c5200_ Deb Daemon: Left Nagi -- c5200_デブデーモン:左なぎ払い", + "5200030": "c5200_ deb daemon: Feet Right Nagi -- c5200_デブデーモン:足元右なぎ払い", + "5200040": "c5200_ Deb Daemon: Primary seal -- c5200_デブデーモン:一次封印", + "5200050": "c5200_ deb daemon: feet left Nagi -- c5200_デブデーモン:足元左なぎ払い", + "5200060": "c5200_ deb Daemon: underfoot knocked back against -- c5200_デブデーモン:足元叩き付け", + "5200070": "c5200_ Fat daemon: Medium range swing down -- c5200_デブデーモン:中距離振り下ろし", + "5200080": "c5200_ Fat daemon: Long distance swing down -- c5200_デブデーモン:遠距離振り下ろし", + "5200090": "c5200_ Deb Daemon: Hip drop -- c5200_デブデーモン:ヒップドロップ", + "5200200": "c5200_ Deb Daemon: right rear Nagi -- c5200_デブデーモン:右後方なぎ払い", + "5200210": "c5200_ deb Daemon: battering slugfest Combo First stage -- c5200_デブデーモン:大槌乱打コンボ1段目", + "5200211": "c5200_ deb Daemon: slugfest Combo -- c5200_デブデーモン:大槌乱打コンボ2・3段目", + "5200212": "c5200_ Deb Daemon: The slugfest combo Fourth stage -- c5200_デブデーモン:大槌乱打コンボ4段目", + "5200220": "c5200_ deb Daemon: Saigi Otsuchi -- c5200_デブデーモン:大槌薙ぎ払い", + "5200230": "c5200_ Deb: Hit the ground with your left hand -- c5200_デブデーモン:左手で地面を叩く", + "5200240": "c5200_ Deb: Pay the ground with your left hand (change direction) -- c5200_デブデーモン:左手で地面を払う(向き変え)", + "5200250": "c5200_ Deb Daemon: knocked back against Otsuchi -- c5200_デブデーモン:大槌叩き付け", + "5220700": "Fireball -- 火球", + "5220800": "Curse helmeted -- 呪詛の号令", + "5221700": "Fireball -- 火球", + "5221710": "Force -- フォース", + "5221800": "Curse _ Parents -- 呪詛_親", + "5222700": "Fireball -- 火球", + "5223700": "Fireball -- 火球", + "5230010": "Pay with a tail: Wait a -- 尻尾で払う:待機A", + "5230070": "Passage Breath 1: Wait C -- 通路ブレス1:待機C", + "5230071": "Passage Breath 1: Standby c_ Impact 1 -- 通路ブレス1:待機C_着弾1", + "5230072": "Passage Breath 1: Standby c_ Impact 2 -- 通路ブレス1:待機C_着弾2", + "5230130": "Outside stair breath: wait F -- 外階段ブレス:待機F", + "5230160": "Loft Scratch: Wait F -- ロフトひっかき:待機F", + "5230170": "2f Attack: Wait E -- 2F攻撃:待機E", + "5230200": "Outside stair breath: wait g -- 外階段ブレス:待機G", + "5230210": "Bell tower Breath: Wait F -- 鐘楼ブレス:待機F", + "5230220": "Bell tower Breath: Wait g -- 鐘楼ブレス:待機G", + "5230230": "Pocket Scratch: Wait C -- 懐ひっかき:待機C", + "5230240": "1f attack: Wait D -- 1F攻撃:待機D", + "5230250": "Poke/Single Passage breath 2: Wait C -- 突く・単通路ブレス2:待機C", + "5230260": "Passage Breath 3: Wait C -- 通路ブレス3:待機C", + "5230261": "Passage Breath 3: Standby c_ Impact 1 -- 通路ブレス3:待機C_着弾1", + "5230270": "Crush: Wait C -- 叩き潰し:待機C", + "5230280": "Chasing PC while blessing -- ブレスしつつPCを追う", + "5230320": "Breath down the stairs: wait D -- 階段下方にブレス:待機D", + "5240100": "c5240_ Moonlight Witch: Torch Always damage -- c5240_月光の魔女:松明常時ダメージ", + "5240200": "c5240_ Moonlight Witch: Long Distance Magic (pillar) -- c5240_月光の魔女:掲げ時 遠距離魔法(火柱)", + "5240201": "c5240_ Moonlight Witch: Long Distance Magic (burning) -- c5240_月光の魔女:掲げ時 遠距離魔法(燃焼)", + "5240210": "C5240_ Moonlight Witch: Pillar -- c5240_月光の魔女:掲げ時 火柱", + "5240211": "C5240_ Moonlight Witch: Pillar (Burning) -- c5240_月光の魔女:掲げ時 火柱(燃焼)", + "5240220": "c5240_ Moonlight Witch: Induction Bullet -- c5240_月光の魔女:掲げ時 誘導弾", + "5240230": "c5240_ Moonlight Witch: Spreading bullets -- c5240_月光の魔女:掲げ時 拡散弾", + "5240300": "The Witch of the c5240_ Moonlight: grasping stab thrust (throwing transition) -- c5240_月光の魔女:掴み刺突(投げ遷移)", + "5240301": "c5240_ Moonlight Witch: Grab Stab thrust (throw _ burning damage) -- c5240_月光の魔女:掴み刺突(投げ_燃焼ダメージ)", + "5240302": "c5240_ Moonlight Witch: Grab Stab thrust (throw _ knocked back against damage) -- c5240_月光の魔女:掴み刺突(投げ_叩き付けダメージ)", + "5240310": "c5240_ Moonlight Witch: Swirling attack -- c5240_月光の魔女:旋回攻撃", + "5240320": "c5240_ Moonlight Witch: Attack 1 -- c5240_月光の魔女:攻撃1", + "5240330": "c5240_ Moonlight Witch: Attack 2 -- c5240_月光の魔女:攻撃2", + "5240340": "c5240_ Moonlight Witch: Attack 3 -- c5240_月光の魔女:攻撃3", + "5250100": "Prince of Darkness C5250_ (brother): Whack -- c5250_闇の双皇子(兄):薙ぎ", + "5250110": "C5250_ of Darkness (brother): Reverse whack -- c5250_闇の双皇子(兄):逆薙ぎ", + "5250120": "Prince of Darkness C5250_ (brother): Swing down -- c5250_闇の双皇子(兄):振り下ろし", + "5250130": "Prince of Darkness C5250_ (brother): Strong attack -- c5250_闇の双皇子(兄):強攻撃", + "5250131": "C5250_ of Darkness (elder brother): Strong attack: Shockwave -- c5250_闇の双皇子(兄):強攻撃:衝撃波", + "5250140": "C5250_ of Darkness (brother): Thrusting -- c5250_闇の双皇子(兄):突き", + "5250150": "Prince of Darkness C5250_ (brother): Turning: Right -- c5250_闇の双皇子(兄):旋回払い:右", + "5250160": "C5250_ of Darkness (elder brother): Turning payment: Left -- c5250_闇の双皇子(兄):旋回払い:左", + "5250170": "C5250_ of Darkness (brother): Fall attack -- c5250_闇の双皇子(兄):落下攻撃", + "5250180": "C5250_ of Darkness (elder brother): Behind the attack -- c5250_闇の双皇子(兄):背後攻撃", + "5250190": "Prince of Darkness C5250_ (brother): Right side attack -- c5250_闇の双皇子(兄):右側面攻撃", + "5250200": "Prince of Darkness C5250_ (brother): left side attack -- c5250_闇の双皇子(兄):左側面攻撃", + "5251900": "Prince of Darkness C5251_ (brother): Guard -- c5251_闇の双皇子(弟):ガード", + "5260100": "First step, two-handed combo -- 足元両手叩きつけコンボ1段目", + "5260110": "Second Step (back) -- 足元両手叩きつけコンボ2段目(背面)", + "5260120": "Second step (right side) -- 足元両手叩きつけコンボ2段目(右側面)", + "5260130": "The second step (back) from the standby combo two hands slams -- 足元両手叩きつけコンボ2段目(背面)待機から", + "5260140": "One-handed slams -- 片手叩きつけ", + "5260150": "Second stage slams one hand -- 片手叩きつけ2段目", + "5260160": "Left from one-handed slams -- 片手叩きつけからの左旋回斬り上げ", + "5260170": "Saigi right from one-handed slams -- 片手叩きつけからの右薙ぎ払い", + "5260180": "Attack behind -- 背後攻撃", + "5260190": "Turned -- 振り向き払い", + "5260200": "Move attack -- 移動攻撃", + "5260210": "Nagi Combo First Stage -- なぎ払いコンボ1段目", + "5260220": "Additional cut-up -- 追加斬り上げ", + "5260230": "Front Vertical Whack 1 -- 正面縦薙ぎ1", + "5260240": "Front longitudinal whack (reverse) -- 正面縦薙ぎ(逆)", + "5260250": "Front longitudinal whack (reverse) -- 正面縦薙ぎ(逆々)", + "5260260": "Rampage rush: Saigi right → Left -- 暴れラッシュ:薙ぎ払い右→左", + "5260261": "Rampage rush: Saigi Left → Right -- 暴れラッシュ:薙ぎ払い左→右", + "5260262": "Wild Rush: Swing Down -- 暴れラッシュ:振り下ろし", + "5260263": "Wild rush: Beat Down -- 暴れラッシュ:叩き下し", + "5260270": "Jump Hammer -- ジャンプ鉄槌", + "5260400": "Weapon Swing Wind pressure (general purpose) -- 武器振り風圧(汎用)", + "5260500": "Hu explosion -- HU爆発", + "5270000": "c5270_ Tracker _3000 The butt -- c5270_追跡者_3000倒れ込み突き", + "5270010": "c5270_ tracker _3001 Saigi from falling butt -- c5270_追跡者_3001倒れ込み突きからの薙ぎ払い", + "5270020": "c5270_ Tracker _3002 right hand slams from fallen butt -- c5270_追跡者_3002倒れ込み突きからの右手叩きつけ", + "5270030": "c5270_ Tracker _3003 behind the attack -- c5270_追跡者_3003背後叩きつけ攻撃", + "5270040": "C5270_, a leftist attack from _3004 slams -- c5270_追跡者_3004叩きつけからの左派生攻撃 1撃目", + "5270041": "Second-wing attack from c5270_ tracker _3004 slams -- c5270_追跡者_3004叩きつけからの左派生攻撃 2撃目", + "5270050": "Frontal derivation attack from c5270_ tracker _3005 -- c5270_追跡者_3005叩きつけからの正面派生攻撃", + "5270060": "Right-derived attack from c5270_ tracker _3006 -- c5270_追跡者_3006叩きつけからの右派生攻撃", + "5270070": "c5270_ Tracker _3007 Slap -- c5270_追跡者_3007裏ビンタ", + "5270080": "c5270_ Tracker _3008 Saigi (tie from back slap) -- c5270_追跡者_3008薙ぎ払い(裏ビンタからの繋ぎ)", + "5270090": "c5270_ Tracker _3009 Kesa cut -- c5270_追跡者_3009袈裟切り", + "5270100": "c5270_ Tracker _3010 Rising Saigi attack -- c5270_追跡者_3010立ち上がり薙ぎ払い攻撃", + "5270110": "c5270_ Tracker _3011 frontal slams attack -- c5270_追跡者_3011正面叩きつけ攻撃", + "5270120": "c5270_ Tracker _3012 Saigi. -- c5270_追跡者_3012薙ぎ払い", + "5270130": "c5270_ Tracker _3013 Rising one-handed -- c5270_追跡者_3013立ち上がり片手振りおろし攻撃", + "5270140": "c5270_ Tracker _3014 explosion -- c5270_追跡者_3014蝕爆発", + "5270150": "C5270_ Tracker _3015 left attack (90 degrees turning) -- c5270_追跡者_3015左旋回攻撃(90度旋回)", + "5270151": "C5270_ Tracker _3015 left attack (90 degrees turning) pillar -- c5270_追跡者_3015左旋回攻撃(90度旋回) 火柱", + "5270160": "c5270_ Tracker _3016-derived combo 1 -- c5270_追跡者_3016突き派生コンボ1", + "5270170": "c5270_ Tracker _3017-derived combo 2 -- c5270_追跡者_3017突き派生コンボ2", + "5270180": "c5270_ Tracker _3018-derived combo 3 -- c5270_追跡者_3018突き派生コンボ3", + "5270190": "c5270_ Tracker _3019 continuous slap first shot -- c5270_追跡者_3019連続ビンタ 1打目", + "5270191": "c5270_ Tracker _3019 continuous slap second shot -- c5270_追跡者_3019連続ビンタ 2打目", + "5270200": "c5270_ Tracker _3020 The left step rotation slash -- c5270_追跡者_3020左ステップ回転斬り", + "5270210": "c5270_ Tracker _3021 the right step slash -- c5270_追跡者_3021右ステップ斬り", + "5270220": "c5270_ Tracker _3022 Jump attack -- c5270_追跡者_3022ジャンプ攻撃", + "5270230": "c5270_ Tracker _3023 Attack 1 -- c5270_追跡者_3023ラッシュ攻撃 1撃目", + "5270231": "C5270_ Tracker _3023 Attack second firing -- c5270_追跡者_3023ラッシュ攻撃 2撃目", + "5270232": "c5270_ Tracker, _3023 attack, the third firing. -- c5270_追跡者_3023ラッシュ攻撃 3撃目", + "5270233": "c5270_ Tracker, _3023 attack, four firing eyes. -- c5270_追跡者_3023ラッシュ攻撃 4撃目", + "5270234": "c5270_ Tracker, _3023 attack, five firing eyes. -- c5270_追跡者_3023ラッシュ攻撃 5撃目", + "5270235": "C5270_ Tracker _3023 Attack 6 firing -- c5270_追跡者_3023ラッシュ攻撃 6撃目", + "5270236": "c5270_ Tracker _3023 attack 7th -- c5270_追跡者_3023ラッシュ攻撃 7撃目", + "5270240": "c5270_ Tracker _3024 Horizontal Slash combo 1 -- c5270_追跡者_3024水平斬りコンボ1", + "5270250": "c5270_ Tracker _3025 Horizontal Slash combo 2 -- c5270_追跡者_3025水平斬りコンボ2", + "5270260": "c5270_ Tracker _3026 Horizontal Slash combo 3 -- c5270_追跡者_3026水平斬りコンボ3", + "5270270": "c5270_ Tracker _3027 Startup technique -- c5270_追跡者_3027投げ始動技", + "5270320": "C5270_ Tracker _3032 Attack _ Finish -- c5270_追跡者_3032突進攻撃_フィニッシュ", + "5270330": "c5270_ Tracker _3033 Foot Sword -- c5270_追跡者_3033足元斬り", + "5270410": "_4100 Attack by c5270_ Tracker -- c5270_追跡者_4100投げ攻撃", + "5270500": "c5270_ tracker _100_3000 [HU] fall-down thrust sword -- c5270_追跡者_100_3000[HU]倒れ込み突き二段 炎剣", + "5270501": "c5270_ tracker _100_3000 [HU] fall into a two-stage caries sword -- c5270_追跡者_100_3000[HU]倒れ込み突き二段 蝕剣", + "5270510": "c5270_ tracker _100_3001 [HU] behind the attack two-stage caries sword -- c5270_追跡者_100_3001[HU]背後叩きつけ攻撃二段 蝕剣", + "5270511": "c5270_ tracker _100_3001 [HU] slams attack two-tiered fire sword -- c5270_追跡者_100_3001[HU]背後叩きつけ攻撃二段 炎剣", + "5270520": "c5270_ tracker _100_3002 [HU] Eclipse explosion two-stage warning -- c5270_追跡者_100_3002[HU]蝕爆発二段 予兆爆発", + "5270521": "c5270_ tracker _100_3002 [HU] Eclipse explosion stage explosion -- c5270_追跡者_100_3002[HU]蝕爆発二段 爆発", + "5270522": "c5270_ tracker _100_3002 [HU] caries explosion two-stage caries sword -- c5270_追跡者_100_3002[HU]蝕爆発二段 蝕剣", + "5270530": "c5270_ tracker _100_3003 [HU] Right Saigi -- c5270_追跡者_100_3003[HU]右薙ぎ払い", + "5270540": "c5270_ tracker _100_3004 [HU] left Saigi -- c5270_追跡者_100_3004[HU]左薙ぎ払い", + "5270550": "c5270_ tracker _100_3005 [HU] Saigi 1 second firing -- c5270_追跡者_100_3005[HU]二連薙ぎ払い 1撃目", + "5270551": "c5270_ tracker _100_3005 [HU] double Saigi second firing -- c5270_追跡者_100_3005[HU]二連薙ぎ払い 2撃目", + "5270560": "c5270_ tracker _100_3006 [HU] Saigi -- c5270_追跡者_100_3006[HU]薙ぎ払い", + "5270570": "c5270_ tracker _100_3007 [HU] throwing start and caries sword two simultaneous -- c5270_追跡者_100_3007[HU]投げ始動技 蝕剣 2本同時", + "5270571": "c5270_ tracker _100_3007 [HU] throwing starter fire Sword two simultaneously -- c5270_追跡者_100_3007[HU]投げ始動技 炎剣 2本同時", + "5270580": "c5270_ tracker _100_3008 [HU] Rise of the Shook sword -- c5270_追跡者_100_3008[HU]立ち上がり二連振り払い 蝕剣", + "5270581": "c5270_ tracker _100_3008 [HU] Rise of the Shook sword -- c5270_追跡者_100_3008[HU]立ち上がり二連振り払い 炎剣", + "5270590": "c5270_ tracker _100_3009 [HU] frontal slams 2 simultaneous attack of caries sword -- c5270_追跡者_100_3009[HU]正面叩きつけ攻撃 蝕剣 2本同時", + "5270591": "c5270_ tracker _100_3009 [HU] frontal slams attack fire sword two simultaneous -- c5270_追跡者_100_3009[HU]正面叩きつけ攻撃 炎剣 2本同時", + "5270600": "c5270_ tracker _100_3010 [HU] The left-wing raw attack from a slams -- c5270_追跡者_100_3010[HU]叩きつけからの左派生攻撃 1撃目", + "5270601": "c5270_ tracker _100_3010 [HU] second-wing attack from the slams -- c5270_追跡者_100_3010[HU]叩きつけからの左派生攻撃 2撃目", + "5270610": "Front-derived attack from c5270_ tracker _100_3011 [HU] slams -- c5270_追跡者_100_3011[HU]叩きつけからの正面派生攻撃", + "5270620": "Right-derived attack from c5270_ tracker _100_3012 [HU] slams -- c5270_追跡者_100_3012[HU]叩きつけからの右派生攻撃", + "5270630": "c5270_ tracker _100_3013 [HU] both the rise and -- c5270_追跡者_100_3013[HU]立ち上がり両手振りおろし攻撃 蝕剣 2本同時", + "5270631": "c5270_ tracker _100_3013 [HU] both hand-in-hand hand-attack Fire Sword two simultaneous -- c5270_追跡者_100_3013[HU]立ち上がり両手振りおろし攻撃 炎剣 2本同時", + "5270640": "c5270_ tracker _100_3014 [HU] left step rotation sword -- c5270_追跡者_100_3014[HU]左ステップ回転斬り 蝕剣", + "5270641": "c5270_ tracker _100_3014 [HU] left step rotation Sword of Flame -- c5270_追跡者_100_3014[HU]左ステップ回転斬り 炎剣", + "5270650": "c5270_ tracker _100_3015 [HU] Right step sword of Flame -- c5270_追跡者_100_3015[HU]右ステップ斬り 炎剣", + "5270651": "c5270_ tracker _100_3015 [HU] Right step sword of caries -- c5270_追跡者_100_3015[HU]右ステップ斬り 蝕剣", + "5270660": "c5270_ tracker _100_3016 [HU] rush attack 1 caries -- c5270_追跡者_100_3016[HU]ラッシュ攻撃 1蝕", + "5270661": "c5270_ tracker _100_3016 [HU] Rush Attack 2 Flames -- c5270_追跡者_100_3016[HU]ラッシュ攻撃 2炎", + "5270662": "c5270_ tracker _100_3016 [HU] rush Attack 3 caries -- c5270_追跡者_100_3016[HU]ラッシュ攻撃 3蝕", + "5270663": "c5270_ tracker _100_3016 [HU] Rush Attack 4 Flames -- c5270_追跡者_100_3016[HU]ラッシュ攻撃 4炎", + "5270664": "c5270_ tracker _100_3016 [HU] Rush Attack 5 Flames -- c5270_追跡者_100_3016[HU]ラッシュ攻撃 5炎", + "5270665": "c5270_ tracker _100_3016 [HU] lash attack 6 caries -- c5270_追跡者_100_3016[HU]ラッシュ攻撃 6蝕", + "5270666": "c5270_ tracker _100_3016 [HU] Rush Attack 7 Flames -- c5270_追跡者_100_3016[HU]ラッシュ攻撃 7炎", + "5270667": "c5270_ tracker _100_3016 [HU] rush attack 8 caries -- c5270_追跡者_100_3016[HU]ラッシュ攻撃 8蝕", + "5270668": "c5270_ tracker _100_3016 [HU] Rush Attack 9 Flames -- c5270_追跡者_100_3016[HU]ラッシュ攻撃 9炎", + "5270670": "c5270_ tracker _100_3017 [HU] Triple combo 1 Eclipse 2 simultaneous -- c5270_追跡者_100_3017[HU]三連コンボ 1蝕 2本同時", + "5270671": "c5270_ tracker _100_3017 [HU] Triple combo 1 Flame 2 simultaneous -- c5270_追跡者_100_3017[HU]三連コンボ 1炎 2本同時", + "5270672": "c5270_ tracker _100_3017 [HU] Triple combo 2 Flames two at a time -- c5270_追跡者_100_3017[HU]三連コンボ 2炎 2本同時", + "5270673": "c5270_ tracker _100_3017 [HU] Triple combo 2 caries 2 simultaneous -- c5270_追跡者_100_3017[HU]三連コンボ 2蝕 2本同時", + "5270674": "c5270_ tracker _100_3017 [HU] Triple combo 3 caries 2 simultaneous -- c5270_追跡者_100_3017[HU]三連コンボ 3蝕 2本同時", + "5270675": "c5270_ tracker _100_3017 [HU] Triple combo 3 Flames two at a time -- c5270_追跡者_100_3017[HU]三連コンボ 3炎 2本同時", + "5270680": "c5270_ tracker _100_3018 [HU] Rotation attack _ Starting Flame Sword -- c5270_追跡者_100_3018[HU]回転攻撃_始動 炎剣", + "5270681": "c5270_ tracker _100_3018 [HU] Rotation attack _ Starting caries Sword -- c5270_追跡者_100_3018[HU]回転攻撃_始動 蝕剣", + "5270690": "c5270_ tracker _100_3019 [HU] rotation attack loop caries Sword two simultaneous -- c5270_追跡者_100_3019[HU]回転攻撃ループ 蝕剣 2本同時", + "5270691": "c5270_ tracker _100_3019 [HU] rotation attack loop Flame Sword two simultaneous -- c5270_追跡者_100_3019[HU]回転攻撃ループ 炎剣 2本同時", + "5270700": "c5270_ tracker _100_3020 [HU] Revolving attack _ Finish caries Sword -- c5270_追跡者_100_3020[HU]回転攻撃_フィニッシュ 蝕剣", + "5270701": "c5270_ tracker _100_3020 [HU] Rotation attack _ Finish Flame Sword -- c5270_追跡者_100_3020[HU]回転攻撃_フィニッシュ 炎剣", + "5270710": "c5270_ tracker _100_3021 [HU] jump attack Flame Stab -- c5270_追跡者_100_3021[HU]ジャンプ攻撃 炎刺し", + "5270711": "c5270_ tracker _100_3021 [HU] Jump attack caries -- c5270_追跡者_100_3021[HU]ジャンプ攻撃 蝕払い", + "5270720": "c5270_ tracker _100_3022 [HU] right attack (90 degree swivel) caries Sword -- c5270_追跡者_100_3022[HU]右旋回攻撃(90度旋回) 蝕剣", + "5270721": "c5270_ tracker _100_3022 [HU] right attack (90 degree turning) caries column -- c5270_追跡者_100_3022[HU]右旋回攻撃(90度旋回) 蝕柱", + "5270730": "c5270_ tracker _100_3023 [HU] left attack (90 degree swivel) Flame Sword -- c5270_追跡者_100_3023[HU]左旋回攻撃(90度旋回) 炎剣", + "5270731": "c5270_ tracker _100_3023 [HU] left attack (90 degree turning) Flame pillar -- c5270_追跡者_100_3023[HU]左旋回攻撃(90度旋回) 炎柱", + "5270740": "c5270_ tracker _100_3024 [HU] frontal thrust attack caries Sword -- c5270_追跡者_100_3024[HU]正面突き攻撃 蝕剣", + "5270750": "c5270_ tracker _100_3025 [HU] turned Saigi 1 two simultaneous caries -- c5270_追跡者_100_3025[HU]振り向き薙ぎ払い 1蝕 2本同時", + "5270751": "c5270_ tracker _100_3025 [HU] turned Saigi 1 Flames 2 simultaneous -- c5270_追跡者_100_3025[HU]振り向き薙ぎ払い 1炎 2本同時", + "5270900": "c5270_ Tracker _1500 Heat-up transition caries Vortex -- c5270_追跡者_1500ヒートアップ遷移 蝕の渦" + }, + "AtkParam_Pc": { + "0": "Dummy Bullets -- ダミー弾丸", + "4": "Automatic Cyclic object destruction -- 自動巡回オブジェ破壊用", + "5": "Dummy attack to keep bullets out -- 弾丸出し続ける用ダミー攻撃", + "10": "Pc_ Common _ Egg attack -- PC_共通_卵攻撃", + "40": "Common attack [Ladder _ right Punch] -- 共通攻撃【ハシゴ_右パンチ】", + "41": "Common attack [ladder _ Right Kick] -- 共通攻撃【ハシゴ_右キック】", + "42": "Common attack [Ladder _ left Punch] -- 共通攻撃【ハシゴ_左パンチ】", + "43": "Common attack [Ladder _ left Kick] -- 共通攻撃【ハシゴ_左キック】", + "44": "Common attack [Ladder _ Slide down] -- 共通攻撃【ハシゴ_滑り降り】", + "101": "System: Attack magnification for menu display -- 【システム】メニュー表示用攻撃倍率", + "200": "Common attack [falling] _ Attack Armor -- 共通攻撃【落下】_攻撃防具", + "201": "Common attack [Landing] _ Attack Armor -- 共通攻撃【着地】_攻撃防具", + "202": "Common attack [Thud landing] _ attack Armor -- 共通攻撃【ドスン着地】_攻撃防具", + "203": "Common attack (Fall Landing) _ Attack Armor -- 共通攻撃【転倒着地】_攻撃防具", + "204": "Common attack [Rolling] _ Attack Armor -- 共通攻撃【ローリング】_攻撃防具", + "205": "Common attack [Summon] _ Attack Armor -- 共通攻撃【召喚】_攻撃防具", + "206": "Common attack [falling on back] _ Attack Armor -- 共通攻撃【仰向け落下】_攻撃防具", + "210": "Common attack [before push] _ attack Armor -- 共通攻撃【プッシュ前】_攻撃防具", + "211": "Common attack [later blows] _ attack Armor -- 共通攻撃【後へ吹っ飛ぶ】_攻撃防具", + "212": "Common attack [吹tsu飛bimasu] _ Attack Armor -- 共通攻撃【前に吹っ飛び】_攻撃防具", + "213": "Common attacks [after push] _ attack Armor -- 共通攻撃【プッシュ後】_攻撃防具", + "220": "Common attack [throwing] _ Attack armor -- 共通攻撃【投げ】_攻撃防具", + "221": "Common attack [Strong throw] _ Attack Armor -- 共通攻撃【強投げ】_攻撃防具", + "222": "Common attack [Paris slams] _ Attack armor -- 共通攻撃【パリィ叩きつけ】_攻撃防具", + "300": "Common attack [falling] -- 共通攻撃【落下】", + "301": "Common attack [landing] -- 共通攻撃【着地】", + "302": "Common attack [Thud landing] -- 共通攻撃【ドスン着地】", + "303": "Common attack (Fall Landing) -- 共通攻撃【転倒着地】", + "304": "Common attack [rolling] -- 共通攻撃【ローリング】", + "305": "Common attack [Summon] -- 共通攻撃【召喚】", + "306": "Common attack [falling on back] -- 共通攻撃【仰向け落下】", + "310": "Common attack [before push] -- 共通攻撃【プッシュ前】", + "311": "Common attack [later blows] -- 共通攻撃【後へ吹っ飛ぶ】", + "312": "Common attack [吹tsu飛bimasu] -- 共通攻撃【前に吹っ飛び】", + "313": "Common attack after push -- 共通攻撃【プッシュ後】", + "320": "Common attack [throwing] -- 共通攻撃【投げ】", + "321": "Common attack [strong throw] -- 共通攻撃【強投げ】", + "322": "Common attack [Paris slams] -- 共通攻撃【パリィ叩きつけ】", + "900": "return blood of Poison -- 毒の返り血", + "1050": "Damage for throwing knives -- 投げナイフ用ダメージ", + "1052": "Fire Bottle Damage -- 火炎瓶用ダメージ", + "1054": "Black Flame Bottle Damage -- 黒火炎瓶用ダメージ", + "1055": "Flame Bottle Body -- 火炎瓶本体", + "1200": "Quick Throw knife damage -- クイック投げナイフ用ダメージ", + "1201": "Test: Poison-throwing knife damage -- テスト:毒投げナイフ用ダメージ", + "2000": "Ordinary arrows -- 普通の矢", + "2010": "Ordinary arrow _ Move shot -- 普通の矢_移動撃ち", + "2020": "normal arrows Diffuse -- 普通の矢_拡散", + "2030": "Normal arrow Fire -- 普通の矢_連射", + "2100": "Big arrows -- 大きな矢", + "2200": "Feather Arrow -- 羽根矢", + "2300": "Arrows -- 火矢", + "2400": "Poison -- 毒矢", + "2410": "Mantella _ Moving Shot -- 毒矢_移動撃ち", + "2420": "Mantella _ Diffuse -- 毒矢_拡散", + "2430": "Mantella _ Blazing -- 毒矢_連射", + "2500": "Mon Mitsuya -- 月光矢", + "2600": "Tree Arrow -- 木の矢", + "2700": "The Dragon Hunting Oya -- 竜狩りの大矢", + "2710": "The Dragon hunting of Ohya _ through bullets -- 竜狩りの大矢_貫通弾", + "10000": "Soul Arrow -- ソウルの矢", + "10001": "Seoul Arrow Double Chanting -- ソウルの矢二重詠唱", + "10010": "Strong Soul Arrow -- 強いソウルの矢", + "10020": "Seoul's Thick Arrow -- ソウルの太矢", + "10021": "Seoul Heavy Arrow Double chanting -- ソウルの太矢二重詠唱", + "10022": "Double chanting in Seoul -- ソウルの太矢二重詠唱派生", + "10030": "Strong Soul -- 強いソウルの太矢", + "10080": "En bullet D -- EN弾D", + "10090": "En bullet D2 -- EN弾D2", + "10100": "The mass of the chasing soul -- 追尾するソウルの塊", + "10101": "The mass of the chasing soul: bullets -- 追尾するソウルの塊:弾", + "10110": "The Great Sword of Seoul (right) -- ソウルの大剣(右)", + "10111": "The Great Sword of Seoul (left) -- ソウルの大剣(左)", + "10120": "Quick Soul Arrow -- クイックソウルの矢", + "12000": "Summon One -- 召喚1", + "12001": "1_ Summon Resonance Lv1 -- 召喚1_共鳴LV1", + "12002": "1_ Summon Resonance Lv2 -- 召喚1_共鳴LV2", + "12003": "1_ Summon Resonance Lv3 -- 召喚1_共鳴LV3", + "12010": "Summon 2 -- 召喚2", + "12011": "2_ Summon Resonance Lv1 -- 召喚2_共鳴LV1", + "12012": "2_ Summon Resonance Lv2 -- 召喚2_共鳴LV2", + "12013": "2_ Summon Resonance Lv3 -- 召喚2_共鳴LV3", + "13000": "Fireball -- 火球", + "13001": "Fireball Double Chanting -- 火球二重詠唱", + "13002": "Fire Ball double chanting derivation -- 火球二重詠唱派生", + "13010": "Fireball -- 火の玉", + "13011": "Fireball Double Chanting -- 火の玉二重詠唱", + "13012": "Fireball Double Chanting Derivation -- 火の玉二重詠唱派生", + "13020": "A strong fireball -- 強い火の玉", + "13030": "Chaos _ Fireball -- カオス_ファイアボール", + "13040": "Chaos _ Fire Ball [lava] -- カオス_ファイアボール【溶岩】", + "14000": "Fire -- 発火", + "14001": "Firing double Chanting -- 発火二重詠唱", + "14010": "Proximity Flames 2 -- 近接炎2", + "14020": "Proximity Flames 3 -- 近接炎3", + "15000": "Firestorm 1 -- ファイアストーム1", + "15001": "Firestorm 1 Double Chant -- ファイアストーム1二重詠唱", + "15010": "Firestorm 2 -- ファイアストーム2", + "15020": "Chaos _ Firestorm -- カオス_ファイアストーム", + "15030": "Chaos _ Firestorm [lava] -- カオス_ファイアストーム【溶岩】", + "16000": "Lightning 1 [Parent] -- 雷1【親】", + "16001": "Thunder 1 [Child] -- 雷1【子】", + "16002": "Thunder 1 [grandchild] -- 雷1【孫】", + "16003": "Thunder 1 [grandson] -- 雷1【曾孫】", + "16004": "Thunder 1 [Genn] -- 雷1【玄孫】", + "16005": "Thunder 1 [grandchild coming] -- 雷1【来孫】", + "16010": "Lightning 1 [Close range] -- 雷1【近距離】", + "16100": "Lightning 2 [Parent] -- 雷2【親】", + "16110": "Thunder 2 [Child] -- 雷2【子】", + "16120": "Thunder 2 [grandchild] -- 雷2【孫】", + "16130": "Thunder 2 [grandson] -- 雷2【曾孫】", + "16140": "Thunder 2 [Genn] -- 雷2【玄孫】", + "16150": "Thunder 2 [grandson coming] -- 雷2【来孫】", + "16200": "Thunder 3 [Parent] -- 雷3【親】", + "16210": "Thunder 3 [Child] -- 雷3【子】", + "16220": "Thunder 3 [grandchild] -- 雷3【孫】", + "16230": "Thunder 3 [grandson] -- 雷3【曾孫】", + "16240": "Thunder 3 [Genn] -- 雷3【玄孫】", + "16250": "Thunder 3 [grandson coming] -- 雷3【来孫】", + "17000": "Causal retribution -- 因果応報", + "19000": "Force One -- フォース1", + "19001": "Force 1 Double Chant -- フォース1二重詠唱", + "19010": "Force Two -- フォース2", + "19011": "Force 2_ Resonance Lv1 -- フォース2_共鳴LV1", + "19012": "Force 2_ Resonance Lv2 -- フォース2_共鳴LV2", + "19013": "Force 2_ Resonance Lv3 -- フォース2_共鳴LV3", + "19014": "Force 2_ Resonance Lv4 -- フォース2_共鳴LV4", + "19020": "Force three -- フォース3", + "19021": "Force 3_ Resonance Lv1 -- フォース3_共鳴LV1", + "19022": "Force 3_ Resonance Lv2 -- フォース3_共鳴LV2", + "19023": "Force 3_ Resonance Lv3 -- フォース3_共鳴LV3", + "19024": "Force 3_ Resonance Lv4 -- フォース3_共鳴LV4", + "20000": "Seoul Drain 1 -- ソウルドレイン1", + "20010": "Soul Drain 2 -- ソウルドレイン2", + "21000": "Flame radiation -- 火炎放射", + "22000": "Fire Whip -- 炎のムチ", + "23000": "Chaos _ The Whip of flames -- カオス_炎のムチ", + "23010": "Chaos _ A whip of flames [lava] -- カオス_炎のムチ【溶岩】", + "24000": "Crystal Beam -- 結晶ビーム", + "25000": "[DLC] Dark Ball -- 【DLC】闇の玉", + "26000": "[DLC] Splash of Darkness -- 【DLC】闇の飛沫", + "27000": "[DLC] chasing people -- 【DLC】追う者たち", + "28000": "[DLC] Black Flame -- 【DLC】黒炎", + "30000": "Funnel -- ファンネル", + "30001": "Energetic ball attack Lv1 -- 元気玉攻撃Lv1", + "30002": "Energetic ball attack Lv2 -- 元気玉攻撃Lv2", + "30003": "Energetic ball attack Lv3 -- 元気玉攻撃Lv3", + "30004": "Machine gun -- マシンガン", + "30005": "Through beam -- 貫通ビーム", + "30006": "Fire Bolt -- ファイアボルト", + "30007": "Thunder 1_ resonance Lv2 [parent] -- 雷1_共鳴LV2【親】", + "30008": "Thunder 1_ Resonance Lv2 【 child 】 -- 雷1_共鳴LV2【子】", + "30009": "Thunder 1_ resonance Lv2 [grandchild] -- 雷1_共鳴LV2【孫】", + "30010": "Thunder 1_ resonance Lv2 [grandson] -- 雷1_共鳴LV2【曾孫】", + "30011": "Thunder 1_ resonance Lv2 [Genn] -- 雷1_共鳴LV2【玄孫】", + "30012": "Thunder 1_ resonance Lv2 [coming grandchild] -- 雷1_共鳴LV2【来孫】", + "30013": "Thunder 1_ resonance Lv3 [parent] -- 雷1_共鳴LV3【親】", + "30014": "Thunder 1_ Resonance Lv3 【 child 】 -- 雷1_共鳴LV3【子】", + "30015": "Thunder 1_ resonance Lv3 [grandchild] -- 雷1_共鳴LV3【孫】", + "30016": "Thunder 1_ resonance Lv3 [grandson] -- 雷1_共鳴LV3【曾孫】", + "30017": "Thunder 1_ resonance Lv3 [Genn] -- 雷1_共鳴LV3【玄孫】", + "30018": "Thunder 1_ resonance Lv3 [coming grandchild] -- 雷1_共鳴LV3【来孫】", + "30019": "Thunder 1_ resonance lv4 [parent] -- 雷1_共鳴LV4【親】", + "30020": "Thunder 1_ Resonance lv4 【 child 】 -- 雷1_共鳴LV4【子】", + "30021": "Thunder 1_ resonance lv4 [grandchild] -- 雷1_共鳴LV4【孫】", + "30022": "Thunder 1_ resonance lv4 [grandson] -- 雷1_共鳴LV4【曾孫】", + "30023": "Thunder 1_ resonance lv4 [Genn] -- 雷1_共鳴LV4【玄孫】", + "30024": "Thunder 1_ resonance lv4 [coming grandchild] -- 雷1_共鳴LV4【来孫】", + "30025": "Thunder 1_ resonance lv5 [parent] -- 雷1_共鳴LV5【親】", + "30026": "Thunder 1_ Resonance lv5 【 child 】 -- 雷1_共鳴LV5【子】", + "30027": "Thunder 1_ resonance lv5 [grandchild] -- 雷1_共鳴LV5【孫】", + "30028": "Thunder 1_ resonance lv5 [grandson] -- 雷1_共鳴LV5【曾孫】", + "30029": "Thunder 1_ resonance lv5 [Genn] -- 雷1_共鳴LV5【玄孫】", + "30030": "Thunder 1_ resonance lv5 [coming grandchild] -- 雷1_共鳴LV5【来孫】", + "30900": "Recovery: Recover Yourself -- 回復:自分回復", + "30901": "Recovery: Ambient Recovery -- 回復:周囲回復", + "31100": "A firm vow -- 固い誓い", + "900000": "Bomb ritual: Explosive bullets around -- ボム儀式:周囲爆発弾", + "910000": "Bomb ritual: Target Search Bullets _ host lv.20 or less -- ボム儀式:ターゲット検索弾_ホストLv.20 以下", + "910100": "Bomb ritual: Target Search Bullets _ host lv.40 or less -- ボム儀式:ターゲット検索弾_ホストLv.40 以下", + "910200": "Bomb ritual: Target Search Bullets _ host lv.60 or less -- ボム儀式:ターゲット検索弾_ホストLv.60 以下", + "910300": "Bomb ritual: Target Search Bullets _ host lv.80 or less -- ボム儀式:ターゲット検索弾_ホストLv.80 以下", + "910400": "Bomb ritual: Target Search Bullets _ host lv.100 or less -- ボム儀式:ターゲット検索弾_ホストLv.100 以下", + "910500": "Bomb ritual: Target Search Bullets _ host lv.120 or less -- ボム儀式:ターゲット検索弾_ホストLv.120 以下", + "910600": "Bomb ritual: Target Search Bullets _ host lv.140 or less -- ボム儀式:ターゲット検索弾_ホストLv.140 以下", + "910700": "Bomb ritual: Target Search Bullets _ host lv.160 or less -- ボム儀式:ターゲット検索弾_ホストLv.160 以下", + "910800": "Bomb ritual: Target Search Bullets _ host lv.180 or less -- ボム儀式:ターゲット検索弾_ホストLv.180 以下", + "910900": "Bomb ritual: Target Search Bullets _ host lv.200 or less -- ボム儀式:ターゲット検索弾_ホストLv.200 以下", + "911000": "Bomb ritual: Target Search Bullets _ host lv.250 or less -- ボム儀式:ターゲット検索弾_ホストLv.250 以下", + "911100": "Bomb ritual: Target Search Bullets _ host lv.300 or less -- ボム儀式:ターゲット検索弾_ホストLv.300 以下", + "911200": "Bomb ritual: Target Search Bullets _ host lv.400 or less -- ボム儀式:ターゲット検索弾_ホストLv.400 以下", + "911300": "Bomb ritual: Target Search Bullets _ host lv.500 or less -- ボム儀式:ターゲット検索弾_ホストLv.500 以下", + "911400": "Bomb ritual: Target Search Bullets _ host lv.600 or less -- ボム儀式:ターゲット検索弾_ホストLv.600 以下", + "911500": "Bomb ritual: Target Search Bullets _ host lv.700 or less -- ボム儀式:ターゲット検索弾_ホストLv.700 以下", + "911600": "Bomb ritual: Target Search Bullets _ host lv.800 or less -- ボム儀式:ターゲット検索弾_ホストLv.800 以下", + "2000000": "Dagger _ one hand usually 1 -- 短剣_片手通常1", + "2000010": "Dagger _ one hand usually two -- 短剣_片手通常2", + "2000020": "Dagger _ one hand usually three -- 短剣_片手通常3", + "2000030": "Dagger _ One handed jump -- 短剣_片手ジャンプ1", + "2000040": "Dagger _ one-handed fall loop -- 短剣_片手落下ループ", + "2000050": "Dagger _ one-handed fall landing -- 短剣_片手落下着地", + "2000100": "Dagger _ one-handed entertainment 1 -- 短剣_片手タメ1", + "2000105": "Dagger _ one-handed Entertainment 1 MAX -- 短剣_片手タメ1最大", + "2000110": "Dagger _ one-handed Entertainment 2 -- 短剣_片手タメ2", + "2000115": "Dagger _ one-handed Entertainment 2 Max -- 短剣_片手タメ2最大", + "2000200": "Dagger _ Two hands usually one -- 短剣_両手通常1", + "2000210": "Dagger _ Two Hands usually 2 -- 短剣_両手通常2", + "2000220": "Dagger _ Two hands usually three -- 短剣_両手通常3", + "2000230": "Dagger _ two-handed jump -- 短剣_両手ジャンプ1", + "2000240": "Dagger _ two-handed fall loop -- 短剣_両手落下ループ", + "2000250": "Dagger _ two-handed fall landing -- 短剣_両手落下着地", + "2000300": "Dagger _ two-handed entertainment 1 -- 短剣_両手タメ1", + "2000305": "Dagger _ two-handed entertainment 1 MAX -- 短剣_両手タメ1最大", + "2000310": "Dagger _ two-handed Entertainment 2 -- 短剣_両手タメ2", + "2000315": "Dagger _ two-handed entertainment max -- 短剣_両手タメ2最大", + "2000400": "Dagger _ Left Hand -- 短剣_左手", + "2000410": "Dagger _ one hand close -- 短剣_片手近距離", + "2000420": "Dagger _ Both hands close -- 短剣_両手近距離", + "2000430": "Dagger _ one-handed guard -- 短剣_片手ガード", + "2000440": "Dagger _ Both hands Guard -- 短剣_両手ガード", + "2000450": "Dagger _ Paris -- 短剣_パリィ", + "2000470": "Dagger _ Large Throw -- 短剣_大型投げ", + "2000490": "Dagger _ Falling Throw -- 短剣_落下投げ", + "2000500": "Behind the Dagger -- 短剣_背後", + "2000505": "Dagger _ Strengthening behind -- 短剣_強化背後", + "2000510": "Dagger _ after Paris -- 短剣_パリィ後", + "2000515": "Dagger _ After strengthening Paris -- 短剣_強化パリィ後", + "2000516": "Dagger _ After strengthening Paris _ two -- 短剣_強化パリィ後_二段目", + "2000520": "Dagger _ one handed Dash -- 短剣_片手ダッシュ", + "2000530": "Dagger _ both hands dash -- 短剣_両手ダッシュ", + "2000540": "Dagger _ one hand step before -- 短剣_片手ステップ前", + "2000580": "Dagger _ Hands before step -- 短剣_両手ステップ前", + "2000600": "Dagger _ Parigard -- 短剣_パリィガード", + "2000610": "Dagger _ Behind the transition -- 短剣_背後遷移", + "2000615": "Dagger _ Behind Transition _ missed -- 短剣_背後遷移_空振り", + "2000700": "Dagger _ Arts _ Strong rock Step -- 短剣_アーツ_強ロックステップ", + "2001300": "[72] Dagger _ two-handed entertainment 1 -- 【72】短刀_両手タメ1", + "2001310": "[72] Dagger _ two-handed Entertainment 2 -- 【72】短刀_両手タメ2", + "2002100": "[73] Soul-one-handed entertainment 1 -- 【73】吸魂_片手タメ1", + "2002110": "[73] Soul-one-handed entertainment 2 -- 【73】吸魂_片手タメ2", + "2002300": "[73] Soul-absorbing, two-handed entertainment 1 -- 【73】吸魂_両手タメ1", + "2002310": "[73] Soul-absorbing two-handed entertainment 2 -- 【73】吸魂_両手タメ2", + "2003100": "[120] A ghost knife _ one-handed entertainment 1 -- 【120】死霊のナイフ_片手タメ1", + "2003110": "[120] A ghost knife _ one-handed Entertainment 2 -- 【120】死霊のナイフ_片手タメ2", + "2003300": "【 120 】 Ghost Knife _ two-handed entertainment 1 -- 【120】死霊のナイフ_両手タメ1", + "2003310": "【 120 】 Ghost Knife _ two-handed Entertainment 2 -- 【120】死霊のナイフ_両手タメ2", + "2004100": "[130] Kieran Dagger _ one-handed entertainment 1 -- 【130】キアランの短剣_片手タメ1", + "2004110": "[130] Kieran Dagger _ one-handed Entertainment 2 -- 【130】キアランの短剣_片手タメ2", + "2004300": "[130] Kieran Dagger _ two-handed entertainment 1 -- 【130】キアランの短剣_両手タメ1", + "2004310": "[130] Kieran Dagger _ two-handed Entertainment 2 -- 【130】キアランの短剣_両手タメ2", + "2300000": "Straight Sword _ one hand usually 1 -- 直剣_片手通常1", + "2300010": "Straight Sword _ one hand usually two -- 直剣_片手通常2", + "2300020": "Straight Sword _ one hand usually three -- 直剣_片手通常3", + "2300030": "Straight Sword _ One handed jump -- 直剣_片手ジャンプ1", + "2300040": "Straight Sword _ one-handed fall loop -- 直剣_片手落下ループ", + "2300050": "Straight Sword _ one-handed fall landing -- 直剣_片手落下着地", + "2300100": "Straight Sword _ one-handed entertainment 1 -- 直剣_片手タメ1", + "2300105": "Straight Sword _ one-handed 1_ maximum attack -- 直剣_片手タメ1_最大攻撃", + "2300110": "Straight Sword _ one-handed Entertainment 2 -- 直剣_片手タメ2", + "2300115": "Straight Sword _ one-handed 2_ maximum attack -- 直剣_片手タメ2_最大攻撃", + "2300200": "Straight Sword _ Two hands usually one -- 直剣_両手通常1", + "2300210": "Straight Swords _ Two hands usually -- 直剣_両手通常2", + "2300220": "Straight Swords _ Two hands usually three -- 直剣_両手通常3", + "2300230": "Straight Sword _ two-handed jump -- 直剣_両手ジャンプ1", + "2300240": "Straight Sword _ two-handed fall loop -- 直剣_両手落下ループ", + "2300250": "Straight Sword _ two-handed fall landing -- 直剣_両手落下着地", + "2300300": "Straight Sword _ two-handed entertainment 1 -- 直剣_両手タメ1", + "2300305": "Straight Sword _ two-handed entertainment 1 MAX -- 直剣_両手タメ1最大", + "2300310": "Straight Sword _ two-handed Entertainment 2 -- 直剣_両手タメ2", + "2300315": "Straight Sword _ two-handed, maximum -- 直剣_両手タメ2最大", + "2300400": "Straight Sword _ left hand -- 直剣_左手", + "2300410": "Straight Sword _ one hand close -- 直剣_片手近距離", + "2300420": "Straight Sword _ both hands close -- 直剣_両手近距離", + "2300430": "Straight Sword _ one-handed guard -- 直剣_片手ガード", + "2300440": "Straight Sword _ two handed guards -- 直剣_両手ガード", + "2300450": "Straight Sword _ Paris -- 直剣_パリィ", + "2300470": "Straight Sword _ Large Throw -- 直剣_大型投げ", + "2300490": "Straight Sword _ Falling Throw -- 直剣_落下投げ", + "2300500": "Straight Sword _ behind -- 直剣_背後", + "2300505": "Straight Swords _ crouching behind -- 直剣_背後しゃがみ", + "2300506": "Straight Sword _ reinforced behind -- 直剣_強化背後", + "2300510": "Straight Sword _ after Paris -- 直剣_パリィ後", + "2300515": "Straight Sword _ after strengthening Paris -- 直剣_強化パリィ後", + "2300516": "Paris Straight Sword _ after strengthening _ two -- 直剣_強化パリィ後_二段目", + "2300520": "Straight Sword _ one-handed Dash -- 直剣_片手ダッシュ", + "2300530": "Straight Sword _ both hands dash -- 直剣_両手ダッシュ", + "2300540": "Straight Sword _ one hand step before -- 直剣_片手ステップ前", + "2300580": "Straight Sword _ Two hands before step -- 直剣_両手ステップ前", + "2300600": "Straight Sword _ Parigard -- 直剣_パリィガード", + "2300610": "Straight Sword _ Behind the transition -- 直剣_背後遷移", + "2300615": "Straight Sword _ Behind the transition _ missed -- 直剣_背後遷移_空振り", + "2300720": "Straight Sword _ Weak -- 直剣_構え弱", + "2300722": "Straight Sword _ Strong poised -- 直剣_構え強", + "2301100": "[53] Broad _ one-handed entertainment 1 -- 【53】ブロード_片手タメ1", + "2301540": "[53] Broad _ one-handed step before -- 【53】ブロード_片手ステップ前", + "2301580": "[53] Broad _ both hands before step -- 【53】ブロード_両手ステップ前", + "2302100": "[54] Straight Sword: one-handed entertainment 1 -- 【54】刺突直剣_片手タメ1", + "2302110": "[54] Straight Sword: one-handed Entertainment 2 -- 【54】刺突直剣_片手タメ2", + "2302300": "[54] Straight Swords _ two-handed entertainment 1 -- 【54】刺突直剣_両手タメ1", + "2302310": "[54] Straight Swords _ two-handed Entertainment 2 -- 【54】刺突直剣_両手タメ2", + "2302580": "[54] Thrust Straight Sword _ before both hands step -- 【54】刺突直剣_両手ステップ前", + "2303100": "[55] Hero's Sword _ one-handed entertainment 1 -- 【55】英雄の剣_片手タメ1", + "2303110": "[55] Hero's Sword _ one-handed Entertainment 2 -- 【55】英雄の剣_片手タメ2", + "2303300": "[55] Hero's Sword _ two-handed entertainment 1 -- 【55】英雄の剣_両手タメ1", + "2303310": "[55] Hero's Sword _ two-handed Entertainment 2 -- 【55】英雄の剣_両手タメ2", + "2304100": "[57] Dark _ one-handed entertainment 1 -- 【57】ダーク_片手タメ1", + "2304110": "[57] Dark _ one-handed Entertainment 2 -- 【57】ダーク_片手タメ2", + "2304300": "[57] Dark _ two-handed entertainment 1 -- 【57】ダーク_両手タメ1", + "2304310": "[57] Dark _ two-handed Entertainment 2 -- 【57】ダーク_両手タメ2", + "2305100": "[58] Sword of the old dragon _ one-handed entertainment 1 -- 【58】古竜の剣_片手タメ1", + "2305110": "[58] Sword of the old dragon _ one-handed Entertainment 2 -- 【58】古竜の剣_片手タメ2", + "2305300": "[58] Sword of the old Dragon _ two-handed entertainment 1 -- 【58】古竜の剣_両手タメ1", + "2305310": "[58] Sword of the old Dragon _ two-handed Entertainment 2 -- 【58】古竜の剣_両手タメ2", + "2305320": "[58] Sword of the old Dragon _ two-handed Entertainment 1/Magic Sword Trigger -- 【58】古竜の剣_両手タメ1/魔法剣発動時", + "2305330": "[58] Sword of the old Dragon _ two-handed Entertainment 2/Magic Sword -- 【58】古竜の剣_両手タメ2/魔法剣発動時", + "2305580": "[58] Sword of the old Dragon _ Two hands before step -- 【58】古竜の剣_両手ステップ前", + "2305800": "[58] Sword of the old Dragon _ Magic Attack -- 【58】古竜の剣_魔法攻撃", + "2500000": "Large Sword _ one hand usually 1 -- 大剣_片手通常1", + "2500010": "Large Sword _ one hand usually two -- 大剣_片手通常2", + "2500020": "Large Sword _ one hand usually three -- 大剣_片手通常3", + "2500030": "Big Sword _ One handed jump -- 大剣_片手ジャンプ1", + "2500040": "Large Sword _ One handed fall loop -- 大剣_片手落下ループ", + "2500050": "Big Sword _ one-handed fall landing -- 大剣_片手落下着地", + "2500100": "Big Sword _ one-handed entertainment 1 -- 大剣_片手タメ1", + "2500105": "Large Sword _ one hand entertainment maximum -- 大剣_片手タメ1最大", + "2500110": "Big Sword _ one hand Entertainment 2 -- 大剣_片手タメ2", + "2500115": "Big Sword _ one hand entertainment 2 max -- 大剣_片手タメ2最大", + "2500200": "Large Sword _ Two hands usually one -- 大剣_両手通常1", + "2500210": "Large Swords _ Two hands usually -- 大剣_両手通常2", + "2500220": "Large Swords _ Two hands usually three -- 大剣_両手通常3", + "2500230": "Large Sword _ two-handed jump 1 -- 大剣_両手ジャンプ1", + "2500240": "Large Sword _ two-handed fall loop -- 大剣_両手落下ループ", + "2500250": "Large Sword _ two-handed fall landing -- 大剣_両手落下着地", + "2500300": "Large Sword _ two-handed entertainment 1 -- 大剣_両手タメ1", + "2500305": "Large Sword _ two-handed entertainment 1 MAX -- 大剣_両手タメ1最大", + "2500310": "Large Sword _ two-handed Entertainment 2 -- 大剣_両手タメ2", + "2500315": "Large Sword _ two-handed entertainment maximum -- 大剣_両手タメ2最大", + "2500400": "Big Sword _ Left hand -- 大剣_左手", + "2500410": "Large Sword _ one hand close -- 大剣_片手近距離", + "2500420": "Large Sword _ both hands close -- 大剣_両手近距離", + "2500430": "Large Sword _ one handed guard -- 大剣_片手ガード", + "2500440": "Large Sword _ both hands Guard -- 大剣_両手ガード", + "2500450": "Big Sword _ Paris -- 大剣_パリィ", + "2500470": "Large Sword _ Large throw -- 大剣_大型投げ", + "2500490": "Large Sword _ Falling throw -- 大剣_落下投げ", + "2500500": "Behind the Great Sword -- 大剣_背後", + "2500505": "Great Sword _ reinforced behind -- 大剣_強化背後", + "2500510": "Large Sword _ after Paris -- 大剣_パリィ後", + "2500515": "Great swords _ after strengthening Paris -- 大剣_強化パリィ後", + "2500516": "Paris _ Two after the Great sword _ -- 大剣_強化パリィ後_二段目", + "2500520": "Big Sword _ One handed Dash -- 大剣_片手ダッシュ", + "2500530": "Big Sword _ both hands dash -- 大剣_両手ダッシュ", + "2500540": "Big Sword _ one hand step before -- 大剣_片手ステップ前", + "2500580": "Large Sword _ Two hands before step -- 大剣_両手ステップ前", + "2500600": "Big Sword _ Parigard -- 大剣_パリィガード", + "2500610": "Big Sword _ Behind the transition -- 大剣_背後遷移", + "2500615": "Big Sword _ Behind the transition _ missed -- 大剣_背後遷移_空振り", + "2501100": "[80] Black Knight's Great Sword _ one-handed entertainment 1 -- 【80】黒騎士の大剣_片手タメ1", + "2501110": "[80] Black Knight's Great Sword _ one-handed Entertainment 2 -- 【80】黒騎士の大剣_片手タメ2", + "2501300": "[80] Black Knight's Great Sword _ two-handed entertainment 1 -- 【80】黒騎士の大剣_両手タメ1", + "2502000": "Framberger _ one-handed usually 1 -- フランベルジェ_片手通常1", + "2502010": "Framberger _ one hand usually two -- フランベルジェ_片手通常2", + "2502020": "Framberger _ one-handed usually three -- フランベルジェ_片手通常3", + "2502030": "Framberger _ one-handed jump 1 -- フランベルジェ_片手ジャンプ1", + "2502040": "Framberger _ one-handed fall loop -- フランベルジェ_片手落下ループ", + "2502050": "Framberger _ one-handed fall landing -- フランベルジェ_片手落下着地", + "2502100": "Framberger _ one-handed entertainment 1 -- フランベルジェ_片手タメ1", + "2502110": "Framberger _ one-handed Entertainment 2 -- フランベルジェ_片手タメ2", + "2502200": "Framberger _ Two hands usually one -- フランベルジェ_両手通常1", + "2502210": "Framberger _ Two Hands usually 2 -- フランベルジェ_両手通常2", + "2502220": "Framberger _ Two hands usually three -- フランベルジェ_両手通常3", + "2502230": "Framberger _ two-handed jump 1 -- フランベルジェ_両手ジャンプ1", + "2502240": "Framberger _ Two-handed hand-dropping loop -- フランベルジェ_両手手落下ループ", + "2502250": "Framberger _ Both hands fall landing -- フランベルジェ_両手手落下着地", + "2502300": "Framberger _ two-handed entertainment 1 -- フランベルジェ_両手タメ1", + "2502310": "Framberger _ two-handed Entertainment 2 -- フランベルジェ_両手タメ2", + "2502400": "Framberger _ Left Hand -- フランベルジェ_左手", + "2502520": "Framberger _ one-handed Dash -- フランベルジェ_片手ダッシュ", + "2502530": "Framberger _ Both hands dash -- フランベルジェ_両手ダッシュ", + "2502540": "Framberger _ one handed step ahead -- フランベルジェ_片手ステップ前", + "2502580": "Framberger _ Both hands step ahead -- フランベルジェ_両手ステップ前", + "2503100": "[77] Large Sword of stone _ one-handed entertainment 1 -- 【77】石の大剣_片手タメ1", + "2503110": "[77] Large Sword of stone _ one-handed Entertainment 2 -- 【77】石の大剣_片手タメ2", + "2504100": "[79] Moonlight _ one-handed entertainment 1 -- 【79】ムーンライト_片手タメ1", + "2504110": "[79] Moonlight _ one-handed Entertainment 2 -- 【79】ムーンライト_片手タメ2", + "2504120": "[79] Moonlight _ one-handed Entertainment 1/Magic Sword Trigger -- 【79】ムーンライト_片手タメ1/魔法剣発動時", + "2504130": "[79] Moonlight _ one-handed Entertainment 2/Magic Sword Trigger -- 【79】ムーンライト_片手タメ2/魔法剣発動時", + "2504300": "[79] Moonlight _ two-handed entertainment 1 -- 【79】ムーンライト_両手タメ1", + "2504310": "[79] Moonlight _ two-handed Entertainment 2 -- 【79】ムーンライト_両手タメ2", + "2504320": "[79] Moonlight _ two-handed Entertainment 1/Magic Sword Trigger -- 【79】ムーンライト_両手タメ1/魔法剣発動時", + "2504330": "[79] Moonlight _ two-hand entertainment 2/Magic Sword Trigger -- 【79】ムーンライト_両手タメ2/魔法剣発動時", + "2504800": "[79] Moonlight _ one hand _ Magic attack -- 【79】ムーンライト_片手_魔法攻撃", + "2504801": "[79] Moonlight _ Both Hands _ Magic attack -- 【79】ムーンライト_両手_魔法攻撃", + "2505100": "[74] Claymore _ one-handed entertainment 1 -- 【74】クレイモア_片手タメ1", + "2505110": "[74] Claymore _ one-handed Entertainment 2 -- 【74】クレイモア_片手タメ2", + "2505580": "[74] Claymore _ two-handed step before -- 【74】クレイモア_両手ステップ前", + "2507100": "[97] The great _ one-handed entertainment 1 -- 【97】大王_片手タメ1", + "2507110": "[97] The great _ one-handed Entertainment 2 -- 【97】大王_片手タメ2", + "2507300": "[97] Great _ two-handed entertainment 1 -- 【97】大王_両手タメ1", + "2507310": "[97] Great _ two-handed Entertainment 2 -- 【97】大王_両手タメ2", + "2508100": "[131] al-Triana (erosion) _ one-handed entertainment 1 -- 【131】アルトリウス(侵食)_片手タメ1", + "2508300": "[131] al-Triana (erosion) _ two-handed entertainment 1 -- 【131】アルトリウス(侵食)_両手タメ1", + "2509300": "[135] Black Dragon Large Sword _ two-handed entertainment 1 -- 【135】黒竜の大剣_両手タメ1", + "2509320": "[135] Black Dragon Large Sword _ two-hand entertainment 1/Magic Sword Trigger -- 【135】黒竜の大剣_両手タメ1/魔法剣発動時", + "2509800": "[135] Black Dragon Large Sword _ both hands _ Magic attack -- 【135】黒竜の大剣_両手_魔法攻撃", + "2600000": "Oversized Sword _ one hand usually 1 -- 特大剣_片手通常1", + "2600001": "Oversized Sword _ One handed usually 1_ range -- 特大剣_片手通常1_範囲", + "2600010": "Oversized Sword _ one hand usually two -- 特大剣_片手通常2", + "2600020": "Oversized Sword _ one hand usually three -- 特大剣_片手通常3", + "2600030": "Oversized Sword _ One handed jump -- 特大剣_片手ジャンプ1", + "2600040": "Oversized Sword _ One handed fall loop -- 特大剣_片手落下ループ", + "2600050": "Oversized Sword _ one-handed fall landing -- 特大剣_片手落下着地", + "2600100": "Oversized Sword _ one-handed entertainment 1 -- 特大剣_片手タメ1", + "2600105": "Oversized Sword _ one-handed entertainment 1_ Max -- 特大剣_片手タメ1_最大", + "2600110": "Oversized Sword _ one-handed Entertainment 2 -- 特大剣_片手タメ2", + "2600115": "Oversized Sword _ one-handed entertainment 2_ Max -- 特大剣_片手タメ2_最大", + "2600200": "Oversized Sword _ Two hands usually one -- 特大剣_両手通常1", + "2600210": "Oversized Swords _ Two hands usually 2 -- 特大剣_両手通常2", + "2600220": "Oversized Swords _ Two hands usually three -- 特大剣_両手通常3", + "2600230": "Oversized Sword _ two-handed jump 1 -- 特大剣_両手ジャンプ1", + "2600240": "Oversized Sword _ two-handed fall loop -- 特大剣_両手落下ループ", + "2600250": "Oversized Sword _ two-handed fall landing -- 特大剣_両手落下着地", + "2600300": "Oversized Sword _ two-handed entertainment 1 -- 特大剣_両手タメ1", + "2600305": "Oversized Sword _ two-handed entertainment 1 MAX -- 特大剣_両手タメ1最大", + "2600310": "Oversized Sword _ two-handed Entertainment 2 -- 特大剣_両手タメ2", + "2600315": "Oversized Sword _ two-handed maximum -- 特大剣_両手タメ2最大", + "2600400": "Oversized Sword _ left hand -- 特大剣_左手", + "2600410": "Oversized Sword _ one hand close -- 特大剣_片手近距離", + "2600420": "Oversized Sword _ both hands close -- 特大剣_両手近距離", + "2600430": "Oversized Sword _ One handed guard -- 特大剣_片手ガード", + "2600440": "Oversized Sword _ two handed guards -- 特大剣_両手ガード", + "2600450": "Oversized Sword _ Paris -- 特大剣_パリィ", + "2600470": "Oversized Sword _ Large throw -- 特大剣_大型投げ", + "2600490": "Oversized Sword _ Falling throw -- 特大剣_落下投げ", + "2600500": "Behind the oversized sword -- 特大剣_背後", + "2600501": "An oversized sword _ behind the two firing eyes -- 特大剣_背後_二撃目", + "2600505": "Oversized swords _ Reinforced behind -- 特大剣_強化背後", + "2600506": "Oversized Swords _ Reinforced behind _ Two -- 特大剣_強化背後_二段目", + "2600510": "Oversized Sword _ after Paris -- 特大剣_パリィ後", + "2600511": "Oversized Sword _ Paris after second firing -- 特大剣_パリィ後_二撃目", + "2600515": "Oversized Sword _ after strengthening Paris -- 特大剣_強化パリィ後", + "2600516": "Paris Oversized Sword _ after strengthening _ two -- 特大剣_強化パリィ後_二段目", + "2600517": "Paris Oversized Sword _ after strengthening _ Sandanme -- 特大剣_強化パリィ後_三段目", + "2600520": "Oversized Sword _ one handed Dash -- 特大剣_片手ダッシュ", + "2600530": "Oversized Sword _ both hands dash -- 特大剣_両手ダッシュ", + "2600540": "Oversized Sword _ one hand step before -- 特大剣_片手ステップ前", + "2600580": "Oversized Sword _ Two hands before step -- 特大剣_両手ステップ前", + "2600600": "Oversized Sword _ Parigard -- 特大剣_パリィガード", + "2600610": "Oversized Sword _ Behind the transition -- 特大剣_背後遷移", + "2600615": "Oversized Sword _ behind transition _ missed -- 特大剣_背後遷移_空振り", + "2600700": "Oversized Sword _ tread rotation attack -- 特大剣_踏込回転攻撃", + "2600701": "Oversized Sword _ Tread launch attack -- 特大剣_踏込打ち上げ攻撃", + "2600702": "Oversized Sword _ Tread Nagi: first half -- 特大剣_踏込なぎ払い:前半", + "2600780": "Oversized Sword _ Blown away -- 特大剣_吹き飛ばし", + "2600790": "Oversized Sword _ directing slams -- 特大剣_演出叩きつけ", + "2601300": "[98] Large Sword of the old Dragon _ two-handed entertainment 1 -- 【98】古竜の大剣_両手タメ1", + "2602100": "[95] Great Sword _ one-handed entertainment 1 -- 【95】グレートソード_片手タメ1", + "2602300": "[95] Great Sword _ two-handed entertainment 1 -- 【95】グレートソード_両手タメ1", + "2603100": "[96] Daemon Hatchet _ one-handed entertainment 1 -- 【96】デーモンの鉈_片手タメ1", + "2603300": "[96] Daemon Hatchet _ two-handed entertainment 1 -- 【96】デーモンの鉈_両手タメ1", + "2604300": "[128] Black Knight's oversized sword _ two-handed entertainment 1 -- 【128】黒騎士の特大剣_両手タメ1", + "2700000": "Stabbing Sword _ one hand usually 1 -- 刺剣_片手通常1", + "2700010": "Stabbing Sword _ one hand usually two -- 刺剣_片手通常2", + "2700020": "Stabbing Sword _ one hand usually three -- 刺剣_片手通常3", + "2700030": "Stab Sword _ One handed jump -- 刺剣_片手ジャンプ1", + "2700040": "Stab Sword _ One handed fall loop -- 刺剣_片手落下ループ", + "2700050": "Stab Sword _ one-handed fall landing -- 刺剣_片手落下着地", + "2700100": "Stab Sword _ one-handed entertainment 1 -- 刺剣_片手タメ1", + "2700105": "Stab Sword _ one-handed 1_ maximum -- 刺剣_片手タメ1_最大", + "2700110": "Stab Sword _ one hand Entertainment 2 -- 刺剣_片手タメ2", + "2700115": "Stab Sword _ one-handed 2_ maximum -- 刺剣_片手タメ2_最大", + "2700200": "Stab Sword _ Two hands usually one -- 刺剣_両手通常1", + "2700210": "Stab Sword _ Two hands usually 2 -- 刺剣_両手通常2", + "2700220": "Stab Sword _ Two hands usually three -- 刺剣_両手通常3", + "2700230": "Stabbing Sword _ two-handed jump -- 刺剣_両手ジャンプ1", + "2700240": "Stabbing Sword _ two-handed fall loop -- 刺剣_両手落下ループ", + "2700250": "Stabbing Sword _ two-handed fall landing -- 刺剣_両手落下着地", + "2700300": "Stabbing Sword _ two-handed entertainment 1 -- 刺剣_両手タメ1", + "2700305": "Stabbing Sword _ two-handed 1_ Max -- 刺剣_両手タメ1_最大", + "2700310": "Stabbing Sword _ two-handed Entertainment 2 -- 刺剣_両手タメ2", + "2700315": "Stabbing Sword _ two-handed 2_ Max -- 刺剣_両手タメ2_最大", + "2700400": "Stab Sword _ Left hand -- 刺剣_左手", + "2700410": "Stab Sword _ one hand close -- 刺剣_片手近距離", + "2700420": "Stab Sword _ both hands close -- 刺剣_両手近距離", + "2700430": "Stab Sword _ One handed guard -- 刺剣_片手ガード", + "2700440": "Piercing Sword _ Both hands Guard -- 刺剣_両手ガード", + "2700450": "Stabbing Sword _ Paris -- 刺剣_パリィ", + "2700460": "Stinging Sword _ Guard during attack -- 刺剣_ガード中攻撃", + "2700470": "Stinging Sword _ Large Throw -- 刺剣_大型投げ", + "2700490": "Stabbing Sword _ Falling throw -- 刺剣_落下投げ", + "2700500": "Stinging Sword _ behind -- 刺剣_背後", + "2700505": "Stinging Sword _ reinforced behind -- 刺剣_強化背後", + "2700510": "Stabbing Sword _ after Paris -- 刺剣_パリィ後", + "2700515": "Stabbing Sword _ after strengthening Paris -- 刺剣_強化パリィ後", + "2700516": "Stabbing Sword _ After strengthening Paris _ two -- 刺剣_強化パリィ後_二段目", + "2700520": "Stab Sword _ one handed Dash -- 刺剣_片手ダッシュ", + "2700530": "Stab Sword _ both hands dash -- 刺剣_両手ダッシュ", + "2700540": "Stab Sword _ one hand step before -- 刺剣_片手ステップ前", + "2700580": "Stab Sword _ Two hands before step -- 刺剣_両手ステップ前", + "2700600": "Stabbing Sword _ Parigard -- 刺剣_パリィガード", + "2700610": "Stab Sword _ Behind the transition -- 刺剣_背後遷移", + "2700615": "Stab Sword _ Behind the transition _ missed -- 刺剣_背後遷移_空振り", + "2700720": "Stinging Sword _ Weak -- 刺剣_構え弱", + "2700730": "Stinging Sword _ Strong: Continuous Protrusion -- 刺剣_構え強:連続突", + "2700731": "Stinging Sword _ Strong: Final stage of continuous protrusion -- 刺剣_構え強:連続突最終段", + "2701100": "[119] Mail Breaker _ one-handed entertainment 1 -- 【119】メイルブレイカー_片手タメ1", + "2701110": "[119] Mail Breaker _ one-handed Entertainment 2 -- 【119】メイルブレイカー_片手タメ2", + "2701300": "[119] Mail Breaker _ two-handed entertainment 1 -- 【119】メイルブレイカー_両手タメ1", + "2701310": "[119] Mail Breaker _ two-handed Entertainment 2 -- 【119】メイルブレイカー_両手タメ2", + "2702100": "[113] Estoc _ one-handed entertainment 1 -- 【113】エストック_片手タメ1", + "2702110": "[113] Estoc _ one-handed Entertainment 2 -- 【113】エストック_片手タメ2", + "2702300": "[113] Estoc _ two-handed entertainment 1 -- 【113】エストック_両手タメ1", + "2702310": "[113] Estoc _ two-handed Entertainment 2 -- 【113】エストック_両手タメ2", + "2703100": "[114] Belka _ one-handed entertainment 1 -- 【114】ベルカ_片手タメ1", + "2703110": "[114] Belka _ one-handed Entertainment 2 -- 【114】ベルカ_片手タメ2", + "2703300": "[114] Belka _ two-handed entertainment 1 -- 【114】ベルカ_両手タメ1", + "2703310": "[114] Belka _ two-handed Entertainment 2 -- 【114】ベルカ_両手タメ2", + "2800000": "Song Sword _ one hand usually 1 -- 曲剣_片手通常1", + "2800010": "Song Sword _ one hand usually two -- 曲剣_片手通常2", + "2800020": "Song Sword _ one hand usually three -- 曲剣_片手通常3", + "2800030": "Song Sword _ One handed jump -- 曲剣_片手ジャンプ1", + "2800040": "Song Sword _ One Handed fall loop -- 曲剣_片手落下ループ", + "2800050": "Song Sword _ one-handed fall landing -- 曲剣_片手落下着地", + "2800100": "Song Sword _ one-handed entertainment 1 -- 曲剣_片手タメ1", + "2800101": "Song Sword _ one-handed Entertainment 1 (second hammer) -- 曲剣_片手タメ1(二撃目)", + "2800105": "Song Sword _ one-handed 1_ Max -- 曲剣_片手タメ1_最大", + "2800106": "Song Sword _ one-handed 1_ Max (second hammer) -- 曲剣_片手タメ1_最大(二撃目)", + "2800110": "Song Sword _ one hand Entertainment 2 -- 曲剣_片手タメ2", + "2800115": "Song Sword _ one-handed 2_ Max -- 曲剣_片手タメ2_最大", + "2800200": "Song Sword _ Two Hands usually one -- 曲剣_両手通常1", + "2800210": "Song Sword _ Two Hands usually 2 -- 曲剣_両手通常2", + "2800220": "Song Sword _ Two Hands usually three -- 曲剣_両手通常3", + "2800230": "Song Sword _ two-handed jump 1 -- 曲剣_両手ジャンプ1", + "2800240": "Song Sword _ two-handed fall loop -- 曲剣_両手落下ループ", + "2800250": "Song Sword _ two-handed fall landing -- 曲剣_両手落下着地", + "2800300": "Song Sword _ two-handed entertainment 1 -- 曲剣_両手タメ1", + "2800301": "Song Sword _ two-handed Entertainment 1 (second hammer) -- 曲剣_両手タメ1(二撃目)", + "2800305": "Song Sword _ two-handed 1_ Max -- 曲剣_両手タメ1_最大", + "2800306": "Song Sword _ two-handed 1_ Max (second hammer) -- 曲剣_両手タメ1_最大(二撃目)", + "2800310": "Song Sword _ two-handed Entertainment 2 -- 曲剣_両手タメ2", + "2800315": "Song Sword _ two-handed 2_ Max -- 曲剣_両手タメ2_最大", + "2800400": "Song Sword _ Left Hand -- 曲剣_左手", + "2800410": "Song Sword _ one hand close -- 曲剣_片手近距離", + "2800420": "Song Sword _ both hands close -- 曲剣_両手近距離", + "2800430": "Song Sword _ One handed guard -- 曲剣_片手ガード", + "2800440": "Song Sword _ Hands-on guard -- 曲剣_両手ガード", + "2800450": "Song Sword _ Paris -- 曲剣_パリィ", + "2800470": "Song Sword _ Large Throw -- 曲剣_大型投げ", + "2800490": "Song Sword _ Falling Throw -- 曲剣_落下投げ", + "2800500": "Behind the song Sword -- 曲剣_背後", + "2800505": "Song Sword _ Strengthening behind -- 曲剣_強化背後", + "2800510": "Song Sword _ after Paris -- 曲剣_パリィ後", + "2800515": "Song Sword _ after strengthening Paris -- 曲剣_強化パリィ後", + "2800516": "Paris Song Sword _ after strengthening _ two -- 曲剣_強化パリィ後_二段目", + "2800520": "Song Sword _ one handed Dash -- 曲剣_片手ダッシュ", + "2800530": "Song Sword _ both hands dash -- 曲剣_両手ダッシュ", + "2800540": "Song Sword _ one hand step before -- 曲剣_片手ステップ前", + "2800580": "Song Sword _ Two Hands before step -- 曲剣_両手ステップ前", + "2800600": "Song Sword _ Parigard -- 曲剣_パリィガード", + "2800610": "Song Sword _ Behind the transition -- 曲剣_背後遷移", + "2800615": "Song Sword _ Behind the transition _ missed -- 曲剣_背後遷移_空振り", + "2802100": "[100] Song of Evil sword _ one-handed entertainment 1 -- 【100】死霊の曲剣_片手タメ1", + "2802110": "[100] Song of the Evil sword _ one-handed Entertainment 2 -- 【100】死霊の曲剣_片手タメ2", + "2802300": "[100] Song of Evil sword _ two-handed entertainment 1 -- 【100】死霊の曲剣_両手タメ1", + "2802310": "[100] Song of Evil sword _ two-handed Entertainment 2 -- 【100】死霊の曲剣_両手タメ2", + "2803100": "[101] Elemia _ one-handed entertainment 1 -- 【101】エレーミア_片手タメ1", + "2803110": "[101] Elemia _ one-handed Entertainment 2 -- 【101】エレーミア_片手タメ2", + "2803300": "[101] Elemia _ two-handed entertainment 1 -- 【101】エレーミア_両手タメ1", + "2803310": "[101] Elemia _ two-handed Entertainment 2 -- 【101】エレーミア_両手タメ2", + "2804100": "[56] Krag _ one-handed entertainment 1 -- 【56】クラーグ_片手タメ1", + "2804110": "[56] Krag _ one-handed Entertainment 2 -- 【56】クラーグ_片手タメ2", + "2804300": "[56] Krag _ two-handed entertainment 1 -- 【56】クラーグ_両手タメ1", + "2804310": "[56] Krag _ two-handed Entertainment 2 -- 【56】クラーグ_両手タメ2", + "2805100": "[132] Kieran Song Sword _ one-handed entertainment 1 -- 【132】キアランの曲剣_片手タメ1", + "2805110": "[132] Kieran Song Sword _ one-handed Entertainment 2 -- 【132】キアランの曲剣_片手タメ2", + "2805300": "[132] Kieran Song Sword _ two-handed entertainment 1 -- 【132】キアランの曲剣_両手タメ1", + "2805310": "[132] Kieran Song Sword _ two-handed Entertainment 2 -- 【132】キアランの曲剣_両手タメ2", + "2805311": "[132] Kieran Song Sword _ two-handed 2_ two -- 【132】キアランの曲剣_両手タメ2_二段目", + "2805400": "[132] Kieran Song Sword _ left hand _ usually -- 【132】キアランの曲剣_左手_通常", + "2805401": "[132] Kieran Song Sword _ The Left hand _ the entertainment -- 【132】キアランの曲剣_左手_タメ", + "2806620": "[137] Song Sword bi-Sword _ 1_ left hand Combo -- 【137】曲剣双剣_双剣左コンボ1_右手", + "2806621": "[137] Song Sword bi-Sword _ 1_ left hand Combo -- 【137】曲剣双剣_双剣左コンボ1_左手", + "2806630": "[137] Song Sword bi-Sword _ 2_ left hand Combo -- 【137】曲剣双剣_双剣左コンボ2_右手", + "2806631": "[137] Song Sword bi-Sword _ 2_ left hand Combo -- 【137】曲剣双剣_双剣左コンボ2_左手", + "2806640": "[137] Song Sword bi-Sword _ 3_ left hand Combo -- 【137】曲剣双剣_双剣左コンボ3_右手", + "2806641": "[137] Song Sword bi-Sword _ 3_ left hand Combo -- 【137】曲剣双剣_双剣左コンボ3_左手", + "2806740": "[137] Song Sword Twin Sword (right hand) -- 【137】曲剣双剣_回転中(右手)", + "2806741": "[137] Song Sword Twin Sword _ spinning (left hand) -- 【137】曲剣双剣_回転中(左手)", + "2806744": "[137] Song Sword Twin Sword _ Rotation strength (right hand) -- 【137】曲剣双剣_回転強(右手)", + "2806745": "[137] Song Sword Twin Sword _ rotation strength (left hand) -- 【137】曲剣双剣_回転強(左手)", + "2806750": "[137] Song Sword Twin Sword _ Double Sword dash (right hand) -- 【137】曲剣双剣_双剣ダッシュ(右手)", + "2806751": "[137] Song Sword Twin Sword (left hand) -- 【137】曲剣双剣_双剣ダッシュ(左手)", + "2806760": "[137] Song Sword Twin Sword (right hand) -- 【137】曲剣双剣_双剣ステップ前(右手)", + "2806761": "[137] Song Sword Twin Sword (left hand) -- 【137】曲剣双剣_双剣ステップ前(左手)", + "2901100": "[89] Each other sword _ one-handed entertainment 1 -- 【89】居合い刀_片手タメ1", + "2901110": "[89] Each other sword _ one-handed Entertainment 2 -- 【89】居合い刀_片手タメ2", + "2901300": "[89] Each other sword _ two-handed entertainment 1 -- 【89】居合い刀_両手タメ1", + "2901310": "[89] Each other sword _ two-handed Entertainment 2 -- 【89】居合い刀_両手タメ2", + "2902100": "[90] Shigurui Sword _ one-handed Entertainment 2 -- 【90】シグルイ刀_片手タメ2", + "2902105": "[90] Shigurui Sword _ one-handed 2_ maximum -- 【90】シグルイ刀_片手タメ2_最大", + "2902110": "[90] Shigurui Sword _ one-handed entertainment 1 -- 【90】シグルイ刀_片手タメ1", + "2902115": "[90] Shigurui Sword _ one-handed 1_ maximum -- 【90】シグルイ刀_片手タメ1_最大", + "2902300": "[90] Shigurui Sword _ two-handed entertainment 1 -- 【90】シグルイ刀_両手タメ1", + "2902305": "[90] Shigurui Sword _ two-handed 1_ maximum -- 【90】シグルイ刀_両手タメ1_最大", + "2902310": "[90] Shigurui Sword _ two-handed Entertainment 2 -- 【90】シグルイ刀_両手タメ2", + "2902315": "[90] Shigurui Sword _ two-handed 2_ maximum -- 【90】シグルイ刀_両手タメ2_最大", + "3000000": "Axe _ one hand usually 1 -- 斧_片手通常1", + "3000010": "Axe _ one hand usually two -- 斧_片手通常2", + "3000020": "Axe _ one hand usually three -- 斧_片手通常3", + "3000030": "Axe _ One handed jump -- 斧_片手ジャンプ1", + "3000040": "Axe _ One handed fall loop -- 斧_片手落下ループ", + "3000050": "Ax _ one-handed fall landing -- 斧_片手落下着地", + "3000100": "Axe _ one-handed entertainment 1 -- 斧_片手タメ1", + "3000105": "Axe _ one-handed 1_ maximum -- 斧_片手タメ1_最大", + "3000110": "Axe _ one-handed Entertainment 2 -- 斧_片手タメ2", + "3000115": "Axe _ one-handed 2_ maximum -- 斧_片手タメ2_最大", + "3000200": "Axe _ Two hands usually one -- 斧_両手通常1", + "3000210": "Axe _ Two Hands usually -- 斧_両手通常2", + "3000220": "Axe _ Two hands usually three -- 斧_両手通常3", + "3000230": "Axe _ two-handed jump 1 -- 斧_両手ジャンプ1", + "3000240": "Axe _ two-handed fall loop -- 斧_両手落下ループ", + "3000250": "Axe _ two-handed fall landing -- 斧_両手落下着地", + "3000300": "Axe _ two-handed entertainment 1 -- 斧_両手タメ1", + "3000305": "Axe _ two-handed 1_ Max -- 斧_両手タメ1_最大", + "3000310": "Axe _ two-handed Entertainment 2 -- 斧_両手タメ2", + "3000315": "Axe _ two-handed 2_ Max -- 斧_両手タメ2_最大", + "3000400": "Axe _ Left Hand -- 斧_左手", + "3000410": "Axe _ one hand close -- 斧_片手近距離", + "3000420": "Axe _ Both hands close -- 斧_両手近距離", + "3000430": "Axe _ One handed guard -- 斧_片手ガード", + "3000440": "Axe _ Both hands Guard -- 斧_両手ガード", + "3000450": "Axe _ Paris -- 斧_パリィ", + "3000470": "Axe _ Large Throw -- 斧_大型投げ", + "3000490": "Axe _ Falling Throw -- 斧_落下投げ", + "3000500": "Behind the axe -- 斧_背後", + "3000501": "Behind the ax _ the second hammer -- 斧_背後_二撃目", + "3000505": "Axe _ Reinforced behind -- 斧_強化背後", + "3000506": "Axe _ Strengthens behind _ Two -- 斧_強化背後_二段目", + "3000510": "Ax _ after Paris -- 斧_パリィ後", + "3000511": "Axe _ after Paris _ second firing -- 斧_パリィ後_二撃目", + "3000515": "Paris Axe _ After strengthening -- 斧_強化パリィ後", + "3000516": "Ax _ After strengthening Paris _ two -- 斧_強化パリィ後_二段目", + "3000517": "Ax _ After strengthening Paris _ Sandanme -- 斧_強化パリィ後_三段目", + "3000520": "Axe _ One handed Dash -- 斧_片手ダッシュ", + "3000530": "Axe _ Both hands dash -- 斧_両手ダッシュ", + "3000540": "Axe _ one hand step before -- 斧_片手ステップ前", + "3000580": "Axe _ Hands before step -- 斧_両手ステップ前", + "3000600": "Axe _ Parigard -- 斧_パリィガード", + "3000610": "Ax _ Behind the transition -- 斧_背後遷移", + "3000615": "Ax _ Behind Transition _ missed -- 斧_背後遷移_空振り", + "3000620": "Axe _ the directing slams -- 斧_演出叩きつけ", + "3000700": "Axe _ War Cry _ Shockwave -- 斧_ウォークライ_衝撃波", + "3000800": "Axe _ War Cry _ one-handed entertainment 1 -- 斧_ウォークライ_片手タメ1", + "3000805": "Axe _ War Cry _ one-handed 1_ maximum -- 斧_ウォークライ_片手タメ1_最大", + "3000806": "Axe _ War Cry _ one-handed 1_ tackle 1 -- 斧_ウォークライ_片手タメ1_タックル1", + "3000807": "Axe _ War Cry _ one-handed 1_ tackle 2 -- 斧_ウォークライ_片手タメ1_タックル2", + "3000810": "Axe _ War Cry _ one-handed Entertainment 2 -- 斧_ウォークライ_片手タメ2", + "3000815": "Axe _ War Cry _ one-handed 2_ maximum -- 斧_ウォークライ_片手タメ2_最大", + "3000900": "Axe _ War Cry _ two-handed entertainment 1 -- 斧_ウォークライ_両手タメ1", + "3000905": "Axe _ War Cry _ two-handed 1_ maximum -- 斧_ウォークライ_両手タメ1_最大", + "3000906": "Axe _ War Cry _ two-handed 1_ tackle 1 -- 斧_ウォークライ_両手タメ1_タックル1", + "3000907": "Axe _ War Cry _ two-handed 1_ tackle 2 -- 斧_ウォークライ_両手タメ1_タックル2", + "3000910": "Axe _ War Cry _ two-handed Entertainment 2 -- 斧_ウォークライ_両手タメ2", + "3000915": "Axe _ War Cry _ two-handed 2_ maximum -- 斧_ウォークライ_両手タメ2_最大", + "3001700": "[138] Twin Sword axe: Fat _ 1_ Left hand Combo -- 【138】双剣斧:デブ_双剣左コンボ1_右手", + "3001701": "[138] Twin Sword axe: Fat _ 1_ Left hand Combo -- 【138】双剣斧:デブ_双剣左コンボ1_左手", + "3001710": "[138] Twin Sword axe: Fat _ 2_ Left hand Combo -- 【138】双剣斧:デブ_双剣左コンボ2_右手", + "3001711": "[138] Twin Sword axe: Fat _ 2_ Left hand Combo -- 【138】双剣斧:デブ_双剣左コンボ2_左手", + "3001720": "[138] Twin Sword axe: Fat _ 3_ Left hand Combo -- 【138】双剣斧:デブ_双剣左コンボ3_右手", + "3001721": "[138] Twin Sword axe: Fat _ 3_ Left hand Combo -- 【138】双剣斧:デブ_双剣左コンボ3_左手", + "3001730": "[138] Twin Sword axe: Fat _ bi-Sword dash (right) -- 【138】双剣斧:デブ_双剣ダッシュ(右手)", + "3001731": "[138] Twin Sword axe: Fat _ bi-Sword dash (left hand) -- 【138】双剣斧:デブ_双剣ダッシュ(左手)", + "3001740": "[138] Twin Sword axe: Fat _ double-handed (right hand) -- 【138】双剣斧:デブ_双剣ステップ前(右手)", + "3001741": "[138] Sword axe: Fat _ bi-Sword step before (left hand) -- 【138】双剣斧:デブ_双剣ステップ前(左手)", + "3001800": "[138] Twin Sword axe: fat _ spinning (right hand) -- 【138】双剣斧:デブ_回転中(右手)", + "3001801": "[138] Twin Sword axe: fat _ spinning (left hand) -- 【138】双剣斧:デブ_回転中(左手)", + "3001820": "[138] Twin Sword axe: fat (right hand) -- 【138】双剣斧:デブ_回転強(右手)", + "3001821": "[138] Twin Sword axe: fat (left hand) -- 【138】双剣斧:デブ_回転強(左手)", + "3010000": "[102] Hand _ one hand usually 1 -- 【102】ハンド_片手通常1", + "3010010": "[102] Hand _ one hand usually two -- 【102】ハンド_片手通常2", + "3010020": "[102] Hand _ one hand usually three -- 【102】ハンド_片手通常3", + "3010100": "[102] Hand _ one-handed entertainment 1 -- 【102】ハンド_片手タメ1", + "3010110": "[102] Hand _ one-handed Entertainment 2 -- 【102】ハンド_片手タメ2", + "3010200": "[102] Hands _ usually one hand -- 【102】ハンド_両手通常1", + "3010210": "[102] Hand _ usually two hands -- 【102】ハンド_両手通常2", + "3010220": "[102] Hand _ usually three hands -- 【102】ハンド_両手通常3", + "3010300": "[102] Hand _ two-handed entertainment 1 -- 【102】ハンド_両手タメ1", + "3010310": "[102] Hand _ two-handed Entertainment 2 -- 【102】ハンド_両手タメ2", + "3010400": "[102] Hand _ left hand -- 【102】ハンド_左手", + "3020100": "[104] Iron Ax _ one-handed entertainment 1 -- 【104】アイアンアクス_片手タメ1", + "3020110": "[104] Iron Ax _ one-handed Entertainment 2 -- 【104】アイアンアクス_片手タメ2", + "3020120": "[104] Iron Ax _ one-handed Entertainment 1/Magic Sword Trigger -- 【104】アイアンアクス_片手タメ1/魔法剣発動時", + "3020130": "[104] Iron Ax _ one-handed Entertainment 2/Magic Sword Trigger -- 【104】アイアンアクス_片手タメ2/魔法剣発動時", + "3020300": "[104] Iron Ax _ two-handed entertainment 1 -- 【104】アイアンアクス_両手タメ1", + "3020301": "[104] Iron Ax _ two-handed 1_ around -- 【104】アイアンアクス_両手タメ1_周辺", + "3020310": "[104] Iron Ax _ two-handed Entertainment 2 -- 【104】アイアンアクス_両手タメ2", + "3020800": "[104] Iron Ax _ one hand _ Magic attack -- 【104】アイアンアクス_片手_魔法攻撃", + "3030100": "[103] Big knife _ one-handed entertainment 1 -- 【103】大包丁_片手タメ1", + "3030110": "[103] Big knife _ one-handed Entertainment 2 -- 【103】大包丁_片手タメ2", + "3030300": "[103] Large knife _ two-handed entertainment 1 -- 【103】大包丁_両手タメ1", + "3030310": "[103] Large knife _ two-handed Entertainment 2 -- 【103】大包丁_両手タメ2", + "3040100": "[125] Gargoyle Tail Ax _ one-handed entertainment 1 -- 【125】ガーゴイルの尾斧_片手タメ1", + "3040110": "[125] Gargoyle Tail Ax _ one-handed Entertainment 2 -- 【125】ガーゴイルの尾斧_片手タメ2", + "3040300": "[125] Gargoyle Tail Ax _ two-handed entertainment 1 -- 【125】ガーゴイルの尾斧_両手タメ1", + "3040310": "[125] Gargoyle Tail Ax _ two-handed Entertainment 2 -- 【125】ガーゴイルの尾斧_両手タメ2", + "3200000": "Large Ax _ one hand usually 1 -- 大斧_片手通常1", + "3200001": "Large ax _ One handed usually 1_ range -- 大斧_片手通常1_範囲", + "3200010": "Large Ax _ one hand usually two -- 大斧_片手通常2", + "3200020": "Large Ax _ one hand usually three -- 大斧_片手通常3", + "3200030": "Large ax _ one handed jump -- 大斧_片手ジャンプ1", + "3200040": "Large ax _ One handed fall loop -- 大斧_片手落下ループ", + "3200050": "Large ax _ one-handed fall landing -- 大斧_片手落下着地", + "3200100": "Large ax _ one-handed entertainment 1 -- 大斧_片手タメ1", + "3200101": "Large ax _ one-handed 1_ around (small) -- 大斧_片手タメ1_周辺(小)", + "3200105": "Large ax _ one-handed 1_ maximum -- 大斧_片手タメ1_最大", + "3200110": "Large ax _ one-handed Entertainment 2 -- 大斧_片手タメ2", + "3200115": "Large ax _ one-handed 2_ maximum -- 大斧_片手タメ2_最大", + "3200200": "Large Ax _ Two hands usually one -- 大斧_両手通常1", + "3200210": "Large Axe _ Two hands usually -- 大斧_両手通常2", + "3200220": "Large Ax _ Two hands usually three -- 大斧_両手通常3", + "3200230": "Large ax _ two-handed jump 1 -- 大斧_両手ジャンプ1", + "3200240": "Large axe _ two-handed fall loop -- 大斧_両手落下ループ", + "3200250": "Large ax _ two-handed fall landing -- 大斧_両手落下着地", + "3200300": "Large ax _ Both hands 1_ Center -- 大斧_両手タメ1_中心", + "3200301": "Large Axe _ both hands around 1_ -- 大斧_両手タメ1_周辺", + "3200305": "Large ax _ two-handed 1_ Center _ maximum -- 大斧_両手タメ1_中心_最大", + "3200310": "Large ax _ two-handed Entertainment 2 -- 大斧_両手タメ2", + "3200315": "Large ax _ two-handed 2_ Max -- 大斧_両手タメ2_最大", + "3200400": "Large Axe _ Left hand -- 大斧_左手", + "3200410": "Large Axe _ one hand close -- 大斧_片手近距離", + "3200420": "Large Axe _ both hands close -- 大斧_両手近距離", + "3200430": "Large Axe _ One handed guard -- 大斧_片手ガード", + "3200440": "Large Axe _ two handed guards -- 大斧_両手ガード", + "3200450": "Large Axe _ Paris -- 大斧_パリィ", + "3200470": "Large Axe _ Large throw -- 大斧_大型投げ", + "3200490": "Large Axe _ Falling throw -- 大斧_落下投げ", + "3200500": "Large ax _ behind -- 大斧_背後", + "3200501": "Large ax _ Behind the second hammer -- 大斧_背後_二撃目", + "3200505": "Large ax _ Reinforced behind -- 大斧_強化背後", + "3200506": "Large Ax _ reinforced behind _ Two -- 大斧_強化背後_二段目", + "3200510": "Large ax _ after Paris -- 大斧_パリィ後", + "3200511": "Large Ax _ after Paris _ Second hammer -- 大斧_パリィ後_二撃目", + "3200515": "Large ax _ after strengthening Paris -- 大斧_強化パリィ後", + "3200516": "Paris Large Ax _ after strengthening _ two -- 大斧_強化パリィ後_二段目", + "3200517": "Paris Large Ax _ after strengthening _ Sandanme -- 大斧_強化パリィ後_三段目", + "3200520": "Large Axe _ one handed Dash -- 大斧_片手ダッシュ", + "3200530": "Large axe _ both hands dash -- 大斧_両手ダッシュ", + "3200540": "Large Axe _ one hand step before -- 大斧_片手ステップ前", + "3200580": "Large Ax _ Two hands before step -- 大斧_両手ステップ前", + "3200600": "Large Axe _ Parigard -- 大斧_パリィガード", + "3200610": "Large ax _ Behind the transition -- 大斧_背後遷移", + "3200615": "Large ax _ Behind the transition _ missed -- 大斧_背後遷移_空振り", + "3201300": "[106] Large axe of the Dragon King _ two-handed entertainment 1 -- 【106】竜王の大斧_両手タメ1", + "3201301": "[106] Large axe of the King's Dragon _ both hands around 1_ -- 【106】竜王の大斧_両手タメ1_周辺", + "3201310": "[106] Large ax of the Dragon King _ two-handed entertainment -- 【106】竜王の大斧_両手タメ2", + "3201320": "[106] Large axe of the dragon -- 【106】竜王の大斧_両手タメ1/魔法剣発動時", + "3201330": "[106] Big axe of the Dragon -- 【106】竜王の大斧_両手タメ2/魔法剣発動時", + "3201800": "[106] Dragon King's large Axe _ both hands _ Magic attack -- 【106】竜王の大斧_両手_魔法攻撃", + "3202100": "[105] Demon's Large axe _ one-handed entertainment 1 -- 【105】デーモンの大斧_片手タメ1", + "3202110": "[105] Demon's Large axe _ one-handed Entertainment 2 -- 【105】デーモンの大斧_片手タメ2", + "3202300": "[105] Demon's Great axe _ two-handed entertainment 1 -- 【105】デーモンの大斧_両手タメ1", + "3202310": "[105] Demon's Large axe _ two-handed Entertainment 2 -- 【105】デーモンの大斧_両手タメ2", + "3203000": "[107] Black Knight's large axe _ one hand usually 1 -- 【107】黒騎士の大斧_片手通常1", + "3203010": "[107] Black Knight's large axe _ one hand usually two -- 【107】黒騎士の大斧_片手通常2", + "3203020": "[107] Black Knight's great Axe _ one hand usually three -- 【107】黒騎士の大斧_片手通常3", + "3203100": "[107] Black Knight's Great Axe _ one-handed entertainment 1 -- 【107】黒騎士の大斧_片手タメ1", + "3203110": "[107] Black Knight's Great Axe _ one-handed Entertainment 2 -- 【107】黒騎士の大斧_片手タメ2", + "3203200": "[107] Black Knight's large axe _ Two hands usually one -- 【107】黒騎士の大斧_両手通常1", + "3203210": "[107] Black Knight's large axe _ Two hands usually -- 【107】黒騎士の大斧_両手通常2", + "3203220": "[107] Black Knight's large axe _ Two hands usually three -- 【107】黒騎士の大斧_両手通常3", + "3203300": "[107] Black Knight's Great Axe _ two-handed entertainment 1 -- 【107】黒騎士の大斧_両手タメ1", + "3203310": "[107] Black Knight's Great Axe _ two-handed Entertainment 2 -- 【107】黒騎士の大斧_両手タメ2", + "3204100": "[133] Dogu Celts _ one-handed entertainment 1 -- 【133】土偶の石斧_片手タメ1", + "3204110": "[133] Dogu Celts _ one-handed Entertainment 2 -- 【133】土偶の石斧_片手タメ2", + "3204300": "[133] Dogu Celts _ two-handed entertainment 1 -- 【133】土偶の石斧_両手タメ1", + "3204310": "[133] Dogu Celts _ two-handed Entertainment 2 -- 【133】土偶の石斧_両手タメ2", + "3300000": "Mallet _ one hand usually 1 -- 槌_片手通常1", + "3300010": "Mallet _ one hand usually two -- 槌_片手通常2", + "3300020": "Mallet _ one hand usually three -- 槌_片手通常3", + "3300030": "Mallet _ One handed jump -- 槌_片手ジャンプ1", + "3300040": "Mallet _ one-handed fall loop -- 槌_片手落下ループ", + "3300050": "Mallet _ one-handed fall landing -- 槌_片手落下着地", + "3300100": "Mallet _ one-handed entertainment 1 -- 槌_片手タメ1", + "3300105": "Mallet _ one-handed entertainment 1_ Max -- 槌_片手タメ1_最大", + "3300110": "Mallet _ one-handed Entertainment 2 -- 槌_片手タメ2", + "3300115": "Mallet _ one-handed entertainment 2_ Max -- 槌_片手タメ2_最大", + "3300200": "Mallet _ Two hands usually one -- 槌_両手通常1", + "3300210": "Mallet _ Two Hands usually 2 -- 槌_両手通常2", + "3300220": "Mallet _ Two hands usually three -- 槌_両手通常3", + "3300230": "Mallet _ two-handed jump 1 -- 槌_両手ジャンプ1", + "3300240": "Mallet _ two-handed fall loop -- 槌_両手落下ループ", + "3300250": "Mallet _ two-handed fall landing -- 槌_両手落下着地", + "3300300": "Mallet _ two-handed entertainment 1 -- 槌_両手タメ1", + "3300305": "Mallet _ two-handed 1_ maximum -- 槌_両手タメ1_最大", + "3300310": "Mallet _ two-handed Entertainment 2 -- 槌_両手タメ2", + "3300315": "Mallet _ two-handed 2_ maximum -- 槌_両手タメ2_最大", + "3300400": "Mallet _ Left Hand -- 槌_左手", + "3300410": "Mallet _ one hand close -- 槌_片手近距離", + "3300420": "Mallet _ Both hands close -- 槌_両手近距離", + "3300430": "Mallet _ One handed guard -- 槌_片手ガード", + "3300440": "Mallet _ Both hands Guard -- 槌_両手ガード", + "3300450": "Mallet _ Paris -- 槌_パリィ", + "3300470": "Mallet _ Large Throw -- 槌_大型投げ", + "3300490": "Mallet _ Falling Throw -- 槌_落下投げ", + "3300500": "Mallet _ behind -- 槌_背後", + "3300501": "The mallet _ Behind the second hammer -- 槌_背後_二撃目", + "3300505": "Mallet _ Reinforced behind -- 槌_強化背後", + "3300506": "Mallet _ Reinforced behind _ Two -- 槌_強化背後_二段目", + "3300510": "Mallet _ After Paris -- 槌_パリィ後", + "3300511": "Mallet _ Paris after second firing -- 槌_パリィ後_二撃目", + "3300515": "Paris after hammering _ strengthens -- 槌_強化パリィ後", + "3300516": "Paris hammered _ strengthens after _ Two -- 槌_強化パリィ後_二段目", + "3300517": "Paris hammered _ Strengthens after _ Sandanme -- 槌_強化パリィ後_三段目", + "3300520": "Mallet _ one-handed Dash -- 槌_片手ダッシュ", + "3300530": "Mallet _ Both hands dash -- 槌_両手ダッシュ", + "3300540": "Mallet _ one hand step before -- 槌_片手ステップ前", + "3300580": "Mallet _ Both hands step forward -- 槌_両手ステップ前", + "3300600": "Mallet _ Parigard -- 槌_パリィガード", + "3300610": "Hammer _ Behind Transition -- 槌_背後遷移", + "3300615": "Hammer _ Behind Transition _ missed -- 槌_背後遷移_空振り", + "3301000": "[60] War picks _ one hand usually 1 -- 【60】ウォーピック_片手通常1", + "3301010": "[60] War picks _ one hand usually two -- 【60】ウォーピック_片手通常2", + "3301020": "[60] War picks _ one hand usually three -- 【60】ウォーピック_片手通常3", + "3301030": "[60] War pick _ one handed jump -- 【60】ウォーピック_片手ジャンプ1", + "3301040": "[60] War pick _ one-handed fall loop -- 【60】ウォーピック_片手落下ループ", + "3301050": "[60] War pick _ one-handed fall landing -- 【60】ウォーピック_片手落下着地", + "3301100": "[60] War pick _ one-handed entertainment 1 -- 【60】ウォーピック_片手タメ1", + "3301110": "[60] War pick _ one-handed Entertainment 2 -- 【60】ウォーピック_片手タメ2", + "3301200": "[60] War pick _ two hands usually one -- 【60】ウォーピック_両手通常1", + "3301210": "[60] War pick _ Two hands usually 2 -- 【60】ウォーピック_両手通常2", + "3301220": "[60] War pick _ two hands usually three -- 【60】ウォーピック_両手通常3", + "3301230": "[60] War Pick _ two-handed jump 1 -- 【60】ウォーピック_両手ジャンプ1", + "3301240": "[60] War Pick _ two-handed fall loop -- 【60】ウォーピック_両手落下ループ", + "3301250": "[60] War Pick _ two-handed fall landing -- 【60】ウォーピック_両手落下着地", + "3301300": "[60] War Pick _ two-handed entertainment 1 -- 【60】ウォーピック_両手タメ1", + "3301310": "[60] War Pick _ two-handed Entertainment 2 -- 【60】ウォーピック_両手タメ2", + "3301400": "[60] War picks _ left hand -- 【60】ウォーピック_左手", + "3301490": "[60] War pick _ falling Throw -- 【60】ウォーピック_落下投げ", + "3301500": "[60] War picks _ behind -- 【60】ウォーピック_背後", + "3301501": "[60] War pick _ behind the second hammer -- 【60】ウォーピック_背後_二撃目", + "3301505": "[60] War pick _ reinforced behind -- 【60】ウォーピック_強化背後", + "3301506": "[60] War Pick _ reinforced behind _ Two -- 【60】ウォーピック_強化背後_二段目", + "3301510": "[60] War pick _ after Paris -- 【60】ウォーピック_パリィ後", + "3301511": "[60] War Pick _ Paris after the second hammer -- 【60】ウォーピック_パリィ後_二撃目", + "3301515": "[60] War pick _ after strengthening Paris -- 【60】ウォーピック_強化パリィ後", + "3301516": "[60] War pick _ after strengthening Paris _ two -- 【60】ウォーピック_強化パリィ後_二段目", + "3301517": "[60] War pick _ after strengthening Paris _ Sandanme -- 【60】ウォーピック_強化パリィ後_三段目", + "3301520": "[60] War pick _ one-handed Dash -- 【60】ウォーピック_片手ダッシュ", + "3301530": "[60] War Pick _ both hands Dash -- 【60】ウォーピック_両手ダッシュ", + "3301540": "[60] War pick _ one handed step before -- 【60】ウォーピック_片手ステップ前", + "3301580": "[60] War Pick _ two-handed step before -- 【60】ウォーピック_両手ステップ前", + "3302000": "【 】 Club _ one hand usually 1 -- 【 】クラブ_片手通常1", + "3302010": "【 】 Club _ one hand usually two -- 【 】クラブ_片手通常2", + "3302020": "Club _ one hand usually three -- 【 】クラブ_片手通常3", + "3302100": "Club _ one-handed entertainment 1 -- 【 】クラブ_片手タメ1", + "3302200": "【 】 Club _ both hands usually one -- 【 】クラブ_両手通常1", + "3302210": "【 】 Club _ both hands usually two -- 【 】クラブ_両手通常2", + "3302220": "【 】 Club _ Two hands usually three -- 【 】クラブ_両手通常3", + "3302300": "【 】 Club _ two-handed entertainment 1 -- 【 】クラブ_両手タメ1", + "3302400": "Club _ Left Hand -- 【 】クラブ_左手", + "3303000": "[61] Pickaxe _ one hand usually 1 -- 【61】つるはし_片手通常1", + "3303010": "[61] Pickaxe _ one hand usually two -- 【61】つるはし_片手通常2", + "3303020": "[61] Pickaxe _ one hand usually three -- 【61】つるはし_片手通常3", + "3303030": "[61] Pickaxe _ one-handed jump 1 -- 【61】つるはし_片手ジャンプ1", + "3303040": "[61] Pickaxe _ one-handed fall loop -- 【61】つるはし_片手落下ループ", + "3303050": "[61] Pickaxe _ one-handed fall landing -- 【61】つるはし_片手落下着地", + "3303100": "[61] Pickaxe _ one-handed entertainment 1 -- 【61】つるはし_片手タメ1", + "3303110": "[61] Pickaxe _ one-handed Entertainment 2 -- 【61】つるはし_片手タメ2", + "3303200": "[61] Pickaxe _ both hands usually one -- 【61】つるはし_両手通常1", + "3303210": "[61] Pickaxe _ Two hands usually 2 -- 【61】つるはし_両手通常2", + "3303220": "[61] Pickaxe _ Two hands usually three -- 【61】つるはし_両手通常3", + "3303230": "[61] Pickaxe _ two-handed jump 1 -- 【61】つるはし_両手ジャンプ1", + "3303240": "[61] Pickaxe _ two-handed fall loop -- 【61】つるはし_両手落下ループ", + "3303250": "[61] Pickaxe _ two-handed fall landing -- 【61】つるはし_両手落下着地", + "3303300": "[61] Pickaxe _ two-handed entertainment 1 -- 【61】つるはし_両手タメ1", + "3303310": "[61] Pickaxe _ two-handed Entertainment 2 -- 【61】つるはし_両手タメ2", + "3303400": "[61] Pickaxe _ Left Hand -- 【61】つるはし_左手", + "3303490": "[61] Pickaxe _ Falling throw -- 【61】つるはし_落下投げ", + "3303500": "[61] Pickaxe _ behind -- 【61】つるはし_背後", + "3303501": "[61] Pickaxe _ Behind the second hammer -- 【61】つるはし_背後_二撃目", + "3303505": "[61] Pickaxe _ Reinforced behind -- 【61】つるはし_強化背後", + "3303506": "[61] Pickaxe _ reinforced behind _ Two -- 【61】つるはし_強化背後_二段目", + "3303510": "[61] Pickaxe _ after Paris -- 【61】つるはし_パリィ後", + "3303511": "[61] Pickaxe _ after Paris _ Second hammer -- 【61】つるはし_パリィ後_二撃目", + "3303515": "[61] Pickaxe _ After strengthening Paris -- 【61】つるはし_強化パリィ後", + "3303516": "[61] Pickaxe _ After strengthening Paris _ two -- 【61】つるはし_強化パリィ後_二段目", + "3303517": "[61] Pickaxe _ After strengthening Paris _ Sandanme -- 【61】つるはし_強化パリィ後_三段目", + "3303520": "[61] Pickaxe _ one-handed Dash -- 【61】つるはし_片手ダッシュ", + "3303530": "[61] Pickaxe _ both hands dash -- 【61】つるはし_両手ダッシュ", + "3303540": "[61] Pickaxe _ one hand step before -- 【61】つるはし_片手ステップ前", + "3303580": "[61] Pickaxe _ two-handed step before -- 【61】つるはし_両手ステップ前", + "3500000": "Otsuchi _ one hand usually 1 -- 大槌_片手通常1", + "3500010": "Otsuchi _ one hand usually two -- 大槌_片手通常2", + "3500020": "Otsuchi _ one hand usually three -- 大槌_片手通常3", + "3500030": "Otsuchi _ One handed jump -- 大槌_片手ジャンプ1", + "3500040": "Otsuchi _ one-handed fall loop -- 大槌_片手落下ループ", + "3500050": "Otsuchi _ one-handed fall landing -- 大槌_片手落下着地", + "3500100": "Otsuchi _ one-handed entertainment 1 -- 大槌_片手タメ1", + "3500101": "Otsuchi _ one-handed 1_ around (small) -- 大槌_片手タメ1_周辺(小)", + "3500105": "Otsuchi _ one-handed entertainment 1_ Max -- 大槌_片手タメ1_最大", + "3500110": "Otsuchi _ one-handed Entertainment 2 -- 大槌_片手タメ2", + "3500115": "Otsuchi _ one-handed entertainment 2_ Max -- 大槌_片手タメ2_最大", + "3500200": "Otsuchi _ Two Hands usually -- 大槌_両手通常1", + "3500210": "Otsuchi _ Two Hands usually -- 大槌_両手通常2", + "3500220": "A sledgehammer _ usually three hands -- 大槌_両手通常3", + "3500230": "Otsuchi _ two-handed jump -- 大槌_両手ジャンプ1", + "3500240": "Otsuchi _ two-handed fall loop -- 大槌_両手落下ループ", + "3500250": "Otsuchi _ two-handed fall landing -- 大槌_両手落下着地", + "3500300": "Otsuchi _ Both Hands 1_ Center -- 大槌_両手タメ1_中心", + "3500301": "Otsuchi _ two-handed 1_ around -- 大槌_両手タメ1_周辺", + "3500305": "Otsuchi _ two-handed 1_ Center _ maximum -- 大槌_両手タメ1_中心_最大", + "3500310": "Otsuchi _ two-handed Entertainment 2 -- 大槌_両手タメ2", + "3500315": "Otsuchi _ two-handed 2_ maximum -- 大槌_両手タメ2_最大", + "3500400": "Otsuchi _ Left Hand -- 大槌_左手", + "3500410": "Otsuchi _ one hand close -- 大槌_片手近距離", + "3500420": "Otsuchi _ Both hands close -- 大槌_両手近距離", + "3500430": "Otsuchi _ one-handed guard -- 大槌_片手ガード", + "3500440": "Otsuchi _ two-handed guards -- 大槌_両手ガード", + "3500450": "Otsuchi _ Paris -- 大槌_パリィ", + "3500470": "Otsuchi _ Large Throw -- 大槌_大型投げ", + "3500490": "Otsuchi _ Falling Throw -- 大槌_落下投げ", + "3500500": "Otsuchi _ Behind -- 大槌_背後", + "3500501": "The sledgehammer _ behind the second hammer -- 大槌_背後_二撃目", + "3500505": "Otsuchi _ Reinforced behind -- 大槌_強化背後", + "3500506": "Two _ Strengthens behind _ -- 大槌_強化背後_二段目", + "3500510": "Otsuchi _ After Paris -- 大槌_パリィ後", + "3500511": "Otsuchi _ Paris _ Second Hammer -- 大槌_パリィ後_二撃目", + "3500515": "Otsuchi _ After strengthening Paris -- 大槌_強化パリィ後", + "3500516": "Paris _ Two after battering _ -- 大槌_強化パリィ後_二段目", + "3500517": "Paris _ Sandanme after battering _ -- 大槌_強化パリィ後_三段目", + "3500520": "Otsuchi _ one-handed Dash -- 大槌_片手ダッシュ", + "3500530": "The sledgehammer _ both hands dash -- 大槌_両手ダッシュ", + "3500540": "Otsuchi _ one hand step before -- 大槌_片手ステップ前", + "3500580": "The sledgehammer _ Two hands step ahead -- 大槌_両手ステップ前", + "3500600": "Otsuchi _ Parigard -- 大槌_パリィガード", + "3500610": "Otsuchi _ Behind the transition -- 大槌_背後遷移", + "3500800": "Otsuchi _ Magic Attack -- 大槌_魔法攻撃", + "3502100": "[124] Bango soldier _ one-handed entertainment 1 -- 【124】蛮兵_片手タメ1", + "3502110": "[124] Bango soldier _ one-handed Entertainment 2 -- 【124】蛮兵_片手タメ2", + "3502300": "[124] Bango soldiers _ Both hands 1_ Center -- 【124】蛮兵_両手タメ1_中心", + "3502310": "[124] Bango soldiers _ two-handed Entertainment 2 -- 【124】蛮兵_両手タメ2", + "3503100": "[70] Sumo _ one-handed entertainment 1 -- 【70】スモウ_片手タメ1", + "3503300": "[70] Sumo _ Both hands 1_ Center -- 【70】スモウ_両手タメ1_中心", + "3600000": "Spear _ one hand usually 1 -- 槍_片手通常1", + "3600010": "Spear _ one hand usually two -- 槍_片手通常2", + "3600020": "Spear _ one hand usually three -- 槍_片手通常3", + "3600030": "Spear _ One handed jump -- 槍_片手ジャンプ1", + "3600040": "Spear _ One Handed fall loop -- 槍_片手落下ループ", + "3600050": "Spear _ one-handed fall landing -- 槍_片手落下着地", + "3600100": "Spear _ one-handed entertainment 1 -- 槍_片手タメ1", + "3600105": "Spear _ one-handed Entertainment 1 MAX -- 槍_片手タメ1最大", + "3600110": "Spear _ one-handed Entertainment 2 -- 槍_片手タメ2", + "3600115": "Spear _ one-handed Entertainment 2 Max -- 槍_片手タメ2最大", + "3600200": "Spear _ Two hands usually one -- 槍_両手通常1", + "3600210": "Spear _ Two Hands usually 2 -- 槍_両手通常2", + "3600220": "Spear _ Two hands usually three -- 槍_両手通常3", + "3600230": "Spear _ two-handed jump 1 -- 槍_両手ジャンプ1", + "3600240": "Spear _ two-handed fall loop -- 槍_両手落下ループ", + "3600250": "Spear _ two-handed fall landing -- 槍_両手落下着地", + "3600300": "Spear _ two-handed entertainment 1 -- 槍_両手タメ1", + "3600305": "Spear _ two-handed entertainment 1 MAX -- 槍_両手タメ1最大", + "3600310": "Spear _ two-handed Entertainment 2 -- 槍_両手タメ2", + "3600315": "Spear _ two-handed entertainment max -- 槍_両手タメ2最大", + "3600400": "Spear _ Left Hand -- 槍_左手", + "3600410": "Spear _ one hand short distance -- 槍_片手近距離", + "3600420": "Spear _ Both hands close -- 槍_両手近距離", + "3600430": "Spear _ one-handed guard -- 槍_片手ガード", + "3600440": "Spear _ Both hands Guard -- 槍_両手ガード", + "3600450": "Spear _ Paris -- 槍_パリィ", + "3600460": "Spear _ Guard during attack -- 槍_ガード中攻撃", + "3600470": "Spear _ Large Throw -- 槍_大型投げ", + "3600490": "Spear _ Falling Throw -- 槍_落下投げ", + "3600500": "Behind the Spear -- 槍_背後", + "3600505": "Spear _ Strengthening behind -- 槍_強化背後", + "3600510": "Spear _ after Paris -- 槍_パリィ後", + "3600515": "Spear _ After strengthening Paris -- 槍_強化パリィ後", + "3600516": "Spear _ After strengthening Paris _ two -- 槍_強化パリィ後_二段目", + "3600520": "Spear _ one-handed Dash -- 槍_片手ダッシュ", + "3600530": "Spear _ Both hands dash -- 槍_両手ダッシュ", + "3600540": "Spear _ one hand step before -- 槍_片手ステップ前", + "3600600": "Spear _ Parigard -- 槍_パリィガード", + "3600610": "Spear _ Behind the transition -- 槍_背後遷移", + "3600615": "The spear _ Behind the transition _ missed -- 槍_背後遷移_空振り", + "3600720": "Spear _ Weak poised -- 槍_構え弱", + "3600722": "Spear _ Strong -- 槍_構え強", + "3600723": "Spear _ Holding Strong _ Continuous attack -- 槍_構え強_連撃", + "3600790": "Spear _ Bunk Attack -- 槍_二段攻撃", + "3600800": "Spear assault: A continuous hit -- 槍_突撃:連続ヒット", + "3600810": "Spear assault: No continuous hit motion -- 槍_突撃:連続ヒットモーションなし", + "3600820": "Spear assault: Continuous hit last thrust -- 槍_突撃:連続ヒットラスト突き", + "3601000": "Spear _ one hand usually 1 (stick) -- 槍_片手通常1(棒)", + "3601010": "Spear _ one hand usually 2 (stick) -- 槍_片手通常2(棒)", + "3601020": "Spear _ one hand usually three (stick) -- 槍_片手通常3(棒)", + "3601030": "Spear _ one-handed jump 1 (stick) -- 槍_片手ジャンプ1(棒)", + "3601040": "Spear _ One Handed Fall loop (stick) -- 槍_片手落下ループ(棒)", + "3601050": "Spear _ one-handed fall landing (stick) -- 槍_片手落下着地(棒)", + "3601100": "Spear _ one-handed entertainment 1 (stick) -- 槍_片手タメ1(棒)", + "3601105": "Spear _ one-handed entertainment 1 max (stick) -- 槍_片手タメ1最大(棒)", + "3601110": "Spear _ one hand Entertainment 2 (stick) -- 槍_片手タメ2(棒)", + "3601115": "Spear _ one hand Entertainment 2 max (stick) -- 槍_片手タメ2最大(棒)", + "3601200": "Spear _ Two hands usually one (stick) -- 槍_両手通常1(棒)", + "3601210": "Spear _ Two Hands usually 2 (stick) -- 槍_両手通常2(棒)", + "3601220": "Spear _ Two Hands usually 3 (stick) -- 槍_両手通常3(棒)", + "3601230": "Spear _ two-handed jump 1 (stick) -- 槍_両手ジャンプ1(棒)", + "3601240": "Spear _ two-handed Fall loop (stick) -- 槍_両手落下ループ(棒)", + "3601250": "Spear _ two-handed fall landing (stick) -- 槍_両手落下着地(棒)", + "3601300": "Spear _ two-handed Entertainment 1 (stick) -- 槍_両手タメ1(棒)", + "3601305": "Spear _ two-handed one maximum (stick) -- 槍_両手タメ1最大(棒)", + "3601310": "Spear _ two-handed Entertainment 2 (stick) -- 槍_両手タメ2(棒)", + "3601315": "Spear _ two-handed maximum (stick) -- 槍_両手タメ2最大(棒)", + "3601460": "Spear _ Guard during attack (stick) -- 槍_ガード中攻撃(棒)", + "3601520": "Spear _ one-handed dash (stick) -- 槍_片手ダッシュ(棒)", + "3601530": "Spear _ both Hands dash (stick) -- 槍_両手ダッシュ(棒)", + "3601540": "Spear _ one hand step before (stick) -- 槍_片手ステップ前(棒)", + "3601600": "Spear _ Parigard (stick) -- 槍_パリィガード(棒)", + "3601610": "Spear _ Behind the Transition (stick) -- 槍_背後遷移(棒)", + "3601615": "Spear _ Behind the transition _ missed (stick) -- 槍_背後遷移_空振り(棒)", + "3601720": "Spear _ Weak (stick) -- 槍_構え弱(棒)", + "3601722": "Spear _ Strong (stick) -- 槍_構え強(棒)", + "3601723": "Spear _ strong _ Continuous Hammer (stick) -- 槍_構え強_連撃(棒)", + "3601790": "Spear _ Bunk Attack (bar) -- 槍_二段攻撃(棒)", + "3601800": "Spear _ Assault: Continuous hit (stick) -- 槍_突撃:連続ヒット(棒)", + "3601810": "Spear assault: Continuous hit final stage (bar) -- 槍_突撃:連続ヒット最終段(棒)", + "3601820": "Spear assault: Continuous hit last thrust (stick) -- 槍_突撃:連続ヒットラスト突き(棒)", + "3602100": "[65] Rectangular Six _ one-handed entertainment 1 -- 【65】六目_片手タメ1", + "3602101": "[65] Rectangular Six _ one-handed 1_ second hammer -- 【65】六目_片手タメ1_二撃目", + "3602110": "[65] Rectangular Six _ one-handed Entertainment 2 -- 【65】六目_片手タメ2", + "3603300": "[68] Spear of the Dragon hunting _ two-handed entertainment 1 -- 【68】竜狩りの槍_両手タメ1", + "3603310": "[68] Dragon Hunting Spear _ two-handed Entertainment 2 -- 【68】竜狩りの槍_両手タメ2", + "3604100": "[63] Partisan _ one-handed entertainment 1 -- 【63】パルチザン_片手タメ1", + "3604110": "[63] Partisan _ one-handed Entertainment 2 -- 【63】パルチザン_片手タメ2", + "3604300": "[63] Partisan _ two-handed entertainment 1 -- 【63】パルチザン_両手タメ1", + "3604310": "[63] Partisan _ two-handed Entertainment 2 -- 【63】パルチザン_両手タメ2", + "3605100": "[64] Demon Spear _ one-handed entertainment 1 -- 【64】デーモンの槍_片手タメ1", + "3605110": "[64] Demon Spear _ one-handed Entertainment 2 -- 【64】デーモンの槍_片手タメ2", + "3605300": "[64] Demon Spear _ two-handed entertainment 1 -- 【64】デーモンの槍_両手タメ1", + "3605310": "[64] Demon Spear _ two-handed Entertainment 2 -- 【64】デーモンの槍_両手タメ2", + "3606100": "[66] Silver Knight Spear _ one-handed entertainment 1 -- 【66】銀騎士の槍_片手タメ1", + "3606110": "[66] Silver Knight Spear _ one-handed Entertainment 2 -- 【66】銀騎士の槍_片手タメ2", + "3606300": "[66] Silver Knight Spear _ two-handed entertainment 1 -- 【66】銀騎士の槍_両手タメ1", + "3606310": "[66] Silver Knight Spear _ two-handed Entertainment 2 -- 【66】銀騎士の槍_両手タメ2", + "3608100": "[67] Pike _ one-handed entertainment 1 -- 【67】パイク_片手タメ1", + "3608110": "[67] Pike _ one-handed Entertainment 2 -- 【67】パイク_片手タメ2", + "3608300": "[67] Pike _ two-handed entertainment 1 -- 【67】パイク_両手タメ1", + "3608310": "[67] Pike _ two-handed Entertainment 2 -- 【67】パイク_両手タメ2", + "3608520": "[67] Pike _ one-handed Dash -- 【67】パイク_片手ダッシュ", + "3608521": "[67] Pike _ one-handed dash (stop) -- 【67】パイク_片手ダッシュ(止め)", + "3608530": "[67] Pike _ both hands dash -- 【67】パイク_両手ダッシュ", + "3608531": "[67] Pike _ both hands dash (stop) -- 【67】パイク_両手ダッシュ(止め)", + "3800000": "Axe Spear _ one hand usually 1 -- 斧槍_片手通常1", + "3800010": "Axe Spear _ one hand usually two -- 斧槍_片手通常2", + "3800020": "Axe Spear _ one hand usually three -- 斧槍_片手通常3", + "3800030": "Axe Spear _ One handed jump -- 斧槍_片手ジャンプ1", + "3800040": "Axe Spear _ One handed fall loop -- 斧槍_片手落下ループ", + "3800050": "Axe Spear _ one-handed fall landing -- 斧槍_片手落下着地", + "3800100": "Axe Spear _ one-handed entertainment 1 -- 斧槍_片手タメ1", + "3800105": "Axe Spear _ one-handed 1_ maximum -- 斧槍_片手タメ1_最大", + "3800110": "Axe Spear _ one-handed Entertainment 2 -- 斧槍_片手タメ2", + "3800115": "Axe Spear _ one-handed 2_ maximum -- 斧槍_片手タメ2_最大", + "3800200": "Axe Spear _ Two hands usually one -- 斧槍_両手通常1", + "3800210": "Axe Spear _ Two hands usually -- 斧槍_両手通常2", + "3800220": "Axe Spear _ Two hands usually three -- 斧槍_両手通常3", + "3800230": "Axe Spear _ two-handed jump 1 -- 斧槍_両手ジャンプ1", + "3800240": "Axe Spear _ two-handed fall loop -- 斧槍_両手落下ループ", + "3800250": "Axe Spear _ two-handed fall landing -- 斧槍_両手落下着地", + "3800300": "Axe Spear _ two-handed entertainment 1 -- 斧槍_両手タメ1", + "3800305": "Axe Spear _ two-handed 1_ Max -- 斧槍_両手タメ1_最大", + "3800310": "Axe Spear _ two-handed Entertainment 2 -- 斧槍_両手タメ2", + "3800315": "Axe Spear _ two-handed 2_ Max -- 斧槍_両手タメ2_最大", + "3800400": "Axe Spear _ Left hand -- 斧槍_左手", + "3800410": "Axe Spear _ one hand close -- 斧槍_片手近距離", + "3800420": "Axe Spear _ both hands close -- 斧槍_両手近距離", + "3800430": "Axe Spear _ one-handed guard -- 斧槍_片手ガード", + "3800440": "Axe Spear _ two handed guards -- 斧槍_両手ガード", + "3800450": "Axe Spear _ Paris -- 斧槍_パリィ", + "3800470": "Axe Spear _ Large Throw -- 斧槍_大型投げ", + "3800490": "Axe Spear _ Falling Throw -- 斧槍_落下投げ", + "3800500": "Axe Spear _ behind -- 斧槍_背後", + "3800505": "Axe Spear _ Reinforced behind -- 斧槍_強化背後", + "3800510": "Axe Spear _ after Paris -- 斧槍_パリィ後", + "3800515": "Axe Spear _ after strengthening Paris -- 斧槍_強化パリィ後", + "3800516": "Ax Spear _ After strengthening Paris _ two -- 斧槍_強化パリィ後_二段目", + "3800520": "Axe Spear _ one handed Dash -- 斧槍_片手ダッシュ", + "3800530": "Axe Spear _ both hands dash -- 斧槍_両手ダッシュ", + "3800540": "Axe Spear _ one hand step before -- 斧槍_片手ステップ前", + "3800580": "Axe Spear _ Hands before step -- 斧槍_両手ステップ前", + "3800600": "Axe Spear _ Parigard -- 斧槍_パリィガード", + "3800610": "Axe Spear _ Behind the transition -- 斧槍_背後遷移", + "3800720": "Axe Spear _ poised weak attack -- 斧槍_構え弱攻撃", + "3801000": "【 】 Size (slashing) _ one hand usually 1 -- 【 】サイズ(斬撃)_片手通常1", + "3801010": "【 】 Size (slashing) _ one hand usually two -- 【 】サイズ(斬撃)_片手通常2", + "3801020": "【 】 Size (slashing) _ one hand usually three -- 【 】サイズ(斬撃)_片手通常3", + "3801030": "【 】 Size (slashing) _ one-handed jump -- 【 】サイズ(斬撃)_片手ジャンプ1", + "3801040": "【 】 Size (slashing) _ one-handed fall loop -- 【 】サイズ(斬撃)_片手落下ループ", + "3801050": "【 】 Size (slashing) _ one-handed fall landing -- 【 】サイズ(斬撃)_片手落下着地", + "3801100": "【 】 Size (slashing) _ one-handed entertainment 1 -- 【 】サイズ(斬撃)_片手タメ1", + "3801110": "【 】 Size (slashing) _ one-handed Entertainment 2 -- 【 】サイズ(斬撃)_片手タメ2", + "3801200": "【 】 Size (slashing) _ Two hands usually one -- 【 】サイズ(斬撃)_両手通常1", + "3801210": "【 】 Size (slashing) _ Two hands usually 2 -- 【 】サイズ(斬撃)_両手通常2", + "3801220": "【 】 Size (slashing) _ Two hands usually three -- 【 】サイズ(斬撃)_両手通常3", + "3801230": "【 】 Size (slashing) _ two-handed jump 1 -- 【 】サイズ(斬撃)_両手ジャンプ1", + "3801240": "【 】 Size (slashing) _ Both hands Fall loop -- 【 】サイズ(斬撃)_両手落下ループ", + "3801250": "【 】 Size (slashing) _ Both hands fall landing -- 【 】サイズ(斬撃)_両手落下着地", + "3801300": "【 】 Size (slashing) _ two-handed entertainment 1 -- 【 】サイズ(斬撃)_両手タメ1", + "3801310": "【 】 Size (slashing) _ two-handed Entertainment 2 -- 【 】サイズ(斬撃)_両手タメ2", + "3801520": "【 】 Size (slashing) _ one-handed Dash -- 【 】サイズ(斬撃)_片手ダッシュ", + "3801530": "【 】 Size (slashing) _ Both hands Dash -- 【 】サイズ(斬撃)_両手ダッシュ", + "3801540": "[] Size (slashing) _ one hand step before -- 【 】サイズ(斬撃)_片手ステップ前", + "3802000": "[109] Lucerne _ one hand usually 1 -- 【109】ルッツェルン(刺突)_片手通常1", + "3802010": "[109] Lucerne (thrust) _ one hand usually two -- 【109】ルッツェルン(刺突)_片手通常2", + "3802020": "[109] Lucerne (thrust) _ one hand usually three -- 【109】ルッツェルン(刺突)_片手通常3", + "3802030": "[109] Lucerne (one-handed jump) -- 【109】ルッツェルン(刺突)_片手ジャンプ1", + "3802040": "[109] Lucerne (Thrust) _ one-handed fall loop -- 【109】ルッツェルン(刺突)_片手落下ループ", + "3802050": "[109] Lucerne (Thrust) _ one-handed fall landing -- 【109】ルッツェルン(刺突)_片手落下着地", + "3802100": "[109] Lucerne _ one-handed entertainment 1 -- 【109】ルッツェルン(刺突)_片手タメ1", + "3802110": "[109] Lucerne (Thrust) _ one-handed Entertainment 2 -- 【109】ルッツェルン(刺突)_片手タメ2", + "3802200": "[109] Lucerne (Thrust) _ Two hands usually one -- 【109】ルッツェルン(刺突)_両手通常1", + "3802210": "[109] Lucerne (Thrust) _ Two hands usually -- 【109】ルッツェルン(刺突)_両手通常2", + "3802220": "[109] Lucerne (stabbing) _ Two hands usually three -- 【109】ルッツェルン(刺突)_両手通常3", + "3802230": "[109] Lucerne (Thrust) _ two-handed jump 1 -- 【109】ルッツェルン(刺突)_両手ジャンプ1", + "3802240": "[109] Lucerne (Thrust) _ Both hands Fall loop -- 【109】ルッツェルン(刺突)_両手落下ループ", + "3802250": "[109] Lucerne (Thrust) _ two-handed fall landing -- 【109】ルッツェルン(刺突)_両手落下着地", + "3802300": "[109] Lucerne (stabbing) _ two-handed entertainment 1 -- 【109】ルッツェルン(刺突)_両手タメ1", + "3802310": "[109] Lucerne (Stab) _ two-handed Entertainment 2 -- 【109】ルッツェルン(刺突)_両手タメ2", + "3802400": "[109] Lucerne _ Left Hand -- 【109】ルッツェルン(刺突)_左手", + "3802490": "[109] Lucerne (thrust) _ Falling throw -- 【109】ルッツェルン(刺突)_落下投げ", + "3802500": "[109] Lucerne (thrust) _ Behind -- 【109】ルッツェルン(刺突)_背後", + "3802505": "[109] Lucerne (thrust) _ Behind the reinforcement -- 【109】ルッツェルン(刺突)_強化背後", + "3802510": "[109] Lucerne (stabbing) _ after Paris -- 【109】ルッツェルン(刺突)_パリィ後", + "3802515": "[109] Lucerne (stabbing) _ After strengthening Paris -- 【109】ルッツェルン(刺突)_強化パリィ後", + "3802516": "[109] Lucerne (stabbing) _ After strengthening Paris _ two -- 【109】ルッツェルン(刺突)_強化パリィ後_二段目", + "3802520": "[109] Lucerne (Thrust) _ one-handed Dash -- 【109】ルッツェルン(刺突)_片手ダッシュ", + "3802530": "[109] Lucerne (Thrust) _ Both hands Dash -- 【109】ルッツェルン(刺突)_両手ダッシュ", + "3802540": "[109] Lucerne (needle thrust) _ one hand step before -- 【109】ルッツェルン(刺突)_片手ステップ前", + "3802580": "[109] Lucerne (Thrust) _ before both hands step -- 【109】ルッツェルン(刺突)_両手ステップ前", + "3803100": "[110] Giant's hull bird _ one-handed entertainment 1 -- 【110】巨人のハルバード_片手タメ1", + "3803110": "[110] Giant's hull bird _ one-handed Entertainment 2 -- 【110】巨人のハルバード_片手タメ2", + "3803300": "[110] Giant's hull bird _ two-handed entertainment 1 -- 【110】巨人のハルバード_両手タメ1", + "3803310": "[110] Giant's hull bird _ two-handed Entertainment 2 -- 【110】巨人のハルバード_両手タメ2", + "3804100": "[111] Dress _ one-handed entertainment 1 -- 【111】ドレス_片手タメ1", + "3804110": "[111] Dress _ one-handed Entertainment 2 -- 【111】ドレス_片手タメ2", + "3804300": "[111] Dress _ two-handed entertainment 1 -- 【111】ドレス_両手タメ1", + "3804310": "[111] Dress _ two-handed Entertainment 2 -- 【111】ドレス_両手タメ2", + "3805100": "[112] Black Knight Axe Spear _ one-handed entertainment 1 -- 【112】黒騎士の斧槍_片手タメ1", + "3805300": "[112] Black Knight Axe Spear _ two-handed entertainment 1 -- 【112】黒騎士の斧槍_両手タメ1", + "3805310": "[112] Black Knight Axe Spear _ two-handed Entertainment 2 -- 【112】黒騎士の斧槍_両手タメ2", + "4100100": "Catalyst _ One-handed entertainment 1 -- 触媒_片手タメ1", + "4100300": "Catalyst _ Two-handed entertainment 1 -- 触媒_両手タメ1", + "4100400": "Catalyst _ Left Hand -- 触媒_左手", + "4100430": "Catalyst _ one-handed guard -- 触媒_片手ガード", + "4100440": "Catalysts _ two-handed guards -- 触媒_両手ガード", + "4100610": "Catalyst _ Behind the transition -- 触媒_背後遷移", + "4101100": "Cane _ one-handed entertainment 1 -- 杖_片手タメ1", + "4101300": "Cane _ two-handed entertainment 1 -- 杖_両手タメ1", + "4101400": "Cane _ Left Hand -- 杖_左手", + "4102100": "[127] Spear Cane _ one-handed entertainment 1 -- 【127】槍杖_片手タメ1", + "4102300": "[127] Spear Cane _ two-handed entertainment 1 -- 【127】槍杖_両手タメ1", + "4102400": "[127] Spear Cane _ left hand -- 【127】槍杖_左手", + "4103100": "[121] Lantern _ one-handed entertainment 1 -- 【121】ランタン_片手タメ1", + "4103300": "[121] Lantern _ two-handed entertainment 1 -- 【121】ランタン_両手タメ1", + "4103400": "[121] Lantern _ left Hand -- 【121】ランタン_左手", + "4103410": "[121] Lantern _ one hand close -- 【121】ランタン_片手近距離", + "4103420": "[121] Lantern _ both hands close range -- 【121】ランタン_両手近距離", + "4104100": "[136] Lord of the Abyss _ one-handed entertainment 1 -- 【136】深淵の主_片手タメ1", + "4104110": "[136] Lord of the Abyss _ one-handed Entertainment 2 -- 【136】深淵の主_片手タメ2", + "4104300": "[136] Lord of the Abyss _ two-handed entertainment 1 -- 【136】深淵の主_両手タメ1", + "4104310": "[136] Lord of the Abyss _ two-handed Entertainment 2 -- 【136】深淵の主_両手タメ2", + "4104400": "[136] Lord of the Abyss _ left hand -- 【136】深淵の主_左手", + "4200000": "Fist _ one hand usually 1 -- 拳_片手通常1", + "4200010": "Fist _ one hand usually two -- 拳_片手通常2", + "4200020": "Fist _ one hand usually three -- 拳_片手通常3", + "4200030": "Fist _ One handed jump -- 拳_片手ジャンプ1", + "4200040": "Fist _ One handed fall loop -- 拳_片手落下ループ", + "4200050": "Fist _ one-handed fall landing -- 拳_片手落下着地", + "4200100": "Fist _ one-handed entertainment 1 -- 拳_片手タメ1", + "4200105": "Fist _ one-handed 1_ maximum -- 拳_片手タメ1_最大", + "4200110": "Fist _ one-handed Entertainment 2 -- 拳_片手タメ2", + "4200115": "Fist _ one-handed 2_ maximum -- 拳_片手タメ2_最大", + "4200400": "Fist _ Left Hand -- 拳_左手", + "4200410": "Fist _ one hand close -- 拳_片手近距離", + "4200430": "Fist _ one-handed guard -- 拳_片手ガード", + "4200450": "Fist _ Paris -- 拳_パリィ", + "4200470": "Fist _ Large Throw -- 拳_大型投げ", + "4200490": "Fist _ Drop Throw -- 拳_落下投げ", + "4200500": "Fist _ behind -- 拳_背後", + "4200501": "Fist _ Behind the second hammer -- 拳_背後_二撃目", + "4200505": "Fist _ Strengthening behind -- 拳_強化背後", + "4200510": "Fist _ after Paris -- 拳_パリィ後", + "4200511": "Fist _ Paris _ Second Hammer -- 拳_パリィ後_二撃目", + "4200515": "Fist _ after strengthening Paris -- 拳_強化パリィ後", + "4200516": "Paris Fist _ strengthens after _ Two -- 拳_強化パリィ後_二段目", + "4200517": "Paris Fist _ strengthens after _ Sandanme -- 拳_強化パリィ後_三段目", + "4200520": "Fist _ one handed Dash -- 拳_片手ダッシュ", + "4200540": "Fist _ one hand step before -- 拳_片手ステップ前", + "4200600": "Fist _ Parigard -- 拳_パリィガード", + "4200610": "Fist _ Behind the transition -- 拳_背後遷移", + "4200615": "Fist _ Behind Transition _ missed -- 拳_背後遷移_空振り", + "4200700": "Fist _ Ladder right hand attack -- 拳_ハシゴ右手攻撃", + "4200701": "Fist _ Ladder left hand attack -- 拳_ハシゴ左手攻撃", + "4200702": "Fist _ Ladder right foot attack -- 拳_ハシゴ右足攻撃", + "4200703": "Fist _ Ladder left foot attack -- 拳_ハシゴ左足攻撃", + "4200900": "[117] Dragon Fist _ one hand usually -- 【117】竜拳_片手通常", + "4200901": "[117] Dragon Fist _ one hand large -- 【117】竜拳_片手大", + "4200902": "[117] Dragon Fist _ left hand -- 【117】竜拳_左手", + "4200903": "[117] Dragon Fist _ one-handed Dash -- 【117】竜拳_片手ダッシュ", + "4200904": "[117] Dragon Fist _ one handed step -- 【117】竜拳_片手ステップ", + "4200905": "[117] Dragon Fist _ one-handed jump attack -- 【117】竜拳_片手ジャンプ攻撃", + "4200906": "[117] Dragon Fist _ one-handed fall attack -- 【117】竜拳_片手落下中攻撃", + "4200907": "[117] Dragon Fist _ one-handed fall attack _ around -- 【117】竜拳_片手落下攻撃_周辺", + "4202000": "[86] Nails _ one hand usually 1 -- 【86】かぎ爪_片手通常1", + "4202010": "[86] Claws _ one hand usually two -- 【86】かぎ爪_片手通常2", + "4202020": "[86] Claws _ one hand usually three -- 【86】かぎ爪_片手通常3", + "4202030": "[86] Claws _ one-handed jump 1 -- 【86】かぎ爪_片手ジャンプ1", + "4202040": "[86] Claws _ one-handed fall loop -- 【86】かぎ爪_片手落下ループ", + "4202050": "[86] Claws _ one-handed fall landing -- 【86】かぎ爪_片手落下着地", + "4202100": "[86] Claws _ one-handed entertainment 1 -- 【86】かぎ爪_片手タメ1", + "4202110": "[86] Claw nails _ one-handed Entertainment 2 -- 【86】かぎ爪_片手タメ2", + "4202400": "[86] Claws _ left Hand -- 【86】かぎ爪_左手", + "4202490": "[86] Claws _ falling throws -- 【86】かぎ爪_落下投げ", + "4202500": "[86] Claws _ behind -- 【86】かぎ爪_背後", + "4202501": "[86] Claw _ behind _ Second Hammer -- 【86】かぎ爪_背後_二撃目", + "4202505": "[86] Claws _ reinforced behind -- 【86】かぎ爪_強化背後", + "4202510": "[86] Claws _ after Paris -- 【86】かぎ爪_パリィ後", + "4202511": "[86] Claw _ Paris After _ Second hammer -- 【86】かぎ爪_パリィ後_二撃目", + "4202515": "[86] Claws _ after strengthening Paris -- 【86】かぎ爪_強化パリィ後", + "4202516": "[86] Claws _ after strengthening Paris _ two -- 【86】かぎ爪_強化パリィ後_二段目", + "4202517": "[86] Claws _ After strengthening Paris _ Sandanme -- 【86】かぎ爪_強化パリィ後_三段目", + "4202520": "[86] Claws _ one-handed Dash -- 【86】かぎ爪_片手ダッシュ", + "4202540": "[86] Claws _ one hand step before -- 【86】かぎ爪_片手ステップ前", + "4203100": "[123] Dark Han _ one-handed entertainment 1 -- 【123】ダークハン_片手タメ1", + "4203110": "[123] Dark Han _ one-handed Entertainment 2 -- 【123】ダークハン_片手タメ2", + "4203120": "[123] Dark Hand _ one-handed Entertainment 1/Magic Trigger -- 【123】ダークハンド_片手タメ1/魔法発動時", + "4203130": "[123] Dark Hand _ one-handed Entertainment 2/Magic Trigger -- 【123】ダークハンド_片手タメ2/魔法発動時", + "4203400": "[123] Dark hand _ left hand -- 【123】ダークハンド_左手", + "4203405": "[123] Dark Hand _ Left hand/Magic Trigger -- 【123】ダークハンド_左手/魔法発動時", + "4203430": "[123] Dark Hand _ one-handed guard -- 【123】ダークハンド_片手ガード", + "4204100": "[87] Large keel _ one-handed entertainment 1 -- 【87】大竜骨_片手タメ1", + "4204110": "[87] Large keel _ one-handed Entertainment 2 -- 【87】大竜骨_片手タメ2", + "4300000": "Whip _ one hand usually 1 -- 鞭_片手通常1", + "4300010": "Whip _ one hand usually two -- 鞭_片手通常2", + "4300020": "Whip _ one hand usually three -- 鞭_片手通常3", + "4300030": "Whip _ One handed jump -- 鞭_片手ジャンプ1", + "4300040": "Whip _ one-handed fall loop -- 鞭_片手落下ループ", + "4300050": "Whip _ one-handed fall landing -- 鞭_片手落下着地", + "4300100": "Whip _ one-handed entertainment 1 -- 鞭_片手タメ1", + "4300110": "Whip _ one-handed Entertainment 2 -- 鞭_片手タメ2", + "4300200": "Whip _ Two hands usually one -- 鞭_両手通常1", + "4300210": "Whips _ Two hands usually 2 -- 鞭_両手通常2", + "4300220": "Whip _ Two hands usually three -- 鞭_両手通常3", + "4300230": "Whip _ two-handed jump 1 -- 鞭_両手ジャンプ1", + "4300240": "Whip _ two-handed fall loop -- 鞭_両手落下ループ", + "4300250": "Whip _ two-handed fall landing -- 鞭_両手落下着地", + "4300300": "Whip _ two-handed entertainment 1 -- 鞭_両手タメ1", + "4300310": "Whip _ two-handed Entertainment 2 -- 鞭_両手タメ2", + "4300400": "Whip _ Left Hand -- 鞭_左手", + "4300410": "Whip _ one hand close -- 鞭_片手近距離", + "4300420": "Whip _ both hands close -- 鞭_両手近距離", + "4300430": "Whip _ one-handed guard -- 鞭_片手ガード", + "4300440": "Whip _ Both hands guard -- 鞭_両手ガード", + "4300450": "Whips _ Paris -- 鞭_パリィ", + "4300520": "Whip _ one-handed Dash -- 鞭_片手ダッシュ", + "4300530": "Whip _ both hands dash -- 鞭_両手ダッシュ", + "4300540": "Whip _ one hand step before -- 鞭_片手ステップ前", + "4300580": "Whip _ hands before step -- 鞭_両手ステップ前", + "4300600": "Whip _ Behind the transition -- 鞭_背後遷移", + "4400000": "Bow _ one hand usually -- 弓_片手通常", + "4400100": "Bow _ one-handed entertainment -- 弓_片手タメ", + "4400200": "Bow _ Both hands usually -- 弓_両手通常", + "4400300": "Bow _ hands-on entertainment -- 弓_両手タメ", + "4400400": "Bow _ Left Hand -- 弓_左手", + "4400410": "Bow _ one hand close -- 弓_片手近距離", + "4400420": "Bow _ Both hands close -- 弓_両手近距離", + "4400430": "Bow _ one-handed guard -- 弓_片手ガード", + "4400440": "Bow _ two-handed guards -- 弓_両手ガード", + "4400450": "Bows _ Paris -- 弓_パリィ", + "4400500": "Bow _ Behind -- 弓_背後", + "4400510": "Bows _ After Paris -- 弓_パリィ後", + "4400520": "Bow _ one-handed Dash -- 弓_片手ダッシュ", + "4400530": "Bow _ Both hands dash -- 弓_両手ダッシュ", + "4400540": "Bow _ one hand step before -- 弓_片手ステップ前", + "4400580": "Bow _ Hands before step -- 弓_両手ステップ前", + "4400600": "Bow _ Behind the transition -- 弓_背後遷移", + "4600000": "Crossbow _ one hand usually -- 弩_片手通常", + "4600100": "Crossbow _ one-handed entertainment -- 弩_片手タメ", + "4600200": "Crossbow _ Both hands usually -- 弩_両手通常", + "4600300": "Crossbow _ hands-on entertainment -- 弩_両手タメ", + "4600400": "Crossbow _ Left Hand -- 弩_左手", + "4600410": "Crossbow _ one-handed close -- 弩_片手近距離", + "4600420": "Crossbow _ Both hands close -- 弩_両手近距離", + "4600430": "Crossbow _ one-handed guard -- 弩_片手ガード", + "4600440": "Crossbow _ two-handed guards -- 弩_両手ガード", + "4600450": "Crossbow _ Paris -- 弩_パリィ", + "4600500": "Crossbow _ behind -- 弩_背後", + "4600510": "Crossbow _ After Paris -- 弩_パリィ後", + "4600520": "Crossbow _ one-handed Dash -- 弩_片手ダッシュ", + "4600530": "Crossbow _ Both hands dash -- 弩_両手ダッシュ", + "4600540": "Crossbow _ one handed step ahead -- 弩_片手ステップ前", + "4600580": "Crossbow _ Both hands step ahead -- 弩_両手ステップ前", + "4600600": "Crossbow _ Parigard -- 弩_パリィガード", + "4600610": "Crossbow _ Behind the transition -- 弩_背後遷移", + "4700000": "Large Shield _ one hand usually 1 -- 大型盾_片手通常1", + "4700030": "Large Shield _ one handed jump -- 大型盾_片手ジャンプ1", + "4700040": "Large Shield _ one handed fall loop -- 大型盾_片手落下ループ", + "4700050": "Large Shield _ one-handed fall landing -- 大型盾_片手落下着地", + "4700100": "Large Shield _ one-handed entertainment 1 -- 大型盾_片手タメ1", + "4700200": "Large Shield _ Two hands usually one -- 大型盾_両手通常1", + "4700230": "Large Shield _ two-handed jump 1 -- 大型盾_両手ジャンプ1", + "4700240": "Large Shield _ two-handed fall loop -- 大型盾_両手落下ループ", + "4700250": "Large Shield _ two-handed fall landing -- 大型盾_両手落下着地", + "4700300": "Large Shield _ two-handed entertainment 1 -- 大型盾_両手タメ1", + "4700400": "Large Shield _ left hand -- 大型盾_左手", + "4700410": "Large Shield _ one hand close -- 大型盾_片手近距離", + "4700420": "Large Shield _ both hands close -- 大型盾_両手近距離", + "4700430": "Large Shield _ one handed guard -- 大型盾_片手ガード", + "4700440": "Large Shield _ two-handed guard -- 大型盾_両手ガード", + "4700520": "Large Shield _ one-handed Dash -- 大型盾_片手ダッシュ", + "4700521": "Large Shield _ One handed dash _ Dash -- 大型盾_片手ダッシュ_ダッシュ中", + "4700530": "Large shield _ both hands dash -- 大型盾_両手ダッシュ", + "4700531": "Large shield _ Both hands dash _ Dash -- 大型盾_両手ダッシュ_ダッシュ中", + "4700540": "Large Shield _ one hand step before -- 大型盾_片手ステップ前", + "4700580": "Large Shield _ Two hands before step -- 大型盾_両手ステップ前", + "4700600": "Large Shields _ Parigard -- 大型盾_パリィガード", + "4700601": "Large Shield _ General range -- 大型盾_汎用範囲", + "4700610": "Large Shield _ behind the transition -- 大型盾_背後遷移", + "4702100": "[126] Wheel _ one-handed entertainment 1 -- 【126】車輪_片手タメ1", + "4702110": "[126] Wheel _ one-handed Entertainment 2 -- 【126】車輪_片手タメ2", + "4702300": "[126] Wheels _ two-handed entertainment 1 -- 【126】車輪_両手タメ1", + "4702310": "[126] Wheels _ two-handed Entertainment 2 -- 【126】車輪_両手タメ2", + "4800000": "Shield _ one hand usually 1 -- 盾_片手通常1", + "4800010": "Shield _ one hand usually two -- 盾_片手通常2", + "4800020": "Shields _ one hand usually three -- 盾_片手通常3", + "4800030": "Shield _ One handed jump -- 盾_片手ジャンプ1", + "4800040": "Shield _ one-handed fall loop -- 盾_片手落下ループ", + "4800050": "Shield _ one-handed fall landing -- 盾_片手落下着地", + "4800100": "Shield _ one-handed entertainment 1 -- 盾_片手タメ1", + "4800110": "Shield _ one-handed Entertainment 2 -- 盾_片手タメ2", + "4800200": "Shield _ Two hands usually one -- 盾_両手通常1", + "4800210": "Shield _ Two hands usually 2 -- 盾_両手通常2", + "4800220": "Shields _ Two hands usually three -- 盾_両手通常3", + "4800230": "Shield _ two-handed jump 1 -- 盾_両手ジャンプ1", + "4800240": "Shield _ two-handed fall loop -- 盾_両手落下ループ", + "4800250": "Shield _ two-handed fall landing -- 盾_両手落下着地", + "4800300": "Shield _ two-handed entertainment 1 -- 盾_両手タメ1", + "4800301": "Shield _ two-handed 1_ Dash -- 盾_両手タメ1_ダッシュ中", + "4800310": "Shield _ two-handed Entertainment 2 -- 盾_両手タメ2", + "4800400": "Shield _ Left Hand -- 盾_左手", + "4800410": "Shield _ one hand close -- 盾_片手近距離", + "4800420": "Shield _ both hands close -- 盾_両手近距離", + "4800430": "Shield _ One handed guard -- 盾_片手ガード", + "4800440": "Shield _ Both hands guard -- 盾_両手ガード", + "4800450": "Shields _ Paris -- 盾_パリィ", + "4800520": "Shield _ one-handed Dash -- 盾_片手ダッシュ", + "4800521": "Shields _ one-handed dash _ in dash -- 盾_片手ダッシュ_ダッシュ中", + "4800530": "Shield _ both hands dash -- 盾_両手ダッシュ", + "4800531": "Shields _ Both hands dash _ in Dash -- 盾_両手ダッシュ_ダッシュ中", + "4800540": "Shield _ one hand step before -- 盾_片手ステップ前", + "4800580": "Shield _ Two hands before step -- 盾_両手ステップ前", + "4800600": "Shields _ Parigard -- 盾_パリィガード", + "4800610": "Shield behind transition -- 盾_背後遷移", + "4800780": "Shield _ Blown attack -- 盾_吹き飛ばし攻撃", + "4802100": "[92] Crystal Ring Shield _ one-handed entertainment 1 -- 【92】水晶輪の盾_片手タメ1", + "4802110": "[92] Crystal Ring Shield _ one-handed Entertainment 2 -- 【92】水晶輪の盾_片手タメ2", + "4802120": "[92] Crystal Ring Shield _ one-handed Entertainment 1/Magic Sword Trigger -- 【92】水晶輪の盾_片手タメ1/魔法剣発動時", + "4802130": "[92] Crystal Ring Shield _ one-handed Entertainment 2/Magic Sword Trigger -- 【92】水晶輪の盾_片手タメ2/魔法剣発動時", + "4802300": "[92] Crystal Ring Shield _ two-handed entertainment 1 -- 【92】水晶輪の盾_両手タメ1", + "4802310": "[92] Crystal Ring Shield _ two-handed Entertainment 2 -- 【92】水晶輪の盾_両手タメ2", + "4802320": "[92] Crystal Ring Shield _ two-handed One/magic sword trigger -- 【92】水晶輪の盾_両手タメ1/魔法剣発動時", + "4802330": "[92] Crystal Ring Shield _ two-handed 2/magic Sword Trigger -- 【92】水晶輪の盾_両手タメ2/魔法剣発動時", + "4802400": "[92] Crystal ring Shield _ left hand -- 【92】水晶輪の盾_左手", + "4802405": "[92] Crystal ring Shield _ left Hand/Magic Sword Trigger -- 【92】水晶輪の盾_左手/魔法剣発動時", + "4802800": "[92] Crystal Ring Shield _ Magic Sword -- 【92】水晶輪の盾_魔法剣", + "4803000": "[93] Spike _ one hand usually 1 -- 【93】スパイク_片手通常1", + "4803010": "[93] Spikes _ one hand usually two -- 【93】スパイク_片手通常2", + "4803020": "[93] Spike _ one hand usually three -- 【93】スパイク_片手通常3", + "4803030": "[93] Spike _ one-handed jump 1 -- 【93】スパイク_片手ジャンプ1", + "4803040": "[93] Spike _ one-handed fall loop -- 【93】スパイク_片手落下ループ", + "4803050": "[93] Spike _ one-handed fall landing -- 【93】スパイク_片手落下着地", + "4803100": "[93] Spike _ one-handed entertainment 1 -- 【93】スパイク_片手タメ1", + "4803110": "[93] Spike _ one-handed Entertainment 2 -- 【93】スパイク_片手タメ2", + "4803200": "[93] Spike _ both hands usually one -- 【93】スパイク_両手通常1", + "4803210": "[93] Spike _ Two hands usually 2 -- 【93】スパイク_両手通常2", + "4803220": "[93] Spike _ Two hands usually three -- 【93】スパイク_両手通常3", + "4803230": "[93] Spike _ two-handed jump 1 -- 【93】スパイク_両手ジャンプ1", + "4803240": "[93] Spike _ Both hands Fall loop -- 【93】スパイク_両手落下ループ", + "4803250": "[93] Spike _ Two-handed fall landing -- 【93】スパイク_両手落下着地", + "4803300": "[93] Spike _ two-handed entertainment 1 -- 【93】スパイク_両手タメ1", + "4803301": "[93] Spike _ two-handed 1_ Dash -- 【93】スパイク_両手タメ1_ダッシュ中", + "4803310": "[93] Spike _ two-handed Entertainment 2 -- 【93】スパイク_両手タメ2", + "4803400": "[93] Spike _ Left hand -- 【93】スパイク_左手", + "4803410": "[93] Spike _ one hand close -- 【93】スパイク_片手近距離", + "4803420": "[93] Spikes _ both hands close -- 【93】スパイク_両手近距離", + "4803430": "[93] Spike _ one-handed guard -- 【93】スパイク_片手ガード", + "4803440": "[93] Spike _ Both hands guard -- 【93】スパイク_両手ガード", + "4803450": "[93] Spike _ Paris -- 【93】スパイク_パリィ", + "4803520": "[93] Spike _ one-handed Dash -- 【93】スパイク_片手ダッシュ", + "4803521": "[93] Spike _ one-handed dash _ in dash -- 【93】スパイク_片手ダッシュ_ダッシュ中", + "4803530": "[93] Spike _ both hands dash -- 【93】スパイク_両手ダッシュ", + "4803531": "[93] Spike _ Both hands dash _ Dash -- 【93】スパイク_両手ダッシュ_ダッシュ中", + "4803540": "[93] Spike _ one hand step before -- 【93】スパイク_片手ステップ前", + "4803580": "[93] Spike _ two-handed step before -- 【93】スパイク_両手ステップ前", + "4803600": "[93] Spike _ Parigard -- 【93】スパイク_パリィガード", + "4900400": "Torch _ Left Hand -- 松明_左手", + "5000000": "Sickle _ one hand usually 1 -- 鎌_片手通常1", + "5000010": "Sickle _ one hand usually two -- 鎌_片手通常2", + "5000020": "Sickle _ one hand usually three -- 鎌_片手通常3", + "5000030": "Sickle _ One handed jump -- 鎌_片手ジャンプ1", + "5000040": "Sickle _ One handed fall loop -- 鎌_片手落下ループ", + "5000050": "Sickle _ one-handed fall landing -- 鎌_片手落下着地", + "5000100": "Sickle _ one-handed entertainment 1 -- 鎌_片手タメ1", + "5000105": "Sickle _ one-handed 1_ maximum -- 鎌_片手タメ1_最大", + "5000110": "Sickle _ one-handed Entertainment 2 -- 鎌_片手タメ2", + "5000115": "Sickle _ one-handed 2_ maximum -- 鎌_片手タメ2_最大", + "5000200": "Sickle _ Two hands usually one -- 鎌_両手通常1", + "5000210": "Sickle _ Two Hands usually 2 -- 鎌_両手通常2", + "5000220": "Sickle _ Two hands usually three -- 鎌_両手通常3", + "5000230": "Sickle _ two-handed jump -- 鎌_両手ジャンプ1", + "5000240": "Sickle _ two-handed fall loop -- 鎌_両手落下ループ", + "5000250": "Sickle _ two-handed fall landing -- 鎌_両手落下着地", + "5000300": "Sickle _ two-handed entertainment 1 -- 鎌_両手タメ1", + "5000305": "Sickle _ two-handed 1_ Max -- 鎌_両手タメ1_最大", + "5000310": "Sickle _ two-handed Entertainment 2 -- 鎌_両手タメ2", + "5000315": "Sickle _ two-handed 2_ Max -- 鎌_両手タメ2_最大", + "5000400": "Sickle _ Left Hand -- 鎌_左手", + "5000410": "Sickle _ one hand close -- 鎌_片手近距離", + "5000420": "Sickle _ Both hands close -- 鎌_両手近距離", + "5000430": "Sickle _ One handed guard -- 鎌_片手ガード", + "5000440": "Sickle _ Both hands guard -- 鎌_両手ガード", + "5000450": "Sickle _ Paris -- 鎌_パリィ", + "5000470": "Sickle _ Large Throw -- 鎌_大型投げ", + "5000490": "Sickle _ Fall Throw -- 鎌_落下投げ", + "5000500": "Behind the Sickle -- 鎌_背後", + "5000505": "Sickle _ Reinforced behind -- 鎌_強化背後", + "5000510": "Sickle _ after Paris -- 鎌_パリィ後", + "5000515": "Paris after strengthening sickle -- 鎌_強化パリィ後", + "5000516": "Sickle _ After strengthening Paris _ two -- 鎌_強化パリィ後_二段目", + "5000520": "Sickle _ one-handed Dash -- 鎌_片手ダッシュ", + "5000530": "Sickle _ Both hands dash -- 鎌_両手ダッシュ", + "5000540": "Sickle _ one hand step before -- 鎌_片手ステップ前", + "5000580": "Sickle _ hands before step -- 鎌_両手ステップ前", + "5000600": "Sickle _ Parigard -- 鎌_パリィガード", + "5001000": "Sickle _ one hand usually 1 (stick) -- 鎌_片手通常1(棒)", + "5001010": "Sickle _ one hand usually 2 (stick) -- 鎌_片手通常2(棒)", + "5001020": "Sickle _ one hand usually 3 (stick) -- 鎌_片手通常3(棒)", + "5001030": "Sickle _ one-handed jump 1 (stick) -- 鎌_片手ジャンプ1(棒)", + "5001040": "Sickle _ One handed Fall loop (stick) -- 鎌_片手落下ループ(棒)", + "5001050": "Sickle _ one-handed fall landing (rod) -- 鎌_片手落下着地(棒)", + "5001100": "Sickle _ one-handed entertainment 1 (stick) -- 鎌_片手タメ1(棒)", + "5001105": "Sickle _ one-handed 1_ max (stick) -- 鎌_片手タメ1_最大(棒)", + "5001110": "Sickle _ one hand Entertainment 2 (stick) -- 鎌_片手タメ2(棒)", + "5001115": "Sickle _ one-handed 2_ max (stick) -- 鎌_片手タメ2_最大(棒)", + "5001200": "Sickle _ Two Hands usually 1 (stick) -- 鎌_両手通常1(棒)", + "5001210": "Sickle _ Two Hands usually 2 (stick) -- 鎌_両手通常2(棒)", + "5001220": "Sickle _ Two Hands usually 3 (stick) -- 鎌_両手通常3(棒)", + "5001230": "Sickle _ two-handed jump 1 (stick) -- 鎌_両手ジャンプ1(棒)", + "5001240": "Sickle _ two-handed fall loop (rod) -- 鎌_両手落下ループ(棒)", + "5001250": "Sickle _ two-handed fall landing (rod) -- 鎌_両手落下着地(棒)", + "5001300": "Sickle _ two-handed Entertainment 1 (stick) -- 鎌_両手タメ1(棒)", + "5001305": "Sickle _ two-handed 1_ max (stick) -- 鎌_両手タメ1_最大(棒)", + "5001310": "Sickle _ two-handed Entertainment 2 (stick) -- 鎌_両手タメ2(棒)", + "5001315": "Sickle _ two-handed 2_ max (stick) -- 鎌_両手タメ2_最大(棒)", + "5001410": "Sickle _ one hand short distance (stick) -- 鎌_片手近距離(棒)", + "5001420": "Sickle _ Both hands short distance (stick) -- 鎌_両手近距離(棒)", + "5001430": "Sickle _ one-handed guard (stick) -- 鎌_片手ガード(棒)", + "5001440": "Sickle _ Two-handed guard (stick) -- 鎌_両手ガード(棒)", + "5001450": "Sickle _ Paris (stick) -- 鎌_パリィ(棒)", + "5001470": "Sickle _ Large throw (stick) -- 鎌_大型投げ(棒)", + "5001490": "Sickle _ Fall Throw (stick) -- 鎌_落下投げ(棒)", + "5001500": "Sickle _ Behind (stick) -- 鎌_背後(棒)", + "5001505": "Sickle _ Reinforced behind (stick) -- 鎌_強化背後(棒)", + "5001510": "Sickle _ Paris (stick) -- 鎌_パリィ後(棒)", + "5001515": "Sickle _ After strengthening Paris (bar) -- 鎌_強化パリィ後(棒)", + "5001516": "Sickle _ After strengthening Paris _ Two (bar) -- 鎌_強化パリィ後_二段目(棒)", + "5001520": "Sickle _ one-handed dash (stick) -- 鎌_片手ダッシュ(棒)", + "5001530": "Sickle _ both hands dash (stick) -- 鎌_両手ダッシュ(棒)", + "5001540": "Sickle _ one hand step before (stick) -- 鎌_片手ステップ前(棒)", + "5001580": "Sickle _ two-handed step before (stick) -- 鎌_両手ステップ前(棒)", + "5001600": "Sickle _ Parigard (stick) -- 鎌_パリィガード(棒)", + "5100000": "A single hand usually one sword -- 大曲剣_片手通常1", + "5100001": "One-handed sword _ usually 1_ range -- 大曲剣_片手通常1_範囲", + "5100010": "One-handed sword _ usually two -- 大曲剣_片手通常2", + "5100020": "One-handed sword _ usually three -- 大曲剣_片手通常3", + "5100030": "One-handed Jump 1 -- 大曲剣_片手ジャンプ1", + "5100040": "One-handed Fall loop -- 大曲剣_片手落下ループ", + "5100050": "One-handed fall landing -- 大曲剣_片手落下着地", + "5100100": "One-handed Entertainment 1 -- 大曲剣_片手タメ1", + "5100105": "One-handed 1_ Max -- 大曲剣_片手タメ1_最大", + "5100110": "One-handed Entertainment 2 -- 大曲剣_片手タメ2", + "5100115": "One-handed 2_ Max -- 大曲剣_片手タメ2_最大", + "5100200": "Two-handed sword _ usually one -- 大曲剣_両手通常1", + "5100210": "One-handed sword _ two hands usually -- 大曲剣_両手通常2", + "5100220": "Masterpiece Sword _ Two hands usually three -- 大曲剣_両手通常3", + "5100230": "Two-handed jump one sword -- 大曲剣_両手ジャンプ1", + "5100240": "Two-handed Fall loop -- 大曲剣_両手落下ループ", + "5100250": "Two-handed fall landing -- 大曲剣_両手落下着地", + "5100300": "A sword with two hands -- 大曲剣_両手タメ1", + "5100305": "Masterpiece Sword _ two-handed 1_ Max -- 大曲剣_両手タメ1_最大", + "5100310": "A sword with two hands -- 大曲剣_両手タメ2", + "5100315": "Masterpiece Sword _ two-handed 2_ Max -- 大曲剣_両手タメ2_最大", + "5100400": "The left hand -- 大曲剣_左手", + "5100410": "One-handed Sword -- 大曲剣_片手近距離", + "5100420": "Two-handed Sword -- 大曲剣_両手近距離", + "5100430": "One-handed guard -- 大曲剣_片手ガード", + "5100440": "A masterpiece Sword _ two handed guards -- 大曲剣_両手ガード", + "5100450": "A Paris Sword -- 大曲剣_パリィ", + "5100470": "A large throw -- 大曲剣_大型投げ", + "5100490": "A cast sword _ a falling throw -- 大曲剣_落下投げ", + "5100500": "Behind the Sword -- 大曲剣_背後", + "5100501": "Behind the Sword _ the second hammer -- 大曲剣_背後_二撃目", + "5100505": "A masterpiece behind the reinforcement -- 大曲剣_強化背後", + "5100506": "Two Sword _ Reinforced behind _ -- 大曲剣_強化背後_二段目", + "5100510": "Paris after the sword -- 大曲剣_パリィ後", + "5100511": "A Paris Sword _ second Hammer -- 大曲剣_パリィ後_二撃目", + "5100515": "A Paris after strengthening the sword -- 大曲剣_強化パリィ後", + "5100516": "A-Paris Sword _ after strengthening two -- 大曲剣_強化パリィ後_二段目", + "5100517": "A-Paris Sword _ after strengthening Sandanme -- 大曲剣_強化パリィ後_三段目", + "5100520": "One-handed Dash -- 大曲剣_片手ダッシュ", + "5100530": "Two-handed Dash -- 大曲剣_両手ダッシュ", + "5100540": "One hand step before the sword -- 大曲剣_片手ステップ前", + "5100580": "Two-handed sword before step -- 大曲剣_両手ステップ前", + "5100600": "A Parigard Sword -- 大曲剣_パリィガード", + "5100610": "Behind the transition -- 大曲剣_背後遷移", + "5100615": "The behind-the-back transition _ missed -- 大曲剣_背後遷移_空振り", + "5100700": "Masterpiece: the first half -- 大曲剣_回転:前半", + "5100710": "A Nagi-Spinning sword -- 大曲剣_回転なぎ払い", + "5100720": "Masterpiece Sword _ Spinning slams -- 大曲剣_回転叩きつけ", + "5101100": "[116] Tomb King Song Sword _ one-handed entertainment 1 -- 【116】墓王の曲剣_片手タメ1", + "5101110": "[116] Tomb King Song Sword _ one-handed Entertainment 2 -- 【116】墓王の曲剣_片手タメ2", + "5101300": "[116] Tomb King Song Sword _ two-handed entertainment 1 -- 【116】墓王の曲剣_両手タメ1", + "5101310": "[116] Tomb King Song Sword _ two-handed Entertainment 2 -- 【116】墓王の曲剣_両手タメ2" + }, + "AttackElementCorrectParam": {}, + "BehaviorParam": { + "0": "For testing -- テスト用", + "5": "Disabled behavior [System] -- 無効行動【システム】", + "7": "Pc_sossign [System] -- PC_SOSsign【システム】", + "12": "Kickout [System] -- kickout【システム】", + "13": "Leavesession [System] -- leaveSession【システム】", + "15": "Black_soulsign [System] -- Black_Soulsign【システム】", + "16": "Intrusion System -- 乱入【システム】", + "17": "Bloodsign [System] -- bloodSign【システム】", + "50": "Bonfire effect -- かがり火効果", + "101": "Ghost weakening [System] -- ゴースト弱体化【システム】", + "102": "Black reinforcement [System] -- ブラック強化【システム】", + "201": "【 QWC 】 Area _npc_ + 1 -- 【QWC】エリア_NPC_+1", + "202": "【 QWC 】 Area _npc_ + 2 -- 【QWC】エリア_NPC_+2", + "203": "【 QWC 】 Area _npc_ + 3 -- 【QWC】エリア_NPC_+3", + "206": "【 QWC 】 Area _npc_-1 -- 【QWC】エリア_NPC_-1", + "207": "【 QWC 】 Area _NPC_-2 -- 【QWC】エリア_NPC_-2", + "208": "【 QWC 】 Area _NPC_-3 -- 【QWC】エリア_NPC_-3", + "211": "[QWC] Area _ black _ + 1 -- 【QWC】エリア_ブラック_+1", + "212": "[QWC] Area _ black _ + 2 -- 【QWC】エリア_ブラック_+2", + "221": "[QWC] Area _ white _ + 1 -- 【QWC】エリア_ホワイト_+1", + "222": "[QWC] Area _ white _ + 2 -- 【QWC】エリア_ホワイト_+2", + "231": "[QWC] Area _ gray _ + 1 -- 【QWC】エリア_グレイ_+1", + "232": "[QWC] Area _ gray _ + 2 -- 【QWC】エリア_グレイ_+2", + "236": "[QWC] Area _ gray _-1 -- 【QWC】エリア_グレイ_-1", + "237": "[QWC] Area _ gray _-2 -- 【QWC】エリア_グレイ_-2", + "311": "[QWC] Player _ black _ + 1 -- 【QWC】プレイヤー_ブラック_+1", + "312": "[QWC] Player _ black _ + 2 -- 【QWC】プレイヤー_ブラック_+2", + "321": "[QWC] Player _ white _ + 1 -- 【QWC】プレイヤー_ホワイト_+1", + "322": "[QWC] Player _ white _ + 2 -- 【QWC】プレイヤー_ホワイト_+2", + "331": "[QWC] Player _ gray _ + 1 -- 【QWC】プレイヤー_グレイ_+1", + "332": "[QWC] Player _ gray _ + 2 -- 【QWC】プレイヤー_グレイ_+2", + "336": "[QWC] Player _ gray _-1 -- 【QWC】プレイヤー_グレイ_-1", + "337": "[QWC] Player _ gray _-2 -- 【QWC】プレイヤー_グレイ_-2", + "1000": "Behavior ID for scales of butterfly poison in caries (for bullet generation from special effects) -- 蝕の蝶毒の鱗粉用行動ID(特殊効果から弾丸発生用)", + "1010": "C1310_ Dark Knight Beast: Action ID for cold air (for freezing) -- c1310_ダークナイトビースト:冷気用行動ID(凍結用)", + "1011": "C1310_ Dark Knight Beast: Action ID for cold air (for decal) -- c1310_ダークナイトビースト:冷気用行動ID(デカール用)", + "1020": "C5240_ Moonlight Witches _ Torches -- c5240_月光の魔女_松明", + "1030": "C5220_ Cardinal _ Curse -- c5220_枢機卿団_呪詛", + "1040": "C2240_ Full Armor Beast: Action ID for cold air (for decal) -- c2240_フルアーマー獣:冷気用行動ID(デカール用)", + "1050": "c3140_ (Ojo 1) _ Dripping (for decal) -- c3140_ヘルカイト(王城1)_蝕ポタポタ(デカール用)", + "1060": "c5120_ Snake Spirits: caries reservoir bullets -- c5120_蛇霊:蝕溜まり弾丸", + "3000": "Common attack [feet, large damage, human type] -- 共通攻撃【足元・大ダメージ・人型】", + "3001": "Common attack [center, large damage, human type] -- 共通攻撃【中心・大ダメージ・人型】", + "3002": "Common attack [feet, small damage, human type] -- 共通攻撃【足元・小ダメージ・人型】", + "3003": "Common attack [Center, small damage, human type] -- 共通攻撃【中心・小ダメージ・人型】", + "3010": "Common attack [Center, no damage, human type] -- 共通攻撃【中心・ダメージなし・人型】", + "3011": "Common attack [back, no damage, human type] -- 共通攻撃【背中・ダメージなし・人型】", + "3012": "Common attack [belly, no damage, human type] -- 共通攻撃【お腹・ダメージなし・人型】", + "3013": "Common attack [step, no damage, human type] -- 共通攻撃【足元・ダメージなし・人型】", + "3020": "Common attack [right hand, ladder damage, human type] -- 共通攻撃【右手・梯子ダメージ・人型】", + "3021": "Common attack [left hand, ladder damage, human type] -- 共通攻撃【左手・梯子ダメージ・人型】", + "3022": "Common attack [right foot, ladder damage, human type] -- 共通攻撃【右足・梯子ダメージ・人型】", + "3023": "Common attack [left leg, ladder damage, human type] -- 共通攻撃【左足・梯子ダメージ・人型】", + "3100": "Common attack [feet, large damage, large] -- 共通攻撃【足元・大ダメージ・大型】", + "3101": "Common attack [center, large damage, large] -- 共通攻撃【中心・大ダメージ・大型】", + "3102": "Common attack [feet, small damage, large] -- 共通攻撃【足元・小ダメージ・大型】", + "3103": "Common attack [Center, small damage, large] -- 共通攻撃【中心・小ダメージ・大型】", + "3110": "Common attack [Center, no damage, large] -- 共通攻撃【中心・ダメージなし・大型】", + "3111": "Common attack [back, no damage, large] -- 共通攻撃【背中・ダメージなし・大型】", + "3112": "Common attack [belly, no damage, large] -- 共通攻撃【お腹・ダメージなし・大型】", + "3113": "Common attack [foot, no damage, large] -- 共通攻撃【足元・ダメージなし・大型】", + "3120": "Common attack [right, small damage, large] -- 共通攻撃【右手・小ダメージ・大型】", + "3121": "Common attack [left, small damage, large] -- 共通攻撃【左手・小ダメージ・大型】", + "3122": "Common attack [right leg, small damage, large] -- 共通攻撃【右足・小ダメージ・大型】", + "3123": "Common attack [left leg, small damage, large] -- 共通攻撃【左足・小ダメージ・大型】", + "3130": "Common attack [right hand, no damage, large] -- 共通攻撃【右手・ダメージなし・大型】", + "3131": "Common attack [left hand, no damage, large] -- 共通攻撃【左手・ダメージなし・大型】", + "3132": "Common attack [right leg, no damage, large] -- 共通攻撃【右足・ダメージなし・大型】", + "3133": "Common attack [left foot, no damage, large] -- 共通攻撃【左足・ダメージなし・大型】", + "5100": "Ojo 1 Ball of caries -- 蝕の王城1 大玉", + "5110": "Ojo 1 Bonfires of caries -- 蝕の王城1 焚火", + "5120": "Ojo 1 carpet Flame of caries -- 蝕の王城1 絨毯の炎", + "5200": "Ojo 3 Exploding Ghosts of caries -- 蝕の王城3 爆発する幽霊", + "5800": "Waste City Bow and arrow -- 廃都 弓矢", + "5801": "Waste City Bow and arrow -- 廃都 弓矢", + "5900": "Dungeon Objects _ Magic -- 地下牢 器オブジェ_魔法", + "7000": "Exploding Tal -- 爆発するタル", + "9900": "FDP proto-oil jar (throwing) -- FDPプロト 油壷(投擲)", + "9902": "FDP proto-oil jar (OBJ) -- FDPプロト 油壺(Obj)", + "9910": "FDP Proto Flame Bottle -- FDPプロト 火炎瓶", + "9930": "FDP proto-Flame damage -- FDPプロト 炎上ダメージ", + "9950": "FDP Concept edition combustion test -- FDPコンセプト版 燃焼テスト", + "31200": "Sacred Beast of c3120_ Forest: Common Attack _ underfoot -- c3120_森の霊獣:共通攻撃_足元", + "51800": "Common attack [Butt dragged/c5180 cursed Colossus] -- 共通攻撃【尻引きずり・c5180呪われた巨像】", + "52700": "Common attack [Movement (right leg)/c5270 tracker] -- 共通攻撃【移動(右脚)・c5270追跡者】", + "52701": "Common attack [movement (left leg)/c5270 tracker] -- 共通攻撃【移動(左脚)・c5270追跡者】", + "210700010": "c1070_ new Skeleton: Song Sword _ slashing One -- c1070_新スケルトン:曲剣_斬撃1", + "210700020": "c1070_ new Skeleton: Song Sword _ slashing 2 -- c1070_新スケルトン:曲剣_斬撃2", + "210700030": "c1070_ new Skeleton: Song Sword _ slashing 3 -- c1070_新スケルトン:曲剣_斬撃3", + "210700040": "c1070_ new Skeleton: Song Sword _ strong Slash -- c1070_新スケルトン:曲剣_強斬り", + "210700050": "c1070_ new Skeleton: Song Sword _ Spinning attack -- c1070_新スケルトン:曲剣_回転攻撃", + "210700060": "c1070_ new Skeleton: Song Sword _ Back step slash -- c1070_新スケルトン:曲剣_バックステップ斬り", + "210700070": "c1070_ new Skeleton: Song Sword _ the first stage -- c1070_新スケルトン:曲剣_助走斬り(一段目)", + "210700080": "c1070_ new Skeleton: Song Sword _ the Two -- c1070_新スケルトン:曲剣_助走斬り(二段目)", + "210700090": "c1070_ New skeleton: A song to throw a sword -- c1070_新スケルトン:曲剣_投げる", + "210700100": "c1070_ new Skeleton: Song Sword _ Song Sword 3 Step slashing (1 ~ two) -- c1070_新スケルトン:曲剣_曲剣 3段斬撃(一~二段目)", + "210700110": "c1070_ new Skeleton: Song Sword _ Song Sword 3 Step Slashing (SANDANME) -- c1070_新スケルトン:曲剣_曲剣 3段斬撃(三段目)", + "210700120": "c1070_ New skeleton: A masterpiece Sword _ slashing One -- c1070_新スケルトン:大曲剣_斬撃1", + "210700130": "c1070_ new Skeleton: Masterpiece Sword _ slashing 2 -- c1070_新スケルトン:大曲剣_斬撃2", + "210700140": "c1070_ New skeleton: A masterpiece Sword _ slashing Three -- c1070_新スケルトン:大曲剣_斬撃3", + "210700150": "c1070_ new skeleton: a sword -- c1070_新スケルトン:大曲剣_強斬り", + "210700160": "c1070_ New skeleton: A masterpiece Sword _ Nagi ① -- c1070_新スケルトン:大曲剣_なぎ払い①", + "210700170": "c1070_ New skeleton: A masterpiece Sword _ Nagi ② -- c1070_新スケルトン:大曲剣_なぎ払い②", + "210700180": "c1070_ New skeleton: A masterpiece Sword _ a dive attack -- c1070_新スケルトン:大曲剣_飛び込み攻撃", + "210700190": "c1070_ New skeleton: A masterpiece Sword _ a dive attack (long distance) -- c1070_新スケルトン:大曲剣_飛び込み攻撃(長距離)", + "210700200": "c1070_ new skeleton: A sword in the first stage -- c1070_新スケルトン:大曲剣_助走斬り(一段目)", + "210700210": "c1070_ new skeleton: A sword in the two -- c1070_新スケルトン:大曲剣_助走斬り(二段目)", + "210700220": "c1070_ new skeleton: Boat Sword -- c1070_新スケルトン:大曲剣_いなし斬り", + "210700230": "c1070_ new Skeleton: Masterpiece Sword _ Bow Fire -- c1070_新スケルトン:大曲剣_弓射撃", + "210700240": "c1070_ new skeleton: A sword with an arrow -- c1070_新スケルトン:大曲剣_矢で刺す", + "210700500": "c1070_ new skeleton: to guard -- c1070_新スケルトン:ガードする", + "210700510": "c1070_ New skeleton: Paridamage -- c1070_新スケルトン:パリィダメージ", + "210700520": "c1070_ New skeleton: Paris -- c1070_新スケルトン:パリィする", + "210900010": "c1090: Dead Soldier: Segunda _ crushing Combo in arms 1-1 -- c1090:亡者兵士:グンダ状態_腕で叩き潰す コンボ1-1", + "210900020": "c1090: Dead Soldier: Segunda State _ bite with consecutive 1_ head combo 2-1 -- c1090:亡者兵士:グンダ状態_連続で噛み付く1_頭 コンボ2-1", + "210900021": "c1090: Dead Soldier: Segunda State _ bit _ throwing damage -- c1090:亡者兵士:グンダ状態_噛み付き_投げダメージ", + "210900022": "c1090: Dead Soldier: Segunda State _ Bite 1_ Neck combo 2-1 in succession -- c1090:亡者兵士:グンダ状態_連続で噛み付く1_首 コンボ2-1", + "210900030": "c1090: Dead Soldier: Segunda State _ rampage on the spot -- c1090:亡者兵士:グンダ状態_その場で大暴れ", + "210900040": "c1090: Dead Soldier: Segunda State _ Saigi: Arms _ Arms Combo 1-2 -- c1090:亡者兵士:グンダ状態_薙ぎ払い:腕_腕 コンボ1-2", + "210900041": "c1090: Dead Soldier: Segunda State _ Saigi: Arms _ head Combo 1-2 -- c1090:亡者兵士:グンダ状態_薙ぎ払い:腕_頭 コンボ1-2", + "210900042": "c1090: Dead Soldier: Segunda State _ Saigi: Arms _ Neck Combo 1-2 -- c1090:亡者兵士:グンダ状態_薙ぎ払い:腕_首 コンボ1-2", + "210900050": "c1090: Dead Soldier: Segunda State _ Face Attack _ Head combo 1-3 -- c1090:亡者兵士:グンダ状態_顔攻撃_頭 コンボ1-3", + "210900051": "c1090: Dead Soldier: Segunda State _ Face Attack _ Neck combo 1-3 -- c1090:亡者兵士:グンダ状態_顔攻撃_首 コンボ1-3", + "210900060": "c1090: Dead Soldier: Segunda State _ bite with consecutive 2_ head combo 2-1 -- c1090:亡者兵士:グンダ状態_連続で噛み付く2_頭 コンボ2-1", + "210900061": "c1090: Dead Soldier: Segunda State _ Bite 2_ Neck combo 2-1 in succession -- c1090:亡者兵士:グンダ状態_連続で噛み付く2_首 コンボ2-1", + "210900070": "c1090: Dead Soldier: Segunda _ rushes _ head -- c1090:亡者兵士:グンダ状態_突進_頭", + "210900071": "c1090: Dead Soldier: Segunda _ lunge _ Arms -- c1090:亡者兵士:グンダ状態_突進_腕", + "210900080": "c1090: Dead Soldier: Segunda State _ behind attack -- c1090:亡者兵士:グンダ状態_背後攻撃", + "210900100": "c1090: Dead Soldier: Segunda State _ Segunda comes out _ head -- c1090:亡者兵士:グンダ状態_グンダが出てくる_頭", + "210900101": "c1090: Dead Soldier: Segunda State _ Segunda comes out _ arms -- c1090:亡者兵士:グンダ状態_グンダが出てくる_腕", + "210900102": "c1090: Dead Soldier: Segunda State _ Segunda comes out _ tails -- c1090:亡者兵士:グンダ状態_グンダが出てくる_尻尾", + "211000100": "C1100_ dead Soldiers _ Straight Swords _ right-hand swing -- c1100_亡者兵士_直剣_右手振り下ろし", + "211000101": "C1100_ dead Soldiers _ Straight Swords _ right-hand crosscut -- c1100_亡者兵士_直剣_右手切り返し", + "211000102": "C1100_ dead Soldiers _ Straight Swords _ right-hand thrusts (swords) -- c1100_亡者兵士_直剣_右手突き(剣)", + "211000110": "C1100_ dead Soldiers _ Straight Swords _ dash thrusts -- c1100_亡者兵士_直剣_ダッシュ突き", + "211000120": "C1100_ dead Soldiers _ straight swords _ shields pushed -- c1100_亡者兵士_直剣_盾プッシュ", + "211000130": "C1100_ dead Soldier _ Straight Sword _ two-handed slash -- c1100_亡者兵士_直剣_両手斬り", + "211000140": "C1100_ dead Soldiers _ straight Swords _ poked -- c1100_亡者兵士_直剣_突き", + "211000150": "C1100_ dead Soldiers _ Straight Swords _ Reversed this morning -- c1100_亡者兵士_直剣_逆けさ連続斬り", + "211000151": "C1100_ dead Soldiers _ Straight Swords _ reverse this morning's second row -- c1100_亡者兵士_直剣_逆けさ連続斬り 2段目", + "211000200": "C1100_ Dead Soldier _ spear _ poked combo first Hammer -- c1100_亡者兵士_槍_突きコンボ初撃", + "211000201": "C1100_ Dead Soldier _ spear _ thrusting combo second firing -- c1100_亡者兵士_槍_突きコンボ2撃目", + "211000210": "C1100_ Dead Soldiers _ spears _ infuser Thrusts -- c1100_亡者兵士_槍_溜め突き", + "211000220": "C1100_ Dead Soldiers _ spears _ Nagi -- c1100_亡者兵士_槍_なぎ払い", + "211000230": "C1100_ Dead Soldiers _ spears _ dash Thrusts -- c1100_亡者兵士_槍_ダッシュ突き", + "211000240": "C1100_ Dead Soldiers _ spear _ shields Push -- c1100_亡者兵士_槍_盾プッシュ", + "211000241": "C1100_ Dead Soldiers _ spear _ Shield Push _ Accelerated part -- c1100_亡者兵士_槍_盾プッシュ_加速部分", + "211000250": "C1100_ Dead Soldiers _ spears _ Lash One -- c1100_亡者兵士_槍_ラッシュ1", + "211000251": "C1100_ Dead Soldiers _ spears _ Rush 2 -- c1100_亡者兵士_槍_ラッシュ2", + "211000252": "C1100_ Dead Soldiers _ spears _ Rush 3 -- c1100_亡者兵士_槍_ラッシュ3", + "211000300": "C1100_ dead Soldier _ Broken Straight Sword _ right hand swing down -- c1100_亡者兵士_折れた直剣_右手振り下ろし", + "211000310": "C1100_ dead soldiers _ Broken Straight swords _ left Kesa -- c1100_亡者兵士_折れた直剣_左袈裟", + "211000320": "C1100_ dead soldiers _ Broken Straight swords _ handle Beats -- c1100_亡者兵士_折れた直剣_柄殴り", + "211000330": "C1100_ dead soldiers _ Broken Straight Swords _ rush first Stage -- c1100_亡者兵士_折れた直剣_ラッシュ1段目", + "211000331": "C1100_ dead soldiers _ Broken Straight Swords _ rush second Stage -- c1100_亡者兵士_折れた直剣_ラッシュ2段目", + "211000332": "C1100_ dead soldiers _ Broken Straight Swords _ rush third Stage -- c1100_亡者兵士_折れた直剣_ラッシュ3段目", + "211000333": "C1100_ dead soldiers _ Broken Straight Swords _ rush fourth Stage -- c1100_亡者兵士_折れた直剣_ラッシュ4段目", + "211000334": "C1100_ dead soldiers _ Broken Straight Swords _ rush fifth stage -- c1100_亡者兵士_折れた直剣_ラッシュ5段目", + "211000335": "C1100_ dead soldiers _ Broken Straight Swords _ rush sixth stage -- c1100_亡者兵士_折れた直剣_ラッシュ6段目", + "211000340": "C1100_ dead soldiers _ Broken Straight swords _ leapt -- c1100_亡者兵士_折れた直剣_飛びかかり", + "211000398": "C1100_ dead Soldiers _ straight Swords _ Throwing out damage -- c1100_亡者兵士_直剣_投げ抜けダメージ", + "211000399": "C1100_ dead Soldiers _ Straight Swords _ attack transition for throwing out -- c1100_亡者兵士_直剣_投げ抜け用攻撃遷移", + "211000500": "C1100_ Dead Soldier _ dagger _ successive slash 1 -- c1100_亡者兵士_短剣_連続斬り1", + "211000501": "C1100_ Dead Soldier _ dagger _ successive slash 2 -- c1100_亡者兵士_短剣_連続斬り2", + "211000502": "C1100_ Dead Soldier _ dagger _ successive slash 3 -- c1100_亡者兵士_短剣_連続斬り3", + "211000510": "C1100_ Dead Soldiers _ daggers _ leapt (medium-range) -- c1100_亡者兵士_短剣_飛びかかり(中距離)", + "211000520": "C1100_ Dead Soldiers _ daggers _ leapt (FAR) -- c1100_亡者兵士_短剣_飛びかかり(遠距離)", + "211000530": "C1100_ Dead Soldiers _ daggers _ Small Depression & continuous slash first stage -- c1100_亡者兵士_短剣_小踏み込み&連続斬り1段目", + "211000531": "C1100_ Dead Soldiers _ daggers _ Small Depression & continuous slash second stage -- c1100_亡者兵士_短剣_小踏み込み&連続斬り2段目", + "211000532": "C1100_ Dead Soldiers _ daggers _ Small Depression & continuous slash third stage -- c1100_亡者兵士_短剣_小踏み込み&連続斬り3段目", + "211000540": "C1100_ Dead Soldiers _ daggers _ combo 2-1 thrusts -- c1100_亡者兵士_短剣_コンボ2-1 突き", + "211000541": "C1100_ Dead Soldiers _ daggers _ combo 2-1 continuous Slash -- c1100_亡者兵士_短剣_コンボ2-1 連続斬り", + "211000550": "C1100_ Dead Soldiers _ daggers _ Baxta Thrusts (strong thrusts) -- c1100_亡者兵士_短剣_バクスタ突き(強突き)", + "211000551": "C1100_ Dead Soldier _ dagger _ tossed -- c1100_亡者兵士_短剣_投げ", + "211000700": "C1100_ Dead Soldiers _ guards -- c1100_亡者兵士_ガード", + "211000710": "C1100_ Dead Soldiers _ Guard (weak) -- c1100_亡者兵士_ガード(弱)", + "211000800": "C1100_ Dead Soldiers _ bows _ usually arrows -- c1100_亡者兵士_弓_通常矢", + "211000801": "C1100_ Dead Soldiers _ bows _ arrows -- c1100_亡者兵士_弓_火矢", + "211000810": "C1100_ dead Soldiers _ throwing oil pots -- c1100_亡者兵士_油壺投げ", + "211000811": "C1100_ dead Soldiers _ oil pots tossed _ landed -- c1100_亡者兵士_油壺投げ_着弾", + "211000820": "C1100_ dead Soldiers _ flame Pots -- c1100_亡者兵士_火炎壺", + "211000821": "C1100_ dead Soldiers _ Flame Pots _ Landed -- c1100_亡者兵士_火炎壺_着弾", + "211050010": "C1105_ dead Soldier (Large) _ axe _ Swung down: Right tilted single-shot -- c1105_亡者兵士(大)_斧_振り下ろし:右ななめ単発", + "211050011": "C1105_ dead Soldier (Large) _ axe _ shaken down: Left tilted first stage -- c1105_亡者兵士(大)_斧_振り下ろし:左ななめ一段目", + "211050012": "C1105_ dead Soldier (Large) _ axe _ Swung down: right tilted two -- c1105_亡者兵士(大)_斧_振り下ろし:右ななめ二段目", + "211050020": "C1105_ dead Soldier (Large) _ axe _ Swing Down: Depression & timing Difference -- c1105_亡者兵士(大)_斧_振り下ろし:踏み込み&タイミング違い", + "211050030": "C1105_ dead Soldier (Large) _ ax _ steep approaching & swinging down -- c1105_亡者兵士(大)_斧_急接近&振り下ろし", + "211050040": "C1105_ dead Soldier (Large) _ axe _ Tilted sideways Sugu -- c1105_亡者兵士(大)_斧_思いきり横に薙ぐ", + "211050050": "C1105_ dead Soldier (Large) _ axe _ Saigi to right (for combo) -- c1105_亡者兵士(大)_斧_右に薙ぎ払い(コンボ用)", + "211050051": "C1105_ dead Soldier (Large) _ axe _ Saigi to left (for combo) -- c1105_亡者兵士(大)_斧_左に薙ぎ払い(コンボ用)", + "211050060": "C1105_ dead Soldier (Large) _ axe _ Right side payment -- c1105_亡者兵士(大)_斧_右側面払い", + "211050061": "C1105_ dead Soldier (Large) _ axe _ left side pay -- c1105_亡者兵士(大)_斧_左側面払い", + "211050070": "C1105_ dead Soldier (Large) _ ax _ Nagi from right to left -- c1105_亡者兵士(大)_斧_右から左になぎ払う", + "211050110": "C1105_ dead Soldier (Large) _ Saigi _ Hal Bird -- c1105_亡者兵士(大)_ハルバード_薙ぎ払い", + "211050111": "C1105_ dead Soldier (Large) _ Hal Bird _ Inverted Saigi -- c1105_亡者兵士(大)_ハルバード_逆薙ぎ払い", + "211050120": "C1105_ dead Soldier (Large) _ Hull Bird _ butting in: lingering forward -- c1105_亡者兵士(大)_ハルバード_突き:余韻で進む", + "211050130": "C1105_ dead Soldier (Large) _ Hull bird _ Swing down: Go down in the afterglow -- c1105_亡者兵士(大)_ハルバード_振り下ろす:余韻で下がる", + "211050140": "C1105_ dead Soldier (Large) _ Hull Bird _ short-approaching thrusting: down in the afterglow -- c1105_亡者兵士(大)_ハルバード_急接近突き:余韻で下がる", + "211050150": "C1105_ dead Soldier (Large) _ Hull Bird _ extruded -- c1105_亡者兵士(大)_ハルバード_押し出し", + "211050160": "C1105_ dead Soldier (Large) _ Hal Bird _ Strong Saigi -- c1105_亡者兵士(大)_ハルバード_強薙ぎ払い", + "211100100": "c1110_ Dark Knight (Straight Sword) _ Slashing 1 -- c1110_ダークナイト(直剣)_斬撃1", + "211100110": "c1110_ Dark Knight (straight Blade) _ Slashing 2 -- c1110_ダークナイト(直剣)_斬撃2", + "211100120": "c1110_ Dark Knight (Straight Sword) _ slashing 3 -- c1110_ダークナイト(直剣)_斬撃3", + "211100130": "c1110_ Dark Knight (Straight Sword) _ Finish technique -- c1110_ダークナイト(直剣)_フィニッシュ技", + "211100140": "c1110_ Dark Knight (Straight sword) _ strong slashing, single-shot -- c1110_ダークナイト(直剣)_強斬撃・単発", + "211100150": "c1110_ Dark Knight (Straight sword) _ Strong slashing Combo -- c1110_ダークナイト(直剣)_強斬撃・コンボ", + "211100160": "c1110_ Dark Knight (Straight Sword) _ Shield Bash -- c1110_ダークナイト(直剣)_シールドバッシュ", + "211100170": "c1110_ Dark Knight (Straight sword) _ Distance packed attack (long) -- c1110_ダークナイト(直剣)_距離詰め攻撃(長)", + "211100180": "c1110_ Dark Knight (Straight Sword) _ distance-packed attack (short) -- c1110_ダークナイト(直剣)_距離詰め攻撃(短)", + "211100190": "c1110_ Dark Knight (Straight Sword) _ The second stage of the strong slashing combo -- c1110_ダークナイト(直剣)_強斬撃・コンボ2段目", + "211100200": "c1110_ Dark Knight (Straight Sword) _ Weak slashing 1 -- c1110_ダークナイト(直剣)_弱斬撃1", + "211100210": "c1110_ Dark Knight (Straight Sword) _ Weak slashing 2 -- c1110_ダークナイト(直剣)_弱斬撃2", + "211100220": "c1110_ Dark Knight (Straight Sword) _ Weak slashing 3 -- c1110_ダークナイト(直剣)_弱斬撃3", + "211100230": "c1110_ Dark Knight (Straight Sword) _ Whack attack behind -- c1110_ダークナイト(直剣)_背後への薙ぎ攻撃", + "211100700": "C1110_ The Dark Knight _ guard -- c1110_ダークナイト_ガード", + "211100990": "c1100_ Avatar Death Signpost -- c1100_アバター死亡時道標", + "211200010": "Straight Sword: Stepping Down (Combo ① 1) -- 直剣:踏み込み斬り下ろし(コンボ①1)", + "211200020": "Straight Sword: Stepping Left → right Saigi (combo ① 2) -- 直剣:踏み込み左→右薙ぎ払い(コンボ①2)", + "211200030": "Straight Sword: Depression deadline (Combo ① 3) -- 直剣:踏み込み〆突き(コンボ①3)", + "211200040": "Straight Sword: Left Shiri (Combo ② 1) -- 直剣:左袈裟斬り(コンボ②1)", + "211200050": "Straight Sword: Depression fast thrust 1 (Combo ② 2) -- 直剣:踏み込み高速突き1(コンボ②2)", + "211200060": "Straight Sword: Depression fast thrust 2 (Combo ② 3) -- 直剣:踏み込み高速突き2(コンボ②3)", + "211200070": "Straight Sword: Stepping Down (Large) (Combo ② 4) -- 直剣:踏み込み斬り下ろし(大)(コンボ②4)", + "211200080": "Straight Sword: Stepping Left → right Saigi (single) -- 直剣:踏み込み左→右薙ぎ払い(単発)", + "211200090": "Straight Sword: Rush Butt -- 直剣:突進突き", + "211200100": "Straight Sword: Shield bash -- 直剣:シールドバッシュ", + "211200200": "Halle Byrd: Guard Butt 1 (Combo ① 1) -- ハルバード:ガード突き1(コンボ①1)", + "211200210": "Halle Bird: Guard Butt 2 (Combo ① 2) -- ハルバード:ガード突き2(コンボ①2)", + "211200220": "Halle Byrd: Stepping Infuser (Combo ① 3) -- ハルバード:踏み込み溜め突き(コンボ①3)", + "211200230": "Saigi: Depression Right → Left (combo ② 1) -- ハルバード:踏み込み右→左薙ぎ払い(コンボ②1)", + "211200240": "Saigi: Stepping Left → right (combo ② 2) -- ハルバード:踏み込み左→右薙ぎ払い(コンボ②2)", + "211200250": "Hal Bird: Stepping Down (single) -- ハルバード:踏み込み斬り下ろし(単発)", + "211200260": "Halle Byrd: Thrusting -- ハルバード:突き", + "211200270": "Hal Bird: Slapping Down -- ハルバード:叩きおろし", + "211200280": "Halle Bird: Rush Butt -- ハルバード:突進突き", + "211200290": "Halle Byrd: Shield bash -- ハルバード:シールドバッシュ", + "211200500": "Guard -- ガード", + "211300010": "Caries slug: Bit -- 蝕ナメクジ:噛み付き", + "211300020": "Caries slug: Arm throwing transition attack -- 蝕ナメクジ:腕投げ遷移攻撃", + "211300021": "Caries slug: arm throwing pressure damage -- 蝕ナメクジ:腕投げ圧迫ダメージ", + "211300050": "Caries Slugs: landing -- 蝕ナメクジ:着地", + "211300700": "Caries slug: caries vomiting -- 蝕ナメクジ:蝕吐き", + "211300710": "Caries Slug: Vomit (short) -- 蝕ナメクジ:蝕吐き(短)", + "211320010": "C1132_-Erosion Slugs: throwing transition attacks -- c1132_蝕ナメクジ:投げ遷移攻撃", + "211320011": "C1132_: Throwing and squeezing damage -- c1132_蝕ナメクジ:投げ圧迫ダメージ", + "211500100": "C1150_ dead Shi (mace + Large shield) _ Kesa beating 1 -- c1150_亡者僧兵(メイス+大盾)_袈裟殴り1", + "211500110": "C1150_ dead Shi (mace + Large shield) _ Kesa beating 2 -- c1150_亡者僧兵(メイス+大盾)_袈裟殴り2", + "211500120": "C1150_ dead Shi (mace + Large Shield) _ Sidewise 1 (one-shot) -- c1150_亡者僧兵(メイス+大盾)_横殴り1(単発)", + "211500130": "C1150_ dead Shi (mace + Large Shield) _ Sidewise 1 (combo) -- c1150_亡者僧兵(メイス+大盾)_横殴り1(コンボ)", + "211500140": "C1150_ dead Shi (mace + Large Shield) _ Sidewise 2 -- c1150_亡者僧兵(メイス+大盾)_横殴り2", + "211500150": "C1150_ dead Shi (mace + Large shield) _ knocked back against -- c1150_亡者僧兵(メイス+大盾)_叩き付け", + "211500160": "C1150_ dead Shi (mace + Large shield) _ Shield Bash -- c1150_亡者僧兵(メイス+大盾)_シールドバッシュ", + "211500200": "C1150_ dead Shi (both hand-held hammers) _ Sidewise 1 -- c1150_亡者僧兵(両手持ちハンマー)_横殴り1", + "211500210": "C1150_ dead Shi (both hand-held hammers) _ Sidewise 2 -- c1150_亡者僧兵(両手持ちハンマー)_横殴り2", + "211500220": "C1150_ dead Shi (both hand-held hammers) _ grated -- c1150_亡者僧兵(両手持ちハンマー)_振りおろし", + "211500230": "C1150_ dead Shi (both hand-held hammers) _ lateral swinging 1 -- c1150_亡者僧兵(両手持ちハンマー)_横振り回し1", + "211500240": "C1150_ dead Shi (both hand-held hammers) _ Lateral swinging 2 -- c1150_亡者僧兵(両手持ちハンマー)_横振り回し2", + "211500250": "C1150_ dead Shi (both hand-held hammers) _ a swing from shakes -- c1150_亡者僧兵(両手持ちハンマー)_振りかぶりからの振りおろし", + "211500300": "C1150_ dead Shi (Ice-Ax) _ Kesa cut 1 -- c1150_亡者僧兵(ピッケル)_袈裟切り1", + "211500310": "C1150_ dead Shi (Ice-Ax) _ Kesa Cut 2 -- c1150_亡者僧兵(ピッケル)_袈裟切り2", + "211500320": "C1150_ dead Shi (Ice-ax) _ Intense shaking off (combo) -- c1150_亡者僧兵(ピッケル)_強烈振り降ろし(コンボ)", + "211500330": "C1150_ dead Shi (Ice-ax) _ Intense shaking off (single-shot) -- c1150_亡者僧兵(ピッケル)_強烈振り降ろし(単発)", + "211500340": "C1150_ dead Shi (Ice-Ax) _ Sidewise -- c1150_亡者僧兵(ピッケル)_横殴り", + "211500350": "C1150_ dead Shi (Ice-Ax) _ Sidewise A (grated 1 derived) -- c1150_亡者僧兵(ピッケル)_横殴りA(振りおろし1派生)", + "211500360": "C1150_ dead Shi (Ice-Ax) _ Sidewise B (sidewise 1 derived) -- c1150_亡者僧兵(ピッケル)_横殴りB(横殴り1派生)", + "211500370": "C1150_ dead Shi (Ice-ax) _ Swinging from shakes -- c1150_亡者僧兵(ピッケル)_振りかぶりからの振りおろし", + "211500700": "C1150_ dead Shi (mace + Large shield) _ guards -- c1150_亡者僧兵(メイス+大盾)_ガード", + "211700010": "Right hand: Rounding up -- 右手:切り上げ", + "211700011": "Right hand: Sword down -- 右手:斬り下ろし", + "211700012": "Right hand: Vertical rotation Sword down -- 右手:縦回転斬り下ろし", + "211700020": "Right hand: Shiri -- 右手:袈裟斬り", + "211700021": "Right hand: Butt -- 右手:突き", + "211700030": "Right hand: Slalom Slash -- 右手:大回転斬り", + "211700040": "Rolling down the derived sword -- ローリング派生斬り下ろし", + "211700050": "Rush (stage) -- ラッシュ(初段)", + "211700060": "Shield Bash -- シールドバッシュ", + "211700070": "Rolling -- ローリング", + "211700100": "Guard -- ガード", + "211700110": "Both hands: Right → left Saigi -- 両手:右→左薙ぎ払い", + "211700120": "Both hands: Shiri -- 両手:袈裟斬り", + "211700130": "Both hands: Tamenuri Left → right Saigi -- 両手:溜左→右薙ぎ払い", + "211700200": "Shooting -- 射撃", + "211700201": "Shooting (for combo) -- 射撃(コンボ用)", + "211800010": "C1180: Frontier Skeleton (Shorty) _ Whack: Wait -- c1180:辺境スケルトン(ショーテル)_薙ぎ:待機", + "211800020": "C1180: Frontier Skeleton (Shorty) __ Reverse whack: whack posture -- c1180:辺境スケルトン(ショーテル)__逆薙ぎ:薙ぎ姿勢", + "211800030": "C1180: Frontier Skeleton (Shorty) _ Jump Whack: reverse whack posture -- c1180:辺境スケルトン(ショーテル)_ジャンプ薙ぎ:逆薙ぎ姿勢", + "211800040": "C1180: Frontier Skeleton (Shorty) _ Reverse Kesa: Whack stance -- c1180:辺境スケルトン(ショーテル)_逆袈裟:薙ぎ姿勢", + "211800050": "C1180: Frontier Skeleton (Shorty) _ Stepping down -- c1180:辺境スケルトン(ショーテル)_踏み込み斬り下ろし", + "211800060": "C1180: Frontier Skeleton (Shorty) _ Thrust: Swing down posture -- c1180:辺境スケルトン(ショーテル)_突き:振り下ろし姿勢", + "211800070": "C1180: Frontier Skeleton (Shorty) _ Revolving Payment: Thrust posture -- c1180:辺境スケルトン(ショーテル)_回転払い:突き姿勢", + "211800080": "C1180: Frontier Skeleton (Shorty) _ Step Whack -- c1180:辺境スケルトン(ショーテル)_ステップ薙ぎ", + "211800090": "C1180: Frontier Skeleton (Shorty) _ Reverse Whack: standing posture -- c1180:辺境スケルトン(ショーテル)_逆薙ぎ:待機姿勢", + "211800100": "C1180: Frontier Skeleton (Shorty) _ Grated: depression Small -- c1180:辺境スケルトン(ショーテル)_振りおろし:踏み込み小", + "211800110": "C1180: Frontier Skeleton (Shorty) _ Revolving Payment -- c1180:辺境スケルトン(ショーテル)_回転払い", + "211800120": "C1180: Frontier Skeleton (Shorty) _ Shield through rake-up -- c1180:辺境スケルトン(ショーテル)_盾貫通すくい上げ", + "211800200": "C1180: Frontier Skeleton (Nitori) _ Two-handed (right) -- c1180:辺境スケルトン(二刀流)_両手払い(右)", + "211800201": "C1180: Frontier Skeleton (Nitori) _ Two-handed (left) -- c1180:辺境スケルトン(二刀流)_両手払い(左)", + "211800210": "C1180: Frontier Skeleton (Nitori) _ one-handed reverse payment (left) -- c1180:辺境スケルトン(二刀流)_片手逆払い(左)", + "211800220": "C1180: Frontier Skeleton (Nitori) _ Rotating one hand and grated (right) -- c1180:辺境スケルトン(二刀流)_回転片手振りおろし(右)", + "211800221": "C1180: Frontier Skeleton (Nitori) _ Rotating one-handed (left) -- c1180:辺境スケルトン(二刀流)_回転片手振りおろし(左)", + "211800230": "C1180: Frontier Skeleton (Nitori) _ Two-handed reverse payment (right) -- c1180:辺境スケルトン(二刀流)_両手逆払い(右)", + "211800231": "C1180: Frontier Skeleton (Nitori) _ Two-handed reverse payment (left) -- c1180:辺境スケルトン(二刀流)_両手逆払い(左)", + "211800240": "C1180: Frontier Skeleton (Nitori) _ Both hand and side grated (right) -- c1180:辺境スケルトン(二刀流)_両手振りおろし(右)", + "211800241": "C1180: Frontier Skeleton (Nitori) _ Both sides grated (left) -- c1180:辺境スケルトン(二刀流)_両手振りおろし(左)", + "211800250": "C1180: Frontier Skeleton (Nitori) _ Yupa Attack (right) -- c1180:辺境スケルトン(二刀流)_ユパ様アタック(右)", + "211800251": "C1180: Frontier Skeleton (Nitori) _ Yupa attack (left) -- c1180:辺境スケルトン(二刀流)_ユパ様アタック(左)", + "211800260": "C1180: Frontier Skeleton (Nitori) _ Both hands rounded up (right) -- c1180:辺境スケルトン(二刀流)_踏み込み両手切り上げ(右)", + "211800261": "C1180: Frontier Skeleton (Nitori) _ Two-handed rounding (left) -- c1180:辺境スケルトン(二刀流)_踏み込み両手切り上げ(左)", + "211800270": "C1180: Frontier Skeleton (Nitori) _ Diving rotation slash (right) -- c1180:辺境スケルトン(二刀流)_飛び込み回転斬り(右)", + "211800271": "C1180: Frontier Skeleton (Nitori) _ Diving rotation slash (left) -- c1180:辺境スケルトン(二刀流)_飛び込み回転斬り(左)", + "211800280": "C1180: Frontier Skeleton (Nitori) _ Left step payment (left) -- c1180:辺境スケルトン(二刀流)_左ステップ払い(左)", + "211800290": "C1180: Frontier Skeleton (Nitori) _ Right Step payment (left) -- c1180:辺境スケルトン(二刀流)_右ステップ払い(左)", + "211800300": "C1180: Frontier Skeleton (Nitori) _ Rush First stage (right) -- c1180:辺境スケルトン(二刀流)_ラッシュ1段目(右)", + "211800310": "C1180: Frontier Skeleton (Nitori) _ Stepping up one hand -- c1180:辺境スケルトン(二刀流)_踏み込み片手斬り上げ", + "211800320": "C1180: Frontier Skeleton (Nitori) _ Rush Second stage (right) -- c1180:辺境スケルトン(二刀流)_ラッシュ2段目(右)", + "211800321": "C1180: Frontier Skeleton (Nitori) _ Second stage of Rush (left) -- c1180:辺境スケルトン(二刀流)_ラッシュ2段目(左)", + "211800330": "C1180: Frontier Skeleton (Nitori) _ Rush Third stage (right) -- c1180:辺境スケルトン(二刀流)_ラッシュ3段目(右)", + "211800331": "C1180: Frontier Skeleton (Nitori) _ Rush Third stage (left) -- c1180:辺境スケルトン(二刀流)_ラッシュ3段目(左)", + "211800340": "C1180: Frontier Skeleton (Nitori) _ Rush Fourth stage (right) -- c1180:辺境スケルトン(二刀流)_ラッシュ4段目(右)", + "211800341": "C1180: Frontier Skeleton (Nitori) _ Rush Fourth stage (left) -- c1180:辺境スケルトン(二刀流)_ラッシュ4段目(左)", + "211800350": "C1180: Frontier Skeleton (Nitori) _ One-handed rounding: depression small -- c1180:辺境スケルトン(二刀流)_片手切り上げ:踏み込み小", + "211800700": "Baxtenife throwing -- バクステナイフ投げ", + "211800710": "Knife throwing -- ナイフ投げ", + "211800720": "Step knife throwing -- ステップナイフ投げ", + "211900100": "Gray Tome + Large shield _ grated -- グレートメイス+大盾_振りおろし", + "211900110": "Grey Tome + Large shield _ swinging -- グレートメイス+大盾_振り上げ", + "211900120": "Grey Tome + Large shield _ grated Mei-slash 1 -- グレートメイス+大盾_振りおろしメイスラッシュ1", + "211900121": "Grey Tome + Large shield _ grated mae slash 2 -- グレートメイス+大盾_振りおろしメイスラッシュ2", + "211900122": "Grey Tome + Large shield _ grated mae slash 3 -- グレートメイス+大盾_振りおろしメイスラッシュ3", + "211900130": "Grey Tome + Large Shield _ Saigi 1 -- グレートメイス+大盾_薙ぎ払い1", + "211900140": "Grey Tome + Large Shield _ Saigi 2 -- グレートメイス+大盾_薙ぎ払い2", + "211900150": "Grey Tome + Large shield _ knocked back against -- グレートメイス+大盾_溜めて叩き付け", + "211900160": "Grey Tome + Large shield _ Shield bash -- グレートメイス+大盾_シールドバッシュ", + "211900170": "Gray Tome + Large Shield _ Miracle attack -- グレートメイス+大盾_奇跡・攻撃", + "211900180": "Grey Tome + Large Shield _ Miracle/Recovery -- グレートメイス+大盾_奇跡・回復", + "211900190": "Gray Tome + Large Shield _ Crossbow -- グレートメイス+大盾_クロスボウ", + "211900290": "Grey Tome + Large Shield _ Guard -- グレートメイス+大盾_ガード", + "211900300": "Great Sword _ Saigi 1 -- グレートソード_薙ぎ払い1", + "211900310": "Great Sword _ Saigi 2 (Nagi 1) -- グレートソード_薙ぎ払い2(なぎ払い1から繋がる版)", + "211900320": "Great Sword _ Kesa cut 1 -- グレートソード_袈裟切り1", + "211900330": "Great Sword _ Saigi 3 (Kesa cut 1) -- グレートソード_薙ぎ払い3(袈裟切り1から繋がる版", + "211900340": "Great Sword, stepping round -- グレートソード_踏み込み切り上げ", + "211900350": "Great Sword, stepping round -- グレートソード_踏み込み切り上げ", + "211900360": "From the top of the Great Sword (combo) -- グレートソード_上段からの振りおろし(コンボ)", + "211900370": "Great Sword _ from the top of the Swing (single) -- グレートソード_上段からの振りおろし(単発)", + "211900380": "Great sword before kick: Kick -- グレートソード_前蹴り:蹴り", + "211900381": "Great Sword _ pre-kick: push -- グレートソード_前蹴り:押し", + "211900390": "Great Sword _ head Bud -- グレートソード_ヘッドバッド", + "211900400": "Great Sword _ back Whack -- グレートソード_背面薙ぎ", + "211900410": "Great Sword (combo) -- グレートソード_溜め振りおろし(コンボ)", + "211900420": "Great Sword _ close-up swing -- グレートソード_接近振りおろし", + "211900430": "The Great sword-stepping thrust -- グレートソード_踏み込み突き", + "211900440": "Great Sword _ Saigi (combo) -- グレートソード_薙ぎ払い(コンボ)", + "211900450": "The Great Sword: the second shot -- グレートソード_二連振り下ろし:一撃目", + "211900451": "Great Sword _ Double swing: Second hammer -- グレートソード_二連振り下ろし:二撃目", + "212000100": "c1200_ Dwarf Man (Hatchet/ice-AX) _ Kesa Cut -- c1200_矮小人(ハチェット/ピッケル)_袈裟切り", + "212000110": "c1200_ Dwarf Man (Hatchet/ice-Ax) _ Reverse Kesa cut -- c1200_矮小人(ハチェット/ピッケル)_逆袈裟切り", + "212000120": "c1200_ Dwarf (Hatchet/ice-AX) _ Kannagi -- c1200_矮小人(ハチェット/ピッケル)_横なぎ", + "212000130": "c1200_ Dwarf (Hatchet/ice-AX) _ Swing Down -- c1200_矮小人(ハチェット/ピッケル)_振り下ろし", + "212000140": "c1200_ Dwarf Man (Hatchet/ice-AX) _ Kari attack -- c1200_矮小人(ハチェット/ピッケル)_飛び掛かり攻撃", + "212000150": "c1200_ Dwarf Man (Hatchet/ice-Ax) _ Dash Kari attack -- c1200_矮小人(ハチェット/ピッケル)_ダッシュ飛び掛かり攻撃", + "212000160": "c1200_ Dwarf (Hatchet/ice-AX) _ Dash wielding attack -- c1200_矮小人(ハチェット/ピッケル)_ダッシュ振り回し攻撃", + "212000170": "c1200_ Dwarf Man (Hatchet/ice-Ax) _ Dash Furi attack -- c1200_矮小人(ハチェット/ピッケル)_ダッシュ振り逃げ攻撃", + "212000180": "c1200_ Dwarf (Hatchet/ice-AX) _ Wrap Attack (right) -- c1200_矮小人(ハチェット/ピッケル)_回り込み攻撃(右)", + "212000190": "c1200_ Dwarf Man (Hatchet/ice-Ax) _ Blowgun (1) -- c1200_矮小人(ハチェット/ピッケル)_吹き矢(1)", + "212000200": "c1200_ Dwarf Man (Hatchet/ice-Ax) _ Blowgun (2) -- c1200_矮小人(ハチェット/ピッケル)_吹き矢(2)", + "212000210": "c1200_ Dwarf (Hatchet/ice-AX) _ Companions -- c1200_矮小人(ハチェット/ピッケル)_仲間呼び", + "212000220": "c1200_ Dwarf Person (hatchet/ice-AX) _ Throwing transition -- c1200_矮小人(ハチェット/ピッケル)_投げ遷移", + "212000240": "c1200_ Dwarf (Hatchet/ice-AX) _ A flame pot thrower -- c1200_矮小人(ハチェット/ピッケル)_火炎壺投げ", + "212000300": "c1200_ Dwarf (Large sword) _ Lateral Whack 1 -- c1200_矮小人(大剣)_横薙ぎ1", + "212000310": "c1200_ Dwarf Man (large sword) _ Lateral Whack 2 -- c1200_矮小人(大剣)_横薙ぎ2", + "212000320": "c1200_ Dwarf (Large sword) _ Swinging -- c1200_矮小人(大剣)_振り上げ", + "212000330": "c1200_ Dwarf (Large sword) _ Swing Down -- c1200_矮小人(大剣)_振り下ろし", + "212000340": "c1200_ Dwarf (Large sword) _ Extruded attack -- c1200_矮小人(大剣)_押し出し攻撃", + "212000350": "c1200_ Dwarf (Large sword) _ Wrap Attack (right) -- c1200_矮小人(大剣)_回り込み攻撃(右)", + "212000360": "c1200_ Dwarf (Large sword) _ Fall Attack -- c1200_矮小人(大剣)_落下攻撃", + "212000370": "c1200_ Dwarf (Large sword) _ companions called -- c1200_矮小人(大剣)_仲間呼び", + "212000700": "c1200_ Dwarf Man (Hatchet/ice ax) _ Tossed -- c1200_矮小人(ハチェット/ピッケル)_投げ", + "212000999": "c1200_ Dwarf (Large sword) _ Companion call test -- c1200_矮小人(大剣)_仲間呼びテスト", + "212100100": "c1210_ Blue (Spear shield) _ Thrust -- c1210_ブルー(槍盾)_突き", + "212100110": "c1210_ Blue (Spear shield) _ Continuous piercing -- c1210_ブルー(槍盾)_連続突き刺し", + "212100120": "c1210_ Blue (Spear shield) _ Continuous thrusting 2 -- c1210_ブルー(槍盾)_連続突き刺し2", + "212100130": "c1210_ Blue (Spear shield) _ Shield beating -- c1210_ブルー(槍盾)_盾殴り", + "212100140": "c1210_ Blue (Spear shield) _ Diagonal thrust -- c1210_ブルー(槍盾)_斜め突き上げ", + "212100150": "c1210_ Blue (Spear shield) _ Tamenuri -- c1210_ブルー(槍盾)_溜突き", + "212100160": "c1210_ Blue (Spear shield) _ Rush attack -- c1210_ブルー(槍盾)_ラッシュ攻撃", + "212100170": "c1210_ Blue (Spear shield) _ Guard Butt -- c1210_ブルー(槍盾)_ガード突き", + "212100200": "c1210_ Blue (Sword) _ Swing Down -- c1210_ブルー(剣)_振り下ろし", + "212100210": "c1210_ Blue (Sword) _ Thrusting -- c1210_ブルー(剣)_突き", + "212100220": "c1210_ Blue (Sword) _ Scratching -- c1210_ブルー(剣)_引っ掻き", + "212100230": "c1210_ Blue (Sword) _ Depression Right → left Shiri -- c1210_ブルー(剣)_踏み込み右→左袈裟斬り", + "212100240": "c1210_ Blue (Sword) _ Depression 2-Saigi -- c1210_ブルー(剣)_踏み込み2連薙ぎ払い", + "212100250": "c1210_ Blue (Sword) _ Roundhouse Shiri -- c1210_ブルー(剣)_大振り袈裟斬り", + "212100260": "c1210_ Blue (Sword) _ Kicks -- c1210_ブルー(剣)_蹴り", + "212100270": "c1210_ Blue (Sword) _ a poop throw -- c1210_ブルー(剣)_うんこ投げ", + "212100300": "c1210_ Blue (deep) _ Stepping Thrust -- c1210_ブルー(ディープ)_踏み込み突き刺し", + "212100310": "c1210_ Blue (deep) _ Infuser Thrust -- c1210_ブルー(ディープ)_溜め突き刺し", + "212100320": "c1210_ Blue (deep) _ Move forward and cut down -- c1210_ブルー(ディープ)_前進しながら斬り下ろし", + "212100330": "c1210_ Blue (deep) _ Left → Right roundhouse Saigi -- c1210_ブルー(ディープ)_左→右大振り薙ぎ払い", + "212100340": "c1210_ Blue (deep) _ Poison fog chanting -- c1210_ブルー(ディープ)_毒霧詠唱", + "212100350": "c1210_ Blue (deep) _ Widespread poison fog chanting (may be lost) -- c1210_ブルー(ディープ)_広域猛毒霧詠唱(なくなるかも)", + "212100360": "c1210_ Blue (Deep) _ Estrus-inducing dance -- c1210_ブルー(ディープ)_発情誘発踊り", + "212100370": "c1210_ Blue (Deep) _ Magic 1 -- c1210_ブルー(ディープ)_魔法1", + "212100380": "c1210_ Blue (Deep) _ Magic 2 -- c1210_ブルー(ディープ)_魔法2", + "212100390": "c1210_ Blue (deep) _ Ambient Recovery Magic -- c1210_ブルー(ディープ)_周囲回復魔法", + "212100400": "c1210_ Blue (Estrus) _ Right scratching -- c1210_ブルー(発情)_右引っ掻き", + "212100410": "c1210_ Blue (Estrus) _ Left scratching -- c1210_ブルー(発情)_左引っ掻き", + "212100420": "c1210_ Blue (Estrus) _ with a hug -- c1210_ブルー(発情)_抱きつき", + "212100430": "c1210_ Blue (Estrus) _ Hug (from Waiting) -- c1210_ブルー(発情)_抱きつき(待機から)", + "212100440": "c1210_ Blue (Estrus) _ High jump -- c1210_ブルー(発情)_ハイジャンプ", + "212100490": "c1210_ Blue (Estrus) _ Throwing damage -- c1210_ブルー(発情)_投げ時ダメージ", + "212100500": "c1210_ Blue (dog) _ Right scratching -- c1210_ブルー(犬)_右引っ掻き", + "212100510": "c1210_ Blue (dog) _ Left scratching -- c1210_ブルー(犬)_左引っ掻き", + "212100520": "c1210_ Blue (dog) -- c1210_ブルー(犬)_叩きおろし", + "212100530": "c1210_ Blue (dog) _ Lunge -- c1210_ブルー(犬)_突進", + "212100540": "c1210_ Blue (dog) _ Triangular flying scratching -- c1210_ブルー(犬)_三角飛び引っかき", + "212100700": "c1210_ Blue (Deep) _ Name set later -- c1210_ブルー(ディープ)_名称は後で設定", + "212100710": "c1210_ Blue (Deep) _ Name set later -- c1210_ブルー(ディープ)_名称は後で設定", + "212100720": "c1210_ Blue (Deep) _ Name set later -- c1210_ブルー(ディープ)_名称は後で設定", + "212100730": "c1210_ Blue (Deep) _ Name set later -- c1210_ブルー(ディープ)_名称は後で設定", + "212100740": "c1210_ Blue (Deep) _ Name set later -- c1210_ブルー(ディープ)_名称は後で設定", + "212100750": "c1210_ Blue (Deep) _ Name set later -- c1210_ブルー(ディープ)_名称は後で設定", + "212100760": "c1210_ Blue (Deep) _ Name set later -- c1210_ブルー(ディープ)_名称は後で設定", + "212100770": "c1210_ Blue (Deep) _ Name set later -- c1210_ブルー(ディープ)_名称は後で設定", + "212100780": "c1210_ Blue (Deep) _ Name set later -- c1210_ブルー(ディープ)_名称は後で設定", + "212100999": "c1210_ Blue: Throwing Test attack -- c1210_ブルー:投げテスト攻撃", + "212200010": "Head Butt -- 頭突き", + "212200020": "Spitting Grub -- ウジ吐き", + "212200030": "Vomit (warning) -- ウジ吐き(本体出る予兆)", + "212200100": "Maggots: Right Whack -- うじバラ:右手薙ぎ", + "212200110": "Maggots: Left hand whack -- うじバラ:左手薙ぎ", + "212200120": "Worm Roses: Throwing start technique (normal) -- うじバラ:投げ始動技(通常時)", + "212200121": "Worm Roses: Throwing start technique (pressure damage) -- うじバラ:投げ始動技(圧迫ダメージ)", + "212200130": "Hit EFEC Maggots Test -- うじヒットエフェクっとテスト", + "212300010": "C1230_ Missionary: Left hand: Sword down -- c1230_宣教師:左手:斬り下ろし", + "212300020": "C1230_ Missionary: Left/Right Saigi -- c1230_宣教師:左手:左→右薙ぎ払い", + "212300030": "C1230_ Missionary: Left hand: Right → Saigi -- c1230_宣教師:左手:右→左薙ぎ払い", + "212300040": "C1230_ Missionary: Left/Right Saigi -- c1230_宣教師:左手:左→右薙ぎ払い", + "212300050": "C1230_ Missionary: Right hand: Bible Helmet Split -- c1230_宣教師:右手:聖書兜割り", + "212300060": "C1230_ Missionary: Left/Right swinging Saigi -- c1230_宣教師:左手:左→右振り回し薙ぎ払い", + "212300070": "C1230_ Missionary: Throwing Start technique -- c1230_宣教師:投げ始動技", + "212300071": "C1230_ Missionary: Throwing Continuous damage -- c1230_宣教師:投げ継続ダメージ", + "212300072": "C1230_ Missionary: throwing large continuation damage -- c1230_宣教師:投げ大継続ダメージ", + "212300080": "C1230_ Missionary: Book Slap -- c1230_宣教師:本ビンタ", + "212300700": "Long Distance Magic: A spear of diffuse flames -- 遠距離魔法:拡散する炎の槍", + "212300710": "Medium Range Magic: flames surrounding -- 中距離魔法:囲む炎", + "212300720": "Medium/short distance magic: Fireball -- 中/近距離魔法:火の玉", + "212300730": "Short distance Magic: Self-centered time bomb search bullet -- 近距離魔法:自己中心時限爆弾検索弾", + "212300731": "Short distance Magic: Self-centered time bomb damage -- 近距離魔法:自己中心時限爆弾ダメージ", + "212300740": "c1230_ Missionary: Projection Magic -- c1230_宣教師:投射魔法", + "212300800": "Magic Trigger Range explosion -- 魔法発動時範囲爆発", + "212300900": "For the city sniper: Gatling -- 街スナイパー用:ガトリング", + "212300910": "For the city sniper: a spear of fire that explodes -- 街スナイパー用:爆発する炎の槍", + "212300920": "Mark (Harmless) -- 印(無害)", + "212400100": "c1240_ poor Dead (machete): Kesa first Stage -- c1240_貧民亡者(ナタ):袈裟1段目", + "212400110": "c1240_ poor Dead (machete): Kesa second Stage -- c1240_貧民亡者(ナタ):袈裟2段目", + "212400120": "c1240_ poor Dead (machete): payment -- c1240_貧民亡者(ナタ):払い", + "212400130": "c1240_ poor Dead (machete): Kesa -- c1240_貧民亡者(ナタ):助走袈裟", + "212400140": "c1240_ poor Dead (machete): Triple Tap -- c1240_貧民亡者(ナタ):3連叩きおろし", + "212400150": "c1240_ poor Dead (machete): both gestures 1 -- c1240_貧民亡者(ナタ):両手振り1", + "212400151": "c1240_ poor Dead (machete): both gestures 2 -- c1240_貧民亡者(ナタ):両手振り2", + "212400300": "C1240_ Poor Dead (dual dagger): Right-hand abdomen Saigi -- c1240_貧民亡者(デュアルダガー):右手腹部薙ぎ払い", + "212400310": "C1240_ Poor Dead (dual dagger): Left hand thrusting a -- c1240_貧民亡者(デュアルダガー):左手突きおろしA", + "212400320": "C1240_ Poor Dead (dual dagger): Left hand grated b -- c1240_貧民亡者(デュアルダガー):左手突きおろしB", + "212400330": "C1240_ Poor Dead (dual dagger): Right hand slash -- c1240_貧民亡者(デュアルダガー):右手斬りおろし", + "212400340": "C1240_ Poor Dead (dual dagger): Both hands simultaneous attack (right) -- c1240_貧民亡者(デュアルダガー):両手同時攻撃(右)", + "212400341": "C1240_ Poor Dead (dual dagger): Both hands simultaneous attack (right) -- c1240_貧民亡者(デュアルダガー):両手同時攻撃(右)", + "212400350": "C1240_ Poor Dead (dual dagger): Rush (1st Stage right) -- c1240_貧民亡者(デュアルダガー):ラッシュ(1段目右)", + "212400351": "C1240_ Poor Dead (dual dagger): Rush (second stage left) -- c1240_貧民亡者(デュアルダガー):ラッシュ(2段目左)", + "212400352": "C1240_ Poor Dead (dual dagger): Rush (third stage right) -- c1240_貧民亡者(デュアルダガー):ラッシュ(3段目右)", + "212400353": "C1240_ Poor Dead (dual dagger): Rush (fourth stage left) -- c1240_貧民亡者(デュアルダガー):ラッシュ(4段目左)", + "212400354": "C1240_ Poor Dead (dual dagger): Rush (5th stage right) -- c1240_貧民亡者(デュアルダガー):ラッシュ(5段目右)", + "212400355": "C1240_ Poor Dead (dual dagger): Rush (sixth stage left) -- c1240_貧民亡者(デュアルダガー):ラッシュ(6段目左)", + "212400360": "C1240_ Poor Dead (dual dagger): Left hand thrust (throwing transition) -- c1240_貧民亡者(デュアルダガー):左手突き刺し(投げ遷移)", + "212400361": "C1240_ Poor Dead (dual dagger): Left hand thrust (damage) -- c1240_貧民亡者(デュアルダガー):左手突き刺し(ダメージ)", + "212400370": "C1240_ Poor Dead (dual dagger): Jump Attack (left) -- c1240_貧民亡者(デュアルダガー):ジャンプ攻撃(左)", + "212400371": "C1240_ Poor Dead (dual dagger): Jump Attack (right) -- c1240_貧民亡者(デュアルダガー):ジャンプ攻撃(右)", + "212400500": "c1240_ Poor Dead (Hammer): Knocked back against 1 -- c1240_貧民亡者(ハンマー):叩き付け1", + "212400510": "c1240_ Poor Dead (Hammer): Knocked back against 2 -- c1240_貧民亡者(ハンマー):叩き付け2", + "212400520": "c1240_ Poor Dead (Hammer): Kesa slapping -- c1240_貧民亡者(ハンマー):袈裟叩き", + "212400530": "c1240_ Poor Dead (Hammer): Infuser knocked back against -- c1240_貧民亡者(ハンマー):溜め叩き付け", + "212400540": "c1240_ Poor Dead (hammer): Sticking out -- c1240_貧民亡者(ハンマー):突き出し", + "212400600": "C1240_ Poor Dead (Lance): both hand thrusts 1 -- c1240_貧民亡者(ランス):両手突き1", + "212400610": "C1240_ Poor Dead (Lance): both hand thrusts 2 -- c1240_貧民亡者(ランス):両手突き2", + "212400620": "C1240_ Poor Dead (Lance): both hand thrusts 3 -- c1240_貧民亡者(ランス):両手突き3", + "212400630": "C1240_ Poor Dead (Lance): Infuser Butt -- c1240_貧民亡者(ランス):溜め突き", + "212400640": "C1240_ Poor Dead (Lance): Lunge whack -- c1240_貧民亡者(ランス):突進薙ぎ", + "212400650": "C1240_ Poor Dead (Lance): slams -- c1240_貧民亡者(ランス):叩きつけ", + "212400660": "C1240_ Poor Dead (Lance): Added Saigi -- c1240_貧民亡者(ランス):追加薙ぎ払い", + "212400700": "C1240_ the poor dead a3005_ -- c1240_貧民亡者a3005_火炎壺", + "212400710": "c1240_ poor dead a3008_ oil urn -- c1240_貧民亡者a3008_油壷", + "212500100": "C1250_ Poor Dead Elite _ right Pay -- c1250_貧民亡者エリート_右払い", + "212500110": "C1250_ Poor dead Elite _ left pay -- c1250_貧民亡者エリート_左払い", + "212500120": "c1250_ Poor Dead Elite _1-1 hands Shiri (right) -- c1250_貧民亡者エリート_1-1両手袈裟斬り(右)", + "212500121": "c1250_ Poor Dead Elite _1-1 hands Shiri (left) -- c1250_貧民亡者エリート_1-1両手袈裟斬り(左)", + "212500130": "c1250_ Poor Dead Elite _1-2 hands Saigi (right) -- c1250_貧民亡者エリート_1-2両手薙ぎ払い(右)", + "212500131": "c1250_ Poor Dead Elite _1-2 hands Saigi (left) -- c1250_貧民亡者エリート_1-2両手薙ぎ払い(左)", + "212500140": "c1250_ Poor Dead Elite _1-3 hands Saigi (right) -- c1250_貧民亡者エリート_1-3両手薙ぎ払い(右)", + "212500141": "c1250_ Poor Dead Elite _1-3 hands Saigi (left) -- c1250_貧民亡者エリート_1-3両手薙ぎ払い(左)", + "212500150": "c1250_ Poor Dead Elite _2-1 rounded up -- c1250_貧民亡者エリート_2-1切り上げ", + "212500160": "c1250_ Poor Dead Elite _2-2 Shiri -- c1250_貧民亡者エリート_2-2袈裟斬り", + "212500170": "c1250_ Poor Dead Elite _2-3 Shiri -- c1250_貧民亡者エリート_2-3袈裟斬り", + "212500180": "c1250_ Poor Dead Elite _x (right) -- c1250_貧民亡者エリート_X斬り(右)", + "212500181": "c1250_ Poor dead Elite _x (left) -- c1250_貧民亡者エリート_X斬り(左)", + "212500190": "c1250_ Poor Dead Elite _x (lunge) (right) -- c1250_貧民亡者エリート_X斬り(突進)(右)", + "212500191": "c1250_ Poor Dead Elite _x (lunge) (left) -- c1250_貧民亡者エリート_X斬り(突進)(左)", + "212500200": "C1250_ Poor dead Elite _ hands down (right) -- c1250_貧民亡者エリート_両手斬り下ろし(右)", + "212500201": "C1250_ Poor dead Elite _ hands down (left) -- c1250_貧民亡者エリート_両手斬り下ろし(左)", + "212500210": "C1250_ Poor dead Elite _ counter -- c1250_貧民亡者エリート_カウンター", + "212500220": "C1250_ Poor Dead Elite _ counter (perseverance) -- c1250_貧民亡者エリート_カウンター(踏ん張り)", + "212500230": "C1250_ Poor Dead Elite _ both hand thrusts (right) -- c1250_貧民亡者エリート_両手突き(右)", + "212500231": "C1250_ Poor Dead Elite _ both hand thrusts (left) -- c1250_貧民亡者エリート_両手突き(左)", + "212500240": "C1250_ Poor dead Elite _ left step attack -- c1250_貧民亡者エリート_左ステップ攻撃", + "212500250": "C1250_ Poor Dead Elite _ right-step attack -- c1250_貧民亡者エリート_右ステップ攻撃", + "212500260": "C1250_ Poor Dead Elite _ Ranbu 1-1: Right hand -- c1250_貧民亡者エリート_乱舞1-1:右手", + "212500261": "C1250_ Poor Dead Elite _ Ranbu 1-1: Left hand -- c1250_貧民亡者エリート_乱舞1-1:左手", + "212500270": "C1250_ Poor Dead Elite _ Ranbu 1-2: Right hand -- c1250_貧民亡者エリート_乱舞1-2:右手", + "212500271": "C1250_ Poor Dead Elite _ Ranbu 1-2: Left hand -- c1250_貧民亡者エリート_乱舞1-2:左手", + "212500280": "C1250_ Poor Dead Elite _ Ranbu 1-3: Right hand -- c1250_貧民亡者エリート_乱舞1-3:右手", + "212500281": "C1250_ Poor Dead Elite _ Ranbu 1-3: Left hand -- c1250_貧民亡者エリート_乱舞1-3:左手", + "212500700": "C1250_ Poor Dead Elite _ fire-blowing -- c1250_貧民亡者エリート_火吹き", + "212600100": "C1260_ Poor Dead _ Servant (saws) _1-1 both hand-out 1 -- c1260_貧民亡者_下男(ノコギリ)_1-1両手振り抜き1", + "212600110": "C1260_ Poor Dead _ Servant (saws) _1-2 both hand-out 2 -- c1260_貧民亡者_下男(ノコギリ)_1-2両手振り抜き2", + "212600120": "C1260_ Poor Dead _ Servant (Saws) _ Both hand grated -- c1260_貧民亡者_下男(ノコギリ)_両手振りおろし", + "212600130": "C1260_ Poor Dead _ Servant (SAW) _2-1 hand-grated -- c1260_貧民亡者_下男(ノコギリ)_2-1片手振りおろし", + "212600140": "C1260_ Poor Dead _ Servant (saws) _2-2 Bun -- c1260_貧民亡者_下男(ノコギリ)_2-2ぶん回し", + "212600150": "C1260_ Poor Dead _ Servant (Saws) _ Behind attack -- c1260_貧民亡者_下男(ノコギリ)_背後攻撃", + "212600160": "C1260_ Poor Dead _ Servant (Saws) _ _1 in rush attack -- c1260_貧民亡者_下男(ノコギリ)_ラッシュ攻撃_1段目", + "212600161": "C1260_ Poor Dead _ Servant (Saws) _ Rush Attack _2 -- c1260_貧民亡者_下男(ノコギリ)_ラッシュ攻撃_2段目", + "212600162": "C1260_ Poor Dead _ Servant (Saws) _ _3 in rush attack -- c1260_貧民亡者_下男(ノコギリ)_ラッシュ攻撃_3段目", + "212600163": "C1260_ Poor Dead _ Servant (Saws) _ Lash Attack _ slapping first stage -- c1260_貧民亡者_下男(ノコギリ)_ラッシュ攻撃_叩き1段目", + "212600164": "C1260_ Poor Dead _ Servant (Saws) _ Lash Attack _ slapping second stage -- c1260_貧民亡者_下男(ノコギリ)_ラッシュ攻撃_叩き2段目", + "212600165": "C1260_ Poor Dead _ Servant (Saws) _ Lash Attack _ slapping third stage -- c1260_貧民亡者_下男(ノコギリ)_ラッシュ攻撃_叩き3段目", + "212600180": "C1260_ Poor Dead _ Servant (Saws) _ Poised lunge (beating) -- c1260_貧民亡者_下男(ノコギリ)_構え突進(殴り)", + "212600181": "C1260_ Poor Dead _ Servant (Saws) _ poised lunge (pushing) -- c1260_貧民亡者_下男(ノコギリ)_構え突進(押し)", + "212600190": "C1260_ Poor Dead _ Servant (Saws) _ Pay from right (one hand): wait -- c1260_貧民亡者_下男(ノコギリ)_右から払い(片手):待機", + "212600191": "C1260_ Poor Dead _ Servant (Saws) _ Pay from left (one hand): wait -- c1260_貧民亡者_下男(ノコギリ)_左から払い(片手):待機", + "212600192": "C1260_ Poor Dead _ Servant (Saws) _ Pay from right (one hand): left-handed posture -- c1260_貧民亡者_下男(ノコギリ)_右から払い(片手):左払い姿勢", + "212600193": "C1260_ Poor Dead _ Servant (Saws) _ Pay from left (one hand): right-handed posture -- c1260_貧民亡者_下男(ノコギリ)_左から払い(片手):右払い姿勢", + "212600194": "C1260_ Poor Dead _ Servant (saws) _ Continuous Swing down: left-hand Posture _1 -- c1260_貧民亡者_下男(ノコギリ)_連続振り下ろし:左払い姿勢_1段目", + "212600195": "C1260_ Poor Dead _ Servant (saws) _ Continuous Swing down: left-hand position _2 -- c1260_貧民亡者_下男(ノコギリ)_連続振り下ろし:左払い姿勢_2段目", + "212600196": "C1260_ Poor Dead _ Servant (saws) _ Continuous Swing down: left-hand Posture _3 -- c1260_貧民亡者_下男(ノコギリ)_連続振り下ろし:左払い姿勢_3段目", + "212600300": "C1260_ Poor Dead _ Servant (mortar) _ Knocked back against -- c1260_貧民亡者_下男(臼)_叩き付け", + "212600310": "C1260_ Poor Dead _ Servant (mortar) _ Knocked back against 2 -- c1260_貧民亡者_下男(臼)_叩き付け2", + "212600311": "C1260_ Poor Dead _ Servant (mortar) _ Kari (bearers posture) -- c1260_貧民亡者_下男(臼)_飛び掛かり(担ぎ姿勢)", + "212600312": "C1260_ Poor Dead _ Servant (mortar) _ left knocked back against -- c1260_貧民亡者_下男(臼)_左叩き付け", + "212600313": "C1260_ Poor Dead _ Servant (mortar) _ Right knocked back against -- c1260_貧民亡者_下男(臼)_右叩き付け", + "212600320": "C1260_ Poor Dead _ Servant (mortar) _ lifted knocked back against -- c1260_貧民亡者_下男(臼)_持ち上げ叩き付け", + "212600700": "C1260_ Poor Dead _ Servant (mortar) _ Mortar throw -- c1260_貧民亡者_下男(臼)_臼投げ", + "212600701": "C1260_ Poor Dead _ Servant (mortar) _ a mortar throw (bearers) -- c1260_貧民亡者_下男(臼)_臼投げ(担ぎ姿勢)", + "212800100": "C1280_ Shin Ojo Knight (Straight Sword + shield): Right Kesa cut -- c1280_新王城騎士(直剣+盾):右袈裟切り", + "212800101": "C1280_ Shin Ojo Knight (Straight Sword + shield): Left Whack -- c1280_新王城騎士(直剣+盾):左薙ぎ", + "212800102": "C1280_ Shin Ojo Knight (Straight Sword + shield): depression thrust -- c1280_新王城騎士(直剣+盾):踏み込み突き", + "212800110": "C1280_ Shin Ojo Knight (Straight Sword + shield): Left Swing -- c1280_新王城騎士(直剣+盾):左横振り", + "212800111": "C1280_ Shin Ojo Knight (Straight Sword + shield): Right -- c1280_新王城騎士(直剣+盾):右横振り", + "212800120": "C1280_ Shin Ojo Knight (Straight Sword + shield): Rush Butt -- c1280_新王城騎士(直剣+盾):突進突き", + "212800130": "C1280_ Shin Ojo Knight (Straight Sword + shield): Shield Bash -- c1280_新王城騎士(直剣+盾):盾バッシュ", + "212800140": "C1280_ Shin Ojo Knight (Straight Sword + shield): thrust -- c1280_新王城騎士(直剣+盾):構え突き", + "212800150": "C1280_ Shin Ojo Knight (Straight Sword + shield): Roll up -- c1280_新王城騎士(直剣+盾):構え巻き上げ", + "212800160": "C1280_ Shin Ojo Knight (Straight Sword + shield): counterattack from endure -- c1280_新王城騎士(直剣+盾):耐えるからの反撃", + "212800170": "c1280_ New Ojo Knight (Straight Sword + shield): Left side attack -- c1280_新王城騎士(直剣+盾):左側面攻撃", + "212800180": "C1280_ Shin Ojo Knight (Straight Sword + shield): Right flank attack -- c1280_新王城騎士(直剣+盾):右側面攻撃", + "212800300": "C1280_ Shin Ojo Knight (Spear + shield): Guard Butt 1 -- c1280_新王城騎士(槍+盾):ガード突き1", + "212800301": "C1280_ Shin Ojo Knight (Spear + shield): Guard Butt 2 -- c1280_新王城騎士(槍+盾):ガード突き2", + "212800310": "C1280_ Shin Ojo Knight (Spear + shield): Rush Butt (last) -- c1280_新王城騎士(槍+盾):突進突き(最後)", + "212800311": "C1280_ Shin Ojo Knight (Spear + shield): Rush Butt (in charge) -- c1280_新王城騎士(槍+盾):突進突き(突進中)", + "212800320": "c1280_ New Ojo Knight (Spear + shield): Shield Bash -- c1280_新王城騎士(槍+盾):盾バッシュ", + "212800330": "c1280_ New Ojo Knight (Spear + shield): Poised plunge thrust -- c1280_新王城騎士(槍+盾):構え飛び込み突き", + "212800340": "c1280_ New Ojo Knight (Spear + shield): stance short-range thrust -- c1280_新王城騎士(槍+盾):構え近距離突き", + "212800350": "C1280_ Shin Ojo Knight (Spear + shield): Withstand counterattack -- c1280_新王城騎士(槍+盾):耐える反撃", + "212800360": "C1280_ Shin Ojo Knight (Spear + shield): Infuser Butt -- c1280_新王城騎士(槍+盾):溜め突き", + "212800370": "c1280_ New Ojo Knight (Spear + shield): Whack attack -- c1280_新王城騎士(槍+盾):薙ぎ攻撃", + "212800500": "C1280_ Shin Ojo Knight (large sword): slams -- c1280_新王城騎士(大剣):叩きつけ", + "212800510": "C1280_ Shin Ojo Knight (large sword): Right Saigi -- c1280_新王城騎士(大剣):右薙ぎ払い", + "212800520": "C1280_ Shin Ojo Knight (large sword): Left Saigi -- c1280_新王城騎士(大剣):左薙ぎ払い", + "212800530": "C1280_ Shin Ojo Knight (large sword): Rush Saigi -- c1280_新王城騎士(大剣):突進薙ぎ払い", + "212800540": "C1280_ Shin Ojo Knight (large sword): Infuser Butt -- c1280_新王城騎士(大剣):溜め突き", + "212800550": "c1280_ New Ojo Knight (large sword): Behind the attack -- c1280_新王城騎士(大剣):背後攻撃", + "212800560": "C1280_ Shin Ojo Knight (Great Sword): depression -- c1280_新王城騎士(大剣):踏み込み", + "212800570": "C1280_ Shin-Ojo Knight (large sword): stepping Round -- c1280_新王城騎士(大剣):踏み込み切り上げ", + "212800580": "C1280_ Shin Ojo Knight (large sword): Swing Down (reservoir) -- c1280_新王城騎士(大剣):振り下ろし(溜め)", + "212800590": "C1280_ Shin Ojo Knight (large sword): Whack Kesa (infuser): Wait -- c1280_新王城騎士(大剣):薙ぎ袈裟(溜め):待機", + "212800600": "C1280_ Shin Ojo Knight (large sword): thrusting -- c1280_新王城騎士(大剣):突き", + "212800610": "C1280_ Shin Ojo Knight (large sword): Reverse Whack: stepping Posture -- c1280_新王城騎士(大剣):逆薙ぎ:踏み込み姿勢", + "212800620": "C1280_ Shin Ojo Knight (large sword): pattern Extrusion -- c1280_新王城騎士(大剣):柄押し出し", + "212800630": "C1280_ Shin Ojo Knight (large sword): Whack Swinging: enduring posture -- c1280_新王城騎士(大剣):薙ぎ振り上げ:耐える姿勢", + "212800640": "C1280_ Shin Ojo Knight (large Sword): Kesa (left side): Wait -- c1280_新王城騎士(大剣):袈裟切り(左側面):待機", + "212800650": "C1280_ Shin Ojo Knight (large sword): Reverse Kesa (right side): Wait -- c1280_新王城騎士(大剣):逆袈裟(右側面):待機", + "212800700": "C1280_ Shin Ojo Knight (bow): shooting -- c1280_新王城騎士(弓):射撃", + "212800701": "C1280_ Shin Ojo Knight (bow): Shooting Combo -- c1280_新王城騎士(弓):射撃コンボ", + "212800900": "C1280_ Shin Ojo Knight (sword): Guard -- c1280_新王城騎士(剣):ガード", + "212800910": "C1280_ Shin Ojo Knight (Spear): Guard -- c1280_新王城騎士(槍):ガード", + "212800920": "C1280_ Shin Ojo Knight (large sword): Guard -- c1280_新王城騎士(大剣):ガード", + "212900100": "C1290_ Ojo Deb (Long axe): Swing Down (Blade) -- c1290_王城デブ(長斧):思い切り振りおろし(刃)", + "212900110": "C1290_ Ojo Deb (Long Axe): Combo ①-1 Angled Swing (blade) -- c1290_王城デブ(長斧):コンボ①~1 斜めに振り上げ(刃)", + "212900111": "C1290_ Ojo Deb (Long Axe): Combo ①-2 (Blade) -- c1290_王城デブ(長斧):コンボ①~2 振り下ろし(刃)", + "212900112": "C1290_ Ojo Deb (Long Axe): Combo ①-3 (Blade) -- c1290_王城デブ(長斧):コンボ①~3 振り下ろし(刃)", + "212900120": "C1290_ Ojo Deb (Long Axe): Compact and grated (blade) -- c1290_王城デブ(長斧):コンパクトに振りおろし(刃)", + "212900130": "C1290_ Ojo Deb (Long Axe): Combo ②-1 Saigi (Blade) -- c1290_王城デブ(長斧):コンボ②~1 薙ぎ払い (刃)", + "212900131": "C1290_ Ojo Deb (Long Axe): Combo ②-2 Saigi (Blade) -- c1290_王城デブ(長斧):コンボ②~2 薙ぎ払い (刃)", + "212900132": "C1290_ Ojo Deb (Long Axe): Combo ②-2, grated from the reservoir (Blade) -- c1290_王城デブ(長斧):コンボ②~2 ちょい溜めからの振りおろし(刃)", + "212900140": "C1290_ Ojo Deb (Long Axe): Running Down (Blade) -- c1290_王城デブ(長斧):走りながらの振りおろし(刃)", + "212900150": "C1290_ Ojo Deb (Long Axe): Force -- c1290_王城デブ(長斧):フォース", + "212900160": "C1290_ Ojo Deb (Long Axe): Rotation attack Combo First stage: Rotating part (Blade) -- c1290_王城デブ(長斧):回転攻撃コンボ 1段目:回転部(刃)", + "212900161": "C1290_ Ojo Deb (Long Axe): Rotation attack Combo first stage: Pay part (Blade) -- c1290_王城デブ(長斧):回転攻撃コンボ 1段目:払い部(刃)", + "212900170": "C1290_ Ojo Deb (Long Axe): Rotation attack Combo Second stage: Rotating part (Blade) -- c1290_王城デブ(長斧):回転攻撃コンボ 2段目:回転部(刃)", + "212900171": "C1290_ Ojo Deb (Long Axe): Rotating attack Combo Second stage: Pay part (Blade) -- c1290_王城デブ(長斧):回転攻撃コンボ 2段目:払い部(刃)", + "212900180": "C1290_ Ojo Deb (Long Axe): Rotation attack Combo Third stage: rotating part (Blade) -- c1290_王城デブ(長斧):回転攻撃コンボ 3段目:回転部(刃)", + "212900181": "C1290_ Ojo Deb (Long Axe): Rotation attack combo third stage: Pay part (Blade) -- c1290_王城デブ(長斧):回転攻撃コンボ 3段目:払い部(刃)", + "212900190": "C1290_ Ojo (Long Axe): Miracle: The light of the pillar dancing -- c1290_王城デブ(長斧):奇蹟:光の柱乱舞 予兆", + "212900191": "C1290_ Ojo Deb (Long Axe): Miracles: Columns of light, dance pillar of Light -- c1290_王城デブ(長斧):奇蹟:光の柱乱舞 光の柱", + "212900192": "C1290_ Ojo Deb (Long Axe): Miracles: The Pillar of Light danced -- c1290_王城デブ(長斧):奇蹟:光の柱乱舞 着弾", + "212900193": "C1290_ Ojo (Long Axe): Miracle: A shock wave in the motion of a pillar of light -- c1290_王城デブ(長斧):奇蹟:光の柱乱舞 発動時の衝撃波", + "212900194": "C1290_ Ojo (Long Axe): Miracle: The column of Light dancing signs (short distance) -- c1290_王城デブ(長斧):奇蹟:光の柱乱舞 予兆(近距離)", + "212900195": "C1290_ Ojo (Long Axe): Miracles: A sign of the light of a pillar (target directly) -- c1290_王城デブ(長斧):奇蹟:光の柱乱舞 予兆(ターゲット真上)", + "212900200": "C1290_ Ojo Deb (Long axe): Swinging Down (stick) -- c1290_王城デブ(長斧):思い切り振りおろし(棒)", + "212900210": "C1290_ Ojo Deb (Long Axe): Combo ①-1 Angled Swing (rod) -- c1290_王城デブ(長斧):コンボ①~1 斜めに振り上げ(棒)", + "212900211": "C1290_ Ojo Deb (Long Axe): Combo ①-2 (Rod) -- c1290_王城デブ(長斧):コンボ①~2 振り下ろし(棒)", + "212900212": "C1290_ Ojo Deb (Long Axe): Combo ①-3 (Rod) -- c1290_王城デブ(長斧):コンボ①~3 振り下ろし(棒)", + "212900220": "C1290_ Ojo Deb (Long Axe): compact and grated (stick) -- c1290_王城デブ(長斧):コンパクトに振りおろし(棒)", + "212900230": "C1290_ Ojo Deb (Long Axe): Combo ②-1 Saigi (stick) -- c1290_王城デブ(長斧):コンボ②~1 薙ぎ払い (棒)", + "212900231": "C1290_ Ojo Deb (Long Axe): Combo ②-2 Saigi (stick) -- c1290_王城デブ(長斧):コンボ②~2 薙ぎ払い (棒)", + "212900232": "C1290_ Ojo Deb (Long Axe): Combo ②-2, grated from the reservoir (stick) -- c1290_王城デブ(長斧):コンボ②~2 ちょい溜めからの振りおろし(棒)", + "212900240": "C1290_ Ojo Deb (Long Axe): Running Down (stick) -- c1290_王城デブ(長斧):走りながらの振りおろし(棒)", + "212900260": "C1290_ Ojo Deb (Long Axe): Rotation attack Combo First stage: Rotating section (rod) -- c1290_王城デブ(長斧):回転攻撃コンボ 1段目:回転部(棒)", + "212900261": "C1290_ Ojo Deb (Long Axe): Rotation attack Combo first stage: Pay part (rod) -- c1290_王城デブ(長斧):回転攻撃コンボ 1段目:払い部(棒)", + "212900270": "C1290_ Ojo Deb (Long Axe): Rotation attack Combo Second Stage: Rotating section (rod) -- c1290_王城デブ(長斧):回転攻撃コンボ 2段目:回転部(棒)", + "212900271": "C1290_ Ojo Deb (Long Axe): Rotating attack Combo Second stage: Pay part (rod) -- c1290_王城デブ(長斧):回転攻撃コンボ 2段目:払い部(棒)", + "212900280": "C1290_ Ojo Deb (Long Axe): Rotation attack Combo Third stage: Rotating section (rod) -- c1290_王城デブ(長斧):回転攻撃コンボ 3段目:回転部(棒)", + "212900281": "C1290_ Ojo Deb (Long Axe): Rotation attack combo third stage: Pay part (rod) -- c1290_王城デブ(長斧):回転攻撃コンボ 3段目:払い部(棒)", + "212900300": "C1290_ Ojo Deb (ax Nitori): Combo ① ~ 1 Right axe slash 1 -- c1290_王城デブ(斧二刀流):コンボ①~1 右斧斬り払い 1", + "212900301": "C1290_ Ojo Deb (ax Nitori): Combo ①-2 left axe slash 2 -- c1290_王城デブ(斧二刀流):コンボ①~2 左斧斬り払い 2", + "212900302": "C1290_ Ojo Deb (ax Nitori): Combo ①-3 Right axe swing -- c1290_王城デブ(斧二刀流):コンボ①~3 右斧振りおろし", + "212900303": "C1290_ Ojo Deb (ax Nitori): Combo ①-4 left axe swing grated -- c1290_王城デブ(斧二刀流):コンボ①~4 左斧振りおろし", + "212900304": "C1290_ Ojo Deb (ax Nitori): Combo ① ~ 3-Car ax swing grated -- c1290_王城デブ(斧二刀流):コンボ①~3 両斧振りおろし", + "212900310": "C1290_ Ojo Deb (ax Nitori): both axe grated -- c1290_王城デブ(斧二刀流):両斧振りおろし", + "212900320": "C1290_ Ojo Deb (ax Nitori): Cut to tuck in both axes -- c1290_王城デブ(斧二刀流):両斧で挟み込むように切る", + "212900330": "C1290_ Ojo Deb (ax Nitori): Force -- c1290_王城デブ(斧二刀流):フォース", + "212900340": "C1290_ Ojo Deb (ax Nitori): Combo ② ~ 1 Left Axe -- c1290_王城デブ(斧二刀流):コンボ②~1 左斧横払い", + "212900341": "C1290_ Ojo Deb (ax Nitori): Combo ② ~ 2-Car Axe slash -- c1290_王城デブ(斧二刀流):コンボ②~2 両斧斬り払い", + "212900350": "C1290_ Ojo Deb (ax Nitori): Cross-slash with both axes _ right hand -- c1290_王城デブ(斧二刀流):両斧でクロス斬り_右手", + "212900351": "C1290_ Ojo Deb (ax Nitori): Cross-slash with both axes _ left hand -- c1290_王城デブ(斧二刀流):両斧でクロス斬り_左手", + "212900360": "C1290_ Ojo Deb (axe Nitori): Reverse cross Slash -- c1290_王城デブ(斧二刀流):前転逆クロス斬り", + "212900370": "C1290_ Ojo Deb (axe Nitori): Rotating both axe slash -- c1290_王城デブ(斧二刀流):回転両斧斬り", + "212900380": "C1290_ Ojo Deb (ax Nitori): Ax throwing left -- c1290_王城デブ(斧二刀流):斧投擲 左", + "212900381": "C1290_ Ojo Deb (ax Nitori): Ax throwing right -- c1290_王城デブ(斧二刀流):斧投擲 右", + "213000100": "C1300_ Black Knight: left Kesa cut -- c1300_黒騎士:左袈裟切り", + "213000101": "c1300_ Black Knight: Right Whack -- c1300_黒騎士:右薙ぎ", + "213000102": "c1300_ Black Knight: thrusting -- c1300_黒騎士:突き", + "213000103": "C1300_ Black Knight: Swing Down -- c1300_黒騎士:振り下ろし", + "213000104": "C1300_ Black Knight: Infuser Combo -- c1300_黒騎士:溜め斬り・コンボ", + "213000110": "C1300_ Black Knight: Infuser, simple -- c1300_黒騎士:溜め斬り・単", + "213000120": "C1300_ Black Knight: beat with a shield -- c1300_黒騎士:盾で殴る", + "213000121": "C1300_ Black Knight: Rush Butt -- c1300_黒騎士:突進突き", + "213000300": "C1300_ Black Knight (oversized sword): Pay: Wait -- c1300_黒騎士(特大剣):払い:待機", + "213000310": "C1300_ Black Knight (oversized sword): reversal: Payment Attitude -- c1300_黒騎士(特大剣):逆払い:払い姿勢", + "213000320": "C1300_ Black Knight (oversized sword): Pay: Attitude -- c1300_黒騎士(特大剣):払い:逆払い姿勢", + "213000330": "C1300_ Black Knight (oversized sword): Rotation swing down: pay attitude -- c1300_黒騎士(特大剣):回転振り下ろし:払い姿勢", + "213000340": "C1300_ Black Knight (oversized sword): Swing down: posture of reversed payment -- c1300_黒騎士(特大剣):振り下ろし:逆払い姿勢", + "213000350": "C1300_ Black Knight (oversized sword): Swing Down: Wait -- c1300_黒騎士(特大剣):振り下ろし:待機", + "213000360": "C1300_ Black Knight (oversized sword): Reverse payment: Swing down posture -- c1300_黒騎士(特大剣):逆払い:振り下ろし姿勢", + "213000370": "C1300_ Black Knight (oversized sword): poking: Waiting -- c1300_黒騎士(特大剣):突き:待機", + "213000380": "C1300_ Black Knight (oversized sword): Thrust: Posture -- c1300_黒騎士(特大剣):突き:逆払い姿勢", + "213000390": "C1300_ Black Knight (oversized sword): rotating Butt: Pay attitude -- c1300_黒騎士(特大剣):回転突き:払い姿勢", + "213000400": "C1300_ Black Knight (oversized sword): two or three steps to swing -- c1300_黒騎士(特大剣):2、3歩踏み込んで振り下ろす", + "213000410": "C1300_ Black Knight (oversized sword): two or three steps to poke -- c1300_黒騎士(特大剣):2、3歩踏み込んで突く", + "213000420": "C1300_ Black Knight (oversized sword): Beat with a shield -- c1300_黒騎士(特大剣):盾で殴る", + "213000430": "C1300_ Black Knight (oversized sword): Dragon Hunt, one-handed thrust -- c1300_黒騎士(特大剣):竜狩り・片手突き上げ", + "213000440": "C1300_ Black Knight (oversized sword): Dragon Hunt, two hands swing -- c1300_黒騎士(特大剣):竜狩り・両手振り上げ", + "213000441": "C1300_ Black Knight (oversized sword): Dragon Hunt, hands Up (preliminary operation) -- c1300_黒騎士(特大剣):竜狩り・両手振り上げ(予備動作)", + "213000450": "C1300_ Black Knight (oversized sword): behind reverse Whack -- c1300_黒騎士(特大剣):背後逆薙ぎ", + "213000500": "C1300_ Black Knight (axe): Right Kesa -- c1300_黒騎士(斧):右袈裟", + "213000510": "C1300_ Black Knight (axe): Left Kesa: Right Kesa Posture -- c1300_黒騎士(斧):左袈裟:右袈裟姿勢", + "213000520": "C1300_ Black Knight (Axe): swinging: Left Kesa posture -- c1300_黒騎士(斧):振り上げ:左袈裟姿勢", + "213000530": "C1300_ Black Knight (axe): slams: Left Kesa posture -- c1300_黒騎士(斧):叩きつけ:左袈裟姿勢", + "213000540": "C1300_ Black Knight (ax): Swing down and simply -- c1300_黒騎士(斧):振り下ろし・単", + "213000550": "C1300_ Black Knight (axe): swing-up -- c1300_黒騎士(斧):振り上げ・単", + "213000560": "C1300_ Black Knight (axe): Beat with a shield -- c1300_黒騎士(斧):盾で殴る", + "213000570": "C1300_ Black Knight (axe): Pay from the left: swing attitude -- c1300_黒騎士(斧):左から払う:振り上げ姿勢", + "213000580": "C1300_ Black Knight (axe): One or two steps to pay -- c1300_黒騎士(斧):1、2歩踏み込んで払う", + "213000590": "C1300_ Black Knight (axe): Two, three steps pounding -- c1300_黒騎士(斧):2、3歩踏み込んで叩きつける", + "213000600": "C1300_ Black Knight (ax): Dragon Hunt, jump and swing down -- c1300_黒騎士(斧):竜狩り・飛び上がって振り下ろし", + "213000610": "C1300_ Black Knight (axe): Dragon Hunt, hands up -- c1300_黒騎士(斧):竜狩り・両手振り上げ", + "213000611": "C1300_ Black Knight (axe): Dragon Hunt, hands Up (preliminary operation) -- c1300_黒騎士(斧):竜狩り・両手振り上げ(予備動作)", + "213000620": "C1300_ Black Knight (AX): Behind continuous attack -- c1300_黒騎士(斧):背後連続攻撃", + "213000621": "C1300_ Black Knight (AX): Behind continuous attack -- c1300_黒騎士(斧):背後連続攻撃_2撃目", + "213000630": "C1300_ Black Knight (axe): Slams (feint): Left Kesa Posture -- c1300_黒騎士(斧):叩きつけ(フェイント):左袈裟姿勢", + "213000700": "C1300_ Black Knight: one poke while guarding -- c1300_黒騎士:ガードしながら突く1", + "213000701": "C1300_ Black Knight Guards while poke 2 -- c1300_黒騎士ガードしながら突く2", + "213000702": "C1300_ Black Knight Guards while poke 3 -- c1300_黒騎士ガードしながら突く3", + "213000703": "C1300_ Black Knight (spear) Nagi combo -- c1300_黒騎士(槍)なぎ払い・コンボ", + "213000710": "C1300_ Black Knight Strong attack -- c1300_黒騎士強攻撃", + "213000720": "c1300_, Black Knight, two, three steps. -- c1300_黒騎士2、3歩踏み込んだ勢いで突く", + "213000730": "C1300_ Black Knight (spear) Nagi -- c1300_黒騎士(槍)なぎ払い・単", + "213000731": "C1300_ Black Knight (spear) Nagi 2 -- c1300_黒騎士(槍)なぎ払い2", + "213000732": "C1300_ Black Knight (spear) thrust and Nagi -- c1300_黒騎士(槍)突き・なぎ払いから", + "213000740": "C1300_ Black Knight (spear) Nagi-strong -- c1300_黒騎士(槍)なぎ払い・強", + "213000750": "C1300_ Black Knight (spear) PC diversion/one-handed attack -- c1300_黒騎士(槍)PC流用・片手攻撃", + "213000751": "C1300_ Black Knight (spear) PC diversion/One-handed attack (preliminary operation) -- c1300_黒騎士(槍)PC流用・片手攻撃 (予備動作)", + "213000760": "C1300_ Black Knight (spear) PC Diversion/Jump Slash -- c1300_黒騎士(槍)PC流用・ジャンプ斬り", + "213000770": "C1300_ the Black Knight (spear) Shield -- c1300_黒騎士(槍)盾を構えて突進", + "213000900": "C1300_ Black Knight (spear) Shield -- c1300_黒騎士(槍)盾", + "213100100": "C1310_ Dark Knight Beast: Sword Up -- c1310_ダークナイトビースト:斬り上げ", + "213100101": "C1310_ Dark Knight beast: Swinging from the sword -- c1310_ダークナイトビースト:斬り上げからの振りおろし", + "213100110": "C1310_ Dark Knight beast: Back Up -- c1310_ダークナイトビースト:後ろ斬り上げ", + "213100111": "C1310_ Dark Knight beast: Swing from behind -- c1310_ダークナイトビースト:後ろ斬り上げからの振りおろし", + "213100120": "C1310_ Dark Knight Beast: Whack Stage -- c1310_ダークナイトビースト:薙ぎ 初段", + "213100130": "C1310_ Dark Knight Beast: Whack next stage -- c1310_ダークナイトビースト:薙ぎ 次段", + "213100140": "C1310_ Dark Knight Beast: Left 90 ° swivel whack -- c1310_ダークナイトビースト:左90°旋回薙ぎ", + "213100150": "C1310_ Dark Knight Beast: Right 90 ° swivel whack -- c1310_ダークナイトビースト:右90°旋回薙ぎ", + "213100160": "C1310_ Dark Knight Beast: thrusting -- c1310_ダークナイトビースト:突き", + "213100170": "C1310_ Dark Knight beast: jumping and attacking -- c1310_ダークナイトビースト:跳びかかり攻撃", + "213100180": "C1310_ Dark Knight Beast: Breath -- c1310_ダークナイトビースト:ブレス", + "213100182": "C1310_ Dark Knight Beast: Breath _ Decal -- c1310_ダークナイトビースト:ブレス_デカール", + "213100190": "C1310_ Dark Knight Beast: Left Whack -- c1310_ダークナイトビースト:左薙ぎ", + "213100200": "C1310_ Dark Knight Beast: Rush first stage -- c1310_ダークナイトビースト:ラッシュ1段目", + "213100201": "C1310_ Dark Knight Beast: Rush second Stage -- c1310_ダークナイトビースト:ラッシュ2段目", + "213200100": "Crystal Spear -- 結晶の槍", + "213200110": "A mass of drifting crystals -- 漂う結晶の塊", + "213200130": "Ally Buff -- 味方バフ", + "213200140": "High Speed straight line Magic (launch) -- 高速直線魔法(発射)", + "213200141": "Fast Line Magic (search) -- 高速直線魔法(検索)", + "213200142": "High Speed straight line magic (impact) -- 高速直線魔法(着弾)", + "213200143": "High Speed straight line magic (remaining) -- 高速直線魔法(残存)", + "213200150": "Drenched crystal bullets (parent) -- 降り注ぐ結晶弾(親)", + "213200151": "Drenched crystal bullets (hygiene) -- 降り注ぐ結晶弾(衛生)", + "213200152": "Drenched Crystal bullets (child) -- 降り注ぐ結晶弾(子)", + "213200153": "Falling crystal bullets (explosion) -- 降り注ぐ結晶弾(爆発)", + "213200155": "Drenched crystal bullets (parent) -- 降り注ぐ結晶弾(親)", + "213200160": "Proximity explosion (parent) -- 近接爆発(親)", + "213200161": "Proximity explosion (child) -- 近接爆発(子)", + "213200170": "Crystal Wall (PC follower) -- 結晶壁(PC追従)", + "213200190": "Crystal Storm Dancing Signs -- 結晶の嵐乱舞 予兆", + "213200191": "Crystal Storm dancing Crystal Storm -- 結晶の嵐乱舞 結晶の嵐", + "213200192": "The storm of Crystals danced -- 結晶の嵐乱舞 着弾", + "213200193": "Shock wave of crystal storm dancing -- 結晶の嵐乱舞 発動時の衝撃波", + "213200194": "Crystal Storm Dancing signs (short distance) -- 結晶の嵐乱舞 予兆(近距離)", + "213200195": "Crystal Storm dancing sign (target directly above) -- 結晶の嵐乱舞 予兆(ターゲット真上)", + "213200300": "Butt: Throwing Start -- 突き:投げ始動", + "213200310": "2 Consecutive payments: 1 payment -- 2連続払い:払い1", + "213200311": "2 Consecutive payments: Payment 2 -- 2連続払い:払い2", + "213300100": "C1330_ Forest Keeper (Long Axe): Swinging (Blade) -- c1330_森の番人(長斧):振りおろし(刃)", + "213300101": "C1330_ Forest Keeper (Long Axe): Pay (Blade) (for combo) -- c1330_森の番人(長斧):払い(刃)(コンボ用)", + "213300110": "C1330_ Forest Keeper (Long Axe): Nagi (Blade) -- c1330_森の番人(長斧):なぎ払い(刃)", + "213300120": "C1330_ Forest Keeper (Long Axe): Reverse Nagi (Blade) -- c1330_森の番人(長斧):逆なぎ払い(刃)", + "213300130": "C1330_ Forest Keeper (Long Axe): Execution attack (Blade) -- c1330_森の番人(長斧):処刑攻撃(刃)", + "213300140": "C1330_ Forest Keeper (Long axe): stepping Down (Blade) -- c1330_森の番人(長斧):踏み込み振り下ろし(刃)", + "213300150": "C1330_ Forest Keeper (Long Axe): Pre-kick -- c1330_森の番人(長斧):前蹴り", + "213300160": "C1330_ Forest Keeper (Long Axe): Endure (for counter) -- c1330_森の番人(長斧):耐える(カウンター用)", + "213300161": "C1330_ Forest Keeper (Long Axe): Head butt -- c1330_森の番人(長斧):頭突き", + "213300200": "C1330_ Forest Keeper (Long Axe): Swing (Rod) -- c1330_森の番人(長斧):振りおろし(棒)", + "213300201": "C1330_ Forest Keeper (Long Axe): Pay (stick) (for combo) -- c1330_森の番人(長斧):払い(棒)(コンボ用)", + "213300210": "C1330_ Forest Keeper (Long Axe): Nagi (Rod) -- c1330_森の番人(長斧):なぎ払い(棒)", + "213300220": "C1330_ Forest Keeper (Long Axe): Reverse Nagi (stick) -- c1330_森の番人(長斧):逆なぎ払い(棒)", + "213300230": "C1330_ Forest Keeper (Long Axe): Execution Attack (rod) -- c1330_森の番人(長斧):処刑攻撃(棒)", + "213300240": "C1330_ Forest Keeper (Long axe): Stepping down (stick) -- c1330_森の番人(長斧):踏み込み振り下ろし(棒)", + "213300300": "C1330_ Forest Keeper (sword): DV Combo 1: Swing Down -- c1330_森の番人(大剣):DVコンボ1:振り下ろし", + "213300301": "C1330_ Forest Keeper (sword): DV Combo 2: Swing Down -- c1330_森の番人(大剣):DVコンボ2:振り下ろし", + "213300302": "C1330_ Forest Keeper (sword): DV Combo 3: Strong attack -- c1330_森の番人(大剣):DVコンボ3:強攻撃", + "213300310": "C1330_ Forest Keeper (large sword): both hands guillotine -- c1330_森の番人(大剣):両手ギロチン", + "213300320": "C1330_ Forest Keeper (sword): Pay (before-left) -- c1330_森の番人(大剣):払い(前~左)", + "213300330": "C1330_ The Keeper of the Forest (large sword): Reverse payment (front to right) -- c1330_森の番人(大剣):逆払い(前~右)", + "213300340": "C1330_ Forest Keeper (large sword): Asai -- c1330_森の番人(大剣):足払い", + "213300350": "The keeper of the C1330_ Forest (sword): Depression attack -- c1330_森の番人(大剣):踏み込み攻撃", + "213300360": "C1330_ Forest Keeper (sword): Endure (for counter) -- c1330_森の番人(大剣):耐える(カウンター用)", + "213300361": "C1330_ Forest Keeper (sword): Head Butt -- c1330_森の番人(大剣):頭突き", + "213400070": "C1340_ dead: Beat up _ First stage -- c1340_蝋の死人:殴る_一段目", + "213400071": "C1340_ dead: Beat up _ Two -- c1340_蝋の死人:殴る_二段目", + "213400080": "The dead of c1340_ wax: depression thrust -- c1340_蝋の死人:踏み込み突き刺し", + "213400090": "Dead of c1340_ Wax: Infuser beating -- c1340_蝋の死人:溜め殴り", + "213400700": "The dead of c1340 wax: the arrow of Seoul -- c1340 蝋の死人:ソウルの矢", + "213400710": "The dead of c1340 wax: A Spear of disturbed soul -- c1340 蝋の死人:乱れるソウルの槍", + "213400720": "c1340 dead: Wax _ knocked back against: long distance -- c1340 蝋の死人:蝋弾_叩き付け:遠距離", + "213400730": "c1340 dead: Wax _ Saigi -- c1340 蝋の死人:蝋弾_薙ぎ払い", + "213400740": "c1340 dead: Wax _ knocked back against: close range -- c1340 蝋の死人:蝋弾_叩き付け:近距離", + "213500100": "c1350_ slave Spirit (Dagger): Swing down _1 -- c1350_奴隷霊(短剣):振り下ろし_1段目", + "213500110": "c1350_ slave Spirits (dagger): Swing Down -- c1350_奴隷霊(短剣):振り下ろし_2段目", + "213500120": "c1350_ slave Spirit (Dagger): Swing Down _3 -- c1350_奴隷霊(短剣):振り下ろし_3段目", + "213500150": "c1350_ slave Spirits (dagger): both -- c1350_奴隷霊(短剣):両手振り下ろし", + "213500160": "c1350_ slave Spirits (dagger): Running thrust -- c1350_奴隷霊(短剣):走り突き刺し", + "213500170": "c1350_ slave Spirit (Dagger): the _1 Stage -- c1350_奴隷霊(短剣):斬り払い_1段目", + "213500180": "c1350_ slave Spirit (Dagger): The Sword -- c1350_奴隷霊(短剣):斬り払い_2段目", + "213500200": "c1350_ slave Spirits (fetters): Shouting -- c1350_奴隷霊(足枷):叫び", + "213500300": "c1350_ slave spirits (without legs): lateral payment -- c1350_奴隷霊(足なし):横払い", + "213500310": "c1350_ slave spirits (without legs): front slash -- c1350_奴隷霊(足なし):正面斬り払い", + "213500320": "c1350_ slave spirits (without legs): piercing -- c1350_奴隷霊(足なし):突き刺し", + "213500330": "c1350_ slave spirits (without legs): Rampage shook _1 -- c1350_奴隷霊(足なし):暴れ振り払い_1段目", + "213500331": "c1350_ slave spirits (without legs): Rampage shook -- c1350_奴隷霊(足なし):暴れ振り払い_2段目", + "213500340": "c1350_ slave spirits (without legs): falling throw -- c1350_奴隷霊(足なし):落下投げ", + "213500341": "c1350_ slave spirits (without legs): throwing damage -- c1350_奴隷霊(足なし):投げダメージ", + "213500400": "c1350_ slave Spirit (Straight Sword): Take the right hand -- c1350_奴隷霊(直剣):右手斬りかかり", + "213500410": "c1350_ slave Spirit (Straight Sword): Right hand cut back -- c1350_奴隷霊(直剣):右手斬り返し", + "213500420": "c1350_ slave Spirit (Straight Sword): Right hand Swing -- c1350_奴隷霊(直剣):右手振り下ろし", + "213500430": "c1350_ slave Spirit (Straight sword): both -- c1350_奴隷霊(直剣):両手振り下ろし", + "213500440": "c1350_ slave Spirit (Straight sword): The running slash -- c1350_奴隷霊(直剣):走り斬りかかり", + "213500450": "c1350_ slave Spirit (Straight sword): protruding slash -- c1350_奴隷霊(直剣):突き出し斬り", + "213500460": "c1350_ Slave Spirits (Straight sword): shook -- c1350_奴隷霊(直剣):振り払い", + "213600100": "C1360_ Crucifixion dead A: Throwing transition 1 -- c1360_磔亡者A:投げ遷移1", + "213600110": "C1360_ Crucifixion dead A: throwing transition 2 -- c1360_磔亡者A:投げ遷移2", + "213600200": "C1360_ Crucifixion dead A: tossed -- c1360_磔亡者A:投げ", + "213700100": "C1370_ Crucifixion dead B: Thrusting (weakly) _ Tip -- c1370_磔亡者B:突き(弱)_先端", + "213700101": "C1370_ Crucifixion dead B: Thrusting (weakly) _ Sticky hands-tip -- c1370_磔亡者B:突き(弱)_もち手~先端", + "213700110": "C1370_ Crucifixion dead B: butting (strong) _ Tip -- c1370_磔亡者B:突き(強)_先端", + "213700111": "C1370_ Crucifixion dead B: Thrust (strong) _ Sticky hands-tip -- c1370_磔亡者B:突き(強)_もち手~先端", + "213700120": "C1370_ Crucifixion dead B: Lifting and thrusting _ tip -- c1370_磔亡者B:持ち上げて突き刺し_先端", + "213700121": "C1370_ Crucifixion dead B: Lifting and thrusting _ sticky hands-tip -- c1370_磔亡者B:持ち上げて突き刺し_もち手~先端", + "213700130": "C1370_ Crucifixion dead B: Pay in piles _ tip -- c1370_磔亡者B:杭で払う_先端", + "213700131": "C1370_ Crucifixion dead B: Pay in piles _ Sticky hands-tip -- c1370_磔亡者B:杭で払う_もち手~先端", + "213700140": "C1370_ Crucifixion dead B: knocked back against to lift _ tip -- c1370_磔亡者B:持ち上げて叩き付け_先端", + "213700141": "C1370_ Crucifixion dead B: Lifting knocked back against _ Sticky hands-tip -- c1370_磔亡者B:持ち上げて叩き付け_もち手~先端", + "213700150": "C1370_ Crucifixion dead B: Rush Butt (Continuous) _ Tip -- c1370_磔亡者B:突進突き(連続)_先端", + "213700151": "C1370_ Crucifixion dead B: Rush Butt (continuous) _ Sticky hands-tip -- c1370_磔亡者B:突進突き(連続)_もち手~先端", + "213700152": "C1370_ Crucifixion dead B: Rush Butt (Final) _ Tip -- c1370_磔亡者B:突進突き(最終)_先端", + "213800010": "The priest of the c1380_ snake: beating with a whip (weak) -- c1380_蛇人の司祭:鞭で殴る(弱)", + "213800020": "C1380_ Snake man priest: Nagi with whips -- c1380_蛇人の司祭:鞭でなぎ払う", + "213800700": "C1380_ Priest: Magic Attack (weak) -- c1380_蛇人の司祭:魔法攻撃(弱)", + "213800710": "Priest of the snake c1380_: the Magic Attack (strong) -- c1380_蛇人の司祭:魔法攻撃(強)", + "213900010": "C1390_ Snake Assassin (short blade): Continuous attack 1-1_ blow -- c1390_蛇人の暗殺者(短刃):連続攻撃1-1_一撃目", + "213900011": "C1390_ Snake Assassin (short blade): Continuous attack 1-1_ second -- c1390_蛇人の暗殺者(短刃):連続攻撃1-1_二撃目", + "213900020": "C1390_ Snake Assassin (short blade): Continuous attack 1-2_ blow -- c1390_蛇人の暗殺者(短刃):連続攻撃1-2_一撃目", + "213900021": "C1390_ Snake Assassin (short blade): Continuous attack 1-2_ second -- c1390_蛇人の暗殺者(短刃):連続攻撃1-2_二撃目", + "213900030": "c1390_ (short blade): Rapid Melee attack 1-1 -- c1390_蛇人の暗殺者(短刃):急接近攻撃1-1", + "213900040": "C1390_ Snake Assassin (short blade): Rapid Melee attack 1-2_ -- c1390_蛇人の暗殺者(短刃):急接近攻撃1-2_一撃目", + "213900041": "C1390_ Snake Assassin (short blade): Rapid approaching attack 1-2_ second hammer -- c1390_蛇人の暗殺者(短刃):急接近攻撃1-2_二撃目", + "213900042": "c1390_ (short blade): Quick approaching attack 1-2_ 3 -- c1390_蛇人の暗殺者(短刃):急接近攻撃1-2_三撃目", + "213900050": "c1390_ Assassin (Short Blade): Rapid Melee attack 1-3a -- c1390_蛇人の暗殺者(短刃):急接近攻撃1-3A", + "213900060": "C1390_ Snake Assassin (short blade): bit -- c1390_蛇人の暗殺者(短刃):噛み付き", + "213900070": "c1390_ (Short blade): The Fall attack 1-1 -- c1390_蛇人の暗殺者(短刃):斬り下がり攻撃1-1", + "213900080": "c1390_ Assassin (Short Blade): A Down-rise attack -- c1390_蛇人の暗殺者(短刃):ダウン起き上がり攻撃", + "213900090": "C1390_ Snake man Assassin (short blade): Bit (right): from a3000 -- c1390_蛇人の暗殺者(短刃):噛み付き(右前):a3000から", + "213900100": "C1390_ Snake Assassin (short blade): bit (left): from a3000 -- c1390_蛇人の暗殺者(短刃):噛み付き(左前):a3000から", + "213900110": "C1390_ Snake man Assassin (short blade): Bit (right): from a3005 -- c1390_蛇人の暗殺者(短刃):噛み付き(右前):a3005から", + "213900120": "C1390_ Snake Assassin (short blade): bit (left): from a3005 -- c1390_蛇人の暗殺者(短刃):噛み付き(左前):a3005から", + "213900200": "C1390_ the Assassin (Shorty): Pay: Wait -- c1390_蛇人の暗殺者(ショーテル):払い:待機", + "213900210": "C1390_ (Shorty): Reverse Payment: A payment attitude -- c1390_蛇人の暗殺者(ショーテル):逆払い:払い姿勢", + "213900220": "C1390_ (Shorty): Reverse Payment: Wait -- c1390_蛇人の暗殺者(ショーテル):逆払い:待機", + "213900230": "The assassin of the C1390_ (Shorty): Pay: Attitude -- c1390_蛇人の暗殺者(ショーテル):払い:逆払い姿勢", + "213900240": "The assassin of the C1390_ (Shorty): Deferred payment: A reversed payment stance -- c1390_蛇人の暗殺者(ショーテル):遅延払い:逆払い姿勢", + "213900250": "The assassin of the c1390_ Snake (Shorty): Quick approaching attack -- c1390_蛇人の暗殺者(ショーテル):急接近攻撃", + "213900260": "C1390_ The assassin of the Serpent (Shorty): Up and down attack -- c1390_蛇人の暗殺者(ショーテル):ダウン起き上がり攻撃", + "213900270": "C1390_ Serpent Assassin (Shorty): Bit from guard break -- c1390_蛇人の暗殺者(ショーテル):ガードブレイクからの噛み付き", + "213900280": "The assassin of the c1390_ Snake (Shorty): Swing Down -- c1390_蛇人の暗殺者(ショーテル):振り下ろし", + "213900400": "The assassin of C1390_ (common): Breath -- c1390_蛇人の暗殺者(共通):ブレス", + "213900410": "Assassins of C1390_ (common): Pay bit: Wait -- c1390_蛇人の暗殺者(共通):払い噛み付き:待機", + "213900411": "C1390_ Serpent Assassin (Common): bit: a3016 -- c1390_蛇人の暗殺者(共通):払い噛み付き:a3016から", + "213900500": "The assassin of the c1390_ Snake (Shorty): Guard -- c1390_蛇人の暗殺者(ショーテル):ガード", + "213900600": "C1390_ Snake Man Assassin (short): Paris Throwing damage -- c1390_蛇人の暗殺者(短い):パリィ投げダメージ", + "213900900": "The assassin of the C1390_ (dagger): Paris -- c1390_蛇人の暗殺者(短刀):パリィする", + "213910010": "Assassin of the C1391_ (Kusarigama): A continuous attack 1-1 -- c1391_蛇人の暗殺者(鎖鎌):連続攻撃1-1", + "213910020": "Assassin of the C1391_ (Kusarigama): A continuous attack 1-2 -- c1391_蛇人の暗殺者(鎖鎌):連続攻撃1-2", + "213910030": "C1391_ (Kusarigama): Kusarigama Swing (Medium range) -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌振り下ろし(中距離)", + "213910031": "C1391_ (Kusarigama): Kusarigama Swing (medium range) [Chara Atari No] -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌振り下ろし(中距離)【キャラアタリ無】", + "213910032": "The assassin of the C1391_ (Kusarigama): Kusarigama Swing (medium range) [Return sickle] -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌振り下ろし(中距離)【戻り鎌】", + "213910040": "C1391_ (Kusarigama): Kusarigama Swing (long distance) -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌振り下ろし(遠距離)", + "213910041": "Assassins of C1391_ (Kusarigama): Kusarigama (long distance) [Chara Atari No] -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌振り下ろし(遠距離)【キャラアタリ無】", + "213910042": "The assassin of the C1391_ (Kusarigama): Kusarigama (long distance) [return sickle] -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌振り下ろし(遠距離)【戻り鎌】", + "213910050": "C1391_ Snake man Assassin (Kusarigama): Kusarigama -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌払い", + "213910051": "Assassins of C1391_ (Kusarigama): Kusarigama (Chain part) -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌払い【鎖部分】", + "213910052": "C1391_ Serpent Assassin (Kusarigama): Kusarigama (through sickle) -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌払い【貫通鎌】", + "213910060": "C1391_ Snake man Assassin (Kusarigama): Poison Mist -- c1391_蛇人の暗殺者(鎖鎌):毒霧", + "213910070": "C1391_ (Kusarigama): A reverse payment (wait) -- c1391_蛇人の暗殺者(鎖鎌):逆払い(待機)", + "213910080": "Assassins of C1391_ (Kusarigama): Swing Down (reverse posture) -- c1391_蛇人の暗殺者(鎖鎌):振り下ろし(逆払い姿勢)", + "213910090": "C1391_ Serpent Assassin (Kusarigama): Kusarigama (a3004 attitude) -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌払い(a3004姿勢)", + "213910091": "C1391_ (Kusarigama): Kusarigama (a3004 posture) [Chain part] -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌払い(a3004姿勢)【鎖部分】", + "213910092": "Assassins of C1391_ (Kusarigama): Kusarigama (a3004 posture) [through sickle] -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌払い(a3004姿勢)【貫通鎌】", + "213910100": "C1391_ Snake man Assassin (Kusarigama): Right side reverse payment -- c1391_蛇人の暗殺者(鎖鎌):右側面逆払い", + "213910110": "C1391_ Snake man Assassin (Kusarigama): Left side reverse payment -- c1391_蛇人の暗殺者(鎖鎌):左側面逆払い", + "213910120": "C1391_ Snake man Assassin (Kusarigama): Front bit -- c1391_蛇人の暗殺者(鎖鎌):正面噛み付き", + "213910130": "C1391_ (Kusarigama): Kusarigama Swing down and strong (medium distance) -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌振り下ろし・強(中距離)", + "213910131": "Assassins of C1391_ (Kusarigama): Kusarigama, strong (medium range) [Chara Atari No] -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌振り下ろし・強(中距離)【キャラアタリ無】", + "213910132": "The assassin of the C1391_ (Kusarigama): Kusarigama Swing down and strong (medium range) [Return sickle] -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌振り下ろし・強(中距離)【戻り鎌】", + "213910140": "The assassin of the C1391_ (Kusarigama): Kusarigama Swing (medium distance) [Return sickle] -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌振り下ろし(中遠距離)【戻り鎌】", + "213910141": "The assassin of the C1391_ (Kusarigama): Kusarigama (long distance) [return sickle] -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌振り下ろし(遠距離)【戻り鎌】", + "213910150": "The assassin of the C1391_ (Kusarigama): Kusarigama Swing down and strong (medium distance) [Return sickle] -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌振り下ろし・強(中遠距離)【戻り鎌】", + "213910151": "The assassin of the C1391_ (Kusarigama): Kusarigama and strong (long distance) [return sickle] -- c1391_蛇人の暗殺者(鎖鎌):鎖鎌振り下ろし・強(遠距離)【戻り鎌】", + "213910200": "C1391_ Snake man Assassin (Kusarigama): Throwing -- c1391_蛇人の暗殺者(鎖鎌):投げ", + "213910201": "C1391_ Snake man Assassin (Kusarigama): Throwing damage -- c1391_蛇人の暗殺者(鎖鎌):投げダメージ", + "214100100": "c1410: Silver Knight: Slashing 1 (sword) -- c1410:銀騎士:斬撃1(剣)", + "214100101": "c1410: Silver Knight: Slashing 2 (sword) -- c1410:銀騎士:斬撃2(剣)", + "214100102": "c1410: Silver Knight: Slashing 3 (sword) -- c1410:銀騎士:斬撃3・連(剣)", + "214100103": "c1410: Silver Knight: Slashing 3/strength (sword) -- c1410:銀騎士:斬撃3・強(剣)", + "214100104": "c1410: Silver Knight: Thrust: Reverse Kesa Posture -- c1410:銀騎士:突き:逆袈裟姿勢", + "214100110": "c1410: Silver Knight: Depression Slashing (sword) -- c1410:銀騎士:踏み込み斬撃(剣)", + "214100120": "c1410: Silver Knight: Swing Down (sword) -- c1410:銀騎士:振り下ろし(剣)", + "214100130": "c1410: Silver Knight: Thrusting (sword) -- c1410:銀騎士:突き(剣)", + "214100140": "c1410: Silver Knights: Breaking with shields -- c1410:銀騎士:盾で崩す", + "214100150": "c1410: Silver Knight: Jump swing Down: Wait -- c1410:銀騎士:ジャンプ振り下ろし:待機", + "214100151": "c1410: Silver Knight: Jump swing Down: a3015 posture -- c1410:銀騎士:ジャンプ振り下ろし:a3015姿勢", + "214100160": "c1410: Silver Knight: Twist behind: Wait -- c1410:銀騎士:後ろひねり斬り:待機", + "214100170": "c1410: Silver Knight: Slash: Wait -- c1410:銀騎士:斬り下がり:待機", + "214100200": "c1410: Silver Knight: Thrust 1 (spear) -- c1410:銀騎士:突き1(槍)", + "214100201": "c1410: Silver Knight: Thrust 2 (Spear) -- c1410:銀騎士:突き2(槍)", + "214100202": "c1410: Silver Knight: Thrust 3/strong (spear) -- c1410:銀騎士:突き3・強(槍)", + "214100210": "c1410: Silver Knight: a stepping Spear -- c1410:銀騎士:踏み込み突き(槍)", + "214100220": "c1410: Silver Knight: Nagi (Spear) -- c1410:銀騎士:なぎ払い・強(槍)", + "214100221": "c1410: Silver Knight: Thrust from Nagi (spear) -- c1410:銀騎士:なぎ払いから突き(槍)", + "214100230": "c1410: Silver Knight: Destroy with Shield (spear) -- c1410:銀騎士:盾で崩す(槍)", + "214100240": "c1410: Silver Knight: Step back -- c1410:銀騎士:バックステップ払い", + "214100250": "c1410: Silver Knight: Small boost thrust -- c1410:銀騎士:小ブースト突き", + "214100260": "c1410: Silver Knight: Dragon Hunt thrust 1 -- c1410:銀騎士:竜狩り突き1", + "214100261": "c1410: Silver Knight: Dragon Hunt thrust 2 -- c1410:銀騎士:竜狩り突き2", + "214100270": "c1410: Silver Knight: Behind both hands: waiting -- c1410:銀騎士:背後両手払い:待機", + "214100300": "c1410: Silver Knight: Miyakonojo -- c1410:銀騎士:大弓発射", + "214100310": "c1410: Silver Knight: Miyakonojo -- c1410:銀騎士:大弓強射", + "214100500": "c1410: Silver Knight: Guard -- c1410:銀騎士:ガード", + "214700010": "c1470_ Wheel skeleton: Beat by hand (right hand) -- c1470_車輪スケルトン:手で殴る(右手)", + "214700011": "c1470_ Wheel skeleton: Beat by hand (left hand) -- c1470_車輪スケルトン:手で殴る(左手)", + "214700020": "c1470_ wheel skeleton: transformed into a wheel -- c1470_車輪スケルトン:車輪に変身", + "214700100": "c1470_ Wheel Skeleton: rotation -- c1470_車輪スケルトン:回転", + "220000010": "Wolf of c2000_: a flying attack -- c2000_蝕のオオカミ:飛びかかり攻撃", + "220000020": "Wolf of c2000_: Tackle attack -- c2000_蝕のオオカミ:タックル攻撃", + "220000030": "Wolf of c2000_: feint bite attack -- c2000_蝕のオオカミ:フェイント噛みつき攻撃", + "220000040": "Wolf of c2000_: Forward bit -- c2000_蝕のオオカミ:前方噛み付き", + "220000050": "Wolf of c2000_: Inverted attack on the belly -- c2000_蝕のオオカミ:腹下反転攻撃", + "220000060": "Wolf of c2000_: Right reversal attack -- c2000_蝕のオオカミ:右反転攻撃", + "220000070": "Wolf of c2000_: Left reversal attack -- c2000_蝕のオオカミ:左反転攻撃", + "220000080": "Wolf of c2000_: Falling bit -- c2000_蝕のオオカミ:噛み付き下がり", + "220000090": "Wolf of c2000_: bit back step -- c2000_蝕のオオカミ:噛み付きバックステップ", + "220000100": "Wolf of c2000_: Forward bit 2 -- c2000_蝕のオオカミ:前方噛み付き2", + "220000160": "Wolf of c2000_: 180 degrees turn -- c2000_蝕のオオカミ:180度ターン", + "220000170": "Wolf of c2000_: Right -- c2000_蝕のオオカミ:右旋回", + "220000180": "Wolf of c2000_: Left -- c2000_蝕のオオカミ:左旋回", + "220000190": "C2000_ 's Wolf: Walking _ before -- c2000_蝕のオオカミ:歩行_前", + "220000200": "Wolf of c2000_: Running before -- c2000_蝕のオオカミ:走行_前", + "220000300": "c2000_ (heat up): depression right Saigi -- c2000_蝕のオオカミ(ヒートアップ):踏み込み右薙ぎ払い", + "220000310": "c2000_ Wolf (heat up): Melee Combo: Right Saigi -- c2000_蝕のオオカミ(ヒートアップ):近接コンボ:右薙ぎ払い", + "220000320": "c2000_ Wolf (heat up): Melee Combo: Left Saigi -- c2000_蝕のオオカミ(ヒートアップ):近接コンボ:左薙ぎ払い", + "220000330": "c2000_ Wolf (heat up): Melee Combo: knocked back against -- c2000_蝕のオオカミ(ヒートアップ):近接コンボ:叩き付け", + "220000340": "c2000_ (heat up): 180 degree turn -- c2000_蝕のオオカミ(ヒートアップ):180度ターン", + "220000350": "c2000_ (heat up): attack from a 180-degree turn -- c2000_蝕のオオカミ(ヒートアップ):180度ターンからの攻撃", + "220000360": "c2000_ Wolf (heat up): Dash left -- c2000_蝕のオオカミ(ヒートアップ):ダッシュ左切り抜け", + "220000370": "c2000_ Wolf (heat up): Melee Combo: Left Saigi right 90 ° turn -- c2000_蝕のオオカミ(ヒートアップ):近接コンボ:左薙ぎ払い右90°ターン", + "220000380": "c2000_ Wolf (heat up): Melee Combo: Right Saigi left 90 ° turn -- c2000_蝕のオオカミ(ヒートアップ):近接コンボ:右薙ぎ払い左90°ターン", + "220000390": "Wolf of c2000_ (heat up): Left Kiri left 180 ° turn -- c2000_蝕のオオカミ(ヒートアップ):左切り払い左180°ターン", + "220000400": "c2000_ Wolf (heat up): Long distance Combo: Jump Butt -- c2000_蝕のオオカミ(ヒートアップ):遠距離コンボ:ジャンプ突き", + "220000410": "Wolf of c2000_ (heat up): Long distance Combo: knocked back against -- c2000_蝕のオオカミ(ヒートアップ):遠距離コンボ:叩き付け", + "220000420": "Wolf of c2000_ (heat up): Long distance Combo: Left Saigi -- c2000_蝕のオオカミ(ヒートアップ):遠距離コンボ:左薙ぎ払い", + "220000430": "Wolf of c2000_ (heat up): 180 degree turn attack -- c2000_蝕のオオカミ(ヒートアップ):180度ターン攻撃", + "220000440": "Wolf of c2000_ (heat up): Right reversal attack -- c2000_蝕のオオカミ(ヒートアップ):右反転攻撃", + "220000450": "Wolf of c2000_ (heat up): Left reversal attack -- c2000_蝕のオオカミ(ヒートアップ):左反転攻撃", + "220200010": "C2020_ dead Dog (normal): Bite 1 -- c2020_亡者犬(通常):噛みつき1", + "220200011": "C2020_ dead Dog (normal): Bite 2 -- c2020_亡者犬(通常):噛みつき2", + "220200020": "C2020_ dead Dog (normal): The flight from the suspended state -- c2020_亡者犬(通常):止まった状態からの飛びかかり", + "220200030": "C2020_ dead Dog (normal): Jump from running -- c2020_亡者犬(通常):走行からの飛びかかり", + "220200040": "C2020_ dead Dog (normal): bit combo First stage: from the Run -- c2020_亡者犬(通常):噛み付きコンボ1段目:走りから", + "220200050": "C2020_ dead Dog (normal): jump (Long distance) -- c2020_亡者犬(通常):飛びかかり(遠距離)", + "220200060": "C2020_ dead Dog (usually): from running (long distance) -- c2020_亡者犬(通常):飛びかかり(遠距離):走りから", + "220200070": "C2020_ dead Dog (normal): left curve bit -- c2020_亡者犬(通常):左カーブ噛み付き", + "220200080": "C2020_ dead Dog (normal): right curve bit -- c2020_亡者犬(通常):右カーブ噛み付き", + "220201010": "c2290_ Salivan Guard Dog: Bite 1 -- c2290_サリヴァーンの番犬:噛みつき1", + "220201011": "c2290_ Salivan watchdog: Bite 2 -- c2290_サリヴァーンの番犬:噛みつき2", + "220201020": "C2290_ Salivan's Guard dog: jumping from a parked state -- c2290_サリヴァーンの番犬:止まった状態からの飛びかかり", + "220201030": "C2290_ Salivan's Guard Dog: jumping from running -- c2290_サリヴァーンの番犬:走行からの飛びかかり", + "220201040": "c2290_ Salivan watchdog: bit combo first stage: from the Run -- c2290_サリヴァーンの番犬:噛み付きコンボ1段目:走りから", + "220201050": "c2290_ Salivan Guard Dog: Jump (long distance) -- c2290_サリヴァーンの番犬:飛びかかり(遠距離)", + "220201060": "c2290_ Salivan Guard Dog: Jump (Long distance): from running -- c2290_サリヴァーンの番犬:飛びかかり(遠距離):走りから", + "220201070": "C2290_ Salivan guard dogs: Left curve bit -- c2290_サリヴァーンの番犬:左カーブ噛み付き", + "220201080": "c2290_ Salivan Guard Dog: right curve bit -- c2290_サリヴァーンの番犬:右カーブ噛み付き", + "220210010": "C2021_ dead Dog (small): Bite 1 -- c2021_亡者犬(小):噛みつき1", + "220210011": "C2021_ dead Dog (small): Bite 2 -- c2021_亡者犬(小):噛みつき2", + "220210020": "C2021_ dead Dog (small): Jump from a stopped state -- c2021_亡者犬(小):止まった状態からの飛びかかり", + "220210030": "C2021_ dead Dog (small): Jump from running -- c2021_亡者犬(小):走行からの飛びかかり", + "220210040": "C2021_ dead Dog (small): bit combo First stage: from the Run -- c2021_亡者犬(小):噛み付きコンボ1段目:走りから", + "220210050": "C2021_ dead Dog (small): jump (Long distance) -- c2021_亡者犬(小):飛びかかり(遠距離)", + "220210060": "C2021_ dead Dog (small): from running (long distance) -- c2021_亡者犬(小):飛びかかり(遠距離):走りから", + "220210070": "C2021_ dead Dog (small): left curve bit -- c2021_亡者犬(小):左カーブ噛み付き", + "220210080": "C2021_ dead Dog (small): right curve bit -- c2021_亡者犬(小):右カーブ噛み付き", + "220300110": "c2030_ Salivan Reaper: Combo 1-1 One-handed rounding ① -- c2030_サリヴァーンの死神:コンボ1-1片手切り上げ①", + "220300120": "c2030_ Salivan Reaper: Combo 1-2 one handed rounding ② -- c2030_サリヴァーンの死神:コンボ1-2片手切り上げ②", + "220300130": "c2030_ Salivan Reaper: Combo 1-3 Hand Saigi -- c2030_サリヴァーンの死神:コンボ1-3片手薙ぎ払い", + "220300140": "C2030_ Salivan's death: a distance-packed attack -- c2030_サリヴァーンの死神:距離詰め攻撃", + "220300150": "c2030_ Salivan Reaper: Combo 2-1 reverse Kesa cut ① -- c2030_サリヴァーンの死神:コンボ2-1逆袈裟切り①", + "220300160": "c2030_ Salivan Reaper: Combo 2-2 reverse Kesa cut ② -- c2030_サリヴァーンの死神:コンボ2-2逆袈裟切り②", + "220300170": "c2030_ Salivan Reaper: Combo 2-3 Hand Rounding -- c2030_サリヴァーンの死神:コンボ2-3片手切り上げ", + "220300180": "c2030_ Salivan Reaper: Combo 2-4 Hand Saigi -- c2030_サリヴァーンの死神:コンボ2-4片手薙ぎ払い", + "220300190": "C2030_ Salivan's death: Strong attack -- c2030_サリヴァーンの死神:強攻撃", + "220300210": "C2030_ Salivan's death: the Revolving Arts (loop) -- c2030_サリヴァーンの死神:回転アーツ(ループ)", + "220300220": "The death of c2030_ Salivan: the rotating arts (finish) -- c2030_サリヴァーンの死神:回転アーツ(フィニッシュ)", + "220300310": "c2030_ Salivan Reaper: Combo 1-1 Both hands rounded up ①: Blade -- c2030_サリヴァーンの死神:コンボ1-1両手切り上げ①:刃", + "220300311": "c2030_ Salivan Reaper: Combo 1-1 Both hands rounded up ①: hilt -- c2030_サリヴァーンの死神:コンボ1-1両手切り上げ①:柄", + "220300320": "c2030_ Salivan Reaper: Combo 1-2 Hands up ②: Blade -- c2030_サリヴァーンの死神:コンボ1-2両手切り上げ②:刃", + "220300321": "c2030_ Salivan Reaper: Combo 1-2 hands-up ②: Handle -- c2030_サリヴァーンの死神:コンボ1-2両手切り上げ②:柄", + "220300330": "c2030_ Salivan Reaper: Combo 1-3 One handed rounding ①: Blade -- c2030_サリヴァーンの死神:コンボ1-3片手切り上げ①:刃", + "220300331": "c2030_ Salivan Reaper: Combo 1-3 One handed rounding ①: hilt -- c2030_サリヴァーンの死神:コンボ1-3片手切り上げ①:柄", + "220300340": "c2030_ Salivan Reaper: Combo 1-4 hand rounded ②: Blade -- c2030_サリヴァーンの死神:コンボ1-4片手切り上げ②:刃", + "220300341": "c2030_ Salivan Reaper: Combo 1-4 One handed rounding ②: hilt -- c2030_サリヴァーンの死神:コンボ1-4片手切り上げ②:柄", + "220300350": "c2030_ Salivan Reaper: Combo 1-5 Two-handed devaluation: Blade -- c2030_サリヴァーンの死神:コンボ1-5両手切り下げ:刃", + "220300351": "The death of c2030_ Salivan: Combo 1-5 Two-handed devaluation: hilt -- c2030_サリヴァーンの死神:コンボ1-5両手切り下げ:柄", + "220300360": "c2030_ Salivan Reaper: Combo 2-1 hands down: Blade -- c2030_サリヴァーンの死神:コンボ2-1両手踏み込み切り:刃", + "220300361": "c2030_ Salivan Reaper: Combo 2-1 hands down: Handle -- c2030_サリヴァーンの死神:コンボ2-1両手踏み込み切り:柄", + "220300370": "c2030_ Salivan Reaper: Combo 2-2 hand Saigi: Blade -- c2030_サリヴァーンの死神:コンボ2-2片手薙ぎ払い:刃", + "220300371": "c2030_ Salivan Reaper: Combo 2-2 hand Saigi: Hilt -- c2030_サリヴァーンの死神:コンボ2-2片手薙ぎ払い:柄", + "220300380": "C2030_ Salivan's death: two-handed distance-packed attack: Blade -- c2030_サリヴァーンの死神:両手距離詰め攻撃:刃", + "220300381": "C2030_ Salivan's death: two-handed distance-packed attack: hilt -- c2030_サリヴァーンの死神:両手距離詰め攻撃:柄", + "220300390": "c2030_ Salivan Reaper: Combo 3-1 Two-handed attack: Blade -- c2030_サリヴァーンの死神:コンボ3-1両手引き寄せ攻撃:刃", + "220300391": "c2030_ Salivan Reaper: Combo 3-1 hand-drawn attack: hilt -- c2030_サリヴァーンの死神:コンボ3-1両手引き寄せ攻撃:柄", + "220300400": "c2030_ Salivan Reaper: Combo 3-2 both hands Saigi: Blade -- c2030_サリヴァーンの死神:コンボ3-2両手薙ぎ払い:刃", + "220300401": "c2030_ Salivan Reaper: Combo 3-2 Both hands Saigi: hilt -- c2030_サリヴァーンの死神:コンボ3-2両手薙ぎ払い:柄", + "220300410": "c2030_ Salivan Reaper: Combo 3-3 Two-handed lift: Blade -- c2030_サリヴァーンの死神:コンボ3-3両手斬り上げ:刃", + "220300411": "C2030_ Salivan's death: Combo 3-3 Hands up: Handle -- c2030_サリヴァーンの死神:コンボ3-3両手斬り上げ:柄", + "220300420": "The death of c2030_ Salivan: A round attack: Blade -- c2030_サリヴァーンの死神:回りこみ攻撃:刃", + "220300421": "The death of c2030_ Salivan: A round attack: pattern -- c2030_サリヴァーンの死神:回りこみ攻撃:柄", + "220300430": "c2030_ Salivan Reaper: Extrusion attack: Blade -- c2030_サリヴァーンの死神:押し出し攻撃:刃", + "220300431": "c2030_ Salivan Reaper: Extruded attack: Hilt -- c2030_サリヴァーンの死神:押し出し攻撃:柄", + "220300440": "C2030_ Salivan's Reaper: Distance packed strong attack: Blade -- c2030_サリヴァーンの死神:距離詰め強攻撃:刃", + "220300450": "C2030_ Salivan's death: [Miracle] dark Moon Light Sword -- c2030_サリヴァーンの死神:【奇跡】暗月の光の剣", + "220300900": "c2030_ Salivan Reaper: Shields -- c2030_サリヴァーンの死神:盾", + "220400100": "Right hand slams -- 右手叩きつけ", + "220400110": "Left hand slams -- 左手叩きつけ", + "220400120": "Right hand finish -- 右手フィニッシュ", + "220400130": "Rising body Press -- 立ち上がりボディプレス", + "220400140": "Right direction -- 倒れ込み(右方向)", + "220400150": "Collapsed (right direction) ② -- 倒れ込み(右方向)②", + "220400160": "Fall Down (left) -- 倒れ込み(左方向)", + "220400170": "Collapsed (left direction) ② -- 倒れ込み(左方向)②", + "220400180": "Butt Press -- お尻プレス", + "220400200": "Start throwing -- 投げ始動", + "220400201": "Throwing attack (pressure damage) -- 投げ攻撃(圧迫ダメージ)", + "220400202": "Throwing attack (finish) -- 投げ攻撃(フィニッシュ)", + "220400210": "Right payment -- 右払い", + "220400220": "Left payment -- 左払い", + "220600010": "Right whack -- 右手薙ぎ", + "220600020": "Left hand Whack -- 左手薙ぎ", + "220600030": "Throwing start technique (jumped) -- 投げ始動技(飛びつき)", + "220600040": "Throwing start Technique (melee) -- 投げ始動技(近接)", + "220600070": "Rush _1 -- ラッシュ_1段目", + "220600080": "Melee Maggots -- 近接ウジ吐き", + "220600090": "Body throwing -- 本体出現投げ", + "220600100": "Throwing attack (pressure damage) -- 投げ攻撃(圧迫ダメージ)", + "220700010": "C2070_ Prisoner of the Dungeon (bare hands): Right hand scratching ① -- c2070_地下牢の囚人(素手):右手引っ掻き①", + "220700020": "C2070_ Prisoner of the Dungeon (bare hands): Right hand scratching ② -- c2070_地下牢の囚人(素手):右手引っ掻き②", + "220700030": "Prisoner of c2070_ Dungeon (bare hands): Left hand scratching -- c2070_地下牢の囚人(素手):左手引っ掻き", + "220700040": "Prisoner of c2070_ Dungeon (bare hands): continuous scratching 1 -- c2070_地下牢の囚人(素手):連続引っ掻き1", + "220700041": "Prisoner of c2070_ Dungeon (bare hands): Continuous scratching 2 -- c2070_地下牢の囚人(素手):連続引っ掻き2", + "220700042": "Prisoner of c2070_ Dungeon (bare hands): continuous scratching 3 -- c2070_地下牢の囚人(素手):連続引っ掻き3", + "220700043": "Prisoner of c2070_ Dungeon (bare hands): continuous scratching 4 -- c2070_地下牢の囚人(素手):連続引っ掻き4", + "220700060": "C2070_ Prisoner of the Dungeon (bare hands): Grab attack ① -- c2070_地下牢の囚人(素手):掴み攻撃①", + "220700070": "C2070_ Prisoner of the Dungeon (bare hands): Grab attack ② -- c2070_地下牢の囚人(素手):掴み攻撃②", + "220700080": "Prisoner of the c2070_ Dungeon (bare hands): Fall attack -- c2070_地下牢の囚人(素手):倒れ込み攻撃", + "220700090": "C2070_ Prisoner of the Dungeon (bare hands): jumping -- c2070_地下牢の囚人(素手):跳びかかり", + "220700200": "Prisoner of the C2070_ Dungeon (Spear): poked ① -- c2070_地下牢の囚人(槍):突き①", + "220700210": "Prisoner of the C2070_ Dungeon (Spear): poked ② -- c2070_地下牢の囚人(槍):突き②", + "220700220": "C2070_ Prisoner of the Dungeon (Spear): Thrust down -- c2070_地下牢の囚人(槍):突き下ろし", + "220700230": "Prisoner of the C2070_ Dungeon (spear): Saigi -- c2070_地下牢の囚人(槍):薙ぎ払い", + "220700240": "Prisoner of c2070_ Dungeon (Spear): Left hand scratching -- c2070_地下牢の囚人(槍):左手引っ掻き", + "220700260": "C2070_ Prisoner of the Dungeon (Spear): Dragon weapon -- c2070_地下牢の囚人(槍):ドラゴンウェポン", + "220700400": "Prisoner of the c2070_ Dungeon (Dagger): Crossing ① -- c2070_地下牢の囚人(短剣):横切り①", + "220700410": "Prisoner of the c2070_ Dungeon (Dagger): Crossing ② -- c2070_地下牢の囚人(短剣):横切り②", + "220700420": "Prisoner of the c2070_ Dungeon (Dagger): Crossing ③ -- c2070_地下牢の囚人(短剣):横切り③", + "220700430": "Prisoner of the c2070_ Dungeon (Dagger): Cut down ① -- c2070_地下牢の囚人(短剣):切り下ろし①", + "220700440": "Prisoner of the c2070_ Dungeon (Dagger): Cut down ② -- c2070_地下牢の囚人(短剣):切り下ろし②", + "220700450": "Prisoner of the c2070_ Dungeon (Dagger): Continuous thrust ① -- c2070_地下牢の囚人(短剣):連続突き①", + "220700451": "Prisoner of the c2070_ Dungeon (Dagger): Continuous thrust ② -- c2070_地下牢の囚人(短剣):連続突き②", + "220700452": "Prisoner of the c2070_ Dungeon (Dagger): Continuous thrust ③ -- c2070_地下牢の囚人(短剣):連続突き③", + "220700470": "Prisoner of c2070_ Dungeon (Dagger): Continuous slash ① -- c2070_地下牢の囚人(短剣):連続斬り①", + "220700471": "Prisoner of c2070_ Dungeon (Dagger): Continuous slash ② -- c2070_地下牢の囚人(短剣):連続斬り②", + "220700472": "Prisoner of c2070_ Dungeon (Dagger): Continuous slash ③ -- c2070_地下牢の囚人(短剣):連続斬り③", + "220700473": "Prisoner of c2070_ Dungeon (Dagger): Continuous slash ④ -- c2070_地下牢の囚人(短剣):連続斬り④", + "220700700": "Prisoners of the C2070_ Dungeon (Common): Breath -- c2070_地下牢の囚人(共通):ブレス", + "220800100": "C2020_ dead Dog (maggots belly): Bite 1 -- c2020_亡者犬(蛆腹):噛みつき1", + "220800110": "C2020_ dead Dog (maggots belly): Bite 2 -- c2020_亡者犬(蛆腹):噛みつき2", + "220800120": "C2020_ dead Dog (maggots belly): Bite rush -- c2020_亡者犬(蛆腹):噛みつきラッシュ", + "220800130": "C2020_ dead Dog (maggots belly): maggots spitting -- c2020_亡者犬(蛆腹):蛆吐き", + "220800140": "C2020_ dead Dog (maggots belly): throwing transition -- c2020_亡者犬(蛆腹):投げ遷移", + "220800141": "C2020_ dead Dog (maggots belly): tossed -- c2020_亡者犬(蛆腹):投げ", + "220900100": "c2090_ Dragon: Lining -- c2090_竜の御使:裏打ち", + "220900110": "c2090_ Dragon: Attack _1 on the spot -- c2090_竜の御使:その場で伸びる攻撃_1撃目", + "220900111": "c2090_ Dragon: Attack on the spot -- c2090_竜の御使:その場で伸びる攻撃_2撃目", + "220900120": "The use of the c2090_ Dragon: a stretch attack -- c2090_竜の御使:伸びる攻撃", + "220900130": "The use of the c2090_ Dragon: Thrusting stick -- c2090_竜の御使:杖突き刺し", + "220900140": "The c2090_ of the Dragon: the tail payment _ the whole tail -- c2090_竜の御使:尻尾払い_尻尾全体", + "220900141": "c2090_ Dragon: Tail tip -- c2090_竜の御使:尻尾払い_尻尾先端", + "220900150": "The use of the c2090_ Dragon: the reservoir beating -- c2090_竜の御使:溜め叩き潰し", + "220900160": "c2090_ Dragon: Additional payment -- c2090_竜の御使:追加払い", + "220900170": "c2090_ Dragon: knocked back against -- c2090_竜の御使:叩き付け", + "220900180": "The use of the c2090_ Dragon: trampling weapons -- c2090_竜の御使:踏みつけ_武器", + "220900181": "The use of the c2090_ Dragon: trampled left foot -- c2090_竜の御使:踏みつけ_左足", + "220900182": "The use of c2090_ Dragon: trampling _ right foot -- c2090_竜の御使:踏みつけ_右足", + "220900183": "The use of the c2090_ Dragon: Trampling _ Body -- c2090_竜の御使:踏みつけ_身体", + "220900190": "c2090_ Dragon: Baby -- c2090_竜の御使:あかちゃんつぶし", + "220900300": "c2090_ Dragon: Neck whack Bit -- c2090_竜の御使:首薙ぎ噛み付き", + "220900301": "c2090_ Dragon: Neck whack Bit chase -- c2090_竜の御使:首薙ぎ噛み付き・追撃", + "220900310": "c2090_ Dragon: Front Jump bit _ mouth -- c2090_竜の御使:前ジャンプ噛み付き_口", + "220900311": "c2090_ Dragon: Front Jump bit _ left hand -- c2090_竜の御使:前ジャンプ噛み付き_左手", + "220900312": "c2090_ Dragon: Front Jump bit _ right hand -- c2090_竜の御使:前ジャンプ噛み付き_右手", + "220900313": "c2090_ Dragon: Front jump bit body -- c2090_竜の御使:前ジャンプ噛み付き_身体", + "220900320": "c2090_ Dragon: Crush -- c2090_竜の御使:叩き潰し", + "220900330": "c2090_ Dragon: Whack Bit _ whack -- c2090_竜の御使:薙ぎ噛み付き_薙ぎ", + "220900331": "c2090_ Dragon: Whack bit _ bite -- c2090_竜の御使:薙ぎ噛み付き_噛みつき", + "220900340": "The use of c2090_ Dragon: Rush -- c2090_竜の御使:突進", + "220900341": "C2090_ Dragon: Rush _ Bite -- c2090_竜の御使:突進_噛みつき", + "220900350": "c2090_ Dragon: Through inversion _ bite -- c2090_竜の御使:通り抜け反転_噛みつき", + "220900351": "The use of the c2090_ Dragon: through inversion _ body -- c2090_竜の御使:通り抜け反転_身体", + "220900360": "c2090_ Dragon: Tail Saigi 360 ° _ Tail -- c2090_竜の御使:尻尾薙ぎ払い360°_尻尾", + "220900361": "c2090_ Dragon: 360 ° _ Body Saigi Tail -- c2090_竜の御使:尻尾薙ぎ払い360°_身体", + "220900370": "The Angel of the c2090_ Dragon: Tail turned tail -- c2090_竜の御使:尻尾振り向き_尻尾", + "220900371": "c2090_ Dragon: Tail turned _ slams -- c2090_竜の御使:尻尾振り向き_叩きつけ", + "220900380": "c2090_ Dragon: Standing rampage _ Bite -- c2090_竜の御使:立ち暴れ_噛みつき", + "220900381": "c2090_ Dragon: Standing rampage _1 -- c2090_竜の御使:立ち暴れ_1撃目", + "220900382": "c2090_ Dragon: Standing rampage -- c2090_竜の御使:立ち暴れ_2撃目", + "220900383": "c2090_ Dragon: Standing Rampage _3 -- c2090_竜の御使:立ち暴れ_3撃目", + "220900384": "c2090_ Dragon: Standing rampage _4 -- c2090_竜の御使:立ち暴れ_4撃目", + "220900385": "c2090_ Dragon: Standing rampage _5 -- c2090_竜の御使:立ち暴れ_5撃目", + "220900390": "c2090_ Dragon: Airborne Breath _ Body -- c2090_竜の御使:空中ブレス_身体", + "220900391": "c2090_ Dragon: Aerial Breath _ Right hand -- c2090_竜の御使:空中ブレス_右手", + "220900392": "c2090_ Dragon: Aerial Breath _ Left hand -- c2090_竜の御使:空中ブレス_左手", + "220900700": "The use of c2090_ Dragon: Straight Breath -- c2090_竜の御使:直線ブレス", + "220900710": "The use of c2090_ Dragon: Whack Breath -- c2090_竜の御使:薙ぎブレス", + "220900720": "c2090_ Dragon: Aerial Breath -- c2090_竜の御使:空中ブレス", + "221000100": "A flying attack -- 飛びかかり攻撃", + "221000110": "Jump Throwing transition -- ジャンプ投げ遷移", + "221000120": "Rising Dash attack -- 立ち上がりダッシュ攻撃", + "221000130": "A violent right hand one on the spot -- その場で暴れる右手1", + "221000131": "A violent right hand 2_1 on the spot -- その場で暴れる右手2_1", + "221000132": "A violent right hand 2_2 on the spot -- その場で暴れる右手2_2", + "221000133": "Violent on the spot right hand three -- その場で暴れる右手3", + "221000134": "Seven violent right hand on the spot -- その場で暴れる右手7", + "221000135": "A violent right hand 9_1 on the spot -- その場で暴れる右手9_1", + "221000136": "A violent right hand 9_2 on the spot -- その場で暴れる右手9_2", + "221000137": "Ten violent right hand on the spot -- その場で暴れる右手10", + "221000138": "One left hand violent on the spot -- その場で暴れる左手1", + "221000139": "2_1 left hand violent on the spot -- その場で暴れる左手2_1", + "221000140": "2_2 left hand violent on the spot -- その場で暴れる左手2_2", + "221000141": "Three left hand violent on the spot -- その場で暴れる左手3", + "221000142": "Violent on the spot left hand four -- その場で暴れる左手4", + "221000143": "Nine violent left hand on the spot -- その場で暴れる左手9", + "221000144": "Ten violent left hand on the spot -- その場で暴れる左手10", + "221000700": "Spit something Out -- 何かを吐く", + "221100010": "Bite 1 -- かみつき1", + "221100020": "Bite 2 -- かみつき2", + "221100030": "Kari -- 飛び掛かり", + "221100040": "Scratching -- 引っ掻き", + "221100050": "Per -- 体当たり", + "221100060": "Large bite -- 大口噛みつき", + "221200010": "Right scratching -- 右引っ掻き", + "221200020": "Left scratching -- 左引っ掻き", + "221200030": "Pre Kick -- 前蹴り", + "221200040": "Rolling Sobat -- ローリングソバット", + "221200050": "Hug: Throwing Start -- 抱きつく:投げ始動", + "221200051": "Hug: Throwing damage -- 抱きつく:投げダメージ", + "221200110": "Jumped: Throwing start -- 飛びつき:投げ始動", + "221200111": "Jumped: Throwing damage -- 飛びつき:投げダメージ", + "221200120": "Rear bit: Throwing start -- 背面噛み付き:投げ始動", + "221200121": "Rear bit: Throw damage -- 背面噛み付き:投ダメージ", + "221200130": "Spitting Spit -- 唾吐き", + "221200210": "Mimicry throw 1: Start throwing -- 擬態投げ1:投げ始動", + "221200211": "Mimicry throw 1: Throwing damage -- 擬態投げ1:投げダメージ", + "221200220": "Mimicry throw 2: Start throwing -- 擬態投げ2:投げ始動", + "221200221": "Mimicry throw 2: Throwing damage -- 擬態投げ2:投ダメージ", + "221300010": "Before ① to shove a bone -- 骨を突き出す① 前", + "221300020": "After ② to shove the bone -- 骨を突き出す② 後", + "221300030": "Shove a bone in all directions -- 全方向に骨を突き出す", + "221300040": "Falling into a crowded attack -- 倒れこみ攻撃", + "221300041": "Falling into the attack and throwing damage -- 倒れこみ攻撃 投げダメージ", + "221300050": "③ left to shove bones -- 骨を突き出す③ 左", + "221300060": "④ right to shove a bone -- 骨を突き出す④ 右", + "221300070": "Special waiting → Drop throw judgment -- 特殊待機→落下投げ 判定", + "221300071": "Special wait → drop throwing -- 特殊待機→落下投げ 投げ", + "221400010": "Petrified Breath -- 石化ブレス", + "221400020": "Jump & Breath -- ジャンプ&ブレス", + "221400021": "Jump & Breath Landing -- ジャンプ&ブレス 着弾", + "221500010": "Disappear -- 消える", + "221600010": "① (small): hitting with a cane -- 蝕を呼ぶもの(小):杖で殴る①", + "221600011": "② (small): hitting with a cane -- 蝕を呼ぶもの(小):杖で殴る②", + "221600020": "Eclipse (small): Getaway -- 蝕を呼ぶもの(小):逃走", + "221600030": "What we call Eclipse (small): Summon -- 蝕を呼ぶもの(小):召喚", + "221800010": "c2180_ Maggots: Head Butt -- c2180_蛆人:頭突き", + "221800020": "C2180_ Maggots: Heavily -- c2180_蛆人:のしかかり", + "221800030": "c2180_ Maggots: Kari -- c2180_蛆人:飛び掛かり", + "221800031": "C2180_ maggots: Jumping two steps -- c2180_蛆人:跳びかかり2段", + "221800040": "C2180_ Maggots: Vomit spitting -- c2180_蛆人:ゲロ吐き", + "221800110": "C2180_ Maggots: Magic -- c2180_蛆人:魔法", + "221800200": "C2180_ Maggots: Fire spreading -- c2180_蛆人:延焼", + "221900100": "C2190_ Gargoyle (Light): Saigi [Weapon] -- c2190_ガーゴイル(灯火):薙ぎ払い【武器】", + "221900110": "C2190_ Gargoyle (Light): slams [weapon] -- c2190_ガーゴイル(灯火):叩きつけ【武器】", + "221900120": "C2190_ Gargoyle (Light): Guard posture: slams [weapon] -- c2190_ガーゴイル(灯火):ガード体勢:叩きつけ【武器】", + "221900130": "C2190_ Gargoyle (Light): Guard Posture: Large ignition [weapon] -- c2190_ガーゴイル(灯火):ガード体勢:大発火【武器】", + "221900140": "C2190_ Gargoyle (Light): Slams from the sky [weapon] -- c2190_ガーゴイル(灯火):上空から叩きつけ【武器】", + "221900141": "C2190_ Gargoyle (Light): Slams from the sky [body] -- c2190_ガーゴイル(灯火):上空から叩きつけ【体】", + "221900150": "C2190_ Gargoyle (Light): Fire attack from above [weapon] -- c2190_ガーゴイル(灯火):上空から発火攻撃【武器】", + "221900151": "C2190_ Gargoyle (Light): Fire attack from the sky [body] -- c2190_ガーゴイル(灯火):上空から発火攻撃【体】", + "221900160": "C2190_ Gargoyle (Light): Inverted from the sky [weapon] -- c2190_ガーゴイル(灯火):上空から反転して叩きつけ【武器】", + "221900161": "C2190_ Gargoyle (Light): Inverted from the sky [body] -- c2190_ガーゴイル(灯火):上空から反転して叩きつけ【体】", + "221900170": "C2190_ Gargoyle (Light): Additional Saigi [weapon] -- c2190_ガーゴイル(灯火):追加薙ぎ払い【武器】", + "221900180": "C2190_ Gargoyle (Light): previous step slapping [weapon] -- c2190_ガーゴイル(灯火):前ステップ叩き【武器】", + "221900181": "C2190_ Gargoyle (Light): Front step slapping [body] -- c2190_ガーゴイル(灯火):前ステップ叩き【体】", + "221900190": "C2190_ Gargoyle (Light): Whack falling [weapon] -- c2190_ガーゴイル(灯火):薙ぎ下がり【武器】", + "221900191": "C2190_ Gargoyle (Light): Whack falling [body] -- c2190_ガーゴイル(灯火):薙ぎ下がり【体】", + "221900300": "C2190_ Gargoyle (Spear): Thrust 1-1 [Weapon] -- c2190_ガーゴイル(槍):突き1-1【武器】", + "221900301": "C2190_ Gargoyle (Spear): Thrust 1-2: Strong thrust [Weapon] -- c2190_ガーゴイル(槍):突き1-2:強突き【武器】", + "221900302": "C2190_ Gargoyle (Spear): Butt 1-3: Poke slams [weapon: thrust] -- c2190_ガーゴイル(槍):突き1-3:突き飛行叩きつけ【武器:突き】", + "221900303": "C2190_ Gargoyle (Spear): Butt 1-3: Poke slams [weapon: slapping] -- c2190_ガーゴイル(槍):突き1-3:突き飛行叩きつけ【武器:叩き】", + "221900304": "C2190_ Gargoyle (Spear): Butt 1-3: Poke slams [body] -- c2190_ガーゴイル(槍):突き1-3:突き飛行叩きつけ【体】", + "221900310": "C2190_ Gargoyle (Spear): rush [Weapon] -- c2190_ガーゴイル(槍):突進【武器】", + "221900311": "C2190_ Gargoyle (Spear): Rush [body] -- c2190_ガーゴイル(槍):突進【体】", + "221900320": "C2190_ Gargoyle (Spear): Guard Posture: Shield tock [Weapon] -- c2190_ガーゴイル(槍):ガード体勢:盾チク【武器】", + "221900321": "C2190_ Gargoyle (Spear): Guard Posture: Shield tock [brandishes attack before thrusting] -- c2190_ガーゴイル(槍):ガード体勢:盾チク【突き刺し前ふりまわし攻撃】", + "221900330": "C2190_ Gargoyle (Spear): Guard Posture: rush [weapon] -- c2190_ガーゴイル(槍):ガード体勢:突進【武器】", + "221900331": "C2190_ Gargoyle (Spear): Guard Posture: rush [body] -- c2190_ガーゴイル(槍):ガード体勢:突進【体】", + "221900340": "C2190_ Gargoyle (Spear): Swinging from the sky [weapon] -- c2190_ガーゴイル(槍):上空から振り上げ【武器】", + "221900341": "C2190_ Gargoyle (Spear): Swinging from the sky [body] -- c2190_ガーゴイル(槍):上空から振り上げ【体】", + "221900350": "C2190_ Gargoyle (Spear): Dive attack [weapon] aiming from the sky -- c2190_ガーゴイル(槍):上空から狙って急降下攻撃【武器】", + "221900351": "C2190_ Gargoyle (Spear): Dive attack [body] aiming from the sky -- c2190_ガーゴイル(槍):上空から狙って急降下攻撃【体】", + "221900360": "C2190_ Gargoyle (Spear): continuous thrust from the Sky 1 [weapon] -- c2190_ガーゴイル(槍):上空から連続突き1【武器】", + "221900361": "C2190_ Gargoyle (Spear): continuous thrust from the Sky 2 [weapon] -- c2190_ガーゴイル(槍):上空から連続突き2【武器】", + "221900362": "C2190_ Gargoyle (Spear): continuous thrust from the Sky 3 [weapon] -- c2190_ガーゴイル(槍):上空から連続突き3【武器】", + "221900363": "C2190_ Gargoyle (Spear): continuous thrust from the sky [body] -- c2190_ガーゴイル(槍):上空から連続突き【体】", + "221900370": "C2190_ Gargoyle (Spear): Additional whack [weapon] -- c2190_ガーゴイル(槍):追加薙ぎ【武器】", + "221900380": "C2190_ Gargoyle (Spear): gliding thrust [weapon] -- c2190_ガーゴイル(槍):滑空突き【武器】", + "221900381": "C2190_ Gargoyle (Spear): gliding thrusting [flying body] -- c2190_ガーゴイル(槍):滑空突き【飛行中体】", + "221900382": "C2190_ Gargoyle (Spear): gliding thrust [body] -- c2190_ガーゴイル(槍):滑空突き【体】", + "221900600": "c2190_ Gargoyle (Common): On guard Solving _ Wings -- c2190_ガーゴイル(共通):ガード解き時_翼", + "221900700": "C2190_ Gargoyle (Light): Saigi: Fire Bullets -- c2190_ガーゴイル(灯火):薙ぎ払い:炎弾", + "221900701": "C2190_ Gargoyle (Light): Saigi: Flames after landing -- c2190_ガーゴイル(灯火):薙ぎ払い:炎弾着弾後", + "221900702": "C2190_ Gargoyle (Light): Saigi: After the Flames incidence -- c2190_ガーゴイル(灯火):薙ぎ払い:炎弾着弾後その後", + "221900705": "C2190_ Gargoyle (Light): Additional Saigi: Fire bullets -- c2190_ガーゴイル(灯火):追加薙ぎ払い:炎弾", + "221900706": "C2190_ Gargoyle (Light): Whack Fall: Fire bullets -- c2190_ガーゴイル(灯火):薙ぎ下がり:炎弾", + "221900710": "C2190_ Gargoyle (Light): Slams: Fire spray -- c2190_ガーゴイル(灯火):叩きつけ:火飛沫", + "221900711": "C2190_ Gargoyle (Light): slams: Fire splashes then -- c2190_ガーゴイル(灯火):叩きつけ:火飛沫その後", + "221900720": "C2190_ Gargoyle (Light): Guard Posture: Fire Spray (Large) -- c2190_ガーゴイル(灯火):ガード体勢:火飛沫(大)前", + "221900721": "C2190_ Gargoyle: Guard Posture: Fire Spray (Large) right -- c2190_ガーゴイル(灯火):ガード体勢:火飛沫(大)右", + "221900722": "C2190_ Gargoyle (Light): Guard Posture: Fire Spray (Large) left -- c2190_ガーゴイル(灯火):ガード体勢:火飛沫(大)左", + "221900730": "C2190_ Gargoyle (Light): Fire attack from above -- c2190_ガーゴイル(灯火):上空から発火攻撃", + "221900900": "C2190_ Gargoyle (Light): Guard -- c2190_ガーゴイル(灯火):ガード", + "221900901": "C2190_ Gargoyle (Light): Guard (Strong) -- c2190_ガーゴイル(灯火):ガード(強)", + "222000110": "C2200_a3001_ slams A -- c2200_a3001_叩きつけA", + "222000120": "C2200_a3002_ stretched up pounding 1 -- c2200_a3002_伸び上がって叩きつける1", + "222000130": "C2200_a3003_ stretched up and pounding 2 -- c2200_a3003_伸び上がって叩きつける2", + "222000140": "c2200_a3004_ bit -- c2200_a3004_噛み付き", + "222010100": "C2201_a3000_ Dive into the ground -- c2201_a3000_地中に潜る", + "222010110": "C2201_a3001_ slams A -- c2201_a3001_叩きつけA", + "222010120": "C2201_a3002_ stretched up pounding 1 -- c2201_a3002_伸び上がって叩きつける1", + "222010130": "C2201_a3003_ stretched up and pounding 2 -- c2201_a3003_伸び上がって叩きつける2", + "222010140": "c2201_a3004_ bit -- c2201_a3004_噛み付き", + "222010150": "c2201_a3005_ Rush bit (throwing and grabbing) -- c2201_a3005_突進噛み付き(投げ・つかみ)", + "222010151": "c2201_a3005_ Rush bit (throwing and fuselage damage) -- c2201_a3005_突進噛み付き(投げ・胴体ダメージ)", + "222010152": "c2201_a3005_ Rush bit (throwing and throwing damage) -- c2201_a3005_突進噛み付き(投げ・投げダメージ)", + "222010300": "C2201_a100_3000_ out on the ground -- c2201_a100_3000_地上に出る", + "222100100": "c2210_ Zombie Crow (Dagger Downer): Overhang -- c2210_ゾンビカラス(短剣ダウナー):突出し", + "222100110": "c2210_ Zombie Crow (Dagger Downer): The Sword Falling -- c2210_ゾンビカラス(短剣ダウナー):斬り下がり", + "222100120": "c2210_ Zombie Crow (Dagger Downer): Single slash -- c2210_ゾンビカラス(短剣ダウナー):単発斬り", + "222100200": "c2210_ Zombie Crow (Scythe Downer): Saigi -- c2210_ゾンビカラス(大鎌ダウナー):薙ぎ払い", + "222100210": "c2210_ Zombie Crow (Scythe Downer): slams -- c2210_ゾンビカラス(大鎌ダウナー):叩きつけ", + "222100220": "c2210_ Zombie Crow (Scythe Downer): Extrusion -- c2210_ゾンビカラス(大鎌ダウナー):押し出し", + "222100300": "c2210_ Zombie Crow (Dagger Upper): Ran through rush-1 -- c2210_ゾンビカラス(短剣アッパー):走り抜けラッシュ - 1", + "222100301": "c2210_ Zombie Crow (Dagger Upper): Ran through the rush-2 -- c2210_ゾンビカラス(短剣アッパー):走り抜けラッシュ - 2", + "222100302": "c2210_ Zombie Crow (Dagger Upper): Ran through rush-3 -- c2210_ゾンビカラス(短剣アッパー):走り抜けラッシュ - 3", + "222100303": "c2210_ Zombie Crow (Dagger Upper): Ran through rush-4 -- c2210_ゾンビカラス(短剣アッパー):走り抜けラッシュ - 4", + "222100304": "c2210_ Zombie Crow (Dagger Upper): Ran through rush-5 -- c2210_ゾンビカラス(短剣アッパー):走り抜けラッシュ - 5", + "222100310": "c2210_ Zombie Crow (Dagger Upper): Take a stab with a jump-1 -- c2210_ゾンビカラス(短剣アッパー):跳びかかり付き刺し - 1", + "222100311": "c2210_ Zombie Crow (Dagger Upper): Take a stab with a jump-2 -- c2210_ゾンビカラス(短剣アッパー):跳びかかり付き刺し - 2", + "222100320": "c2210_ Zombie Crow (dagger Upper): Jumping attack -- c2210_ゾンビカラス(短剣アッパー):跳躍攻撃", + "222100330": "c2210_ Zombie Crow (Dagger Upper): Right Hand daggers Combo 1 -- c2210_ゾンビカラス(短剣アッパー):右手短剣払いコンボ1", + "222100340": "c2210_ Zombie Crow (Dagger Upper): Right Hand daggers Combo 2 -- c2210_ゾンビカラス(短剣アッパー):右手短剣払いコンボ2", + "222100350": "c2210_ Zombie Crow (Dagger Upper): Right Hand daggers Combo 3-1 -- c2210_ゾンビカラス(短剣アッパー):右手短剣払いコンボ3 - 1", + "222100351": "c2210_ Zombie Crow (Dagger Upper): Right Hand daggers Combo 3-2 -- c2210_ゾンビカラス(短剣アッパー):右手短剣払いコンボ3 - 2", + "222100352": "c2210_ Zombie Crow (Dagger Upper): Right Hand daggers Combo 3-3 -- c2210_ゾンビカラス(短剣アッパー):右手短剣払いコンボ3 - 3", + "222100353": "c2210_ Zombie Crow (Dagger Upper): Right Hand daggers Combo 3-4 -- c2210_ゾンビカラス(短剣アッパー):右手短剣払いコンボ3 - 4", + "222100354": "c2210_ Zombie Crow (Dagger Upper): Right Hand daggers Combo 3-5 -- c2210_ゾンビカラス(短剣アッパー):右手短剣払いコンボ3 - 5", + "222100360": "c2210_ Zombie Crow (Dagger Upper): Anti-aircraft attack-1 -- c2210_ゾンビカラス(短剣アッパー):対空攻撃 - 1", + "222100361": "c2210_ Zombie Crow (Dagger Upper): Anti-aircraft attack-2 -- c2210_ゾンビカラス(短剣アッパー):対空攻撃 - 2", + "222100362": "c2210_ Zombie Crow (Dagger Upper): Anti-aircraft attack-3 -- c2210_ゾンビカラス(短剣アッパー):対空攻撃 - 3", + "222100363": "c2210_ Zombie Crow (Dagger Upper): Anti-aircraft attack-4 -- c2210_ゾンビカラス(短剣アッパー):対空攻撃 - 4", + "222100364": "c2210_ Zombie Crow (Dagger Upper): Anti-aircraft attack-5 (left hand) -- c2210_ゾンビカラス(短剣アッパー):対空攻撃 - 5 (左手)", + "222100365": "c2210_ Zombie Crow (Dagger Upper): Anti-aircraft attack-6 (right hand) -- c2210_ゾンビカラス(短剣アッパー):対空攻撃 - 6 (右手)", + "222100370": "c2210_ Zombie Crow (Dagger Upper): 3 consecutive attacks left -- c2210_ゾンビカラス(短剣アッパー):3連撃 左", + "222100371": "c2210_ Zombie Crow (Dagger Upper): Triple Hammer Right -- c2210_ゾンビカラス(短剣アッパー):3連撃 右", + "222100400": "c2210_ Zombie Crow (scythe Upper): Jumping and lowering -- c2210_ゾンビカラス(大鎌アッパー):跳びかかり振りおろし", + "222100410": "c2210_ Zombie Crow (Scythe Upper): Run Kari attack -- c2210_ゾンビカラス(大鎌アッパー):走り飛び掛かり攻撃", + "222100420": "c2210_ Zombie Crow (Scythe Upper): Saigi First Stage -- c2210_ゾンビカラス(大鎌アッパー):薙ぎ払い1段目", + "222100430": "c2210_ Zombie Crow (Scythe Upper): Saigi Second Stage -- c2210_ゾンビカラス(大鎌アッパー):薙ぎ払い2段目", + "222100440": "c2210_ Zombie Crow (Scythe Upper): Shiri -- c2210_ゾンビカラス(大鎌アッパー):袈裟斬り", + "222100450": "c2210_ Zombie Crow (Scythe Upper): 3 consecutive knocked back against (1st half) -- c2210_ゾンビカラス(大鎌アッパー):3連叩き付け(前半1)", + "222100451": "c2210_ Zombie Crow (Scythe Upper): 3 consecutive knocked back against (first half 2) -- c2210_ゾンビカラス(大鎌アッパー):3連叩き付け(前半2)", + "222100460": "c2210_ Zombie Crow (Scythe Upper): 3 consecutive knocked back against (late whack) -- c2210_ゾンビカラス(大鎌アッパー):3連叩き付け(後半薙ぎ)", + "222100470": "c2210_ Zombie Crow (Scythe Upper): Additional jump attacks -- c2210_ゾンビカラス(大鎌アッパー):追加ジャンプ攻撃", + "222100500": "c2210_ Zombie Crow (Cane upper): Insane -- c2210_ゾンビカラス(杖アッパー):発狂させ", + "222100510": "c2210_ Zombie Crow (Cane upper): Magical Flame Arrows -- c2210_ゾンビカラス(杖アッパー):魔法 炎の矢", + "222100520": "c2210_ Zombie Crow (Cane upper): Slams with cane -- c2210_ゾンビカラス(杖アッパー):杖での叩きつけ", + "222100530": "c2210_ Zombie Crow (Cane upper): Nagi with a cane -- c2210_ゾンビカラス(杖アッパー):杖でのなぎ払い", + "222100540": "c2210_ Zombie Crow (Cane upper): Magic Sangi Flame -- c2210_ゾンビカラス(杖アッパー):魔法 薙ぎ払う炎", + "222300100": "c2230_ Shing: Pressed against baked -- c2230_獄吏:焼きごて押し付け", + "222300101": "c2230_ Shing: Pressed against a baking iron _ flipped judgment -- c2230_獄吏:焼きごて押し付け_弾かれ判定", + "222300110": "C2230_ Shing: Bake and move forward -- c2230_獄吏:焼きごて構えて前進", + "222300111": "c2230_ Shing: A baking iron poised to move forward _ determined -- c2230_獄吏:焼きごて構えて前進_弾かれ判定", + "222300120": "c2230_ Shing: Petrified Mist (anterior) (head butt) -- c2230_獄吏:石化の霧(前方) (頭突き)", + "222300130": "c2230_ Shing: Burned and pressed -- c2230_獄吏:焼きごてを押し付ける", + "222300131": "c2230_ Shing: Pressing a baking iron _ flipped judgment -- c2230_獄吏:焼きごてを押し付ける_弾かれ判定", + "222300200": "c2230_ Shing: Petrified Mist (forward) -- c2230_獄吏:石化の霧(前方)", + "222300210": "c2230_ Shing: Petrified Mist (range) -- c2230_獄吏:石化の霧(範囲)", + "222300300": "c2230_ Shing: Grilled and tossed (frontal damage) -- c2230_獄吏:焼きごて投げ(前面ダメージ)", + "222300310": "c2230_ Shing: Grilled and tossed (back damage) -- c2230_獄吏:焼きごて投げ(背面ダメージ)", + "222300900": "Long Distance Magic: A spear of diffuse flames -- 遠距離魔法:拡散する炎の槍", + "222300910": "Long distance Magic: Diffuse Spear of Fire (pointer) -- 遠距離魔法:拡散する炎の槍(ポインター)", + "222400100": "C2240_ Full Armor Beast: knocked back against Combo first attack (weapon) -- c2240_フルアーマー獣:叩き付けコンボ初撃(武器)", + "222400101": "C2240_ Full Armor Beast: knocked back against Combo first attack (body) -- c2240_フルアーマー獣:叩き付けコンボ初撃(体)", + "222400102": "C2240_ Full Armor Beast: knocked back against combo second firing (weapon) -- c2240_フルアーマー獣:叩き付けコンボ2撃目(武器)", + "222400103": "C2240_ Full Armor Beast: knocked back against combo second firing (body) -- c2240_フルアーマー獣:叩き付けコンボ2撃目(体)", + "222400110": "C2240_ Full Armor beast: ground scraping whack (weapon) -- c2240_フルアーマー獣:地削り薙ぎ(武器)", + "222400111": "C2240_ Full Armor beast: ground scraping whack (body) -- c2240_フルアーマー獣:地削り薙ぎ(体)", + "222400112": "C2240_ Full Armor beast: ground scraping whack (shockwave) -- c2240_フルアーマー獣:地削り薙ぎ(衝撃波)", + "222400120": "C2240_ Full Armor Beast: per Body (at rush hour) -- c2240_フルアーマー獣:体当たり(突進時)", + "222400121": "C2240_ Full Armor Beast: Per Body (click-up) -- c2240_フルアーマー獣:体当たり(かち上げ)", + "222400130": "C2240_ Full Armor Beast: Body Press (body) -- c2240_フルアーマー獣:ボディプレス(体)", + "222400131": "C2240_ Full Armor Beast: Body Press (weapon parts, feet) -- c2240_フルアーマー獣:ボディプレス(武器部分、足)", + "222400132": "C2240_ Full Armor Beast: Body Press (shockwave) -- c2240_フルアーマー獣:ボディプレス(衝撃波)", + "222400140": "C2240_ Full Armor Beast: Turning Attack (right) -- c2240_フルアーマー獣:旋回攻撃(右)", + "222400150": "C2240_ Full Armor Beast: Turning Attack (left) -- c2240_フルアーマー獣:旋回攻撃(左)", + "222400151": "C2240_ Full Armor Beast: Hammer (Arms) -- c2240_フルアーマー獣:鉄槌(腕)", + "222400152": "C2240_ Full Armor Beast: Hammer (body) -- c2240_フルアーマー獣:鉄槌(体)", + "222400153": "C2240_ Full Armor beast: Vertical slapping -- c2240_フルアーマー獣:縦叩き", + "222400154": "C2240_ Full Armor Beast: thrust -- c2240_フルアーマー獣:突き", + "222400155": "C2240_ Full Armor Beast: Launch attack -- c2240_フルアーマー獣:打ち上げ攻撃", + "222400156": "C2240_ Full Armor Beast: The right tricky Kesa first Hammer (weapon) -- c2240_フルアーマー獣:右トリッキー袈裟初撃(武器)", + "222400157": "C2241_ Full Armor Beast: The right tricky Kesa first Hammer (body) -- c2241_フルアーマー獣:右トリッキー袈裟初撃(体)", + "222400158": "C2240_ Full Armor Beast: The right tricky Kesa second firing (weapon) -- c2240_フルアーマー獣:右トリッキー袈裟2撃目(武器)", + "222400159": "C2240_ Full Armor Beast: Right tricky Kesa second firing (body) -- c2240_フルアーマー獣:右トリッキー袈裟2撃目(体)", + "222400160": "C2240_ Full Armor Beast: Left Tricky Kesa first Hammer (weapon) -- c2240_フルアーマー獣:左トリッキー袈裟初撃(武器)", + "222400161": "C2241_ Full Armor Beast: Left Tricky Kesa first Hammer (body) -- c2241_フルアーマー獣:左トリッキー袈裟初撃(体)", + "222400162": "C2240_ Full Armor Beast: Left Tricky Kesa second Hammer (weapon) -- c2240_フルアーマー獣:左トリッキー袈裟2撃目(武器)", + "222400163": "C2240_ Full Armor Beast: Left Tricky Kesa second firing (body) -- c2240_フルアーマー獣:左トリッキー袈裟2撃目(体)", + "222400164": "c2240_ Full Armor: per sprinter (weapon) -- c2240_フルアーマー獣:短距離体当たり(武器)", + "222400165": "C2241_ Full Armor Beast: short-range body per (body) -- c2241_フルアーマー獣:短距離体当たり(体)", + "222400166": "C2240_ Full Armor Beast: Lunge (Retrospective) (Weapon 1) -- c2240_フルアーマー獣:突進(振り返り)(武器1)", + "222400167": "C2240_ Full Armor Beast: Lunge (Retrospective) (Weapon 2) -- c2240_フルアーマー獣:突進(振り返り)(武器2)", + "222400168": "C2241_ Full Armor Beast: Lunge (Retrospective) (Body 1) -- c2241_フルアーマー獣:突進(振り返り)(体1)", + "222400169": "C2242_ Full Armor Beast: Lunge (Retrospective) (Body 2) -- c2242_フルアーマー獣:突進(振り返り)(体2)", + "222400170": "C2240_ Full Armor Beast: Rush (Continuous) (Weapon 1) -- c2240_フルアーマー獣:突進(連続)(武器1)", + "222400171": "C2240_ Full Armor Beast: Rush (Continuous) (Weapon 2) -- c2240_フルアーマー獣:突進(連続)(武器2)", + "222400172": "C2241_ Full Armor Beast: Rush (Continuous) (body 1) -- c2241_フルアーマー獣:突進(連続)(体1)", + "222400173": "C2242_ Full Armor Beast: Rush (Continuous) (body 2) -- c2242_フルアーマー獣:突進(連続)(体2)", + "222400174": "C2240_ Full Armor Beast: Turned step (weapon) -- c2240_フルアーマー獣:振り向き前ステップ(武器)", + "222400175": "C2241_ Full Armor Beast: Turned step (body) -- c2241_フルアーマー獣:振り向き前ステップ(体)", + "222400176": "C2240_ Full Armor beast: Snowstorm Breath -- c2240_フルアーマー獣:吹雪ブレス", + "222400177": "C2240_ Full Armor Beast: lateral Saigi (weapon) -- c2240_フルアーマー獣:横薙ぎ払い(武器)", + "222400178": "C2240_ Full Armor Beast: lateral Saigi (body) -- c2240_フルアーマー獣:横薙ぎ払い(体)", + "222400179": "C2240_ Full Armor Beast: knocked back against (for combo) (weapon) -- c2240_フルアーマー獣:叩き付け(コンボ用)(武器)", + "222400180": "C2240_ Full Armor Beast: knocked back against (for combo) (body) -- c2240_フルアーマー獣:叩き付け(コンボ用)(体)", + "222400181": "C2240_ Full Armor Beast: Horizontal Saigi (for combo) (weapon) -- c2240_フルアーマー獣:横薙ぎ払い(コンボ用)(武器)", + "222400182": "C2240_ Full Armor Beast: lateral Saigi (for combo) (body) -- c2240_フルアーマー獣:横薙ぎ払い(コンボ用)(体)", + "222400183": "C2240_ Full Armor Beast: Blizzard Breath (Aura) -- c2240_フルアーマー獣:吹雪ブレス(オーラ)", + "222400250": "C2240_ Full Armor Beast: right foot general purpose -- c2240_フルアーマー獣:右足汎用", + "222400251": "C2240_ Full Armor Beast: Left Foot General -- c2240_フルアーマー獣:左足汎用", + "222500100": "c2250_ Tindalos: Bit from the top (depression) -- c2250_ティンダロス:上から噛み付き(踏み込み大)", + "222500101": "c2250_ Tindalos: From the top bit (depression) (body) -- c2250_ティンダロス:上から噛み付き(踏み込み大)(体)", + "222500102": "c2250_ Tindalos: From the top bit (depression) (right) -- c2250_ティンダロス:上から噛み付き(踏み込み大)(右手)", + "222500103": "c2250_ Tindalos: From the top bit (depression) (left hand) -- c2250_ティンダロス:上から噛み付き(踏み込み大)(左手)", + "222500110": "c2250_ Tindalos: Close bit (from right): wait -- c2250_ティンダロス:至近噛み付き(右から):待機", + "222500111": "c2250_ Tindalos: Close bit (right): Wait (body) -- c2250_ティンダロス:至近噛み付き(右から):待機(体)", + "222500112": "c2250_ Tindalos: Close bit (right): wait -- c2250_ティンダロス:至近噛み付き(右から):待機(右手)", + "222500113": "c2250_ Tindalos: Close bit (right): Wait (left) -- c2250_ティンダロス:至近噛み付き(右から):待機(左手)", + "222500120": "c2250_ Tindalos: Bit from the right: wait -- c2250_ティンダロス:右から噛み付き:待機", + "222500121": "c2250_ Tindalos: Bit from right: wait (body) -- c2250_ティンダロス:右から噛み付き:待機(体)", + "222500122": "c2250_ Tindalos: Bit from right: wait (right) -- c2250_ティンダロス:右から噛み付き:待機(右手)", + "222500123": "c2250_ Tindalos: Bit from right: wait (left hand) -- c2250_ティンダロス:右から噛み付き:待機(左手)", + "222500130": "c2250_ Tindalos: Bit from the left: wait -- c2250_ティンダロス:左から噛み付き:待機", + "222500131": "c2250_ Tindalos: Bit from the left: Wait (body) -- c2250_ティンダロス:左から噛み付き:待機(体)", + "222500132": "c2250_ Tindalos: Bit from the left: wait (left hand) -- c2250_ティンダロス:左から噛み付き:待機(左手)", + "222500133": "c2250_ Tindalos: Bit from the left: wait (left hand) -- c2250_ティンダロス:左から噛み付き:待機(左手)", + "222500140": "c2250_ Tindalos: Bit Dive -- c2250_ティンダロス:飛び込み噛み付き", + "222500141": "c2250_ Tindalos: Dive bit (body) -- c2250_ティンダロス:飛び込み噛み付き(体)", + "222500142": "c2250_ Tindalos: Bit dive (right) -- c2250_ティンダロス:飛び込み噛み付き(右手)", + "222500143": "c2250_ Tindalos: Bit dive (left hand) -- c2250_ティンダロス:飛び込み噛み付き(左手)", + "222500144": "c2250_ Tindalos: Bit dive (right foot) -- c2250_ティンダロス:飛び込み噛み付き(右足)", + "222500145": "c2250_ Tindalos: Bit dive (left foot) -- c2250_ティンダロス:飛び込み噛み付き(左足)", + "222500150": "c2250_ Tindalos: Flipping from the plunge -- c2250_ティンダロス:飛び込みからの反転", + "222500151": "c2250_ Tindalos: Flipped from the plunge (right) -- c2250_ティンダロス:飛び込みからの反転(右手)", + "222500152": "c2250_ Tindalos: Flipping from the dive (left hand) -- c2250_ティンダロス:飛び込みからの反転(左手)", + "222500153": "c2250_ Tindalos: Flipped from the plunge (right foot) -- c2250_ティンダロス:飛び込みからの反転(右足)", + "222500154": "c2250_ Tindalos: Flipped from the dive (left foot) -- c2250_ティンダロス:飛び込みからの反転(左足)", + "222500160": "c2250_ Tindalos: Bit to the right side -- c2250_ティンダロス:右側面へ噛み付き", + "222500161": "c2250_ Tindalos: Bit (body) to the right side -- c2250_ティンダロス:右側面へ噛み付き(体)", + "222500162": "c2250_ Tindalos: bit (right hand) to the right side -- c2250_ティンダロス:右側面へ噛み付き(右手)", + "222500163": "c2250_ Tindalos: Bit to the right side (left) -- c2250_ティンダロス:右側面へ噛み付き(左手)", + "222500164": "c2250_ Tindalos: Bit to the right side -- c2250_ティンダロス:右側面へ噛み付き(右足)", + "222500165": "c2250_ Tindalos: Bit (left foot) to the right side -- c2250_ティンダロス:右側面へ噛み付き(左足)", + "222500170": "c2250_ Tindalos: Bit to the left side -- c2250_ティンダロス:左側面へ噛み付き", + "222500171": "c2250_ Tindalos: Bit (body) to the left side -- c2250_ティンダロス:左側面へ噛み付き(体)", + "222500172": "c2250_ Tindalos: bit (right hand) to the left side -- c2250_ティンダロス:左側面へ噛み付き(右手)", + "222500173": "c2250_ Tindalos: Bit to left side (left) -- c2250_ティンダロス:左側面へ噛み付き(左手)", + "222500174": "c2250_ Tindalos: Bit to the left side (right foot) -- c2250_ティンダロス:左側面へ噛み付き(右足)", + "222500175": "c2250_ Tindalos: bit to left side -- c2250_ティンダロス:左側面へ噛み付き(左足)", + "222500180": "c2250_ Tindalos: Open Mouth and Rush -- c2250_ティンダロス:口を開けて突進", + "222500181": "c2250_ Tindalos: Open mouth and Rush (right hand) -- c2250_ティンダロス:口を開けて突進(右手)", + "222500182": "c2250_ Tindalos: Open mouth and Rush (left hand) -- c2250_ティンダロス:口を開けて突進(左手)", + "222500183": "c2250_ Tindalos: Open mouth and Rush (right foot) -- c2250_ティンダロス:口を開けて突進(右足)", + "222500184": "c2250_ Tindalos: Open mouth and Rush (left foot) -- c2250_ティンダロス:口を開けて突進(左足)", + "222500185": "c2250_ Tindalos: Throwing damage -- c2250_ティンダロス:投げダメージ", + "222500186": "c2250_ Tindalos: Throwing Damage 2 -- c2250_ティンダロス:投げダメージ2", + "222500187": "c2250_ Tindalos: Throwing Damage 3 -- c2250_ティンダロス:投げダメージ3", + "222500190": "c2250_ Tindalos: Lunge attack: bit 1 -- c2250_ティンダロス:突進攻撃:噛み付き1", + "222500191": "c2250_ Tindalos: Lunge attack: Bit 2 -- c2250_ティンダロス:突進攻撃:噛み付き2", + "222500192": "c2250_ Tindalos: Lunge attack: Bit 3 (finish) -- c2250_ティンダロス:突進攻撃:噛み付き3(フィニッシュ)", + "222500193": "c2250_ Tindalos: Rush attack: Bit (body) -- c2250_ティンダロス:突進攻撃:噛み付き(体)", + "222500194": "c2250_ Tindalos: Rush attack: bit (right hand) -- c2250_ティンダロス:突進攻撃:噛み付き(右手)", + "222500195": "c2250_ Tindalos: Rush attack: bit (left hand) -- c2250_ティンダロス:突進攻撃:噛み付き(左手)", + "222500196": "c2250_ Tindalos: Rush attack: Bit (right foot) -- c2250_ティンダロス:突進攻撃:噛み付き(右足)", + "222500197": "c2250_ Tindalos: Lunge attack: bit (left foot) -- c2250_ティンダロス:突進攻撃:噛み付き(左足)", + "222500200": "c2250_ Tindalos: Bit (strong): a3003 Posture -- c2250_ティンダロス:噛み付き(強):a3003姿勢", + "222500201": "c2250_ Tindalos: Bit (strong): a3003 Posture (body) -- c2250_ティンダロス:噛み付き(強):a3003姿勢(体)", + "222500202": "c2250_ Tindalos: Bit (strong): a3003 Posture (right) -- c2250_ティンダロス:噛み付き(強):a3003姿勢(右手)", + "222500203": "c2250_ Tindalos: Bit (strong): a3003 posture (left) -- c2250_ティンダロス:噛み付き(強):a3003姿勢(左手)", + "222500210": "c2250_ Tindalos: Writhes around on his back: head -- c2250_ティンダロス:仰向けでのたうち回る:頭", + "222500211": "c2250_ Tindalos: Writhes around on his back: right hand -- c2250_ティンダロス:仰向けでのたうち回る:右手", + "222500212": "c2250_ Tindalos: Writhes around on his back: left hand -- c2250_ティンダロス:仰向けでのたうち回る:左手", + "222500213": "c2250_ Tindalos: Writhes around on his back: right foot -- c2250_ティンダロス:仰向けでのたうち回る:右足", + "222500214": "c2250_ Tindalos: Writhes around on his back: left foot -- c2250_ティンダロス:仰向けでのたうち回る:左足", + "222500215": "c2250_ Tindalos: Writhes around on his back: tail -- c2250_ティンダロス:仰向けでのたうち回る:尻尾", + "222500700": "c2250_ Tindalos: Thunder Breath -- c2250_ティンダロス:雷ブレス", + "222600700": "c2260_ Barista: Barista -- c2260_三連バリスタ:バリスタ", + "222600710": "c2260_ three barista: Varistor object Destructive Bullets -- c2260_三連バリスタ:バリスタオブジェクト破壊弾", + "222700010": "c2270_ Stench Crab: Right scissors _ swing down near face -- c2270_死臭蟹:右鋏_顔付近振り下ろし", + "222700020": "c2270_ Stench Crab: Right Shears _ thrusting -- c2270_死臭蟹:右鋏_突き刺し", + "222700030": "c2270_ Stench Crab: Right Shears _ depression Piercing -- c2270_死臭蟹:右鋏_踏み込み突刺し", + "222700040": "c2270_ Stench Crab: Left shears _ face near Chockin -- c2270_死臭蟹:左鋏_顔付近ちょっきん", + "222700050": "c2270_ Stench Crab: Left shears _ poked -- c2270_死臭蟹:左鋏_突き", + "222700060": "c2270_ Stench Crab: Left shears _ diagonal Continuous attack (1 ~ two) -- c2270_死臭蟹:左鋏_斜め連続攻撃(一~二段目)", + "222700080": "c2270_ Stench Crab: Right Shears _ Saigi -- c2270_死臭蟹:右鋏_薙ぎ払い", + "222700090": "c2270_ Stench Crab: Left and Right scissors lash (1-two) -- c2270_死臭蟹:左右ハサミラッシュ(左鋏_一~二段目)", + "222700091": "c2270_ Stench Crab: Left and right scissors rush (Sandanme) -- c2270_死臭蟹:左右ハサミラッシュ(右鋏_三段目)", + "222700092": "c2270_ Stench Crab: Left and right scissors rush (Shidara) -- c2270_死臭蟹:左右ハサミラッシュ(左鋏_四段目)", + "222700093": "c2270_ Stench Crab: Left and right scissors rush (Guarder) -- c2270_死臭蟹:左右ハサミラッシュ(右鋏_五段目)", + "222700100": "c2270_ Stench Crab: General Press -- c2270_死臭蟹:全身プレス", + "222700110": "c2270_ Stench crab: Bubble spitting -- c2270_死臭蟹:泡吐き", + "222700120": "c2270_ Stench Crab: Right side attack (medium range) -- c2270_死臭蟹:右側面攻撃(中距離)", + "222700130": "c2270_ Stench Crab: Right side attack (long distance) -- c2270_死臭蟹:右側面攻撃(遠距離)", + "222700140": "c2270_ Stench Crab: Left side attack (medium range) -- c2270_死臭蟹:左側面攻撃(中距離)", + "222700150": "c2270_ Stench Crab: Left side attack (long distance) -- c2270_死臭蟹:左側面攻撃(遠距離)", + "222700200": "c2270_ Stench Crab: Throwing start -- c2270_死臭蟹:投げ始動", + "222700201": "c2270_ Stench Crab: Throwing attack (sandwiching) -- c2270_死臭蟹:投げ攻撃(挟み付け)", + "222700202": "c2270_ Stench Crab: Throwing attack (finish) -- c2270_死臭蟹:投げ攻撃(フィニッシュ)", + "222710010": "c2271_ Stench Crab (small) _ Chockin with right shears -- c2271_死臭蟹(小)_右鋏でちょっきん", + "222710020": "c2271_ Stench Crab (small) _ Chockin with left shears -- c2271_死臭蟹(小)_左鋏でちょっきん", + "222710030": "c2271_ Stench Crab (small) _ hit with both scissors (right) -- c2271_死臭蟹(小)_両ハサミで殴る(右手)", + "222710031": "c2271_ Stench Crab (small) _ with both scissors (left hand) -- c2271_死臭蟹(小)_両ハサミで殴る(左手)", + "222710040": "c2271_ Stench Crab (small) _ right-side attack (medium range) -- c2271_死臭蟹(小)_右側面攻撃(中距離)", + "222710050": "c2271_ Stench Crab (small) _ Left side attack (medium range) -- c2271_死臭蟹(小)_左側面攻撃(中距離)", + "230200100": "Bare Hands _ Right hook -- 素手_右フック", + "230200110": "Bare hands _ Left hand slams: left arm -- 素手_左手叩きつけ:左腕", + "230200111": "Bare hands _ The left hand slams: knees -- 素手_左手叩きつけ:両膝", + "230200120": "Bare hands _ both hand grated -- 素手_両手振りおろし", + "230200130": "Saigi about Bare hands _ left elbow: Ling -- 素手_左肘をついての薙ぎ払い:肘鉄", + "230200131": "Saigi about Bare hands _ left elbow: Saigi -- 素手_左肘をついての薙ぎ払い:薙ぎ払い", + "230200140": "Bare hands _ Left foot crushing -- 素手_左足踏み潰し", + "230200150": "Bare hands _ Right foot crush -- 素手_右足踏み潰し", + "230200160": "Bare Hands _ Explore action -- 素手_探りアクション", + "230200170": "Transition to bare hands _ throw -- 素手_投げへの遷移", + "230200171": "Bare hands _ Throwing damage -- 素手_投げダメージ", + "230200180": "Bare hands _ Turned Saigi -- 素手_振り向き薙ぎ払い", + "230200190": "Bare hands _ ground crushed: slams -- 素手_地面砕き:叩きつけ", + "230200191": "Bare hands _ ground crushed: crushed -- 素手_地面砕き:砕き", + "230200200": "Bare hands rampage: 1 shot left foot trampled -- 素手_大暴れ:1撃目左足踏みつけ", + "230200201": "Bare Hands _ Rampage: 2-hammer right foot trampling -- 素手_大暴れ:2撃目右足踏みつけ", + "230200202": "Bare Hands _ Rampage: 3rd Hammer left arm Saigi -- 素手_大暴れ:3撃目左腕薙ぎ払い", + "230200203": "Bare Hands _ Rampage: 4-shot left foot depression -- 素手_大暴れ:4撃目左足踏み込み", + "230200204": "Bare Hands _ Rampage: 5 Hammer right hook -- 素手_大暴れ:5撃目右フック", + "230200205": "Bare Hands _ Rampage: 6th Hammer Right Back Fist -- 素手_大暴れ:6撃目右裏拳", + "230200206": "Bare Hands _ Rampage: 7th Hammer left hook -- 素手_大暴れ:7撃目左フック", + "230200207": "Bare Hands _ Rampage: 8th Hammer left Fist -- 素手_大暴れ:8撃目左裏拳", + "230200208": "Bare Hands _ Rampage: 9th Hammer Right Saigi -- 素手_大暴れ:9撃目右薙ぎ払い", + "230200300": "Saigi The Iron Sphere _ right -- 鉄球_右薙ぎ払い", + "230200310": "Saigi The Iron Sphere _ left -- 鉄球_左薙ぎ払い", + "230200320": "Iron Ball _ Iron Ball -- 鉄球_鉄球振りおろし", + "230200330": "Iron Sphere _ Swing down: Left -- 鉄球_鉄球振り下ろし:左", + "230200340": "Iron Sphere _ Swing down: Right -- 鉄球_鉄球振り下ろし:右", + "230200350": "Iron Sphere _ Right foot crush -- 鉄球_右足踏み潰し", + "230200360": "Iron Sphere _ Left foot crushing -- 鉄球_左足踏み潰し", + "230200370": "Iron Sphere Bun -- 鉄球_鉄球ぶん回し", + "230200500": "Iron Sphere _ General pressure -- 鉄球_汎用風圧", + "230210100": "C3020_ Golem (Large): right leg trampling -- c3020_ゴーレム(大):右足踏みつけ", + "230210101": "C3020_ Golem (Large): Right foot trampled (wind pressure) -- c3020_ゴーレム(大):右足踏みつけ(風圧)", + "230210110": "C3020_ Golem (Large): Left foot trampled -- c3020_ゴーレム(大):左足踏みつけ", + "230210111": "C3020_ Golem (Large): Left foot trampled (wind pressure) -- c3020_ゴーレム(大):左足踏みつけ(風圧)", + "230210120": "C3020_ Golem (Large): grated both hand and hand 1 -- c3020_ゴーレム(大):両手振りおろし1", + "230210121": "C3020_ Golem (Large): both hand-in-hand 1 (wind pressure) -- c3020_ゴーレム(大):両手振りおろし1(風圧)", + "230210130": "C3020_ Golem (Large): Both hand and hand grated 2 -- c3020_ゴーレム(大):両手振りおろし2", + "230210131": "C3020_ Golem (Large): Both hand and hand 2 (wind pressure) -- c3020_ゴーレム(大):両手振りおろし2(風圧)", + "230210140": "C3020_ Golem (Large): Right hand (forward) -- c3020_ゴーレム(大):右手払い(前方)", + "230210150": "C3020_ Golem (Large): Right hand (rear) -- c3020_ゴーレム(大):右手払い(後方)", + "230210300": "C3020_ Golem (dai): Altar slapping -- c3020_ゴーレム(大):祭壇叩き", + "230210301": "C3020_ Golem (Large): Altar slapping (wind pressure) -- c3020_ゴーレム(大):祭壇叩き(風圧)", + "230210310": "C3020_ Golem (Large): Altar whack -- c3020_ゴーレム(大):祭壇薙ぎ", + "230210320": "C3020_ Golem (Large): Heat up -- c3020_ゴーレム(大):ヒートアップ", + "230210330": "C3020_ Golem (Large): Heat up -- c3020_ゴーレム(大):ヒートアップ", + "230210340": "C3020_ Golem (Large): Heat up -- c3020_ゴーレム(大):ヒートアップ", + "230210500": "C3020_ Golem (Large): right hand beating -- c3020_ゴーレム(大):右手前殴り", + "230210501": "C3020_ Golem (Large): Right hand punch (wind pressure) -- c3020_ゴーレム(大):右手前殴り(風圧)", + "230210510": "C3020_ Golem (Large): Right Saigi -- c3020_ゴーレム(大):右薙ぎ払い", + "230210520": "C3020_ Golem (Large): left-hand beating -- c3020_ゴーレム(大):左手前殴り", + "230210521": "C3020_ Golem (Large): Front left punch (wind pressure) -- c3020_ゴーレム(大):左手前殴り(風圧)", + "230210530": "C3020_ Golem (Large): Left Saigi -- c3020_ゴーレム(大):左薙ぎ払い", + "230210540": "C3020_ Golem (Large): Both sides of the front beating -- c3020_ゴーレム(大):両手前殴り", + "230210541": "C3020_ Golem (Large): Both sides beating (wind pressure) -- c3020_ゴーレム(大):両手前殴り(風圧)", + "230210550": "C3020_ Golem (Large): Head butt -- c3020_ゴーレム(大):頭突き", + "230210560": "C3020_ Golem (Large): Right-hand bridge beating -- c3020_ゴーレム(大):右手橋殴り", + "230210580": "C3020_ Golem (Large): Two-handed bridge punch -- c3020_ゴーレム(大):両手橋殴り", + "230210590": "C3020_ Golem (Large): Right-hand bridge Saigi (beating) -- c3020_ゴーレム(大):右手橋薙ぎ払い(殴り)", + "230210591": "C3020_ Golem (Large): Right-hand bridge Saigi (payable) -- c3020_ゴーレム(大):右手橋薙ぎ払い(払い)", + "230210600": "C3020_ Golem (Large): Left hand Dast Shute -- c3020_ゴーレム(大):左手ダストシュート殴り", + "230210700": "C3020_ Golem (Large): right hand beating -- c3020_ゴーレム(大):右手前殴り", + "230210701": "C3020_ Golem (Large): Right hand punch (wind pressure) -- c3020_ゴーレム(大):右手前殴り(風圧)", + "230210710": "C3020_ Golem (Large): Both hand and hand grated -- c3020_ゴーレム(大):両手振りおろし", + "230210711": "C3020_ Golem (Large): Both hand and hand (wind pressure) -- c3020_ゴーレム(大):両手振りおろし(風圧)", + "230210720": "C3020_ Golem (Large): Left hand Saigi knocked back against part -- c3020_ゴーレム(大):左手薙ぎ払い 叩き付け部分", + "230210721": "C3020_ Golem (Large): Left hand Saigi knocked back against partial wind pressure -- c3020_ゴーレム(大):左手薙ぎ払い 叩き付け部分 風圧", + "230210722": "C3020_ Golem (Large): Left hand Saigi Saigi -- c3020_ゴーレム(大):左手薙ぎ払い 薙ぎ払い", + "230210730": "C3020_ Golem (Large): Right hand Saigi -- c3020_ゴーレム(大):右手薙ぎ払い", + "230210740": "C3020_ Golem (Large): The right hand of the enshrined punch -- c3020_ゴーレム(大):安置パンチ右手", + "230210750": "C3020_ Golem (Large): The left hand of the morgue punch -- c3020_ゴーレム(大):安置パンチ左手", + "230210760": "C3020_ Golem (Large): left-hand beating -- c3020_ゴーレム(大):左手前殴り", + "230210761": "C3020_ Golem (Large): Front left punch (wind pressure) -- c3020_ゴーレム(大):左手前殴り(風圧)", + "230210770": "C3020_ Golem (Large): Right hand grip -- c3020_ゴーレム(大):右手安置掴み", + "230210780": "C3020_ Golem (Large): Left hand grip -- c3020_ゴーレム(大):左手安置掴み", + "230400010": "The warden of the c3040_ Abyss: the Rush Whack Dagger -- c3040_深淵の監視者:突進薙ぎ 短剣", + "230400011": "Warden of the c3040_ Abyss: Rush Whack Saigi -- c3040_深淵の監視者:突進薙ぎ 薙ぎ払い", + "230400020": "Warden of the c3040_ Abyss: the Sword up -- c3040_深淵の監視者:斬り上げ", + "230400030": "Warden of the c3040_ Abyss: under the butt -- c3040_深淵の監視者:下突き", + "230400040": "The warden of the c3040_ Abyss: the reservoir thrust -- c3040_深淵の監視者:溜め突き", + "230400041": "The warden of the c3040_ Abyss: the Infuser Dash -- c3040_深淵の監視者:溜め突き ダッシュ", + "230400042": "The warden of the c3040_ Abyss: Infuser Guard -- c3040_深淵の監視者:溜め突き ガード", + "230400050": "Observer of the c3040_ Abyss: Shiri -- c3040_深淵の監視者:袈裟斬り", + "230400051": "Observer of the c3040_ abyss: lateral whack -- c3040_深淵の監視者:横薙ぎ", + "230400052": "Observer of the Abyss of c3040_: slams -- c3040_深淵の監視者:叩きつけ", + "230400060": "Warden of the c3040_ Abyss: the forward slash -- c3040_深淵の監視者:前転斬り", + "230400070": "Warden of the c3040_ Abyss: A slew of attacking turns -- c3040_深淵の監視者:切り抜け攻撃 旋回", + "230400071": "Warden of the c3040_ Abyss: the attack dash -- c3040_深淵の監視者:切り抜け攻撃 ダッシュ", + "230400080": "Observer of the c3040_ Abyss: Continuous Attack longsword -- c3040_深淵の監視者:連続攻撃 長剣", + "230400081": "Warden of the c3040_ Abyss: a succession attack dagger -- c3040_深淵の監視者:連続攻撃 短剣", + "230400082": "Observer of the c3040_ Abyss: Continuous attack tightening -- c3040_深淵の監視者:連続攻撃締め", + "230400090": "Warden of the c3040_ Abyss: short distance restraint -- c3040_深淵の監視者:近距離牽制", + "230400100": "The observer of the c3040_ Abyss: the Sword -- c3040_深淵の監視者:斬り払い", + "230400101": "The observer of the c3040_ Abyss: Dagger Stab -- c3040_深淵の監視者:短剣刺し", + "230400102": "Observer of the c3040_ Abyss: Swinging -- c3040_深淵の監視者:振り上げ", + "230400910": "Warden of the c3040_ Abyss: Middle Range Combo First stage -- c3040_深淵の監視者:中距離コンボ 1段目", + "230400911": "Observer of the c3040_ Abyss: Second Stage Combo -- c3040_深淵の監視者:中距離コンボ 2段目", + "230400920": "Observer of the c3040_ Abyss: Dust Makiage -- c3040_深淵の監視者:土埃まきあげ", + "230400930": "The warden of the c3040_ Abyss: the reservoir thrust -- c3040_深淵の監視者:溜め突き", + "230400940": "Warden of the c3040_ Abyss: The first stage of the short range combo -- c3040_深淵の監視者:近距離コンボ 1段目", + "230400941": "Warden of the c3040_ Abyss: Second stage of the short range combo -- c3040_深淵の監視者:近距離コンボ 2段目", + "230400942": "Warden of the c3040_ Abyss: The third stage of the short range combo -- c3040_深淵の監視者:近距離コンボ 3段目", + "230400950": "Warden of the c3040_ Abyss: attack -- c3040_深淵の監視者:切り抜け攻撃", + "230400960": "Observer of c3040_ Abyss: Positioning change -- c3040_深淵の監視者:ポジショニング替え", + "230400970": "Warden of the c3040_ Abyss: from left to right -- c3040_深淵の監視者:左から右の斬り払い", + "230400980": "Warden of the c3040_ Abyss: Attack from the right -- c3040_深淵の監視者:右からの斬り攻撃", + "230400990": "The observer of the c3040_ Abyss: The attack from the run -- c3040_深淵の監視者:走りからの攻撃", + "230500100": "c3050_ Ash Daemon: Combo 1-1 Saigi -- c3050_灰のデーモン:コンボ1-1薙ぎ払い", + "230500101": "c3050_ Ash Daemon: Combo 1-2 slams (center point) -- c3050_灰のデーモン:コンボ1-2叩きつけ(中心点)", + "230500102": "c3050_ Ash Daemon: Combo 1-2 slams (outer circle) -- c3050_灰のデーモン:コンボ1-2叩きつけ(外円部)", + "230500110": "c3050_ Ash Daemon: ground-running Hatake -- c3050_灰のデーモン:地走薙", + "230500111": "c3050_ Ash Daemon: Reverse Payment -- c3050_灰のデーモン:逆払い", + "230500112": "c3050_ Ash Daemon: Ground-running Hatake (preliminary operation) -- c3050_灰のデーモン:地走薙(予備動作)", + "230500120": "c3050_ Ash daemon: Hammered slams (weapon vertical, center point) -- c3050_灰のデーモン:槌叩きつけ(武器縦持ち、中心点)", + "230500121": "c3050_ Ash daemon: Hammered slams (weapon vertical, outer circle) -- c3050_灰のデーモン:槌叩きつけ(武器縦持ち、外円部)", + "230500130": "c3050_ Ash daemon: Hammered and dropped (to the left, center point) -- c3050_灰のデーモン:槌持ち上げ落とし(左側へ、中心点)", + "230500131": "c3050_ Ash daemon: Hammered and dropped (to the left, out of the circle) -- c3050_灰のデーモン:槌持ち上げ落とし(左側へ、外円部)", + "230500140": "c3050_ Ash daemon: slams (right, center point) -- c3050_灰のデーモン:叩きつけ(右側へ、中心点)", + "230500141": "c3050_ Ash daemon: slams (outward circle to the right) -- c3050_灰のデーモン:叩きつけ(右側へ外円部)", + "230500150": "c3050_ Ash daemon: Hammered lift drop (center point) -- c3050_灰のデーモン:槌持ち上げ落とし(中心点)", + "230500151": "c3050_ Ash daemon: Hammered Lift Drop (outer circle) -- c3050_灰のデーモン:槌持ち上げ落とし(外円部)", + "230500160": "c3050_ Ash daemon: slams (center point) -- c3050_灰のデーモン:叩きつけ(中心点)", + "230500161": "c3050_ Ash daemon: slams (outer circle) -- c3050_灰のデーモン:叩きつけ(外円部)", + "230500170": "c3050_ Ash Daemon: add Bun slams 1 -- c3050_灰のデーモン:追加ぶん回し叩きつけ1", + "230500171": "c3050_ Ash Daemon: Add Bun slams 2 -- c3050_灰のデーモン:追加ぶん回し叩きつけ2", + "230500172": "c3050_ Ash Daemon: Additional Bun slams 3 (center) -- c3050_灰のデーモン:追加ぶん回し叩きつけ3(中心部)", + "230500173": "c3050_ Ash Daemon: Additional Bun slams 3 (outer circle) -- c3050_灰のデーモン:追加ぶん回し叩きつけ3(外円部)", + "230500700": "c3050_ Ash daemon: Broad breath (straight wind) -- c3050_灰のデーモン:広範囲ブレス(直風)", + "230500710": "c3050_ Ash Daemon: Immediate Breath (straight wind) -- c3050_灰のデーモン:直下ブレス(直風)", + "230500720": "c3050_ Ash daemon: Tobichiru Flame Search Grenade -- c3050_灰のデーモン:とびちる炎検索弾", + "230500730": "c3050_ Ash Daemon: Lava meteor -- c3050_灰のデーモン:溶岩メテオ", + "230500740": "c3050_ Ash daemon: Lava tsunami -- c3050_灰のデーモン:溶岩津波", + "230600010": "c3060_ Firewood Daemon: Combo 1_ both hands: Saigi -- c3060_薪のデーモン:コンボ1_両手:薙ぎ払い", + "230600011": "c3060_ Firewood Daemon: Combo 1_ both hands: slams -- c3060_薪のデーモン:コンボ1_両手:叩きつけ", + "230600020": "c3060_ Firewood Daemon: lunge: Per body -- c3060_薪のデーモン:突進:体当たり", + "230600030": "c3060_ Firewood daemon: close-up -- c3060_薪のデーモン:近距離打ちおろし", + "230600040": "c3060_ Firewood daemon: slammed away -- c3060_薪のデーモン:距離詰め叩きつけ", + "230600050": "c3060_ Firewood Daemon: the first attack -- c3060_薪のデーモン:叩きつけ三連・初撃", + "230600051": "C3060_: The demon of firewood -- c3060_薪のデーモン:叩きつけ三連・弐撃", + "230600052": "C3060_: The demon of firewood -- c3060_薪のデーモン:叩きつけ三連・終撃", + "230600060": "c3060_ Firewood Daemon: ground-running Hatake -- c3060_薪のデーモン:地走薙", + "230600700": "c3060_ Firewood Daemon: Breath -- c3060_薪のデーモン:ブレス", + "230600710": "c3060_ Firewood daemon: slams: Shockwave -- c3060_薪のデーモン:叩きつけ:衝撃波", + "230600800": "c3060_ Firewood daemon: Walk breath: Drop it at your feet -- c3060_薪のデーモン:歩きブレス:足元に落とす", + "230600801": "c3060_ Firewood daemon: Walking breath: Leave at your feet -- c3060_薪のデーモン:歩きブレス:足元に残す", + "230700010": "c3070_ Daemon priest: grated 1 -- c3070_デーモン司祭:振りおろし1", + "230700020": "c3070_ daemon priest: grated 2 -- c3070_デーモン司祭:振りおろし2", + "230700030": "c3070_ Daemon priest: grated -- c3070_デーモン司祭:振りおろし", + "230700700": "c3070_ Demon Priest: The Fire ball of chaos -- c3070_デーモン司祭:混沌の火球", + "230700710": "c3070_ daemon priest: Chaos Fireball (second) -- c3070_デーモン司祭:混沌の火球(2発目)", + "230700720": "c3070_ Daemon Priest: The Great Storm of Chaos -- c3070_デーモン司祭:混沌の大嵐", + "230800700": "Butterfly of c3080_: Scales rain -- c3080_蝕の蝶:鱗粉の雨", + "230800710": "Butterfly of c3080_: The Big God soldier laser -- c3080_蝕の蝶:巨神兵レーザー", + "230800720": "Butterfly of c3080_: high-speed explosion -- c3080_蝕の蝶:低速大爆発蝕弾", + "230800730": "c3080_ Butterfly: Scales bombing -- c3080_蝕の蝶:鱗粉爆撃", + "230800740": "Butterfly of c3080_: Scales Rain 2 -- c3080_蝕の蝶:鱗粉の雨2", + "230900010": "c3090_: Violent -- c3090_牢蜘蛛:暴れる", + "231000010": "c3100_ crystal Lizard God: Right S-Saigi -- c3100_結晶トカゲの神:右S字薙ぎ払い", + "231000011": "c3100_ crystal Lizard God: Right S-Saigi _ Crystal -- c3100_結晶トカゲの神:右S字薙ぎ払い_結晶", + "231000020": "c3100_ crystal Lizard God: Left S-shaped Saigi -- c3100_結晶トカゲの神:左S字薙ぎ払い", + "231000021": "c3100_ crystal Lizard God: Left S-shaped Saigi _ Crystal -- c3100_結晶トカゲの神:左S字薙ぎ払い_結晶", + "231000030": "c3100_ crystal lizard God: Left tail attack -- c3100_結晶トカゲの神:左尻尾攻撃", + "231000040": "c3100_ crystal lizard God: Right tail attack -- c3100_結晶トカゲの神:右尻尾攻撃", + "231000050": "c3100_ crystal lizard God: crushing both hands -- c3100_結晶トカゲの神:両手叩き潰し", + "231000051": "c3100_ crystal lizard God: both hands crushed -- c3100_結晶トカゲの神:両手叩き潰し_結晶", + "231000060": "c3100_ crystal Lizard God: Plunge attack -- c3100_結晶トカゲの神:飛び込み攻撃", + "231000061": "c3100_ crystal Lizard God: Plunge attack _ Crystals -- c3100_結晶トカゲの神:飛び込み攻撃_結晶", + "231000070": "c3100_ crystal lizard God: Breath -- c3100_結晶トカゲの神:ブレス", + "231000080": "c3100_ crystal lizard God: Right scratching -- c3100_結晶トカゲの神:右引っ掻き", + "231000090": "c3100_ crystal lizard God: Left scratching -- c3100_結晶トカゲの神:左引っ掻き", + "231000100": "c3100_ Crystal lizard God: start of rotation (long distance) -- c3100_結晶トカゲの神:回転開始(遠距離)", + "231000110": "c3100_ crystal lizard God: spinning -- c3100_結晶トカゲの神:回転", + "231000120": "c3100_ crystal lizard God: Rotation complete -- c3100_結晶トカゲの神:回転完了", + "231000130": "c3100_ crystal lizard God: Rotation complete (reversal) -- c3100_結晶トカゲの神:回転完了(反転)", + "231000140": "c3100_ crystal lizard God: bit -- c3100_結晶トカゲの神:噛み付き", + "231000150": "God of c3100_ Crystal lizard: Start of rotation (short distance) -- c3100_結晶トカゲの神:回転開始(近距離)", + "231000160": "God of c3100_ crystal lizard: moving left and right -- c3100_結晶トカゲの神:左右移動", + "231000170": "c3100_ crystal lizard God: Step left and right -- c3100_結晶トカゲの神:左右ステップ", + "231000180": "c3100_ crystal Lizard God: Step back -- c3100_結晶トカゲの神:バックステップ", + "231000190": "c3100_ crystal lizard God: for crystal attack -- c3100_結晶トカゲの神:水晶攻撃用", + "231000220": "c3100_ crystal lizard God: bit left derived -- c3100_結晶トカゲの神:噛み付き左派生", + "231100010": "Spider of c3110_: bit -- c3110_蝕の蜘蛛:噛み付き", + "231100020": "Spider of c3110_: bit: Depression -- c3110_蝕の蜘蛛:噛み付き:踏み込み小", + "231100030": "Spider of c3110_: Crush with Arms: mouth -- c3110_蝕の蜘蛛:腕で叩き潰す:口", + "231100031": "Spider of c3110_: arms crushed by arms -- c3110_蝕の蜘蛛:腕で叩き潰す:腕", + "231100032": "Spider of c3110_: crushing with Arms: depression Small: Mouth -- c3110_蝕の蜘蛛:腕で叩き潰す:踏み込み小:口", + "231100033": "Spider of c3110_: crushing with Arms: stepping Small: Arms -- c3110_蝕の蜘蛛:腕で叩き潰す:踏み込み小:腕", + "231100040": "Spider of c3110_: Kari: High: Foot 1 -- c3110_蝕の蜘蛛:飛び掛かり:高い:足1", + "231100041": "Spider of c3110_: Kari: High: Foot 2 -- c3110_蝕の蜘蛛:飛び掛かり:高い:足2", + "231100050": "Spider of c3110_: Kari: Low-right -- c3110_蝕の蜘蛛:飛び掛かり:低空:右手", + "231100051": "Spider of c3110_: Kari: Low-handed -- c3110_蝕の蜘蛛:飛び掛かり:低空:左手", + "231100060": "Spider of c3110_: bit: Right side -- c3110_蝕の蜘蛛:噛み付き:右側面", + "231100070": "Spider of c3110_: bit: Left side -- c3110_蝕の蜘蛛:噛み付き:左側面", + "231100080": "Spider of c3110_: bit ② -- c3110_蝕の蜘蛛:噛み付き②", + "231100090": "Spider of c3110_: rampage: the mouth -- c3110_蝕の蜘蛛:暴れまわる:口", + "231100091": "Spider of c3110_: rampage: Left and right hind -- c3110_蝕の蜘蛛:暴れまわる:左右後足", + "231100092": "Spider of c3110_: rampage: the left leg -- c3110_蝕の蜘蛛:暴れまわる:左中足", + "231100093": "Spider of c3110_: rampage: Four Legs -- c3110_蝕の蜘蛛:暴れまわる:前四本足", + "231100700": "Spider of c3110_: Exhale: Ground -- c3110_蝕の蜘蛛:蝕を吐く:地面", + "231100701": "Spider of c3110_: Exhale: Previous -- c3110_蝕の蜘蛛:蝕を吐く:前", + "231100710": "c3110_: Smoke Screen -- c3110_蝕の蜘蛛:煙幕", + "231100800": "c3110_ common attack [obj good small, large] -- c3110_共通攻撃【OBJダメ小・大型】", + "231200010": "c3120_ Mori no sacred beast: Beat with a cane -- c3120_森の霊獣:杖で殴る", + "231200020": "c3120_ Mori no sacred beast: Hit with a cane: depression -- c3120_森の霊獣:杖で殴る:踏み込み大", + "231200030": "C3120_ Forest Sacred Beast: Beat with a cane: left and right side -- c3120_森の霊獣:杖で殴る:左右側面", + "231200040": "c3120_ Mori no sacred Beast: Bun Cane: Depression -- c3120_森の霊獣:杖をぶん回す:踏み込み大", + "231200050": "c3120_ Mori no sacred beast: Punch with a cane: depression small -- c3120_森の霊獣:杖で殴る:踏み込み小", + "231200060": "Sacred Beast of the c3120_ Forest: shaking with a cane: Bun posture -- c3120_森の霊獣:杖で振り下ろし:ぶん回し姿勢", + "231200500": "c3120_ Mori no sacred beast: Cane common knocked back against shock wave: small -- c3120_森の霊獣:杖共通叩き付け衝撃波:小", + "231200510": "c3120_ Mori no sacred beast: Cane common knocked back against shock wave: large -- c3120_森の霊獣:杖共通叩き付け衝撃波:大", + "231200700": "Sacred Beast of c3120_ Forest: Magic 1: Force -- c3120_森の霊獣:魔法1:フォース", + "231200710": "c3120_ Mori no sacred Beast: Magic 2: Soul Restraints -- c3120_森の霊獣:魔法2:魂縛り", + "231400100": "Straight Breath _ Head -- 直線ブレス_頭", + "231400110": "Saigi Breath _ Head -- 薙ぎ払いブレス_頭", + "231400120": "Bit _ head -- 噛み付き_頭", + "231400121": "Bit _ Neck -- 噛み付き_首", + "231400130": "Scratching _ Feet -- 引っ掻き_足", + "231400131": "Scratching _ Blast -- 引っ掻き_爆風", + "231400140": "Right squished _ feet -- 右踏み付け_足", + "231400141": "Right squished _ Blast -- 右踏み付け_爆風", + "231400150": "Left squished _ feet -- 左踏み付け_足", + "231400151": "Left squished _ Blast -- 左踏み付け_爆風", + "231400160": "A tail payment -- 尻尾払い", + "231400170": "Rush Bit _ Head -- 突進噛み付き_頭", + "231400171": "Rush Bit _ Neck -- 突進噛み付き_首", + "231400180": "Immediate breath _ Foot -- 直下ブレス_足", + "231400181": "Immediate breath _ Blast -- 直下ブレス_爆風", + "231400190": "Glide Breath _ Head -- 滑空ブレス_頭", + "231400191": "Glide Breath _ Neck -- 滑空ブレス_首", + "231400192": "Glide Breath _ feet -- 滑空ブレス_足", + "231400193": "Glide Breath _ Blast -- 滑空ブレス_爆風", + "231400200": "Right bit _ head -- 右旋回噛み付き_頭", + "231400201": "Right bit _ neck -- 右旋回噛み付き_首", + "231400210": "Left bit _ head -- 左旋回噛み付き_頭", + "231400211": "Left bit _ neck -- 左旋回噛み付き_首", + "231400500": "Straight Breath _ Breath -- 直線ブレス_ブレス", + "231400510": "Saigi Bless _ Breath -- 薙ぎ払いブレス_ブレス", + "231400520": "Immediate breath _ Breath -- 直下ブレス_ブレス", + "231400530": "Glide Breath _ Breath -- 滑空ブレス_ブレス", + "231400540": "Event ①: Hashimoto _ Swirling Breath _ bless ① -- イベント①:橋下_旋回ブレス_ブレス①", + "231400550": "Event ①: Hashimoto _ Swirling Breath _ bless ② -- イベント①:橋下_旋回ブレス_ブレス②", + "231400560": "Event ②: Climb 2_ appearance _ on tower → Square _ breath -- イベント②:登る2_登場_塔上→広場_ブレス", + "231400570": "Event ②: Climb 2_ another tower → square → breath withdrawal _ breath -- イベント②:登る2_別塔→広場→ブレス撤退_ブレス", + "231400580": "Event ③: Rampage Breath A (breath _max) -- イベント③:暴れブレスA(ブレス_MAX)", + "231400581": "Event ③: Rampaging breath A (ground) -- イベント③:暴れブレスA(地面)", + "231400582": "Event ③: Rampaging Breath A (ground _ decal) -- イベント③:暴れブレスA(地面_デカール)", + "231400583": "Event ③: Rampaging Breath A (breath _ ①) -- イベント③:暴れブレスA(ブレス_①)", + "231400584": "Event ③: Rampaging Breath A (breath _ ②) -- イベント③:暴れブレスA(ブレス_②)", + "231400585": "Event ③: Rampaging Breath A (breath _ ③) -- イベント③:暴れブレスA(ブレス_③)", + "231400586": "Event ③: Rampaging Breath A (breath _ ④) -- イベント③:暴れブレスA(ブレス_④)", + "231400587": "Event ③: Rampaging Breath A (breath _ ⑤) -- イベント③:暴れブレスA(ブレス_⑤)", + "231400588": "Event ③: Rampaging Breath A (breath _ ⑥) -- イベント③:暴れブレスA(ブレス_⑥)", + "231400590": "Event ③: Rampage Breath B (Breath _max) -- イベント③:暴れブレスB(ブレス_MAX)", + "231400591": "Event ③: Rampaging Breath B (ground) -- イベント③:暴れブレスB(地面)", + "231400592": "Event ③: Rampaging Breath B (ground _ Decal) -- イベント③:暴れブレスB(地面_デカール)", + "231400593": "Event ③: Rampaging Breath B (Breath _ ①) -- イベント③:暴れブレスB(ブレス_①)", + "231400594": "Event ③: Rampaging Breath B (Breath _ ②) -- イベント③:暴れブレスB(ブレス_②)", + "231400595": "Event ③: Rampaging Breath B (Breath _ ③) -- イベント③:暴れブレスB(ブレス_③)", + "231400596": "Event ③: Rampaging Breath B (Breath _ ④) -- イベント③:暴れブレスB(ブレス_④)", + "231400597": "Event ③: Rampaging Breath B (Breath _ ⑤) -- イベント③:暴れブレスB(ブレス_⑤)", + "231400598": "Event ③: Rampaging Breath B (Breath _ ⑥) -- イベント③:暴れブレスB(ブレス_⑥)", + "231400600": "Event ④: Ojo 1_ Groan (plumes) -- イベント④:王城1_呻き(噴煙)", + "231400610": "Event ⑤: Ojo 1_-ridden wait a (plume) -- イベント⑤:王城1_苦しむ待機A(噴煙)", + "231400620": "Event ⑥: Ojo 1_-ridden wait B (plume) -- イベント⑥:王城1_苦しむ待機B(噴煙)", + "231400630": "Event ③: Rampaging Breath B (ground _ aisle side) -- イベント③:暴れブレスB(地面_通路側)", + "231400631": "Event ③: Rampaging Breath B (ground _ Aisle Side _ Decals) -- イベント③:暴れブレスB(地面_通路側_デカール)", + "231400640": "Event ③: Rampage Breath A (small per-ground judging) -- イベント③:暴れブレスA(地面_当たり判定小)", + "231400641": "Event ③: Rampage Breath A (ground _ judging Small _ decal) -- イベント③:暴れブレスA(地面_当たり判定小_デカール)", + "231400650": "Event ③: Rampage Breath B (ground _ small judgment per) -- イベント③:暴れブレスB(地面_当たり判定小)", + "231400651": "Event ③: Rampage Breath B (Ground _ Judging Small _ decal) -- イベント③:暴れブレスB(地面_当たり判定小_デカール)", + "231400652": "Event ③: Rampage Breath B (ground _ per judgment Large) -- イベント③:暴れブレスB(地面_当たり判定大)", + "231400653": "Event ③: Rampage Breath B (ground _ per judgment Large _ decal) -- イベント③:暴れブレスB(地面_当たり判定大_デカール)", + "231400660": "Event: Withdrawal breath (All) -- イベント:撤退ブレス(全部)", + "231400661": "Event: Withdrawal Breath (Breath _ ①) -- イベント:撤退ブレス(ブレス_①)", + "231400662": "Event: Withdrawal Breath (Breath _ ②) -- イベント:撤退ブレス(ブレス_②)", + "231400663": "Event: Withdrawal Breath (Breath _ ③) -- イベント:撤退ブレス(ブレス_③)", + "231400664": "Event: Withdrawal Breath (Breath _ ④) -- イベント:撤退ブレス(ブレス_④)", + "231400665": "Event: Withdrawal Breath (Breath _ ⑤) -- イベント:撤退ブレス(ブレス_⑤)", + "231400666": "Event: Withdrawal Breath (Breath _ ⑥) -- イベント:撤退ブレス(ブレス_⑥)", + "231400667": "Event: Withdrawal breath (judgment per ground) -- イベント:撤退ブレス(地面当たり判定)", + "231400668": "Event: Withdrawal breath (ground _ per judgment Large _ decal) -- イベント:撤退ブレス(地面_当たり判定大_デカール)", + "231400670": "Event: Bonfire Breath (All) -- イベント:篝火ブレス(全部)", + "231400671": "Event: Bonfire (Breath _ ①) -- イベント:篝火ブレス(ブレス_①)", + "231400672": "Event: Bonfire (Breath _ ②) -- イベント:篝火ブレス(ブレス_②)", + "231400673": "Event: Bonfire (Breath _ ③) -- イベント:篝火ブレス(ブレス_③)", + "231400674": "Event: Bonfire (Breath _ ④) -- イベント:篝火ブレス(ブレス_④)", + "231400675": "Event: Bonfire (Breath _ ⑤) -- イベント:篝火ブレス(ブレス_⑤)", + "231400676": "Event: Bonfire (Breath _ ⑥) -- イベント:篝火ブレス(ブレス_⑥)", + "231400677": "Event: Bonfire Breath (judgment per ground) -- イベント:篝火ブレス(地面当たり判定)", + "231400678": "Event: Bonfire Breath (ground _ per judgment Large _ decal) -- イベント:篝火ブレス(地面_当たり判定大_デカール)", + "231400680": "Event: Left side breath (all) -- イベント:左側面ブレス(全部)", + "231400681": "Event: Left Side breath (breath _ ①) -- イベント:左側面ブレス(ブレス_①)", + "231400682": "Event: Left Side breath (breath _ ②) -- イベント:左側面ブレス(ブレス_②)", + "231400683": "Event: Left Side breath (breath _ ③) -- イベント:左側面ブレス(ブレス_③)", + "231400684": "Event: Left Side breath (breath _ ④) -- イベント:左側面ブレス(ブレス_④)", + "231400685": "Event: Left Side breath (breath _ ⑤) -- イベント:左側面ブレス(ブレス_⑤)", + "231400686": "Event: Left Side breath (breath _ ⑥) -- イベント:左側面ブレス(ブレス_⑥)", + "231400687": "Event: Left side breath (judgment per ground) -- イベント:左側面ブレス(地面当たり判定)", + "231400688": "Event: Left Side breath (ground _ per judgment Large _ decal) -- イベント:左側面ブレス(地面_当たり判定大_デカール)", + "231400700": "Event ①: Hashimoto _ appeared _ Feet -- イベント①:橋下_登場_足", + "231400701": "Event ①: Hashimoto _ appeared _ Blast (left) -- イベント①:橋下_登場_爆風(左)", + "231400702": "Event ①: Hashimoto _ appeared _ Blast (right) -- イベント①:橋下_登場_爆風(右)", + "231400710": "Event ①: Hashimoto _ Circling Breath _ feet -- イベント①:橋下_旋回ブレス_足", + "231400711": "Event ①: Hashimoto _ Swirling Breath _ blast -- イベント①:橋下_旋回ブレス_爆風", + "231400800": "Event ②: Climb 2_ appearance _ on tower → Square _ feet -- イベント②:登る2_登場_塔上→広場_足", + "231400801": "Event ②: Climb 2_ appearance _ on tower → Square _ blast (left) -- イベント②:登る2_登場_塔上→広場_爆風(左)", + "231400802": "Event ②: Climb 2_ appearance _ on tower → Square _ blast (right) -- イベント②:登る2_登場_塔上→広場_爆風(右)", + "231400820": "Event ②: Climb 2_ another tower → square → breath withdrawal _ foot -- イベント②:登る2_別塔→広場→ブレス撤退_足", + "231400821": "Event ②: Climb 2_ another tower → square → breath withdrawal _ blast -- イベント②:登る2_別塔→広場→ブレス撤退_爆風", + "231600010": "C3160_ Dragon's Guardian Knight: advancethe -- c3160_竜の守護騎士:走り込み振りおろし", + "231600020": "The Guardian Knight of the c3160_ Dragon: Crossing _1 -- c3160_竜の守護騎士:横切り_1段目", + "231600021": "The Guardian Knight of the c3160_ Dragon: cross-stage -- c3160_竜の守護騎士:横切り_2段目", + "231600030": "C3160_ Dragon's Guardian Knight: Shield bash -- c3160_竜の守護騎士:シールドバッシュ", + "231600031": "C3160_ Dragon's Guardian Knight: Axe Swing -- c3160_竜の守護騎士:斧振り降ろし", + "231600040": "C3160_ Dragon's Guardian Knight: Axe turned attack -- c3160_竜の守護騎士:斧振り向き攻撃", + "231600050": "C3160_ Dragon's Guardian Knight: Shield turned attack -- c3160_竜の守護騎士:盾振り向き攻撃", + "231600200": "C3160_ Dragon's Guardian Knight: [HU] Jump Shield knocked back against -- c3160_竜の守護騎士:[HU]ジャンプ盾叩き付け", + "231600210": "C3160_ Dragon's Guardian Knight: [HU] Derived Sword -- c3160_竜の守護騎士:[HU]派生斬り", + "231600220": "C3160_ Dragon's Guardian Knight: [HU] Shield knocked back against -- c3160_竜の守護騎士:[HU]盾叩き付け", + "231600230": "C3160_ Dragon's Guardian Knight: [HU] Shield Bash added -- c3160_竜の守護騎士:[HU]シールドバッシュ追加", + "231600240": "C3160_ Dragon's Guardian Knight: [HU] Shield Combo 1 -- c3160_竜の守護騎士:[HU]盾コンボ1", + "231600250": "C3160_ Dragon's Guardian Knight: [HU] Shield guillotine -- c3160_竜の守護騎士:[HU]盾ギロチン", + "231600260": "C3160_ Dragon's Guardian Knight: [HU] Gurdcancell Bash -- c3160_竜の守護騎士:[HU]ガードキャンセルバッシュ", + "231600270": "C3160_ Dragon's Guardian Knight: Arts _ Rush Dragon Hunt: Assault -- c3160_竜の守護騎士:アーツ_突進竜狩り:突撃", + "231600280": "C3160_ Dragon's patron Knight: arts _ extensive whack -- c3160_竜の守護騎士:アーツ_広範囲薙ぎ", + "231600290": "C3160_ Dragon's Guardian Knight: the Arts _ Shockwave: Axe -- c3160_竜の守護騎士:アーツ_衝撃波:斧", + "231600300": "C3160_ Dragon's Guardian Knight: arts _ Jump Guillotine -- c3160_竜の守護騎士:アーツ_ジャンプギロチン", + "231600700": "C3160_ Dragon's Guardian Knight: Shockwave -- c3160_竜の守護騎士:衝撃波", + "231600900": "Guardian Knight of the C3160_ Dragon: Guard -- c3160_竜の守護騎士:ガード", + "231700010": "Slashing 1 -- 斬撃1", + "231700011": "Slashing 2 -- 斬撃2", + "231700012": "Slashing 3 -- 斬撃3", + "231700013": "Slashing 4 -- 斬撃4", + "231700020": "Poke a Pause -- 間合いを詰めて突く", + "231700030": "Both hand-held strength 1 -- 両手持ちして強斬り1", + "231700031": "Both hand-held strength 2 -- 両手持ちして強斬り2", + "231700040": "Pre Kick -- 前蹴り", + "231700050": "Absorbing Soul Grab -- 吸魂掴みかかり", + "231700051": "Soul-grabbing: throwing damage -- 吸魂掴みかかり:投げダメージ", + "231700060": "Cancel Soul Grab -- キャンセル吸魂掴み", + "231700070": "Right side to attack -- 右側面~後背攻撃", + "231700080": "Left side to attack -- 左側面~後背攻撃", + "231700090": "Soul Grip: Guard Posture -- 吸魂掴み:ガード姿勢", + "231700100": "Cancel Kick -- キャンセル蹴り", + "231700110": "Jump skewered -- ジャンプ串刺し", + "231700120": "Dash Whack -- ダッシュ薙ぎ", + "250100010": "Storm Whack: Sword damage -- 嵐薙ぎ:剣ダメージ", + "250100020": "Storm whack second stage: Sword damage -- 嵐薙ぎ2段目:剣ダメージ", + "250100030": "Storm Swing: Sword damage -- 嵐振り降ろし:剣ダメージ", + "250100040": "① one-handed Shiri -- 片手袈裟斬り①", + "250100050": "Both hands left Kesa -- 両手左袈裟", + "250100060": "Both hand thrusts -- 両手突き", + "250100070": "A deadly thrust -- 必殺の突き", + "250100080": "Two Hands side 一閃 -- 両手横一閃", + "250100090": "Both hand and down -- 両手振り降ろし", + "250100100": "Left foot down, lightning -- 左足踏み下ろし雷撃", + "250100110": "Turned attack -- 振り向き攻撃", + "250100120": "Swing down attack -- 振り下ろし攻撃", + "250100130": "Two-handed left pay -- 両手左払い", + "250100150": "Small Dash Rush & Flip -- 小ダッシュ突進&反転", + "250100160": "Stepping down -- 踏み込み払い", + "250100200": "Gwin throwing: grasping judgment -- グウィン投げ:掴み判定", + "250100201": "Gwin Throw: Blast -- グウィン投げ:爆発", + "250100700": "Storm whack: Bullet damage -- 嵐薙ぎ:弾丸ダメージ", + "250100710": "Storm whack second stage: bullet damage -- 嵐薙ぎ2段目:弾丸ダメージ", + "250100720": "Storm Swing: Bullet damage -- 嵐振り降ろし:弾丸ダメージ", + "250200010": "Right hook -- 右フック", + "250200020": "Kari: Right -- 飛び掛かり:右", + "250200030": "Hands slams: Right -- 両手叩きつけ:右", + "250200040": "Left hook to right side -- 右側面へ左フック", + "250200050": "Right hook to left side -- 左側面へ右フック", + "250200060": "Jump up and crush on Wings: Right -- 翼で飛び上がって叩き潰し:右", + "250300100": "c5030: a3000 Other ground payment 1 -- c5030:a3000ほか 地上払い1", + "250300110": "c5030: a3001 Swing attack: Pay -- c5030:a3001旋回攻撃:払い", + "250300111": "c5030: a3001 Swing attack: per body -- c5030:a3001旋回攻撃:体当たり", + "250300120": "c5030: a3002 trampled (left foot): Direct hit -- c5030:a3002踏みつけ(左足):直撃", + "250300121": "c5030: a3002 trampled (left foot): Blast -- c5030:a3002踏みつけ(左足):爆風", + "250300130": "c5030: a3003 Other flying attack: thrusting -- c5030:a3003ほか 飛びかかり攻撃:突き", + "250300131": "c5030: a3003 Other flying attacks: per body -- c5030:a3003ほか 飛びかかり攻撃:体当たり", + "250300140": "c5030: a3004, ground swing down: simple -- c5030:a3004ほか 地上振り下ろし:単", + "250300150": "c5030: a3005: Pay: For jumping -- c5030:a3005:払い:飛びかかり用", + "250300160": "c5030: a3007: Ground small setback & forward thrust -- c5030:a3007:地上小後退&前進突き", + "250300170": "c5030: a3008: Ground Small retreat Breath: Root -- c5030:a3008:地上小後退ブレス:根本", + "250300171": "c5030: a3008: Ground Small retreat breath: Middle -- c5030:a3008:地上小後退ブレス:真ん中", + "250300172": "c5030: a3008: Ground Small retreat Breath: Tip -- c5030:a3008:地上小後退ブレス:先端", + "250300180": "c5030: a3009: Jumped bless -- c5030:a3009:飛び上がりブレス", + "250300190": "c5030: a3011: Jump over: Rush on takeoff -- c5030:a3011:飛び越える:離陸時の突進", + "250300200": "c5030: a3012: Swing down: for jumping -- c5030:a3012:振り下ろし:飛びかかり用", + "250300210": "c5030: a3014: Ground payment 2 -- c5030:a3014:地上払い2", + "250300220": "c5030: a3015: Ground down -- c5030:a3015:地上振り下ろし", + "250300230": "c5030: a3017: Trampled (right foot): direct hit -- c5030:a3017:踏みつけ(右足):直撃", + "250300231": "c5030: a3017: Trampled (right foot): Blast -- c5030:a3017:踏みつけ(右足):爆風", + "250300800": "c5030: General crush: Right foot Hit -- c5030:汎用 押しつぶし:右足直撃", + "250300810": "c5030: General crush: Right foot blast -- c5030:汎用 押しつぶし:右足爆風", + "250300820": "c5030: General crush: Left foot hit -- c5030:汎用 押しつぶし:左足直撃", + "250300830": "c5030: General crush: Left foot blast -- c5030:汎用 押しつぶし:左足爆風", + "250300835": "c5030: General crush: Body hit -- c5030:汎用 押しつぶし:胴体直撃", + "250300840": "C5030: General entrainment: Neck to face -- c5030:汎用 巻き込み:首~顔", + "250300850": "C5030: General entrainment: Right foot -- c5030:汎用 巻き込み:右足", + "250300860": "C5030: General entrainment: Left foot -- c5030:汎用 巻き込み:左足", + "251100010": "c5110_ Combo ① (shake off) -- c5110_突進コンボ①(振り落とし)", + "251100020": "C5110_ rushes Combo ② (Saigi) -- c5110_突進コンボ②(薙ぎ払い)", + "251100030": "c5110_ Jump Attack -- c5110_ジャンプ攻撃", + "251100040": "c5110_ Punch (Hook at close range) -- c5110_パンチ(近距離でのフック)", + "251100050": "c5110_ Triple Combo ① (Saigi from left hand) -- c5110_三連コンボ①(左手からの薙ぎ払い)", + "251100060": "c5110_ Triple Combo ② (tackle) -- c5110_三連コンボ②(タックル)", + "251100070": "c5110_ Triple Combo ③ (TS) -- c5110_三連コンボ③(石突での振り下し)", + "251100080": "c5110_ Melee Combo ① (thrust attack) -- c5110_近接コンボ①(突き出し攻撃)", + "251100090": "c5110_ Melee Combo ② (jump-up attack) 1_ -- c5110_近接コンボ②(跳ね上げ攻撃)1_振り下ろし", + "251100091": "c5110_ Melee Combo ② (jumping up attack) 2_ -- c5110_近接コンボ②(跳ね上げ攻撃)2_跳ね上げ", + "251100100": "c5110_ Backward attack -- c5110_後方攻撃", + "251100110": "c5110_ throwing Transition Attack ① _ grabs -- c5110_投げ遷移攻撃①_掴み", + "251100120": "c5110_ Lateral Step Sword -- c5110_横ステップ斬り抜け", + "251100130": "c5110_ Melee Combo B ① (thrust) -- c5110_近接コンボB①(突き)", + "251100140": "c5110_ Melee Combo B ②-1 (thrust) -- c5110_近接コンボB②-1(突き)", + "251100150": "c5110_ Melee Combo B ②-2 (slams) -- c5110_近接コンボB②-2(叩きつけ)", + "251100200": "c5110_ Heat-up transition attack -- c5110_ヒートアップ遷移攻撃", + "251100300": "c5110_ Heat up combo a ① (piercing) -- c5110_ヒートアップコンボA①(突き刺し)", + "251100310": "c5110_ heat up attack: Combo a ② (bouncing up) -- c5110_ヒートアップ攻撃:コンボA②(跳ね上げ)", + "251100330": "c5110_ heat up attack: Combo B ② (return Saigi) -- c5110_ヒートアップ攻撃:コンボB②(返しの薙ぎ払い)", + "251100340": "c5110_ heat up attack: Combo B ③ (left hand slams) -- c5110_ヒートアップ攻撃:コンボB③(左手の叩きつけ)", + "251100350": "c5110_ heat up attack: Combo C ① (right hand jump ⇒ thrusting) -- c5110_ヒートアップ攻撃:コンボC①(右手ジャンプ⇒突き刺し )", + "251100351": "c5110_ heat up attack: Combo C ① (right hand jump ⇒ Piercing) _ Left hand judgment -- c5110_ヒートアップ攻撃:コンボC①(右手ジャンプ⇒突き刺し )_左手判定", + "251100360": "c5110_ heat up attack: Combo C ② (left hand Saigi) -- c5110_ヒートアップ攻撃:コンボC②(左手の薙ぎ払い)", + "251100380": "c5110_ heat up attack: Rear attack ② (right hand Saigi, range) -- c5110_ヒートアップ攻撃:後方攻撃②(右手薙ぎ払い、範囲)", + "251100391": "c5110_ heat up attack: ⇒ slams _ range with tail & left body -- c5110_ヒートアップ攻撃:尻尾&左手で上体起こし⇒叩きつけ_範囲", + "251100400": "C5110 Heat-up attack: Transition attack to throw ① -- c5110ヒートアップ攻撃:投げ①への遷移攻撃", + "251100420": "c5110 heat up attack: Walk/Tail Attack _ Swing -- c5110ヒートアップ攻撃:歩行/尻尾攻撃_振り", + "251100430": "c5110 heat up attack: Medium/Long Distance/Saigi _ arm -- c5110ヒートアップ攻撃:中遠距離用/薙ぎ払い_腕", + "251100431": "c5110 heat up attack: Medium/Long Distance/Saigi _ slashing -- c5110ヒートアップ攻撃:中遠距離用/薙ぎ払い_斬撃", + "251100441": "c5110 heat up attack: Melee attack _ Snake Spirit Arm -- c5110ヒートアップ攻撃:近接攻撃_蛇霊腕", + "251100700": "c5110_ throwing -- c5110_投げ", + "251100710": "C5110_ heats up attack: throwing _ slams ① -- c5110_ヒートアップ攻撃:投げ_叩きつけ①", + "251100711": "C5110_ heats up attack: throwing _ slams ② -- c5110_ヒートアップ攻撃:投げ_叩きつけ②", + "251100712": "C5110_ heats up attack: throwing _ slams ③ -- c5110_ヒートアップ攻撃:投げ_叩きつけ③", + "251100713": "c5110_ heat up attack: Throw _ Finish -- c5110_ヒートアップ攻撃:投げ_フィニッシュ", + "251200010": "c5120_ Snake Spirits: Frontal melee attack _ head knocked back against -- c5120_蛇霊:正面近接攻撃_頭叩き付け", + "251200011": "c5120_ Snake Spirit: Frontal melee attack _ head lateral shaking -- c5120_蛇霊:正面近接攻撃_頭横振り", + "251200012": "c5120_ Snake Spirits: Frontal melee Attack _ head + neck knocked back against -- c5120_蛇霊:正面近接攻撃_頭+首叩き付け", + "251200013": "c5120_ Snake Spirits: Frontal melee Attack _ head + neck knocked back against Shockwave -- c5120_蛇霊:正面近接攻撃_頭+首叩き付け衝撃波", + "251200020": "c5120_ Snake Spirit: Combo First hammer (right hand Saigi) -- c5120_蛇霊:コンボ初撃(右手薙ぎ払い)", + "251200030": "c5120_ Snake Spirit: Combo 2 firing (left hand Saigi) -- c5120_蛇霊:コンボ2撃目(左手薙ぎ払い)", + "251200040": "C5120_ Snake Spirits: Range Turning Attack _ Body Press _ Head -- c5120_蛇霊:範囲旋回攻撃_ボディープレス_頭部", + "251200041": "C5120_ Snake Spirits: Range Turning Attack _ body Press _ abdomen -- c5120_蛇霊:範囲旋回攻撃_ボディープレス_腹部", + "251200042": "C5120_ Snake Spirits: Range Turning Attack _ Body Press _ Shockwave -- c5120_蛇霊:範囲旋回攻撃_ボディープレス_衝撃波", + "251200050": "c5120_ Snake Spirit: per body (rush) -- c5120_蛇霊:体当たり(突進)", + "251200060": "c5120_ Snake Spirits: Backward bite attack (left) -- c5120_蛇霊:後方噛みつき攻撃(左)", + "251200070": "c5120_ Snake Spirits: Backward bite attack (right) -- c5120_蛇霊:後方噛みつき攻撃(右)", + "251200080": "c5120_ Snake Spirit: Tail attack -- c5120_蛇霊:尻尾攻撃", + "251200090": "c5120_ Snake spirit: bit attack first stage -- c5120_蛇霊:噛み付き攻撃1段目", + "251200091": "c5120_ Snake Spirit: bit attack second stage -- c5120_蛇霊:噛み付き攻撃2段目", + "251200100": "c5120_ Snake spirits: caries breath -- c5120_蛇霊:蝕ブレス", + "251200110": "c5120_ Snake Spirit: Tail attack -- c5120_蛇霊:尻尾攻撃", + "251200120": "c5120_ Snake Spirits: turned knocked back against: Head knocked back against -- c5120_蛇霊:振り向き叩き付け:頭叩き付け", + "251200121": "c5120_ Snake Spirits: turned knocked back against: lunge -- c5120_蛇霊:振り向き叩き付け:突進", + "251200130": "c5120_ Snake spirit: bit tail: bit first stage -- c5120_蛇霊:噛み付き尻尾払い:噛み付き1段目", + "251200131": "c5120_ Snake spirit: bit tail: bit second stage -- c5120_蛇霊:噛み付き尻尾払い:噛み付き2段目", + "251200132": "c5120_ Snake spirit: bit tail: tail -- c5120_蛇霊:噛み付き尻尾払い:尻尾", + "251200140": "C5120_ Snake Spirits: bit loop: bit 1st Stage -- c5120_蛇霊:噛み付きループ:噛み付き1段目", + "251200141": "C5120_ Snake Spirits: bit loop: bit second stage -- c5120_蛇霊:噛み付きループ:噛み付き2段目", + "251200142": "C5120_ Snake Spirits: bit loop: bit third stage -- c5120_蛇霊:噛み付きループ:噛み付き3段目", + "251200710": "c5120_: Caries explosion -- c5120_蛇霊:蝕爆発", + "251200720": "c5120_ Snake Spirits: caries accumulation -- c5120_蛇霊:蝕溜まり", + "251200730": "c5120_ Snake Spirits: caries Reservoir _hu -- c5120_蛇霊:蝕溜まり_HU", + "251200800": "c5120_ Snake Spirits: walking _ Body Damage -- c5120_蛇霊:歩行_胴体ダメージ", + "251200801": "c5120_ Snake Spirits: walking _ right hand -- c5120_蛇霊:歩行_右手", + "251200802": "c5120_ Snake Spirits: walking _ Left Hand -- c5120_蛇霊:歩行_左手", + "251200810": "c5120_ Snake Spirit: Traveling _ Body Damage -- c5120_蛇霊:走行_胴体ダメージ", + "251200811": "c5120_ Snake Spirits: walking _ right hand -- c5120_蛇霊:歩行_右手", + "251200812": "c5120_ Snake Spirits: walking _ Left Hand -- c5120_蛇霊:歩行_左手", + "251400010": "The Old king of c5140_: A clockwise attack (evasion included) -- c5140_蝕の老王:右回り込み攻撃(回避込み)", + "251400020": "The Old king of C5140_: a left-handed attack (evasion included) -- c5140_蝕の老王:左回り込み攻撃(回避込み)", + "251400030": "The Old king of c5140_: Jump forward -- c5140_蝕の老王:前方ジャンプ飛び込み斬り", + "251400040": "The Old king of c5140_: the right hand attack 1 -- c5140_蝕の老王:右手連撃1", + "251400050": "The Old king of c5140_: A right-hand attack 2 -- c5140_蝕の老王:右手連撃2", + "251400060": "The Old king of c5140_: A right-hand attack 3 -- c5140_蝕の老王:右手連撃3", + "251400070": "Old King of c5140_: Left hand thrust (throwing start technique) -- c5140_蝕の老王:左手突き刺し(投げ始動技)", + "251400071": "Old King of c5140_: Left hand thrust (throwing damage) -- c5140_蝕の老王:左手突き刺し(投げダメージ)", + "251400072": "Old King of c5140_: Left hand piercing (throwing damage deadline) -- c5140_蝕の老王:左手突き刺し(投げダメージ〆)", + "251400080": "The Old king of c5140_: Left hand thrust -- c5140_蝕の老王:左手突き刺し", + "251400110": "The Old king of c5140_: a clockwise attack -- c5140_蝕の老王:右回り込み攻撃(攻撃)", + "251400120": "The Old king of C5140_: a left-handed attack (attack) -- c5140_蝕の老王:左回り込み攻撃(攻撃)", + "251400330": "The Old king of c5140_: Jump forward -- c5140_蝕の老王:前方ジャンプ飛び込み斬り", + "251400340": "The Old king of c5140_: A forward jump dive and a left thrust -- c5140_蝕の老王:前方ジャンプ飛び込み左突き刺し", + "251400350": "The Old king of c5140_: jumping upward and falling back -- c5140_蝕の老王:上方ジャンプ羽ばたき後ろ下がり右手斬り", + "251400360": "Old King of c5140_: upward jump flapping left thrusting -- c5140_蝕の老王:上方ジャンプ羽ばたき左突き刺し", + "251500100": "c5150_ Saliva: Stick a cane -- c5150_サリヴァ―ン:杖を突きたてる", + "251500110": "c5150_ Saliva: Climb slams and right -- c5150_サリヴァ―ン:上昇叩きつけ・右", + "251500120": "c5150_ Saliva: Swinging Right -- c5150_サリヴァ―ン:振り上げ・右", + "251500130": "c5150_ Saliva: Ascent slams, left -- c5150_サリヴァ―ン:上昇叩きつけ・左", + "251500140": "c5150_ Saliva: Swinging left -- c5150_サリヴァ―ン:振り上げ・左", + "251500150": "c5150_ Saliva: Forward Thrust: Cane -- c5150_サリヴァ―ン:前進突き:杖", + "251500151": "c5150_ Saliva: Forward Thrust: Body -- c5150_サリヴァ―ン:前進突き:体", + "251500160": "c5150_ Saliva: Whack attack: Whack -- c5150_サリヴァ―ン:薙ぎ攻撃:薙ぎ", + "251500170": "c5150_ Saliva: Rear Swing -- c5150_サリヴァ―ン:背面振り上げ", + "251500180": "c5150_ Saliva: U-turn Iaido -- c5150_サリヴァ―ン:Uターン居合", + "251500190": "c5150_ Saliva: Dive: At the time of appearance -- c5150_サリヴァ―ン:潜航:出現時", + "251500200": "c5150_ Saliva: Tail Furi -- c5150_サリヴァ―ン:尻尾振り逃げ", + "251500700": "c5150_ Saliva: Induction Bullet -- c5150_サリヴァ―ン:誘導弾", + "251500710": "c5150_ Saliva: Whack: Magic shot -- c5150_サリヴァ―ン:薙ぎ:魔法散弾", + "251500720": "c5150_ Saliva: Magic Penetrating Bullets -- c5150_サリヴァ―ン:魔法貫通弾", + "251500730": "c5150_ Saliva: NITs Sword follower Elementalers -- c5150_サリヴァ―ン:ニト剣追従大剣舞", + "251500740": "c5150_ Saliva: NITs self-centered explosion -- c5150_サリヴァ―ン:ニト自己中心爆発", + "251600010": "C5160_ King: Right hand knocked back against -- c5160_死霊の王:右手叩き付け", + "251600020": "C5160_ King: Right hand Saigi -- c5160_死霊の王:右手薙ぎ払い", + "251600030": "King of c5160_: Left hand knocked back against -- c5160_死霊の王:左手叩き付け", + "251600040": "The King of c5160_: Skeleton Resurrection -- c5160_死霊の王:スケルトン復活", + "251600050": "C5160_ King: Forward attack-right hand -- c5160_死霊の王:前進攻撃 - 右手", + "251600051": "C5160_ King: Forward attack-left hand -- c5160_死霊の王:前進攻撃 - 左手", + "251600060": "King of the c5160_: Miasma (before HU) -- c5160_死霊の王:瘴気ブレス(HU前)", + "251600061": "King of the c5160_: Miasma (before HU) -- c5160_死霊の王:瘴気ブレス(HU前)", + "251600070": "King of the c5160_: Tomb King Sword taken out -- c5160_死霊の王:墓王剣取り出し", + "251600080": "King of the c5160_: Tomb King Sword eject attack a -- c5160_死霊の王:墓王剣取り出し攻撃A", + "251600090": "King of the c5160_: Tomb King Sword removal attack b -- c5160_死霊の王:墓王剣取り出し攻撃B", + "251600300": "King of the c5160_: the grave elementalers of the tomb king -- c5160_死霊の王:墓王の大剣舞 突き刺し", + "251600301": "The King of the c5160_: The great elementalers of the grave king -- c5160_死霊の王:墓王の大剣舞 突き刺し爆発", + "251600302": "King of the c5160_: Grave King Elementalers (Chase bullet A) -- c5160_死霊の王:墓王の大剣舞 (追跡弾A中)", + "251600303": "The King of the c5160_: Grave Elementalers (outbreak) -- c5160_死霊の王:墓王の大剣舞 (発生弾)", + "251600304": "King of c5160_: Grave King Elementalers (Chase bullet A right) -- c5160_死霊の王:墓王の大剣舞 (追跡弾A右)", + "251600305": "King of c5160_: Grave King Elementalers (Chase bullet A left) -- c5160_死霊の王:墓王の大剣舞 (追跡弾A左)", + "251600306": "King of c5160_: Tomb of the King Elementalers (Chase Bullet B) -- c5160_死霊の王:墓王の大剣舞 (追跡弾B中)", + "251600307": "King of c5160_: Grave King Elementalers (Chase Bullet B right) -- c5160_死霊の王:墓王の大剣舞 (追跡弾B右)", + "251600308": "King of the c5160_: Grave King Elementalers (Chase Bullet B left) -- c5160_死霊の王:墓王の大剣舞 (追跡弾B左)", + "251600309": "King of c5160_: Tomb of King Elementalers (Chase bullet C right 1) -- c5160_死霊の王:墓王の大剣舞 (追跡弾C右1)", + "251600310": "King of the c5160_: Grave King Elementalers (Chase Bullet C right 2) -- c5160_死霊の王:墓王の大剣舞 (追跡弾C右2)", + "251600311": "King of the c5160_: Grave King Elementalers (Chase bullet C left 1) -- c5160_死霊の王:墓王の大剣舞 (追跡弾C左1)", + "251600312": "King of the c5160_: Grave King Elementalers (Chase Bullet C left 2) -- c5160_死霊の王:墓王の大剣舞 (追跡弾C左2)", + "251600313": "King of the c5160_: Right hand Sword attack -- c5160_死霊の王:右手剣定点攻撃", + "251600320": "King of c5160_: Right hand sword Nagi -- c5160_死霊の王:右手剣なぎ払い", + "251600330": "King of the c5160_: the left hand slams -- c5160_死霊の王:左手叩きつけ", + "251600340": "The King of c5160_: a forward attack -- c5160_死霊の王:前進攻撃", + "251600350": "The King of c5160_: Skeleton Resurrection -- c5160_死霊の王:スケルトン復活", + "251600370": "King of c5160_: Right hand Saigi added (before HU) -- c5160_死霊の王:右手薙ぎ払い追加(HU前)", + "251600380": "King of c5160_: shifted hands slams (before Hu) _ Right hand -- c5160_死霊の王:ずらし両手叩きつけ(HU前)_右手", + "251600381": "King of c5160_: shifted hands slams (before Hu) _ Left hand -- c5160_死霊の王:ずらし両手叩きつけ(HU前)_左手", + "251600390": "King of the c5160_: The Rush (before Hu) _ Body -- c5160_死霊の王:突進(HU前)_体", + "251600391": "King of the c5160_: The Rush (before Hu) _ right arm -- c5160_死霊の王:突進(HU前)_右腕", + "251600392": "King of c5160_: Rush (before Hu) _ left arm -- c5160_死霊の王:突進(HU前)_左腕", + "251600400": "King of c5160_: Miasma (after Hu) -- c5160_死霊の王:瘴気ブレス(HU後)", + "251600401": "King of c5160_: Miasma (after Hu) -- c5160_死霊の王:瘴気ブレス(HU後)", + "251600410": "King of the c5160_: two-slash (after Hu) -- c5160_死霊の王:2連斬り(HU後)", + "251600420": "King of the c5160_: Right hand sword thrust (after Hu) -- c5160_死霊の王:右手剣刺突(HU後)", + "251600430": "King of the c5160_: The rush (after Hu) _ body -- c5160_死霊の王:突進(HU後)_体", + "251600431": "King of c5160_: Rush (after Hu) _ Left hand -- c5160_死霊の王:突進(HU後)_左手", + "251600432": "King of c5160_: Rush (after Hu) _ Right Hand Sword -- c5160_死霊の王:突進(HU後)_右手剣", + "251600700": "King of c5160_: Drifting miasma -- c5160_死霊の王:漂う瘴気", + "251700010": "c5170_ patron gu long: breath -- c5170_守護の古龍:ブレス", + "251800010": "c5180: a3000 right foot crush -- c5180:a3000右足踏み潰し", + "251800020": "c5180: a3001 left foot crushing -- c5180:a3001左足踏み潰し", + "251800030": "c5180: a3002 right hand slapping crush -- c5180:a3002右手叩き潰し", + "251800040": "c5180: a3003 left hand beating crush -- c5180:a3003左手叩き潰し", + "251800050": "c5180: a3004 Right-hand Saigi -- c5180:a3004右手薙ぎ払い", + "251800060": "c5180: a3005 left hand Saigi -- c5180:a3005左手薙ぎ払い", + "251800070": "c5180: a3006 Hip Drop -- c5180:a3006ヒップドロップ", + "251800080": "C5180: a3007 Rising hip drop -- c5180:a3007立ち上がりヒップドロップ", + "251800090": "c5180: a3008 two-handed crush -- c5180:a3008両手叩き潰し", + "251800100": "c5180: a3009 Right-hand rotation attack -- c5180:a3009右手回転攻撃", + "251800110": "c5180: a3010 left hand rotation attack -- c5180:a3010左手回転攻撃", + "251800120": "c5180: a3011 stomping crush: Belly near: Right hit -- c5180:a3011踏み潰し:腹付近:右直撃", + "251800130": "c5180: a3012 on foot: distant front: Left foot hit -- c5180:a3012足で叩き潰す:遠距離正面:左足直撃", + "251800140": "c5180: a3000 right foot crush: Second hammer -- c5180:a3000右足踏み潰し:二撃目", + "251800150": "c5180: a3001 left foot crushing: Second hammer -- c5180:a3001左足踏み潰し:二撃目", + "251800160": "c5180: a3002 right hand crush: Second Hammer -- c5180:a3002右手叩き潰し:二撃目", + "251800170": "c5180: a3003 left hand crush: Second Hammer -- c5180:a3003左手叩き潰し:二撃目", + "251800180": "Rush Crush -- 突進叩き潰し", + "251800300": "Right-turn attack: arm -- 右回転攻撃:右腕", + "251800301": "Right turning attack: belly arm -- 右回転攻撃:腹腕", + "251800310": "Left arm rotation attack -- 左回転攻撃:左腕", + "251800311": "Left turn attack: Belly arm -- 左回転攻撃:腹腕", + "251800340": "Ground gouge: The belly arm slams -- 地面えぐり:腹腕叩きつけ", + "251800341": "Ground Gouge: Gouge -- 地面えぐり:えぐり取り", + "251800350": "Hip Drop -- ヒップドロップ", + "251800370": "Get up and tumble -- 立ち上がって転倒", + "251800380": "Belly arm Continuous slams: 4 consecutive -- 腹腕連続叩きつけ:4連続", + "251800390": "Rush: belly Arms Saigi blow eyes -- 突進:腹腕薙ぎ払い一撃目", + "251800391": "Rush: Belly arm Saigi Second hammer -- 突進:腹腕薙ぎ払い二撃目", + "251800392": "Rush: Belly Arm slams -- 突進:腹腕叩きつけ", + "251800400": "Real crush: slams -- 実潰し:叩きつけ", + "251800401": "Actual Crush: Rubbed -- 実潰し:擦り付ける", + "251800410": "c5180: a1003010_ Throw -- c5180:a1003010_投げ", + "251800411": "c5180: a1003010_ Throwing damage -- c5180:a1003010_投げ ダメージ", + "251800420": "Slams: Combo Stage -- 叩きつけ:コンボ初段", + "251800430": "Real throw -- 実投げ", + "251800440": "Right foot crushing -- 右足踏み潰し:右足", + "251800441": "Right foot crushing: a blow to the belly -- 右足踏み潰し:腹腕一撃目", + "251800442": "Right foot crush: Belly arm Second Hammer -- 右足踏み潰し:腹腕二撃目", + "251800450": "Left foot crushing -- 左足踏み潰し:左足", + "251800451": "Left foot crushing: belly blow -- 左足踏み潰し:腹腕一撃目", + "251800452": "Left foot crushing: Belly arm second Hammer -- 左足踏み潰し:腹腕二撃目", + "251800460": "Right hand crush: Right hand -- 右手叩き潰し:右手", + "251800461": "Right hand crush: Belly blow -- 右手叩き潰し:腹腕一撃目", + "251800462": "Right hand crush: two-eyed belly -- 右手叩き潰し:腹腕二撃目", + "251800470": "Left hand crush: Left hand -- 左手叩き潰し:左手", + "251800471": "Crushing the left hand: a blow on his belly -- 左手叩き潰し:腹腕一撃目", + "251800472": "Crushing the left hand: two eyes on the belly -- 左手叩き潰し:腹腕二撃目", + "251800800": "c5180: Generic: Mystery Juice: Bullet -- c5180:汎用:謎の汁:弾丸", + "251800900": "Fuselage General: Scratch -- 胴体汎用:かすり", + "251800901": "Fuselage General: Shockwave -- 胴体汎用:衝撃波", + "251800902": "Fuselage General: Blast -- 胴体汎用:爆風", + "251800910": "Right arm general purpose: scratch -- 右腕汎用:かすり", + "251800911": "Right Palm General: Shockwave -- 右手のひら汎用:衝撃波", + "251800920": "Left arm General: Scratch -- 左腕汎用:かすり", + "251800921": "Left Palm General: Shockwave -- 左手のひら汎用:衝撃波", + "251800930": "Right foot general purpose: scratch -- 右足汎用:かすり", + "251800931": "Right Palm General: Shockwave -- 右足のひら汎用:衝撃波", + "251800940": "Left foot general: Scratch -- 左足汎用:かすり", + "251800941": "Left Palm General: Shockwave -- 左足のひら汎用:衝撃波", + "251800950": "Abdominal hand: Scratch -- 腹手汎用:かすり", + "251800951": "Belly-Palm Versatile: Shockwave -- 腹手のひら汎用:衝撃波", + "251900010": "King of the c5190_: The shaking: the front -- c5190_廃都の孤王:振りおろし:正面", + "251900011": "King of the c5190_: shaking: the front: Blast -- c5190_廃都の孤王:振りおろし:正面:爆風", + "251900020": "King of the c5190_: thrust: Around right foot -- c5190_廃都の孤王:突き刺し:右足周辺", + "251900021": "King of the c5190_: piercing: The right foot around: blast -- c5190_廃都の孤王:突き刺し:右足周辺:爆風", + "251900030": "King of c5190_: piercing: Around the left foot -- c5190_廃都の孤王:突き刺し:左足周辺", + "251900031": "King of the c5190_: thrust: Around the left leg: blast -- c5190_廃都の孤王:突き刺し:左足周辺:爆風", + "251900040": "King of c5190_: Thrust -- c5190_廃都の孤王:突き", + "251900041": "King of the c5190_: Thrust: Blast -- c5190_廃都の孤王:突き:爆風", + "251900050": "King of c5190_: Continuous attack 1-1: Payment -- c5190_廃都の孤王:連続攻撃1-1:払い", + "251900051": "King of c5190_: Continuous Attack 1-2: Payment -- c5190_廃都の孤王:連続攻撃1-2:払い", + "251900052": "King of c5190_: Continuous attack 1-1: Pay: Blast -- c5190_廃都の孤王:連続攻撃1-1:払い:爆風", + "251900053": "King of c5190_: Continuous Attack 1-2: Pay: Blast -- c5190_廃都の孤王:連続攻撃1-2:払い:爆風", + "251900300": "King of c5190_: Continuous attack 1-1: Nagi -- c5190_廃都の孤王:連続攻撃1-1:なぎ払い", + "251900301": "King of c5190_: Continuous Attack 1-2: Inverse Nagi -- c5190_廃都の孤王:連続攻撃1-2:逆なぎ払い", + "251900310": "King of c5190_: Continuous Attack 2-1: Inverse Nagi -- c5190_廃都の孤王:連続攻撃2-1:逆なぎ払い", + "251900311": "King of c5190_: Continuous Attack 2-2: Thrust -- c5190_廃都の孤王:連続攻撃2-2:突き", + "251900312": "King of c5190_: Continuous Attack 2-1: Inverse Nagi: Blast -- c5190_廃都の孤王:連続攻撃2-1:逆なぎ払い:爆風", + "251900313": "King of c5190_: Continuous Attack 2-2: Thrust: Blast -- c5190_廃都の孤王:連続攻撃2-2:突き:爆風", + "251900320": "C5190_: The king of the disused city -- c5190_廃都の孤王:振りおろし", + "251900321": "King of the c5190_: the blast -- c5190_廃都の孤王:振りおろし:爆風", + "251900330": "King of c5190_: Pay with the left hand -- c5190_廃都の孤王:左手で払う", + "251900340": "King of c5190_: Thrust -- c5190_廃都の孤王:突き", + "251900341": "King of the c5190_: Thrust: Blast -- c5190_廃都の孤王:突き:爆風", + "251900350": "King of c5190_: Reverse payment: Right side -- c5190_廃都の孤王:逆払い:右側面", + "251900360": "King of the c5190_: the left side -- c5190_廃都の孤王:振りおろし:左側面", + "251900361": "King of the c5190_: the left side: the blast -- c5190_廃都の孤王:振りおろし:左側面:爆風", + "251900700": "King of c5190_: squeezing out loud -- c5190_廃都の孤王:大声を絞り出す", + "251900710": "C5190_ King of the disused city: Kensaki Shockwave -- c5190_廃都の孤王:剣先衝撃波", + "252000010": "c5200_ deb Daemon: Right Nagi -- c5200_デブデーモン:右なぎ払い", + "252000020": "c5200_ Deb Daemon: Left Nagi -- c5200_デブデーモン:左なぎ払い", + "252000030": "c5200_ deb daemon: Feet Right Nagi -- c5200_デブデーモン:足元右なぎ払い", + "252000040": "c5200_ Deb Daemon: Primary seal -- c5200_デブデーモン:一次封印", + "252000050": "c5200_ deb daemon: feet left Nagi -- c5200_デブデーモン:足元左なぎ払い", + "252000060": "c5200_ deb Daemon: underfoot knocked back against -- c5200_デブデーモン:足元叩き付け", + "252000070": "c5200_ Fat daemon: Medium range swing down -- c5200_デブデーモン:中距離振り下ろし", + "252000080": "c5200_ Fat daemon: Long distance swing down -- c5200_デブデーモン:遠距離振り下ろし", + "252000090": "c5200_ Deb Daemon: Hip drop -- c5200_デブデーモン:ヒップドロップ", + "252000200": "c5200_ Deb Daemon: right rear Nagi -- c5200_デブデーモン:右後方なぎ払い", + "252000210": "c5200_ deb Daemon: battering slugfest Combo First stage -- c5200_デブデーモン:大槌乱打コンボ1段目", + "252000211": "c5200_ Deb Daemon: The second stage of the battering slugfest combo -- c5200_デブデーモン:大槌乱打コンボ2段目", + "252000212": "c5200_ Deb Daemon: The slugfest combo third stage -- c5200_デブデーモン:大槌乱打コンボ3段目", + "252000220": "c5200_ deb Daemon: Saigi Otsuchi -- c5200_デブデーモン:大槌薙ぎ払い", + "252000230": "c5200_ Deb: Hit the ground with your left hand -- c5200_デブデーモン:左手で地面を叩く", + "252000240": "c5200_ Deb Daemon: Pay the ground with your left hand (knocked back against) -- c5200_デブデーモン:左手で地面を払う(叩き付け)", + "252000250": "c5200_ Deb Daemon: knocked back against Otsuchi -- c5200_デブデーモン:大槌叩き付け", + "252200700": "Fireball -- 火球", + "252200800": "Curse helmeted -- 呪詛の号令", + "252210700": "Fireball -- 火球", + "252210710": "Force -- フォース", + "252210800": "Curse -- 呪詛", + "252220700": "Fireball -- 火球", + "252220800": "Curse -- 呪詛", + "252230700": "Fireball -- 火球", + "252230800": "Curse -- 呪詛", + "252300010": "Pay with a tail: Wait a -- 尻尾で払う:待機A", + "252300070": "Passage Breath 1: Wait C -- 通路ブレス1:待機C", + "252300071": "Passage Breath 1: Standby c_ Impact 1 -- 通路ブレス1:待機C_着弾1", + "252300072": "Passage Breath 1: Standby c_ Impact 2 -- 通路ブレス1:待機C_着弾2", + "252300073": "Passage Breath 1: Standby c_ landing 3 -- 通路ブレス1:待機C_着弾3", + "252300074": "Passage Breath 1: Wait C_ landing 4 -- 通路ブレス1:待機C_着弾4", + "252300130": "Outside stair breath: wait F -- 外階段ブレス:待機F", + "252300160": "Loft Scratch: Wait F -- ロフトひっかき:待機F", + "252300170": "2f Attack: Wait E -- 2F攻撃:待機E", + "252300200": "Outside stair breath: wait g -- 外階段ブレス:待機G", + "252300210": "Bell tower Breath: Wait F -- 鐘楼ブレス:待機F", + "252300220": "Bell tower Breath: Wait g -- 鐘楼ブレス:待機G", + "252300230": "Pocket Scratch: Wait C -- 懐ひっかき:待機C", + "252300240": "1f attack: Wait D -- 1F攻撃:待機D", + "252300250": "Poke/Single Passage breath 2: Wait C -- 突く・単通路ブレス2:待機C", + "252300260": "Passage Breath 3: Wait C -- 通路ブレス3:待機C", + "252300261": "Passage Breath 3: Standby c_ Impact 1 -- 通路ブレス3:待機C_着弾1", + "252300270": "Crush: Wait C -- 叩き潰し:待機C", + "252300280": "Chasing PC while blessing -- ブレスしつつPCを追う", + "252300320": "Breath down the stairs: wait D -- 階段下方にブレス:待機D", + "252400100": "c5240_ Moonlight Witch: Torch Always damage -- c5240_月光の魔女:松明常時ダメージ", + "252400110": "c5240_ Moonlight Witch: Torch Floor Stain -- c5240_月光の魔女:松明床汚し", + "252400200": "c5240_ Moonlight Witch: The magic of this flame snake (explosion crawling on the ground) -- c5240_月光の魔女:魔法 地這炎蛇 (地面を這う爆発)", + "252400210": "c5240_ Moonlight Witch: Magic Rising Fire dragon (rising pillar) -- c5240_月光の魔女:魔法 上昇火竜 (立ち上る火柱)", + "252400220": "c5240_ Moonlight Witch: Magic Slow Fire (slow-induced bullets) -- c5240_月光の魔女:魔法 鈍足追火 (遅い誘導弾)", + "252400230": "c5240_ Moonlight Witch: Magic Explosion Diffusion (scatter) -- c5240_月光の魔女:魔法 爆炎拡散 (ばら撒き弾)", + "252400240": "c5240_ Moonlight Witch: Magic Reserve -- c5240_月光の魔女:魔法 予備", + "252400250": "c5240_ Moonlight Witch: Magic Reserve -- c5240_月光の魔女:魔法 予備", + "252400300": "The Witch of the c5240_ Moonlight: grasping stab thrust (throwing transition) -- c5240_月光の魔女:掴み刺突(投げ遷移)", + "252400301": "c5240_ Moonlight Witch: Gripping Sting (burning damage) -- c5240_月光の魔女:掴み刺突(燃焼ダメージ)", + "252400302": "c5240_ Moonlight Witch: Grab stab thrust (knocked back against damage) -- c5240_月光の魔女:掴み刺突(叩き付けダメージ)", + "252400310": "c5240_ Moonlight Witch: Swirling attack -- c5240_月光の魔女:旋回攻撃", + "252400320": "c5240_ Moonlight Witch: Attack 1 -- c5240_月光の魔女:攻撃1", + "252400330": "c5240_ Moonlight Witch: Attack 2 -- c5240_月光の魔女:攻撃2", + "252400340": "c5240_ Moonlight Witch: Attack 3 -- c5240_月光の魔女:攻撃3", + "252500100": "Prince of Darkness C5250_ (brother): Whack -- c5250_闇の双皇子(兄):薙ぎ", + "252500110": "C5250_ of Darkness (brother): Reverse whack -- c5250_闇の双皇子(兄):逆薙ぎ", + "252500120": "Prince of Darkness C5250_ (brother): Swing down -- c5250_闇の双皇子(兄):振り下ろし", + "252500130": "Prince of Darkness C5250_ (brother): Strong attack -- c5250_闇の双皇子(兄):強攻撃", + "252500131": "C5250_ of Darkness (elder brother): Strong attack: Shockwave -- c5250_闇の双皇子(兄):強攻撃:衝撃波", + "252500140": "C5250_ of Darkness (brother): Thrusting -- c5250_闇の双皇子(兄):突き", + "252500150": "Prince of Darkness C5250_ (brother): Turning: Right -- c5250_闇の双皇子(兄):旋回払い:右", + "252500160": "C5250_ of Darkness (elder brother): Turning payment: Left -- c5250_闇の双皇子(兄):旋回払い:左", + "252500170": "C5250_ of Darkness (brother): Fall attack -- c5250_闇の双皇子(兄):落下攻撃", + "252500180": "C5250_ of Darkness (elder brother): Behind the attack -- c5250_闇の双皇子(兄):背後攻撃", + "252500190": "Prince of Darkness C5250_ (brother): Right side attack -- c5250_闇の双皇子(兄):右側面攻撃", + "252500200": "Prince of Darkness C5250_ (brother): left side attack -- c5250_闇の双皇子(兄):左側面攻撃", + "252510900": "Prince of Darkness C5251_ (brother): Guard -- c5251_闇の双皇子(弟):ガード", + "252600100": "First step, two-handed combo -- 足元両手叩きつけコンボ1段目", + "252600110": "Second Step (back) -- 足元両手叩きつけコンボ2段目(背面)", + "252600120": "Second step (right side) -- 足元両手叩きつけコンボ2段目(右側面)", + "252600130": "The second step (back) from the standby combo two hands slams -- 足元両手叩きつけコンボ2段目(背面)待機から", + "252600140": "One-handed slams -- 片手叩きつけ", + "252600150": "Second stage slams one hand -- 片手叩きつけ2段目", + "252600160": "Left from one-handed slams -- 片手叩きつけからの左旋回斬り上げ", + "252600170": "Saigi right from one-handed slams -- 片手叩きつけからの右薙ぎ払い", + "252600180": "Attack behind -- 背後攻撃", + "252600190": "Turned -- 振り向き払い", + "252600200": "Move attack -- 移動攻撃", + "252600210": "Nagi Combo First Stage -- なぎ払いコンボ1段目", + "252600220": "Additional cut-up -- 追加斬り上げ", + "252600230": "Front Vertical Whack 1 -- 正面縦薙ぎ1", + "252600240": "Front longitudinal whack (reverse) -- 正面縦薙ぎ(逆)", + "252600250": "Front longitudinal whack (reverse) -- 正面縦薙ぎ(逆々)", + "252600260": "Rampage rush: Saigi right → Left -- 暴れラッシュ:薙ぎ払い右→左", + "252600261": "Rampage rush: Saigi Left → Right -- 暴れラッシュ:薙ぎ払い左→右", + "252600262": "Wild Rush: Swing Down -- 暴れラッシュ:振り下ろし", + "252600263": "Wild rush: Beat Down -- 暴れラッシュ:叩き下し", + "252600270": "Jump Hammer -- ジャンプ鉄槌", + "252600400": "Weapon Swing Wind pressure (general purpose) -- 武器振り風圧(汎用)", + "252600500": "Hu explosion -- HU爆発", + "252700000": "c5270_ Tracker _3000 The butt -- c5270_追跡者_3000倒れ込み突き", + "252700010": "c5270_ tracker _3001 Saigi from falling butt -- c5270_追跡者_3001倒れ込み突きからの薙ぎ払い", + "252700020": "c5270_ Tracker _3002 right hand slams from fallen butt -- c5270_追跡者_3002倒れ込み突きからの右手叩きつけ", + "252700030": "c5270_ Tracker _3003 behind the attack -- c5270_追跡者_3003背後叩きつけ攻撃", + "252700040": "C5270_, a leftist attack from _3004 slams -- c5270_追跡者_3004叩きつけからの左派生攻撃 1撃目", + "252700041": "Second-wing attack from c5270_ tracker _3004 slams -- c5270_追跡者_3004叩きつけからの左派生攻撃 2撃目", + "252700050": "Frontal derivation attack from c5270_ tracker _3005 -- c5270_追跡者_3005叩きつけからの正面派生攻撃", + "252700060": "Right-derived attack from c5270_ tracker _3006 -- c5270_追跡者_3006叩きつけからの右派生攻撃", + "252700070": "c5270_ Tracker _3007 Slap -- c5270_追跡者_3007裏ビンタ", + "252700080": "c5270_ Tracker _3008 Saigi (tie from back slap) -- c5270_追跡者_3008薙ぎ払い(裏ビンタからの繋ぎ)", + "252700090": "c5270_ Tracker _3009 Kesa cut -- c5270_追跡者_3009袈裟切り", + "252700100": "c5270_ Tracker _3010 Rising Saigi attack -- c5270_追跡者_3010立ち上がり薙ぎ払い攻撃", + "252700110": "c5270_ Tracker _3011 frontal slams attack -- c5270_追跡者_3011正面叩きつけ攻撃", + "252700120": "c5270_ Tracker _3012 Saigi. -- c5270_追跡者_3012薙ぎ払い", + "252700130": "c5270_ Tracker _3013 Rising one-handed -- c5270_追跡者_3013立ち上がり片手振りおろし攻撃", + "252700140": "c5270_ Tracker _3014 explosion -- c5270_追跡者_3014蝕爆発", + "252700150": "C5270_ Tracker _3015 left attack (90 degrees turning) -- c5270_追跡者_3015左旋回攻撃(90度旋回)", + "252700151": "C5270_ Tracker _3015 left attack (90 degrees turning) pillar -- c5270_追跡者_3015左旋回攻撃(90度旋回) 火柱", + "252700160": "c5270_ Tracker _3016-derived combo 1 -- c5270_追跡者_3016突き派生コンボ1", + "252700170": "c5270_ Tracker _3017-derived combo 2 -- c5270_追跡者_3017突き派生コンボ2", + "252700180": "c5270_ Tracker _3018-derived combo 3 -- c5270_追跡者_3018突き派生コンボ3", + "252700190": "c5270_ Tracker _3019 continuous slap first shot -- c5270_追跡者_3019連続ビンタ 1打目", + "252700191": "c5270_ Tracker _3019 continuous slap second shot -- c5270_追跡者_3019連続ビンタ 2打目", + "252700200": "c5270_ Tracker _3020 The left step rotation slash -- c5270_追跡者_3020左ステップ回転斬り", + "252700210": "c5270_ Tracker _3021 the right step slash -- c5270_追跡者_3021右ステップ斬り", + "252700220": "c5270_ Tracker _3022 Jump attack -- c5270_追跡者_3022ジャンプ攻撃", + "252700230": "c5270_ Tracker _3023 Attack 1 -- c5270_追跡者_3023ラッシュ攻撃 1撃目", + "252700231": "C5270_ Tracker _3023 Attack second firing -- c5270_追跡者_3023ラッシュ攻撃 2撃目", + "252700232": "c5270_ Tracker, _3023 attack, the third firing. -- c5270_追跡者_3023ラッシュ攻撃 3撃目", + "252700233": "c5270_ Tracker, _3023 attack, four firing eyes. -- c5270_追跡者_3023ラッシュ攻撃 4撃目", + "252700234": "c5270_ Tracker, _3023 attack, five firing eyes. -- c5270_追跡者_3023ラッシュ攻撃 5撃目", + "252700235": "C5270_ Tracker _3023 Attack 6 firing -- c5270_追跡者_3023ラッシュ攻撃 6撃目", + "252700236": "c5270_ Tracker _3023 attack 7th -- c5270_追跡者_3023ラッシュ攻撃 7撃目", + "252700240": "c5270_ Tracker _3024 Horizontal Slash combo 1 -- c5270_追跡者_3024水平斬りコンボ1", + "252700250": "c5270_ Tracker _3025 Horizontal Slash combo 2 -- c5270_追跡者_3025水平斬りコンボ2", + "252700260": "c5270_ Tracker _3026 Horizontal Slash combo 3 -- c5270_追跡者_3026水平斬りコンボ3", + "252700270": "c5270_ Tracker _3027 Startup technique -- c5270_追跡者_3027投げ始動技", + "252700320": "C5270_ Tracker _3032 Attack _ Finish -- c5270_追跡者_3032突進攻撃_フィニッシュ", + "252700330": "c5270_ Tracker _3033 Foot Sword -- c5270_追跡者_3033足元斬り", + "252700410": "_4100 Attack by c5270_ Tracker -- c5270_追跡者_4100投げ攻撃", + "252700500": "c5270_ tracker _100_3000 [HU] fall-down thrust sword -- c5270_追跡者_100_3000[HU]倒れ込み突き二段 炎剣", + "252700501": "c5270_ tracker _100_3000 [HU] fall into a two-stage caries sword -- c5270_追跡者_100_3000[HU]倒れ込み突き二段 蝕剣", + "252700510": "c5270_ tracker _100_3001 [HU] behind the attack two-stage caries sword -- c5270_追跡者_100_3001[HU]背後叩きつけ攻撃二段 蝕剣", + "252700511": "c5270_ tracker _100_3001 [HU] slams attack two-tiered fire sword -- c5270_追跡者_100_3001[HU]背後叩きつけ攻撃二段 炎剣", + "252700520": "c5270_ tracker _100_3002 [HU] Eclipse explosion two-stage warning -- c5270_追跡者_100_3002[HU]蝕爆発二段 予兆爆発", + "252700521": "c5270_ tracker _100_3002 [HU] Eclipse explosion stage explosion -- c5270_追跡者_100_3002[HU]蝕爆発二段 爆発", + "252700522": "c5270_ tracker _100_3002 [HU] caries explosion two-stage caries sword -- c5270_追跡者_100_3002[HU]蝕爆発二段 蝕剣", + "252700530": "c5270_ tracker _100_3003 [HU] Right Saigi -- c5270_追跡者_100_3003[HU]右薙ぎ払い", + "252700540": "c5270_ tracker _100_3004 [HU] left Saigi -- c5270_追跡者_100_3004[HU]左薙ぎ払い", + "252700550": "c5270_ tracker _100_3005 [HU] Saigi 1 second firing -- c5270_追跡者_100_3005[HU]二連薙ぎ払い 1撃目", + "252700551": "c5270_ tracker _100_3005 [HU] double Saigi second firing -- c5270_追跡者_100_3005[HU]二連薙ぎ払い 2撃目", + "252700560": "c5270_ tracker _100_3006 [HU] Saigi -- c5270_追跡者_100_3006[HU]薙ぎ払い", + "252700570": "c5270_ tracker _100_3007 [HU] throwing start of caries sword -- c5270_追跡者_100_3007[HU]投げ始動技 蝕剣", + "252700571": "c5270_ tracker _100_3007 [HU] throwing Fire Sword -- c5270_追跡者_100_3007[HU]投げ始動技 炎剣", + "252700580": "c5270_ tracker _100_3008 [HU] Rise of the Shook sword -- c5270_追跡者_100_3008[HU]立ち上がり二連振り払い 蝕剣", + "252700581": "c5270_ tracker _100_3008 [HU] Rise of the Shook sword -- c5270_追跡者_100_3008[HU]立ち上がり二連振り払い 炎剣", + "252700590": "c5270_ tracker _100_3009 [HU] frontal slams attack caries sword -- c5270_追跡者_100_3009[HU]正面叩きつけ攻撃 蝕剣", + "252700591": "c5270_ tracker _100_3009 [HU] frontal slams attack flame sword -- c5270_追跡者_100_3009[HU]正面叩きつけ攻撃 炎剣", + "252700600": "c5270_ tracker _100_3010 [HU] The left-wing raw attack from a slams -- c5270_追跡者_100_3010[HU]叩きつけからの左派生攻撃 1撃目", + "252700601": "c5270_ tracker _100_3010 [HU] second-wing attack from the slams -- c5270_追跡者_100_3010[HU]叩きつけからの左派生攻撃 2撃目", + "252700610": "Front-derived attack from c5270_ tracker _100_3011 [HU] slams -- c5270_追跡者_100_3011[HU]叩きつけからの正面派生攻撃", + "252700620": "Right-derived attack from c5270_ tracker _100_3012 [HU] slams -- c5270_追跡者_100_3012[HU]叩きつけからの右派生攻撃", + "252700630": "c5270_ tracker _100_3013 [HU] rising both hand and hand -- c5270_追跡者_100_3013[HU]立ち上がり両手振りおろし攻撃 蝕剣", + "252700631": "c5270_ tracker _100_3013 [HU] rise both hand-to-hand attack flame Sword -- c5270_追跡者_100_3013[HU]立ち上がり両手振りおろし攻撃 炎剣", + "252700640": "c5270_ tracker _100_3014 [HU] left step rotation sword -- c5270_追跡者_100_3014[HU]左ステップ回転斬り 蝕剣", + "252700641": "c5270_ tracker _100_3014 [HU] left step rotation Sword of Flame -- c5270_追跡者_100_3014[HU]左ステップ回転斬り 炎剣", + "252700650": "c5270_ tracker _100_3015 [HU] Right step sword of Flame -- c5270_追跡者_100_3015[HU]右ステップ斬り 炎剣", + "252700651": "c5270_ tracker _100_3015 [HU] Right step sword of caries -- c5270_追跡者_100_3015[HU]右ステップ斬り 蝕剣", + "252700660": "c5270_ tracker _100_3016 [HU] rush attack 1 caries -- c5270_追跡者_100_3016[HU]ラッシュ攻撃 1蝕", + "252700661": "c5270_ tracker _100_3016 [HU] Rush Attack 2 Flames -- c5270_追跡者_100_3016[HU]ラッシュ攻撃 2炎", + "252700662": "c5270_ tracker _100_3016 [HU] rush Attack 3 caries -- c5270_追跡者_100_3016[HU]ラッシュ攻撃 3蝕", + "252700663": "c5270_ tracker _100_3016 [HU] Rush Attack 4 Flames -- c5270_追跡者_100_3016[HU]ラッシュ攻撃 4炎", + "252700664": "c5270_ tracker _100_3016 [HU] Rush Attack 5 Flames -- c5270_追跡者_100_3016[HU]ラッシュ攻撃 5炎", + "252700665": "c5270_ tracker _100_3016 [HU] lash attack 6 caries -- c5270_追跡者_100_3016[HU]ラッシュ攻撃 6蝕", + "252700666": "c5270_ tracker _100_3016 [HU] Rush Attack 7 Flames -- c5270_追跡者_100_3016[HU]ラッシュ攻撃 7炎", + "252700667": "c5270_ tracker _100_3016 [HU] rush attack 8 caries -- c5270_追跡者_100_3016[HU]ラッシュ攻撃 8蝕", + "252700668": "c5270_ tracker _100_3016 [HU] Rush Attack 9 Flames -- c5270_追跡者_100_3016[HU]ラッシュ攻撃 9炎", + "252700670": "c5270_ tracker _100_3017 [HU] Triple combo 1 caries -- c5270_追跡者_100_3017[HU]三連コンボ 1蝕", + "252700671": "c5270_ tracker _100_3017 [HU] Triple combo 1 Flame -- c5270_追跡者_100_3017[HU]三連コンボ 1炎", + "252700672": "c5270_ tracker _100_3017 [HU] Triple combo 2 Flames -- c5270_追跡者_100_3017[HU]三連コンボ 2炎", + "252700673": "c5270_ tracker _100_3017 [HU] Triple combo 2 caries -- c5270_追跡者_100_3017[HU]三連コンボ 2蝕", + "252700674": "c5270_ tracker _100_3017 [HU] triple combo 3 caries -- c5270_追跡者_100_3017[HU]三連コンボ 3蝕", + "252700675": "c5270_ tracker _100_3017 [HU] triple combo 3 Flames -- c5270_追跡者_100_3017[HU]三連コンボ 3炎", + "252700680": "c5270_ tracker _100_3018 [HU] Rotation attack _ Starting Flame Sword -- c5270_追跡者_100_3018[HU]回転攻撃_始動 炎剣", + "252700681": "c5270_ tracker _100_3018 [HU] Rotation attack _ Starting caries Sword -- c5270_追跡者_100_3018[HU]回転攻撃_始動 蝕剣", + "252700690": "c5270_ tracker _100_3019 [HU] rotation attack loop caries Sword -- c5270_追跡者_100_3019[HU]回転攻撃ループ 蝕剣", + "252700691": "c5270_ tracker _100_3019 [HU] rotation attack loop Flame Sword -- c5270_追跡者_100_3019[HU]回転攻撃ループ 炎剣", + "252700700": "c5270_ tracker _100_3020 [HU] Revolving attack _ Finish caries Sword -- c5270_追跡者_100_3020[HU]回転攻撃_フィニッシュ 蝕剣", + "252700701": "c5270_ tracker _100_3020 [HU] Rotation attack _ Finish Flame Sword -- c5270_追跡者_100_3020[HU]回転攻撃_フィニッシュ 炎剣", + "252700710": "c5270_ tracker _100_3021 [HU] jump attack Flame Stab -- c5270_追跡者_100_3021[HU]ジャンプ攻撃 炎刺し", + "252700711": "c5270_ tracker _100_3021 [HU] Jump attack caries -- c5270_追跡者_100_3021[HU]ジャンプ攻撃 蝕払い", + "252700720": "c5270_ tracker _100_3022 [HU] right attack (90 degree swivel) caries Sword -- c5270_追跡者_100_3022[HU]右旋回攻撃(90度旋回) 蝕剣", + "252700721": "c5270_ tracker _100_3022 [HU] right attack (90 degree turning) caries column -- c5270_追跡者_100_3022[HU]右旋回攻撃(90度旋回) 蝕柱", + "252700730": "c5270_ tracker _100_3023 [HU] left attack (90 degree swivel) Flame Sword -- c5270_追跡者_100_3023[HU]左旋回攻撃(90度旋回) 炎剣", + "252700731": "c5270_ tracker _100_3023 [HU] left attack (90 degree turning) Flame pillar -- c5270_追跡者_100_3023[HU]左旋回攻撃(90度旋回) 炎柱", + "252700740": "c5270_ tracker _100_3024 [HU] frontal thrust attack caries Sword -- c5270_追跡者_100_3024[HU]正面突き攻撃 蝕剣", + "252700750": "c5270_ tracker _100_3025 [HU] turned Saigi 1 two simultaneous caries -- c5270_追跡者_100_3025[HU]振り向き薙ぎ払い 1蝕 2本同時", + "252700751": "c5270_ tracker _100_3025 [HU] turned Saigi 1 Flames 2 simultaneous -- c5270_追跡者_100_3025[HU]振り向き薙ぎ払い 1炎 2本同時", + "252700900": "c5270_ Tracker _1500 Heat-up transition caries Vortex -- c5270_追跡者_1500ヒートアップ遷移 蝕の渦", + "299900100": "Vanguards of c9990_ caries: Attack 1 -- c9990_蝕の尖兵:攻撃1", + "299900110": "Vanguards of c9990_ caries: a throwing attack -- c9990_蝕の尖兵:投げ攻撃", + "299900700": "Vanguards of c9990_ caries: Paris. -- c9990_蝕の尖兵:パリィ", + "299900710": "c1070_ Throw a flame pot -- c1070_火炎壺を投げる", + "299900720": "C1070_ Guard -- c1070_ガード", + "299900730": "c1070_ Soul Arrow -- c1070_ソウルの矢", + "299900740": "c1070_ explosion -- c1070_爆発", + "299900750": "C1070_ Proximity Magic -- c1070_近接魔法", + "990000100": "Test character for damage adjustment -- ダメージ調整用テストキャラ", + "990000110": "Test character for damage adjustment -- ダメージ調整用テストキャラ" + }, + "BehaviorParam_PC": { + "0": "For testing -- テスト用", + "4": "Automatic Patrol object Destruction attack -- 自動巡回用オブジェ破壊攻撃", + "10": "Pc_ Common _ Egg attack -- PC_共通_卵攻撃", + "100": "Pc_ Common _ Falling -- PC_共通_落下", + "400": "Common attack [falling] _ Attack Armor -- 共通攻撃【落下】_攻撃防具", + "401": "Common attack [Landing] _ Attack Armor -- 共通攻撃【着地】_攻撃防具", + "402": "Common attack [Thud landing] _ attack Armor -- 共通攻撃【ドスン着地】_攻撃防具", + "403": "Common attack (Fall Landing) _ Attack Armor -- 共通攻撃【転倒着地】_攻撃防具", + "404": "Common attack [Rolling] _ Attack Armor -- 共通攻撃【ローリング】_攻撃防具", + "405": "Common attack [Summon] _ Attack Armor -- 共通攻撃【召喚】_攻撃防具", + "406": "Common attack [falling on back] _ Attack Armor -- 共通攻撃【仰向け落下】_攻撃防具", + "410": "Common attack [Push] _ Attack Armor -- 共通攻撃【プッシュ】_攻撃防具", + "411": "Common attack [later blows] _ attack Armor -- 共通攻撃【後へ吹っ飛ぶ】_攻撃防具", + "412": "Common attack [吹tsu飛bimasu] _ Attack Armor -- 共通攻撃【前に吹っ飛び】_攻撃防具", + "413": "Common attacks [after push] _ attack Armor -- 共通攻撃【プッシュ後】_攻撃防具", + "420": "Common attack [throwing] _ Attack armor -- 共通攻撃【投げ】_攻撃防具", + "421": "Common attack [Strong throw] _ Attack Armor -- 共通攻撃【強投げ】_攻撃防具", + "422": "Common attack [Paris slams] _ Attack armor -- 共通攻撃【パリィ叩きつけ】_攻撃防具", + "442": "Common attack [Ladder _ slide down] Attack armor -- 共通攻撃【ハシゴ_滑り降り】攻撃防具", + "500": "Common attack [falling] -- 共通攻撃【落下】", + "501": "Common attack [landing] -- 共通攻撃【着地】", + "502": "Common attack [Thud landing] -- 共通攻撃【ドスン着地】", + "503": "Common attack (Fall Landing) -- 共通攻撃【転倒着地】", + "504": "Common attack [rolling] -- 共通攻撃【ローリング】", + "505": "Common attack [Summon] -- 共通攻撃【召喚】", + "506": "Common attack [falling on back] -- 共通攻撃【仰向け落下】", + "510": "Common attack [push] -- 共通攻撃【プッシュ】", + "511": "Common attack [later blows] -- 共通攻撃【後へ吹っ飛ぶ】", + "512": "Common attack [吹tsu飛bimasu] -- 共通攻撃【前に吹っ飛び】", + "513": "Common attack after push -- 共通攻撃【プッシュ後】", + "520": "Common attack [throwing] -- 共通攻撃【投げ】", + "521": "Common attack [strong throw] -- 共通攻撃【強投げ】", + "522": "Common attack [Paris slams] -- 共通攻撃【パリィ叩きつけ】", + "530": "Common attack [Ladder _ right Punch] -- 共通攻撃【ハシゴ_右パンチ】", + "531": "Common attack [ladder _ Right Kick] -- 共通攻撃【ハシゴ_右キック】", + "540": "Common attack [Ladder _ left Punch] -- 共通攻撃【ハシゴ_左パンチ】", + "541": "Common attack [Ladder _ left Kick] -- 共通攻撃【ハシゴ_左キック】", + "542": "Common attack [Ladder _ Slide down] -- 共通攻撃【ハシゴ_滑り降り】", + "600": "Drop RADIUS 1m -- 落下 半径1m", + "601": "吹tsu飛bimasu (weak) Radius 1m -- 吹っ飛び(弱) 半径1m", + "602": "吹tsu飛bimasu (strong) Radius 1m -- 吹っ飛び(強) 半径1m", + "1000": "Causal Retribution _ explosion -- 因果応報_爆発", + "10110": "The Great Sword of Seoul (right) -- ソウルの大剣(右)", + "10111": "The Great Sword of Seoul (left) -- ソウルの大剣(左)", + "101000300": "Ordinary arrows -- 普通の矢", + "101000310": "Ordinary arrow _ Move shot -- 普通の矢_移動撃ち", + "101000320": "Normal arrow _ Diffuse arrow 1 -- 普通の矢_拡散矢1", + "101000321": "Normal arrow _ Diffuse Arrow 2 -- 普通の矢_拡散矢2", + "101000322": "Normal arrow _ Spread Arrow 3 -- 普通の矢_拡散矢3", + "101000330": "Normal arrow Fire -- 普通の矢_連射", + "101001300": "Big arrows -- 大きな矢", + "101002300": "Feather Arrow -- 羽根矢", + "101003300": "Arrows -- 火矢", + "101004300": "Poison -- 毒矢", + "101004310": "Mantella _ Moving Shot -- 毒矢_移動撃ち", + "101004320": "Normal arrow _ Diffuse arrow 1 -- 普通の矢_拡散矢1", + "101004321": "Normal arrow _ Diffuse Arrow 2 -- 普通の矢_拡散矢2", + "101004322": "Normal arrow _ Spread Arrow 3 -- 普通の矢_拡散矢3", + "101004330": "Mantella _ Blazing -- 毒矢_連射", + "101005300": "Mon Mitsuya -- 月光矢", + "101006300": "Tree Arrow -- 木の矢", + "101007300": "The Dragon Hunting Oya -- 竜狩りの大矢", + "101007310": "The Dragon hunting of Ohya _ through bullets -- 竜狩りの大矢_貫通弾", + "101100300": "Light Bolt -- ライトボルト", + "101100400": "Light Bolt [left hand] -- ライトボルト【左手】", + "101101300": "Heavy bolts -- ヘビーボルト", + "101101400": "Heavy Bolt [left hand] -- ヘビーボルト【左手】", + "101102300": "Sniper Bolt -- スナイパーボルト", + "101102400": "Sniper Bolt [left hand] -- スナイパーボルト【左手】", + "101103300": "Wood Bolt -- ウッドボルト", + "101103400": "Wood Bolt [left hand] -- ウッドボルト【左手】", + "101104300": "Lightning Bolts -- ライトニングボルト", + "101104400": "Lightning bolts [left hand] -- ライトニングボルト【左手】", + "102000000": "Dagger _ one hand usually 1 -- 短剣_片手通常1", + "102000010": "Dagger _ one hand usually two -- 短剣_片手通常2", + "102000020": "Dagger _ one hand usually three -- 短剣_片手通常3", + "102000030": "Dagger _ One handed jump -- 短剣_片手ジャンプ1", + "102000040": "Dagger _ one-handed fall loop -- 短剣_片手落下ループ", + "102000050": "Dagger _ one-handed fall landing -- 短剣_片手落下着地", + "102000100": "Dagger _ one-handed entertainment 1 -- 短剣_片手タメ1", + "102000105": "Dagger _ one-handed Entertainment 1 MAX -- 短剣_片手タメ1最大", + "102000110": "Dagger _ one-handed Entertainment 2 -- 短剣_片手タメ2", + "102000115": "Dagger _ one-handed Entertainment 2 Max -- 短剣_片手タメ2最大", + "102000200": "Dagger _ Two hands usually one -- 短剣_両手通常1", + "102000210": "Dagger _ Two Hands usually 2 -- 短剣_両手通常2", + "102000220": "Dagger _ Two hands usually three -- 短剣_両手通常3", + "102000230": "Dagger _ two-handed jump -- 短剣_両手ジャンプ1", + "102000240": "Dagger _ two-handed fall loop -- 短剣_両手落下ループ", + "102000250": "Dagger _ two-handed fall landing -- 短剣_両手落下着地", + "102000300": "Dagger _ two-handed entertainment 1 -- 短剣_両手タメ1", + "102000305": "Dagger _ two-handed entertainment 1 MAX -- 短剣_両手タメ1最大", + "102000310": "Dagger _ two-handed Entertainment 2 -- 短剣_両手タメ2", + "102000315": "Dagger _ two-handed entertainment max -- 短剣_両手タメ2最大", + "102000400": "Dagger _ Left Hand -- 短剣_左手", + "102000410": "Dagger _ one hand close -- 短剣_片手近距離", + "102000420": "Dagger _ Both hands close -- 短剣_両手近距離", + "102000430": "Dagger _ guard _ one hand -- 短剣_ガード_片手", + "102000440": "Dagger _ guard _ both hands -- 短剣_ガード_両手", + "102000450": "Dagger _ Paris -- 短剣_パリィ", + "102000470": "Dagger _ Large Throw -- 短剣_大型投げ", + "102000490": "Dagger _ Falling Throw -- 短剣_落下投げ", + "102000500": "Behind the Dagger -- 短剣_背後", + "102000505": "Dagger _ Strengthening behind -- 短剣_強化背後", + "102000510": "Dagger _ after Paris -- 短剣_パリィ後", + "102000515": "Dagger _ After strengthening Paris -- 短剣_強化パリィ後", + "102000516": "Dagger _ After strengthening Paris _ two -- 短剣_強化パリィ後_二段目", + "102000520": "Dagger _ one handed Dash -- 短剣_片手ダッシュ", + "102000530": "Dagger _ both hands dash -- 短剣_両手ダッシュ", + "102000540": "Dagger _ one hand step before -- 短剣_片手ステップ前", + "102000580": "Dagger _ Hands before step -- 短剣_両手ステップ前", + "102000600": "Dagger _ Parigard -- 短剣_パリィガード", + "102000610": "Dagger _ Behind the transition -- 短剣_背後遷移", + "102000615": "Dagger _ Behind Transition _ missed -- 短剣_背後遷移_空振り", + "102000700": "Dagger _ Arts: Strong rock Step -- 短剣_アーツ:強ロックステップ", + "102001300": "[72] Dagger _ two-handed entertainment 1 -- 【72】短刀_両手タメ1", + "102001310": "[72] Dagger _ two-handed Entertainment 2 -- 【72】短刀_両手タメ2", + "102002000": "[73] Soul Absorbing _ one hand usually 1 -- 【73】吸魂_片手通常1", + "102002010": "[73] Soul Absorbing _ one hand usually 2 -- 【73】吸魂_片手通常2", + "102002020": "[73] Soul Absorbing _ one hand usually three -- 【73】吸魂_片手通常3", + "102002030": "[73] Soul-one-handed jump 1 -- 【73】吸魂_片手ジャンプ1", + "102002040": "[73] Soul-one-handed fall loop -- 【73】吸魂_片手落下ループ", + "102002050": "[73] Soul-one-handed fall landing -- 【73】吸魂_片手落下着地", + "102002100": "[73] Soul-one-handed entertainment 1 -- 【73】吸魂_片手タメ1", + "102002110": "[73] Soul-one-handed entertainment 2 -- 【73】吸魂_片手タメ2", + "102002200": "[73] Soul absorbing _ usually one hand -- 【73】吸魂_両手通常1", + "102002210": "[73] Soul Absorbing _ Two hands usually 2 -- 【73】吸魂_両手通常2", + "102002220": "[73] Soul Absorbing _ Two hands usually three -- 【73】吸魂_両手通常3", + "102002230": "[73] Soul Absorbing _ two-handed jump 1 -- 【73】吸魂_両手ジャンプ1", + "102002240": "[73] Soul absorbing _ Both hands Fall loop -- 【73】吸魂_両手落下ループ", + "102002250": "[73] Soul absorption _ Both hands fall landing -- 【73】吸魂_両手落下着地", + "102002300": "[73] Soul-absorbing, two-handed entertainment 1 -- 【73】吸魂_両手タメ1", + "102002310": "[73] Soul-absorbing two-handed entertainment 2 -- 【73】吸魂_両手タメ2", + "102002400": "[73] Soul Absorbing _ left hand -- 【73】吸魂_左手", + "102002410": "[73] Soul Absorbing _ one hand close -- 【73】吸魂_片手近距離", + "102002420": "[73] Soul Absorbing _ both hands close -- 【73】吸魂_両手近距離", + "102002430": "[73] Soul-guard _ one hand -- 【73】吸魂_ガード_片手", + "102002440": "[73] Soul-guarding _ both hands -- 【73】吸魂_ガード_両手", + "102002450": "[73] Soul-Paris -- 【73】吸魂_パリィ", + "102002490": "[73] Soul absorbing _ Falling throw -- 【73】吸魂_落下投げ", + "102002500": "[73] Soul absorbing _ behind -- 【73】吸魂_背後", + "102002505": "[73] Soul absorbing _ behind the reinforcement -- 【73】吸魂_強化背後", + "102002510": "[73] Soul-Paris after -- 【73】吸魂_パリィ後", + "102002515": "[73] Soul-Paris after strengthening -- 【73】吸魂_強化パリィ後", + "102002516": "[73] Soul-absorbing _ after strengthening Paris _ two -- 【73】吸魂_強化パリィ後_二段目", + "102002520": "[73] Soul-one-handed dash -- 【73】吸魂_片手ダッシュ", + "102002530": "[73] Soul Absorbing _ both hands dash -- 【73】吸魂_両手ダッシュ", + "102002540": "[73] Soul-one-handed step before -- 【73】吸魂_片手ステップ前", + "102002580": "[73] Soul Absorbing _ two-handed step before -- 【73】吸魂_両手ステップ前", + "102002600": "[73] Soul-Parigard -- 【73】吸魂_パリィガード", + "102003000": "【 120 】 Ghost Knife _ one hand usually 1 -- 【120】死霊のナイフ_片手通常1", + "102003010": "[120] A ghost knife _ one hand usually two -- 【120】死霊のナイフ_片手通常2", + "102003020": "[120] A ghost knife _ one hand usually three -- 【120】死霊のナイフ_片手通常3", + "102003030": "[120] Ghost knife _ one-handed jump -- 【120】死霊のナイフ_片手ジャンプ1", + "102003040": "[120] Ghost knife _ one-handed fall loop -- 【120】死霊のナイフ_片手落下ループ", + "102003050": "[120] Ghost knife _ one-handed fall landing -- 【120】死霊のナイフ_片手落下着地", + "102003100": "[120] A ghost knife _ one-handed entertainment 1 -- 【120】死霊のナイフ_片手タメ1", + "102003110": "[120] A ghost knife _ one-handed Entertainment 2 -- 【120】死霊のナイフ_片手タメ2", + "102003200": "[120] A ghost knife _ two hands usually one -- 【120】死霊のナイフ_両手通常1", + "102003210": "[120] A ghost knife _ two hands usually -- 【120】死霊のナイフ_両手通常2", + "102003220": "[120] A ghost knife _ two hands usually three -- 【120】死霊のナイフ_両手通常3", + "102003230": "[120] Ghost knife _ two-handed jump 1 -- 【120】死霊のナイフ_両手ジャンプ1", + "102003240": "[120] Ghost knife _ two-handed fall loop -- 【120】死霊のナイフ_両手落下ループ", + "102003250": "[120] A ghost knife _ two-handed fall landing -- 【120】死霊のナイフ_両手落下着地", + "102003300": "【 120 】 Ghost Knife _ two-handed entertainment 1 -- 【120】死霊のナイフ_両手タメ1", + "102003310": "【 120 】 Ghost Knife _ two-handed Entertainment 2 -- 【120】死霊のナイフ_両手タメ2", + "102003400": "[120] Knife of the dead, left hand -- 【120】死霊のナイフ_左手", + "102003410": "[120] A ghost knife _ one hand close -- 【120】死霊のナイフ_片手近距離", + "102003420": "【 120 】 Ghost Knife _ both hands close -- 【120】死霊のナイフ_両手近距離", + "102003430": "【 120 】 Ghost Knife _ guard _ one hand -- 【120】死霊のナイフ_ガード_片手", + "102003440": "【 120 】 Ghost Knife _ guard _ both hands -- 【120】死霊のナイフ_ガード_両手", + "102003450": "[120] A ghost knife _ Paris -- 【120】死霊のナイフ_パリィ", + "102003490": "[120] Ghost knives _ Falling throws -- 【120】死霊のナイフ_落下投げ", + "102003500": "[120] The Ghost's knife _ behind -- 【120】死霊のナイフ_背後", + "102003505": "【 120 】 Ghost Knife _ reinforced behind -- 【120】死霊のナイフ_強化背後", + "102003510": "[120] A ghost's knife _ after Paris -- 【120】死霊のナイフ_パリィ後", + "102003515": "【 120 】 Ghost Knife _ after strengthening Paris -- 【120】死霊のナイフ_強化パリィ後", + "102003516": "[120] A ghost knife _ Paris after strengthening _ two -- 【120】死霊のナイフ_強化パリィ後_二段目", + "102003520": "[120] Ghost knife _ one-handed Dash -- 【120】死霊のナイフ_片手ダッシュ", + "102003530": "[120] Ghost knife _ both hands dash -- 【120】死霊のナイフ_両手ダッシュ", + "102003540": "[120] A ghost knife _ one hand step before -- 【120】死霊のナイフ_片手ステップ前", + "102003580": "[120] Knife of the dead-hands before step -- 【120】死霊のナイフ_両手ステップ前", + "102003600": "[120] A ghost knife _ Parigard -- 【120】死霊のナイフ_パリィガード", + "102004000": "[130] Kieran Dagger _ one hand usually 1 -- 【130】キアランの短剣_片手通常1", + "102004010": "[130] Kieran's dagger _ one hand usually two -- 【130】キアランの短剣_片手通常2", + "102004020": "[130] Kieran Dagger _ one hand usually three -- 【130】キアランの短剣_片手通常3", + "102004030": "[130] Kieran Dagger _ one-handed jump 1 -- 【130】キアランの短剣_片手ジャンプ1", + "102004040": "[130] Kieran Dagger _ one-handed fall loop -- 【130】キアランの短剣_片手落下ループ", + "102004050": "[130] Kieran's dagger _ one-handed fall landing -- 【130】キアランの短剣_片手落下着地", + "102004100": "[130] Kieran Dagger _ one-handed entertainment 1 -- 【130】キアランの短剣_片手タメ1", + "102004110": "[130] Kieran Dagger _ one-handed Entertainment 2 -- 【130】キアランの短剣_片手タメ2", + "102004200": "[130] Kieran Dagger _ both hands usually one -- 【130】キアランの短剣_両手通常1", + "102004210": "[130] Kieran Dagger _ Two hands usually 2 -- 【130】キアランの短剣_両手通常2", + "102004220": "[130] Kieran Dagger _ Two hands usually three -- 【130】キアランの短剣_両手通常3", + "102004230": "[130] Kieran Dagger _ two-handed jump 1 -- 【130】キアランの短剣_両手ジャンプ1", + "102004240": "[130] Kieran Dagger _ two-handed fall loop -- 【130】キアランの短剣_両手落下ループ", + "102004250": "[130] Kieran Dagger _ two-handed fall landing -- 【130】キアランの短剣_両手落下着地", + "102004300": "[130] Kieran Dagger _ two-handed entertainment 1 -- 【130】キアランの短剣_両手タメ1", + "102004310": "[130] Kieran Dagger _ two-handed Entertainment 2 -- 【130】キアランの短剣_両手タメ2", + "102004400": "[130] Kieran's dagger _ left hand -- 【130】キアランの短剣_左手", + "102004410": "[130] Kieran's dagger _ one hand close -- 【130】キアランの短剣_片手近距離", + "102004420": "[130] Kieran Dagger _ both hands close -- 【130】キアランの短剣_両手近距離", + "102004430": "[130] Kieran's Dagger _ guard _ one hand -- 【130】キアランの短剣_ガード_片手", + "102004440": "[130] Kieran's Dagger _ guard _ both hands -- 【130】キアランの短剣_ガード_両手", + "102004450": "[130] Kieran's Dagger _ Paris -- 【130】キアランの短剣_パリィ", + "102004490": "[130] Kieran's dagger _ a falling throw -- 【130】キアランの短剣_落下投げ", + "102004500": "[130] Kieran's dagger _ behind -- 【130】キアランの短剣_背後", + "102004505": "[130] Kieran's dagger _ reinforced behind -- 【130】キアランの短剣_強化背後", + "102004510": "[130] Kieran's dagger _ after Paris -- 【130】キアランの短剣_パリィ後", + "102004515": "[130] Kieran's dagger _ after strengthening Paris -- 【130】キアランの短剣_強化パリィ後", + "102004516": "[130] Kieran Daggers _ After strengthening Paris _ two -- 【130】キアランの短剣_強化パリィ後_二段目", + "102004520": "[130] Kieran's dagger _ one-handed Dash -- 【130】キアランの短剣_片手ダッシュ", + "102004530": "[130] Kieran's dagger _ both hands dash -- 【130】キアランの短剣_両手ダッシュ", + "102004540": "[130] Kieran's dagger _ one hand step before -- 【130】キアランの短剣_片手ステップ前", + "102004580": "[130] Kieran's dagger _ hands before step -- 【130】キアランの短剣_両手ステップ前", + "102004600": "[130] Kieran's Dagger _ Parigard -- 【130】キアランの短剣_パリィガード", + "102300000": "Straight Sword _ one hand usually 1 -- 直剣_片手通常1", + "102300010": "Straight Sword _ one hand usually two -- 直剣_片手通常2", + "102300020": "Straight Sword _ one hand usually three -- 直剣_片手通常3", + "102300030": "Straight Sword _ One handed jump -- 直剣_片手ジャンプ1", + "102300040": "Straight Sword _ one-handed fall loop -- 直剣_片手落下ループ", + "102300050": "Straight Sword _ one-handed fall landing -- 直剣_片手落下着地", + "102300100": "Straight Sword _ one-handed entertainment 1 -- 直剣_片手タメ1", + "102300105": "Straight Sword _ one-handed 1_ maximum attack -- 直剣_片手タメ1_最大攻撃", + "102300110": "Straight Sword _ one-handed Entertainment 2 -- 直剣_片手タメ2", + "102300115": "Straight Sword _ one-handed 2_ maximum attack -- 直剣_片手タメ2_最大攻撃", + "102300200": "Straight Sword _ Two hands usually one -- 直剣_両手通常1", + "102300210": "Straight Swords _ Two hands usually -- 直剣_両手通常2", + "102300220": "Straight Swords _ Two hands usually three -- 直剣_両手通常3", + "102300230": "Straight Sword _ two-handed jump -- 直剣_両手ジャンプ1", + "102300240": "Straight Sword _ two-handed fall loop -- 直剣_両手落下ループ", + "102300250": "Straight Sword _ two-handed fall landing -- 直剣_両手落下着地", + "102300300": "Straight Sword _ two-handed entertainment 1 -- 直剣_両手タメ1", + "102300305": "Straight Sword _ two-handed 1_ maximum attack -- 直剣_両手タメ1_最大攻撃", + "102300310": "Straight Sword _ two-handed Entertainment 2 -- 直剣_両手タメ2", + "102300315": "Straight Sword _ two-handed 2_ maximum attack -- 直剣_両手タメ2_最大攻撃", + "102300400": "Straight Sword _ left hand -- 直剣_左手", + "102300410": "Straight Sword _ one hand close -- 直剣_片手近距離", + "102300420": "Straight Sword _ both hands close -- 直剣_両手近距離", + "102300430": "Straight Sword _ guard _ one hand -- 直剣_ガード_片手", + "102300440": "Straight Swords _ guards _ both hands -- 直剣_ガード_両手", + "102300450": "Straight Sword _ Paris -- 直剣_パリィ", + "102300470": "Straight Sword _ Falling Throw -- 直剣_落下投げ", + "102300490": "Straight Sword _ Falling Throw -- 直剣_落下投げ", + "102300500": "Straight Sword _ behind -- 直剣_背後", + "102300505": "Straight Sword _ reinforced behind -- 直剣_強化背後", + "102300510": "Straight Sword _ after Paris -- 直剣_パリィ後", + "102300515": "Straight Sword _ after strengthening Paris -- 直剣_強化パリィ後", + "102300516": "Paris Straight Sword _ after strengthening _ two -- 直剣_強化パリィ後_二段目", + "102300520": "Straight Sword _ one-handed Dash -- 直剣_片手ダッシュ", + "102300530": "Straight Sword _ both hands dash -- 直剣_両手ダッシュ", + "102300540": "Straight Sword _ one hand step before -- 直剣_片手ステップ前", + "102300580": "Straight Sword _ Two hands before step -- 直剣_両手ステップ前", + "102300600": "Straight Sword _ Parigard -- 直剣_パリィガード", + "102300610": "Straight Sword _ Behind the transition -- 直剣_背後遷移", + "102300615": "Straight Sword _ Behind the transition _ missed -- 直剣_背後遷移_空振り", + "102300720": "Straight Sword poised, weak attack -- 直剣_構え弱攻撃", + "102300722": "Straight Sword _ Strong attack -- 直剣_構え強攻撃", + "102301100": "[53] Broad _ one-handed entertainment 1 -- 【53】ブロード_片手タメ1", + "102301540": "[53] Broad _ one-handed step before -- 【53】ブロード_片手ステップ前", + "102301580": "[53] Broad _ both hands before step -- 【53】ブロード_両手ステップ前", + "102302100": "[54] Straight Sword: one-handed entertainment 1 -- 【54】刺突直剣_片手タメ1", + "102302105": "[54] One-handed 1_ maximum attack -- 【54】刺突直剣_片手タメ1_最大攻撃", + "102302110": "[54] Straight Sword: one-handed Entertainment 2 -- 【54】刺突直剣_片手タメ2", + "102302115": "[54] One-handed 2_ maximum attack -- 【54】刺突直剣_片手タメ2_最大攻撃", + "102302300": "[54] Straight Swords _ two-handed entertainment 1 -- 【54】刺突直剣_両手タメ1", + "102302310": "[54] Straight Swords _ two-handed Entertainment 2 -- 【54】刺突直剣_両手タメ2", + "102302580": "[54] Thrust Straight Sword _ before both hands step -- 【54】刺突直剣_両手ステップ前", + "102303000": "[55] Hero's Sword _ one hand usually 1 -- 【55】英雄の剣_片手通常1", + "102303010": "[55] Hero's Sword _ one hand usually two -- 【55】英雄の剣_片手通常2", + "102303020": "[55] Hero's Sword _ one hand usually three -- 【55】英雄の剣_片手通常3", + "102303030": "[55] Hero's Sword _ one-handed jump 1 -- 【55】英雄の剣_片手ジャンプ1", + "102303040": "[55] Hero's Sword _ one-handed fall loop -- 【55】英雄の剣_片手落下ループ", + "102303050": "[55] Hero's Sword _ one-handed fall landing -- 【55】英雄の剣_片手落下着地", + "102303100": "[55] Hero's Sword _ one-handed entertainment 1 -- 【55】英雄の剣_片手タメ1", + "102303110": "[55] Hero's Sword _ one-handed Entertainment 2 -- 【55】英雄の剣_片手タメ2", + "102303200": "[55] Hero's Sword _ hands usually one -- 【55】英雄の剣_両手通常1", + "102303210": "[55] Hero's Sword _ Two hands usually 2 -- 【55】英雄の剣_両手通常2", + "102303220": "[55] Hero's sword _ hands usually three -- 【55】英雄の剣_両手通常3", + "102303230": "[55] Hero's Sword _ two-handed jump 1 -- 【55】英雄の剣_両手ジャンプ1", + "102303240": "[55] Hero's Sword _ two-handed fall loop -- 【55】英雄の剣_両手落下ループ", + "102303250": "[55] Hero's Sword _ two-handed fall landing -- 【55】英雄の剣_両手落下着地", + "102303300": "[55] Hero's Sword _ two-handed entertainment 1 -- 【55】英雄の剣_両手タメ1", + "102303310": "[55] Hero's Sword _ two-handed Entertainment 2 -- 【55】英雄の剣_両手タメ2", + "102303400": "[55] Hero's Sword _ left hand -- 【55】英雄の剣_左手", + "102303410": "[55] Hero's Sword _ one hand short distance -- 【55】英雄の剣_片手近距離", + "102303420": "[55] Hero's Sword _ both hands close -- 【55】英雄の剣_両手近距離", + "102303430": "[55] Hero's Sword _ guard _ one hand -- 【55】英雄の剣_ガード_片手", + "102303440": "[55] Hero's Sword _ guard _ both hands -- 【55】英雄の剣_ガード_両手", + "102303450": "[55] Hero's Sword _ Paris -- 【55】英雄の剣_パリィ", + "102303490": "[55] Hero's sword _ falling Throw -- 【55】英雄の剣_落下投げ", + "102303500": "[55] Hero's Sword _ behind -- 【55】英雄の剣_背後", + "102303505": "[55] Hero's Sword _ strengthening behind -- 【55】英雄の剣_強化背後", + "102303510": "[55] Hero's Sword _ after Paris -- 【55】英雄の剣_パリィ後", + "102303515": "[55] Hero's Sword _ after strengthening Paris -- 【55】英雄の剣_強化パリィ後", + "102303516": "[55] Hero's Sword _ strengthened after Paris _ two -- 【55】英雄の剣_強化パリィ後_二段目", + "102303520": "[55] Hero's Sword _ one-handed Dash -- 【55】英雄の剣_片手ダッシュ", + "102303530": "[55] Hero's Sword _ both hands dash -- 【55】英雄の剣_両手ダッシュ", + "102303540": "[55] Hero's Sword _ one hand step before -- 【55】英雄の剣_片手ステップ前", + "102303580": "[55] Hero's Sword _ hands before step -- 【55】英雄の剣_両手ステップ前", + "102303600": "[55] Hero's Sword _ Parigard -- 【55】英雄の剣_パリィガード", + "102304100": "[57] Dark _ one-handed entertainment 1 -- 【57】ダーク_片手タメ1", + "102304110": "[57] Dark _ one-handed Entertainment 2 -- 【57】ダーク_片手タメ2", + "102304300": "[57] Dark _ two-handed entertainment 1 -- 【57】ダーク_両手タメ1", + "102304310": "[57] Dark _ two-handed Entertainment 2 -- 【57】ダーク_両手タメ2", + "102305000": "[58] Sword of the old dragon _ one hand usually 1 -- 【58】古竜の剣_片手通常1", + "102305010": "[58] Sword of the old dragon _ one hand usually two -- 【58】古竜の剣_片手通常2", + "102305020": "[58] Sword of the old dragon _ one hand usually three -- 【58】古竜の剣_片手通常3", + "102305030": "[58] Sword of the old dragon _ one-handed jump 1 -- 【58】古竜の剣_片手ジャンプ1", + "102305040": "[58] Sword of the old dragon _ one-handed fall loop -- 【58】古竜の剣_片手落下ループ", + "102305050": "[58] Sword of the old dragon _ one-handed fall landing -- 【58】古竜の剣_片手落下着地", + "102305100": "[58] Sword of the old dragon _ one-handed entertainment 1 -- 【58】古竜の剣_片手タメ1", + "102305110": "[58] Sword of the old dragon _ one-handed Entertainment 2 -- 【58】古竜の剣_片手タメ2", + "102305200": "[58] Sword of the old dragon _ two hands usually one -- 【58】古竜の剣_両手通常1", + "102305210": "[58] Sword of the old dragon _ Two hands usually 2 -- 【58】古竜の剣_両手通常2", + "102305220": "[58] Sword of the old dragon _ Two hands usually three -- 【58】古竜の剣_両手通常3", + "102305230": "[58] Sword of the old Dragon _ two-handed jump 1 -- 【58】古竜の剣_両手ジャンプ1", + "102305240": "[58] Sword of the old Dragon _ both hands Fall loop -- 【58】古竜の剣_両手落下ループ", + "102305250": "[58] Sword of the old Dragon _ both hands Fall landing -- 【58】古竜の剣_両手落下着地", + "102305300": "[58] Sword of the old Dragon _ two-handed entertainment 1 -- 【58】古竜の剣_両手タメ1", + "102305310": "[58] Sword of the old Dragon _ two-handed Entertainment 2 -- 【58】古竜の剣_両手タメ2", + "102305320": "[58] Sword of the old Dragon _ two-handed Entertainment 1/magic Sword firing -- 【58】古竜の剣_両手タメ1/魔法剣発射時", + "102305330": "[58] Sword of the old Dragon _ two-handed entertainment 2/when the Magic Sword is fired -- 【58】古竜の剣_両手タメ2/魔法剣発射時", + "102305400": "[58] Old Dragon Sword _ left hand -- 【58】古竜の剣_左手", + "102305410": "[58] Sword of the old Dragon _ one hand short distance -- 【58】古竜の剣_片手近距離", + "102305420": "[58] Sword of the old Dragon _ both hands close range -- 【58】古竜の剣_両手近距離", + "102305430": "[58] Sword of the old Dragon _ guard _ one hand -- 【58】古竜の剣_ガード_片手", + "102305440": "[58] Sword of the old Dragon _ guard _ both hands -- 【58】古竜の剣_ガード_両手", + "102305450": "[58] The Sword of the old Dragon _ Paris -- 【58】古竜の剣_パリィ", + "102305490": "[58] Sword of the old Dragon _ fall Throw -- 【58】古竜の剣_落下投げ", + "102305500": "[58] Old Dragon Sword _ behind -- 【58】古竜の剣_背後", + "102305505": "[58] Sword of the old dragon _ strengthening behind -- 【58】古竜の剣_強化背後", + "102305510": "[58] The Sword of the old dragon _ after Paris -- 【58】古竜の剣_パリィ後", + "102305515": "[58] The Sword of the old dragon _ after strengthening Paris -- 【58】古竜の剣_強化パリィ後", + "102305516": "[58] The Sword of the old dragon _ after strengthening Paris _ two -- 【58】古竜の剣_強化パリィ後_二段目", + "102305520": "[58] Sword of the old dragon _ one-handed Dash -- 【58】古竜の剣_片手ダッシュ", + "102305530": "[58] Sword of the old Dragon _ both hands Dash -- 【58】古竜の剣_両手ダッシュ", + "102305540": "[58] Sword of the old Dragon _ one hand step before -- 【58】古竜の剣_片手ステップ前", + "102305580": "[58] Sword of the old Dragon _ Two hands before step -- 【58】古竜の剣_両手ステップ前", + "102305600": "[58] The Sword of the old Dragon _ Parigard -- 【58】古竜の剣_パリィガード", + "102305800": "[58] Sword of the old Dragon _ Magic Sword -- 【58】古竜の剣_魔法剣", + "102500000": "Large Sword _ one hand usually 1 -- 大剣_片手通常1", + "102500010": "Large Sword _ one hand usually two -- 大剣_片手通常2", + "102500020": "Large Sword _ one hand usually three -- 大剣_片手通常3", + "102500030": "Big Sword _ One handed jump -- 大剣_片手ジャンプ1", + "102500040": "Large Sword _ One handed fall loop -- 大剣_片手落下ループ", + "102500050": "Big Sword _ one-handed fall landing -- 大剣_片手落下着地", + "102500100": "Big Sword _ one-handed entertainment 1 -- 大剣_片手タメ1", + "102500105": "Large Sword _ one hand entertainment maximum -- 大剣_片手タメ1最大", + "102500110": "Big Sword _ one hand Entertainment 2 -- 大剣_片手タメ2", + "102500115": "Big Sword _ one hand entertainment 2 max -- 大剣_片手タメ2最大", + "102500200": "Large Sword _ Two hands usually one -- 大剣_両手通常1", + "102500210": "Large Swords _ Two hands usually -- 大剣_両手通常2", + "102500220": "Large Swords _ Two hands usually three -- 大剣_両手通常3", + "102500230": "Large Sword _ two-handed jump 1 -- 大剣_両手ジャンプ1", + "102500240": "Large Sword _ two-handed fall loop -- 大剣_両手落下ループ", + "102500250": "Large Sword _ two-handed fall landing -- 大剣_両手落下着地", + "102500300": "Large Sword _ two-handed entertainment 1 -- 大剣_両手タメ1", + "102500305": "Large Sword _ two-handed entertainment 1 MAX -- 大剣_両手タメ1最大", + "102500310": "Large Sword _ two-handed Entertainment 2 -- 大剣_両手タメ2", + "102500315": "Large Sword _ two-handed entertainment maximum -- 大剣_両手タメ2最大", + "102500400": "Big Sword _ Left hand -- 大剣_左手", + "102500410": "Large Sword _ one hand close -- 大剣_片手近距離", + "102500420": "Large Sword _ both hands close -- 大剣_両手近距離", + "102500430": "Large Sword _ guard _ one hand -- 大剣_ガード_片手", + "102500440": "Big Sword _ guard _ both hands -- 大剣_ガード_両手", + "102500450": "Big Sword _ Paris -- 大剣_パリィ", + "102500470": "Large Sword _ Large throw -- 大剣_大型投げ", + "102500490": "Large Sword _ Falling throw -- 大剣_落下投げ", + "102500500": "Behind the Great Sword -- 大剣_背後", + "102500505": "Great Sword _ reinforced behind -- 大剣_強化背後", + "102500510": "Large Sword _ after Paris -- 大剣_パリィ後", + "102500515": "Great swords _ after strengthening Paris -- 大剣_強化パリィ後", + "102500516": "Paris _ Two after the Great sword _ -- 大剣_強化パリィ後_二段目", + "102500520": "Big Sword _ One handed Dash -- 大剣_片手ダッシュ", + "102500530": "Big Sword _ both hands dash -- 大剣_両手ダッシュ", + "102500540": "Big Sword _ one hand step before -- 大剣_片手ステップ前", + "102500580": "Large Sword _ Two hands before step -- 大剣_両手ステップ前", + "102500600": "Big Sword _ Parigard -- 大剣_パリィガード", + "102500610": "Big Sword _ Behind the transition -- 大剣_背後遷移", + "102500615": "Big Sword _ Behind the transition _ missed -- 大剣_背後遷移_空振り", + "102501100": "[80] Black Knight's Great Sword _ one-handed entertainment 1 -- 【80】黒騎士の大剣_片手タメ1", + "102501110": "[80] Black Knight's Great Sword _ one-handed Entertainment 2 -- 【80】黒騎士の大剣_片手タメ2", + "102501300": "[80] Black Knight's Great Sword _ two-handed entertainment 1 -- 【80】黒騎士の大剣_両手タメ1", + "102502000": "[75] Framberger _ one-handed usually 1 -- 【75】フランベルジェ_片手通常1", + "102502010": "[75] Framberger _ one hand usually two -- 【75】フランベルジェ_片手通常2", + "102502020": "[75] Framberger _ one hand usually three -- 【75】フランベルジェ_片手通常3", + "102502030": "[75] Framberger _ one-handed jump 1 -- 【75】フランベルジェ_片手ジャンプ1", + "102502040": "[75] Framberger _ one-handed fall loop -- 【75】フランベルジェ_片手落下ループ", + "102502050": "[75] Framberger _ one-handed fall landing -- 【75】フランベルジェ_片手落下着地", + "102502100": "[75] Framberger _ one-handed entertainment 1 -- 【75】フランベルジェ_片手タメ1", + "102502110": "[75] Framberger _ one-handed Entertainment 2 -- 【75】フランベルジェ_片手タメ2", + "102502200": "[75] Framberger _ Two hands usually one -- 【75】フランベルジェ_両手通常1", + "102502210": "[75] Framberger _ Two hands usually 2 -- 【75】フランベルジェ_両手通常2", + "102502220": "[75] Framberger _ Two hands usually three -- 【75】フランベルジェ_両手通常3", + "102502230": "[75] Framberger _ two-handed jump 1 -- 【75】フランベルジェ_両手ジャンプ1", + "102502240": "[75] Framberger _ two-handed fall loop -- 【75】フランベルジェ_両手落下ループ", + "102502250": "[75] Framberger _ two-handed fall landing -- 【75】フランベルジェ_両手落下着地", + "102502300": "[75] Framberger _ two-handed entertainment 1 -- 【75】フランベルジェ_両手タメ1", + "102502310": "[75] Framberger _ two-handed Entertainment 2 -- 【75】フランベルジェ_両手タメ2", + "102502400": "[75] Framberger _ left Hand -- 【75】フランベルジェ_左手", + "102502520": "[75] Framberger _ one-handed Dash -- 【75】フランベルジェ_片手ダッシュ", + "102502530": "[75] Framberger _ both hands dash -- 【75】フランベルジェ_両手ダッシュ", + "102502540": "[75] Framberger _ one-handed step before -- 【75】フランベルジェ_片手ステップ前", + "102502580": "[75] Framberger _ two-handed steps ago -- 【75】フランベルジェ_両手ステップ前", + "102503100": "[77] Large Sword of stone _ one-handed entertainment 1 -- 【77】石の大剣_片手タメ1", + "102503110": "[77] Large Sword of stone _ one-handed Entertainment 2 -- 【77】石の大剣_片手タメ2", + "102503200": "[77] Stone Large Sword _ two hands usually one -- 【77】石の大剣_両手通常1", + "102503210": "【 77 】 Stone Large Sword _ two hands usually 2 -- 【77】石の大剣_両手通常2", + "102503220": "[77] Stone Large Sword _ two hands usually three -- 【77】石の大剣_両手通常3", + "102503300": "[77] Large Sword of stone _ two-handed entertainment 1 -- 【77】石の大剣_両手タメ1", + "102503310": "[77] Large Sword of stone _ two-handed Entertainment 2 -- 【77】石の大剣_両手タメ2", + "102503580": "[77] Stone Large Sword _ hands before step -- 【77】石の大剣_両手ステップ前", + "102504000": "[79] Moonlight _ one hand usually 1 -- 【79】ムーンライト_片手通常1", + "102504010": "[79] Moonlight _ one hand usually two -- 【79】ムーンライト_片手通常2", + "102504020": "[79] Moonlight _ one hand usually three -- 【79】ムーンライト_片手通常3", + "102504030": "[79] Moonlight _ one-handed jump 1 -- 【79】ムーンライト_片手ジャンプ1", + "102504040": "[79] Moonlight _ one-handed fall loop -- 【79】ムーンライト_片手落下ループ", + "102504050": "[79] Moonlight _ one-handed fall landing -- 【79】ムーンライト_片手落下着地", + "102504100": "[79] Moonlight _ one-handed entertainment 1 -- 【79】ムーンライト_片手タメ1", + "102504110": "[79] Moonlight _ one-handed Entertainment 2 -- 【79】ムーンライト_片手タメ2", + "102504120": "[79] Moonlight _ one-handed Entertainment 1/Magic Sword Launch -- 【79】ムーンライト_片手タメ1/魔法剣発射時", + "102504130": "[79] Moonlight _ one-handed Entertainment 2/Magic Sword Launch -- 【79】ムーンライト_片手タメ2/魔法剣発射時", + "102504200": "[79] Moonlight _ hands usually one -- 【79】ムーンライト_両手通常1", + "102504210": "[79] Moonlight _ hands usually two -- 【79】ムーンライト_両手通常2", + "102504220": "[79] Moonlight _ hands usually three -- 【79】ムーンライト_両手通常3", + "102504230": "[79] Moonlight _ two-handed jump 1 -- 【79】ムーンライト_両手ジャンプ1", + "102504240": "[79] Moonlight _ Both hands Fall loop -- 【79】ムーンライト_両手落下ループ", + "102504250": "[79] Moonlight _ Both hands fall landing -- 【79】ムーンライト_両手落下着地", + "102504300": "[79] Moonlight _ two-handed entertainment 1 -- 【79】ムーンライト_両手タメ1", + "102504310": "[79] Moonlight _ two-handed Entertainment 2 -- 【79】ムーンライト_両手タメ2", + "102504320": "[79] Moonlight _ two-handed Entertainment 1/magic Sword firing -- 【79】ムーンライト_両手タメ1/魔法剣発射時", + "102504330": "[79] Moonlight _ two-handed Entertainment 2/magic Sword when firing -- 【79】ムーンライト_両手タメ2/魔法剣発射時", + "102504400": "[79] Moonlight _ Left Hand -- 【79】ムーンライト_左手", + "102504410": "[79] Moonlight _ one hand close -- 【79】ムーンライト_片手近距離", + "102504420": "[79] Moonlight _ both hands close -- 【79】ムーンライト_両手近距離", + "102504430": "[79] Moonlight _ guard _ one hand -- 【79】ムーンライト_ガード_片手", + "102504440": "[79] Moonlight _ guard _ both hands -- 【79】ムーンライト_ガード_両手", + "102504450": "[79] Moonlight _ Paris -- 【79】ムーンライト_パリィ", + "102504490": "[79] Moonlight _ Falling Throw -- 【79】ムーンライト_落下投げ", + "102504500": "[79] Moonlight _ behind -- 【79】ムーンライト_背後", + "102504505": "[79] Moonlight _ Reinforced behind -- 【79】ムーンライト_強化背後", + "102504510": "[79] Moonlight _ after Paris -- 【79】ムーンライト_パリィ後", + "102504515": "【 79 】 Moonlight _ after strengthening Paris -- 【79】ムーンライト_強化パリィ後", + "102504516": "[79] Moonlight _ After strengthening Paris _ two -- 【79】ムーンライト_強化パリィ後_二段目", + "102504520": "[79] Moonlight _ one-handed Dash -- 【79】ムーンライト_片手ダッシュ", + "102504530": "[79] Moonlight _ both hands dash -- 【79】ムーンライト_両手ダッシュ", + "102504540": "[79] Moonlight _ one-handed step before -- 【79】ムーンライト_片手ステップ前", + "102504580": "[79] Moonlight _ Hands Step Ahead -- 【79】ムーンライト_両手ステップ前", + "102504600": "[79] Moonlight _ Parigard -- 【79】ムーンライト_パリィガード", + "102504800": "[79] Moonlight _ one hand _ Magic Sword -- 【79】ムーンライト_片手_魔法剣", + "102504801": "[79] Moonlight _ Both Hands _ Magic Sword -- 【79】ムーンライト_両手_魔法剣", + "102505100": "[74] Claymore _ one-handed entertainment 1 -- 【74】クレイモア_片手タメ1", + "102505110": "[74] Claymore _ one-handed Entertainment 2 -- 【74】クレイモア_片手タメ2", + "102505300": "[74] Claymore _ two-handed entertainment 1 -- 【74】クレイモア_両手タメ1", + "102505310": "[74] Claymore _ two-handed Entertainment 2 -- 【74】クレイモア_両手タメ2", + "102505580": "[74] Claymore _ two-handed step before -- 【74】クレイモア_両手ステップ前", + "102507000": "[97] The Great King _ one hand usually -- 【97】大王_片手通常1", + "102507010": "[97] The great _ one hand usually two -- 【97】大王_片手通常2", + "102507020": "[97] The great _ one hand usually three -- 【97】大王_片手通常3", + "102507030": "[97] The great _ one-handed jump 1 -- 【97】大王_片手ジャンプ1", + "102507040": "[97] The great _ one-handed fall loop -- 【97】大王_片手落下ループ", + "102507050": "[97] The great _ one-handed fall landing -- 【97】大王_片手落下着地", + "102507100": "[97] The great _ one-handed entertainment 1 -- 【97】大王_片手タメ1", + "102507110": "[97] The great _ one-handed Entertainment 2 -- 【97】大王_片手タメ2", + "102507200": "[97] Great _ hands usually one -- 【97】大王_両手通常1", + "102507210": "[97] Great _ Two hands usually 2 -- 【97】大王_両手通常2", + "102507220": "[97] The great _ Two hands usually three -- 【97】大王_両手通常3", + "102507230": "[97] Great _ two-handed jump 1 -- 【97】大王_両手ジャンプ1", + "102507240": "[97] Great _ Both hands Fall loop -- 【97】大王_両手落下ループ", + "102507250": "[97] Great _ two-handed fall landing -- 【97】大王_両手落下着地", + "102507300": "[97] Great _ two-handed entertainment 1 -- 【97】大王_両手タメ1", + "102507310": "[97] Great _ two-handed Entertainment 2 -- 【97】大王_両手タメ2", + "102507400": "[97] The great-left hand -- 【97】大王_左手", + "102507410": "[97] The great _ one hand close -- 【97】大王_片手近距離", + "102507420": "[97] Great _ both hands close -- 【97】大王_両手近距離", + "102507430": "[97] The great _ The guards _ one hand -- 【97】大王_ガード_片手", + "102507440": "[97] The great _ The guards _ both hands -- 【97】大王_ガード_両手", + "102507450": "[97] Great _ Paris -- 【97】大王_パリィ", + "102507490": "[97] The great _ falling throw -- 【97】大王_落下投げ", + "102507500": "[97] Great _ behind -- 【97】大王_背後", + "102507505": "[97] Great _ behind the reinforcement -- 【97】大王_強化背後", + "102507510": "[97] The great _ after Paris -- 【97】大王_パリィ後", + "102507515": "[97] Great _ after strengthening Paris -- 【97】大王_強化パリィ後", + "102507516": "[97] Great _ Paris after strengthening _ two -- 【97】大王_強化パリィ後_二段目", + "102507520": "[97] The great _ one-handed Dash -- 【97】大王_片手ダッシュ", + "102507530": "[97] Great _ both hands dash -- 【97】大王_両手ダッシュ", + "102507540": "[97] Great _ one hand step before -- 【97】大王_片手ステップ前", + "102507580": "[97] Great _ Two hands before step -- 【97】大王_両手ステップ前", + "102507600": "[97] Great _ Parigard -- 【97】大王_パリィガード", + "102508100": "[131] al-Triana (erosion) _ one-handed entertainment 1 -- 【131】アルトリウス(侵食)_片手タメ1", + "102508300": "[131] al-Triana (erosion) _ two-handed entertainment 1 -- 【131】アルトリウス(侵食)_両手タメ1", + "102509000": "[135] Black Dragon Large Sword _ one hand usually 1 -- 【135】黒竜の大剣_片手通常1", + "102509010": "[135] Black Dragon Large Sword _ one hand usually two -- 【135】黒竜の大剣_片手通常2", + "102509020": "[135] Black Dragon Large Sword _ one hand usually three -- 【135】黒竜の大剣_片手通常3", + "102509030": "[135] Black Dragon Big Sword _ one handed jump -- 【135】黒竜の大剣_片手ジャンプ1", + "102509040": "[135] Black Dragon Large Sword _ one-handed fall loop -- 【135】黒竜の大剣_片手落下ループ", + "102509050": "[135] Black Dragon Large Sword _ one-handed fall landing -- 【135】黒竜の大剣_片手落下着地", + "102509100": "[135] Black Dragon Big Sword _ one-handed entertainment 1 -- 【135】黒竜の大剣_片手タメ1", + "102509110": "[135] Black Dragon Large Sword _ one-handed Entertainment 2 -- 【135】黒竜の大剣_片手タメ2", + "102509200": "[135] Black Dragon Large Sword _ two hands usually one -- 【135】黒竜の大剣_両手通常1", + "102509210": "[135] Black Dragon Large Sword _ two hands usually 2 -- 【135】黒竜の大剣_両手通常2", + "102509220": "[135] Black Dragon Large Sword _ two hands usually three -- 【135】黒竜の大剣_両手通常3", + "102509230": "[135] Black Dragon Large Sword _ two-handed jump 1 -- 【135】黒竜の大剣_両手ジャンプ1", + "102509240": "[135] Black Dragon Large Sword _ both hands Fall loop -- 【135】黒竜の大剣_両手落下ループ", + "102509250": "[135] Large Sword of Black dragon _ both hands Fall landing -- 【135】黒竜の大剣_両手落下着地", + "102509300": "[135] Black Dragon Large Sword _ two-handed entertainment 1 -- 【135】黒竜の大剣_両手タメ1", + "102509320": "[135] Black Dragon Large Sword _ two-handed Entertainment 1/magic Sword firing -- 【135】黒竜の大剣_両手タメ1/魔法剣発射時", + "102509400": "[135] Black Dragon Large Sword _ left hand -- 【135】黒竜の大剣_左手", + "102509410": "[135] Large Sword of black dragon _ one hand short distance -- 【135】黒竜の大剣_片手近距離", + "102509420": "[135] Large Sword of Black dragon _ both hands close range -- 【135】黒竜の大剣_両手近距離", + "102509430": "[135] Black Dragon's Big Sword _ guard _ one hand -- 【135】黒竜の大剣_ガード_片手", + "102509440": "[135] Black Dragon Sword _ guard _ both hands -- 【135】黒竜の大剣_ガード_両手", + "102509450": "[135] Black Dragon Large Sword _ Paris -- 【135】黒竜の大剣_パリィ", + "102509490": "[135] Black Dragon Large Sword _ Fall Throw -- 【135】黒竜の大剣_落下投げ", + "102509500": "[135] Black Dragon's Great sword _ behind -- 【135】黒竜の大剣_背後", + "102509505": "[135] Large Sword of black dragon _ reinforced behind -- 【135】黒竜の大剣_強化背後", + "102509510": "[135] Black Dragon Large Sword _ after Paris -- 【135】黒竜の大剣_パリィ後", + "102509515": "[135] Black Dragon Large Sword _ after strengthening Paris -- 【135】黒竜の大剣_強化パリィ後", + "102509516": "[135] Black Dragon's Great sword _ after strengthening Paris _ two -- 【135】黒竜の大剣_強化パリィ後_二段目", + "102509520": "[135] Black Dragon's Big sword _ one-handed Dash -- 【135】黒竜の大剣_片手ダッシュ", + "102509530": "[135] Black Dragon Large Sword _ both hands dash -- 【135】黒竜の大剣_両手ダッシュ", + "102509540": "[135] Black Dragon Big Sword _ one hand step before -- 【135】黒竜の大剣_片手ステップ前", + "102509580": "[135] Black Dragon Large Sword _ both hands step before -- 【135】黒竜の大剣_両手ステップ前", + "102509600": "[135] Black Dragon Large Sword _ Parigard -- 【135】黒竜の大剣_パリィガード", + "102509800": "[135] Black Dragon Large Sword _ one hand _ Magic Sword -- 【135】黒竜の大剣_片手_魔法剣", + "102600000": "Oversized Sword _ one hand usually 1 -- 特大剣_片手通常1", + "102600001": "Oversized Sword _ One handed usually 1_ range -- 特大剣_片手通常1_範囲", + "102600010": "Oversized Sword _ one hand usually two -- 特大剣_片手通常2", + "102600020": "Oversized Sword _ one hand usually three -- 特大剣_片手通常3", + "102600030": "Oversized Sword _ One handed jump -- 特大剣_片手ジャンプ1", + "102600040": "Oversized Sword _ One handed fall loop -- 特大剣_片手落下ループ", + "102600050": "Oversized Sword _ one-handed fall landing -- 特大剣_片手落下着地", + "102600100": "Oversized Sword _ one-handed entertainment 1 -- 特大剣_片手タメ1", + "102600105": "Oversized Sword _ one-handed 1_ maximum attack -- 特大剣_片手タメ1_最大攻撃", + "102600110": "Oversized Sword _ one-handed Entertainment 2 -- 特大剣_片手タメ2", + "102600115": "Oversized Sword _ one-handed 2_ maximum attack -- 特大剣_片手タメ2_最大攻撃", + "102600200": "Oversized Sword _ Two hands usually one -- 特大剣_両手通常1", + "102600210": "Oversized Swords _ Two hands usually 2 -- 特大剣_両手通常2", + "102600220": "Oversized Swords _ Two hands usually three -- 特大剣_両手通常3", + "102600230": "Oversized Sword _ two-handed jump 1 -- 特大剣_両手ジャンプ1", + "102600240": "Oversized Sword _ two-handed fall loop -- 特大剣_両手落下ループ", + "102600250": "Oversized Sword _ two-handed fall landing -- 特大剣_両手落下着地", + "102600300": "Oversized Sword _ two-handed entertainment 1 -- 特大剣_両手タメ1", + "102600305": "Oversized Sword _ two-handed entertainment 1 MAX -- 特大剣_両手タメ1最大", + "102600310": "Oversized Sword _ two-handed Entertainment 2 -- 特大剣_両手タメ2", + "102600315": "Oversized Sword _ two-handed maximum -- 特大剣_両手タメ2最大", + "102600400": "Oversized Sword _ left hand -- 特大剣_左手", + "102600410": "Oversized Sword _ one hand close -- 特大剣_片手近距離", + "102600420": "Oversized Sword _ both hands close -- 特大剣_両手近距離", + "102600430": "Oversized Sword _ guard _ one hand -- 特大剣_ガード_片手", + "102600440": "Oversized Sword _ guard _ both hands -- 特大剣_ガード_両手", + "102600450": "Oversized Sword _ Paris -- 特大剣_パリィ", + "102600470": "Oversized Sword _ Large throw -- 特大剣_大型投げ", + "102600490": "Oversized Sword _ Falling throw -- 特大剣_落下投げ", + "102600500": "Behind the oversized sword -- 特大剣_背後", + "102600501": "An oversized sword _ behind the two firing eyes -- 特大剣_背後_二撃目", + "102600505": "Oversized swords _ Reinforced behind -- 特大剣_強化背後", + "102600506": "Oversized Swords _ Reinforced behind _ Two -- 特大剣_強化背後_二段目", + "102600510": "Oversized Sword _ after Paris -- 特大剣_パリィ後", + "102600511": "Oversized Sword _ Paris after second firing -- 特大剣_パリィ後_二撃目", + "102600515": "Oversized Sword _ after strengthening Paris -- 特大剣_強化パリィ後", + "102600516": "Paris Oversized Sword _ after strengthening _ two -- 特大剣_強化パリィ後_二段目", + "102600517": "Paris Oversized Sword _ after strengthening _ Sandanme -- 特大剣_強化パリィ後_三段目", + "102600520": "Oversized Sword _ one handed Dash -- 特大剣_片手ダッシュ", + "102600530": "Oversized Sword _ both hands dash -- 特大剣_両手ダッシュ", + "102600540": "Oversized Sword _ one hand step before -- 特大剣_片手ステップ前", + "102600580": "Oversized Sword _ Two hands before step -- 特大剣_両手ステップ前", + "102600600": "Oversized Sword _ Parigard -- 特大剣_パリィガード", + "102600610": "Oversized Sword _ Behind the transition -- 特大剣_背後遷移", + "102600615": "Oversized Sword _ behind transition _ missed -- 特大剣_背後遷移_空振り", + "102600700": "Oversized Sword _ tread weak -- 特大剣_踏込弱", + "102600701": "Oversized Sword _ Tread strength -- 特大剣_踏込強", + "102600702": "Oversized Sword _ Tread Nagi: first half -- 特大剣_踏込なぎ払い:前半", + "102600780": "Oversized Swords _ blow -- 特大剣_吹っ飛ばし", + "102600790": "Oversized Sword _ directing slams -- 特大剣_演出叩きつけ", + "102601100": "[98] Large Sword of the old dragon _ one-handed entertainment 1 -- 【98】古竜の大剣_片手タメ1", + "102601200": "[98] Large Sword of the old dragon _ two hands usually one -- 【98】古竜の大剣_両手通常1", + "102601210": "[98] Large Sword of the old dragon _ Two hands usually 2 -- 【98】古竜の大剣_両手通常2", + "102601220": "[98] Large Sword of the old dragon _ Two hands usually three -- 【98】古竜の大剣_両手通常3", + "102601300": "[98] Large Sword of the old Dragon _ two-handed entertainment 1 -- 【98】古竜の大剣_両手タメ1", + "102601540": "[98] Great Sword of the old Dragon _ one hand step before -- 【98】古竜の大剣_片手ステップ前", + "102601580": "[98] Sword of the old Dragon _ before both hands step -- 【98】古竜の大剣_両手ステップ前", + "102602100": "[95] Great Sword _ one-handed entertainment 1 -- 【95】グレートソード_片手タメ1", + "102602200": "[95] Great Sword _ two hands usually one -- 【95】グレートソード_両手通常1", + "102602210": "[95] Great Sword _ two hands usually 2 -- 【95】グレートソード_両手通常2", + "102602220": "[95] Great Sword _ two hands usually three -- 【95】グレートソード_両手通常3", + "102602300": "[95] Great Sword _ two-handed entertainment 1 -- 【95】グレートソード_両手タメ1", + "102603100": "[96] Daemon Hatchet _ one-handed entertainment 1 -- 【96】デーモンの鉈_片手タメ1", + "102603300": "[96] Daemon Hatchet _ two-handed entertainment 1 -- 【96】デーモンの鉈_両手タメ1", + "102603540": "[96] Daemon Hatchet _ one hand step before -- 【96】デーモンの鉈_片手ステップ前", + "102603580": "[96] Daemon Hatchet _ both hands step forward -- 【96】デーモンの鉈_両手ステップ前", + "102604300": "[128] Black Knight's oversized sword _ two-handed entertainment 1 -- 【128】黒騎士の特大剣_両手タメ1", + "102700000": "Stabbing Sword _ one hand usually 1 -- 刺剣_片手通常1", + "102700010": "Stabbing Sword _ one hand usually two -- 刺剣_片手通常2", + "102700020": "Stabbing Sword _ one hand usually three -- 刺剣_片手通常3", + "102700030": "Stab Sword _ One handed jump -- 刺剣_片手ジャンプ1", + "102700040": "Stab Sword _ One handed fall loop -- 刺剣_片手落下ループ", + "102700050": "Stab Sword _ one-handed fall landing -- 刺剣_片手落下着地", + "102700100": "Stab Sword _ one-handed entertainment 1 -- 刺剣_片手タメ1", + "102700105": "Stab Sword _ one-handed 1_ maximum -- 刺剣_片手タメ1_最大", + "102700110": "Stab Sword _ one hand Entertainment 2 -- 刺剣_片手タメ2", + "102700115": "Stab Sword _ one-handed 2_ maximum -- 刺剣_片手タメ2_最大", + "102700200": "Stab Sword _ Two hands usually one -- 刺剣_両手通常1", + "102700210": "Stab Sword _ Two hands usually 2 -- 刺剣_両手通常2", + "102700220": "Stab Sword _ Two hands usually three -- 刺剣_両手通常3", + "102700230": "Stabbing Sword _ two-handed jump -- 刺剣_両手ジャンプ1", + "102700240": "Stabbing Sword _ two-handed fall loop -- 刺剣_両手落下ループ", + "102700250": "Stabbing Sword _ two-handed fall landing -- 刺剣_両手落下着地", + "102700300": "Stabbing Sword _ two-handed entertainment 1 -- 刺剣_両手タメ1", + "102700305": "Stabbing Sword _ two-handed 1_ Max -- 刺剣_両手タメ1_最大", + "102700310": "Stabbing Sword _ two-handed Entertainment 2 -- 刺剣_両手タメ2", + "102700315": "Stabbing Sword _ two-handed 2_ Max -- 刺剣_両手タメ2_最大", + "102700400": "Stab Sword _ Left hand -- 刺剣_左手", + "102700410": "Stab Sword _ one hand close -- 刺剣_片手近距離", + "102700420": "Stab Sword _ both hands close -- 刺剣_両手近距離", + "102700430": "Stinging Sword _ guard _ one hand -- 刺剣_ガード_片手", + "102700440": "Stinging Sword _ guard _ both hands -- 刺剣_ガード_両手", + "102700450": "Stabbing Sword _ Paris -- 刺剣_パリィ", + "102700460": "Stabbing Sword __ Guard during attack -- 刺剣__ガード中攻撃", + "102700470": "Stinging Sword _ Large Throw -- 刺剣_大型投げ", + "102700490": "Stabbing Sword _ Falling throw -- 刺剣_落下投げ", + "102700500": "Stinging Sword _ behind -- 刺剣_背後", + "102700505": "Stinging Sword _ reinforced behind -- 刺剣_強化背後", + "102700510": "Stabbing Sword _ after Paris -- 刺剣_パリィ後", + "102700515": "Stabbing Sword _ after strengthening Paris -- 刺剣_強化パリィ後", + "102700516": "Stabbing Sword _ After strengthening Paris _ two -- 刺剣_強化パリィ後_二段目", + "102700520": "Stab Sword _ one handed Dash -- 刺剣_片手ダッシュ", + "102700530": "Stab Sword _ both hands dash -- 刺剣_両手ダッシュ", + "102700540": "Stab Sword _ one hand step before -- 刺剣_片手ステップ前", + "102700580": "Stab Sword _ Two hands before step -- 刺剣_両手ステップ前", + "102700600": "Stabbing Sword _ Parigard -- 刺剣_パリィガード", + "102700610": "Stab Sword _ Behind the transition -- 刺剣_背後遷移", + "102700615": "Stab Sword _ Behind the transition _ missed -- 刺剣_背後遷移_空振り", + "102700720": "Stinging Sword _ Weak -- 刺剣_構え弱", + "102700730": "Stinging Sword _ Strong: Continuous Protrusion -- 刺剣_構え強:連続突", + "102700731": "Stinging Sword _ Strong: Final stage of continuous protrusion -- 刺剣_構え強:連続突最終段", + "102701000": "[119] Mail Breaker _ one hand usually 1 -- 【119】メイルブレイカー_片手通常1", + "102701010": "[119] Mail Breaker _ one hand usually 2 -- 【119】メイルブレイカー_片手通常2", + "102701020": "[119] Mail Breaker _ one hand usually three -- 【119】メイルブレイカー_片手通常3", + "102701030": "[119] Mail Breaker _ one-handed jump 1 -- 【119】メイルブレイカー_片手ジャンプ1", + "102701040": "[119] Mail Breaker _ one-handed fall loop -- 【119】メイルブレイカー_片手落下ループ", + "102701050": "[119] Mail Breaker _ one-handed fall landing -- 【119】メイルブレイカー_片手落下着地", + "102701100": "[119] Mail Breaker _ one-handed entertainment 1 -- 【119】メイルブレイカー_片手タメ1", + "102701110": "[119] Mail Breaker _ one-handed Entertainment 2 -- 【119】メイルブレイカー_片手タメ2", + "102701200": "[119] Mail Breaker _ both hands usually one -- 【119】メイルブレイカー_両手通常1", + "102701210": "[119] Mail Breaker _ Two hands usually 2 -- 【119】メイルブレイカー_両手通常2", + "102701220": "[119] Mail Breaker _ Two hands usually three -- 【119】メイルブレイカー_両手通常3", + "102701230": "[119] Mail Breaker _ two-handed jump 1 -- 【119】メイルブレイカー_両手ジャンプ1", + "102701240": "[119] Mail Breaker _ Both hands Fall loop -- 【119】メイルブレイカー_両手落下ループ", + "102701250": "[119] Mail Breaker _ two-handed fall landing -- 【119】メイルブレイカー_両手落下着地", + "102701300": "[119] Mail Breaker _ two-handed entertainment 1 -- 【119】メイルブレイカー_両手タメ1", + "102701310": "[119] Mail Breaker _ two-handed Entertainment 2 -- 【119】メイルブレイカー_両手タメ2", + "102701400": "[119] Mail Breaker _ left hand -- 【119】メイルブレイカー_左手", + "102701410": "[119] Mail Breaker _ one hand close -- 【119】メイルブレイカー_片手近距離", + "102701420": "[119] Mail Breaker _ both hands close -- 【119】メイルブレイカー_両手近距離", + "102701430": "[119] Mail Breaker _ guard _ one hand -- 【119】メイルブレイカー_ガード_片手", + "102701440": "[119] Mail Breaker _ both hands -- 【119】メイルブレイカー_ガード_両手", + "102701450": "[119] Mail Breaker _ Paris -- 【119】メイルブレイカー_パリィ", + "102701460": "[119] Mail breaker __ Guard during attack -- 【119】メイルブレイカー__ガード中攻撃", + "102701490": "[119] Mail Breaker _ drop Throw -- 【119】メイルブレイカー_落下投げ", + "102701500": "[119] Mail Breaker _ behind -- 【119】メイルブレイカー_背後", + "102701505": "[119] Mail Breaker _ Reinforced behind -- 【119】メイルブレイカー_強化背後", + "102701510": "[119] Mail Breaker _ after Paris -- 【119】メイルブレイカー_パリィ後", + "102701515": "[119] Mail Breaker _ after strengthening Paris -- 【119】メイルブレイカー_強化パリィ後", + "102701516": "[119] Mail Breaker _ After strengthening Paris _ two -- 【119】メイルブレイカー_強化パリィ後_二段目", + "102701520": "[119] Mail Breaker _ one-handed Dash -- 【119】メイルブレイカー_片手ダッシュ", + "102701530": "[119] Mail Breaker _ both hands dash -- 【119】メイルブレイカー_両手ダッシュ", + "102701540": "[119] Mail Breaker _ one hand step before -- 【119】メイルブレイカー_片手ステップ前", + "102701580": "[119] Mail Breaker _ before both hands step -- 【119】メイルブレイカー_両手ステップ前", + "102701600": "[119] Mail Breaker _ Parigard -- 【119】メイルブレイカー_パリィガード", + "102702100": "[113] Estoc _ one-handed entertainment 1 -- 【113】エストック_片手タメ1", + "102702110": "[113] Estoc _ one-handed Entertainment 2 -- 【113】エストック_片手タメ2", + "102702300": "[113] Estoc _ two-handed entertainment 1 -- 【113】エストック_両手タメ1", + "102702310": "[113] Estoc _ two-handed Entertainment 2 -- 【113】エストック_両手タメ2", + "102703000": "[114] Belka _ one-handed usually 1 -- 【114】ベルカ_片手通常1", + "102703010": "[114] Belka _ one hand usually two -- 【114】ベルカ_片手通常2", + "102703020": "[114] Belka _ one hand usually three -- 【114】ベルカ_片手通常3", + "102703030": "[114] Belka _ one-handed jump 1 -- 【114】ベルカ_片手ジャンプ1", + "102703040": "[114] Belka _ one-handed fall loop -- 【114】ベルカ_片手落下ループ", + "102703050": "[114] Belka _ one-handed fall landing -- 【114】ベルカ_片手落下着地", + "102703100": "[114] Belka _ one-handed entertainment 1 -- 【114】ベルカ_片手タメ1", + "102703110": "[114] Belka _ one-handed Entertainment 2 -- 【114】ベルカ_片手タメ2", + "102703200": "[114] Belka _ Two hands usually one -- 【114】ベルカ_両手通常1", + "102703210": "[114] Belka _ Two hands usually 2 -- 【114】ベルカ_両手通常2", + "102703220": "[114] Belka _ Two hands usually three -- 【114】ベルカ_両手通常3", + "102703230": "[114] Belka _ two-handed jump 1 -- 【114】ベルカ_両手ジャンプ1", + "102703240": "[114] Belka _ two-handed fall loop -- 【114】ベルカ_両手落下ループ", + "102703250": "[114] Belka _ two-handed fall landing -- 【114】ベルカ_両手落下着地", + "102703300": "[114] Belka _ two-handed entertainment 1 -- 【114】ベルカ_両手タメ1", + "102703310": "[114] Belka _ two-handed Entertainment 2 -- 【114】ベルカ_両手タメ2", + "102703400": "[114] Belka _ left Hand -- 【114】ベルカ_左手", + "102703410": "[114] Belka _ one hand close -- 【114】ベルカ_片手近距離", + "102703420": "[114] Belka _ both hands close -- 【114】ベルカ_両手近距離", + "102703430": "[114] Belka _ guards _ one hand -- 【114】ベルカ_ガード_片手", + "102703440": "[114] Belka _ guards _ both hands -- 【114】ベルカ_ガード_両手", + "102703450": "[114] Belka _ Paris -- 【114】ベルカ_パリィ", + "102703460": "[114] Belka __ Attack during guard -- 【114】ベルカ__ガード中攻撃", + "102703490": "[114] Belka _ Falling throw -- 【114】ベルカ_落下投げ", + "102703500": "[114] Belka _ behind -- 【114】ベルカ_背後", + "102703505": "[114] Belka _ Strengthening behind -- 【114】ベルカ_強化背後", + "102703510": "[114] Belka _ after Paris -- 【114】ベルカ_パリィ後", + "102703515": "[114] Belka _ after strengthening Paris. -- 【114】ベルカ_強化パリィ後", + "102703516": "[114] Belka _ Paris after strengthening _ two -- 【114】ベルカ_強化パリィ後_二段目", + "102703520": "[114] Belka _ one-handed Dash -- 【114】ベルカ_片手ダッシュ", + "102703530": "[114] Belka _ both hands dash -- 【114】ベルカ_両手ダッシュ", + "102703540": "[114] Belka _ one-handed step before -- 【114】ベルカ_片手ステップ前", + "102703580": "[114] Belka _ two-handed steps ago -- 【114】ベルカ_両手ステップ前", + "102703600": "[114] Belka _ Parigard -- 【114】ベルカ_パリィガード", + "102800000": "Song Sword _ one hand usually 1 -- 曲剣_片手通常1", + "102800010": "Song Sword _ one hand usually two -- 曲剣_片手通常2", + "102800020": "Song Sword _ one hand usually three -- 曲剣_片手通常3", + "102800030": "Song Sword _ One handed jump -- 曲剣_片手ジャンプ1", + "102800040": "Song Sword _ One Handed fall loop -- 曲剣_片手落下ループ", + "102800050": "Song Sword _ one-handed fall landing -- 曲剣_片手落下着地", + "102800100": "Song Sword _ one-handed entertainment 1 -- 曲剣_片手タメ1", + "102800105": "Song Sword _ one-handed 1_ Max -- 曲剣_片手タメ1_最大", + "102800110": "Song Sword _ one hand Entertainment 2 -- 曲剣_片手タメ2", + "102800115": "Song Sword _ one-handed 2_ Max -- 曲剣_片手タメ2_最大", + "102800200": "Song Sword _ Two Hands usually one -- 曲剣_両手通常1", + "102800210": "Song Sword _ Two Hands usually 2 -- 曲剣_両手通常2", + "102800220": "Song Sword _ Two Hands usually three -- 曲剣_両手通常3", + "102800230": "Song Sword _ two-handed jump 1 -- 曲剣_両手ジャンプ1", + "102800240": "Song Sword _ two-handed fall loop -- 曲剣_両手落下ループ", + "102800250": "Song Sword _ two-handed fall landing -- 曲剣_両手落下着地", + "102800300": "Song Sword _ two-handed entertainment 1 -- 曲剣_両手タメ1", + "102800305": "Song Sword _ two-handed 1_ Max -- 曲剣_両手タメ1_最大", + "102800310": "Song Sword _ two-handed Entertainment 2 -- 曲剣_両手タメ2", + "102800315": "Song Sword _ two-handed 2_ Max -- 曲剣_両手タメ2_最大", + "102800400": "Song Sword _ Left Hand -- 曲剣_左手", + "102800410": "Song Sword _ one hand close -- 曲剣_片手近距離", + "102800420": "Song Sword _ both hands close -- 曲剣_両手近距離", + "102800430": "Song Sword _ guard _ one hand -- 曲剣_ガード_片手", + "102800440": "Song Sword _ guard _ both hands -- 曲剣_ガード_両手", + "102800450": "Song Sword _ Paris -- 曲剣_パリィ", + "102800470": "Song Sword _ Large Throw -- 曲剣_大型投げ", + "102800490": "Song Sword _ Falling Throw -- 曲剣_落下投げ", + "102800500": "Behind the song Sword -- 曲剣_背後", + "102800505": "Song Sword _ Strengthening behind -- 曲剣_強化背後", + "102800510": "Song Sword _ after Paris -- 曲剣_パリィ後", + "102800515": "Song Sword _ after strengthening Paris -- 曲剣_強化パリィ後", + "102800516": "Paris Song Sword _ after strengthening _ two -- 曲剣_強化パリィ後_二段目", + "102800520": "Song Sword _ one handed Dash -- 曲剣_片手ダッシュ", + "102800530": "Song Sword _ both hands dash -- 曲剣_両手ダッシュ", + "102800540": "Song Sword _ one hand step before -- 曲剣_片手ステップ前", + "102800580": "Song Sword _ Two Hands before step -- 曲剣_両手ステップ前", + "102800600": "Song Sword _ Parigard -- 曲剣_パリィガード", + "102800610": "Song Sword _ Behind the transition -- 曲剣_背後遷移", + "102800615": "Song Sword _ Behind the transition _ missed -- 曲剣_背後遷移_空振り", + "102802000": "[100] Song of Evil Sword _ one hand usually 1 -- 【100】死霊の曲剣_片手通常1", + "102802010": "[100] Song of Evil Sword _ one hand usually two -- 【100】死霊の曲剣_片手通常2", + "102802020": "[100] Song of Evil Sword _ one hand usually three -- 【100】死霊の曲剣_片手通常3", + "102802030": "[100] Song of Evil sword _ one-handed jump 1 -- 【100】死霊の曲剣_片手ジャンプ1", + "102802040": "[100] Song of Evil sword _ one-handed fall loop -- 【100】死霊の曲剣_片手落下ループ", + "102802050": "[100] Song of Evil sword _ one-handed fall landing -- 【100】死霊の曲剣_片手落下着地", + "102802100": "[100] Song of Evil sword _ one-handed entertainment 1 -- 【100】死霊の曲剣_片手タメ1", + "102802110": "[100] Song of the Evil sword _ one-handed Entertainment 2 -- 【100】死霊の曲剣_片手タメ2", + "102802200": "[100] Song of Evil sword _ hands usually one -- 【100】死霊の曲剣_両手通常1", + "102802210": "[100] Song of Evil sword _ two hands usually 2 -- 【100】死霊の曲剣_両手通常2", + "102802220": "[100] Song of Evil sword _ hands usually three -- 【100】死霊の曲剣_両手通常3", + "102802230": "[100] Song of Evil sword _ two-handed jump 1 -- 【100】死霊の曲剣_両手ジャンプ1", + "102802240": "[100] Song of Evil sword _ two-handed fall loop -- 【100】死霊の曲剣_両手落下ループ", + "102802250": "[100] Song of the Evil Sword _ both hands fall landing -- 【100】死霊の曲剣_両手落下着地", + "102802300": "[100] Song of Evil sword _ two-handed entertainment 1 -- 【100】死霊の曲剣_両手タメ1", + "102802310": "[100] Song of Evil sword _ two-handed Entertainment 2 -- 【100】死霊の曲剣_両手タメ2", + "102802400": "[100] Song of Evil Sword _ left hand -- 【100】死霊の曲剣_左手", + "102802410": "[100] Song of Evil Sword _ one hand short distance -- 【100】死霊の曲剣_片手近距離", + "102802420": "[100] Song of Evil Sword _ both hands close range -- 【100】死霊の曲剣_両手近距離", + "102802430": "[100] Song of Evil Sword _ guard _ one hand -- 【100】死霊の曲剣_ガード_片手", + "102802440": "[100] Song of Evil Sword _ guard _ both hands -- 【100】死霊の曲剣_ガード_両手", + "102802450": "[100] Song of the Evil Sword _ Paris -- 【100】死霊の曲剣_パリィ", + "102802490": "[100] Song of the Evil sword _ falling Throw -- 【100】死霊の曲剣_落下投げ", + "102802500": "[100] Song of the Evil sword _ behind -- 【100】死霊の曲剣_背後", + "102802505": "[100] Song of the Evil sword _ strengthening behind -- 【100】死霊の曲剣_強化背後", + "102802510": "[100] Song of the Evil sword _ after Paris -- 【100】死霊の曲剣_パリィ後", + "102802515": "[100] Song of the Evil sword _ after strengthening Paris -- 【100】死霊の曲剣_強化パリィ後", + "102802516": "[100] Song of the Evil sword _ after strengthening Paris _ two -- 【100】死霊の曲剣_強化パリィ後_二段目", + "102802520": "[100] Song of Evil Sword _ one hand dash -- 【100】死霊の曲剣_片手ダッシュ", + "102802530": "[100] Song of Evil Sword _ both hands dash -- 【100】死霊の曲剣_両手ダッシュ", + "102802540": "[100] Song of the Evil Sword _ one hand step before -- 【100】死霊の曲剣_片手ステップ前", + "102802580": "[100] Song of the Evil Sword _ hands before step -- 【100】死霊の曲剣_両手ステップ前", + "102802600": "[100] Song of the Evil Sword _ Parigard -- 【100】死霊の曲剣_パリィガード", + "102803000": "[101] Elemia _ one hand usually 1 -- 【101】エレーミア_片手通常1", + "102803010": "[101] Elemia _ one hand usually two -- 【101】エレーミア_片手通常2", + "102803020": "[101] Elemia _ one hand usually three -- 【101】エレーミア_片手通常3", + "102803030": "[101] Elemia _ one-handed jump 1 -- 【101】エレーミア_片手ジャンプ1", + "102803040": "[101] Elemia _ one-handed fall loop -- 【101】エレーミア_片手落下ループ", + "102803050": "[101] Elemia _ one-handed fall landing -- 【101】エレーミア_片手落下着地", + "102803100": "[101] Elemia _ one-handed entertainment 1 -- 【101】エレーミア_片手タメ1", + "102803110": "[101] Elemia _ one-handed Entertainment 2 -- 【101】エレーミア_片手タメ2", + "102803200": "[101] Elemia _ Two hands usually one -- 【101】エレーミア_両手通常1", + "102803210": "[101] Elemia _ Two hands usually 2 -- 【101】エレーミア_両手通常2", + "102803220": "[101] Elemia _ Two hands usually three -- 【101】エレーミア_両手通常3", + "102803230": "[101] Elemia _ two-handed jump 1 -- 【101】エレーミア_両手ジャンプ1", + "102803240": "[101] Elemia _ two-handed fall loop -- 【101】エレーミア_両手落下ループ", + "102803250": "[101] Elemia _ two-handed fall landing -- 【101】エレーミア_両手落下着地", + "102803300": "[101] Elemia _ two-handed entertainment 1 -- 【101】エレーミア_両手タメ1", + "102803310": "[101] Elemia _ two-handed Entertainment 2 -- 【101】エレーミア_両手タメ2", + "102803400": "[101] Elemia _ left Hand -- 【101】エレーミア_左手", + "102803410": "[101] Elemia _ one hand close -- 【101】エレーミア_片手近距離", + "102803420": "[101] Elemia _ both hands close -- 【101】エレーミア_両手近距離", + "102803430": "[101] Elemia _ guards _ one hand -- 【101】エレーミア_ガード_片手", + "102803440": "[101] Elemia _ guards _ both hands -- 【101】エレーミア_ガード_両手", + "102803450": "[101] Elemia _ Paris -- 【101】エレーミア_パリィ", + "102803490": "[101] Elemia _ Falling throw -- 【101】エレーミア_落下投げ", + "102803500": "[101] Elemia _ behind -- 【101】エレーミア_背後", + "102803505": "[101] Elemia _ strengthening behind -- 【101】エレーミア_強化背後", + "102803510": "[101] Elemia _ after Paris -- 【101】エレーミア_パリィ後", + "102803515": "[101] Elemia _ after strengthening Paris -- 【101】エレーミア_強化パリィ後", + "102803516": "[101] Elemia _ Paris after strengthening _ two -- 【101】エレーミア_強化パリィ後_二段目", + "102803520": "[101] Elemia _ one-handed Dash -- 【101】エレーミア_片手ダッシュ", + "102803530": "[101] Elemia _ both hands dash -- 【101】エレーミア_両手ダッシュ", + "102803540": "[101] Elemia _ one-handed step before -- 【101】エレーミア_片手ステップ前", + "102803580": "[101] Elemia _ two-handed steps ago -- 【101】エレーミア_両手ステップ前", + "102803600": "[101] Elemia _ Parigard -- 【101】エレーミア_パリィガード", + "102804000": "[56] Krag _ one-handed usually 1 -- 【56】クラーグ_片手通常1", + "102804010": "[56] Krag _ one hand usually two -- 【56】クラーグ_片手通常2", + "102804020": "[56] Krag _ one hand usually three -- 【56】クラーグ_片手通常3", + "102804030": "[56] Krag _ one-handed jump 1 -- 【56】クラーグ_片手ジャンプ1", + "102804040": "[56] Krag _ one-handed fall loop -- 【56】クラーグ_片手落下ループ", + "102804050": "[56] Krag _ one-handed fall landing -- 【56】クラーグ_片手落下着地", + "102804100": "[56] Krag _ one-handed entertainment 1 -- 【56】クラーグ_片手タメ1", + "102804110": "[56] Krag _ one-handed Entertainment 2 -- 【56】クラーグ_片手タメ2", + "102804200": "[56] Krag _ Two hands usually one -- 【56】クラーグ_両手通常1", + "102804210": "[56] Krag _ Two hands usually 2 -- 【56】クラーグ_両手通常2", + "102804220": "[56] Krag _ Two hands usually three -- 【56】クラーグ_両手通常3", + "102804230": "[56] Krag _ two-handed jump 1 -- 【56】クラーグ_両手ジャンプ1", + "102804240": "[56] Krag _ two-handed fall loop -- 【56】クラーグ_両手落下ループ", + "102804250": "[56] Krag _ two-handed fall landing -- 【56】クラーグ_両手落下着地", + "102804300": "[56] Krag _ two-handed entertainment 1 -- 【56】クラーグ_両手タメ1", + "102804310": "[56] Krag _ two-handed Entertainment 2 -- 【56】クラーグ_両手タメ2", + "102804400": "[56] Krag _ Left Hand -- 【56】クラーグ_左手", + "102804410": "[56] Krag _ one hand close -- 【56】クラーグ_片手近距離", + "102804420": "[56] Krag _ both hands close -- 【56】クラーグ_両手近距離", + "102804430": "[56] Krag _ guards _ one hand -- 【56】クラーグ_ガード_片手", + "102804440": "[56] Krag _ guards _ both hands -- 【56】クラーグ_ガード_両手", + "102804450": "[56] Krag _ Paris -- 【56】クラーグ_パリィ", + "102804490": "[56] Krag _ Falling throw -- 【56】クラーグ_落下投げ", + "102804500": "[56] Krag _ behind -- 【56】クラーグ_背後", + "102804505": "[56] Krag _ Strengthening behind -- 【56】クラーグ_強化背後", + "102804510": "[56] Krag _ after Paris -- 【56】クラーグ_パリィ後", + "102804515": "[56] Krag _ Paris after strengthening -- 【56】クラーグ_強化パリィ後", + "102804516": "[56] Krag _ Paris after strengthening _ two -- 【56】クラーグ_強化パリィ後_二段目", + "102804520": "[56] Krag _ one-handed Dash -- 【56】クラーグ_片手ダッシュ", + "102804530": "[56] Krag _ both hands dash -- 【56】クラーグ_両手ダッシュ", + "102804540": "[56] Krag _ one-handed step before -- 【56】クラーグ_片手ステップ前", + "102804580": "[56] Krag _ two-handed steps ago -- 【56】クラーグ_両手ステップ前", + "102804600": "[56] Krag _ Parigard -- 【56】クラーグ_パリィガード", + "102805000": "[132] Kieran Song Sword _ one hand usually 1 -- 【132】キアランの曲剣_片手通常1", + "102805010": "[132] Kieran Song Sword _ one hand usually two -- 【132】キアランの曲剣_片手通常2", + "102805020": "[132] Kieran Song Sword _ one hand usually three -- 【132】キアランの曲剣_片手通常3", + "102805030": "[132] Kieran Song Sword _ one-handed jump 1 -- 【132】キアランの曲剣_片手ジャンプ1", + "102805040": "[132] Kieran Song Sword _ one-handed fall loop -- 【132】キアランの曲剣_片手落下ループ", + "102805050": "[132] Kieran Song Sword _ one-handed fall landing -- 【132】キアランの曲剣_片手落下着地", + "102805100": "[132] Kieran Song Sword _ one-handed entertainment 1 -- 【132】キアランの曲剣_片手タメ1", + "102805110": "[132] Kieran Song Sword _ one-handed Entertainment 2 -- 【132】キアランの曲剣_片手タメ2", + "102805200": "[132] Kieran Song Sword _ hands usually one -- 【132】キアランの曲剣_両手通常1", + "102805210": "[132] Kieran Song Sword _ Two Hands usually 2 -- 【132】キアランの曲剣_両手通常2", + "102805220": "[132] Kieran Song Sword _ Two Hands usually three -- 【132】キアランの曲剣_両手通常3", + "102805230": "[132] Kieran Song Sword _ two-handed jump 1 -- 【132】キアランの曲剣_両手ジャンプ1", + "102805240": "[132] Kieran Song Sword _ two-handed fall loop -- 【132】キアランの曲剣_両手落下ループ", + "102805250": "[132] Kieran Song Sword _ Both Hands fall landing -- 【132】キアランの曲剣_両手落下着地", + "102805300": "[132] Kieran Song Sword _ two-handed entertainment 1 -- 【132】キアランの曲剣_両手タメ1", + "102805310": "[132] Kieran Song Sword _ two-handed Entertainment 2 -- 【132】キアランの曲剣_両手タメ2", + "102805311": "[132] Kieran Song Sword _ two-handed 2_ two -- 【132】キアランの曲剣_両手タメ2_二段目", + "102805400": "[132] Kieran Song Sword _ left hand _ usually -- 【132】キアランの曲剣_左手_通常", + "102805401": "[132] Kieran Song Sword _ The Left hand _ the entertainment -- 【132】キアランの曲剣_左手_タメ", + "102805410": "[132] Kieran Song Sword _ one hand short distance -- 【132】キアランの曲剣_片手近距離", + "102805420": "[132] Kieran Song Sword _ both hands close range -- 【132】キアランの曲剣_両手近距離", + "102805430": "[132] Kieran Song Sword _ guard _ one hand -- 【132】キアランの曲剣_ガード_片手", + "102805440": "[132] Kieran Song Sword _ guard _ both hands -- 【132】キアランの曲剣_ガード_両手", + "102805450": "[132] Kieran Song Sword _ Paris -- 【132】キアランの曲剣_パリィ", + "102805490": "[132] Kieran Song Sword _ Falling Throw -- 【132】キアランの曲剣_落下投げ", + "102805500": "[132] Kieran Song Sword _ behind -- 【132】キアランの曲剣_背後", + "102805505": "【 132 】 Kieran Song Sword _ reinforced behind -- 【132】キアランの曲剣_強化背後", + "102805510": "[132] Kieran Song Sword _ after Paris -- 【132】キアランの曲剣_パリィ後", + "102805515": "[132] Kieran Song Sword _ after strengthening Paris -- 【132】キアランの曲剣_強化パリィ後", + "102805516": "[132] Kieran Song Sword _ after strengthening Paris _ two -- 【132】キアランの曲剣_強化パリィ後_二段目", + "102805520": "[132] Kieran Song Sword _ one-handed Dash -- 【132】キアランの曲剣_片手ダッシュ", + "102805530": "[132] Kieran Song Sword _ both hands dash -- 【132】キアランの曲剣_両手ダッシュ", + "102805540": "[132] Kieran Song Sword _ one hand step before -- 【132】キアランの曲剣_片手ステップ前", + "102805580": "[132] Kieran Song Sword _ Hands before step -- 【132】キアランの曲剣_両手ステップ前", + "102805600": "[132] Kieran Song Sword _ Parigard -- 【132】キアランの曲剣_パリィガード", + "102806000": "[137] Song Sword Twin Sword _ one hand usually 1 -- 【137】曲剣双剣_片手通常1", + "102806010": "[137] Song Sword Twin Sword _ one hand usually 2 -- 【137】曲剣双剣_片手通常2", + "102806020": "[137] Song Sword Twin Sword _ one hand usually three -- 【137】曲剣双剣_片手通常3", + "102806030": "[137] Song Sword Twin Sword _ one-handed jump 1 -- 【137】曲剣双剣_片手ジャンプ1", + "102806040": "[137] Song Sword Twin Sword _ one-handed fall loop -- 【137】曲剣双剣_片手落下ループ", + "102806050": "[137] Song Sword Twin Sword _ one-handed fall landing -- 【137】曲剣双剣_片手落下着地", + "102806100": "[137] Song Sword Twin Sword _ one-handed entertainment 1 -- 【137】曲剣双剣_片手タメ1", + "102806105": "[137] Song Sword bi-one-handed 1_ Max -- 【137】曲剣双剣_片手タメ1_最大", + "102806110": "[137] Song Sword Twin _ one-handed Entertainment 2 -- 【137】曲剣双剣_片手タメ2", + "102806115": "[137] Song Sword bi-one-handed 2_ Max -- 【137】曲剣双剣_片手タメ2_最大", + "102806400": "[137] Song Sword Twin Sword _ left hand -- 【137】曲剣双剣_左手", + "102806470": "[137] Song Sword Twin Sword _ large Throw -- 【137】曲剣双剣_大型投げ", + "102806490": "[137] Song Sword Twin Sword _ Fall Throw -- 【137】曲剣双剣_落下投げ", + "102806500": "[137] Song Sword Twin Sword _ behind -- 【137】曲剣双剣_背後", + "102806505": "[137] Song Sword Twin Sword _ behind the reinforcement -- 【137】曲剣双剣_強化背後", + "102806510": "[137] Song Sword Twin Sword _ after Paris -- 【137】曲剣双剣_パリィ後", + "102806515": "【 137 】 Song Sword Twin Sword _ after strengthening Paris -- 【137】曲剣双剣_強化パリィ後", + "102806516": "[137] Song Sword Twin Sword _ after strengthening Paris _ two -- 【137】曲剣双剣_強化パリィ後_二段目", + "102806520": "[137] Song Sword Twin Sword _ one-handed Dash -- 【137】曲剣双剣_片手ダッシュ", + "102806540": "[137] Song Sword Twin Sword _ one hand step before -- 【137】曲剣双剣_片手ステップ前", + "102806615": "[137] Song Sword bi-Sword _ behind the transition _ missed -- 【137】曲剣双剣_背後遷移_空振り", + "102806620": "[137] Song Sword bi-Sword _ 1_ left hand Combo -- 【137】曲剣双剣_双剣左コンボ1_右手", + "102806621": "[137] Song Sword bi-Sword _ 1_ left hand Combo -- 【137】曲剣双剣_双剣左コンボ1_左手", + "102806630": "[137] Song Sword bi-Sword _ 2_ left hand Combo -- 【137】曲剣双剣_双剣左コンボ2_右手", + "102806631": "[137] Song Sword bi-Sword _ 2_ left hand Combo -- 【137】曲剣双剣_双剣左コンボ2_左手", + "102806640": "[137] Song Sword bi-Sword _ 3_ left hand Combo -- 【137】曲剣双剣_双剣左コンボ3_右手", + "102806641": "[137] Song Sword bi-Sword _ 3_ left hand Combo -- 【137】曲剣双剣_双剣左コンボ3_左手", + "102806740": "[137] Song Sword Twin Sword (right hand) -- 【137】曲剣双剣_回転中(右手)", + "102806741": "[137] Song Sword Twin Sword _ spinning (left hand) -- 【137】曲剣双剣_回転中(左手)", + "102806744": "[137] Song Sword Twin Sword _ Rotation strength (right hand) -- 【137】曲剣双剣_回転強(右手)", + "102806745": "[137] Song Sword Twin Sword _ rotation strength (left hand) -- 【137】曲剣双剣_回転強(左手)", + "102806750": "[137] Song Sword Twin Sword _ Double Sword dash (right hand) -- 【137】曲剣双剣_双剣ダッシュ(右手)", + "102806751": "[137] Song Sword Twin Sword (left hand) -- 【137】曲剣双剣_双剣ダッシュ(左手)", + "102806760": "[137] Song Sword Twin Sword (right hand) -- 【137】曲剣双剣_双剣ステップ前(右手)", + "102806761": "[137] Song Sword Twin Sword (left hand) -- 【137】曲剣双剣_双剣ステップ前(左手)", + "102901000": "[89] Each other sword _ one hand usually 1 -- 【89】居合い刀_片手通常1", + "102901010": "[89] Each other sword _ one hand usually two -- 【89】居合い刀_片手通常2", + "102901020": "[89] Each other sword _ one hand usually three -- 【89】居合い刀_片手通常3", + "102901030": "[89] Each other sword _ one-handed jump 1 -- 【89】居合い刀_片手ジャンプ1", + "102901040": "[89] Each other sword _ one-handed fall loop -- 【89】居合い刀_片手落下ループ", + "102901050": "[89] Each other sword _ one-handed fall landing -- 【89】居合い刀_片手落下着地", + "102901100": "[89] Each other sword _ one-handed entertainment 1 -- 【89】居合い刀_片手タメ1", + "102901110": "[89] Each other sword _ one-handed Entertainment 2 -- 【89】居合い刀_片手タメ2", + "102901200": "[89] Each other sword _ two hands usually 1 -- 【89】居合い刀_両手通常1", + "102901210": "[89] Each other sword _ two hands usually 2 -- 【89】居合い刀_両手通常2", + "102901220": "[89] Each other sword _ two hands usually three -- 【89】居合い刀_両手通常3", + "102901230": "[89] Each other sword _ two-handed jump 1 -- 【89】居合い刀_両手ジャンプ1", + "102901240": "[89] Each other sword _ two-handed fall loop -- 【89】居合い刀_両手落下ループ", + "102901250": "[89] Each other sword _ two-handed fall landing -- 【89】居合い刀_両手落下着地", + "102901300": "[89] Each other sword _ two-handed entertainment 1 -- 【89】居合い刀_両手タメ1", + "102901310": "[89] Each other sword _ two-handed Entertainment 2 -- 【89】居合い刀_両手タメ2", + "102901400": "[89] Each other sword _ left hand -- 【89】居合い刀_左手", + "102901410": "[89] Each other sword _ one hand close -- 【89】居合い刀_片手近距離", + "102901420": "[89] Each other sword _ both hands close -- 【89】居合い刀_両手近距離", + "102901430": "[89] Each other Sword _ guard _ one hand -- 【89】居合い刀_ガード_片手", + "102901440": "[89] Each other Sword _ guard _ both hands -- 【89】居合い刀_ガード_両手", + "102901450": "[89] Each other sword _ Paris -- 【89】居合い刀_パリィ", + "102901490": "[89] Each other sword _ falling throw -- 【89】居合い刀_落下投げ", + "102901500": "[89] Each other sword _ behind -- 【89】居合い刀_背後", + "102901505": "[89] Each other sword _ reinforced behind -- 【89】居合い刀_強化背後", + "102901510": "[89] Each other sword _ after Paris -- 【89】居合い刀_パリィ後", + "102901515": "[89] Each other sword _ after strengthening Paris -- 【89】居合い刀_強化パリィ後", + "102901516": "[89] Each other swords _ strengthened Paris _ two -- 【89】居合い刀_強化パリィ後_二段目", + "102901520": "[89] Each other sword _ one-handed Dash -- 【89】居合い刀_片手ダッシュ", + "102901530": "[89] Each other sword _ both hands dash -- 【89】居合い刀_両手ダッシュ", + "102901540": "[89] Each other sword _ one hand step before -- 【89】居合い刀_片手ステップ前", + "102901580": "[89] Each other sword _ two hands before step -- 【89】居合い刀_両手ステップ前", + "102901600": "[89] Each other sword _ Parigard -- 【89】居合い刀_パリィガード", + "102902100": "[90] Shigurui Sword _ one-handed Entertainment 2 -- 【90】シグルイ刀_片手タメ2", + "102902105": "[90] Shigurui Sword _ one-handed 2_ maximum -- 【90】シグルイ刀_片手タメ2_最大", + "102902110": "[90] Shigurui Sword _ one-handed entertainment 1 -- 【90】シグルイ刀_片手タメ1", + "102902115": "[90] Shigurui Sword _ one-handed 1_ maximum -- 【90】シグルイ刀_片手タメ1_最大", + "102902300": "[90] Shigurui Sword _ two-handed entertainment 1 -- 【90】シグルイ刀_両手タメ1", + "102902305": "[90] Shigurui Sword _ two-handed 1_ maximum -- 【90】シグルイ刀_両手タメ1_最大", + "102902310": "[90] Shigurui Sword _ two-handed Entertainment 2 -- 【90】シグルイ刀_両手タメ2", + "102902315": "[90] Shigurui Sword _ two-handed 2_ maximum -- 【90】シグルイ刀_両手タメ2_最大", + "103000000": "Axe _ one hand usually 1 -- 斧_片手通常1", + "103000010": "Axe _ one hand usually two -- 斧_片手通常2", + "103000020": "Axe _ one hand usually three -- 斧_片手通常3", + "103000030": "Axe _ One handed jump -- 斧_片手ジャンプ1", + "103000040": "Axe _ One handed fall loop -- 斧_片手落下ループ", + "103000050": "Ax _ one-handed fall landing -- 斧_片手落下着地", + "103000100": "Axe _ one-handed entertainment 1 -- 斧_片手タメ1", + "103000105": "Axe _ one-handed 1_ maximum -- 斧_片手タメ1_最大", + "103000110": "Axe _ one-handed Entertainment 2 -- 斧_片手タメ2", + "103000115": "Axe _ one-handed 2_ maximum -- 斧_片手タメ2_最大", + "103000200": "Axe _ Two hands usually one -- 斧_両手通常1", + "103000210": "Axe _ Two Hands usually -- 斧_両手通常2", + "103000220": "Axe _ Two hands usually three -- 斧_両手通常3", + "103000230": "Axe _ two-handed jump 1 -- 斧_両手ジャンプ1", + "103000240": "Axe _ two-handed fall loop -- 斧_両手落下ループ", + "103000250": "Axe _ two-handed fall landing -- 斧_両手落下着地", + "103000300": "Axe _ two-handed entertainment 1 -- 斧_両手タメ1", + "103000305": "Axe _ two-handed 1_ Max -- 斧_両手タメ1_最大", + "103000310": "Axe _ two-handed Entertainment 2 -- 斧_両手タメ2", + "103000315": "Axe _ two-handed 2_ Max -- 斧_両手タメ2_最大", + "103000400": "Axe _ Left Hand -- 斧_左手", + "103000410": "Axe _ one hand close -- 斧_片手近距離", + "103000420": "Axe _ Both hands close -- 斧_両手近距離", + "103000430": "Axe _ guard _ one hand -- 斧_ガード_片手", + "103000440": "Axe _ guards _ both hands -- 斧_ガード_両手", + "103000450": "Axe _ Paris -- 斧_パリィ", + "103000470": "Axe _ Large Throw -- 斧_大型投げ", + "103000490": "Axe _ Falling Throw -- 斧_落下投げ", + "103000500": "Behind the axe -- 斧_背後", + "103000501": "Behind the ax _ the second hammer -- 斧_背後_二撃目", + "103000505": "Axe _ Reinforced behind -- 斧_強化背後", + "103000506": "Axe _ Strengthens behind _ Two -- 斧_強化背後_二段目", + "103000510": "Ax _ after Paris -- 斧_パリィ後", + "103000511": "Ax _ Paris _ two-firing eyes -- 斧_パリィ_二撃目", + "103000515": "Paris Axe _ After strengthening -- 斧_強化パリィ後", + "103000516": "Ax _ After strengthening Paris _ two -- 斧_強化パリィ後_二段目", + "103000517": "Ax _ After strengthening Paris _ Sandanme -- 斧_強化パリィ後_三段目", + "103000520": "Axe _ One handed Dash -- 斧_片手ダッシュ", + "103000530": "Axe _ Both hands dash -- 斧_両手ダッシュ", + "103000540": "Axe _ one hand step before -- 斧_片手ステップ前", + "103000580": "Axe _ Hands before step -- 斧_両手ステップ前", + "103000600": "Axe _ Parigard -- 斧_パリィガード", + "103000610": "Ax _ Behind the transition -- 斧_背後遷移", + "103000615": "Ax _ Behind Transition _ missed -- 斧_背後遷移_空振り", + "103000620": "Axe _ the directing slams -- 斧_演出叩きつけ", + "103000700": "Axe _ War Cry _ Shockwave -- 斧_ウォークライ_衝撃波", + "103000800": "Axe _ War Cry _ one-handed entertainment 1 -- 斧_ウォークライ_片手タメ1", + "103000805": "Axe _ War Cry _ one-handed 1_ maximum -- 斧_ウォークライ_片手タメ1_最大", + "103000806": "Axe _ War Cry _ one-handed 1_ tackle 1 -- 斧_ウォークライ_片手タメ1_タックル1", + "103000807": "Axe _ War Cry _ one-handed 1_ tackle 2 -- 斧_ウォークライ_片手タメ1_タックル2", + "103000810": "Axe _ War Cry _ one-handed Entertainment 2 -- 斧_ウォークライ_片手タメ2", + "103000815": "Axe _ War Cry _ one-handed 2_ maximum -- 斧_ウォークライ_片手タメ2_最大", + "103000900": "Axe _ War Cry _ two-handed entertainment 1 -- 斧_ウォークライ_両手タメ1", + "103000905": "Axe _ War Cry _ two-handed 1_ maximum -- 斧_ウォークライ_両手タメ1_最大", + "103000906": "Axe _ War Cry _ two-handed 1_ tackle 1 -- 斧_ウォークライ_両手タメ1_タックル1", + "103000907": "Axe _ War Cry _ two-handed 1_ tackle 2 -- 斧_ウォークライ_両手タメ1_タックル2", + "103000910": "Axe _ War Cry _ two-handed Entertainment 2 -- 斧_ウォークライ_両手タメ2", + "103000915": "Axe _ War Cry _ two-handed 2_ maximum -- 斧_ウォークライ_両手タメ2_最大", + "103001000": "Twin Sword Axe: Fat _ one hand usually 1 -- 双剣斧:デブ_片手通常1", + "103001010": "Twin Swords Ax: Fat _ one hand usually two -- 双剣斧:デブ_片手通常2", + "103001020": "Twin Swords Ax: Fat _ one hand usually three -- 双剣斧:デブ_片手通常3", + "103001030": "Bi-Sword Axe: Deb _ One handed jump -- 双剣斧:デブ_片手ジャンプ1", + "103001040": "Twin Sword Axe: Fat _ one handed fall loop -- 双剣斧:デブ_片手落下ループ", + "103001050": "Twin Sword Axe: Fat _ one-handed fall landing -- 双剣斧:デブ_片手落下着地", + "103001100": "Bi-Sword Axe: deb _ one-handed entertainment 1 -- 双剣斧:デブ_片手タメ1", + "103001105": "Bi-Sword Axe: fat _ one-handed 1_ Max -- 双剣斧:デブ_片手タメ1_最大", + "103001110": "Bi-Sword Axe: fat _ one-handed Entertainment 2 -- 双剣斧:デブ_片手タメ2", + "103001115": "Bi-Sword Axe: fat _ one-handed 2_ Max -- 双剣斧:デブ_片手タメ2_最大", + "103001200": "Double Sword Axe: fat _ usually one with two hands -- 双剣斧:デブ_両手通常1", + "103001210": "Twin Sword Axe: Fat _ Two hands usually -- 双剣斧:デブ_両手通常2", + "103001220": "Twin Sword Axe: Fat _ Two hands usually three -- 双剣斧:デブ_両手通常3", + "103001230": "Bi-Sword Axe: Deb _ two-handed jump 1 -- 双剣斧:デブ_両手ジャンプ1", + "103001240": "Twin Sword Axe: Fat _ both hands Fall loop -- 双剣斧:デブ_両手落下ループ", + "103001250": "Twin Swords: Fat _ two-handed fall landing -- 双剣斧:デブ_両手落下着地", + "103001300": "Twin Sword Axe: Fat _ two-handed entertainment 1 -- 双剣斧:デブ_両手タメ1", + "103001305": "Bi-Sword Axe: Deb _ two-handed 1_ Max -- 双剣斧:デブ_両手タメ1_最大", + "103001310": "Twin Sword Axe: Deb _ two-handed Entertainment 2 -- 双剣斧:デブ_両手タメ2", + "103001315": "Bi-Sword Axe: Deb _ two-handed 2_ Max -- 双剣斧:デブ_両手タメ2_最大", + "103001400": "Twin Sword Axe: Deb _ Left Hand -- 双剣斧:デブ_左手", + "103001410": "Twin Sword Axe: Fat _ one hand close -- 双剣斧:デブ_片手近距離", + "103001420": "Twin Sword Axe: Fat _ both hands close -- 双剣斧:デブ_両手近距離", + "103001430": "Twin Sword Axe: Fat Guard _ one hand -- 双剣斧:デブ_ガード_片手", + "103001440": "Twin Sword Axe: Fat _ guard _ both hands -- 双剣斧:デブ_ガード_両手", + "103001450": "Twin Sword Axe: Deb _ Paris -- 双剣斧:デブ_パリィ", + "103001470": "Twin Sword axe: fat-Big throw -- 双剣斧:デブ_大型投げ", + "103001490": "Twin Sword axe: fat-throwing fall -- 双剣斧:デブ_落下投げ", + "103001500": "Twin Sword Axe: Deb _ behind -- 双剣斧:デブ_背後", + "103001501": "Twin Sword Axe: Deb _ behind the two-firing eyes -- 双剣斧:デブ_背後_二撃目", + "103001505": "Twin Sword Axe: Deb _ Behind the reinforcement -- 双剣斧:デブ_強化背後", + "103001506": "Twin-Sword Axe: Deb _ Reinforced behind _ Two -- 双剣斧:デブ_強化背後_二段目", + "103001510": "Twin Sword Axe: Deb _ after Paris -- 双剣斧:デブ_パリィ後", + "103001511": "Twin Sword Axe: Deb _ Paris _ Second Hammer -- 双剣斧:デブ_パリィ_二撃目", + "103001515": "Twin Sword Axe: Deb _ after strengthening Paris -- 双剣斧:デブ_強化パリィ後", + "103001516": "Twin-Sword Axe: Deb _ Paris after strengthening _ two -- 双剣斧:デブ_強化パリィ後_二段目", + "103001517": "Twin-Sword Axe: Deb _ Paris after strengthening _ Sandanme -- 双剣斧:デブ_強化パリィ後_三段目", + "103001520": "Bi-Sword Axe: fat _ one-handed Dash -- 双剣斧:デブ_片手ダッシュ", + "103001530": "Bi-Sword Axe: fat _ both hands dash -- 双剣斧:デブ_両手ダッシュ", + "103001540": "Twin Sword Axe: Fat _ one handed step before -- 双剣斧:デブ_片手ステップ前", + "103001580": "Bi-Sword Axe: deb _ Hands before step -- 双剣斧:デブ_両手ステップ前", + "103001600": "Twin Sword Axe: Deb _ Parigard -- 双剣斧:デブ_パリィガード", + "103001610": "Twin Sword Axe: Deb _ transition behind -- 双剣斧:デブ_背後遷移", + "103001615": "Twin Swords Ax: Fat _ Behind the transition _ missed -- 双剣斧:デブ_背後遷移_空振り", + "103001620": "Twin Sword Axe: Deb _ the directing slams -- 双剣斧:デブ_演出叩きつけ", + "103001700": "Twin Sword Axe: Fat _ 1_ Left hand Combo -- 双剣斧:デブ_双剣左コンボ1_右手", + "103001701": "Twin Sword Axe: Fat _ 1_ Left hand Combo -- 双剣斧:デブ_双剣左コンボ1_左手", + "103001710": "Twin Sword Axe: Fat _ 2_ Left hand Combo -- 双剣斧:デブ_双剣左コンボ2_右手", + "103001711": "Twin Sword Axe: Fat _ 2_ Left hand Combo -- 双剣斧:デブ_双剣左コンボ2_左手", + "103001720": "Twin Sword Axe: Fat _ 3_ Left hand Combo -- 双剣斧:デブ_双剣左コンボ3_右手", + "103001721": "Twin Sword Axe: Fat _ 3_ Left hand Combo -- 双剣斧:デブ_双剣左コンボ3_左手", + "103001730": "Twin Sword Axe: Fat _ bi-Sword dash (right) -- 双剣斧:デブ_双剣ダッシュ(右手)", + "103001731": "Twin Sword Axe: Fat _ bi-Sword dash (left hand) -- 双剣斧:デブ_双剣ダッシュ(左手)", + "103001740": "Twin Sword Axe: Fat _ bi-swords (right) -- 双剣斧:デブ_双剣ステップ前(右手)", + "103001741": "Twin Sword Axe: Fat Sword (left hand) -- 双剣斧:デブ_双剣ステップ前(左手)", + "103001800": "Twin Sword Axe: deb _ Spinning (right) -- 双剣斧:デブ_回転中(右手)", + "103001801": "Twin Sword Axe: fat _ spinning (left hand) -- 双剣斧:デブ_回転中(左手)", + "103001820": "Twin Sword axe: fat (right hand) -- 双剣斧:デブ_回転強(右手)", + "103001821": "Twin-Sword Axe: Deb _ Turning strength (left hand) -- 双剣斧:デブ_回転強(左手)", + "103010000": "Han Hanks _ one handed usually 1 -- ハンドアクス_片手通常1", + "103010010": "Han Hanks _ one hand usually two -- ハンドアクス_片手通常2", + "103010020": "Han Hanks _ one hand usually three -- ハンドアクス_片手通常3", + "103010100": "Han-one-handed entertainment 1 -- ハンドアクス_片手タメ1", + "103010110": "Han-one-handed entertainment 2 -- ハンドアクス_片手タメ2", + "103010200": "Han Hanks _ Two hands usually one -- ハンドアクス_両手通常1", + "103010210": "Han Hanks _ Two hands usually 2 -- ハンドアクス_両手通常2", + "103010220": "Han Hanks _ Two hands usually three -- ハンドアクス_両手通常3", + "103010300": "Han, two-handed entertainment 1 -- ハンドアクス_両手タメ1", + "103010310": "Han's two-handed entertainment 2 -- ハンドアクス_両手タメ2", + "103010400": "Han Hanks _ left hand -- ハンドアクス_左手", + "103010520": "Han-one-handed dash -- ハンドアクス_片手ダッシュ", + "103010530": "Han doors _ two-handed Dash -- ハンドアクス_両手ダッシュ", + "103010540": "Han Hanks _ one handed step before -- ハンドアクス_片手ステップ前", + "103010580": "Han Hanks _ two-handed step before -- ハンドアクス_両手ステップ前", + "103020000": "[104] Iron Ax _ one hand usually 1 -- 【104】アイアンアクス_片手通常1", + "103020010": "[104] Iron Ax _ one hand usually two -- 【104】アイアンアクス_片手通常2", + "103020020": "[104] Iron Ax _ one hand usually three -- 【104】アイアンアクス_片手通常3", + "103020030": "[104] Iron Ax _ one-handed jump 1 -- 【104】アイアンアクス_片手ジャンプ1", + "103020040": "[104] Iron Ax _ one-handed fall loop -- 【104】アイアンアクス_片手落下ループ", + "103020050": "[104] Iron Ax _ one-handed fall landing -- 【104】アイアンアクス_片手落下着地", + "103020100": "[104] Iron Ax _ one-handed entertainment 1 -- 【104】アイアンアクス_片手タメ1", + "103020110": "[104] Iron Ax _ one-handed Entertainment 2 -- 【104】アイアンアクス_片手タメ2", + "103020120": "[104] Iron Ax _ one-handed Entertainment 1/Magic Trigger -- 【104】アイアンアクス_片手タメ1/魔法発動時", + "103020130": "[104] Iron Ax _ one-handed Entertainment 2/Magic Trigger -- 【104】アイアンアクス_片手タメ2/魔法発動時", + "103020200": "[104] Iron Ax _ Two hands usually one -- 【104】アイアンアクス_両手通常1", + "103020210": "[104] Iron Ax _ Two hands usually 2 -- 【104】アイアンアクス_両手通常2", + "103020220": "[104] Iron Ax _ Two hands usually three -- 【104】アイアンアクス_両手通常3", + "103020230": "[104] Iron Ax _ two-handed jump 1 -- 【104】アイアンアクス_両手ジャンプ1", + "103020240": "[104] Iron Ax _ two-handed fall loop -- 【104】アイアンアクス_両手落下ループ", + "103020250": "[104] Iron Ax _ two-handed fall landing -- 【104】アイアンアクス_両手落下着地", + "103020300": "[104] Iron Ax _ two-handed entertainment 1 -- 【104】アイアンアクス_両手タメ1", + "103020301": "[104] Iron Ax _ Both hands _ perimeter -- 【104】アイアンアクス_両手_周囲", + "103020310": "[104] Iron Ax _ two-handed Entertainment 2 -- 【104】アイアンアクス_両手タメ2", + "103020400": "[104] Iron Ax _ left Hand -- 【104】アイアンアクス_左手", + "103020410": "[104] Iron Ax _ one hand close -- 【104】アイアンアクス_片手近距離", + "103020420": "[104] Iron Ax _ both hands close -- 【104】アイアンアクス_両手近距離", + "103020430": "[104] Iron Ax _ guards _ one hand -- 【104】アイアンアクス_ガード_片手", + "103020440": "[104] Iron Ax _ guards _ both hands -- 【104】アイアンアクス_ガード_両手", + "103020450": "[104] Iron Ax _ Paris -- 【104】アイアンアクス_パリィ", + "103020490": "[104] Iron Ax _ Falling Throw -- 【104】アイアンアクス_落下投げ", + "103020500": "[104] Iron Ax _ behind -- 【104】アイアンアクス_背後", + "103020501": "[104] Iron Ax _ behind the two-firing eye -- 【104】アイアンアクス_背後_二撃目", + "103020505": "[104] Iron Ax _ Strengthening behind -- 【104】アイアンアクス_強化背後", + "103020506": "[104] Iron Ax _ strengthened behind _ Two -- 【104】アイアンアクス_強化背後_二段目", + "103020510": "[104] Iron Ax _ after Paris -- 【104】アイアンアクス_パリィ後", + "103020511": "[104] Iron Ax _ Paris _ 2nd Hammer -- 【104】アイアンアクス_パリィ_二撃目", + "103020515": "[104] Iron Ax _ after strengthening Paris -- 【104】アイアンアクス_強化パリィ後", + "103020516": "[104] Iron Ax _ Paris after strengthening _ two -- 【104】アイアンアクス_強化パリィ後_二段目", + "103020517": "[104] Iron Ax _ Paris after strengthening _ Sandanme -- 【104】アイアンアクス_強化パリィ後_三段目", + "103020520": "[104] Iron Ax _ one-handed Dash -- 【104】アイアンアクス_片手ダッシュ", + "103020530": "[104] Iron Ax _ both hands dash -- 【104】アイアンアクス_両手ダッシュ", + "103020540": "[104] Iron Ax _ one-handed step before -- 【104】アイアンアクス_片手ステップ前", + "103020580": "[104] Iron Ax _ two-handed step before -- 【104】アイアンアクス_両手ステップ前", + "103020600": "[104] Iron Ax _ Parigard -- 【104】アイアンアクス_パリィガード", + "103020800": "[104] Iron Ax _ Magic Sword -- 【104】アイアンアクス_魔法剣", + "103030000": "[103] Large knife _ one hand usually 1 -- 【103】大包丁_片手通常1", + "103030010": "[103] Large knife _ one hand usually 2 -- 【103】大包丁_片手通常2", + "103030020": "[103] Large knife _ one hand usually three -- 【103】大包丁_片手通常3", + "103030030": "[103] Large knife _ one-handed jump 1 -- 【103】大包丁_片手ジャンプ1", + "103030040": "[103] Large knife _ one-handed fall loop -- 【103】大包丁_片手落下ループ", + "103030050": "[103] Large knife _ one-handed fall landing -- 【103】大包丁_片手落下着地", + "103030100": "[103] Big knife _ one-handed entertainment 1 -- 【103】大包丁_片手タメ1", + "103030110": "[103] Big knife _ one-handed Entertainment 2 -- 【103】大包丁_片手タメ2", + "103030200": "[103] Large knife _ both hands usually 1 -- 【103】大包丁_両手通常1", + "103030210": "[103] Large knife _ Two hands usually 2 -- 【103】大包丁_両手通常2", + "103030220": "[103] Large knife _ two hands usually three -- 【103】大包丁_両手通常3", + "103030230": "[103] Large knife _ two-handed jump 1 -- 【103】大包丁_両手ジャンプ1", + "103030240": "[103] Large knife _ both hands Fall loop -- 【103】大包丁_両手落下ループ", + "103030250": "[103] Large knife _ both hands fall landing -- 【103】大包丁_両手落下着地", + "103030300": "[103] Large knife _ two-handed entertainment 1 -- 【103】大包丁_両手タメ1", + "103030310": "[103] Large knife _ two-handed Entertainment 2 -- 【103】大包丁_両手タメ2", + "103030400": "[103] Large Cleaver _ left hand -- 【103】大包丁_左手", + "103030490": "[103] Large knife _ drop throw -- 【103】大包丁_落下投げ", + "103030500": "[103] Large Cleaver _ behind -- 【103】大包丁_背後", + "103030501": "[103] Large knife _ behind the second hammer -- 【103】大包丁_背後_二撃目", + "103030505": "【 103 】 Large cleaver _ reinforced behind -- 【103】大包丁_強化背後", + "103030506": "【 103 】 Large Cleaver _ reinforced behind _ Two -- 【103】大包丁_強化背後_二段目", + "103030510": "[103] Large cleaver _ after Paris -- 【103】大包丁_パリィ後", + "103030511": "[103] Large Knife _ Paris _ Second Hammer -- 【103】大包丁_パリィ_二撃目", + "103030515": "【 103 】 Large Cleaver _ after strengthening Paris -- 【103】大包丁_強化パリィ後", + "103030516": "[103] Large Cleaver _ after strengthening Paris _ two -- 【103】大包丁_強化パリィ後_二段目", + "103030517": "[103] Large Cleaver _ after strengthening Paris _ Sandanme -- 【103】大包丁_強化パリィ後_三段目", + "103030520": "[103] Large knife _ one-handed Dash -- 【103】大包丁_片手ダッシュ", + "103030530": "[103] Large knife _ both hands dash -- 【103】大包丁_両手ダッシュ", + "103030540": "[103] Large knife _ one hand step before -- 【103】大包丁_片手ステップ前", + "103030580": "[103] Large knife _ two-handed step before -- 【103】大包丁_両手ステップ前", + "103040000": "[125] Gargoyle Tail Ax _ one hand usually 1 -- 【125】ガーゴイルの尾斧_片手通常1", + "103040010": "[125] Gargoyle Tail Ax _ one hand usually two -- 【125】ガーゴイルの尾斧_片手通常2", + "103040020": "[125] Gargoyle Tail Ax _ one hand usually three -- 【125】ガーゴイルの尾斧_片手通常3", + "103040030": "[125] Gargoyle Tail Ax _ one-handed jump 1 -- 【125】ガーゴイルの尾斧_片手ジャンプ1", + "103040040": "[125] Gargoyle Tail Ax _ one-handed fall loop -- 【125】ガーゴイルの尾斧_片手落下ループ", + "103040050": "[125] Gargoyle Tail Ax _ one-handed fall landing -- 【125】ガーゴイルの尾斧_片手落下着地", + "103040100": "[125] Gargoyle Tail Ax _ one-handed entertainment 1 -- 【125】ガーゴイルの尾斧_片手タメ1", + "103040110": "[125] Gargoyle Tail Ax _ one-handed Entertainment 2 -- 【125】ガーゴイルの尾斧_片手タメ2", + "103040200": "[125] Gargoyle Tail Ax _ hands usually one -- 【125】ガーゴイルの尾斧_両手通常1", + "103040210": "[125] Gargoyle Tail Ax _ Two hands usually 2 -- 【125】ガーゴイルの尾斧_両手通常2", + "103040220": "[125] Gargoyle Tail Ax _ Two hands usually three -- 【125】ガーゴイルの尾斧_両手通常3", + "103040230": "[125] Gargoyle Tail Ax _ two-handed jump 1 -- 【125】ガーゴイルの尾斧_両手ジャンプ1", + "103040240": "[125] Gargoyle Tail Ax _ two-handed fall loop -- 【125】ガーゴイルの尾斧_両手落下ループ", + "103040250": "[125] Gargoyle Tail Ax _ two-handed fall landing -- 【125】ガーゴイルの尾斧_両手落下着地", + "103040300": "[125] Gargoyle Tail Ax _ two-handed entertainment 1 -- 【125】ガーゴイルの尾斧_両手タメ1", + "103040310": "[125] Gargoyle Tail Ax _ two-handed Entertainment 2 -- 【125】ガーゴイルの尾斧_両手タメ2", + "103040400": "[125] Gargoyle Tail Ax _ left hand -- 【125】ガーゴイルの尾斧_左手", + "103040410": "[125] Gargoyle Tail Ax _ one hand close -- 【125】ガーゴイルの尾斧_片手近距離", + "103040420": "[125] Gargoyle Tail Ax _ both hands close -- 【125】ガーゴイルの尾斧_両手近距離", + "103040430": "[125] Gargoyle Tail Ax _ guard _ one hand -- 【125】ガーゴイルの尾斧_ガード_片手", + "103040440": "[125] Gargoyle Tail Ax _ guard _ both hands -- 【125】ガーゴイルの尾斧_ガード_両手", + "103040450": "[125] Gargoyle Tail Ax _ Paris -- 【125】ガーゴイルの尾斧_パリィ", + "103040490": "[125] Gargoyle Tail Ax _ Falling Throw -- 【125】ガーゴイルの尾斧_落下投げ", + "103040500": "[125] Gargoyle Tail Ax _ behind -- 【125】ガーゴイルの尾斧_背後", + "103040501": "[125] Gargoyle Tail Ax _ behind the second hammer -- 【125】ガーゴイルの尾斧_背後_二撃目", + "103040505": "[125] Gargoyle Tail Ax _ reinforced behind -- 【125】ガーゴイルの尾斧_強化背後", + "103040506": "[125] Gargoyle Tail Ax _ reinforced behind _ Two -- 【125】ガーゴイルの尾斧_強化背後_二段目", + "103040510": "[125] Gargoyle Tail Ax _ after Paris -- 【125】ガーゴイルの尾斧_パリィ後", + "103040511": "[125] Gargoyle Tail Ax _ Paris _ Second Hammer -- 【125】ガーゴイルの尾斧_パリィ_二撃目", + "103040515": "[125] Gargoyle Tail Ax _ after strengthening Paris -- 【125】ガーゴイルの尾斧_強化パリィ後", + "103040516": "[125] Gargoyle Tail Ax _ after strengthening Paris _ two -- 【125】ガーゴイルの尾斧_強化パリィ後_二段目", + "103040517": "[125] Gargoyle Tail Ax _ after strengthening Paris _ Sandanme -- 【125】ガーゴイルの尾斧_強化パリィ後_三段目", + "103040520": "[125] Gargoyle Tail Ax _ one-handed Dash -- 【125】ガーゴイルの尾斧_片手ダッシュ", + "103040530": "[125] Gargoyle Tail Ax _ both hands Dash -- 【125】ガーゴイルの尾斧_両手ダッシュ", + "103040540": "[125] Gargoyle Tail Ax _ one hand step before -- 【125】ガーゴイルの尾斧_片手ステップ前", + "103040580": "[125] Gargoyle Tail Ax _ hands before step -- 【125】ガーゴイルの尾斧_両手ステップ前", + "103040600": "[125] Gargoyle Tail Ax _ Parigard -- 【125】ガーゴイルの尾斧_パリィガード", + "103200000": "Large Ax _ one hand usually 1 -- 大斧_片手通常1", + "103200001": "Large ax _ One handed usually 1_ range -- 大斧_片手通常1_範囲", + "103200010": "Large Ax _ one hand usually two -- 大斧_片手通常2", + "103200020": "Large Ax _ one hand usually three -- 大斧_片手通常3", + "103200030": "Large ax _ one handed jump -- 大斧_片手ジャンプ1", + "103200040": "Large ax _ One handed fall loop -- 大斧_片手落下ループ", + "103200050": "Large ax _ one-handed fall landing -- 大斧_片手落下着地", + "103200100": "Large ax _ one-handed entertainment 1 -- 大斧_片手タメ1", + "103200101": "Large ax _ one-handed 1_ around (small) -- 大斧_片手タメ1_周辺(小)", + "103200105": "Large ax _ one-handed 1_ maximum -- 大斧_片手タメ1_最大", + "103200110": "Large ax _ one-handed Entertainment 2 -- 大斧_片手タメ2", + "103200115": "Large ax _ one-handed 2_ maximum -- 大斧_片手タメ2_最大", + "103200200": "Large Ax _ Two hands usually one -- 大斧_両手通常1", + "103200210": "Large Axe _ Two hands usually -- 大斧_両手通常2", + "103200220": "Large Ax _ Two hands usually three -- 大斧_両手通常3", + "103200230": "Large ax _ two-handed jump 1 -- 大斧_両手ジャンプ1", + "103200240": "Large axe _ two-handed fall loop -- 大斧_両手落下ループ", + "103200250": "Large ax _ two-handed fall landing -- 大斧_両手落下着地", + "103200300": "Large ax _ two-handed entertainment 1 -- 大斧_両手タメ1", + "103200305": "Large ax _ two-handed 1_ Max -- 大斧_両手タメ1_最大", + "103200310": "Large ax _ two-handed Entertainment 2 -- 大斧_両手タメ2", + "103200315": "Large ax _ two-handed 2_ Max -- 大斧_両手タメ2_最大", + "103200400": "Large Axe _ Left hand -- 大斧_左手", + "103200410": "Large Axe _ one hand close -- 大斧_片手近距離", + "103200420": "Large Axe _ both hands close -- 大斧_両手近距離", + "103200430": "Large Axe _ guard _ one hand -- 大斧_ガード_片手", + "103200440": "Large Axe _ guard _ both hands -- 大斧_ガード_両手", + "103200450": "Large Axe _ Paris -- 大斧_パリィ", + "103200470": "Large Axe _ Large throw -- 大斧_大型投げ", + "103200490": "Large Axe _ Falling throw -- 大斧_落下投げ", + "103200500": "Large ax _ behind -- 大斧_背後", + "103200501": "Large ax _ Behind the second hammer -- 大斧_背後_二撃目", + "103200505": "Large ax _ Reinforced behind -- 大斧_強化背後", + "103200506": "Large Ax _ reinforced behind _ Two -- 大斧_強化背後_二段目", + "103200510": "Large ax _ after Paris -- 大斧_パリィ後", + "103200511": "Large Ax _ after Paris _ Second hammer -- 大斧_パリィ後_二撃目", + "103200515": "Large ax _ after strengthening Paris -- 大斧_強化パリィ後", + "103200516": "Paris Large Ax _ after strengthening _ two -- 大斧_強化パリィ後_二段目", + "103200517": "Paris Large Ax _ after strengthening _ Sandanme -- 大斧_強化パリィ後_三段目", + "103200520": "Large Axe _ one handed Dash -- 大斧_片手ダッシュ", + "103200530": "Large axe _ both hands dash -- 大斧_両手ダッシュ", + "103200540": "Large Axe _ one hand step before -- 大斧_片手ステップ前", + "103200580": "Large Ax _ Two hands before step -- 大斧_両手ステップ前", + "103200600": "Large Axe _ Parigard -- 大斧_パリィガード", + "103200610": "Large ax _ Behind the transition -- 大斧_背後遷移", + "103200615": "Large ax _ Behind the transition _ missed -- 大斧_背後遷移_空振り", + "103201000": "[106] Large axe of the Dragon King _ one hand usually 1 -- 【106】竜王の大斧_片手通常1", + "103201010": "[106] Large axe of the Dragon King _ one hand usually 2 -- 【106】竜王の大斧_片手通常2", + "103201020": "[106] Large axe of the Dragon King _ one hand usually three -- 【106】竜王の大斧_片手通常3", + "103201030": "[106] Large axe of the Dragon King, one hand jump -- 【106】竜王の大斧_片手ジャンプ1", + "103201040": "[106] Large axe of the dragon, one-handed fall loop -- 【106】竜王の大斧_片手落下ループ", + "103201050": "[106] Large axe of the Dragon King, one-handed fall landing -- 【106】竜王の大斧_片手落下着地", + "103201100": "[106] Big axe of the Dragon King, one hand entertainment 1 -- 【106】竜王の大斧_片手タメ1", + "103201101": "[106] Large axe of the Dragon King _ one hand around 1_ (small) -- 【106】竜王の大斧_片手タメ1_周辺(小)", + "103201110": "[106] Big axe of the Dragon King, one hand entertainment 2 -- 【106】竜王の大斧_片手タメ2", + "103201200": "[106] Large ax of the Dragon King _ Two hands usually one -- 【106】竜王の大斧_両手通常1", + "103201210": "[106] Large axe of the Dragon King _ Two hands usually -- 【106】竜王の大斧_両手通常2", + "103201220": "[106] Large axe of the Dragon King _ Two hands usually three -- 【106】竜王の大斧_両手通常3", + "103201230": "[106] Large ax of the Dragon King _ two-handed jump -- 【106】竜王の大斧_両手ジャンプ1", + "103201240": "[106] Dragon King's Large axe _ two-handed fall loop -- 【106】竜王の大斧_両手落下ループ", + "103201250": "[106] Large axe of the dragon, two-handed fall landing -- 【106】竜王の大斧_両手落下着地", + "103201300": "[106] Large axe of the Dragon King _ two-handed entertainment 1 -- 【106】竜王の大斧_両手タメ1", + "103201301": "[106] Large axe of the King's Dragon _ both hands around 1_ -- 【106】竜王の大斧_両手タメ1_周辺", + "103201310": "[106] Large ax of the Dragon King _ two-handed entertainment -- 【106】竜王の大斧_両手タメ2", + "103201320": "[106] Large axe of the dragon, two-handed -- 【106】竜王の大斧_両手タメ1/魔法発動時", + "103201330": "[106] Large axe of the dragon, two-hand entertainment 2/Magic -- 【106】竜王の大斧_両手タメ2/魔法発動時", + "103201400": "[106] Large axe of the Dragon's left hand -- 【106】竜王の大斧_左手", + "103201410": "[106] Large ax of the Dragon King _ one hand close -- 【106】竜王の大斧_片手近距離", + "103201420": "[106] Large ax of the Dragon King _ both hands close -- 【106】竜王の大斧_両手近距離", + "103201430": "[106] Big axe of the King Dragon _ guard _ one hand -- 【106】竜王の大斧_ガード_片手", + "103201440": "[106] Large axe of the Dragon King _ both hands -- 【106】竜王の大斧_ガード_両手", + "103201450": "[106] Large axe of the Dragon King _ Paris -- 【106】竜王の大斧_パリィ", + "103201490": "[106] Large axe of the Dragon King _ drop Throw -- 【106】竜王の大斧_落下投げ", + "103201500": "[106] Great axe behind the Dragon King -- 【106】竜王の大斧_背後", + "103201501": "[106] Large ax of the Dragon King _ behind the second hammer -- 【106】竜王の大斧_背後_二撃目", + "103201505": "[106] Large axe of the Dragon King, reinforced behind -- 【106】竜王の大斧_強化背後", + "103201506": "[106] Large axe of the Dragon King _ reinforced behind _ Two -- 【106】竜王の大斧_強化背後_二段目", + "103201510": "[106] Large axe of the King Dragon _ after Paris -- 【106】竜王の大斧_パリィ後", + "103201511": "[106] Large axe of the Dragon King _ Paris after the second hammer -- 【106】竜王の大斧_パリィ後_二撃目", + "103201515": "[106] Large axe of the Dragon King _ after strengthening Paris -- 【106】竜王の大斧_強化パリィ後", + "103201516": "[106] Large axe of the Dragon King _ after strengthening Paris _ two -- 【106】竜王の大斧_強化パリィ後_二段目", + "103201517": "[106] Large axe of the Dragon King _ after strengthening Paris _ Sandanme -- 【106】竜王の大斧_強化パリィ後_三段目", + "103201520": "[106] Big axe of the Dragon King _ one hand Dash -- 【106】竜王の大斧_片手ダッシュ", + "103201530": "[106] Large ax of the Dragon King _ both hands Dash -- 【106】竜王の大斧_両手ダッシュ", + "103201540": "[106] Large axe of the Dragon King _ one hand step before -- 【106】竜王の大斧_片手ステップ前", + "103201580": "[106] Big axe of the Dragon -- 【106】竜王の大斧_両手ステップ前", + "103201600": "[106] Large axe of the Dragon King _ Parigard -- 【106】竜王の大斧_パリィガード", + "103201800": "[106] Dragon King's great Axe _ Magic Sword -- 【106】竜王の大斧_魔法剣", + "103202000": "[105] Demon Large ax _ one hand usually 1 -- 【105】デーモンの大斧_片手通常1", + "103202010": "[105] Daemon Large ax _ one hand usually two -- 【105】デーモンの大斧_片手通常2", + "103202020": "[105] Daemon Large ax _ one hand usually three -- 【105】デーモンの大斧_片手通常3", + "103202030": "[105] Demon's large axe _ one handed jump -- 【105】デーモンの大斧_片手ジャンプ1", + "103202040": "[105] Demon's Large axe _ one-handed fall loop -- 【105】デーモンの大斧_片手落下ループ", + "103202050": "[105] Demon's Large axe _ one-handed fall landing -- 【105】デーモンの大斧_片手落下着地", + "103202100": "[105] Demon's Large axe _ one-handed entertainment 1 -- 【105】デーモンの大斧_片手タメ1", + "103202101": "[105] Demon's Large axe _ one-handed 1_ around (small) -- 【105】デーモンの大斧_片手タメ1_周辺(小)", + "103202110": "[105] Demon's Large axe _ one-handed Entertainment 2 -- 【105】デーモンの大斧_片手タメ2", + "103202200": "[105] Demon Large Axe _ Two hands usually one -- 【105】デーモンの大斧_両手通常1", + "103202210": "[105] Demon Large Axe _ Two hands usually 2 -- 【105】デーモンの大斧_両手通常2", + "103202220": "[105] Demon Large Axe _ Two hands usually three -- 【105】デーモンの大斧_両手通常3", + "103202230": "[105] Demon Large axe _ two-handed jump 1 -- 【105】デーモンの大斧_両手ジャンプ1", + "103202240": "[105] Demon's Large axe _ two-handed fall loop -- 【105】デーモンの大斧_両手落下ループ", + "103202250": "[105] Demon's large ax _ two-handed fall landing -- 【105】デーモンの大斧_両手落下着地", + "103202300": "[105] Demon's Great axe _ two-handed entertainment 1 -- 【105】デーモンの大斧_両手タメ1", + "103202301": "[105] Demon's large axe _ both hands around 1_ -- 【105】デーモンの大斧_両手タメ1_周辺", + "103202310": "[105] Demon's Large axe _ two-handed Entertainment 2 -- 【105】デーモンの大斧_両手タメ2", + "103202400": "[105] Demon's great axe _ left hand -- 【105】デーモンの大斧_左手", + "103202410": "[105] Demon's Large axe _ one hand close -- 【105】デーモンの大斧_片手近距離", + "103202420": "[105] Demon's large axe _ both hands close -- 【105】デーモンの大斧_両手近距離", + "103202430": "[105] Demon's Great Axe _ guard _ one hand -- 【105】デーモンの大斧_ガード_片手", + "103202440": "[105] Demon's Great Axe _ guard _ both hands -- 【105】デーモンの大斧_ガード_両手", + "103202450": "[105] Demon's great axe _ Paris -- 【105】デーモンの大斧_パリィ", + "103202490": "[105] Demon's large axe _ falling throw -- 【105】デーモンの大斧_落下投げ", + "103202500": "[105] Demon's great axe _ behind -- 【105】デーモンの大斧_背後", + "103202501": "[105] Demon's Big axe _ behind the second hammer -- 【105】デーモンの大斧_背後_二撃目", + "103202505": "[105] Demon's large axe _ reinforced behind -- 【105】デーモンの大斧_強化背後", + "103202506": "[105] Demon's large axe _ reinforced behind _ Two -- 【105】デーモンの大斧_強化背後_二段目", + "103202510": "[105] Demon's great axe _ after Paris -- 【105】デーモンの大斧_パリィ後", + "103202511": "[105] Demon's large axe _ Paris after the second hammer -- 【105】デーモンの大斧_パリィ後_二撃目", + "103202515": "[105] Demon Large ax _ after strengthening Paris -- 【105】デーモンの大斧_強化パリィ後", + "103202516": "[105] Demon's large ax _ after strengthening Paris _ two -- 【105】デーモンの大斧_強化パリィ後_二段目", + "103202517": "[105] Demon's large ax _ after strengthening Paris _ Sandanme -- 【105】デーモンの大斧_強化パリィ後_三段目", + "103202520": "[105] Demon's Large axe _ one-handed Dash -- 【105】デーモンの大斧_片手ダッシュ", + "103202530": "[105] Demon's large axe _ both hands dash -- 【105】デーモンの大斧_両手ダッシュ", + "103202540": "[105] Demon's great axe _ one hand step before -- 【105】デーモンの大斧_片手ステップ前", + "103202580": "[105] Demon's large ax _ hands before step -- 【105】デーモンの大斧_両手ステップ前", + "103202600": "[105] Demon's great axe _ Parigard -- 【105】デーモンの大斧_パリィガード", + "103203000": "[107] Black Knight's large axe _ one hand usually 1 -- 【107】黒騎士の大斧_片手通常1", + "103203010": "[107] Black Knight's large axe _ one hand usually two -- 【107】黒騎士の大斧_片手通常2", + "103203020": "[107] Black Knight's great Axe _ one hand usually three -- 【107】黒騎士の大斧_片手通常3", + "103203100": "[107] Black Knight's Great Axe _ one-handed entertainment 1 -- 【107】黒騎士の大斧_片手タメ1", + "103203110": "[107] Black Knight's Great Axe _ one-handed Entertainment 2 -- 【107】黒騎士の大斧_片手タメ2", + "103203200": "[107] Black Knight's large axe _ Two hands usually one -- 【107】黒騎士の大斧_両手通常1", + "103203210": "[107] Black Knight's large axe _ Two hands usually -- 【107】黒騎士の大斧_両手通常2", + "103203220": "[107] Black Knight's large axe _ Two hands usually three -- 【107】黒騎士の大斧_両手通常3", + "103203300": "[107] Black Knight's Great Axe _ two-handed entertainment 1 -- 【107】黒騎士の大斧_両手タメ1", + "103203310": "[107] Black Knight's Great Axe _ two-handed Entertainment 2 -- 【107】黒騎士の大斧_両手タメ2", + "103203400": "[107] Black Knight's great Axe _ left hand -- 【107】黒騎士の大斧_左手", + "103203520": "[107] Black Knight's Great Axe _ one-handed Dash -- 【107】黒騎士の大斧_片手ダッシュ", + "103203530": "[107] Black Knight's great Axe _ both hands dash -- 【107】黒騎士の大斧_両手ダッシュ", + "103203540": "[107] Black Knight's great Axe _ one hand step before -- 【107】黒騎士の大斧_片手ステップ前", + "103203580": "[107] Black Knight's great Axe _ Two hands before step -- 【107】黒騎士の大斧_両手ステップ前", + "103204000": "[133] Dogu Celts _ one-handed usually 1 -- 【133】土偶の石斧_片手通常1", + "103204010": "[133] Dogu Celts _ one hand usually two -- 【133】土偶の石斧_片手通常2", + "103204020": "[133] Dogu Celts _ one hand usually three -- 【133】土偶の石斧_片手通常3", + "103204030": "[133] Dogu Celts _ one-handed jump 1 -- 【133】土偶の石斧_片手ジャンプ1", + "103204040": "[133] Dogu Celts _ one-handed fall loop -- 【133】土偶の石斧_片手落下ループ", + "103204050": "[133] Dogu Celts _ one-handed fall landing -- 【133】土偶の石斧_片手落下着地", + "103204100": "[133] Dogu Celts _ one-handed entertainment 1 -- 【133】土偶の石斧_片手タメ1", + "103204101": "[133] Dogu Celts _ one-handed 1_ around (small) -- 【133】土偶の石斧_片手タメ1_周辺(小)", + "103204110": "[133] Dogu Celts _ one-handed Entertainment 2 -- 【133】土偶の石斧_片手タメ2", + "103204200": "[133] Dogu Celts _ Two hands usually one -- 【133】土偶の石斧_両手通常1", + "103204210": "[133] Dogu Celts _ Two hands usually 2 -- 【133】土偶の石斧_両手通常2", + "103204220": "[133] Dogu Celts _ Two hands usually three -- 【133】土偶の石斧_両手通常3", + "103204230": "[133] Dogu Celts _ two-handed jump 1 -- 【133】土偶の石斧_両手ジャンプ1", + "103204240": "[133] Dogu Celts _ two-handed fall loop -- 【133】土偶の石斧_両手落下ループ", + "103204250": "[133] Dogu Celts _ two-handed fall landing -- 【133】土偶の石斧_両手落下着地", + "103204300": "[133] Dogu Celts _ two-handed entertainment 1 -- 【133】土偶の石斧_両手タメ1", + "103204301": "[133] Celts of Dogu _ around two-handed 1_ -- 【133】土偶の石斧_両手タメ1_周辺", + "103204310": "[133] Dogu Celts _ two-handed Entertainment 2 -- 【133】土偶の石斧_両手タメ2", + "103204400": "[133] Dogu Celts _ left hand -- 【133】土偶の石斧_左手", + "103204410": "[133] Dogu Celts _ one-handed close -- 【133】土偶の石斧_片手近距離", + "103204420": "[133] Dogu Celts _ both hands close -- 【133】土偶の石斧_両手近距離", + "103204430": "[133] Dogu Celts _ guards _ one hand -- 【133】土偶の石斧_ガード_片手", + "103204440": "[133] Dogu Celts _ guards _ both hands -- 【133】土偶の石斧_ガード_両手", + "103204450": "[133] Dogu Celts _ Paris -- 【133】土偶の石斧_パリィ", + "103204490": "[133] Dogu Celts _ Falling Throw -- 【133】土偶の石斧_落下投げ", + "103204500": "[133] Dogu Celts _ behind -- 【133】土偶の石斧_背後", + "103204501": "[133] Celts of Dogu _ behind _ two-firing eyes -- 【133】土偶の石斧_背後_二撃目", + "103204505": "[133] Dogu Celts _ strengthened behind -- 【133】土偶の石斧_強化背後", + "103204506": "[133] Dogu Celts _ strengthened behind _ Two -- 【133】土偶の石斧_強化背後_二段目", + "103204510": "[133] Dogu Celts _ after Paris -- 【133】土偶の石斧_パリィ後", + "103204511": "[133] Dogu Celts _ Paris After _ Second hammer -- 【133】土偶の石斧_パリィ後_二撃目", + "103204515": "[133] Dogu Celts _ after strengthening Paris. -- 【133】土偶の石斧_強化パリィ後", + "103204516": "[133] Dogu Celts _ Paris after strengthening _ two -- 【133】土偶の石斧_強化パリィ後_二段目", + "103204517": "[133] Dogu Celts _ Paris after strengthening _ Sandanme -- 【133】土偶の石斧_強化パリィ後_三段目", + "103204520": "[133] Dogu Celts _ one-handed Dash -- 【133】土偶の石斧_片手ダッシュ", + "103204530": "[133] Dogu Celts _ both hands Dash -- 【133】土偶の石斧_両手ダッシュ", + "103204540": "[133] Dogu Celts _ one-handed step ahead -- 【133】土偶の石斧_片手ステップ前", + "103204580": "[133] Dogu Celts _ both hands step ahead -- 【133】土偶の石斧_両手ステップ前", + "103204600": "[133] Dogu Celts _ Parigard -- 【133】土偶の石斧_パリィガード", + "103300000": "Mallet _ one hand usually 1 -- 槌_片手通常1", + "103300010": "Mallet _ one hand usually two -- 槌_片手通常2", + "103300020": "Mallet _ one hand usually three -- 槌_片手通常3", + "103300030": "Mallet _ One handed jump -- 槌_片手ジャンプ1", + "103300040": "Mallet _ one-handed fall loop -- 槌_片手落下ループ", + "103300050": "Mallet _ one-handed fall landing -- 槌_片手落下着地", + "103300100": "Mallet _ one-handed entertainment 1 -- 槌_片手タメ1", + "103300105": "Mallet _ one-handed entertainment 1_ Max -- 槌_片手タメ1_最大", + "103300110": "Mallet _ one-handed Entertainment 2 -- 槌_片手タメ2", + "103300115": "Mallet _ one-handed entertainment 2_ Max -- 槌_片手タメ2_最大", + "103300200": "Mallet _ Two hands usually one -- 槌_両手通常1", + "103300210": "Mallet _ Two Hands usually 2 -- 槌_両手通常2", + "103300220": "Mallet _ Two hands usually three -- 槌_両手通常3", + "103300230": "Mallet _ two-handed jump 1 -- 槌_両手ジャンプ1", + "103300240": "Mallet _ two-handed fall loop -- 槌_両手落下ループ", + "103300250": "Mallet _ two-handed fall landing -- 槌_両手落下着地", + "103300300": "Mallet _ two-handed entertainment 1 -- 槌_両手タメ1", + "103300305": "Mallet _ two-handed 1_ maximum -- 槌_両手タメ1_最大", + "103300310": "Mallet _ two-handed Entertainment 2 -- 槌_両手タメ2", + "103300315": "Mallet _ two-handed 2_ maximum -- 槌_両手タメ2_最大", + "103300400": "Mallet _ Left Hand -- 槌_左手", + "103300410": "Mallet _ one hand close -- 槌_片手近距離", + "103300420": "Mallet _ Both hands close -- 槌_両手近距離", + "103300430": "Hammered _ guards _ one hand -- 槌_ガード_片手", + "103300440": "Hammered _ guards _ both hands -- 槌_ガード_両手", + "103300450": "Mallet _ Paris -- 槌_パリィ", + "103300470": "Mallet _ Large Throw -- 槌_大型投げ", + "103300490": "Mallet _ Falling Throw -- 槌_落下投げ", + "103300500": "Mallet _ behind -- 槌_背後", + "103300501": "The mallet _ Behind the second hammer -- 槌_背後_二撃目", + "103300505": "Mallet _ Reinforced behind -- 槌_強化背後", + "103300506": "Mallet _ Reinforced behind _ Two -- 槌_強化背後_二段目", + "103300510": "Mallet _ After Paris -- 槌_パリィ後", + "103300511": "Mallet _ Paris after second firing -- 槌_パリィ後_二撃目", + "103300515": "Paris after hammering _ strengthens -- 槌_強化パリィ後", + "103300516": "Paris hammered _ strengthens after _ Two -- 槌_強化パリィ後_二段目", + "103300517": "Paris hammered _ Strengthens after _ Sandanme -- 槌_強化パリィ後_三段目", + "103300520": "Mallet _ one-handed Dash -- 槌_片手ダッシュ", + "103300530": "Mallet _ Both hands dash -- 槌_両手ダッシュ", + "103300540": "Mallet _ one hand step before -- 槌_片手ステップ前", + "103300580": "Mallet _ Both hands step forward -- 槌_両手ステップ前", + "103300600": "Mallet _ Parigard -- 槌_パリィガード", + "103300610": "Hammer _ Behind Transition -- 槌_背後遷移", + "103300615": "Hammer _ Behind Transition _ missed -- 槌_背後遷移_空振り", + "103301000": "[60] War picks _ one hand usually 1 -- 【60】ウォーピック_片手通常1", + "103301010": "[60] War picks _ one hand usually two -- 【60】ウォーピック_片手通常2", + "103301020": "[60] War picks _ one hand usually three -- 【60】ウォーピック_片手通常3", + "103301030": "[60] War pick _ one handed jump -- 【60】ウォーピック_片手ジャンプ1", + "103301040": "[60] War pick _ one-handed fall loop -- 【60】ウォーピック_片手落下ループ", + "103301050": "[60] War pick _ one-handed fall landing -- 【60】ウォーピック_片手落下着地", + "103301100": "[60] War pick _ one-handed entertainment 1 -- 【60】ウォーピック_片手タメ1", + "103301110": "[60] War pick _ one-handed Entertainment 2 -- 【60】ウォーピック_片手タメ2", + "103301200": "[60] War pick _ two hands usually one -- 【60】ウォーピック_両手通常1", + "103301210": "[60] War pick _ Two hands usually 2 -- 【60】ウォーピック_両手通常2", + "103301220": "[60] War pick _ two hands usually three -- 【60】ウォーピック_両手通常3", + "103301230": "[60] War Pick _ two-handed jump 1 -- 【60】ウォーピック_両手ジャンプ1", + "103301240": "[60] War Pick _ two-handed fall loop -- 【60】ウォーピック_両手落下ループ", + "103301250": "[60] War Pick _ two-handed fall landing -- 【60】ウォーピック_両手落下着地", + "103301300": "[60] War Pick _ two-handed entertainment 1 -- 【60】ウォーピック_両手タメ1", + "103301310": "[60] War Pick _ two-handed Entertainment 2 -- 【60】ウォーピック_両手タメ2", + "103301400": "[60] War picks _ left hand -- 【60】ウォーピック_左手", + "103301490": "[60] War pick _ falling Throw -- 【60】ウォーピック_落下投げ", + "103301500": "[60] War picks _ behind -- 【60】ウォーピック_背後", + "103301501": "[60] War pick _ behind the second hammer -- 【60】ウォーピック_背後_二撃目", + "103301505": "[60] War pick _ reinforced behind -- 【60】ウォーピック_強化背後", + "103301506": "[60] War Pick _ reinforced behind _ Two -- 【60】ウォーピック_強化背後_二段目", + "103301510": "[60] War pick _ after Paris -- 【60】ウォーピック_パリィ後", + "103301511": "[60] War Pick _ Paris after the second hammer -- 【60】ウォーピック_パリィ後_二撃目", + "103301515": "[60] War pick _ after strengthening Paris -- 【60】ウォーピック_強化パリィ後", + "103301516": "[60] War pick _ after strengthening Paris _ two -- 【60】ウォーピック_強化パリィ後_二段目", + "103301517": "[60] War pick _ after strengthening Paris _ Sandanme -- 【60】ウォーピック_強化パリィ後_三段目", + "103301520": "[60] War pick _ one-handed Dash -- 【60】ウォーピック_片手ダッシュ", + "103301530": "[60] War Pick _ both hands Dash -- 【60】ウォーピック_両手ダッシュ", + "103301540": "[60] War pick _ one handed step before -- 【60】ウォーピック_片手ステップ前", + "103301580": "[60] War Pick _ two-handed step before -- 【60】ウォーピック_両手ステップ前", + "103302000": "【 】 Club _ one hand usually 1 -- 【 】クラブ_片手通常1", + "103302010": "【 】 Club _ one hand usually two -- 【 】クラブ_片手通常2", + "103302020": "Club _ one hand usually three -- 【 】クラブ_片手通常3", + "103302100": "Club _ one-handed entertainment 1 -- 【 】クラブ_片手タメ1", + "103302200": "【 】 Club _ both hands usually one -- 【 】クラブ_両手通常1", + "103302210": "【 】 Club _ both hands usually two -- 【 】クラブ_両手通常2", + "103302220": "【 】 Club _ Two hands usually three -- 【 】クラブ_両手通常3", + "103302300": "【 】 Club _ two-handed entertainment 1 -- 【 】クラブ_両手タメ1", + "103302400": "Club _ Left Hand -- 【 】クラブ_左手", + "103303000": "[61] Pickaxe _ one hand usually 1 -- 【61】つるはし_片手通常1", + "103303010": "[61] Pickaxe _ one hand usually two -- 【61】つるはし_片手通常2", + "103303020": "[61] Pickaxe _ one hand usually three -- 【61】つるはし_片手通常3", + "103303030": "[61] Pickaxe _ one-handed jump 1 -- 【61】つるはし_片手ジャンプ1", + "103303040": "[61] Pickaxe _ one-handed fall loop -- 【61】つるはし_片手落下ループ", + "103303050": "[61] Pickaxe _ one-handed fall landing -- 【61】つるはし_片手落下着地", + "103303100": "[61] Pickaxe _ one-handed entertainment 1 -- 【61】つるはし_片手タメ1", + "103303110": "[61] Pickaxe _ one-handed Entertainment 2 -- 【61】つるはし_片手タメ2", + "103303200": "[61] Pickaxe _ both hands usually one -- 【61】つるはし_両手通常1", + "103303210": "[61] Pickaxe _ Two hands usually 2 -- 【61】つるはし_両手通常2", + "103303220": "[61] Pickaxe _ Two hands usually three -- 【61】つるはし_両手通常3", + "103303230": "[61] Pickaxe _ two-handed jump 1 -- 【61】つるはし_両手ジャンプ1", + "103303240": "[61] Pickaxe _ two-handed fall loop -- 【61】つるはし_両手落下ループ", + "103303250": "[61] Pickaxe _ two-handed fall landing -- 【61】つるはし_両手落下着地", + "103303300": "[61] Pickaxe _ two-handed entertainment 1 -- 【61】つるはし_両手タメ1", + "103303310": "[61] Pickaxe _ two-handed Entertainment 2 -- 【61】つるはし_両手タメ2", + "103303400": "[61] Pickaxe _ Left Hand -- 【61】つるはし_左手", + "103303410": "[61] Pickaxe _ one hand close -- 【61】つるはし_片手近距離", + "103303420": "[61] Pickaxe _ both hands close -- 【61】つるはし_両手近距離", + "103303430": "[61] Pickaxe _ guard _ one hand -- 【61】つるはし_ガード_片手", + "103303440": "[61] Pickaxe _ guard _ both hands -- 【61】つるはし_ガード_両手", + "103303450": "[61] Pickaxe _ Paris -- 【61】つるはし_パリィ", + "103303490": "[61] Pickaxe _ Falling throw -- 【61】つるはし_落下投げ", + "103303500": "[61] Pickaxe _ behind -- 【61】つるはし_背後", + "103303501": "[61] Pickaxe _ Behind the second hammer -- 【61】つるはし_背後_二撃目", + "103303505": "[61] Pickaxe _ Reinforced behind -- 【61】つるはし_強化背後", + "103303506": "[61] Pickaxe _ reinforced behind _ Two -- 【61】つるはし_強化背後_二段目", + "103303510": "[61] Pickaxe _ after Paris -- 【61】つるはし_パリィ後", + "103303511": "[61] Pickaxe _ after Paris _ Second hammer -- 【61】つるはし_パリィ後_二撃目", + "103303515": "[61] Pickaxe _ After strengthening Paris -- 【61】つるはし_強化パリィ後", + "103303516": "[61] Pickaxe _ After strengthening Paris _ two -- 【61】つるはし_強化パリィ後_二段目", + "103303517": "[61] Pickaxe _ After strengthening Paris _ Sandanme -- 【61】つるはし_強化パリィ後_三段目", + "103303520": "[61] Pickaxe _ one-handed Dash -- 【61】つるはし_片手ダッシュ", + "103303530": "[61] Pickaxe _ both hands dash -- 【61】つるはし_両手ダッシュ", + "103303540": "[61] Pickaxe _ one hand step before -- 【61】つるはし_片手ステップ前", + "103303580": "[61] Pickaxe _ two-handed step before -- 【61】つるはし_両手ステップ前", + "103303600": "[61] Pickaxe _ Parigard -- 【61】つるはし_パリィガード", + "103500000": "Otsuchi _ one hand usually 1 -- 大槌_片手通常1", + "103500010": "Otsuchi _ one hand usually two -- 大槌_片手通常2", + "103500020": "Otsuchi _ one hand usually three -- 大槌_片手通常3", + "103500030": "Otsuchi _ One handed jump -- 大槌_片手ジャンプ1", + "103500040": "Otsuchi _ one-handed fall loop -- 大槌_片手落下ループ", + "103500050": "Otsuchi _ one-handed fall landing -- 大槌_片手落下着地", + "103500100": "Otsuchi _ one-handed entertainment 1 -- 大槌_片手タメ1", + "103500101": "Otsuchi _ one-handed 1_ around (small) -- 大槌_片手タメ1_周辺(小)", + "103500105": "Otsuchi _ one-handed entertainment 1_ Max -- 大槌_片手タメ1_最大", + "103500110": "Otsuchi _ one-handed Entertainment 2 -- 大槌_片手タメ2", + "103500115": "Otsuchi _ one-handed entertainment 2_ Max -- 大槌_片手タメ2_最大", + "103500200": "Otsuchi _ Two Hands usually -- 大槌_両手通常1", + "103500210": "Otsuchi _ Two Hands usually -- 大槌_両手通常2", + "103500220": "A sledgehammer _ usually three hands -- 大槌_両手通常3", + "103500230": "Otsuchi _ two-handed jump -- 大槌_両手ジャンプ1", + "103500240": "Otsuchi _ two-handed fall loop -- 大槌_両手落下ループ", + "103500250": "Otsuchi _ two-handed fall landing -- 大槌_両手落下着地", + "103500300": "Otsuchi _ Both Hands 1_ Center -- 大槌_両手タメ1_中心", + "103500301": "Otsuchi _ two-handed 1_ around -- 大槌_両手タメ1_周辺", + "103500305": "Otsuchi _ two-handed 1_ Center _ maximum -- 大槌_両手タメ1_中心_最大", + "103500310": "Otsuchi _ two-handed Entertainment 2 -- 大槌_両手タメ2", + "103500315": "Otsuchi _ two-handed 2_ maximum -- 大槌_両手タメ2_最大", + "103500400": "Otsuchi _ Left Hand -- 大槌_左手", + "103500410": "Otsuchi _ one hand close -- 大槌_片手近距離", + "103500420": "Otsuchi _ Both hands close -- 大槌_両手近距離", + "103500430": "Otsuchi _ guards _ one hand -- 大槌_ガード_片手", + "103500440": "Otsuchi _ guards _ both hands -- 大槌_ガード_両手", + "103500450": "Otsuchi _ Paris -- 大槌_パリィ", + "103500470": "Otsuchi _ Large Throw -- 大槌_大型投げ", + "103500490": "Otsuchi _ Falling Throw -- 大槌_落下投げ", + "103500500": "Otsuchi _ Behind -- 大槌_背後", + "103500501": "Two _ Behind the battering ram -- 大槌_背後_二段目", + "103500505": "Otsuchi _ Reinforced behind -- 大槌_強化背後", + "103500506": "Two _ Strengthens behind _ -- 大槌_強化背後_二段目", + "103500510": "Otsuchi _ After Paris -- 大槌_パリィ後", + "103500511": "Otsuchi _ Paris _ Two -- 大槌_パリィ後_二段目", + "103500515": "Otsuchi _ After strengthening Paris -- 大槌_強化パリィ後", + "103500516": "Paris _ Two after battering _ -- 大槌_強化パリィ後_二段目", + "103500517": "Paris _ Sandanme after battering _ -- 大槌_強化パリィ後_三段目", + "103500520": "Otsuchi _ one-handed Dash -- 大槌_片手ダッシュ", + "103500530": "The sledgehammer _ both hands dash -- 大槌_両手ダッシュ", + "103500540": "Otsuchi _ one hand step before -- 大槌_片手ステップ前", + "103500580": "The sledgehammer _ Two hands step ahead -- 大槌_両手ステップ前", + "103500600": "Otsuchi _ Parigard -- 大槌_パリィガード", + "103500610": "Otsuchi _ Behind the transition -- 大槌_背後遷移", + "103500800": "Otsuchi _ Magic Sword -- 大槌_魔法剣", + "103502000": "[124] Bango soldiers _ one hand usually 1 -- 【124】蛮兵_片手通常1", + "103502010": "[124] Bango soldiers _ one hand usually two -- 【124】蛮兵_片手通常2", + "103502020": "[124] Bango soldiers _ one hand usually three -- 【124】蛮兵_片手通常3", + "103502030": "[124] Bango soldier _ one-handed jump 1 -- 【124】蛮兵_片手ジャンプ1", + "103502040": "[124] Bango soldiers _ one-handed fall loop -- 【124】蛮兵_片手落下ループ", + "103502050": "[124] Bango soldiers _ one-handed fall landing -- 【124】蛮兵_片手落下着地", + "103502100": "[124] Bango soldier _ one-handed entertainment 1 -- 【124】蛮兵_片手タメ1", + "103502101": "[124] Bango soldiers _ one-handed 1_ around (small) -- 【124】蛮兵_片手タメ1_周辺(小)", + "103502110": "[124] Bango soldier _ one-handed Entertainment 2 -- 【124】蛮兵_片手タメ2", + "103502200": "[124] Bango soldiers _ Two hands usually one -- 【124】蛮兵_両手通常1", + "103502210": "[124] Bango soldiers _ Two hands usually 2 -- 【124】蛮兵_両手通常2", + "103502220": "[124] Bango soldiers _ Two hands usually three -- 【124】蛮兵_両手通常3", + "103502230": "[124] Bango soldiers _ two-handed jump 1 -- 【124】蛮兵_両手ジャンプ1", + "103502240": "[124] Bango soldiers _ two-handed fall loop -- 【124】蛮兵_両手落下ループ", + "103502250": "[124] Bango soldiers _ two-handed fall landing -- 【124】蛮兵_両手落下着地", + "103502300": "[124] Bango soldiers _ Both hands 1_ Center -- 【124】蛮兵_両手タメ1_中心", + "103502301": "[124] Bango soldiers _ two-handed 1_ around -- 【124】蛮兵_両手タメ1_周辺", + "103502310": "[124] Bango soldiers _ two-handed Entertainment 2 -- 【124】蛮兵_両手タメ2", + "103502400": "[124] Bango soldiers _ left hand -- 【124】蛮兵_左手", + "103502410": "[124] Bango soldiers _ one hand close -- 【124】蛮兵_片手近距離", + "103502420": "[124] Bango soldiers _ both hands close -- 【124】蛮兵_両手近距離", + "103502430": "[124] Bango Soldiers _ guards _ one hand -- 【124】蛮兵_ガード_片手", + "103502440": "[124] Bango Soldiers _ guards _ both hands -- 【124】蛮兵_ガード_両手", + "103502450": "[124] Bango Soldiers _ Paris -- 【124】蛮兵_パリィ", + "103502490": "[124] Bango soldiers _ falling throws -- 【124】蛮兵_落下投げ", + "103502500": "[124] Bango soldiers _ behind -- 【124】蛮兵_背後", + "103502501": "[124] Bango Soldiers _ behind _ two-firing eyes -- 【124】蛮兵_背後_二撃目", + "103502505": "[124] Bango soldiers _ strengthened behind -- 【124】蛮兵_強化背後", + "103502506": "[124] Bango Soldiers _ strengthened behind _ Two -- 【124】蛮兵_強化背後_二段目", + "103502510": "[124] Bango soldiers _ after Paris -- 【124】蛮兵_パリィ後", + "103502511": "[124] Bango Soldiers _ after Paris _ Two firing eyes -- 【124】蛮兵_パリィ後_二撃目", + "103502515": "[124] Bango soldiers _ after strengthening Paris. -- 【124】蛮兵_強化パリィ後", + "103502516": "[124] Bango soldiers _ Paris after strengthening _ two -- 【124】蛮兵_強化パリィ後_二段目", + "103502517": "[124] Bango soldiers _ Paris after strengthening _ Sandanme -- 【124】蛮兵_強化パリィ後_三段目", + "103502520": "[124] Bango soldiers _ one-handed Dash -- 【124】蛮兵_片手ダッシュ", + "103502530": "[124] Bango soldiers _ both hands dash -- 【124】蛮兵_両手ダッシュ", + "103502540": "[124] Bango Soldier _ one hand step before -- 【124】蛮兵_片手ステップ前", + "103502580": "[124] Bango soldiers _ both hands step ahead -- 【124】蛮兵_両手ステップ前", + "103502600": "[124] Bango Soldiers _ Parigard -- 【124】蛮兵_パリィガード", + "103503100": "[70] Sumo _ one-handed entertainment 1 -- 【70】スモウ_片手タメ1", + "103503300": "[70] Sumo _ Both hands 1_ Center -- 【70】スモウ_両手タメ1_中心", + "103600000": "Spear _ one hand usually 1 -- 槍_片手通常1", + "103600001": "Spear _ one hand usually 1 (stick) -- 槍_片手通常1(棒)", + "103600010": "Spear _ one hand usually two -- 槍_片手通常2", + "103600011": "Spear _ one hand usually 2 (stick) -- 槍_片手通常2(棒)", + "103600020": "Spear _ one hand usually three -- 槍_片手通常3", + "103600021": "Spear _ one hand usually three (stick) -- 槍_片手通常3(棒)", + "103600030": "Spear _ One handed jump -- 槍_片手ジャンプ1", + "103600031": "Spear _ one-handed jump 1 (stick) -- 槍_片手ジャンプ1(棒)", + "103600040": "Spear _ One Handed fall loop -- 槍_片手落下ループ", + "103600041": "Spear _ One Handed Fall loop (stick) -- 槍_片手落下ループ(棒)", + "103600050": "Spear _ one-handed fall landing -- 槍_片手落下着地", + "103600051": "Spear _ one-handed fall landing (stick) -- 槍_片手落下着地(棒)", + "103600100": "Spear _ one-handed entertainment 1 -- 槍_片手タメ1", + "103600101": "Spear _ one-handed entertainment 1 (stick) -- 槍_片手タメ1(棒)", + "103600105": "Spear _ one-handed Entertainment 1 MAX -- 槍_片手タメ1最大", + "103600106": "Spear _ one-handed entertainment 1 max (stick) -- 槍_片手タメ1最大(棒)", + "103600110": "Spear _ one-handed Entertainment 2 -- 槍_片手タメ2", + "103600111": "Spear _ one hand Entertainment 2 (stick) -- 槍_片手タメ2(棒)", + "103600115": "Spear _ one-handed Entertainment 2 Max -- 槍_片手タメ2最大", + "103600116": "Spear _ one hand Entertainment 2 max (stick) -- 槍_片手タメ2最大(棒)", + "103600200": "Spear _ Two hands usually one -- 槍_両手通常1", + "103600201": "Spear _ Two hands usually one (stick) -- 槍_両手通常1(棒)", + "103600210": "Spear _ Two Hands usually 2 -- 槍_両手通常2", + "103600211": "Spear _ Two Hands usually 2 (stick) -- 槍_両手通常2(棒)", + "103600220": "Spear _ Two hands usually three -- 槍_両手通常3", + "103600221": "Spear _ Two Hands usually 3 (stick) -- 槍_両手通常3(棒)", + "103600230": "Spear _ two-handed jump 1 -- 槍_両手ジャンプ1", + "103600231": "Spear _ two-handed jump 1 (stick) -- 槍_両手ジャンプ1(棒)", + "103600240": "Spear _ two-handed fall loop -- 槍_両手落下ループ", + "103600241": "Spear _ two-handed Fall loop (stick) -- 槍_両手落下ループ(棒)", + "103600250": "Spear _ two-handed fall landing -- 槍_両手落下着地", + "103600251": "Spear _ two-handed fall landing (stick) -- 槍_両手落下着地(棒)", + "103600300": "Spear _ two-handed entertainment 1 -- 槍_両手タメ1", + "103600301": "Spear _ two-handed Entertainment 1 (stick) -- 槍_両手タメ1(棒)", + "103600305": "Spear _ two-handed entertainment 1 MAX -- 槍_両手タメ1最大", + "103600306": "Spear _ two-handed one maximum (stick) -- 槍_両手タメ1最大(棒)", + "103600310": "Spear _ two-handed Entertainment 2 -- 槍_両手タメ2", + "103600311": "Spear _ two-handed Entertainment 2 (stick) -- 槍_両手タメ2(棒)", + "103600315": "Spear _ two-handed entertainment max -- 槍_両手タメ2最大", + "103600316": "Spear _ two-handed maximum (stick) -- 槍_両手タメ2最大(棒)", + "103600400": "Spear _ Left Hand -- 槍_左手", + "103600401": "Spear _ Left Hand (stick) -- 槍_左手(棒)", + "103600410": "Spear _ one hand short distance -- 槍_片手近距離", + "103600411": "Spear _ one hand short distance (stick) -- 槍_片手近距離(棒)", + "103600420": "Spear _ Both hands close -- 槍_両手近距離", + "103600421": "Spear _ Both hands close range (stick) -- 槍_両手近距離(棒)", + "103600430": "Spear _ guard _ one hand -- 槍_ガード_片手", + "103600440": "Spear _ guard _ both hands -- 槍_ガード_両手", + "103600450": "Spear _ Paris -- 槍_パリィ", + "103600460": "Spear _ Guard during attack -- 槍_ガード中攻撃", + "103600461": "Spear _ Guard during attack (stick) -- 槍_ガード中攻撃(棒)", + "103600470": "Spear _ Large Throw -- 槍_大型投げ", + "103600490": "Spear _ Falling Throw -- 槍_落下投げ", + "103600500": "Behind the Spear -- 槍_背後", + "103600505": "Spear _ Strengthening behind -- 槍_強化背後", + "103600510": "Spear _ after Paris -- 槍_パリィ後", + "103600515": "Spear _ After strengthening Paris -- 槍_強化パリィ後", + "103600516": "Spear _ After strengthening Paris (bar) -- 槍_強化パリィ後(棒)", + "103600520": "Spear _ one-handed Dash -- 槍_片手ダッシュ", + "103600521": "Spear _ one-handed dash (stick) -- 槍_片手ダッシュ(棒)", + "103600530": "Spear _ Both hands dash -- 槍_両手ダッシュ", + "103600531": "Spear _ both Hands dash (stick) -- 槍_両手ダッシュ(棒)", + "103600540": "Spear _ one hand step before -- 槍_片手ステップ前", + "103600541": "Spear _ one hand step before (stick) -- 槍_片手ステップ前(棒)", + "103600600": "Spear _ Parigard -- 槍_パリィガード", + "103600601": "Spear _ Parigard (stick) -- 槍_パリィガード(棒)", + "103600610": "Spear _ Behind the transition -- 槍_背後遷移", + "103600611": "Spear _ Behind the Transition (stick) -- 槍_背後遷移(棒)", + "103600615": "The spear _ Behind the transition _ missed -- 槍_背後遷移_空振り", + "103600616": "Spear _ Behind the transition _ missed (stick) -- 槍_背後遷移_空振り(棒)", + "103600721": "Spear _ Weak (stick) -- 槍_構え弱(棒)", + "103600723": "Spear _ Strong (stick) -- 槍_構え強(棒)", + "103600724": "Spear _ Holding Strong hammer (stick) -- 槍_構え強連撃(棒)", + "103600791": "Spear _ Bunk Attack (bar) -- 槍_二段攻撃(棒)", + "103600800": "Spear assault: A continuous hit -- 槍_突撃:連続ヒット", + "103600801": "Spear _ Assault: Continuous hit (stick) -- 槍_突撃:連続ヒット(棒)", + "103600810": "Spear assault: No continuous hit motion -- 槍_突撃:連続ヒットモーションなし", + "103600811": "Spear assault: Continuous hit final stage (bar) -- 槍_突撃:連続ヒット最終段(棒)", + "103600820": "Spear assault: Continuous hit last thrust -- 槍_突撃:連続ヒットラスト突き", + "103600821": "Spear assault: Continuous hit last thrust (stick) -- 槍_突撃:連続ヒットラスト突き(棒)", + "103602000": "[65] Rectangular Six _ one-handed usually 1 -- 【65】六目_片手通常1", + "103602010": "[65] Rectangular Six _ one hand usually two -- 【65】六目_片手通常2", + "103602020": "[65] Rectangular Six _ one hand usually three -- 【65】六目_片手通常3", + "103602030": "[65] Rectangular Six _ one-handed jump 1 -- 【65】六目_片手ジャンプ1", + "103602040": "[65] Rectangular Six _ one-handed fall loop -- 【65】六目_片手落下ループ", + "103602050": "[65] Rectangular Six _ one-handed fall landing -- 【65】六目_片手落下着地", + "103602100": "[65] Rectangular Six _ one-handed entertainment 1 -- 【65】六目_片手タメ1", + "103602101": "[65] Rectangular Six _ one-handed 1_ second hammer -- 【65】六目_片手タメ1_二撃目", + "103602110": "[65] Rectangular Six _ one-handed Entertainment 2 -- 【65】六目_片手タメ2", + "103602200": "[65] Rectangular Six _ Two hands usually one -- 【65】六目_両手通常1", + "103602210": "[65] Rectangular Six _ Two hands usually 2 -- 【65】六目_両手通常2", + "103602220": "[65] Rectangular Six _ Two hands usually three -- 【65】六目_両手通常3", + "103602230": "[65] Rectangular Six _ two-handed jump 1 -- 【65】六目_両手ジャンプ1", + "103602240": "[65] Rectangular Six _ two-handed fall loop -- 【65】六目_両手落下ループ", + "103602250": "[65] Rectangular Six _ two-handed fall landing -- 【65】六目_両手落下着地", + "103602300": "[65] Rectangular Six _ two-handed entertainment 1 -- 【65】六目_両手タメ1", + "103602310": "[65] Rectangular Six _ two-handed Entertainment 2 -- 【65】六目_両手タメ2", + "103602400": "[65] Rectangular Six _ left hand -- 【65】六目_左手", + "103602410": "[65] Rectangular Six _ one hand close -- 【65】六目_片手近距離", + "103602420": "[65] Rectangular Six _ both hands close -- 【65】六目_両手近距離", + "103602430": "[65] Rectangular Six _ guards _ one hand -- 【65】六目_ガード_片手", + "103602440": "[65] Rectangular Six _ guards _ both hands -- 【65】六目_ガード_両手", + "103602450": "[65] Rectangular Six _ Paris -- 【65】六目_パリィ", + "103602460": "[65] Rectangular Six _ guard during attack -- 【65】六目_ガード中攻撃", + "103602490": "[65] Rectangular six _ Falling throw -- 【65】六目_落下投げ", + "103602500": "[65] Rectangular six _ behind -- 【65】六目_背後", + "103602505": "[65] Rectangular six _ strengthening behind -- 【65】六目_強化背後", + "103602510": "[65] Rectangular Six _ after Paris -- 【65】六目_パリィ後", + "103602515": "[65] Rectangular Six _ Paris after strengthening -- 【65】六目_強化パリィ後", + "103602516": "[65] Rectangular Six _ Paris after strengthening _ two -- 【65】六目_強化パリィ後_二段目", + "103602520": "[65] Rectangular Six _ one-handed Dash -- 【65】六目_片手ダッシュ", + "103602530": "[65] Rectangular Six _ both hands dash -- 【65】六目_両手ダッシュ", + "103602540": "[65] Rectangular Six _ one-handed step before -- 【65】六目_片手ステップ前", + "103602580": "[65] Rectangular Six _ two-handed steps ago -- 【65】六目_両手ステップ前", + "103602600": "[65] Rectangular Six _ Parigard -- 【65】六目_パリィガード", + "103602800": "[65] Rectangular Six _ Magic Sword -- 【65】六目_魔法剣", + "103603300": "[68] Spear of the Dragon hunting _ two-handed entertainment 1 -- 【68】竜狩りの槍_両手タメ1", + "103603310": "[68] Dragon Hunting Spear _ two-handed Entertainment 2 -- 【68】竜狩りの槍_両手タメ2", + "103603800": "[68] Dragon Hunting Spear _ Magic Sword -- 【68】竜狩りの槍_魔法剣", + "103604100": "[63] Partisan _ one-handed entertainment 1 -- 【63】パルチザン_片手タメ1", + "103604110": "[63] Partisan _ one-handed Entertainment 2 -- 【63】パルチザン_片手タメ2", + "103604300": "[63] Partisan _ two-handed entertainment 1 -- 【63】パルチザン_両手タメ1", + "103604310": "[63] Partisan _ two-handed Entertainment 2 -- 【63】パルチザン_両手タメ2", + "103605000": "[64] Daemon Spear _ one hand usually 1 -- 【64】デーモンの槍_片手通常1", + "103605010": "[64] Daemon Spear _ one hand usually two -- 【64】デーモンの槍_片手通常2", + "103605020": "[64] Daemon Spear _ one hand usually three -- 【64】デーモンの槍_片手通常3", + "103605030": "[64] Demon Spear _ one handed jump -- 【64】デーモンの槍_片手ジャンプ1", + "103605040": "[64] Demon Spear _ one-handed fall loop -- 【64】デーモンの槍_片手落下ループ", + "103605050": "[64] Demon Spear _ one-handed fall landing -- 【64】デーモンの槍_片手落下着地", + "103605100": "[64] Demon Spear _ one-handed entertainment 1 -- 【64】デーモンの槍_片手タメ1", + "103605110": "[64] Demon Spear _ one-handed Entertainment 2 -- 【64】デーモンの槍_片手タメ2", + "103605200": "[64] Demon Spear _ Two hands usually one -- 【64】デーモンの槍_両手通常1", + "103605210": "[64] Demon Spear _ Two hands usually 2 -- 【64】デーモンの槍_両手通常2", + "103605220": "[64] Demon Spear _ Two hands usually three -- 【64】デーモンの槍_両手通常3", + "103605230": "[64] Demon Spear _ two-handed jump 1 -- 【64】デーモンの槍_両手ジャンプ1", + "103605240": "[64] Demon Spear _ two-handed fall loop -- 【64】デーモンの槍_両手落下ループ", + "103605250": "[64] Demon Spear _ two-handed fall landing -- 【64】デーモンの槍_両手落下着地", + "103605300": "[64] Demon Spear _ two-handed entertainment 1 -- 【64】デーモンの槍_両手タメ1", + "103605310": "[64] Demon Spear _ two-handed Entertainment 2 -- 【64】デーモンの槍_両手タメ2", + "103605400": "[64] Demon Spear _ left hand -- 【64】デーモンの槍_左手", + "103605410": "[64] Demon Spear _ one hand close -- 【64】デーモンの槍_片手近距離", + "103605420": "[64] Demon Spear _ both hands close -- 【64】デーモンの槍_両手近距離", + "103605430": "[64] Demon Spear _ guard _ one hand -- 【64】デーモンの槍_ガード_片手", + "103605440": "[64] Demon Spear _ guard _ both hands -- 【64】デーモンの槍_ガード_両手", + "103605450": "[64] Demon Spear _ Paris -- 【64】デーモンの槍_パリィ", + "103605460": "[64] Demon Spear _ guard during attack -- 【64】デーモンの槍_ガード中攻撃", + "103605490": "[64] Demon Spear _ Falling Throw -- 【64】デーモンの槍_落下投げ", + "103605500": "[64] Demon Spear _ behind -- 【64】デーモンの槍_背後", + "103605505": "[64] Demon Spear _ reinforced behind -- 【64】デーモンの槍_強化背後", + "103605510": "[64] Demon Spear _ after Paris -- 【64】デーモンの槍_パリィ後", + "103605515": "[64] Demon Spear _ after strengthening Paris -- 【64】デーモンの槍_強化パリィ後", + "103605516": "[64] Demon Spear _ after strengthening Paris _ two -- 【64】デーモンの槍_強化パリィ後_二段目", + "103605520": "[64] Demon Spear _ one-handed Dash -- 【64】デーモンの槍_片手ダッシュ", + "103605530": "[64] Demon Spear _ both hands dash -- 【64】デーモンの槍_両手ダッシュ", + "103605540": "[64] Demon Spear _ one hand step before -- 【64】デーモンの槍_片手ステップ前", + "103605580": "[64] Demon Spear _ hands before step -- 【64】デーモンの槍_両手ステップ前", + "103605600": "[64] Demon Spear _ Parigard -- 【64】デーモンの槍_パリィガード", + "103606000": "[66] Silver Knight Spear _ one hand usually 1 -- 【66】銀騎士の槍_片手通常1", + "103606010": "[66] Silver Knight Spear _ one hand usually two -- 【66】銀騎士の槍_片手通常2", + "103606020": "[66] Silver Knight Spear _ one hand usually three -- 【66】銀騎士の槍_片手通常3", + "103606030": "[66] Silver Knight Spear _ one-handed jump 1 -- 【66】銀騎士の槍_片手ジャンプ1", + "103606040": "[66] Silver Knight Spear _ one-handed fall loop -- 【66】銀騎士の槍_片手落下ループ", + "103606050": "[66] Silver Knight's spear _ one-handed fall landing -- 【66】銀騎士の槍_片手落下着地", + "103606100": "[66] Silver Knight Spear _ one-handed entertainment 1 -- 【66】銀騎士の槍_片手タメ1", + "103606110": "[66] Silver Knight Spear _ one-handed Entertainment 2 -- 【66】銀騎士の槍_片手タメ2", + "103606200": "[66] Silver Knight Spear _ two hands usually one -- 【66】銀騎士の槍_両手通常1", + "103606210": "[66] Silver Knight Spear _ Two hands usually 2 -- 【66】銀騎士の槍_両手通常2", + "103606220": "[66] Silver Knight Spear _ two hands usually three -- 【66】銀騎士の槍_両手通常3", + "103606230": "[66] Silver Knight Spear _ two-handed jump 1 -- 【66】銀騎士の槍_両手ジャンプ1", + "103606240": "[66] Silver Knight Spear _ two-handed fall loop -- 【66】銀騎士の槍_両手落下ループ", + "103606250": "[66] Silver Knight Spear _ two-handed fall landing -- 【66】銀騎士の槍_両手落下着地", + "103606300": "[66] Silver Knight Spear _ two-handed entertainment 1 -- 【66】銀騎士の槍_両手タメ1", + "103606310": "[66] Silver Knight Spear _ two-handed Entertainment 2 -- 【66】銀騎士の槍_両手タメ2", + "103606400": "[66] Silver Knight Spear _ left hand -- 【66】銀騎士の槍_左手", + "103606410": "[66] Silver Knight Spear _ one hand close -- 【66】銀騎士の槍_片手近距離", + "103606420": "[66] Silver Knight Spear _ both hands close -- 【66】銀騎士の槍_両手近距離", + "103606430": "[66] Silver Knight Spear _ guard _ one hand -- 【66】銀騎士の槍_ガード_片手", + "103606440": "[66] Silver Knight Spear _ guard _ both hands -- 【66】銀騎士の槍_ガード_両手", + "103606450": "[66] Silver Knight Spear _ Paris -- 【66】銀騎士の槍_パリィ", + "103606460": "[66] Silver Knight Spear _ guard during attack -- 【66】銀騎士の槍_ガード中攻撃", + "103606490": "[66] Silver Knight Spear _ Falling Throw -- 【66】銀騎士の槍_落下投げ", + "103606500": "[66] Silver Knight Spear _ behind -- 【66】銀騎士の槍_背後", + "103606505": "[66] Silver Knight Spear _ reinforced behind -- 【66】銀騎士の槍_強化背後", + "103606510": "[66] Silver Knight's spear _ after Paris -- 【66】銀騎士の槍_パリィ後", + "103606515": "[66] Silver Knight Spear _ after strengthening Paris -- 【66】銀騎士の槍_強化パリィ後", + "103606516": "[66] Silver Knight Spear _ after strengthening Paris _ two -- 【66】銀騎士の槍_強化パリィ後_二段目", + "103606520": "[66] Silver Knight Spear _ one-handed Dash -- 【66】銀騎士の槍_片手ダッシュ", + "103606530": "[66] Silver Knight Spear _ both hands dash -- 【66】銀騎士の槍_両手ダッシュ", + "103606540": "[66] Silver Knight Spear _ one hand step before -- 【66】銀騎士の槍_片手ステップ前", + "103606580": "[66] Silver Knight Spear _ hands before step -- 【66】銀騎士の槍_両手ステップ前", + "103606600": "[66] Silver Knight Spear _ Parigard -- 【66】銀騎士の槍_パリィガード", + "103608000": "[67] Pike _ one hand usually 1 -- 【67】パイク_片手通常1", + "103608010": "[67] Pike _ one hand usually two -- 【67】パイク_片手通常2", + "103608020": "[67] Pike _ one hand usually three -- 【67】パイク_片手通常3", + "103608100": "[67] Pike _ one-handed entertainment 1 -- 【67】パイク_片手タメ1", + "103608110": "[67] Pike _ one-handed Entertainment 2 -- 【67】パイク_片手タメ2", + "103608200": "[67] Pike _ hands usually one -- 【67】パイク_両手通常1", + "103608210": "[67] Pike _ hands usually two -- 【67】パイク_両手通常2", + "103608220": "[67] Pike _ hands usually three -- 【67】パイク_両手通常3", + "103608300": "[67] Pike _ two-handed entertainment 1 -- 【67】パイク_両手タメ1", + "103608310": "[67] Pike _ two-handed Entertainment 2 -- 【67】パイク_両手タメ2", + "103608400": "[67] Pike _ left Hand -- 【67】パイク_左手", + "103608520": "[67] Pike _ one-handed Dash -- 【67】パイク_片手ダッシュ", + "103608521": "[67] Pike _ one-handed dash (stop) -- 【67】パイク_片手ダッシュ(止め)", + "103608530": "[67] Pike _ both hands dash -- 【67】パイク_両手ダッシュ", + "103608531": "[67] Pike _ both hands dash (stop) -- 【67】パイク_両手ダッシュ(止め)", + "103800000": "Axe Spear _ one hand usually 1 -- 斧槍_片手通常1", + "103800010": "Axe Spear _ one hand usually two -- 斧槍_片手通常2", + "103800020": "Axe Spear _ one hand usually three -- 斧槍_片手通常3", + "103800030": "Axe Spear _ One handed jump -- 斧槍_片手ジャンプ1", + "103800040": "Axe Spear _ One handed fall loop -- 斧槍_片手落下ループ", + "103800050": "Axe Spear _ one-handed fall landing -- 斧槍_片手落下着地", + "103800100": "Axe Spear _ one-handed entertainment 1 -- 斧槍_片手タメ1", + "103800105": "Axe Spear _ one-handed 1_ maximum -- 斧槍_片手タメ1_最大", + "103800110": "Axe Spear _ one-handed Entertainment 2 -- 斧槍_片手タメ2", + "103800115": "Axe Spear _ one-handed 2_ maximum -- 斧槍_片手タメ2_最大", + "103800200": "Axe Spear _ Two hands usually one -- 斧槍_両手通常1", + "103800210": "Axe Spear _ Two hands usually -- 斧槍_両手通常2", + "103800220": "Axe Spear _ Two hands usually three -- 斧槍_両手通常3", + "103800230": "Axe Spear _ two-handed jump 1 -- 斧槍_両手ジャンプ1", + "103800240": "Axe Spear _ two-handed fall loop -- 斧槍_両手落下ループ", + "103800250": "Axe Spear _ two-handed fall landing -- 斧槍_両手落下着地", + "103800300": "Axe Spear _ two-handed entertainment 1 -- 斧槍_両手タメ1", + "103800301": "Axe Spear _ two-handed 1_ -- 斧槍_両手タメ1_二撃目", + "103800305": "Axe Spear _ two-handed 1_ Max -- 斧槍_両手タメ1_最大", + "103800306": "Axe Spear _ two-handed 1_, Max -- 斧槍_両手タメ1_二撃目_最大", + "103800310": "Axe Spear _ two-handed Entertainment 2 -- 斧槍_両手タメ2", + "103800315": "Axe Spear _ two-handed 2_ Max -- 斧槍_両手タメ2_最大", + "103800400": "Axe Spear _ Left hand -- 斧槍_左手", + "103800410": "Axe Spear _ one hand close -- 斧槍_片手近距離", + "103800420": "Axe Spear _ both hands close -- 斧槍_両手近距離", + "103800430": "Axe Spear _ guard _ one hand -- 斧槍_ガード_片手", + "103800440": "Axe Spear _ guard _ both hands -- 斧槍_ガード_両手", + "103800450": "Axe Spear _ Paris -- 斧槍_パリィ", + "103800470": "Axe Spear _ Large Throw -- 斧槍_大型投げ", + "103800490": "Axe Spear _ Falling Throw -- 斧槍_落下投げ", + "103800500": "Axe Spear _ behind -- 斧槍_背後", + "103800505": "Axe Spear _ Reinforced behind -- 斧槍_強化背後", + "103800510": "Axe Spear _ after Paris -- 斧槍_パリィ後", + "103800515": "Axe Spear _ after strengthening Paris -- 斧槍_強化パリィ後", + "103800516": "Ax Spear _ After strengthening Paris _ two -- 斧槍_強化パリィ後_二段目", + "103800520": "Axe Spear _ one handed Dash -- 斧槍_片手ダッシュ", + "103800530": "Axe Spear _ both hands dash -- 斧槍_両手ダッシュ", + "103800540": "Axe Spear _ one hand step before -- 斧槍_片手ステップ前", + "103800580": "Axe Spear _ Hands before step -- 斧槍_両手ステップ前", + "103800600": "Axe Spear _ Parigard -- 斧槍_パリィガード", + "103800610": "Axe Spear _ Behind the transition -- 斧槍_背後遷移", + "103800720": "Axe Spear _ poised weak attack -- 斧槍_構え弱攻撃", + "103802000": "[109] Lucerne _ one hand usually 1 -- 【109】ルッツェルン(刺突)_片手通常1", + "103802010": "[109] Lucerne (thrust) _ one hand usually two -- 【109】ルッツェルン(刺突)_片手通常2", + "103802020": "[109] Lucerne (thrust) _ one hand usually three -- 【109】ルッツェルン(刺突)_片手通常3", + "103802030": "[109] Lucerne (one-handed jump) -- 【109】ルッツェルン(刺突)_片手ジャンプ1", + "103802040": "[109] Lucerne (Thrust) _ one-handed fall loop -- 【109】ルッツェルン(刺突)_片手落下ループ", + "103802050": "[109] Lucerne (Thrust) _ one-handed fall landing -- 【109】ルッツェルン(刺突)_片手落下着地", + "103802100": "[109] Lucerne _ one-handed entertainment 1 -- 【109】ルッツェルン(刺突)_片手タメ1", + "103802110": "[109] Lucerne (Thrust) _ one-handed Entertainment 2 -- 【109】ルッツェルン(刺突)_片手タメ2", + "103802200": "[109] Lucerne (Thrust) _ Two hands usually one -- 【109】ルッツェルン(刺突)_両手通常1", + "103802210": "[109] Lucerne (Thrust) _ Two hands usually -- 【109】ルッツェルン(刺突)_両手通常2", + "103802220": "[109] Lucerne (stabbing) _ Two hands usually three -- 【109】ルッツェルン(刺突)_両手通常3", + "103802230": "[109] Lucerne (Thrust) _ two-handed jump 1 -- 【109】ルッツェルン(刺突)_両手ジャンプ1", + "103802240": "[109] Lucerne (Thrust) _ Both hands Fall loop -- 【109】ルッツェルン(刺突)_両手落下ループ", + "103802250": "[109] Lucerne (Thrust) _ two-handed fall landing -- 【109】ルッツェルン(刺突)_両手落下着地", + "103802300": "[109] Lucerne (stabbing) _ two-handed entertainment 1 -- 【109】ルッツェルン(刺突)_両手タメ1", + "103802310": "[109] Lucerne (Stab) _ two-handed Entertainment 2 -- 【109】ルッツェルン(刺突)_両手タメ2", + "103802400": "[109] Lucerne _ Left Hand -- 【109】ルッツェルン(刺突)_左手", + "103802490": "[109] Lucerne (thrust) _ Falling throw -- 【109】ルッツェルン(刺突)_落下投げ", + "103802500": "[109] Lucerne (thrust) _ Behind -- 【109】ルッツェルン(刺突)_背後", + "103802505": "[109] Lucerne (thrust) _ Behind the reinforcement -- 【109】ルッツェルン(刺突)_強化背後", + "103802510": "[109] Lucerne (stabbing) _ after Paris -- 【109】ルッツェルン(刺突)_パリィ後", + "103802515": "[109] Lucerne (stabbing) _ After strengthening Paris -- 【109】ルッツェルン(刺突)_強化パリィ後", + "103802516": "[109] Lucerne (stabbing) _ After strengthening Paris _ two -- 【109】ルッツェルン(刺突)_強化パリィ後_二段目", + "103802520": "[109] Lucerne (Thrust) _ one-handed Dash -- 【109】ルッツェルン(刺突)_片手ダッシュ", + "103802530": "[109] Lucerne (Thrust) _ Both hands Dash -- 【109】ルッツェルン(刺突)_両手ダッシュ", + "103802540": "[109] Lucerne (needle thrust) _ one hand step before -- 【109】ルッツェルン(刺突)_片手ステップ前", + "103802580": "[109] Lucerne (Thrust) _ before both hands step -- 【109】ルッツェルン(刺突)_両手ステップ前", + "103803000": "[110] Giant's hull bird _ one hand usually 1 -- 【110】巨人のハルバード_片手通常1", + "103803010": "[110] Giant's hull bird _ one hand usually two -- 【110】巨人のハルバード_片手通常2", + "103803020": "[110] Giant's hull bird _ one hand usually three -- 【110】巨人のハルバード_片手通常3", + "103803030": "[110] Giant's hull bird _ one-handed jump 1 -- 【110】巨人のハルバード_片手ジャンプ1", + "103803040": "[110] Giant's hull bird _ one-handed fall loop -- 【110】巨人のハルバード_片手落下ループ", + "103803050": "[110] Giant's hull bird _ one-handed fall landing -- 【110】巨人のハルバード_片手落下着地", + "103803100": "[110] Giant's hull bird _ one-handed entertainment 1 -- 【110】巨人のハルバード_片手タメ1", + "103803110": "[110] Giant's hull bird _ one-handed Entertainment 2 -- 【110】巨人のハルバード_片手タメ2", + "103803200": "[110] Giant's hull bird _ hands usually one -- 【110】巨人のハルバード_両手通常1", + "103803210": "[110] Giant's hull bird _ two hands usually 2 -- 【110】巨人のハルバード_両手通常2", + "103803220": "[110] Giant's hull bird _ hands usually three -- 【110】巨人のハルバード_両手通常3", + "103803230": "[110] Giant's hull bird _ two-handed jump 1 -- 【110】巨人のハルバード_両手ジャンプ1", + "103803240": "[110] Giant's hull bird _ two-handed fall loop -- 【110】巨人のハルバード_両手落下ループ", + "103803250": "[110] Giant's hull bird _ two-handed fall landing -- 【110】巨人のハルバード_両手落下着地", + "103803300": "[110] Giant's hull bird _ two-handed entertainment 1 -- 【110】巨人のハルバード_両手タメ1", + "103803301": "[110] Giant's hull bird __ Two-handed 1_ -- 【110】巨人のハルバード__両手タメ1_二撃目", + "103803310": "[110] Giant's hull bird _ two-handed Entertainment 2 -- 【110】巨人のハルバード_両手タメ2", + "103803400": "[110] Giant's hull bird _ left hand -- 【110】巨人のハルバード_左手", + "103803410": "[110] Giant's hull bird _ one hand close -- 【110】巨人のハルバード_片手近距離", + "103803420": "[110] Giant's hull bird _ both hands close -- 【110】巨人のハルバード_両手近距離", + "103803430": "[110] Giant's hull bird _ guard _ one hand -- 【110】巨人のハルバード_ガード_片手", + "103803440": "[110] Giant's hull bird _ guard _ both hands -- 【110】巨人のハルバード_ガード_両手", + "103803450": "[110] Giant's hull bird _ Paris -- 【110】巨人のハルバード_パリィ", + "103803490": "[110] Giant's hull bird _ falling Throw -- 【110】巨人のハルバード_落下投げ", + "103803500": "[110] Giant's hull bird _ behind -- 【110】巨人のハルバード_背後", + "103803505": "[110] Giant's hull bird _ behind the reinforcement -- 【110】巨人のハルバード_強化背後", + "103803510": "[110] Giant's hull bird _ after Paris -- 【110】巨人のハルバード_パリィ後", + "103803515": "[110] Giant's hull bird _ after strengthening Paris -- 【110】巨人のハルバード_強化パリィ後", + "103803516": "[110] Giant's hull bird _ after strengthening Paris _ two -- 【110】巨人のハルバード_強化パリィ後_二段目", + "103803520": "[110] Giant's hull bird _ one-handed Dash -- 【110】巨人のハルバード_片手ダッシュ", + "103803530": "[110] Giant's hull bird _ both hands dash -- 【110】巨人のハルバード_両手ダッシュ", + "103803540": "[110] Giant's hull bird _ one hand step before -- 【110】巨人のハルバード_片手ステップ前", + "103803580": "[110] Giant's hull bird _ two-handed step ahead -- 【110】巨人のハルバード_両手ステップ前", + "103803600": "[110] Giant's hull bird _ Parigard -- 【110】巨人のハルバード_パリィガード", + "103804000": "[111] Dress _ one hand usually 1 -- 【111】ドレス_片手通常1", + "103804010": "[111] Dress _ one hand usually two -- 【111】ドレス_片手通常2", + "103804020": "[111] Dress _ one hand usually three -- 【111】ドレス_片手通常3", + "103804030": "[111] Dress _ one-handed jump 1 -- 【111】ドレス_片手ジャンプ1", + "103804040": "[111] Dress _ one-handed fall loop -- 【111】ドレス_片手落下ループ", + "103804050": "[111] Dress _ one-handed fall landing -- 【111】ドレス_片手落下着地", + "103804100": "[111] Dress _ one-handed entertainment 1 -- 【111】ドレス_片手タメ1", + "103804110": "[111] Dress _ one-handed Entertainment 2 -- 【111】ドレス_片手タメ2", + "103804200": "[111] Dress _ Two hands usually one -- 【111】ドレス_両手通常1", + "103804210": "[111] Dress _ Two hands usually 2 -- 【111】ドレス_両手通常2", + "103804220": "[111] Dress _ Two hands usually three -- 【111】ドレス_両手通常3", + "103804230": "[111] Dress _ two-handed jump 1 -- 【111】ドレス_両手ジャンプ1", + "103804240": "[111] Dress _ two-handed fall loop -- 【111】ドレス_両手落下ループ", + "103804250": "[111] Dress _ two-handed fall landing -- 【111】ドレス_両手落下着地", + "103804300": "[111] Dress _ two-handed entertainment 1 -- 【111】ドレス_両手タメ1", + "103804301": "[111] Dress __ Two-handed 1_ second firing -- 【111】ドレス__両手タメ1_二撃目", + "103804310": "[111] Dress _ two-handed Entertainment 2 -- 【111】ドレス_両手タメ2", + "103804400": "[111] Dress _ left Hand -- 【111】ドレス_左手", + "103804410": "[111] Dress _ one hand close -- 【111】ドレス_片手近距離", + "103804420": "[111] Dress _ both hands close range -- 【111】ドレス_両手近距離", + "103804430": "[111] Dress _ guard _ one hand -- 【111】ドレス_ガード_片手", + "103804440": "[111] Dress _ guard _ both hands -- 【111】ドレス_ガード_両手", + "103804450": "[111] Dress _ Paris -- 【111】ドレス_パリィ", + "103804490": "[111] Dress _ Falling throw -- 【111】ドレス_落下投げ", + "103804500": "[111] Dress _ behind -- 【111】ドレス_背後", + "103804505": "[111] Dress _ reinforced behind -- 【111】ドレス_強化背後", + "103804510": "[111] Dress _ after Paris -- 【111】ドレス_パリィ後", + "103804515": "[111] Dress _ after strengthening Paris -- 【111】ドレス_強化パリィ後", + "103804516": "[111] Dress _ after strengthening Paris _ two -- 【111】ドレス_強化パリィ後_二段目", + "103804520": "[111] Dress _ one-handed Dash -- 【111】ドレス_片手ダッシュ", + "103804530": "[111] Dress _ both hands dash -- 【111】ドレス_両手ダッシュ", + "103804540": "[111] Dress _ one hand step before -- 【111】ドレス_片手ステップ前", + "103804580": "[111] Dress _ hands Step before -- 【111】ドレス_両手ステップ前", + "103804600": "[111] Dress _ Parigard -- 【111】ドレス_パリィガード", + "103805100": "[112] Black Knight Axe Spear _ one-handed entertainment 1 -- 【112】黒騎士の斧槍_片手タメ1", + "103805300": "[112] Black Knight Axe Spear _ two-handed entertainment 1 -- 【112】黒騎士の斧槍_両手タメ1", + "103805301": "[112] Axe Spear of the Black Knight __ both hands 1_ second hammer -- 【112】黒騎士の斧槍__両手タメ1_二撃目", + "103805310": "[112] Black Knight Axe Spear _ two-handed Entertainment 2 -- 【112】黒騎士の斧槍_両手タメ2", + "104100000": "[52] Magic Fire _ one hand usually 1 -- 【52】呪術の火_片手通常1", + "104100100": "[52] Magic Fire _ one-handed entertainment 1 -- 【52】呪術の火_片手タメ1", + "104100200": "[52] Magic Fire _ hands usually one -- 【52】呪術の火_両手通常1", + "104100300": "[52] Magic Fire _ two-handed entertainment 1 -- 【52】呪術の火_両手タメ1", + "104100400": "[52] Magic Fire _ Left hand -- 【52】呪術の火_左手", + "104100430": "[52] Magic Fire _ guard _ one hand -- 【52】呪術の火_ガード_片手", + "104100440": "[52] Magic Fire _ guard _ both hands -- 【52】呪術の火_ガード_両手", + "104100610": "Catalyst _ Behind the transition -- 触媒_背後遷移", + "104101000": "[52] Magic Fire _ one hand usually 1 -- 【52】呪術の火_片手通常1", + "104101100": "[52] Magic Fire _ one-handed entertainment 1 -- 【52】呪術の火_片手タメ1", + "104101200": "[52] Magic Fire _ hands usually one -- 【52】呪術の火_両手通常1", + "104101300": "[52] Magic Fire _ two-handed entertainment 1 -- 【52】呪術の火_両手タメ1", + "104101400": "[52] Magic Fire _ Left hand -- 【52】呪術の火_左手", + "104101430": "[52] Magic Fire _ guard _ one hand -- 【52】呪術の火_ガード_片手", + "104101440": "[52] Magic Fire _ guard _ both hands -- 【52】呪術の火_ガード_両手", + "104102000": "[127] Spear Cane _ one hand usually 1 -- 【127】槍杖_片手通常1", + "104102100": "[127] Spear Cane _ one-handed entertainment 1 -- 【127】槍杖_片手タメ1", + "104102200": "[127] Spear Cane _ Two hands usually one -- 【127】槍杖_両手通常1", + "104102300": "[127] Spear Cane _ two-handed entertainment 1 -- 【127】槍杖_両手タメ1", + "104102400": "[127] Spear Cane _ left hand -- 【127】槍杖_左手", + "104102430": "[127] Spear Cane _ guard _ one hand -- 【127】槍杖_ガード_片手", + "104102440": "[127] Spear Cane _ guard _ both hands -- 【127】槍杖_ガード_両手", + "104102450": "[127] Talisman _ Spear of Thunder -- 【127】タリスマン_雷の槍", + "104103000": "[121] Lantern _ one hand usually 1 -- 【121】ランタン_片手通常1", + "104103100": "[121] Lantern _ one-handed entertainment 1 -- 【121】ランタン_片手タメ1", + "104103200": "[121] Lantern _ Two hands usually one -- 【121】ランタン_両手通常1", + "104103300": "[121] Lantern _ two-handed entertainment 1 -- 【121】ランタン_両手タメ1", + "104103400": "[121] Lantern _ left Hand -- 【121】ランタン_左手", + "104103410": "[121] Lantern _ one hand close -- 【121】ランタン_片手近距離", + "104103420": "[121] Lantern _ both hands close range -- 【121】ランタン_両手近距離", + "104103430": "[121] Lantern _ guard _ one hand -- 【121】ランタン_ガード_片手", + "104103440": "[121] Lantern _ guard _ both hands -- 【121】ランタン_ガード_両手", + "104104000": "[136] Lord of the Abyss _ one hand usually 1 -- 【136】深淵の主_片手通常1", + "104104100": "[136] Lord of the Abyss _ one-handed entertainment 1 -- 【136】深淵の主_片手タメ1", + "104104110": "[136] Lord of the Abyss _ one-handed Entertainment 2 -- 【136】深淵の主_片手タメ2", + "104104200": "[136] Lord of the Abyss _ Two hands usually one -- 【136】深淵の主_両手通常1", + "104104300": "[136] Lord of the Abyss _ two-handed entertainment 1 -- 【136】深淵の主_両手タメ1", + "104104310": "[136] Lord of the Abyss _ two-handed Entertainment 2 -- 【136】深淵の主_両手タメ2", + "104104400": "[136] Lord of the Abyss _ left hand -- 【136】深淵の主_左手", + "104104430": "[136] Lord of the Abyss _ guard _ one hand -- 【136】深淵の主_ガード_片手", + "104104440": "[136] The Lord of the Abyss _ both hands -- 【136】深淵の主_ガード_両手", + "104200000": "Fist _ one hand usually 1 -- 拳_片手通常1", + "104200010": "Fist _ one hand usually two -- 拳_片手通常2", + "104200020": "Fist _ one hand usually three -- 拳_片手通常3", + "104200030": "Fist _ One handed jump -- 拳_片手ジャンプ1", + "104200040": "Fist _ One handed fall loop -- 拳_片手落下ループ", + "104200050": "Fist _ one-handed fall landing -- 拳_片手落下着地", + "104200100": "Fist _ one-handed entertainment 1 -- 拳_片手タメ1", + "104200105": "Fist _ one-handed 1_ maximum -- 拳_片手タメ1_最大", + "104200110": "Fist _ one-handed Entertainment 2 -- 拳_片手タメ2", + "104200115": "Fist _ one-handed 2_ maximum -- 拳_片手タメ2_最大", + "104200400": "Fist _ Left Hand -- 拳_左手", + "104200410": "Fist _ one hand close -- 拳_片手近距離", + "104200430": "Fist _ guard _ one hand -- 拳_ガード_片手", + "104200450": "Fist _ Paris -- 拳_パリィ", + "104200470": "Fist _ Large Throw -- 拳_大型投げ", + "104200490": "Fist _ Drop Throw -- 拳_落下投げ", + "104200500": "Fist _ behind -- 拳_背後", + "104200501": "Fist _ Behind the second hammer -- 拳_背後_二撃目", + "104200505": "Fist _ Strengthening behind -- 拳_強化背後", + "104200506": "Fists _ Strengthened behind _ Two -- 拳_強化背後_二段目", + "104200510": "Fist _ after Paris -- 拳_パリィ後", + "104200511": "Fist _ Paris _ Second Hammer -- 拳_パリィ後_二撃目", + "104200515": "Fist _ after strengthening Paris -- 拳_強化パリィ後", + "104200516": "Paris Fist _ strengthens after _ Two -- 拳_強化パリィ後_二段目", + "104200517": "Paris Fist _ strengthens after _ Sandanme -- 拳_強化パリィ後_三段目", + "104200520": "Fist _ one handed Dash -- 拳_片手ダッシュ", + "104200540": "Fist _ one hand step before -- 拳_片手ステップ前", + "104200600": "Fist _ Parigard -- 拳_パリィガード", + "104200610": "Fist _ Behind the transition -- 拳_背後遷移", + "104201000": "Fist _ flesh _ one hand usually 1 -- 拳_肉_片手通常1", + "104201010": "Fist _ flesh _ one hand usually two -- 拳_肉_片手通常2", + "104201020": "Fist _ flesh _ one hand usually three -- 拳_肉_片手通常3", + "104201030": "Fist _ flesh _ one handed jump -- 拳_肉_片手ジャンプ1", + "104201040": "Fist _ flesh _ one-handed fall loop -- 拳_肉_片手落下ループ", + "104201050": "Fist _ flesh _ one-handed fall landing -- 拳_肉_片手落下着地", + "104201100": "Fist _ flesh _ one-handed entertainment 1 -- 拳_肉_片手タメ1", + "104201105": "Fist _ flesh _ one-handed 1_ maximum -- 拳_肉_片手タメ1_最大", + "104201110": "Fist _ meat _ one-handed Entertainment 2 -- 拳_肉_片手タメ2", + "104201115": "Fist _ flesh _ one-handed 2_ maximum -- 拳_肉_片手タメ2_最大", + "104201400": "Fist _ flesh _ Left hand -- 拳_肉_左手", + "104201410": "Fist _ flesh _ one hand short distance -- 拳_肉_片手近距離", + "104201430": "Fist _ flesh _ guards _ one hand -- 拳_肉_ガード_片手", + "104201450": "Fist _ flesh _ Paris -- 拳_肉_パリィ", + "104201470": "Fist _ Meat Large Throw -- 拳_肉大型投げ", + "104201490": "Fist _ flesh _ Falling Throw -- 拳_肉_落下投げ", + "104201500": "Fist _ flesh _ behind -- 拳_肉_背後", + "104201501": "Fist _ flesh _ behind _ two-firing eyes -- 拳_肉_背後_二撃目", + "104201505": "Fist _ flesh _ strengthens behind -- 拳_肉_強化背後", + "104201506": "Fists _ flesh _ strengthened behind _ Two -- 拳_肉_強化背後_二段目", + "104201510": "Fist _ flesh _ after Paris -- 拳_肉_パリィ後", + "104201511": "Fists _ Flesh _ after Paris _ two-firing eyes -- 拳_肉_パリィ後_二撃目", + "104201515": "Fist _ flesh _ after strengthening Paris -- 拳_肉_強化パリィ後", + "104201516": "Paris Fist _ flesh _ strengthens after _ Two -- 拳_肉_強化パリィ後_二段目", + "104201517": "Paris Fist _ flesh _ strengthens after _ Sandanme -- 拳_肉_強化パリィ後_三段目", + "104201520": "Fist _ flesh _ one-handed Dash -- 拳_肉_片手ダッシュ", + "104201540": "Fist _ flesh _ one-handed step before -- 拳_肉_片手ステップ前", + "104201600": "Fist _ flesh _ Parigard -- 拳_肉_パリィガード", + "104201610": "Fist _ Behind the transition -- 拳_背後遷移", + "104201615": "Fist _ Behind Transition _ missed -- 拳_背後遷移_空振り", + "104201700": "Fist _ meat _ ladder right-hand attack -- 拳_肉_ハシゴ右手攻撃", + "104201701": "Fist _ flesh _ ladder left hand attack -- 拳_肉_ハシゴ左手攻撃", + "104201702": "Fist _ meat _ ladder right foot attack -- 拳_肉_ハシゴ右足攻撃", + "104201703": "Fist _ meat _ ladder left foot attack -- 拳_肉_ハシゴ左足攻撃", + "104201900": "[117] Dragon Fist _ one hand usually -- 【117】竜拳_片手通常", + "104201901": "[117] Dragon Fist _ one hand large -- 【117】竜拳_片手大", + "104201902": "[117] Dragon Fist _ left hand -- 【117】竜拳_左手", + "104201903": "[117] Dragon Fist _ one-handed Dash -- 【117】竜拳_片手ダッシュ", + "104201904": "[117] Dragon Fist _ one handed step -- 【117】竜拳_片手ステップ", + "104201905": "[117] Dragon Fist _ one-handed jump attack -- 【117】竜拳_片手ジャンプ攻撃", + "104201906": "[117] Dragon Fist _ one-handed fall attack -- 【117】竜拳_片手落下中攻撃", + "104201907": "[117] Dragon Fist _ one-handed fall attack _ around -- 【117】竜拳_片手落下攻撃_周辺", + "104201908": "[117] Dragon Fist _ one hand close -- 【117】竜拳_片手近距離", + "104202000": "[86] Nails _ one hand usually 1 -- 【86】かぎ爪_片手通常1", + "104202010": "[86] Claws _ one hand usually two -- 【86】かぎ爪_片手通常2", + "104202020": "[86] Claws _ one hand usually three -- 【86】かぎ爪_片手通常3", + "104202030": "[86] Claws _ one-handed jump 1 -- 【86】かぎ爪_片手ジャンプ1", + "104202040": "[86] Claws _ one-handed fall loop -- 【86】かぎ爪_片手落下ループ", + "104202050": "[86] Claws _ one-handed fall landing -- 【86】かぎ爪_片手落下着地", + "104202100": "[86] Claws _ one-handed entertainment 1 -- 【86】かぎ爪_片手タメ1", + "104202110": "[86] Claw nails _ one-handed Entertainment 2 -- 【86】かぎ爪_片手タメ2", + "104202400": "[86] Claws _ left Hand -- 【86】かぎ爪_左手", + "104202410": "[86] Claws _ one hand close -- 【86】かぎ爪_片手近距離", + "104202430": "[86] Claws _ guards _ one hand -- 【86】かぎ爪_ガード_片手", + "104202450": "[86] Claws _ Paris -- 【86】かぎ爪_パリィ", + "104202490": "[86] Claws _ falling throws -- 【86】かぎ爪_落下投げ", + "104202500": "[86] Claws _ behind -- 【86】かぎ爪_背後", + "104202501": "[86] Claw _ behind _ Second Hammer -- 【86】かぎ爪_背後_二撃目", + "104202505": "[86] Claws _ reinforced behind -- 【86】かぎ爪_強化背後", + "104202506": "[86] Claws _ reinforced behind _ Two -- 【86】かぎ爪_強化背後_二段目", + "104202510": "[86] Claws _ after Paris -- 【86】かぎ爪_パリィ後", + "104202511": "[86] Claw _ Paris After _ Second hammer -- 【86】かぎ爪_パリィ後_二撃目", + "104202515": "[86] Claws _ after strengthening Paris -- 【86】かぎ爪_強化パリィ後", + "104202516": "[86] Claws _ after strengthening Paris _ two -- 【86】かぎ爪_強化パリィ後_二段目", + "104202517": "[86] Claws _ After strengthening Paris _ Sandanme -- 【86】かぎ爪_強化パリィ後_三段目", + "104202520": "[86] Claws _ one-handed Dash -- 【86】かぎ爪_片手ダッシュ", + "104202540": "[86] Claws _ one hand step before -- 【86】かぎ爪_片手ステップ前", + "104202600": "[86] Claws _ Parigard -- 【86】かぎ爪_パリィガード", + "104203000": "[123] Dark hand _ one hand usually 1 -- 【123】ダークハンド_片手通常1", + "104203010": "[123] Dark hand _ one hand usually two -- 【123】ダークハンド_片手通常2", + "104203020": "[123] Dark hand _ one hand usually three -- 【123】ダークハンド_片手通常3", + "104203030": "[123] Dark hand _ one handed jump -- 【123】ダークハンド_片手ジャンプ1", + "104203040": "[123] Dark hand _ one handed fall loop -- 【123】ダークハンド_片手落下ループ", + "104203050": "[123] Dark Hand _ one-handed fall landing -- 【123】ダークハンド_片手落下着地", + "104203100": "[123] Dark Hand _ one-handed entertainment 1 -- 【123】ダークハンド_片手タメ1", + "104203110": "[123] Dark Hand _ one-handed Entertainment 2 -- 【123】ダークハンド_片手タメ2", + "104203120": "[123] Dark Hand _ one-handed Entertainment 1/Magic Trigger -- 【123】ダークハンド_片手タメ1/魔法発動時", + "104203130": "[123] Dark Hand _ one-handed Entertainment 2/Magic Trigger -- 【123】ダークハンド_片手タメ2/魔法発動時", + "104203405": "[123] Dark Hand _ left Hand/Magic cannon activated -- 【123】ダークハンド_左手/魔砲発動時", + "104203410": "[123] Dark hand _ one hand close -- 【123】ダークハンド_片手近距離", + "104203430": "[123] Dark Hand _ guard _ one hand -- 【123】ダークハンド_ガード_片手", + "104203450": "[123] Dark Hand _ Paris -- 【123】ダークハンド_パリィ", + "104203490": "[123] Dark hand _ falling throw -- 【123】ダークハンド_落下投げ", + "104203500": "[123] Dark hand _ behind -- 【123】ダークハンド_背後", + "104203501": "[123] Dark Hand _ behind the second hammer -- 【123】ダークハンド_背後_二撃目", + "104203505": "[123] Dark hand _ reinforced behind -- 【123】ダークハンド_強化背後", + "104203506": "[123] Dark Hand _ reinforced behind _ Two -- 【123】ダークハンド_強化背後_二段目", + "104203510": "[123] Dark hand _ after Paris -- 【123】ダークハンド_パリィ後", + "104203511": "[123] Dark Hand _ after Paris _ Second hammer -- 【123】ダークハンド_パリィ後_二撃目", + "104203515": "[123] Dark hand _ after strengthening Paris -- 【123】ダークハンド_強化パリィ後", + "104203516": "[123] Dark hand _ after strengthening Paris _ two -- 【123】ダークハンド_強化パリィ後_二段目", + "104203517": "[123] Dark hand _ after strengthening Paris _ Sandanme -- 【123】ダークハンド_強化パリィ後_三段目", + "104203520": "[123] Dark Hand _ one-handed Dash -- 【123】ダークハンド_片手ダッシュ", + "104203540": "[123] Dark hand _ one hand step before -- 【123】ダークハンド_片手ステップ前", + "104203600": "[123] Dark Hand _ Parigard -- 【123】ダークハンド_パリィガード", + "104204000": "[87] Large keel _ one hand usually 1 -- 【87】大竜骨_片手通常1", + "104204010": "[87] Large keel _ one hand usually two -- 【87】大竜骨_片手通常2", + "104204020": "[87] Large keel _ one hand usually three -- 【87】大竜骨_片手通常3", + "104204030": "[87] Large keel _ one-handed jump 1 -- 【87】大竜骨_片手ジャンプ1", + "104204040": "[87] Large keel _ one-handed fall loop -- 【87】大竜骨_片手落下ループ", + "104204050": "[87] Large keel _ one-handed fall landing -- 【87】大竜骨_片手落下着地", + "104204100": "[87] Large keel _ one-handed entertainment 1 -- 【87】大竜骨_片手タメ1", + "104204110": "[87] Large keel _ one-handed Entertainment 2 -- 【87】大竜骨_片手タメ2", + "104204400": "[87] Large keel _ left hand -- 【87】大竜骨_左手", + "104204410": "[87] Large keel _ one hand close -- 【87】大竜骨_片手近距離", + "104204430": "[87] Large Keel _ guard _ one hand -- 【87】大竜骨_ガード_片手", + "104204450": "【 87 】 Dai Keel _ Paris -- 【87】大竜骨_パリィ", + "104204490": "[87] Large keel _ falling throw -- 【87】大竜骨_落下投げ", + "104204500": "[87] Large keel _ behind -- 【87】大竜骨_背後", + "104204501": "[87] Large keel _ behind the second hammer -- 【87】大竜骨_背後_二撃目", + "104204505": "[87] Large keel _ reinforced behind -- 【87】大竜骨_強化背後", + "104204506": "[87] Large Keel _ strengthened behind _ Two -- 【87】大竜骨_強化背後_二段目", + "104204510": "[87] Large keel _ after Paris -- 【87】大竜骨_パリィ後", + "104204511": "[87] Keel _ Paris _ Second Hammer -- 【87】大竜骨_パリィ後_二撃目", + "104204515": "[87] Large keel _ after strengthening Paris -- 【87】大竜骨_強化パリィ後", + "104204516": "[87] Large keel _ Paris after strengthening _ two -- 【87】大竜骨_強化パリィ後_二段目", + "104204517": "[87] Large keel _ Paris after strengthening _ Sandanme -- 【87】大竜骨_強化パリィ後_三段目", + "104204520": "[87] Large keel _ one-handed Dash -- 【87】大竜骨_片手ダッシュ", + "104204540": "[87] Large keel _ one-handed step before -- 【87】大竜骨_片手ステップ前", + "104204600": "【 87 】 Dai Keel _ Parigard -- 【87】大竜骨_パリィガード", + "104300000": "Whip _ one hand usually 1 -- 鞭_片手通常1", + "104300010": "Whip _ one hand usually two -- 鞭_片手通常2", + "104300020": "Whip _ one hand usually three -- 鞭_片手通常3", + "104300030": "Whip _ One handed jump -- 鞭_片手ジャンプ1", + "104300040": "Whip _ one-handed fall loop -- 鞭_片手落下ループ", + "104300050": "Whip _ one-handed fall landing -- 鞭_片手落下着地", + "104300100": "Whip _ one-handed entertainment 1 -- 鞭_片手タメ1", + "104300110": "Whip _ one-handed Entertainment 2 -- 鞭_片手タメ2", + "104300200": "Whip _ Two hands usually one -- 鞭_両手通常1", + "104300210": "Whips _ Two hands usually 2 -- 鞭_両手通常2", + "104300220": "Whip _ Two hands usually three -- 鞭_両手通常3", + "104300230": "Whip _ two-handed jump 1 -- 鞭_両手ジャンプ1", + "104300240": "Whip _ two-handed fall loop -- 鞭_両手落下ループ", + "104300250": "Whip _ two-handed fall landing -- 鞭_両手落下着地", + "104300300": "Whip _ two-handed entertainment 1 -- 鞭_両手タメ1", + "104300310": "Whip _ two-handed Entertainment 2 -- 鞭_両手タメ2", + "104300400": "Whip _ Left Hand -- 鞭_左手", + "104300410": "Whip _ one hand close -- 鞭_片手近距離", + "104300420": "Whip _ both hands close -- 鞭_両手近距離", + "104300430": "Whips _ guards _ one hand -- 鞭_ガード_片手", + "104300440": "Whips _ guards _ both hands -- 鞭_ガード_両手", + "104300450": "Whips _ Paris -- 鞭_パリィ", + "104300520": "Whip _ one-handed Dash -- 鞭_片手ダッシュ", + "104300530": "Whip _ both hands dash -- 鞭_両手ダッシュ", + "104300540": "Whip _ one hand step before -- 鞭_片手ステップ前", + "104300580": "Whip _ hands before step -- 鞭_両手ステップ前", + "104300600": "Whips _ Parigard -- 鞭_パリィガード", + "104300610": "Whip _ Behind the transition -- 鞭_背後遷移", + "104400000": "Bow _ one hand usually -- 弓_片手通常", + "104400100": "Bow _ one-handed entertainment -- 弓_片手タメ", + "104400200": "Bow _ Both hands usually -- 弓_両手通常", + "104400300": "Bow _ hands-on entertainment -- 弓_両手タメ", + "104400400": "Bow _ Left Hand -- 弓_左手", + "104400410": "Bow _ one hand close -- 弓_片手近距離", + "104400420": "Bow _ Both hands close -- 弓_両手近距離", + "104400430": "Bows _ Guards _ one hand -- 弓_ガード_片手", + "104400440": "Bows _ Guards _ both hands -- 弓_ガード_両手", + "104400450": "Bows _ Paris -- 弓_パリィ", + "104400500": "Bow _ Behind -- 弓_背後", + "104400510": "Bows _ After Paris -- 弓_パリィ後", + "104400520": "Bow _ one-handed Dash -- 弓_片手ダッシュ", + "104400530": "Bow _ Both hands dash -- 弓_両手ダッシュ", + "104400540": "Bow _ one hand step before -- 弓_片手ステップ前", + "104400580": "Bow _ Hands before step -- 弓_両手ステップ前", + "104400600": "Bows _ Parigard -- 弓_パリィガード", + "104400610": "Bow _ Behind the transition -- 弓_背後遷移", + "104600000": "Crossbow _ one hand usually -- 弩_片手通常", + "104600100": "Crossbow _ one-handed entertainment -- 弩_片手タメ", + "104600200": "Crossbow _ Both hands usually -- 弩_両手通常", + "104600300": "Crossbow _ hands-on entertainment -- 弩_両手タメ", + "104600400": "Crossbow _ Left Hand -- 弩_左手", + "104600410": "Crossbow _ one-handed close -- 弩_片手近距離", + "104600420": "Crossbow _ Both hands close -- 弩_両手近距離", + "104600430": "Crossbow _ guards _ one hand -- 弩_ガード_片手", + "104600440": "Crossbow _ guards _ both hands -- 弩_ガード_両手", + "104600450": "Crossbow _ Paris -- 弩_パリィ", + "104600500": "Crossbow _ behind -- 弩_背後", + "104600510": "Crossbow _ After Paris -- 弩_パリィ後", + "104600520": "Crossbow _ one-handed Dash -- 弩_片手ダッシュ", + "104600530": "Crossbow _ Both hands dash -- 弩_両手ダッシュ", + "104600540": "Crossbow _ one handed step ahead -- 弩_片手ステップ前", + "104600580": "Crossbow _ Both hands step ahead -- 弩_両手ステップ前", + "104600600": "Crossbow _ Parigard -- 弩_パリィガード", + "104600610": "Crossbow _ Behind the transition -- 弩_背後遷移", + "104700000": "Large Shield _ one hand usually 1 -- 大盾_片手通常1", + "104700010": "Large Shield _ one hand usually two -- 大盾_片手通常2", + "104700020": "Large Shield _ one hand usually three -- 大盾_片手通常3", + "104700030": "Big Shield _ One handed jump -- 大盾_片手ジャンプ1", + "104700040": "Large Shield _ one handed fall loop -- 大盾_片手落下ループ", + "104700050": "Large Shield _ one-handed fall landing -- 大盾_片手落下着地", + "104700100": "Large Shield _ one-handed entertainment 1 -- 大盾_片手タメ1", + "104700110": "Big Shield _ one-handed Entertainment 2 -- 大盾_片手タメ2", + "104700200": "Large Shield _ Two hands usually one -- 大盾_両手通常1", + "104700210": "Large shield _ both hands usually two -- 大盾_両手通常2", + "104700220": "Large Shield _ Two hands usually three -- 大盾_両手通常3", + "104700230": "Large Shield _ two-handed jump 1 -- 大盾_両手ジャンプ1", + "104700240": "Large Shield _ two-handed fall loop -- 大盾_両手落下ループ", + "104700250": "Large Shield _ two-handed fall landing -- 大盾_両手落下着地", + "104700300": "Large Shield _ two-handed entertainment 1 -- 大盾_両手タメ1", + "104700310": "Large Shield _ two-handed Entertainment 2 -- 大盾_両手タメ2", + "104700400": "Big Shield _ Left hand -- 大盾_左手", + "104700410": "Large Shield _ one hand close -- 大盾_片手近距離", + "104700420": "Large Shield _ both hands close -- 大盾_両手近距離", + "104700430": "Large Shield _ guard _ one hand -- 大盾_ガード_片手", + "104700440": "Large Shield _ both hands -- 大盾_ガード_両手", + "104700520": "Big Shield _ One handed Dash -- 大盾_片手ダッシュ", + "104700521": "Large Shield _ One handed dash _ Dash -- 大盾_片手ダッシュ_ダッシュ中", + "104700530": "Big Shield _ both hands dash -- 大盾_両手ダッシュ", + "104700531": "Large Shields _ Both hands _ dash _ Dash -- 大盾_両手_ダッシュ_ダッシュ中", + "104700540": "Big Shield _ one hand step before -- 大盾_片手ステップ前", + "104700580": "Large Shield _ Two hands before step -- 大盾_両手ステップ前", + "104700600": "Large Shields _ Parigard -- 大盾_パリィガード", + "104700601": "Large Shield _ General range -- 大盾_汎用範囲", + "104700610": "Large Shield _ behind the transition -- 大盾_背後遷移", + "104700800": "Big Shield _ Magic Sword -- 大盾_魔法剣", + "104701000": "Large Shield _ wood _ one hand usually 1 -- 大型盾_木製_片手通常1", + "104701010": "Large Shields _ wood _ one hand usually two -- 大型盾_木製_片手通常2", + "104701020": "Large Shields _ wood _ one hand usually three -- 大型盾_木製_片手通常3", + "104701030": "Large Shield _ wooden _ one-handed jump 1 -- 大型盾_木製_片手ジャンプ1", + "104701040": "Large Shields _ wooden _ one-handed fall loop -- 大型盾_木製_片手落下ループ", + "104701050": "Large Shields _ wooden _ one-handed fall landing -- 大型盾_木製_片手落下着地", + "104701100": "Large Shield _ wooden _ one-handed entertainment 1 -- 大型盾_木製_片手タメ1", + "104701110": "Large Shields _ wooden _ one-handed Entertainment 2 -- 大型盾_木製_片手タメ2", + "104701200": "Large Shields _ wooden _ Two hands usually one -- 大型盾_木製_両手通常1", + "104701210": "Large Shields _ wooden _ Two hands usually -- 大型盾_木製_両手通常2", + "104701220": "Large Shields _ wooden _ Two hands usually three -- 大型盾_木製_両手通常3", + "104701230": "Large Shield _ wooden _ two-handed jump 1 -- 大型盾_木製_両手ジャンプ1", + "104701240": "Large Shield _ wooden _ two-handed fall loop -- 大型盾_木製_両手落下ループ", + "104701250": "Large Shields _ wooden _ two-handed fall landing -- 大型盾_木製_両手落下着地", + "104701300": "Large Shields _ wooden _ two-handed entertainment 1 -- 大型盾_木製_両手タメ1", + "104701310": "Large Shields _ wooden _ two-handed Entertainment 2 -- 大型盾_木製_両手タメ2", + "104701400": "Large Shields _ wood _ left hand -- 大型盾_木製_左手", + "104701410": "Large Shield _ wooden _ one hand short distance -- 大型盾_木製_片手近距離", + "104701420": "Large Shield _ wooden _ both hands close -- 大型盾_木製_両手近距離", + "104701430": "Large Shields _ Wooden _ guards _ one hand -- 大型盾_木製_ガード_片手", + "104701440": "Large Shields _ Wooden _ guards _ both hands -- 大型盾_木製_ガード_両手", + "104701520": "Large Shield _ wooden _ one-handed Dash -- 大型盾_木製_片手ダッシュ", + "104701521": "Large Shields _ wooden _ one-handed dash _ Dash -- 大型盾_木製_片手ダッシュ_ダッシュ中", + "104701530": "Large Shields _ wooden _ both hands dash -- 大型盾_木製_両手ダッシュ", + "104701531": "Large Shields _ wooden _ Both hands _ dash _ Dash -- 大型盾_木製_両手_ダッシュ_ダッシュ中", + "104701540": "Large Shields _ wooden _ one handed step before -- 大型盾_木製_片手ステップ前", + "104701580": "Large Shields _ wooden _ two-handed step before -- 大型盾_木製_両手ステップ前", + "104701600": "Large Shields _ wooden _ Parigard -- 大型盾_木製_パリィガード", + "104701601": "Large Shields _ wood _ General Range -- 大型盾_木製_汎用範囲", + "104702100": "[126] Wheel _ one-handed entertainment 1 -- 【126】車輪_片手タメ1", + "104702110": "[126] Wheel _ one-handed Entertainment 2 -- 【126】車輪_片手タメ2", + "104702300": "[126] Wheels _ two-handed entertainment 1 -- 【126】車輪_両手タメ1", + "104702310": "[126] Wheels _ two-handed Entertainment 2 -- 【126】車輪_両手タメ2", + "104800000": "Shield _ one hand usually 1 -- 盾_片手通常1", + "104800010": "Shield _ one hand usually two -- 盾_片手通常2", + "104800020": "Shields _ one hand usually three -- 盾_片手通常3", + "104800030": "Shield _ One handed jump -- 盾_片手ジャンプ1", + "104800040": "Shield _ one-handed fall loop -- 盾_片手落下ループ", + "104800050": "Shield _ one-handed fall landing -- 盾_片手落下着地", + "104800100": "Shield _ one-handed entertainment 1 -- 盾_片手タメ1", + "104800110": "Shield _ one-handed Entertainment 2 -- 盾_片手タメ2", + "104800200": "Shield _ Two hands usually one -- 盾_両手通常1", + "104800210": "Shield _ Two hands usually 2 -- 盾_両手通常2", + "104800220": "Shields _ Two hands usually three -- 盾_両手通常3", + "104800230": "Shield _ two-handed jump 1 -- 盾_両手ジャンプ1", + "104800240": "Shield _ two-handed fall loop -- 盾_両手落下ループ", + "104800250": "Shield _ two-handed fall landing -- 盾_両手落下着地", + "104800300": "Shield _ two-handed entertainment 1 -- 盾_両手タメ1", + "104800301": "Shield _ two-handed 1_ Dash -- 盾_両手タメ1_ダッシュ中", + "104800310": "Shield _ two-handed Entertainment 2 -- 盾_両手タメ2", + "104800400": "Shield _ Left Hand -- 盾_左手", + "104800410": "Shield _ one hand close -- 盾_片手近距離", + "104800420": "Shield _ both hands close -- 盾_両手近距離", + "104800430": "Shields _ guards _ one hand -- 盾_ガード_片手", + "104800440": "Shields _ guards _ both hands -- 盾_ガード_両手", + "104800450": "Shields _ Paris -- 盾_パリィ", + "104800520": "Shield _ one-handed Dash -- 盾_片手ダッシュ", + "104800521": "Shields _ one-handed dash _ in dash -- 盾_片手ダッシュ_ダッシュ中", + "104800530": "Shield _ both hands dash -- 盾_両手ダッシュ", + "104800531": "Shields _ Both hands dash _ in Dash -- 盾_両手ダッシュ_ダッシュ中", + "104800540": "Shield _ one hand step before -- 盾_片手ステップ前", + "104800580": "Shield _ Two hands before step -- 盾_両手ステップ前", + "104800600": "Shields _ Parigard -- 盾_パリィガード", + "104800610": "Shield behind transition -- 盾_背後遷移", + "104800780": "Shield _ Blown attack -- 盾_吹き飛ばし攻撃", + "104801000": "Small shield _ one hand usually 1 -- 小盾_片手通常1", + "104801010": "Small shield _ one hand usually two -- 小盾_片手通常2", + "104801020": "Small shield _ one hand usually three -- 小盾_片手通常3", + "104801030": "Small Shield _ one handed jump -- 小盾_片手ジャンプ1", + "104801040": "Small Shield _ One handed fall loop -- 小盾_片手落下ループ", + "104801050": "Small Shield _ one-handed fall landing -- 小盾_片手落下着地", + "104801100": "Small Shield _ one-handed entertainment 1 -- 小盾_片手タメ1", + "104801110": "Small Shield _ one-handed Entertainment 2 -- 小盾_片手タメ2", + "104801200": "Small shield _ Two hands usually one -- 小盾_両手通常1", + "104801210": "Small shield _ Two hands usually 2 -- 小盾_両手通常2", + "104801220": "Small shield _ Two hands usually three -- 小盾_両手通常3", + "104801230": "Small Shield _ two-handed jump 1 -- 小盾_両手ジャンプ1", + "104801240": "Small Shield _ two-handed fall loop -- 小盾_両手落下ループ", + "104801250": "Small Shield _ two-handed fall landing -- 小盾_両手落下着地", + "104801300": "Small Shield _ two-handed entertainment 1 -- 小盾_両手タメ1", + "104801301": "Small shield _ both hands 1_ in dash -- 小盾_両手タメ1_ダッシュ中", + "104801310": "Small Shield _ two-handed Entertainment 2 -- 小盾_両手タメ2", + "104801400": "Small Shield _ Left hand -- 小盾_左手", + "104801410": "Small Shield _ one hand close -- 小盾_片手近距離", + "104801420": "Small shield _ both hands close -- 小盾_両手近距離", + "104801430": "Small Shields _ guard _ one hand -- 小盾_ガード_片手", + "104801440": "Small Shields _ guards _ both hands -- 小盾_ガード_両手", + "104801450": "Small Shields _ Paris -- 小盾_パリィ", + "104801520": "Small Shield _ one-handed Dash -- 小盾_片手ダッシュ", + "104801521": "Small Shield _ One handed dash _ Dash -- 小盾_片手ダッシュ_ダッシュ中", + "104801530": "Small shield _ both hands dash -- 小盾_両手ダッシュ", + "104801531": "Small shields _ both hands dash in dash -- 小盾_両手ダッシュ_ダッシュ中", + "104801540": "Small shield _ one hand step before -- 小盾_片手ステップ前", + "104801580": "Small Shield _ Two hands before step -- 小盾_両手ステップ前", + "104801600": "Small Shields _ Parigard -- 小盾_パリィガード", + "104802000": "[92] Crystal wheel _ one hand usually 1 -- 【92】水晶輪_片手通常1", + "104802010": "[92] Crystal wheel _ one hand usually two -- 【92】水晶輪_片手通常2", + "104802020": "[92] Crystal wheel _ one hand usually three -- 【92】水晶輪_片手通常3", + "104802030": "[92] Crystal wheel _ one-handed jump 1 -- 【92】水晶輪_片手ジャンプ1", + "104802040": "[92] Crystal wheel _ one-handed fall loop -- 【92】水晶輪_片手落下ループ", + "104802050": "[92] Crystal Ring _ one-handed fall landing -- 【92】水晶輪_片手落下着地", + "104802100": "[92] Crystal wheel _ one-handed entertainment 1 -- 【92】水晶輪_片手タメ1", + "104802110": "[92] Crystal wheel _ one-handed Entertainment 2 -- 【92】水晶輪_片手タメ2", + "104802120": "[92] Crystal wheel _ one-handed Entertainment 1/Magic Trigger -- 【92】水晶輪_片手タメ1/魔法発動時", + "104802130": "[92] Crystal wheel _ one-handed Entertainment 2/Magic Trigger -- 【92】水晶輪_片手タメ2/魔法発動時", + "104802200": "[92] Quartz wheel _ Two hands usually one -- 【92】水晶輪_両手通常1", + "104802210": "[92] Crystal wheel _ Two hands usually 2 -- 【92】水晶輪_両手通常2", + "104802220": "[92] Crystal wheel _ Two hands usually three -- 【92】水晶輪_両手通常3", + "104802230": "[92] Crystal Ring _ two-handed jump 1 -- 【92】水晶輪_両手ジャンプ1", + "104802240": "[92] Crystal Ring _ two-handed fall loop -- 【92】水晶輪_両手落下ループ", + "104802250": "[92] Crystal Ring _ two-handed fall landing -- 【92】水晶輪_両手落下着地", + "104802300": "[92] Crystal wheel _ two-handed entertainment 1 -- 【92】水晶輪_両手タメ1", + "104802310": "[92] Crystal wheel _ two-handed Entertainment 2 -- 【92】水晶輪_両手タメ2", + "104802320": "[92] Crystal wheel _ two-handed Entertainment 1/Magic Trigger -- 【92】水晶輪_両手タメ1/魔法発動時", + "104802330": "[92] Crystal wheel _ two-hand Entertainment 2/Magic Trigger -- 【92】水晶輪_両手タメ2/魔法発動時", + "104802400": "[92] Crystal ring _ left hand -- 【92】水晶輪_左手", + "104802405": "[92] Crystal wheel _ Left hand/Magic Trigger -- 【92】水晶輪_左手/魔法発動時", + "104802410": "[92] Crystal wheel _ one hand close -- 【92】水晶輪_片手近距離", + "104802420": "[92] Crystal wheel _ both hands close -- 【92】水晶輪_両手近距離", + "104802430": "[92] Crystal Ring _ guard _ one hand -- 【92】水晶輪_ガード_片手", + "104802440": "[92] Crystal Ring _ guard _ both hands -- 【92】水晶輪_ガード_両手", + "104802450": "[92] Crystal Ring _ Paris -- 【92】水晶輪_パリィ", + "104802520": "[92] Crystal wheel _ one-handed Dash -- 【92】水晶輪_片手ダッシュ", + "104802521": "[92] Crystal wheel _ one-handed dash _ Dash -- 【92】水晶輪_片手ダッシュ_ダッシュ中", + "104802530": "[92] Crystal wheel _ both hands dash -- 【92】水晶輪_両手ダッシュ", + "104802531": "[92] Crystal wheel _ both hands dash _ Dash -- 【92】水晶輪_両手ダッシュ_ダッシュ中", + "104802540": "[92] Crystal wheel _ one hand step before -- 【92】水晶輪_片手ステップ前", + "104802580": "[92] Crystal wheel _ Two hands before step -- 【92】水晶輪_両手ステップ前", + "104802600": "[92] Crystal Ring _ Parigard -- 【92】水晶輪_パリィガード", + "104802800": "[92] Crystal Wheel _ Magic Sword -- 【92】水晶輪_魔法剣", + "104803000": "[93] Spike _ one hand usually 1 -- 【93】スパイク_片手通常1", + "104803010": "[93] Spikes _ one hand usually two -- 【93】スパイク_片手通常2", + "104803020": "[93] Spike _ one hand usually three -- 【93】スパイク_片手通常3", + "104803030": "[93] Spike _ one-handed jump 1 -- 【93】スパイク_片手ジャンプ1", + "104803040": "[93] Spike _ one-handed fall loop -- 【93】スパイク_片手落下ループ", + "104803050": "[93] Spike _ one-handed fall landing -- 【93】スパイク_片手落下着地", + "104803100": "[93] Spike _ one-handed entertainment 1 -- 【93】スパイク_片手タメ1", + "104803110": "[93] Spike _ one-handed Entertainment 2 -- 【93】スパイク_片手タメ2", + "104803200": "[93] Spike _ both hands usually one -- 【93】スパイク_両手通常1", + "104803210": "[93] Spike _ Two hands usually 2 -- 【93】スパイク_両手通常2", + "104803220": "[93] Spike _ Two hands usually three -- 【93】スパイク_両手通常3", + "104803230": "[93] Spike _ two-handed jump 1 -- 【93】スパイク_両手ジャンプ1", + "104803240": "[93] Spike _ Both hands Fall loop -- 【93】スパイク_両手落下ループ", + "104803250": "[93] Spike _ Two-handed fall landing -- 【93】スパイク_両手落下着地", + "104803300": "[93] Spike _ two-handed entertainment 1 -- 【93】スパイク_両手タメ1", + "104803301": "[93] Spike _ two-handed 1_ Dash -- 【93】スパイク_両手タメ1_ダッシュ中", + "104803310": "[93] Spike _ two-handed Entertainment 2 -- 【93】スパイク_両手タメ2", + "104803400": "[93] Spike _ Left hand -- 【93】スパイク_左手", + "104803410": "[93] Spike _ one hand close -- 【93】スパイク_片手近距離", + "104803420": "[93] Spikes _ both hands close -- 【93】スパイク_両手近距離", + "104803430": "[93] Spike _ guard _ one hand -- 【93】スパイク_ガード_片手", + "104803440": "[93] Spike _ guard _ both hands -- 【93】スパイク_ガード_両手", + "104803450": "[93] Spike _ Paris -- 【93】スパイク_パリィ", + "104803520": "[93] Spike _ one-handed Dash -- 【93】スパイク_片手ダッシュ", + "104803521": "[93] Spike _ one-handed dash _ in dash -- 【93】スパイク_片手ダッシュ_ダッシュ中", + "104803530": "[93] Spike _ both hands dash -- 【93】スパイク_両手ダッシュ", + "104803531": "[93] Spike _ Both hands dash _ Dash -- 【93】スパイク_両手ダッシュ_ダッシュ中", + "104803540": "[93] Spike _ one hand step before -- 【93】スパイク_片手ステップ前", + "104803580": "[93] Spike _ two-handed step before -- 【93】スパイク_両手ステップ前", + "104803600": "[93] Spike _ Parigard -- 【93】スパイク_パリィガード", + "104900400": "Torch _ Left Hand -- 松明_左手", + "105000000": "Sickle _ one hand usually 1 -- 鎌_片手通常1", + "105000001": "Sickle _ one hand usually 1 (stick) -- 鎌_片手通常1(棒)", + "105000010": "Sickle _ one hand usually two -- 鎌_片手通常2", + "105000011": "Sickle _ one hand usually 2 (stick) -- 鎌_片手通常2(棒)", + "105000020": "Sickle _ one hand usually three -- 鎌_片手通常3", + "105000021": "Sickle _ one hand usually 3 (stick) -- 鎌_片手通常3(棒)", + "105000030": "Sickle _ One handed jump -- 鎌_片手ジャンプ1", + "105000031": "Sickle _ one-handed jump 1 (stick) -- 鎌_片手ジャンプ1(棒)", + "105000040": "Sickle _ One handed fall loop -- 鎌_片手落下ループ", + "105000041": "Sickle _ One handed Fall loop (stick) -- 鎌_片手落下ループ(棒)", + "105000050": "Sickle _ one-handed fall landing -- 鎌_片手落下着地", + "105000051": "Sickle _ one-handed fall landing (rod) -- 鎌_片手落下着地(棒)", + "105000100": "Sickle _ one-handed entertainment 1 -- 鎌_片手タメ1", + "105000101": "Sickle _ one-handed entertainment 1 (stick) -- 鎌_片手タメ1(棒)", + "105000105": "Sickle _ one-handed 1_ maximum -- 鎌_片手タメ1_最大", + "105000106": "Sickle _ one-handed 1_ max (stick) -- 鎌_片手タメ1_最大(棒)", + "105000110": "Sickle _ one-handed Entertainment 2 -- 鎌_片手タメ2", + "105000111": "Sickle _ one hand Entertainment 2 (stick) -- 鎌_片手タメ2(棒)", + "105000115": "Sickle _ one-handed 2_ maximum -- 鎌_片手タメ2_最大", + "105000116": "Sickle _ one-handed 2_ max (stick) -- 鎌_片手タメ2_最大(棒)", + "105000200": "Sickle _ Two hands usually one -- 鎌_両手通常1", + "105000201": "Sickle _ Two Hands usually 1 (stick) -- 鎌_両手通常1(棒)", + "105000210": "Sickle _ Two Hands usually 2 -- 鎌_両手通常2", + "105000211": "Sickle _ Two Hands usually 2 (stick) -- 鎌_両手通常2(棒)", + "105000220": "Sickle _ Two hands usually three -- 鎌_両手通常3", + "105000221": "Sickle _ Two Hands usually 3 (stick) -- 鎌_両手通常3(棒)", + "105000230": "Sickle _ two-handed jump -- 鎌_両手ジャンプ1", + "105000231": "Sickle _ two-handed jump 1 (stick) -- 鎌_両手ジャンプ1(棒)", + "105000240": "Sickle _ two-handed fall loop -- 鎌_両手落下ループ", + "105000241": "Sickle _ two-handed fall loop (rod) -- 鎌_両手落下ループ(棒)", + "105000250": "Sickle _ two-handed fall landing -- 鎌_両手落下着地", + "105000251": "Sickle _ two-handed fall landing (rod) -- 鎌_両手落下着地(棒)", + "105000300": "Sickle _ two-handed entertainment 1 -- 鎌_両手タメ1", + "105000301": "Sickle _ two-handed Entertainment 1 (stick) -- 鎌_両手タメ1(棒)", + "105000305": "Sickle _ two-handed 1_ Max -- 鎌_両手タメ1_最大", + "105000306": "Sickle _ two-handed 1_ max (stick) -- 鎌_両手タメ1_最大(棒)", + "105000310": "Sickle _ two-handed Entertainment 2 -- 鎌_両手タメ2", + "105000311": "Sickle _ two-handed Entertainment 2 (stick) -- 鎌_両手タメ2(棒)", + "105000315": "Sickle _ two-handed 2_ Max -- 鎌_両手タメ2_最大", + "105000316": "Sickle _ two-handed 2_ max (stick) -- 鎌_両手タメ2_最大(棒)", + "105000400": "Sickle _ Left Hand -- 鎌_左手", + "105000401": "Sickle _ Left hand (stick) -- 鎌_左手(棒)", + "105000410": "Sickle _ one hand close -- 鎌_片手近距離", + "105000411": "Sickle _ one hand short distance (stick) -- 鎌_片手近距離(棒)", + "105000420": "Sickle _ Both hands close -- 鎌_両手近距離", + "105000421": "Sickle _ Both hands short distance (stick) -- 鎌_両手近距離(棒)", + "105000430": "Sickle _ guard _ one hand -- 鎌_ガード_片手", + "105000431": "Sickle _ guard _ one hand (stick) -- 鎌_ガード_片手(棒)", + "105000440": "Sickle _ guard _ both hands -- 鎌_ガード_両手", + "105000441": "Sickle _ guard _ both hands (stick) -- 鎌_ガード_両手(棒)", + "105000450": "Sickle _ Paris -- 鎌_パリィ", + "105000451": "Sickle _ Paris (stick) -- 鎌_パリィ(棒)", + "105000470": "Sickle _ Large Throw -- 鎌_大型投げ", + "105000490": "Sickle _ Fall Throw -- 鎌_落下投げ", + "105000500": "Behind the Sickle -- 鎌_背後", + "105000505": "Sickle _ Reinforced behind -- 鎌_強化背後", + "105000510": "Sickle _ after Paris -- 鎌_パリィ後", + "105000515": "Paris after strengthening sickle -- 鎌_強化パリィ後", + "105000516": "Sickle _ After strengthening Paris (bar) -- 鎌_強化パリィ後(棒)", + "105000520": "Sickle _ one-handed Dash -- 鎌_片手ダッシュ", + "105000521": "Sickle _ one-handed dash (stick) -- 鎌_片手ダッシュ(棒)", + "105000530": "Sickle _ Both hands dash -- 鎌_両手ダッシュ", + "105000531": "Sickle _ both hands dash (stick) -- 鎌_両手ダッシュ(棒)", + "105000540": "Sickle _ one hand step before -- 鎌_片手ステップ前", + "105000541": "Sickle _ one hand step before (stick) -- 鎌_片手ステップ前(棒)", + "105000580": "Sickle _ hands before step -- 鎌_両手ステップ前", + "105000581": "Sickle _ two-handed step before (stick) -- 鎌_両手ステップ前(棒)", + "105000600": "Sickle _ Parigard -- 鎌_パリィガード", + "105000601": "Sickle _ Parigard (stick) -- 鎌_パリィガード(棒)", + "105100000": "A single hand usually one sword -- 大曲剣_片手通常1", + "105100001": "One-handed sword _ usually 1_ range -- 大曲剣_片手通常1_範囲", + "105100010": "One-handed sword _ usually two -- 大曲剣_片手通常2", + "105100020": "One-handed sword _ usually three -- 大曲剣_片手通常3", + "105100030": "One-handed Jump 1 -- 大曲剣_片手ジャンプ1", + "105100040": "One-handed Fall loop -- 大曲剣_片手落下ループ", + "105100050": "One-handed fall landing -- 大曲剣_片手落下着地", + "105100100": "One-handed Entertainment 1 -- 大曲剣_片手タメ1", + "105100105": "One-handed 1_ Max -- 大曲剣_片手タメ1_最大", + "105100110": "One-handed Entertainment 2 -- 大曲剣_片手タメ2", + "105100115": "One-handed 2_ Max -- 大曲剣_片手タメ2_最大", + "105100200": "Two-handed sword _ usually one -- 大曲剣_両手通常1", + "105100210": "One-handed sword _ two hands usually -- 大曲剣_両手通常2", + "105100220": "Masterpiece Sword _ Two hands usually three -- 大曲剣_両手通常3", + "105100230": "Two-handed jump one sword -- 大曲剣_両手ジャンプ1", + "105100240": "Two-handed Fall loop -- 大曲剣_両手落下ループ", + "105100250": "Two-handed fall landing -- 大曲剣_両手落下着地", + "105100300": "A sword with two hands -- 大曲剣_両手タメ1", + "105100305": "Masterpiece Sword _ two-handed 1_ Max -- 大曲剣_両手タメ1_最大", + "105100310": "A sword with two hands -- 大曲剣_両手タメ2", + "105100315": "Masterpiece Sword _ two-handed 2_ Max -- 大曲剣_両手タメ2_最大", + "105100400": "The left hand -- 大曲剣_左手", + "105100410": "One-handed Sword -- 大曲剣_片手近距離", + "105100420": "Two-handed Sword -- 大曲剣_両手近距離", + "105100430": "One-handed sword _ guards -- 大曲剣_ガード_片手", + "105100440": "Two-handed sword _ guards -- 大曲剣_ガード_両手", + "105100450": "A Paris Sword -- 大曲剣_パリィ", + "105100470": "A large throw -- 大曲剣_大型投げ", + "105100490": "A cast sword _ a falling throw -- 大曲剣_落下投げ", + "105100500": "Behind the Sword -- 大曲剣_背後", + "105100501": "Behind the Sword _ the second hammer -- 大曲剣_背後_二撃目", + "105100505": "A masterpiece behind the reinforcement -- 大曲剣_強化背後", + "105100506": "Two Sword _ Reinforced behind _ -- 大曲剣_強化背後_二段目", + "105100510": "Paris after the sword -- 大曲剣_パリィ後", + "105100511": "A Paris Sword _ second Hammer -- 大曲剣_パリィ後_二撃目", + "105100515": "A Paris after strengthening the sword -- 大曲剣_強化パリィ後", + "105100516": "A-Paris Sword _ after strengthening two -- 大曲剣_強化パリィ後_二段目", + "105100517": "A-Paris Sword _ after strengthening Sandanme -- 大曲剣_強化パリィ後_三段目", + "105100520": "One-handed Dash -- 大曲剣_片手ダッシュ", + "105100530": "Two-handed Dash -- 大曲剣_両手ダッシュ", + "105100540": "One hand step before the sword -- 大曲剣_片手ステップ前", + "105100580": "Two-handed sword before step -- 大曲剣_両手ステップ前", + "105100600": "A Parigard Sword -- 大曲剣_パリィガード", + "105100610": "Behind the transition -- 大曲剣_背後遷移", + "105100615": "The behind-the-back transition _ missed -- 大曲剣_背後遷移_空振り", + "105100700": "Masterpiece: the first half -- 大曲剣_回転:前半", + "105100710": "A Nagi-Spinning sword -- 大曲剣_回転なぎ払い", + "105100720": "Masterpiece Sword _ Spinning slams -- 大曲剣_回転叩きつけ", + "105101000": "[116] Tomb King Song Sword _ one hand usually 1 -- 【116】墓王の曲剣_片手通常1", + "105101010": "[116] Tomb King Song Sword _ one hand usually two -- 【116】墓王の曲剣_片手通常2", + "105101020": "[116] Tomb King Song Sword _ one hand usually three -- 【116】墓王の曲剣_片手通常3", + "105101030": "[116] Tomb King Song Sword _ one-handed jump 1 -- 【116】墓王の曲剣_片手ジャンプ1", + "105101040": "[116] Tomb King Song Sword _ one-handed fall loop -- 【116】墓王の曲剣_片手落下ループ", + "105101050": "[116] Tomb King Song Sword _ one-handed fall landing -- 【116】墓王の曲剣_片手落下着地", + "105101100": "[116] Tomb King Song Sword _ one-handed entertainment 1 -- 【116】墓王の曲剣_片手タメ1", + "105101110": "[116] Tomb King Song Sword _ one-handed Entertainment 2 -- 【116】墓王の曲剣_片手タメ2", + "105101200": "[116] Tomb King Song Sword _ Two Hands usually one -- 【116】墓王の曲剣_両手通常1", + "105101210": "[116] Tomb King Song Sword _ Two Hands usually 2 -- 【116】墓王の曲剣_両手通常2", + "105101220": "[116] Tomb King Song Sword _ Two Hands usually three -- 【116】墓王の曲剣_両手通常3", + "105101230": "[116] Tomb King Song Sword _ two-handed jump 1 -- 【116】墓王の曲剣_両手ジャンプ1", + "105101240": "[116] Tomb King Song Sword _ Both Hands Fall loop -- 【116】墓王の曲剣_両手落下ループ", + "105101250": "[116] Tomb King Song Sword _ Both Hands fall landing -- 【116】墓王の曲剣_両手落下着地", + "105101300": "[116] Tomb King Song Sword _ two-handed entertainment 1 -- 【116】墓王の曲剣_両手タメ1", + "105101310": "[116] Tomb King Song Sword _ two-handed Entertainment 2 -- 【116】墓王の曲剣_両手タメ2", + "105101400": "[116] Tomb King Song Sword _ left Hand -- 【116】墓王の曲剣_左手", + "105101410": "[116] Tomb King Song Sword _ one hand short distance -- 【116】墓王の曲剣_片手近距離", + "105101420": "[116] Tomb King Song Sword _ both hands close range -- 【116】墓王の曲剣_両手近距離", + "105101430": "[116] Tomb King Song Sword _ guard _ one hand -- 【116】墓王の曲剣_ガード_片手", + "105101440": "[116] Tomb King Song Sword _ guard _ both hands -- 【116】墓王の曲剣_ガード_両手", + "105101450": "[116] Tomb King Song Sword _ Paris -- 【116】墓王の曲剣_パリィ", + "105101490": "[116] Tomb King Song Sword _ Falling Throw -- 【116】墓王の曲剣_落下投げ", + "105101500": "[116] Tomb King Song Sword _ behind -- 【116】墓王の曲剣_背後", + "105101501": "[116] Tomb King Song Sword _ Behind the second hammer -- 【116】墓王の曲剣_背後_二撃目", + "105101505": "[116] Tomb King Song Sword _ reinforced behind -- 【116】墓王の曲剣_強化背後", + "105101506": "[116] Tomb King Song Sword _ reinforced behind _ Two -- 【116】墓王の曲剣_強化背後_二段目", + "105101510": "[116] Tomb King Song Sword _ after Paris -- 【116】墓王の曲剣_パリィ後", + "105101511": "[116] Tomb King Song Sword _ after Paris _ Second hammer -- 【116】墓王の曲剣_パリィ後_二撃目", + "105101515": "[116] Tomb King Song Sword _ after strengthening Paris -- 【116】墓王の曲剣_強化パリィ後", + "105101516": "[116] Tomb King Song Sword _ after strengthening Paris _ two -- 【116】墓王の曲剣_強化パリィ後_二段目", + "105101517": "[116] Tomb King Song Sword _ after strengthening Paris _ Sandanme -- 【116】墓王の曲剣_強化パリィ後_三段目", + "105101520": "[116] Tomb King Song Sword _ one handed Dash -- 【116】墓王の曲剣_片手ダッシュ", + "105101530": "[116] Tomb King Song Sword _ both hands dash -- 【116】墓王の曲剣_両手ダッシュ", + "105101540": "[116] Tomb King Song Sword _ one hand step before -- 【116】墓王の曲剣_片手ステップ前", + "105101580": "[116] Tomb King Song Sword _ Hands before step -- 【116】墓王の曲剣_両手ステップ前", + "105101600": "[116] Tomb King Song Sword _ Parigard -- 【116】墓王の曲剣_パリィガード" + }, + "BonfireWarpParam": { + "0": "[usually bonfire] base bonfire -- 【通常篝火】拠点篝火", + "1": "[Normal bonfire] Tutorial bonfire -- 【通常篝火】チュートリアル篝火", + "2": "The big wall of Le dress -- ルドレスの大壁", + "3": "[usually bonfire] the last tower roof of the rampart -- 【通常篝火】城壁最後の塔 屋上", + "4": "[Boss Bonfire] Tracker (saloon) -- 【ボス篝火】追跡者(大広間)", + "5": "[Boss Bonfire] Full Armor beast (gate) -- 【ボス篝火】フルアーマー獣(門)", + "6": "[Boss Bonfire] Dragon Angel (Mausoleum, Segunda Room) -- 【ボス篝火】竜の御使い(霊廟・グンダ部屋)", + "7": "* The large wall of the NT version dress -- ※NT版 ルドレスの大壁", + "8": "* NT version [normal bonfire] wall last tower roof -- ※NT版 【通常篝火】城壁最後の塔 屋上", + "9": "[Normal bonfire] Start (back of the saloon) -- 【通常篝火】スタート(大広間奥)", + "10": "[Boss Bonfire] Guardian Knight of the Dragon (bridge) -- 【ボス篝火】竜の守護騎士(橋)", + "11": "[Boss Bonfire] Prince of Darkness (innermost) -- 【ボス篝火】闇の双皇子(最奥)", + "12": "[Normal bonfire] Start (point overlooking the city) -- 【通常篝火】スタート(街を見下ろせるポイント)", + "13": "【 Normal Bonfire 】 shortcut route -- 【通常篝火】ショートカットルート途中", + "14": "[Boss Bonfire] Colossus (innermost) -- 【ボス篝火】巨像(最奥)", + "15": "[Normal bonfire] Start bonfire -- 【通常篝火】スタート篝火", + "16": "[Boss Bonfire] King of the Storm -- 【ボス篝火】嵐の王", + "17": "[Normal bonfire] start (where overlooking the forest) -- 【通常篝火】スタート(森を見下ろせる場所)", + "18": "【 boss Bonfire 】 Crystal Elders (connection to the Church of the Basilica) -- 【ボス篝火】結晶の古老(聖堂教会への接続)", + "19": "[Boss Bonfire] observer of the Abyss + Wolf of caries -- 【ボス篝火】深淵の監視者+蝕の狼", + "20": "[Normal bonfire] Start (small church entrance) -- 【通常篝火】スタート(小教会入口)", + "21": "[Boss Bonfire] Cardinal (bottom) -- 【ボス篝火】枢機卿団(最奥)", + "22": "[Boss Bonfire] Rosalia + NPC (Saint Room) -- 【ボス篝火】ロザリア+NPC(聖女部屋)", + "23": "【 Normal bonfire 】 Bonfire Church -- 【通常篝火】篝火教会", + "24": "[Boss Bonfire] Witch of Moonlight -- 【ボス篝火】月光の魔女", + "25": "[Boss Bonfire] Salivan -- 【ボス篝火】サリヴァーン", + "26": "[Boss Bonfire] Hallec (Anole towards the bottom) -- 【ボス篝火】ハレック(アノール方面最奥)", + "27": "【 Normal bonfire 】 underground Lake entrance -- 【通常篝火】地底湖入口", + "28": "[Normal bonfire] underground dungeon exit -- 【通常篝火】地下ダンジョン出口", + "29": "[Normal bonfire] underground dungeon entrance -- 【通常篝火】地下ダンジョン入口", + "30": "[Boss Bonfire] Sand worm (sub route underground lake) -- 【ボス篝火】サンドワーム(サブルート地底湖)", + "31": "【 boss Bonfire 】 Ash Daemon (sub Route underground lake) -- 【ボス篝火】灰のデーモン(サブルート地底湖)", + "32": "[Normal bonfire] Start (Dungeon entrance) -- 【通常篝火】スタート(地下牢入口)", + "33": "[Boss Bonfire] King of the Dead -- 【ボス篝火】死霊の王" + }, + "BudgetParam": { + "0": "Default (delete not allowed) -- デフォルト(削除禁止)" + }, + "Bullet": { + "0": "Test -- テスト", + "1": "Magic Test -- 魔法テスト", + "2": "Funnel Test -- ファンネルテスト", + "3": "Flying Dragon Breath Test -- 飛竜 ブレステスト", + "4": "Automatic Cyclic object destruction -- 自動巡回オブジェ破壊用", + "50": "Bonfire Recovery effect -- かがり火回復効果", + "60": "Bullet Random Number Test _ Parent -- 弾丸乱数テスト_親", + "61": "Bullet Random number Test child -- 弾丸乱数テスト_子", + "62": "Long distance Magic: Drilled Flames -- 遠距離魔法:穿つ炎_出始め", + "63": "Long distance Magic: Drilled Flames _ Parents -- 遠距離魔法:穿つ炎_親", + "64": "Long distance Magic: Drilled Flames _ Search Bullets -- 遠距離魔法:穿つ炎_検索弾", + "65": "Long distance Magic: Drilled Fire Child -- 遠距離魔法:穿つ炎_子", + "75": "Also licked fire spread judgment bullet -- チロチロ延焼判定弾", + "76": "Also licked fire body -- チロチロ延焼本体", + "77": "Also licked fire spread judgment bullet (for black jar) -- チロチロ延焼判定弾(黒壷用)", + "78": "Also licked fire body (for black Jar) -- チロチロ延焼本体(黒壷用)", + "100": "Throwing Knives -- 投げナイフ", + "101": "Poison-throwing knives -- 毒投げナイフ", + "110": "Fire bottle [Parent] -- 火炎瓶【親】", + "111": "Fire bottle [child] -- 火炎瓶【子】", + "112": "[For debugging] flame bottle [Parent] -- [デバッグ用]火炎瓶【親】", + "113": "[For debugging] fire bottle [child] -- [デバッグ用]火炎瓶【子】", + "115": "Black Flame bottle [parent] -- 黒火炎瓶【親】", + "116": "Black Flame bottle [child] -- 黒火炎瓶【子】", + "120": "Each time a [parent] -- またたびA【親】", + "121": "Each time a child -- またたびA【子】", + "122": "Each time b [parent] -- またたびB【親】", + "123": "The Child B -- またたびB【子】", + "130": "Convenient stone [parent] -- 便利石【親】", + "131": "Convenient stone [child] -- 便利石【子】", + "132": "Convenient stone [grandchild] -- 便利石【孫】", + "150": "The parent of a dung dumpling -- 糞団子【親】", + "151": "Son of a dumpling -- 糞団子【子】", + "160": "EST not available [parent] -- エスト使用不可【親】", + "161": "EST not available [child] -- エスト使用不可【子】", + "170": "bleeding treatment [State recovery] -- 出血治療【状態回復】", + "171": "bleeding treatment [resistance recovery] -- 出血治療【耐性回復】", + "180": "Poison treatment [State recovery] -- 毒治療【状態回復】", + "181": "Poison treatment [Resilient recovery] -- 毒治療【耐性回復】", + "190": "Toxic treatment [State recovery] -- 猛毒治療【状態回復】", + "191": "Toxic treatment [Resilient recovery] -- 猛毒治療【耐性回復】", + "220": "Elixir [State Recovery] -- エリクサー【状態回復】", + "221": "Elixir [Recovery of bleeding immunity] -- エリクサー【出血耐性回復】", + "222": "Elixir [Poison tolerance recovery] -- エリクサー【毒耐性回復】", + "223": "Elixir [Deadly poison resistant recovery] -- エリクサー【猛毒耐性回復】", + "226": "Elixir [HP Recovery] -- エリクサー【HP回復】", + "300": "Quick Knives -- クイックナイフ", + "301": "Quick Poison Knife -- クイック毒ナイフ", + "302": "Quick Bleeding knife -- クイック出血ナイフ", + "310": "Quick Flame Bottle [parent] Search Bullets -- クイック火炎瓶【親】検索弾", + "315": "Quick Black Flame jar [parent] Search Bullets -- クイック黒火炎瓶【親】検索弾", + "340": "Caries State _ attracting -- 蝕状態_引き寄せ", + "341": "Caries status _ attracting _ recovery -- 蝕状態_引き寄せ_回復", + "400": "[DLC] Talking stone a [fly] -- 【DLC】しゃべる石A【飛ぶ】", + "401": "[DLC] Talking stone a [talking] -- 【DLC】しゃべる石A【しゃべる】", + "405": "[DLC] talking stone b [Fly] -- 【DLC】しゃべる石B【飛ぶ】", + "406": "[DLC] talking stone b [talking] -- 【DLC】しゃべる石B【しゃべる】", + "410": "[DLC] Talking stone c [fly] -- 【DLC】しゃべる石C【飛ぶ】", + "411": "[DLC] Talking stone c [talking] -- 【DLC】しゃべる石C【しゃべる】", + "415": "[DLC] talking stone d [fly] -- 【DLC】しゃべる石D【飛ぶ】", + "416": "[DLC] Talking stone D [speaking] -- 【DLC】しゃべる石D【しゃべる】", + "420": "[DLC] Talking stone e [fly] -- 【DLC】しゃべる石E【飛ぶ】", + "421": "[DLC] Talking stone e [talking] -- 【DLC】しゃべる石E【しゃべる】", + "500": "Ordinary arrows -- 普通の矢", + "501": "Big arrows -- 大きな矢", + "502": "Feather Arrow -- 羽根矢", + "503": "Arrows -- 火矢", + "504": "Poison -- 毒矢", + "505": "Mon Mitsuya -- 月光矢", + "506": "Tree Arrow -- 木の矢", + "507": "The arrow of the dragon hunting -- 竜狩りの矢", + "510": "Ordinary arrow _ Move shot -- 普通の矢_移動撃ち", + "511": "Normal arrow _ Diffuse arrow 1 -- 普通の矢_拡散矢1", + "512": "Normal arrow _ Diffuse Arrow 2 -- 普通の矢_拡散矢2", + "513": "Normal arrow _ Spread Arrow 3 -- 普通の矢_拡散矢3", + "514": "Normal arrow Fire -- 普通の矢_連射", + "540": "Mantella _ Moving Shot -- 毒矢_移動撃ち", + "541": "Mantella _ Diffuse Arrow 1 -- 毒矢_拡散矢1", + "542": "Mantella _ Diffuse Arrow 2 -- 毒矢_拡散矢2", + "543": "Mantella _ diffusion Arrow 3 -- 毒矢_拡散矢3", + "544": "Mantella _ Blazing -- 毒矢_連射", + "570": "Dragon Hunt Arrow -- 竜狩りの矢_貫通弾", + "9000": "Bomb ritual: Explosive bullets around -- ボム儀式:周囲爆発弾", + "9100": "Bomb ritual: Target Search Bullets _ host lv.20 or less -- ボム儀式:ターゲット検索弾_ホストLv.20 以下", + "9101": "Bomb ritual: Target Search Bullets _ host lv.40 or less -- ボム儀式:ターゲット検索弾_ホストLv.40 以下", + "9102": "Bomb ritual: Target Search Bullets _ host lv.60 or less -- ボム儀式:ターゲット検索弾_ホストLv.60 以下", + "9103": "Bomb ritual: Target Search Bullets _ host lv.80 or less -- ボム儀式:ターゲット検索弾_ホストLv.80 以下", + "9104": "Bomb ritual: Target Search Bullets _ host lv.100 or less -- ボム儀式:ターゲット検索弾_ホストLv.100 以下", + "9105": "Bomb ritual: Target Search Bullets _ host lv.120 or less -- ボム儀式:ターゲット検索弾_ホストLv.120 以下", + "9106": "Bomb ritual: Target Search Bullets _ host lv.140 or less -- ボム儀式:ターゲット検索弾_ホストLv.140 以下", + "9107": "Bomb ritual: Target Search Bullets _ host lv.160 or less -- ボム儀式:ターゲット検索弾_ホストLv.160 以下", + "9108": "Bomb ritual: Target Search Bullets _ host lv.180 or less -- ボム儀式:ターゲット検索弾_ホストLv.180 以下", + "9109": "Bomb ritual: Target Search Bullets _ host lv.200 or less -- ボム儀式:ターゲット検索弾_ホストLv.200 以下", + "9110": "Bomb ritual: Target Search Bullets _ host lv.250 or less -- ボム儀式:ターゲット検索弾_ホストLv.250 以下", + "9111": "Bomb ritual: Target Search Bullets _ host lv.300 or less -- ボム儀式:ターゲット検索弾_ホストLv.300 以下", + "9112": "Bomb ritual: Target Search Bullets _ host lv.400 or less -- ボム儀式:ターゲット検索弾_ホストLv.400 以下", + "9113": "Bomb ritual: Target Search Bullets _ host lv.500 or less -- ボム儀式:ターゲット検索弾_ホストLv.500 以下", + "9114": "Bomb ritual: Target Search Bullets _ host lv.600 or less -- ボム儀式:ターゲット検索弾_ホストLv.600 以下", + "9115": "Bomb ritual: Target Search Bullets _ host lv.700 or less -- ボム儀式:ターゲット検索弾_ホストLv.700 以下", + "9116": "Bomb ritual: Target Search Bullets _ host lv.800 or less -- ボム儀式:ターゲット検索弾_ホストLv.800 以下", + "9920": "Oil area ablaze [system] -- 油領域炎上【システム】", + "100000": "Map gimmick general-purpose explosive barrels -- マップギミック汎用 爆発樽", + "100010": "Map gimmick general-purpose combustion -- マップギミック汎用 燃焼", + "130000": "Protomap Exploding Barrels -- プロトマップ 爆発する樽", + "138000": "Dungeon Arrows -- ダンジョン 火矢", + "138001": "Dungeon Arrows (Speed early) -- ダンジョン 火矢(速度早い)", + "139000": "Dungeon Objects _ Magic -- 地下牢 器オブジェ_魔法", + "139001": "Dungeon Object _ Magic (explosion) -- 地下牢 器オブジェ_魔法(爆発)", + "149000": "FDP proto-oil jar [toss] -- FDPプロト 油壷【投げ】", + "149001": "FDP proto-oil jar [impact] -- FDPプロト 油壷【着弾】", + "149010": "FDP proto-oil jar (obj destruction) -- FDPプロト 油壷(Obj破壊)", + "149011": "FDP proto-oil jar (obj destruction) [Impact] -- FDPプロト 油壷(Obj破壊)【着弾】", + "149020": "FDP proto Flame bottle [throw] -- FDPプロト 火炎瓶【投げ】", + "149021": "FDP proto flame bottle [impact] -- FDPプロト 火炎瓶【着弾】", + "1070090": "c1070_ New Skeleton _ a flame vase -- c1070_新スケルトン_火炎壺", + "1070091": "c1070_ New Skeleton _ Flame vase [Impact] -- c1070_新スケルトン_火炎壺【着弾】", + "1070230": "c1070_ New Skeleton _ Bow -- c1070_新スケルトン_弓", + "1100800": "Dead Soldier Crossbow -- 亡者兵士 クロスボウ", + "1100801": "Dead Soldier Flame Crossbow -- 亡者兵士 炎クロスボウ", + "1100810": "Dead soldier Oil Pot -- 亡者兵士 油壺", + "1100811": "Dead soldier oil pot [impact] -- 亡者兵士 油壺【着弾】", + "1100820": "Dead Soldier Flame Bottle -- 亡者兵士 火炎瓶", + "1100821": "Dead Soldier Flame bottle [Impact] -- 亡者兵士 火炎瓶【着弾】", + "1100822": "Dead Soldier Flame Bottle [impact thereafter] -- 亡者兵士 火炎瓶【着弾その後】", + "1100823": "Dead Soldier Flame Bottle [impact thereafter] -- 亡者兵士 火炎瓶【着弾その後のその後】", + "1130700": "Caries slug: caries vomiting -- 蝕ナメクジ:蝕吐き", + "1130710": "Caries Slug: Vomit (short) -- 蝕ナメクジ:蝕吐き(短)", + "1130800": "Caries slugs: Ground search bullets -- 蝕ナメクジ:地面検索弾", + "1130801": "Caries Slugs: damage accumulated -- 蝕ナメクジ:蝕溜まりダメージ", + "1180700": "Baxtenife throwing -- バクステナイフ投げ", + "1180710": "Knife throwing -- ナイフ投げ", + "1180720": "Step knife throwing -- ステップナイフ投げ", + "1200190": "c1200_ Dwarf Man (Hatchet/ice-Ax) _ Blowgun (1) -- c1200_矮小人(ハチェット/ ピッケル)_吹き矢(1)", + "1200191": "c1200_ Dwarf Man (Hatchet/ice-Ax) _ Blowgun (2) -- c1200_矮小人(ハチェット/ ピッケル)_吹き矢(2)", + "1200240": "c1200_ Dwarf (Hatchet/ice-AX) _ A flame pot thrower -- c1200_矮小人(ハチェット/ ピッケル)_火炎壺 投げ", + "1200241": "c1200_ Dwarf (Hatchet/ice-AX) _ Flame Pots landed -- c1200_矮小人(ハチェット/ ピッケル)_火炎壺 着弾", + "1210340": "Poison spitting -- 毒吐き", + "1210360": "Estrus induced test -- 発情誘発テスト", + "1210370": "Blue Magic 1 -- ブルー 魔法1", + "1210380": "Blue Magic 2 Body -- ブルー 魔法2 本体", + "1210381": "Blue Magic 2 Landing -- ブルー 魔法2 着弾", + "1210390": "Blue Range Recovery -- ブルー 範囲回復", + "1220020": "Firing maggots -- ウジ吐き_発射", + "1220021": "Maggots spitting _ Search bullets -- ウジ吐き_検索弾", + "1220022": "The Uzi spitting -- ウジ吐き_着弾", + "1220030": "Uzi hit effect Search bullets -- ウジヒットエフェクト検索弾", + "1220031": "Uzi hit effect -- ウジヒットエフェクト", + "1230740": "Projection Magic -- 投射魔法", + "1240700": "c1240 Poor dead _ a flame vase [throwing] -- c1240貧民亡者_火炎壺【投げ】", + "1240701": "c1240 Poor dead _ flame pots [Impact] -- c1240貧民亡者_火炎壺【着弾】", + "1240710": "c1240 Poor dead _ oil pot -- c1240貧民亡者_油壺", + "1240711": "c1240 Poor dead _ oil pot [Impact] -- c1240貧民亡者_油壺【着弾】", + "1250700": "C1250_ Poor Dead Elite _ fire-blowing -- c1250_貧民亡者エリート_火吹き", + "1260700": "C1260 Poor dead servant _ throwing mortar -- c1260貧民亡者下男_臼投げ", + "1260701": "C1260 the poor dead servant _ a mortar throw (poised) -- c1260貧民亡者下男_臼投げ(構え)", + "1280700": "C1280_ Shin Ojo Knight (bow): shooting -- c1280_新王城騎士(弓):射撃", + "1290150": "Force -- フォース", + "1290190": "Pillar of Light: Wall Search -- 光の柱:壁検索", + "1290191": "Pillar of Light: Floor Search -- 光の柱:床検索", + "1290192": "Pillar of Light: Impact -- 光の柱:着弾", + "1290193": "Pillar of Light: shock wave at trigger -- 光の柱:発動時の衝撃波", + "1290194": "Pillar of Light: Wall search (short distance) -- 光の柱:壁検索(近距離)", + "1290195": "Pillar of Light: Wall search (target above) -- 光の柱:壁検索(ターゲット真上)", + "1290330": "Force -- フォース", + "1290380": "Axe Throwing _ Right -- 斧投擲_右", + "1290381": "Ax Throwing _ Left -- 斧投擲_左", + "1310180": "Chill Breath (parent) -- 冷気ブレス(親)", + "1310181": "Chill Breath (Child) -- 冷気ブレス(子)", + "1310182": "Chill Breath _ Decal (parent) -- 冷気ブレス_デカール(親)", + "1310183": "Chill Breath (Child) -- 冷気ブレス(子)", + "1310700": "Constant cold air (outbreak bullet) -- 常時発生冷気(発生弾)", + "1310701": "Constant cold air (impact) -- 常時発生冷気(着弾)", + "1310710": "Always raised for cold air decals -- 常時発生冷気 デカール用", + "1320112": "Mass of floating crystals (MP recovery bullets) -- 浮遊する結晶の塊(MP回復弾)", + "1320140": "High Speed straight line Magic (launch) -- 高速直線魔法(発射)", + "1320141": "Fast Line Magic (search) -- 高速直線魔法(検索)", + "1320142": "High Speed straight line magic (impact) -- 高速直線魔法(着弾)", + "1320143": "High Speed straight line magic (remaining) -- 高速直線魔法(残存)", + "1320150": "Drenched crystal bullets (parent) -- 降り注ぐ結晶弾(親)", + "1320151": "Drenched crystal bullets (hygiene) -- 降り注ぐ結晶弾(衛生)", + "1320152": "Drenched Crystal bullets (child) -- 降り注ぐ結晶弾(子)", + "1320153": "Falling crystal bullets (explosion) -- 降り注ぐ結晶弾(爆発)", + "1320155": "Falling crystal Bullets (parent): For a long distance -- 降り注ぐ結晶弾(親):遠距離用", + "1320160": "Proximity explosion (Launch) -- 近接爆発(発射)", + "1320161": "Melee explosion (bullet) -- 近接爆発(弾)", + "1320170": "Crystal Wall (PC follower) -- 結晶壁(PC追従)", + "1320190": "Pillar of Light: Wall Search -- 光の柱:壁検索", + "1320191": "Pillar of Light: Floor Search -- 光の柱:床検索", + "1320192": "Pillar of Light: Impact -- 光の柱:着弾", + "1320193": "Pillar of Light: shock wave at trigger -- 光の柱:発動時の衝撃波", + "1320194": "Pillar of Light: Wall search (short distance) -- 光の柱:壁検索(近距離)", + "1320195": "Pillar of Light: Wall search (target above) -- 光の柱:壁検索(ターゲット真上)", + "1340700": "Soul Arrow -- ソウルの矢", + "1340710": "Disturbed Soul Spear -- 乱れるソウルの槍", + "1340720": "Oil Bullet (Straight line: Medium distance) -- 油弾(直線:中距離)", + "1340730": "Oil Bullets (Nagi) -- 油弾(なぎ払い)", + "1340740": "Oil Bullet (Straight line: short distance) -- 油弾(直線:近距離)", + "1380700": "Magic Attack (weak) -- 魔法攻撃(弱)", + "1380710": "Magic Attack (Strong) -- 魔法攻撃(強)", + "1390400": "The assassin of the c1390_ Snake: Breath -- c1390_蛇人の暗殺者:ブレス", + "1391032": "C1391_ Snake man Assassin (Kusarigama): a3002 return -- c1391_蛇人の暗殺者(鎖鎌):a3002戻り", + "1391060": "Assassins of C1391_ (Kusarigama): Flame -- c1391_蛇人の暗殺者(鎖鎌):火炎", + "1391061": "C1391_ Snake man Assassin (Kusarigama): Poison Mist -- c1391_蛇人の暗殺者(鎖鎌):毒霧", + "1391132": "C1391_ Snake man Assassin (Kusarigama): a3014 return -- c1391_蛇人の暗殺者(鎖鎌):a3014戻り", + "1391140": "C1391_ Snake man Assassin (Kusarigama): a3015 return -- c1391_蛇人の暗殺者(鎖鎌):a3015戻り", + "1391141": "C1391_ Snake man Assassin (Kusarigama): a3016 return -- c1391_蛇人の暗殺者(鎖鎌):a3016戻り", + "1391150": "C1391_ Snake man Assassin (Kusarigama): a3017 return -- c1391_蛇人の暗殺者(鎖鎌):a3017戻り", + "1391151": "C1391_ Snake man Assassin (Kusarigama): a3018 return -- c1391_蛇人の暗殺者(鎖鎌):a3018戻り", + "1410300": "c1410_ Silver Knight: shooting -- c1410_銀騎士:射撃", + "1410310": "c1410_ Silver Knight: Cumshots -- c1410_銀騎士:強射", + "2070700": "Breath (with Porotsu) -- ブレス(ポロッと)", + "2070710": "Breath (continued) -- ブレス(継続)", + "2080130": "Poison Blood spitting _ firing -- 毒血吐き_発射", + "2080131": "Poison Blood Spitting _ landing -- 毒血吐き_着弾", + "2090700": "Straight Breath -- 直線ブレス", + "2090710": "Whack Breath -- 薙ぎブレス", + "2090720": "Air Breath -- 空中ブレス", + "2100700": "c2000_ Drifting stuff: spit something out -- c2000_漂うもの:何かを吐く", + "2120130": "Spitting Spit -- 唾吐き", + "2140010": "Petrified Breath -- 石化ブレス", + "2140020": "Jump & Breath -- ジャンプ&ブレス", + "2140021": "Jump & Breath Landing -- ジャンプ&ブレス 着弾", + "2180040": "C2180_ Maggots: Vomit spitting _ firing -- c2180_蛆人:ゲロ吐き_発射", + "2180110": "C2180_ Maggots: Magic -- c2180_蛆人:魔法", + "2180200": "C2180_ Maggots: Fire spreading -- c2180_蛆人:延焼", + "2190700": "C2190_ Gargoyle (Light): Saigi -- c2190_ガーゴイル(灯火):薙ぎ払い炎玉", + "2190701": "C2190_ Gargoyle (Light): Saigi Flame Ball -- c2190_ガーゴイル(灯火):薙ぎ払い炎玉その後", + "2190702": "C2190_ Gargoyle (Light): Saigi Flame Ball then afterwards -- c2190_ガーゴイル(灯火):薙ぎ払い炎玉その後その後", + "2190705": "C2190_ Gargoyle (Light): Additional Saigi -- c2190_ガーゴイル(灯火):追加薙ぎ払い炎玉", + "2190706": "C2190_ Gargoyle (Light): Whack Falling flame ball -- c2190_ガーゴイル(灯火):薙ぎ下がり炎玉", + "2190710": "C2190_ Gargoyle (Light): Slams: Fire spray -- c2190_ガーゴイル(灯火):叩きつけ:火飛沫", + "2190711": "C2190_ Gargoyle (Light): slams: Fire splashes then -- c2190_ガーゴイル(灯火):叩きつけ:火飛沫その後", + "2190720": "C2190_ Gargoyle (Light): large ignition (fire splashes) _ Before -- c2190_ガーゴイル(灯火):大発火(火飛沫)_前", + "2190721": "C2190_ Gargoyle (Light): large ignition (fire splashes) _ Right -- c2190_ガーゴイル(灯火):大発火(火飛沫)_右", + "2190722": "C2190_ Gargoyle (Light): large ignition (fire splashes) _ Left -- c2190_ガーゴイル(灯火):大発火(火飛沫)_左", + "2190730": "C2190_ Gargoyle (Light): Fire attack from above -- c2190_ガーゴイル(灯火):上空から発火攻撃", + "2210500": "c2210_ Zombie Crow (Cane upper): insane _ Firing bullets -- c2210_ゾンビカラス(杖アッパー):発狂させ_発射弾", + "2210501": "c2210_ Zombie Crow (Cane upper): insane _ Spreading bullets -- c2210_ゾンビカラス(杖アッパー):発狂させ_拡散弾", + "2210510": "c2210_ Zombie Crow (Cane upper): Magic (fire arrows) -- c2210_ゾンビカラス(杖アッパー):魔法(炎の矢)", + "2210540": "c2210_ Zombie Crow (Cane upper): Magic (Sangi Flame) -- c2210_ゾンビカラス(杖アッパー):魔法(薙ぎ払う炎)", + "2210541": "c2210_ Zombie Crow (Cane upper): Magic (Sangi Flame) -- c2210_ゾンビカラス(杖アッパー):魔法(薙ぎ払う炎)", + "2230200": "c2230_ Shing: Petrified Mist (forward) -- c2230_獄吏:石化の霧(前方)", + "2230210": "c2230_ Shing: Petrified Mist (range) Firing bullets -- c2230_獄吏:石化の霧(範囲) 発射弾", + "2230211": "C2230_ Shing: Mist of petrified (range) Spread bullets -- c2230_獄吏:石化の霧(範囲) 拡散弾", + "2230700": "Quick Turn Nakaishi breath (right turn) -- クイックターン中石化ブレス(右回転)", + "2230701": "Quick Turn Nakaishi breath (left turn) -- クイックターン中石化ブレス(左回転)", + "2230900": "Long Distance Magic: Sniper (tentative) _ Search Bullets -- 遠距離魔法:スナイパー(仮)_検索弾", + "2230901": "Long Distance Magic: Sniper (Provisional) _ Spread Bullets -- 遠距離魔法:スナイパー(仮)_拡散弾", + "2230902": "Long Distance Magic: Sniper (Provisional) _ Projectile -- 遠距離魔法:スナイパー(仮)_発射弾", + "2240112": "C2240_ Full Armor Beast: Sand Dust (Saigi) -- c2240_フルアーマー獣:砂埃(薙ぎ払い)", + "2240176": "C2240_ Full Armor beast: Snowstorm Breath -- c2240_フルアーマー獣:吹雪ブレス", + "2240260": "Always raised for cold air decals -- 常時発生冷気 デカール用", + "2250700": "c2250_ Tindalos: Thunder Breath (Search bullets) -- c2250_ティンダロス:雷ブレス(検索弾)", + "2250701": "c2250_ Tindalos: Thunder Breath (Derived 1) -- c2250_ティンダロス:雷ブレス(派生1)", + "2250702": "c2250_ Tindalos: Thunder Breath (Derived 2) -- c2250_ティンダロス:雷ブレス(派生2)", + "2250703": "c2250_ Tindalos: Thunder Breath (Derived 3) -- c2250_ティンダロス:雷ブレス(派生3)", + "2250704": "c2250_ Tindalos: Thunder Breath (derived 4) -- c2250_ティンダロス:雷ブレス(派生4)", + "2260700": "Barista: Search -- バリスタ:検索", + "2260701": "Varistor: Impact (Splash) -- バリスタ:着弾(水しぶき)", + "2270110": "c2270_ Stench Crab: Bubble spitting (firing) -- c2270_死臭蟹:泡吐き(発射)", + "2270111": "c2270_ Stench Crab: Bubble spitting (impact) -- c2270_死臭蟹:泡吐き(着弾)", + "3050700": "Breath: Straight Wind -- ブレス:直風", + "3050701": "Breath: Hot air 1 -- ブレス:熱風1", + "3050710": "Immediate breath: Straight Wind -- 直下ブレス:直風", + "3050711": "Immediate breath: Hot air 1 -- 直下ブレス:熱風1", + "3050720": "Like a flying flame -- 飛び散る炎のようなもの", + "3050721": "Like a flying flame -- 飛び散る炎のようなもの", + "3060700": "Breath: Fire -- ブレス:出火", + "3060701": "Breath: Divergent -- ブレス:末広がり", + "3060710": "General explosion -- 汎用爆発", + "3060800": "Walking breath: Drop it down -- 歩きブレス:下に落とす", + "3060801": "Walk breath: Leave at your feet -- 歩きブレス:足元に残す", + "3070700": "The Great Fire ball of chaos -- 混沌の大火球_発射弾", + "3070720": "The Great storm of chaos _ firing bullets -- 混沌の大嵐_発射弾", + "3080700": "Scales rain: Fixed -- 鱗粉の雨:固定", + "3080701": "Scales Rain: Bullets -- 鱗粉の雨:弾", + "3080710": "Big God soldier Laser: Laser -- 巨神兵レーザー:レーザー", + "3080711": "Big God soldier Laser: Lingering -- 巨神兵レーザー:余韻", + "3080712": "Big God soldier Laser: Impact -- 巨神兵レーザー:着弾", + "3080720": "High-speed explosion: Bullet -- 低速大爆発蝕弾:弾", + "3080721": "High-speed explosion: Impact -- 低速大爆発蝕弾:着弾", + "3100011": "A search grenade from the right hand -- 右手から出る水晶_検索弾", + "3100012": "The crystal that comes out of the right -- 右手から出る水晶_前兆弾", + "3100013": "The crystal that comes out of the right hand -- 右手から出る水晶_判定弾", + "3100021": "Search bullets from the left hand crystal -- 左手からでる水晶_検索弾", + "3100022": "The crystal that comes from the left hand -- 左手からでる水晶_前兆弾", + "3100023": "Judging bullets from the left hand -- 左手からでる水晶_判定弾", + "3100051": "Slams _ Crystal Search bullets -- 叩きつけ_結晶検索弾", + "3100052": "Slams _ Crystal Determination bullets -- 叩きつけ_結晶判定弾", + "3100061": "Dive _ Crystal Search Bullets -- 飛び込み_結晶検索弾", + "3100062": "Dive _ Crystal Determination bullets -- 飛び込み_結晶判定弾", + "3100070": "Breath -- ブレス", + "3100071": "Breath _ Crystal Search bullets -- ブレス_結晶検索弾", + "3100072": "Breath _ Crystal Determination bullets -- ブレス_結晶判定弾", + "3110700": "Caries vomiting -- 蝕吐き", + "3110710": "Smokescreen -- 煙幕", + "3120700": "Magic 1: Force -- 魔法1:フォース", + "3120710": "Magic 2: Soul Restraints: Search -- 魔法2:魂縛り:検索", + "3120711": "Magic 2: Soul Restraints: Judgement -- 魔法2:魂縛り:判定", + "3140010": "For eclipse Dripping decal -- 蝕ポタポタ デカール用", + "3140500": "Straight Breath _ Breath -- 直線ブレス_ブレス", + "3140501": "Straight Breath _ Breath (search) -- 直線ブレス_ブレス(検索)", + "3140502": "Straight Breath _ Breath (impact) -- 直線ブレス_ブレス(着弾)", + "3140510": "Saigi Bless _ Breath -- 薙ぎ払いブレス_ブレス", + "3140511": "Saigi Bless (search) -- 薙ぎ払いブレス_ブレス(検索)", + "3140512": "Saigi Breath _ Breath (impact) -- 薙ぎ払いブレス_ブレス(着弾)", + "3140520": "Immediate breath _ Breath -- 直下ブレス_ブレス", + "3140521": "Immediate Breath _ Breath (search) -- 直下ブレス_ブレス(検索)", + "3140522": "Immediate breath _ Breath (impact) -- 直下ブレス_ブレス(着弾)", + "3140530": "Glide Breath _ Breath -- 滑空ブレス_ブレス", + "3140531": "Glide Breath _ Breath (search) -- 滑空ブレス_ブレス(検索)", + "3140532": "Glide Breath _ Breath (impact) -- 滑空ブレス_ブレス(着弾)", + "3140540": "Hashimoto _ Swirling Breath _ bless ① -- 橋下_旋回ブレス_ブレス①", + "3140541": "Hashimoto _ Swirling Breath _ Breath ① (search) -- 橋下_旋回ブレス_ブレス①(検索)", + "3140542": "Hashimoto _ Swirling Breath _ breath ① (Impact) -- 橋下_旋回ブレス_ブレス①(着弾)", + "3140550": "Hashimoto _ Swirling Breath _ bless ② -- 橋下_旋回ブレス_ブレス②", + "3140551": "Hashimoto _ Swirling Breath _ Breath ② (search) -- 橋下_旋回ブレス_ブレス②(検索)", + "3140552": "Hashimoto _ Swirling Breath _ breath ② (Impact) -- 橋下_旋回ブレス_ブレス②(着弾)", + "3140560": "Climb 2_ appearance _ on the tower → Square _ breath -- 登る2_登場_塔上→広場_ブレス", + "3140562": "Climb 2_ appearance _ on tower → Square _ breath (impact) -- 登る2_登場_塔上→広場_ブレス(着弾)", + "3140570": "Climb 2_ another tower → square → breath withdrawal _ breath -- 登る2_別塔→広場→ブレス撤退_ブレス", + "3140572": "Climb 2_ Betto → square → breath withdrawal _ breath (impact) -- 登る2_別当→広場→ブレス撤退_ブレス(着弾)", + "3140581": "Rampage Breath A_ Ground (impact) -- 暴れブレスA_地面(着弾)", + "3140582": "Rampage Breath A_ Ground (decal) -- 暴れブレスA_地面(デカール)", + "3140591": "Rampage Breath b_ Ground (impact) -- 暴れブレスB_地面(着弾)", + "3140592": "Rampage Breath b_ Ground (decal) -- 暴れブレスB_地面(デカール)", + "3140630": "Rampage Breath b_ Ground Passage (impact) -- 暴れブレスB_地面通路(着弾)", + "3140631": "Rampage Breath b_ Ground Passage (decal) -- 暴れブレスB_地面通路(デカール)", + "3140640": "Rampage Breath A_ Ground Determination small (impact) -- 暴れブレスA_地面判定小(着弾)", + "3140641": "Rampage Breath A_ Ground Determination small (decal) -- 暴れブレスA_地面判定小(デカール)", + "3140650": "Rampage Breath B_ Ground Determination small (impact) -- 暴れブレスB_地面判定小(着弾)", + "3140651": "Rampage Breath B_ Ground Determination small (decal) -- 暴れブレスB_地面判定小(デカール)", + "3140652": "Rampage Breath B_ Ground Determination large (impact) -- 暴れブレスB_地面判定大(着弾)", + "3140653": "Rampage Breath B_ Ground Determination large (decal) -- 暴れブレスB_地面判定大(デカール)", + "3140667": "Withdrawal Breath _ Ground (impact) -- 撤退ブレス_地面(着弾)", + "3140668": "Withdrawal Breath _ Ground (decal) -- 撤退ブレス_地面(デカール)", + "3140677": "Bonfire Bless _ Ground (impact) -- 篝火ブレス_地面(着弾)", + "3140678": "Bonfire Breath _ Ground (decal) -- 篝火ブレス_地面(デカール)", + "3140687": "Left side Breath _ Ground (impact) -- 左側面ブレス_地面(着弾)", + "3140688": "Left side Breath _ Ground (decal) -- 左側面ブレス_地面(デカール)", + "3160700": "Arts: Shockwave -- アーツ:衝撃波", + "5010700": "Widespread storm whack: search bullets -- 広範囲嵐薙ぎ:検索弾", + "5010701": "Widespread storm whack: damage -- 広範囲嵐薙ぎ:ダメージ", + "5010710": "Wide range Storm whack second stage: Search bullets -- 広範囲嵐薙ぎ2段目:検索弾", + "5010711": "Wide range Storm whack second stage: damage -- 広範囲嵐薙ぎ2段目:ダメージ", + "5010720": "Shock Wave (line): Damage -- 衝撃波(直線):ダメージ", + "5030700": "Vertical Breath -- 垂直ブレス", + "5030701": "Flame: Divergent -- 火炎:末広がり", + "5030710": "Flapping attack: Tornado -- 羽ばたき攻撃:竜巻", + "5030711": "Flapping attack: Tornado landed -- 羽ばたき攻撃:竜巻_着弾", + "5120710": "Eclipse explosion -- 蝕爆発", + "5120720": "Caries Accumulation _ Search: Scattered Small -- 蝕溜まり_検索:散らばり小", + "5120721": "Accumulation of caries -- 蝕溜まり_着弾", + "5120730": "Caries Accumulation _ Search: Scattered Dai -- 蝕溜まり_検索:散らばり大", + "5120800": "Walking _ Body Damage -- 歩行_胴体ダメージ", + "5120810": "Traveling _ Body Damage -- 走行_胴体ダメージ", + "5150700": "Induction bullet: Weak waiting -- 誘導弾:待機誘導弱め", + "5150701": "Guided bullets: guiding and strengthening slowly -- 誘導弾:誘導強めゆっくり進む", + "5150702": "Guided bullets: Induction weakens quickly -- 誘導弾:誘導弱め早くすすむ", + "5150710": "Whack Diffusion bullets -- 薙ぎ拡散弾", + "5150720": "Long Penetrating Magic -- 遠距離貫通魔法", + "5150730": "Grave King's great Elementalers: signs-Outbreak bullets -- 墓王の大剣舞:予兆-発生弾", + "5150731": "Grave King's great Elementalers: signs _ Multiple -- 墓王の大剣舞:予兆_複数", + "5150732": "Grave King Elementalers: main body -- 墓王の大剣舞:本体", + "5150740": "NITs large explosion -- ニト大爆発", + "5160060": "Miasma breath (before HU) -- 瘴気ブレス(HU前)", + "5160061": "Miasma breath (before HU) -- 瘴気ブレス(HU前)", + "5160303": "Grave King Elementalers (outbreak bullet) -- 墓王の大剣舞(発生弾)", + "5170010": "Breath -- ブレス", + "5180430": "The real mystery: throwing -- 謎の実:投擲", + "5180431": "The real mystery: impact -- 謎の実:着弾", + "5180800": "Cursed Colossus: Mystery juice -- 呪われた巨像:謎の汁", + "5190700": "They yell -- 大声で叫ぶ", + "5190710": "Kensaki Shockwave: Search -- 剣先衝撃波:検索", + "5190711": "Kensaki Shock Wave: Impact -- 剣先衝撃波:着弾", + "5220700": "Fireball -- 火球", + "5220800": "Curse helmeted -- 呪詛の号令", + "5221700": "Fireball -- 火球", + "5221710": "Force -- フォース", + "5221800": "Curse _ Parents -- 呪詛_親", + "5221801": "Curse _ Child -- 呪詛_子", + "5222700": "Fireball -- 火球", + "5223700": "Fireball -- 火球", + "5230070": "Passage Breath 1: Wait C -- 通路ブレス1:待機C", + "5230071": "Passage Breath 1: Standby c_ Impact 1 -- 通路ブレス1:待機C_着弾1", + "5230072": "Passage Breath 1: Standby c_ Impact 2 -- 通路ブレス1:待機C_着弾2", + "5230130": "Outside stair breath: wait F -- 外階段ブレス:待機F", + "5230200": "Outside stair breath: wait g -- 外階段ブレス:待機G", + "5230210": "Bell tower Breath: Wait F -- 鐘楼ブレス:待機F", + "5230220": "Bell tower Breath: Wait g -- 鐘楼ブレス:待機G", + "5230250": "Poke/Single Passage breath 2: Wait C -- 突く・単通路ブレス2:待機C", + "5230260": "Passage Breath 3: Wait C -- 通路ブレス3:待機C", + "5230261": "Passage Breath 3: Standby c_ Impact 1 -- 通路ブレス3:待機C_着弾1", + "5230280": "Chasing PC while blessing -- ブレスしつつPCを追う", + "5230320": "Breath down the stairs: wait D -- 階段下方にブレス:待機D", + "5240100": "c5240_ Moonlight Witch: Always Torches -- c5240_月光の魔女:常時松明", + "5240110": "C5240_ Moonlight Witch: Earth Disgrace (ground Search) -- c5240_月光の魔女:地面汚し(地面検索)", + "5240111": "c5240_ Moonlight Witch: Ground Disgrace (land landing) -- c5240_月光の魔女:地面汚し(地面着弾)", + "5240200": "c5240_ Moonlight Witch: Long Distance Magic (fire) -- c5240_月光の魔女:掲げ時 遠距離魔法(発射)", + "5240201": "c5240_ Moonlight Witch: Long Distance Magic (search) -- c5240_月光の魔女:掲げ時 遠距離魔法(検索)", + "5240202": "c5240_ Moonlight Witch: Long Distance Magic (impact) -- c5240_月光の魔女:掲げ時 遠距離魔法(着弾)", + "5240203": "c5240_ Moonlight Witch: Long Distance Magic (impact) -- c5240_月光の魔女:掲げ時 遠距離魔法(着弾)", + "5240210": "C5240_ Moonlight Witch: Pillar (warning) -- c5240_月光の魔女:火柱(予兆)", + "5240211": "C5240_ Moonlight Witch: Pillar (main body) -- c5240_月光の魔女:火柱(本体)", + "5240212": "C5240_ Moonlight Witch: Pillar (ground) -- c5240_月光の魔女:火柱(地面)", + "5240220": "C5240_ Moonlight Witch: Guided Bullets -- c5240_月光の魔女:誘導弾", + "5240230": "c5240_ Moonlight Witch: Spread bullets -- c5240_月光の魔女:拡散弾", + "5240240": "c5240_ Moonlight Witch: Nagi Flame -- c5240_月光の魔女:なぎ払う炎", + "5270140": "c5270_ Tracker _3014 explosion -- c5270_追跡者_3014蝕爆発", + "5270151": "c5270_ Tracker _3015 left (90 degrees turning) pillar [parents] -- c5270_追跡者_3015左旋回攻撃(90度旋回) 火柱【親】", + "5270152": "C5270_ Tracker _3015 left attack (90 degrees turning) pillar 【 child 】 -- c5270_追跡者_3015左旋回攻撃(90度旋回) 火柱【子】", + "5270520": "c5270_ tracker _100_3002 [HU] Eclipse explosion two-stage warning -- c5270_追跡者_100_3002[HU]蝕爆発二段 予兆爆発", + "5270521": "c5270_ tracker _100_3002 [HU] Eclipse explosion stage explosion -- c5270_追跡者_100_3002[HU]蝕爆発二段 爆発", + "5270721": "c5270_ tracker _100_3022 [HU] right attack (90 degree swivel) caries pillar [parent] -- c5270_追跡者_100_3022[HU]右旋回攻撃(90度旋回) 蝕柱【親】", + "5270722": "c5270_ tracker _100_3022 [HU] right attack (90 degree swivel) (child) -- c5270_追跡者_100_3022[HU]右旋回攻撃(90度旋回) 蝕柱【子】", + "5270731": "c5270_ tracker _100_3023 [HU] left attack (90 degree turning) flame pillar [Parent] -- c5270_追跡者_100_3023[HU]左旋回攻撃(90度旋回) 炎柱【親】", + "5270732": "c5270_ tracker _100_3023 [HU] left attack (90 degree turning) flame pillar [child] -- c5270_追跡者_100_3023[HU]左旋回攻撃(90度旋回) 炎柱【子】", + "9990730": "Vanguards of c9990_: the Arrow of Seoul -- c9990_蝕の尖兵:ソウルの矢" + }, + "BulletCreateLimitParam": {}, + "CalcCorrectGraph": { + "0": "0: None -- 0:なし", + "1": "1: Hard Stone -- 1:硬石", + "2": "2: Sharp Stone -- 2:鋭石", + "3": "3: All Stones -- 3:みなぎ石", + "4": "4: Stone -- 4:にび石", + "5": "5: Blade Stone -- 5:刃石", + "6": "6: Spider yarn Steel wire -- 6:蜘蛛糸鋼線", + "7": "7: Mercury Stone -- 7:水銀石", + "8": "8: Dragon Stone -- 8:竜石", + "9": "9: Breathed Stone -- 9:吸いつき石", + "10": "10: Spinal Stone -- 10:髄石", + "11": "11: Mon Mitsuishi -- 11:月光石", + "12": "12: Tsukikage Stone -- 12:月影石", + "13": "13: Glimmer Stone -- 13:微光石", + "14": "14: Magic Shield Stone -- 14:魔法盾石", + "15": "15: Ore Spirit DS -- 15:鉱石の精霊DS", + "16": "16: DS -- 16:DS", + "102": "Defense Force (Seoul level) -- 防御力(ソウルレベル)", + "110": "Poison tolerance (Soul level) -- 毒耐性(ソウルレベル)", + "111": "Plague Resistance (Seoul level) -- 疫病耐性(ソウルレベル)", + "112": "Bleeding tolerance (Seoul level) -- 出血耐性(ソウルレベル)", + "113": "Curse resistance (Soul level) -- 呪い耐性(ソウルレベル)", + "114": "Cold air resistance (Soul level) -- 冷気耐性(ソウルレベル)", + "120": "Poison tolerance (physical strength) -- 毒耐性(体力)", + "121": "Plague Resistance (physical strength) -- 疫病耐性(体力)", + "122": "Bleeding resistance (endurance) -- 出血耐性(持久力)", + "123": "Curse Resistance (Luck) -- 呪い耐性(運)", + "124": "Cold air resistance (life force) -- 冷気耐性(生命力)", + "130": "Physical Defense Strength -- 物理防御力(筋力)", + "131": "Physical Defense Strength -- 物理防御力(体力)", + "132": "Magic Defensive Force (faith) -- 魔法防御力(信仰)", + "133": "Flame Defense Force (strength) -- 炎防御力(筋力)", + "134": "Lightning Defense Force (endurance) -- 雷防御力(持久力)", + "135": "Defense of Darkness (Faith) -- 闇防御力(信仰)", + "140": "Drop Rate (Luck) -- ドロップ率(運)", + "150": "Maximum replenishment number of recovery spots -- 回復スポットの最大補充数", + "160": "Shield status correction physical cut ratio -- 盾ステータス補正 物理カット率", + "161": "Shield Status correction attribute cut rate -- 盾ステータス補正 属性カット率", + "162": "Shield status correction tolerance cut rate -- 盾ステータス補正 耐性カット率", + "163": "Shield status correction stamina cut ratio -- 盾ステータス補正 スタミナカット率", + "170": "Arts Point Maximum (strength) -- アーツポイント最大値(筋力)", + "171": "Arts Point Max value (workmanship) -- アーツポイント最大値(技量)", + "172": "Arts Point Max Value (Magic) -- アーツポイント最大値(魔法)", + "173": "Arts Point Maximum (miracle) -- アーツポイント最大値(奇跡)", + "200": "Growing consumption Soul -- 成長消費ソウル" + }, + "Ceremony": { + "1000": "For automatic patrol: normal -- 自動巡回用:通常", + "1001": "For automatic circuit: ritual A -- 自動巡回用:儀式A", + "1002": "Automatic Circuit: Ritual b -- 自動巡回用:儀式B", + "1003": "For automatic circuit: ritual c -- 自動巡回用:儀式C", + "1004": "For automatic circuit: ritual D -- 自動巡回用:儀式D", + "1005": "Automatic Circuit: Ritual E -- 自動巡回用:儀式E", + "30000000": "Ojo _1 of caries: Daytime -- 蝕の王城_1:昼", + "30000010": "Ojo _1 of caries: gloomy and cloudy -- 蝕の王城_1:陰鬱な曇り", + "30001000": "Ojo _1 of caries: Product version -- 蝕の王城_1:製品版", + "30001010": "Ojo _1 of caries: NT -- 蝕の王城_1:NT", + "30001011": "Ojo _1 of caries: TGS -- 蝕の王城_1:TGS", + "30001012": "Ojo _1 of caries: E3 light Test -- 蝕の王城_1:E3ライトテスト", + "30001015": "Ojo _1 of caries: Ojo 2 distant Test -- 蝕の王城_1:王城2遠景テスト", + "30010000": "Ojo _2 of caries: Daytime -- 蝕の王城_2:昼", + "30010010": "Ojo _2 of caries: gloomy and cloudy -- 蝕の王城_2:陰鬱な曇り", + "31000000": "City of Evil Eye: Noon -- 邪眼の街:昼", + "31000010": "City of Evil eyes: gloomy and cloudy -- 邪眼の街:陰鬱な曇り", + "31000020": "City of Evil Eye: evening/Dusk -- 邪眼の街:夕方/宵闇", + "31000030": "The City of Evil Eyes: Moon Night -- 邪眼の街:月夜", + "32000000": "The Bridge of Flying Dragon: Noon -- 飛竜の橋:昼", + "32000010": "The Bridge of Flying dragon: gloomy and cloudy -- 飛竜の橋:陰鬱な曇り", + "33000000": "Poison Swamp Forest: Noon -- 毒沼の森:昼", + "33000010": "Poison swamp Forest: gloomy and cloudy -- 毒沼の森:陰鬱な曇り", + "35000000": "Cathedral Church: Noon -- 聖堂教会:昼", + "35000010": "Cathedral church: Gloomy and cloudy -- 聖堂教会:陰鬱な曇り", + "37000000": "Anole: Daytime -- アノール:昼", + "37000010": "Anole: Gloomy and cloudy -- アノール:陰鬱な曇り", + "38000000": "Waste City: Daytime -- 廃都:昼", + "39000000": "Dungeon: Noon -- 地下牢:昼", + "40000000": "Location: Daytime -- 拠点:昼", + "40000010": "Location: Gloomy and cloudy -- 拠点:陰鬱な曇り", + "40000020": "Location: Evening/Dusk -- 拠点:夕方/宵闇" + }, + "CharMakeMenuListItemParam": { + "0": "Unconfigured -- 未設定", + "100": "Base type -- ベース体型", + "200": "Base face ※ Frame 90 ~ 99 for rendering images only, switch to another ID -- ベース顔 ※フレーム90~99はレンダリング画像専用のため、別IDに切り替え", + "220": "Base Face female display -- ベース顔 女性用表示", + "300": "Right eye -- 瞳(右)", + "400": "Left eye -- 瞳(左)", + "500": "Eyebrows -- 眉", + "600": "Beard -- 髭", + "620": "\"None\" for bearded women only -- 髭 女性用の「なし」のみ", + "700": "Hairstyle -- 髪型", + "800": "Decal -- デカール", + "900": "Accessories -- アクセサリ", + "1000": "Hitomi (for both eyes) -- 瞳(両瞳用)", + "1100": "Eyelashes -- まつげ", + "100000": "Gender -- 性別", + "100100": "Age group -- 年齢層", + "100200": "Feature -- 素性", + "100300": "Gift -- 贈り物", + "100400": "Voice -- ボイス" + }, + "CharMakeMenuTopParam": { + "1": "Gender -- 性別", + "2": "Age group -- 年齢層", + "3": "Voice -- 声", + "4": "Physique -- 体格", + "5": "-----{Scale Adjustment -- -----{スケール調整", + "6": "Head -- 頭部", + "7": "Chest -- 胸部", + "8": "Abdomen -- 腹部", + "9": "Arm part -- 腕部", + "10": "Leg -- 脚部", + "11": "}----- -- }-----", + "12": "Flesh-colored base -- 肌色ベース", + "13": "-----{Skin Tone -- -----{肌の色調", + "14": "Skin brightness -- 肌の明るさ", + "15": "Skin Color Adjustment 1 -- 肌色調整1", + "16": "Skin Color Adjustment 2 -- 肌色調整2", + "17": "Skin Color Adjustment 3 -- 肌色調整3", + "18": "Bridge color -- 鼻梁の色", + "19": "Cheek color -- 頬の色", + "20": "Law Line -- 法令線", + "21": "}----- -- }-----", + "22": "Face Base -- 顔ベース", + "23": "Face Base -- 顔ベース", + "24": "-----{Face Details -- -----{顔詳細", + "25": "A similar face -- 似た顔", + "26": "-----{Characterizing -- -----{特徴付け", + "27": "Age Image -- 年齢イメージ", + "28": "Gender image -- 性別イメージ", + "29": "Shape exaggerated -- 形状誇張", + "30": "}----- -- }-----", + "31": "-----{Face Shape -- -----{顔の形状", + "32": "-----{Face Balance -- -----{顔のバランス", + "33": "Nose ratio -- 鼻の占める比率", + "34": "Nose and forehead ratio -- 鼻と額の比率", + "35": "Face irregularities -- 顔の凹凸", + "36": "Distance between face parts -- 顔パーツの上下の間隔", + "37": "Tilt of Face Parts -- 顔パーツの傾き", + "38": "Left and right spacing of face parts -- 顔パーツの左右の間隔", + "39": "}----- -- }-----", + "40": "-----{forehead/eyebrows -- -----{額/眉間", + "41": "Forehead depth -- 額の深さ", + "42": "Forehead irregularities -- 額の凹凸", + "43": "Upper Bridge Height -- 鼻梁上部の高さ", + "44": "Bridge top Irregularities 1 -- 鼻梁上部の凹凸1", + "45": "Bridge Top Irregularities 2 -- 鼻梁上部の凹凸2", + "46": "Bridge Upper Width -- 鼻梁上部の幅", + "47": "}----- -- }-----", + "48": "-----{Eyebrow Bone -- -----{眉骨", + "49": "Height of eyebrow Bone -- 眉骨の高さ", + "50": "Inner edge of eyebrow bone -- 眉骨の内端", + "51": "The outside edge of the eyebrow bone -- 眉骨の外端", + "52": "}----- -- }-----", + "53": "-----{Eye -- -----{眼", + "54": "Eye position -- 眼の位置", + "55": "Eye size -- 眼の大きさ", + "56": "Eye inclination -- 眼の傾き", + "57": "Eye spacing -- 眼の間隔", + "58": "}----- -- }-----", + "59": "-----{Nose -- -----{鼻筋", + "60": "Nose depth -- 鼻筋の深さ", + "61": "Nose length -- 鼻筋の長さ", + "62": "Nose position -- 鼻の位置", + "63": "Nose height -- 鼻先の高さ", + "64": "Nose irregularities -- 鼻の凹凸", + "65": "Nose height -- 鼻の高さ", + "66": "Nose inclination -- 鼻の傾斜", + "67": "}----- -- }-----", + "68": "-----{Nose -- -----{小鼻", + "69": "Nose inclination -- 小鼻の傾斜", + "70": "The size of nose -- 小鼻の大きさ", + "71": "Nose width -- 小鼻の幅", + "72": "Size of nostrils -- 鼻孔の大きさ", + "73": "}----- -- }-----", + "74": "-----{Cheek -- -----{頬", + "75": "Cheek height -- 頬骨の高さ", + "76": "Depth of cheek bones -- 頬骨の深さ", + "77": "The size of bones -- 頬骨の広さ", + "78": "Cheek irregularities -- 頬の凹凸", + "79": "Cheek -- 頬", + "80": "}----- -- }-----", + "81": "-----{Lips -- -----{唇", + "82": "Lip shape -- 唇の形", + "83": "The expression of the mouth -- 口元の表情", + "84": "Lip bulge -- 唇の膨らみ", + "85": "Lip size -- 唇の大きさ", + "86": "Lip irregularities -- 唇の凹凸", + "87": "Lip thickness -- 唇の厚さ", + "88": "}----- -- }-----", + "89": "-----{Mouth -- -----{口", + "90": "Mouth irregularities -- 口の凹凸", + "91": "Mouth inclination -- 口の傾き", + "92": "Mating -- かみ合わせ", + "93": "Mouth position -- 口の位置", + "94": "Mouth width -- 口の幅", + "95": "Distance from mouth to jaw -- 口から顎先の距離", + "96": "}----- -- }-----", + "97": "-----{mandible -- -----{下顎", + "98": "Before and after the jaw tip -- 顎先端の前後", + "99": "Length of jaw tip -- 顎先の長さ", + "100": "Sticking out of the jaw tip -- 顎先の突き出し", + "101": "Jaw Tip Depth -- 顎先の深さ", + "102": "Jaw Tip Size -- 顎先の大きさ", + "103": "Jaw Tip Height -- 顎先の高さ", + "104": "Width of jaw tip -- 顎先の広さ", + "105": "}----- -- }-----", + "106": "-----{Maxillary -- -----{上顎", + "107": "Jaw sticking out -- 顎の突き出し", + "108": "Jaw width -- 顎の幅", + "109": "Lower Jaw -- 顎下部", + "110": "Jaw Contour -- 顎の輪郭", + "111": "}----- -- }-----", + "112": "}----- -- }-----", + "113": "-----{Skin color/Makeup -- -----{肌色/化粧", + "114": "-----{Eyes -- -----{目元", + "115": "Brightness of the eyes -- 目元の明るさ", + "116": "The brightness of the orbital -- 眼窩の明るさ", + "117": "Eyelid brightness -- まぶたの明るさ", + "118": "Eyelid color -- まぶたの色", + "119": "Eyeliner -- アイライナー", + "120": "Eye shadow -- アイシャドー", + "121": "}----- -- }-----", + "122": "-----{Lipstick -- -----{口紅", + "123": "Lipstick One -- 口紅1", + "124": "Lipstick 2 -- 口紅2", + "125": "}----- -- }-----", + "126": "}----- -- }-----", + "127": "-----{hair/eyebrow/beard/Eyelash -- -----{髪/眉/髭/まつげ", + "128": "Hair/eyebrow/Beard color -- 髪/眉/髭色", + "129": "Hair -- 髪", + "130": "Hair Color -- 髪色", + "131": "Eyebrows -- 眉", + "132": "Eyebrow Color -- 眉色", + "133": "Beard -- 髭", + "134": "Beard -- 髭", + "135": "Beard Color -- 髭色", + "136": "Eyelashes -- まつげ", + "137": "Eyelash Color -- まつげ色", + "138": "}----- -- }-----", + "139": "-----Hitomi -- -----{瞳", + "140": "The size of both eyes -- 両瞳の大きさ", + "141": "The color of both eyes -- 両瞳の色", + "142": "The size of the right pupil -- 右瞳の大きさ", + "143": "Right eye color -- 右瞳の色", + "144": "The size of the left pupil -- 左瞳の大きさ", + "145": "Left eye color -- 左瞳の色", + "146": "}----- -- }-----", + "147": "-----{tattoo/bruise/glasses -- -----{入れ墨/痣/メガネ", + "148": "Tattoos/Bruise -- 入れ墨/痣", + "149": "Tattoo/Bruise Color -- 入れ墨/痣の色", + "150": "-----{tattoo/bruise adjustment -- -----{入れ墨/痣の調整", + "151": "Position (up and down) -- 位置(上下)", + "152": "Position (left and right) -- 位置(左右)", + "153": "Angle -- 角度", + "154": "Zoom Rate -- 拡大率", + "155": "}----- -- }-----", + "156": "Glasses -- メガネ", + "157": "Glasses color -- メガネ色", + "158": "}----- -- }-----", + "159": "}----- -- }-----", + "160": "Save Favorites -- お気に入り保存", + "161": "Favorites Import -- お気に入り読み込み", + "162": "Initialize -- 初期化" + }, + "CharaInitParam": { + "0": "ID to Defocala of them -- そのうちデフォキャラにするID", + "1": "1: E3 Version (for demo) -- 1:E3版(デモ用)", + "2": "2: E3 version (fully equipped) -- 2:E3版(フル装備)", + "3": "3: Gamescom Sword -- 3:Gamescom 剣", + "4": "4: Gamescom Axe -- 4:Gamescom 斧", + "5": "5: Gamescom Sword (full gear) -- 5:Gamescom 剣 (フル装備)", + "6": "6: Gamescom Ax (full gear) -- 6:Gamescom 斧 (フル装備)", + "10": "10: TGS A (Wandering Knight) -- 10:TGS A (放浪の騎士)", + "11": "11: TGS B (North Warrior) -- 11:TGS B (北の戦士)", + "12": "12: TGS D (Temple Knight) -- 12:TGS D (神殿騎士)", + "13": "13: TGS C (Witch) -- 13:TGS C (魔法使い)", + "14": "14: TGS A (Wandering Knight) (full gear) -- 14:TGS A (放浪の騎士)(フル装備)", + "15": "15: TGS B (North Warrior) (full gear) -- 15:TGS B (北の戦士)(フル装備)", + "16": "16: TGS D (Temple Knight) (fully equipped) -- 16:TGS D (神殿騎士)(フル装備)", + "17": "17: TGS C (witch) (full gear) -- 17:TGS C (魔法使い)(フル装備)", + "20": "20: NT version A (Wandering Knight) -- 20:NT版 A (放浪の騎士)", + "21": "21: NT version B (North Warrior) -- 21:NT版 B (北の戦士)", + "22": "22: NT version D (Temple Knight) -- 22:NT版 D (神殿騎士)", + "23": "23: NT version C (Wizard) -- 23:NT版 C (魔法使い)", + "24": "24: NT version A (Wandering Knight) (full gear) -- 24:NT版 A (放浪の騎士)(フル装備)", + "25": "25: NT version B (North Warrior) (full gear) -- 25:NT版 B (北の戦士)(フル装備)", + "26": "26: NT version D (Temple Knight) (full gear) -- 26:NT版 D (神殿騎士)(フル装備)", + "27": "27: NT version C (witch) (full gear) -- 27:NT版 C (魔法使い)(フル装備)", + "2400": "2400: 【 Gift 】 Flame vase (tentative) -- 2400:【贈り物】火炎壺(仮)", + "2401": "2401: [Gift] Black flame jar (tentative) -- 2401:【贈り物】黒火炎壷(仮)", + "2402": "2402: [Gift] Human nature (Wang Hua items of firewood) (tentative) -- 2402:【贈り物】人間性(薪の王化アイテム)(仮)", + "2403": "2403: [Gift] Tongen (tentative) -- 2403:【贈り物】遠眼鏡(仮)", + "2404": "2404: 【 gift 】 Throwing knife (tentative) -- 2404:【贈り物】投げナイフ(仮)", + "2405": "2405: [Gift] dung dumpling (tentative) -- 2405:【贈り物】糞団子(仮)", + "2406": "The gift: The blessing of the Goddess (tentative) -- 2406:【贈り物】女神の祝福(仮)", + "2407": "2407: [Gift] stamina grass (tentative) -- 2407:【贈り物】スタミナ草(仮)", + "2408": "Matatabi: [Gift] (tentative) -- 2408:【贈り物】またたび(仮)", + "2409": "2409: [Gift] Unnecessary (tentative) -- 2409:【贈り物】不要(仮)", + "3000": "3000: [Character make-up for selection × Current provisional setting] Warrior -- 3000:【キャラメイク素性選択用×現在仮設定】戦士", + "3001": "3001: [Character make-up for selection × Current provisional setting] Knight -- 3001:【キャラメイク素性選択用×現在仮設定】騎士", + "3002": "I: [Chara make-up] for the selection of the current temporary setting -- 3002:【キャラメイク素性選択用×現在仮設定】放浪者", + "3003": "3003: [Character make-up for selection × Current provisional setting] Bandit -- 3003:【キャラメイク素性選択用×現在仮設定】盗賊", + "3004": "3004: [Character make-up for selection × Current provisional setting] Bandits -- 3004:【キャラメイク素性選択用×現在仮設定】山賊", + "3005": "3005: [Character make-up for selection × Current provisional setting] Hunter -- 3005:【キャラメイク素性選択用×現在仮設定】狩人", + "3006": "The wizard: [Character make-up for selection × current temporary setting] Magician -- 3006:【キャラメイク素性選択用×現在仮設定】魔術師", + "3007": "3007: [Character make-up for selection × current temporary setting] Sorcerer -- 3007:【キャラメイク素性選択用×現在仮設定】呪術師", + "3008": "3008: [Character make-up for selection × current provisional setting] Cleric -- 3008:【キャラメイク素性選択用×現在仮設定】聖職者", + "3009": "3009: [Character make-up for selection × current temporary settings] have no -- 3009:【キャラメイク素性選択用×現在仮設定】持たざるもの", + "9000": "9000: [Default] GC version (GRIFFITH) [Default equipment] -- 9000:【デフォルト装備】 GC版(グリフィス) 【デフォルト装備】", + "21000": "21,000: [Multi NPC] Berserker: ■ Darkness 1 -- 21000:【マルチNPC】バーサーカー:街■闇霊1", + "21100": "21100: [multi-NPC] Sniper NPC: Sniper NPC: Super Distance -- 21100:【マルチNPC】スナイパーNPC:スナイパーNPC:超距離", + "21200": "21200: [Multi-NPC] Dragon Hunting Warrior: Bridge ★ White Spirits 1 -- 21200:【マルチNPC】竜狩りの戦士:橋★白霊1", + "21300": "21300: [Multi-NPC] Warrior fell in mid-★: Bridge White Spirit 2 -- 21300:【マルチNPC】志半ばで倒れた戦士:橋★白霊2", + "21400": "21400: [multi-NPC] blunt with healing: Forest ★ White Spirits 1_ -- 21400:【マルチNPC】鈍器持ち治癒使い:森★白霊1_道中", + "21500": "21500: [multi-NPC] Hit man: Mori ★ White Spirits 2_vs Elders -- 21500:【マルチNPC】一撃にかける男:森★白霊2_VS古老", + "21800": "21800: [multi-NPC] King's SS chief: Ojo 3 ■ Dark Spirits 1 -- 21800:【マルチNPC】王の親衛隊長:王城3■闇霊1", + "22000": "22,000: [Multi NPC] Paris love: The temple ★ White Spirits 2_ -- 22000:【マルチNPC】パリィ大好き:聖堂★白霊2_道中", + "28900": "28900: [Multi NPC Build confirmation] Ambassa Warrior -- 28900:【マルチNPCビルド確認】アンバサ戦士", + "1000010": "1000010: [For the weapon animation confirmation] ◎ 01 Dagger (id_20: Dagger) -- 1000010:【武器アニメ確認用】◎01短剣(ID_20:ダガー)", + "1000011": "1000011: [For the weapon animation confirmation] ◎ 01 Dagger (id_72: Cut) -- 1000011:【武器アニメ確認用】◎01短剣(ID_72:切り)", + "1000012": "1000012: [Weapon anime confirmation] ☆ 01 Dagger (id_71: Paris) -- 1000012:【武器アニメ確認用】☆01短剣(ID_71:パリィ)", + "1000013": "1000013: [Weapon anime confirmation] × 01 dagger (id_153: Advantage) -- 1000013:【武器アニメ確認用】×01短剣(ID_153:逆手)", + "1000020": "1000020: [For the weapon anime confirmation] ★ 02 Straight Sword (id_23: Long) -- 1000020:【武器アニメ確認用】★02直剣(ID_23:ロング)", + "1000021": "1000021: [Weapon anime confirmation] ☆ 02 Straight Sword (id_53: Cut) -- 1000021:【武器アニメ確認用】☆02直剣(ID_53:切り)", + "1000022": "1000022: [Weapon anime confirmation] ☆ 02 Straight Sword (id_54: Piercing) -- 1000022:【武器アニメ確認用】☆02直剣(ID_54:刺突)", + "1000025": "1000025: [Weapon Anime confirmation] (02) Straight Sword (id_57: Dark Wraith) -- 1000025:【武器アニメ確認用】△02直剣(ID_57:ダークレイス)", + "1000026": "1000026: [Weapon Anime confirmation] × 02 Straight Sword (id_ TBA: Brother Ssangyong) -- 1000026:【武器アニメ確認用】×02直剣(ID_未定:双皇子弟)", + "1000030": "1000030: [Weapon anime confirmation] ☆ 03 Large Sword (id_25: Basso) -- 1000030:【武器アニメ確認用】☆03大剣(ID_25:バッソ)", + "1000031": "1000031: [Weapon anime confirmation] ☆ 03 Large Sword (id_74: thrusting) -- 1000031:【武器アニメ確認用】☆03大剣(ID_74:突き)", + "1000033": "1000033: [Weapon Anime confirmation] (04) (ID_80: Black Knight) -- 1000033:【武器アニメ確認用】△04大剣(ID_80:黒騎士)", + "1000034": "1000034: [Weapon Anime confirmation] (04) (id_131) -- 1000034:【武器アニメ確認用】△04大剣(ID_131:アルトリウス)", + "1000035": "1000035: [Weapon anime confirmation] × 04 Large Sword (id_154:04 Sword of the Old King of caries) -- 1000035:【武器アニメ確認用】×04大剣(ID_154:蝕の老王の04大剣)", + "1000036": "1000036: [Weapon anime confirmation] × 04 Large sword (id_155: Prince of twins 04 sword) -- 1000036:【武器アニメ確認用】×04大剣(ID_155:双皇子合体04大剣)", + "1000037": "1000037: [Weapon anime confirmation] × 04 Large Sword (id_156.: 04 Sword of the King of the Evil) -- 1000037:【武器アニメ確認用】×04大剣(ID_156.:死霊の王の04大剣)", + "1000038": "1000038: [Weapon Anime confirmation] (04) (id_157) -- 1000038:【武器アニメ確認用】△04大剣(ID_157:ルカティエル)", + "1000039": "1000039: [Weapon anime confirmation] ○ 04 Large Sword (id_158: Moonlight 04 Sword) -- 1000039:【武器アニメ確認用】○04大剣(ID_158:月光04大剣)", + "1000040": "1000040: [Weapon anime confirmation] × 04 Large sword (id_159. -- 1000040:【武器アニメ確認用】×04大剣(ID_159.ラスボス04大剣)", + "1000050": "1000050: [Weapon Anime confirmation] ★ 05 Oversized Sword (id_26: normal) -- 1000050:【武器アニメ確認用】★05特大剣(ID_26:通常)", + "1000051": "1000051: [For the weapon anime confirmation] ○ 05 Oversized Sword (id_95: thrusting) -- 1000051:【武器アニメ確認用】○05特大剣(ID_95:突き)", + "1000052": "1000052: [For the weapon anime confirmation] ◎ 05 Oversized Sword (id_128: Black Knight) -- 1000052:【武器アニメ確認用】◎05特大剣(ID_128:黒騎士)", + "1000053": "1000053: [Weapon Anime confirmation] ★ 05 Oversized Sword (id_160: zwei) -- 1000053:【武器アニメ確認用】★05特大剣(ID_160:ツヴァイ)", + "1000054": "1000054: [For the weapon animation confirmation] △ 05 Oversized sword (id_163: Smoke) -- 1000054:【武器アニメ確認用】△05特大剣(ID_163:煙り)", + "1000056": "1000056: [For the weapon anime confirmation] × 05 Oversized sword (id_161: Warden of the Abyss) -- 1000056:【武器アニメ確認用】×05特大剣(ID_161:深淵の監視者)", + "1000057": "1000057: [Weapon Anime confirmation] × 05 Oversized Sword (id_162:05 Oversized Sword of the old king of Caries (red)) -- 1000057:【武器アニメ確認用】×05特大剣(ID_162:蝕の老王の05特大剣(赤))", + "1000058": "1000058: [For Weapon animation confirmation] × 05 oversized sword (id_ undecided: 05 oversized Sword of Prince twins) -- 1000058:【武器アニメ確認用】×05特大剣(ID_未定:双子皇子兄の05特大剣)", + "1000060": "1000060: [Weapon anime confirmation] ◎ 06 Sword (id_27: Ray Pier) -- 1000060:【武器アニメ確認用】◎06刺剣(ID_27:レイピア)", + "1000061": "1000061: [Weapon anime confirmation] (06) (ID_27: Shield tock) -- 1000061:【武器アニメ確認用】△06刺剣(ID_27:盾チク)", + "1000062": "1000062: [Weapon anime confirmation] ◎ 06 Sword (id_113: Estoc) -- 1000062:【武器アニメ確認用】◎06刺剣(ID_113:エストック)", + "1000063": "1000063: [Weapon anime confirmation] (06) (id_113: Estoc Shield tock) -- 1000063:【武器アニメ確認用】△06刺剣(ID_113:エストック盾チク)", + "1000064": "1000064: [Weapon anime confirmation] (06) (ID_115: Ricard) -- 1000064:【武器アニメ確認用】△06刺剣(ID_115:リカール)", + "1000065": "1000065: [Weapon anime confirmation] (06) (id_115: tock) -- 1000065:【武器アニメ確認用】△06刺剣(ID_115:リカール盾チク)", + "1000070": "1000070: [For the weapon animation confirmation] ◎ 07 Song Sword (id_28: Farsi) -- 1000070:【武器アニメ確認用】◎07曲剣(ID_28:ファルシ)", + "1000071": "1000071: [For the weapon anime confirmation] ◎ 07 Song Sword (id_164:07 Song Sword of the death of Salivan) -- 1000071:【武器アニメ確認用】◎07曲剣(ID_164:サリヴァーンの死神の07曲剣)", + "1000072": "1000072: [For the weapon animation confirmation] ◎ 07 Song Sword (id_165: Moonlight of Missing Moon) -- 1000072:【武器アニメ確認用】◎07曲剣(ID_165:欠月のムーンライト)", + "1000080": "1000080: [For the weapon animation confirmation] ◎ 08 Light Sword (id_151: Scimitar) -- 1000080:【武器アニメ確認用】◎08軽曲剣(ID_151:シミター)", + "1000081": "1000081: [For the weapon animation confirmation] ◎ 08 Light Sword (id_99: Shorty) -- 1000081:【武器アニメ確認用】◎08軽曲剣(ID_99:ショーテル)", + "1000082": "1000082: [Weapon anime confirmation] △ 08 Light Sword (id_101: Painting Mamoru) -- 1000082:【武器アニメ確認用】△08軽曲剣(ID_101:絵画守)", + "1000090": "1000090: [For the weapon animation confirmation] ◎ 09 Sword (id_29: normal) -- 1000090:【武器アニメ確認用】◎09刀(ID_29:通常)", + "1000091": "1000091: [Weapon Anime confirmation] ☆ 09 Sword (id_90: Shigurui) -- 1000091:【武器アニメ確認用】☆09刀(ID_90:シグルイ)", + "1000100": "1000100: [Weapon anime confirmation] ☆ 10 Sword (id_51: normal) -- 1000100:【武器アニメ確認用】☆10大曲剣(ID_51:通常)", + "1000101": "1000101: [Weapon anime confirmation] ☆ 10 Series Sword (ID_166: Observer Wolf of the Abyss) -- 1000101:【武器アニメ確認用】☆10大曲剣(ID_166:深淵の監視者オオカミ)", + "1000110": "1000110: [Weapon Anime confirmation] ★ 11 AX (id_30: Battle) -- 1000110:【武器アニメ確認用】★11斧(ID_30:バトル)", + "1000111": "1000111: [Weapon anime confirmation] ◎ 11 ax (id_102: Small axe) -- 1000111:【武器アニメ確認用】◎11斧(ID_102:小斧)", + "1000112": "1000112: [Weapon Anime confirmation] (11 ax (id_103: Meat disconnect) -- 1000112:【武器アニメ確認用】△11斧(ID_103:肉絶ち)", + "1000113": "1000113: [Weapon Anime confirmation] × 11 ax (id_167:4 Knight Axe) -- 1000113:【武器アニメ確認用】×11斧(ID_167:4騎士斧)", + "1000120": "1000120: [Weapon anime confirmation] ◎ 12 Large ax (id_32: Great) -- 1000120:【武器アニメ確認用】◎12大斧(ID_32:グレート)", + "1000122": "1000122: [Weapon Anime confirmation] ○ 12 Large Ax (id_107: Black Knight) -- 1000122:【武器アニメ確認用】○12大斧(ID_107:黒騎士)", + "1000123": "1000123: [Weapon Anime confirmation] × 12 large ax (id_168: Wood daemon 12 large ax) -- 1000123:【武器アニメ確認用】×12大斧(ID_168:薪のデーモン12大斧)", + "1000124": "1000124: [Weapon Anime confirmation] × 12 large ax (id_169: Hallec 12 large ax) -- 1000124:【武器アニメ確認用】×12大斧(ID_169:ハレックの12大斧)", + "1000130": "1000130: [Weapon Anime confirmation] ★ 13 Mallet (id_33: Mace) -- 1000130:【武器アニメ確認用】★13槌(ID_33:メイス)", + "1000131": "1000131: [Weapon anime confirmation] × 13 mallet (id_59: Club) -- 1000131:【武器アニメ確認用】×13槌(ID_59:クラブ)", + "1000140": "1000140: [For the weapon animation confirmation] ◎ 14 Large mallet (id_35: Large) -- 1000140:【武器アニメ確認用】◎14大槌(ID_35:ラージ)", + "1000141": "1000141: [For the weapon anime Confirmation] (14) (ID_70: Sumo) -- 1000141:【武器アニメ確認用】△14大槌(ID_70:スモウ)", + "1000142": "1000142: [Weapon anime confirmation] ○ 14 Large Mallet (id_171: pickaxe) -- 1000142:【武器アニメ確認用】○14大槌(ID_171:つるはし)", + "1000143": "1000143: [Weapon Anime confirmation] × 14 Otsuchi (id_172: Gargoyle Torch) -- 1000143:【武器アニメ確認用】×14大槌(ID_172:ガーゴイルのトーチ)", + "1000144": "1000144: [Weapon Anime confirmation] × 14 Otsuchi (id_173:14 Otsuchi Full Armor Deb) -- 1000144:【武器アニメ確認用】×14大槌(ID_173:フルアーマーデブの14大槌)", + "1000145": "1000145: [Weapon Anime confirmation] × 14 Otsuchi (id_174:14 Otsuchi of ash daemon) -- 1000145:【武器アニメ確認用】×14大槌(ID_174:灰のデーモンの14大槌)", + "1000150": "1000150: [Weapon anime confirmation] ◎ 15 spear (id_36: Spear) -- 1000150:【武器アニメ確認用】◎15槍(ID_36:スピア)", + "1000151": "1000151: [Weapon Anime confirmation] ★ 15 Spear (id_36: Shield tock) -- 1000151:【武器アニメ確認用】★15槍(ID_36:盾チク)", + "1000152": "1000152: [Weapon anime confirmation] ◎ 15 Spear (id_63: Payment) -- 1000152:【武器アニメ確認用】◎15槍(ID_63:払い)", + "1000153": "1000153: [Weapon Anime confirmation] ★ 15 Spear (id_63: tock Shield) -- 1000153:【武器アニメ確認用】★15槍(ID_63:払い盾チク)", + "1000154": "1000154: [Weapon Anime confirmation] (15 spears) (id_67: Pike) -- 1000154:【武器アニメ確認用】△15槍(ID_67:パイク)", + "1000155": "1000155: [Weapon Anime confirmation] (15 spears (id_134: Fork) -- 1000155:【武器アニメ確認用】△15槍(ID_134:フォーク)", + "1000156": "1000156: [Weapon Anime confirmation] (15 spears (id_68: Dragon Hunt) -- 1000156:【武器アニメ確認用】△15槍(ID_68:竜狩り)", + "1000157": "1000157: [Weapon Anime confirmation] (15 spears) (id_177: Lance) -- 1000157:【武器アニメ確認用】△15槍(ID_177:ランス)", + "1000159": "1000159: [Weapon Anime confirmation] × 15 spear (id_175: Spear of Gargoyle) -- 1000159:【武器アニメ確認用】×15槍(ID_175:ガーゴイルの槍)", + "1000160": "1000160: [Weapon Anime confirmation] × 15 spear (id_176: Sword Spear of the King of the Storm) -- 1000160:【武器アニメ確認用】×15槍(ID_176:嵐の王の剣槍)", + "1000161": "1000161: [Weapon Anime confirmation] × 15 spear (id_178: Spear of Salivan) -- 1000161:【武器アニメ確認用】×15槍(ID_178:サリヴァーンの槍)", + "1000170": "1000170: [Weapon anime confirmation] ◎ 16 axe Spear (id_38: Grace) -- 1000170:【武器アニメ確認用】◎16斧槍(ID_38:グレイヴ)", + "1000171": "1000171: [Weapon anime confirmation] ◎ 16 ax Spear (id_108: Halwa) -- 1000171:【武器アニメ確認用】◎16斧槍(ID_108:ハルバ)", + "1000172": "1000172: [Weapon Anime confirmation] × 16 axe spear (id_112: Black Knight) -- 1000172:【武器アニメ確認用】×16斧槍(ID_112:黒騎士)", + "1000180": "1000180: [Weapon Anime confirmation] (17) (id_50: Normal) -- 1000180:【武器アニメ確認用】△17鎌(ID_50:通常)", + "1000181": "1000181: [Weapon Anime confirmation] × 17 sickle (id_179: Salivan's sickle of death) -- 1000181:【武器アニメ確認用】×17鎌(ID_179:サリヴァーンの死神の鎌)", + "1000182": "1000182: [Weapon Anime confirmation] × 17 sickle (id_180: Craving) -- 1000182:【武器アニメ確認用】×17鎌(ID_180:渇望)", + "1000190": "1000190: [Weapon anime confirmation] ◎ 18 Cane (id_41: normal) -- 1000190:【武器アニメ確認用】◎18杖(ID_41:通常)", + "1000200": "1000200: [Weapon Anime confirmation] ★ 19 Talisman (id_52: Normal) -- 1000200:【武器アニメ確認用】★19タリスマン(ID_52:通常)", + "1000201": "1000201: [Weapon Anime confirmation] × 19 talisman (id_185: Tin) -- 1000201:【武器アニメ確認用】×19タリスマン(ID_185:すず)", + "1000210": "1000210: [Weapon Anime confirmation] (20) (id_149: Normal) -- 1000210:【武器アニメ確認用】△20呪術の炎(ID_149:通常)", + "1000220": "1000220: [For the Weapon animation confirmation] (id_43: normal) -- 1000220:【武器アニメ確認用】△21鞭(ID_43:通常)", + "1000230": "1000230: [For the Weapon animation confirmation] (22 bows (id_44: Long) -- 1000230:【武器アニメ確認用】△22弓(ID_44:ロング)", + "1000231": "1000231: [Weapon Anime confirmation] ★ 22 Bows (ID_81: short) -- 1000231:【武器アニメ確認用】★22弓(ID_81:ショート)", + "1000232": "1000232: [For the Weapon animation confirmation] (22 bows (id_81: Faris) -- 1000232:【武器アニメ確認用】△22弓(ID_81:ファリス)", + "1000240": "1000240: [Weapon anime confirmation] ☆ 23 Miyakonojo (id_83: Dragon Hunt) -- 1000240:【武器アニメ確認用】☆23大弓(ID_83:竜狩り)", + "1000241": "1000241: [Weapon Anime confirmation] (23 Miyakonojo (id_184: Aaron) -- 1000241:【武器アニメ確認用】△23大弓(ID_184:アーロン)", + "1000250": "1000250: [For confirmation of weapon animation] ◎ 24 Crossbow (id_46: normal) -- 1000250:【武器アニメ確認用】◎24クロスボウ(ID_46:通常)", + "1000251": "1000251: [Weapon Anime confirmation] × 24 Crossbow (id_84: Aveiro) -- 1000251:【武器アニメ確認用】×24クロスボウ(ID_84:アヴェリン)", + "1000260": "1000260: [For the weapon animation confirmation] ◎ 25 fist (id_42) -- 1000260:【武器アニメ確認用】◎25拳(ID_42)", + "1000261": "1000261: [Weapon anime confirmation] × 25 fist (id_123: Dark Hand) -- 1000261:【武器アニメ確認用】×25拳(ID_123:ダークハンド)", + "1000262": "1000262: [Weapon anime confirmation] × 25 fist (id_181: Wood daemon Knuckle) -- 1000262:【武器アニメ確認用】×25拳(ID_181:薪のデーモンのナックル)", + "1000280": "1000280: [Weapon anime confirmation] ◎ 27 Sword Song (id_151) -- 1000280:【武器アニメ確認用】◎27双剣曲剣(ID_151)", + "1000281": "1000281: [For the weapon anime Confirmation] (27) Sword Song (id139: Tracker) -- 1000281:【武器アニメ確認用】△27双剣曲剣(ID139:追跡者)", + "1000283": "1000283: [Weapon Anime confirmation] × 27 Sword Song (id_182: Elite Dead) -- 1000283:【武器アニメ確認用】×27双剣曲剣(ID_182:エリート亡者)", + "1000290": "1000290: [Weapon anime confirmation] ◎ 28 twin-Sword Ax (id_138: Deb) -- 1000290:【武器アニメ確認用】◎28双剣斧(ID_138:デブ)", + "1000310": "1000310: [Weapon Anime confirmation] ○ 29 Sword Dagger (id_141) -- 1000310:【武器アニメ確認用】○29双剣短剣(ID_141)", + "1000320": "1000320: [Weapon anime confirmation] ○ 30 Twin Sword Straight Sword (id_142) -- 1000320:【武器アニメ確認用】○30双剣直剣(ID_142)", + "1000330": "1000330: [Weapon anime confirmation] ○ 31 Sword Sword (id_144) -- 1000330:【武器アニメ確認用】○31双剣刀(ID_144)", + "1000340": "1000340: [Weapon anime confirmation] ◎ 32 double Sword Spear (id_145) -- 1000340:【武器アニメ確認用】◎32双剣槍(ID_145)", + "1000350": "1000350: [Weapon anime confirmation] ◎ 33 Sword Fist (id_152) -- 1000350:【武器アニメ確認用】◎33双剣拳(ID_152)", + "1000360": "1000360: [For the Weapon animation confirmation] ○ 34 Sword Claw (id_146) -- 1000360:【武器アニメ確認用】○34双剣かぎ爪(ID_146)", + "1000370": "1000370: [For the weapon animation confirmation] ◎ 35 twin-Sword Mallet (id_148) -- 1000370:【武器アニメ確認用】◎35双剣槌(ID_148)", + "1000380": "1000380: [For the weapon animation confirmation] ◎ 37 small shield (ID_48) -- 1000380:【武器アニメ確認用】◎37小盾(ID_48)", + "1000381": "1000381: [For the weapon animation confirmation] ◎ 37 small shield (id_91: Strong Paris) -- 1000381:【武器アニメ確認用】◎37小盾(ID_91:強パリィ)", + "1000390": "1000390: [Weapon anime confirmation] ◎ 38 medium shield (ID_150) -- 1000390:【武器アニメ確認用】◎38中盾(ID_150)", + "1000391": "1000391: [Weapon anime confirmation] × 38 medium shield (id_93: Spike) -- 1000391:【武器アニメ確認用】×38中盾(ID_93:スパイク)", + "1000400": "1000400: [Weapon anime confirmation] (39) (ID_47) -- 1000400:【武器アニメ確認用】△39大盾(ID_47)", + "1000401": "1000401: [Weapon Anime confirmation] × 39 large shield (id_94: Havel) -- 1000401:【武器アニメ確認用】×39大盾(ID_94:ハベル)", + "1000402": "1000402: [Weapon Anime confirmation] × 39 large shield (id_126: Wheels) -- 1000402:【武器アニメ確認用】×39大盾(ID_126:車輪)", + "1000410": "1000410: [Weapon Animation confirmation] (40 torches) (id_49) -- 1000410:【武器アニメ確認用】△40松明(ID_49)", + "1010010": "1010010: [Weight anime confirmation] light weight Confirmation -- 1010010:【重量アニメ確認】軽量確認", + "1010020": "1010020: [Weight Anime confirmation] Medium Volume confirmation -- 1010020:【重量アニメ確認】中量確認", + "1010030": "1010030: Check weight anime confirmation -- 1010030:【重量アニメ確認】重量確認", + "1010040": "1010040: [mass animation confirmation] Overweight confirmation -- 1010040:【重量アニメ確認】重量過多確認", + "1011001": "1011001: [Magic Confirmation] Arrow System of Seoul -- 1011001:【魔法確認】ソウルの矢系", + "1011002": "1011002: [Magic Confirmation] the mass system of the chasing soul -- 1011002:【魔法確認】追尾するソウルの塊系", + "1011003": "1011003: [Magic Confirmation] enchanted System -- 1011003:【魔法確認】エンチャント系", + "1011004": "1011004: [Magic Confirmation] mimicry, curse resistance, healing, Hakuryu breath -- 1011004:【魔法確認】擬態・呪抵抗・治癒・白龍の息", + "1011005": "1011005: [Magic Confirmation] other convenient system -- 1011005:【魔法確認】その他便利系", + "1011101": "1011101: [Miracle Confirmation] Recovery system -- 1011101:【奇跡確認】回復系", + "1011102": "1011102: [Miracle confirmation] Attack system -- 1011102:【奇跡確認】攻撃系", + "1011103": "1011103: [Miracle confirmation] Defense system -- 1011103:【奇跡確認】防御系", + "1011104": "1011104: [Miracle Confirmation] convenient system -- 1011104:【奇跡確認】便利系", + "1011105": "1011105: [Miracle Confirmation] enchant system, pledge system -- 1011105:【奇跡確認】エンチャント系・誓約系", + "1011201": "1011201: [Confirmation of Magic] Fire ball system -- 1011201:【呪術確認】火の玉系", + "1011202": "1011202: [Magic Confirmation] Flame storm system -- 1011202:【呪術確認】炎の嵐系", + "1011203": "1011203: [Magic Confirmation] short range attack system -- 1011203:【呪術確認】近距離攻撃系", + "1011204": "1011204: [Magic Confirmation] State abnormal system, convenient system -- 1011204:【呪術確認】状態異常系・便利系", + "1012001": "1012001: [Item confirmation] online system -- 1012001:【アイテム確認】オンライン系", + "1070000": "1070000: [Yamagishi] King of firewood test set 1 -- 1070000:【山岸】薪の王テストセット1", + "1070001": "1070001: [Yamagishi] King of firewood test set 2 -- 1070001:【山岸】薪の王テストセット2", + "1080000": "1080000: [Load check] memory check Chara 1 -- 1080000:【負荷チェック】メモリチェックキャラ1", + "1080001": "1080001: [Load check] memory Check Chara 2 -- 1080001:【負荷チェック】メモリチェックキャラ2", + "1080002": "1080002: [Load check] memory check Chara 3 -- 1080002:【負荷チェック】メモリチェックキャラ3", + "1080003": "1080003: [Load check] memory check Chara 4 -- 1080003:【負荷チェック】メモリチェックキャラ4", + "1080004": "1080004: [Load check] memory check Chara 5 -- 1080004:【負荷チェック】メモリチェックキャラ5", + "1080005": "1080005: [Load check] memory Check Chara 6 -- 1080005:【負荷チェック】メモリチェックキャラ6", + "2000000": "2,000,000: [Confirmation of new equipment] Fugitive -- 2000000:【新規装備確認】逃亡者", + "2000010": "2000010: [New equipment confirmation] combined equipment -- 2000010:【新規装備確認】複合装備", + "2000030": "2000030: [New equipment confirmation] Red Knight -- 2000030:【新規装備確認】紅の騎士", + "2000040": "2000040: [New equipment confirmation] Mercenary King -- 2000040:【新規装備確認】傭兵王", + "2000050": "2000050: [Confirmation of new equipment] Jeanne -- 2000050:【新規装備確認】ジャンヌ", + "2000060": "2000060: [New equipment confirmation] Downer Knight -- 2000060:【新規装備確認】ダウナー騎士", + "2000070": "2000070: [Confirmation of new equipment] Hunter Assassin -- 2000070:【新規装備確認】狩人暗殺者", + "2000080": "2000080: [New equipment confirmation] Yellow robe -- 2000080:【新規装備確認】黄衣", + "2000090": "2000090: [New equipment Confirmation] Overlord -- 2000090:【新規装備確認】覇王", + "2000100": "2000100: [New equipment confirmation] Black Dog Knights -- 2000100:【新規装備確認】黒犬騎士団", + "2000110": "2000110: [New equipment confirmation] Noble -- 2000110:【新規装備確認】貴族", + "2000120": "2000120: [New equipment confirmation] White Phantom -- 2000120:【新規装備確認】白怪人", + "2000130": "2000130: [New equipment confirmation] beggar (Fugitive) -- 2000130:【新規装備確認】乞食(落人)", + "2000140": "2000140: [New equipment confirmation] Zara Man -- 2000140:【新規装備確認】ザラマン", + "2000150": "2000150: [Confirmation of new equipment] heavy Knight -- 2000150:【新規装備確認】重騎士", + "2000160": "2000160: [New equipment confirmation] Black Knight Grannies -- 2000160:【新規装備確認】黒騎士老女", + "2000170": "2000170: [New equipment Confirmation] Sorcerer -- 2000170:【新規装備確認】呪術師", + "2000180": "2000180: [New equipment confirmation] Dark Cleric -- 2000180:【新規装備確認】ダーククレリック", + "2000190": "2000190: [New equipment confirmation] Rayleigh -- 2000190:【新規装備確認】レイストリン", + "2000200": "2000200: [Confirmation of new equipment] Saint-Medical -- 2000200:【新規装備確認】聖者・医療者", + "2000210": "2000210: [Confirmation of new equipment] heavy Knight (neutral) -- 2000210:【新規装備確認】重騎士(ニュートラル)", + "2000220": "2000220: [Confirmation of new equipment] King of beggars -- 2000220:【新規装備確認】乞食の王", + "2010000": "2010000: [Confirmation of enemy transplant equipment] dead soldier -- 2010000:【敵移植装備確認】亡者兵士", + "2010020": "2010020: [Confirmation of enemy transplant equipment] crystal elders -- 2010020:【敵移植装備確認】結晶の古老", + "2010030": "2010030: [Confirmation of enemy transplant equipment] new Shing -- 2010030:【敵移植装備確認】新獄吏", + "2010040": "2010040: [Confirmation of enemy transplant equipment] saint of the prison -- 2010040:【敵移植装備確認】牢獄の聖女", + "2010070": "2010070: [Confirmation of enemy transplant equipment] poor dead -- 2010070:【敵移植装備確認】貧民亡者", + "2010080": "2010080: [Confirmation of enemy transplant equipment] dwarf people -- 2010080:【敵移植装備確認】矮小人", + "2010090": "2010090: [Confirmation of enemy transplant equipment] missionary -- 2010090:【敵移植装備確認】宣教師", + "2010100": "2010100: [Confirmation of enemy transplant equipment] dead of wax -- 2010100:【敵移植装備確認】蝋の死人", + "2010110": "2010110: [Confirmation of enemy transplant equipment] Ojo Deb -- 2010110:【敵移植装備確認】王城デブ", + "2010120": "2010120: [Confirmation of enemy transplant equipment] dead Shi -- 2010120:【敵移植装備確認】亡者僧兵", + "2010140": "2010140: [Confirmation of enemy transplant equipment] former dead knight -- 2010140:【敵移植装備確認】旧亡者騎士", + "2010160": "2010160: [Confirmation of enemy transplant equipment] Dark Knight -- 2010160:【敵移植装備確認】ダークナイト", + "2010170": "2010170: [Confirmation of enemy transplant equipment] Black Knight -- 2010170:【敵移植装備確認】黒騎士", + "2010180": "2010180: [Confirmation of enemy transplant equipment] Dark Wraith -- 2010180:【敵移植装備確認】ダークレイス", + "2010190": "2010190: [Confirmation of enemy transplant equipment] Forest keeper -- 2010190:【敵移植装備確認】森の番人", + "2010200": "2010200: [Confirmation of enemy transplant equipment] Salivan's death -- 2010200:【敵移植装備確認】サリヴァーンの死神", + "2010210": "2010210: [Confirmation of enemy transplant equipment] King of the Storm -- 2010210:【敵移植装備確認】嵐の王", + "2010220": "2010220: [Confirmation of enemy transplant equipment] King of the Evil -- 2010220:【敵移植装備確認】死霊の王", + "2010230": "2010230: [Confirmation of enemy transplant equipment] The observer of the Abyss -- 2010230:【敵移植装備確認】深淵の監視者", + "2010240": "2010240: [Confirmation of enemy transplant equipment] Snake man Assassin -- 2010240:【敵移植装備確認】蛇人暗殺者", + "2010270": "2010270: [Confirmation of enemy transplant equipment] brother of Darkness -- 2010270:【敵移植装備確認】闇の双皇子兄", + "2010280": "2010280: [Confirmation of enemy transplant equipment] children of darkness -- 2010280:【敵移植装備確認】闇の双皇子弟", + "2010290": "2010290: [Confirmation of enemy transplant equipment] Mad warrior Hallec -- 2010290:【敵移植装備確認】狂戦士ハレック", + "2010310": "2010310: [Confirmation of enemy transplant equipment] Hero Segunda -- 2010310:【敵移植装備確認】英雄グンダ", + "2010320": "2010320: [Confirmation of enemy transplant equipment] old king of caries -- 2010320:【敵移植装備確認】蝕の老王", + "2010340": "2010340: [Confirmation of enemy transplant equipment] Cardinal member -- 2010340:【敵移植装備確認】枢機卿団員", + "2010350": "2010350: [Confirmation of enemy transplant equipment] Full Armor Deb -- 2010350:【敵移植装備確認】フルアーマーデブ", + "2020000": "2020000: [旧作 transplant equipment confirmation] chain mail -- 2020000:【旧作移植装備確認】チェインメイル", + "2020010": "2020010: [旧作 transplant equipment Confirmation] Knight -- 2020010:【旧作移植装備確認】騎士", + "2020020": "2020020: [旧作 transplant equipment confirmation] Advanced Knight -- 2020020:【旧作移植装備確認】上級騎士", + "2020030": "2020030: [旧作 transplant equipment Confirmation] Farnham -- 2020030:【旧作移植装備確認】ファーナム", + "2020040": "2020040: [旧作 transplant equipment Confirmation] Catalina -- 2020040:【旧作移植装備確認】カタリナ", + "2020050": "2020050: [旧作 transplant equipment Confirmation] Warrior -- 2020050:【旧作移植装備確認】戦士", + "2020060": "2020060: [旧作 transplant equipment Confirmation] Havel -- 2020060:【旧作移植装備確認】ハベル", + "2020070": "2020070: [旧作 transplant equipment Confirmation] Bandits -- 2020070:【旧作移植装備確認】山賊", + "2020080": "2020080: [旧作 transplant equipment confirmation] Hunter -- 2020080:【旧作移植装備確認】狩人", + "2020090": "2020090: [旧作 transplant equipment Confirmation] prisoner -- 2020090:【旧作移植装備確認】囚人", + "2020100": "2020100: [旧作 transplant equipment confirmation] Black magician -- 2020100:【旧作移植装備確認】黒魔術師", + "2020110": "2020110: [旧作 transplant equipment confirmation] old sorcerer -- 2020110:【旧作移植装備確認】旧呪術師", + "2020120": "2020120: [旧作 transplant equipment Confirmation] black leather (thief) -- 2020120:【旧作移植装備確認】黒革(盗賊)", + "2020130": "2020130: [旧作 transplant equipment Confirmation] Clayton -- 2020130:【旧作移植装備確認】クレイトン", + "2020140": "2020140: [旧作 transplant equipment Confirmation] Alpha -- 2020140:【旧作移植装備確認】アルパ", + "2020150": "2020150: [旧作 transplant equipment Confirmation] Shadow -- 2020150:【旧作移植装備確認】影", + "2020160": "2020160: [旧作 transplant equipment Confirmation] Tokoku -- 2020160:【旧作移植装備確認】東国", + "2020170": "2020170: [旧作 transplant Equipment Confirmation] favorite (funnel) -- 2020170:【旧作移植装備確認】寵愛(ロートレク)", + "2020180": "2020180: [旧作 transplant equipment Confirmation] brass (dark Moon) -- 2020180:【旧作移植装備確認】真鍮(暗月)", + "2020190": "2020190: [旧作 transplant equipment confirmation] Silver Knight -- 2020190:【旧作移植装備確認】銀騎士", + "2020200": "2020200: [旧作 transplant equipment confirmation] Luke Thierry -- 2020200:【旧作移植装備確認】ルカティエル", + "2020210": "2020210: [旧作 transplant equipment Confirmation] Knight of the Sun -- 2020210:【旧作移植装備確認】太陽の騎士", + "2020220": "2020220: [旧作 transplant equipment confirmation] dragon Blood -- 2020220:【旧作移植装備確認】竜血", + "2020230": "2020230: [旧作 transplant equipment confirmation], Lyndhurst -- 2020230:【旧作移植装備確認】リンド", + "2020240": "2020240: [旧作 transplant equipment confirmation] black iron -- 2020240:【旧作移植装備確認】黒鉄", + "2020250": "2020250: [旧作 transplant equipment confirmation] painting protection -- 2020250:【旧作移植装備確認】絵画守り", + "2020260": "2020260: [旧作 transplant equipment confirmation] al-Triana -- 2020260:【旧作移植装備確認】アルトリウス", + "2020270": "2020270: [旧作 transplant equipment Confirmation] Ornstein -- 2020270:【旧作移植装備確認】オーンスタイン", + "2020280": "2020280: [旧作 transplant equipment Confirmation] Sumo -- 2020280:【旧作移植装備確認】スモウ", + "2020290": "2020290: [旧作 transplant equipment confirmation] dark art -- 2020290:【旧作移植装備確認】闇術", + "2020300": "2020300: [旧作 transplant equipment Confirmation] Splinter -- 2020300:【旧作移植装備確認】トゲ", + "2020320": "2020320: [旧作 transplant equipment Confirmation] Wu-La seal -- 2020320:【旧作移植装備確認】ウーラシール" + }, + "CharacterLoadParam": {}, + "ClearCountCorrectParam": {}, + "CoolTimeParam": {}, + "CultSettingParam": { + "0": "Default -- デフォルト", + "10": "Test -- テスト", + "100": "For testing -- テスト用" + }, + "DecalParam": { + "0": "Test -- テスト", + "41": "Oil pots (floor) -- 油壺(床)", + "1090000": "[Attack] Blood (dead) front (for character) -- 【攻撃】血(亡者)中 正面(キャラ用)", + "1090001": "[Attack] Blood (dead) Nakagami (for character) -- 【攻撃】血(亡者)中 上(キャラ用)", + "1090002": "[Attack] Blood (dead) Nakashita (for character) -- 【攻撃】血(亡者)中 下(キャラ用)", + "1090003": "[Attack] Blood (dead) left (for character) -- 【攻撃】血(亡者)中 左(キャラ用)", + "1090004": "[Attack] Blood (dead) reeling (for character) -- 【攻撃】血(亡者)中 右(キャラ用)", + "1090100": "[Attack] Blood (dead) front (for map) -- 【攻撃】血(亡者)中 正面(マップ用)", + "1090101": "[Attack] Blood (dead) Nakagami (for map) -- 【攻撃】血(亡者)中 上(マップ用)", + "1090102": "[Attack] Blood (dead) Nakashita (for map) -- 【攻撃】血(亡者)中 下(マップ用)", + "1090103": "[Attack] Blood (dead) left (for map) -- 【攻撃】血(亡者)中 左(マップ用)", + "1090104": "[Attack] Blood (dead) reeling (for map) -- 【攻撃】血(亡者)中 右(マップ用)", + "1091000": "[Attack] Blood (dead) frontal (for character) blood mild -- 【攻撃】血(亡者)中 正面(キャラ用)血MILD", + "1091001": "[Attack] Blood (dead) Nakagami (for character) blood mild -- 【攻撃】血(亡者)中 上(キャラ用)血MILD", + "1091002": "[Attack] Blood (dead) Nakashita (for character) blood mild -- 【攻撃】血(亡者)中 下(キャラ用)血MILD", + "1091003": "[Attack] Blood (dead) left (for Chara) blood mild -- 【攻撃】血(亡者)中 左(キャラ用)血MILD", + "1091004": "[Attack] Blood (dead) reeling (for character) blood mild -- 【攻撃】血(亡者)中 右(キャラ用)血MILD", + "1091100": "[Attack] Blood (dead) in front (map) Blood mild -- 【攻撃】血(亡者)中 正面(マップ用)血MILD", + "1091101": "【 attack 】 Blood (dead) Nakagami (for map) blood mild -- 【攻撃】血(亡者)中 上(マップ用)血MILD", + "1091102": "【 attack 】 Blood (dead) Nakashita (for map) blood mild -- 【攻撃】血(亡者)中 下(マップ用)血MILD", + "1091103": "[Attack] Blood (dead) left (for map) blood mild -- 【攻撃】血(亡者)中 左(マップ用)血MILD", + "1091104": "【 attack 】 Blood (dead) reeling (for map) blood mild -- 【攻撃】血(亡者)中 右(マップ用)血MILD", + "1410000": "Attack: Front of caries -- 【攻撃】蝕中 正面", + "1410001": "【 attack 】 Caries Nakagami -- 【攻撃】蝕中 上", + "1410002": "【 attack 】 Caries Nakashita -- 【攻撃】蝕中 下", + "1410003": "[Attack] in the caries left -- 【攻撃】蝕中 左", + "1410004": "【 attack 】 Caries reeling -- 【攻撃】蝕中 右", + "1420000": "[Attack] Maggots front -- 【攻撃】蛆中 正面", + "1420001": "[Attack] Maggots Nakagami -- 【攻撃】蛆中 上", + "1420002": "[Attack] Maggots Nakashita -- 【攻撃】蛆中 下", + "1420003": "[Attack] Maggots left -- 【攻撃】蛆中 左", + "1420004": "[Attack] Maggots reeling -- 【攻撃】蛆中 右", + "1460000": "[Attack] Blood (PC) front (for character) -- 【攻撃】鮮血中(PC) 正面(キャラ用)", + "1460001": "[Attack] Blood (PC) (for characters) -- 【攻撃】鮮血中(PC) 上(キャラ用)", + "1460002": "[Attack] under Blood (PC) (for character) -- 【攻撃】鮮血中(PC) 下(キャラ用)", + "1460003": "[Attack] Blood (PC) left (for character) -- 【攻撃】鮮血中(PC) 左(キャラ用)", + "1460004": "[Attack] Blood (PC) right (for character) -- 【攻撃】鮮血中(PC) 右(キャラ用)", + "1460100": "[Attack] Blood (PC) front (for map) -- 【攻撃】鮮血中(PC) 正面(マップ用)", + "1460101": "[Attack] Blood (PC) (for map) -- 【攻撃】鮮血中(PC) 上(マップ用)", + "1460102": "[Attack] under Blood (PC) (for map) -- 【攻撃】鮮血中(PC) 下(マップ用)", + "1460103": "[Attack] Blood (PC) left (for map) -- 【攻撃】鮮血中(PC) 左(マップ用)", + "1460104": "[Attack] Blood (PC) right (for map) -- 【攻撃】鮮血中(PC) 右(マップ用)", + "1461000": "[Attack] Blood (PC) front (for character) blood mild -- 【攻撃】鮮血中(PC) 正面(キャラ用)血MILD", + "1461001": "[Attack] Blood (PC) (for characters) blood mild -- 【攻撃】鮮血中(PC) 上(キャラ用)血MILD", + "1461002": "[Attack] Blood (PC) under (for character) blood mild -- 【攻撃】鮮血中(PC) 下(キャラ用)血MILD", + "1461003": "[Attack] Blood (PC) left (for character) blood mild -- 【攻撃】鮮血中(PC) 左(キャラ用)血MILD", + "1461004": "[Attack] Blood (PC) right (for character) blood mild -- 【攻撃】鮮血中(PC) 右(キャラ用)血MILD", + "1461100": "[Attack] Blood (PC) front (for map) blood mild -- 【攻撃】鮮血中(PC) 正面(マップ用)血MILD", + "1461101": "[Attack] Blood (PC) (for map) blood mild -- 【攻撃】鮮血中(PC) 上(マップ用)血MILD", + "1461102": "[Attack] Blood (PC) under (for map) blood mild -- 【攻撃】鮮血中(PC) 下(マップ用)血MILD", + "1461103": "[Attack] Blood (PC) left (for map) blood mild -- 【攻撃】鮮血中(PC) 左(マップ用)血MILD", + "1461104": "[Attack] Blood (PC) right (for map) blood mild -- 【攻撃】鮮血中(PC) 右(マップ用)血MILD", + "8000300": "Dark Flame -- 火炎壺こげ跡", + "8000301": "Oil pots (for pairs of characters) -- 油壺(対キャラ用)", + "8010510": "[Dark Knight Beast] Frost -- 【ダークナイトビースト】霜", + "8010511": "[Dark Knight Beast] Frost attack -- 【ダークナイトビースト】霜 攻撃", + "8010512": "[Dark Knight Beast] Frost attack (wide range) -- 【ダークナイトビースト】霜 攻撃(広範囲)", + "8010513": "[Dark Knight Beast] Frost attack (3008) -- 【ダークナイトビースト】霜 攻撃(3008)", + "8010520": "[c1090 dead Soldier: Evil spirits] knocked back against caries -- 【c1090 亡者兵士:邪霊】叩き付け蝕", + "8010530": "The tracker (red) knocked back against attack -- 【追跡者】(赤熱)叩き付け 攻撃", + "8010531": "The tracker (red) Nagi 90 degrees -- 【追跡者】(赤熱)なぎ払い 90度", + "8010532": "The tracker (red) ground stabbing and line-catching attack -- 【追跡者】(赤熱)地面刺して線引く 攻撃", + "8010533": "The tracker (red) Ground stab attack -- 【追跡者】(赤熱)地面刺し 攻撃", + "8010534": "The tracker (red) Horizontal Nagi attack -- 【追跡者】(赤熱)水平なぎ払い 攻撃", + "8010535": "The tracker (red) Nagi-90 degrees -- 【追跡者】(赤熱)なぎ払い -90度", + "8010536": "The tracker (red) Nagi (3005) -- 【追跡者】(赤熱)なぎ払い (3005)", + "8010537": "The tracker (red) Horizontal Nagi (3025) -- 【追跡者】(赤熱)水平なぎ払い(3025)", + "8010538": "The tracker (red) Horizontal Nagi (3014, 1003017) -- 【追跡者】(赤熱)水平なぎ払い(3012、1003017)", + "8010539": "The tracker (red) Horizontal rotation finish (1003020) -- 【追跡者】(赤熱)横回転フィニッシュ(1003020)", + "8010540": "[tracker] cut scene of caries large -- 【追跡者】カットシーン 蝕大", + "8010541": "[tracker] cut scene caries small -- 【追跡者】カットシーン 蝕小", + "8010542": "[tracker] cut scene caries foot -- 【追跡者】カットシーン 蝕足", + "8010550": "The tracker (red) Horizontal rotation loop (1003019) -- 【追跡者】(赤熱)横回転ループ (1003019)", + "8010560": "The tracker (caries sword) knocked back against -- 【追跡者】(蝕剣)叩き付け", + "8010561": "The tracker (Caries sword) Stab -- 【追跡者】(蝕剣)刺し", + "8010562": "The tracker (Caries Sword) -- 【追跡者】(蝕剣)なぎ", + "8010563": "The tracker (Caries sword) continuous lull -- 【追跡者】(蝕剣)連続なぎ", + "8010564": "The tracker (caries sword) Continuous stab -- 【追跡者】(蝕剣)連続刺し", + "8010565": "The tracker (caries sword) knocked back against -- 【追跡者】(蝕剣)叩き付け", + "8010566": "The tracker (Caries Sword) -- 【追跡者】(蝕剣)", + "8010567": "The tracker (Caries Sword) -- 【追跡者】(蝕剣)", + "8010570": "[Full Armor Beast] Frost -- 【フルアーマー獣】霜", + "8010571": "[Full Armor Beast] Frost attack -- 【フルアーマー獣】霜 攻撃", + "8010572": "[Full Armor Beast] Frost attack (knocked back against) -- 【フルアーマー獣】霜 攻撃(叩き付け)", + "8010580": "[Ojo 3] Bleeding -- 【ヘルカイト(王城3)】出血", + "8010590": "[Dead Wax] wax bullet (floor) -- 【蝋の死人】蝋弾(床)", + "8010591": "[Dead Wax] wax bullet (for character) -- 【蝋の死人】蝋弾(対キャラ用)", + "8010600": "[Hel Kite] at the time of erosion SAG appearance -- 【ヘルカイト】蝕垂れ 登場時", + "8010601": "[Hellfire Kite] dripping drip -- 【ヘルカイト】蝕垂れ ポタポタ", + "8010602": "[Hel Kite] at the time of Eclipse appearance -- 【ヘルカイト】蝕体つき 登場時", + "8010603": "[Hel kite] erosion appearance at the time of the ceiling -- 【ヘルカイト】蝕垂れ 登場時 天井向き", + "8011580": "[Ojo 3] bleeding blood mild -- 【ヘルカイト(王城3)】出血 血MILD", + "8023000": "[m30_00] Hell kite Breath Burn marks -- 【m30_00】ヘルカイト ブレス燃え跡", + "8023900": "[M39_00] in blood (dead) -- 【m39_00】血(亡者) 中", + "8023901": "【 m39_00 】 Large Blood (dead) -- 【m39_00】血(亡者) 大", + "9000100": "[PC bleeding] footprints blood feet -- 【PC出血】足跡血痕素足", + "9000101": "[PC bleeding] footprint blood stains shoes -- 【PC出血】足跡血痕靴", + "9000102": "[PC bleeding] footprints blood stains large shoes -- 【PC出血】足跡血痕大靴", + "9000110": "[PC Bleeding] PC Bleeding -- 【PC出血】PC出血", + "9000111": "[PC Bleeding] PC Bleeding (Large) -- 【PC出血】PC出血(大)", + "9001100": "[PC bleeding] footprints blood mild -- 【PC出血】足跡血痕素足血MILD", + "9001101": "[PC bleeding] footprints blood stains shoes mild -- 【PC出血】足跡血痕靴血MILD", + "9001102": "[PC bleeding] footprints blood mild large shoes -- 【PC出血】足跡血痕大靴血MILD", + "9001110": "[PC Bleeding] PC Bleeding Blood Mild -- 【PC出血】PC出血血MILD", + "9001111": "[PC Bleeding] PC bleeding (large) blood mild -- 【PC出血】PC出血(大)血MILD", + "9990000": "Test -- テスト", + "9990001": "Test -- テスト", + "9990002": "Test -- テスト" + }, + "DirectionCameraParam": { + "80": "Front unprotected directing camera -- 前面無防備演出カメラ", + "81": "Front unprotected production camera (pull out) -- 前面無防備演出カメラ(引き抜き)", + "82": "Front unprotected production camera (for mallet thrown) -- 前面無防備演出カメラ(槌たたきつけ用)", + "83": "Front unprotected production camera (for large sword) -- 前面無防備演出カメラ(大剣用)", + "90": "Rear unprotected directing camera -- 背面無防備演出カメラ", + "92": "Rear unprotected directing camera (for Mallet) -- 背面無防備演出カメラ(槌用)" + }, + "EquipMtrlSetParam": { + "0": "Basic -- 基本", + "1": "Basic + 1 -- 基本+1", + "2": "Basic + 2 -- 基本+2", + "3": "Basic + 3 -- 基本+3", + "4": "Basic + 4 -- 基本+4", + "5": "Basic + 5 -- 基本+5" + }, + "EquipParamAccessory": { + "10000": "Blade of the Darkmoon", + "10020": "Watchdogs of Farron", + "10030": "Aldrich Faithful", + "10040": "Warrior of Sunlight", + "10050": "Mound-makers", + "10060": "Way of Blue", + "10070": "Blue Sentinels", + "10080": "Rosaria's Fingers", + "10090": "Spears of the Church", + "20000": "Life Ring", + "20001": "Life Ring+1", + "20002": "Life Ring+2", + "20003": "Life Ring+3", + "20010": "Chloranthy Ring", + "20011": "Chloranthy Ring+1", + "20012": "Chloranthy Ring+2", + "20013": "Chloranthy Ring+3", + "20020": "Havel's Ring", + "20021": "Havel's Ring+1", + "20022": "Havel's Ring+2", + "20023": "Havel's Ring+3", + "20030": "Ring of Favor", + "20031": "Ring of Favor+1", + "20032": "Ring of Favor+2", + "20033": "Ring of Favor+3", + "20040": "Ring of Steel Protection", + "20041": "Ring of Steel Protection+1", + "20042": "Ring of Steel Protection+2", + "20043": "Ring of Steel Protection+3", + "20050": "Flame Stoneplate Ring", + "20051": "Flame Stoneplate Ring+1", + "20052": "Flame Stoneplate Ring+2", + "20060": "Thunder Stoneplate Ring", + "20061": "Thunder Stoneplate Ring+1", + "20062": "Thunder Stoneplate Ring+2", + "20070": "Magic Stoneplate Ring", + "20071": "Magic Stoneplate Ring+1", + "20072": "Magic Stoneplate Ring+2", + "20080": "Dark Stoneplate Ring", + "20081": "Dark Stoneplate Ring+1", + "20082": "Dark Stoneplate Ring+2", + "20090": "Speckled Stoneplate Ring", + "20091": "Speckled Stoneplate Ring+1", + "20100": "Bloodbite Ring", + "20101": "Bloodbite Ring+1", + "20110": "Poisonbite Ring", + "20111": "Poisonbite Ring+1", + "20120": "Cursebite Ring", + "20130": "Fleshbite Ring", + "20131": "Fleshbite Ring+1", + "20140": "Wood Grain Ring", + "20141": "Wood Grain Ring+1", + "20142": "Wood Grain Ring+2", + "20150": "Scholar Ring", + "20160": "Priestess Ring", + "20170": "Red Tearstone Ring", + "20180": "Blue Tearstone Ring", + "20190": "Wolf Ring", + "20191": "Wolf Ring+1", + "20192": "Wolf Ring+2", + "20193": "Wolf Ring+3", + "20200": "Leo Ring", + "20210": "Ring of Sacrifice", + "20230": "Young Dragon Ring", + "20231": "Bellowing Dragoncrest Ring", + "20240": "Great Swamp Ring", + "20241": "Witch's Ring", + "20250": "Morne's Ring", + "20251": "Ring of the Sun's First Born", + "20270": "Lingering Dragoncrest Ring", + "20271": "Lingering Dragoncrest Ring+1", + "20272": "Lingering Dragoncrest Ring+2", + "20280": "Sage Ring", + "20281": "Sage Ring+1", + "20282": "Sage Ring+2", + "20290": "Slumbering Dragoncrest Ring", + "20300": "Dusk Crown Ring", + "20310": "Saint's Ring", + "20320": "Deep Ring", + "20330": "Darkmoon Ring", + "20370": "Hawk Ring", + "20380": "Hornet Ring", + "20390": "Covetous Gold Serpent Ring", + "20391": "Covetous Gold Serpent Ring+1", + "20392": "Covetous Gold Serpent Ring+2", + "20393": "Covetous Gold Serpent Ring+3", + "20400": "Covetous Silver Serpent Ring", + "20401": "Covetous Silver Serpent Ring+1", + "20402": "Covetous Silver Serpent Ring+2", + "20403": "Covetous Silver Serpent Ring+3", + "20410": "Sun Princess Ring", + "20420": "Silvercat Ring", + "20430": "Skull Ring", + "20440": "Untrue White Ring", + "20450": "Carthus Milkring", + "20460": "Knight's Ring", + "20470": "Hunter's Ring", + "20480": "Knight Slayer's Ring", + "20490": "Magic Clutch Ring", + "20500": "Lightning Clutch Ring", + "20510": "Fire Clutch Ring", + "20520": "Dark Clutch Ring", + "20540": "Flynn's Ring", + "20550": "Prisoner's Chain", + "20560": "Untrue Dark Ring", + "20580": "Obscuring Ring", + "20590": "Ring of the Evil Eye", + "20591": "Ring of the Evil Eye+1", + "20592": "Ring of the Evil Eye+2", + "20593": "Ring of the Evil Eye+3", + "20600": "Calamity Ring", + "20610": "Farron Ring", + "20620": "Aldrich's Ruby", + "20630": "Aldrich's Sapphire", + "20660": "Lloyd's Sword Ring", + "20670": "Lloyd's Shield Ring", + "20700": "Estus Ring", + "20710": "Ashen Estus Ring", + "20720": "Horsehoof Ring", + "20730": "Carthus Bloodring", + "20740": "Reversal Ring", + "20750": "Pontiff's Right Eye", + "20790": "Pontiff's Left Eye", + "20830": "Dragonscale Ring", + "21000": "Chillbite Ring" + }, + "EquipParamGoods": { + "60": "ID Monitoring Item 1 -- ID監視用アイテム1", + "61": "ID Monitoring Item 2 -- ID監視用アイテム2", + "62": "ID Monitoring Item 3 -- ID監視用アイテム3", + "63": "ID Monitoring Item 4 -- ID監視用アイテム4", + "64": "ID Monitoring Item 5 -- ID監視用アイテム5", + "65": "ID Monitoring Item 6 -- ID監視用アイテム6", + "66": "ID Monitoring Item 7 -- ID監視用アイテム7", + "67": "ID Monitoring Item 8 -- ID監視用アイテム8", + "68": "ID Monitoring Item 9 -- ID監視用アイテム9", + "69": "ID Monitoring Item 10 -- ID監視用アイテム10", + "94": "Dummy for PC animation reproduction when blood character is created -- 血文字作成時のPCアニメ再生用ダミー", + "100": "White Sign Soapstone", + "101": "Red Sign Soapstone", + "102": "Red Eye Orb", + "103": "Black Separation Crystal", + "108": "Roster of Knights", + "111": "Cracked Red Eye Orb", + "115": "Black Eye Orb", + "117": "Darksign", + "119": "Way of White Circlet", + "150": "Estus Flask", + "151": "Estus Flask", + "152": "Estus Flask+1", + "153": "Estus Flask+1", + "154": "Estus Flask+2", + "155": "Estus Flask+2", + "156": "Estus Flask+3", + "157": "Estus Flask+3", + "158": "Estus Flask+4", + "159": "Estus Flask+4", + "160": "Estus Flask+5", + "161": "Estus Flask+5", + "162": "Estus Flask+6", + "163": "Estus Flask+6", + "164": "Estus Flask+7", + "165": "Estus Flask+7", + "166": "Estus Flask+8", + "167": "Estus Flask+8", + "168": "Estus Flask+9", + "169": "Estus Flask+9", + "170": "Estus Flask+10", + "171": "Estus Flask+10", + "190": "Ashen Estus Flask", + "191": "Ashen Estus Flask", + "192": "Ashen Estus Flask+1", + "193": "Ashen Estus Flask+1", + "194": "Ashen Estus Flask+2", + "195": "Ashen Estus Flask+2", + "196": "Ashen Estus Flask+3", + "197": "Ashen Estus Flask+3", + "198": "Ashen Estus Flask+4", + "199": "Ashen Estus Flask+4", + "200": "Ashen Estus Flask+5", + "201": "Ashen Estus Flask+5", + "202": "Ashen Estus Flask+6", + "203": "Ashen Estus Flask+6", + "204": "Ashen Estus Flask+7", + "205": "Ashen Estus Flask+7", + "206": "Ashen Estus Flask+8", + "207": "Ashen Estus Flask+8", + "208": "Ashen Estus Flask+9", + "209": "Ashen Estus Flask+9", + "210": "Ashen Estus Flask+10", + "211": "Ashen Estus Flask+10", + "240": "Divine Blessing", + "241": "Hidden Blessing", + "260": "Green Blossom", + "261": "Budding Green Blossom", + "262": "Budding Green Blossom", + "270": "Bloodred Moss Clump", + "271": "Purple Moss Clump", + "272": "Blooming Purple Moss Clump", + "274": "Purging Stone", + "276": "Rime-blue Moss Clump", + "280": "Repair Powder", + "290": "Kukri", + "292": "Firebomb", + "293": "Dung Pie", + "294": "Alluring Skull", + "296": "Undead Hunter Charm", + "297": "Black Firebomb", + "299": "Rope Firebomb", + "300": "Lightning Urn", + "302": "Rope Black Firebomb", + "303": "Stalk Dung Pie", + "304": "Duel Charm", + "310": "Throwing Knife", + "311": "Poison Throwing Knife", + "315": "Church Guardian Shiv", + "330": "Charcoal Pine Resin", + "331": "Gold Pine Resin", + "334": "Human Pine Resin", + "335": "Carthus Rouge", + "336": "Pale Pine Resin", + "340": "Charcoal Pine Bundle", + "341": "Gold Pine Bundle", + "343": "Rotten Pine Resin", + "350": "Homeward Bone", + "351": "Coiled Sword Fragment", + "366": "Wolf's Blood Swordgrass", + "367": "Human Dregs", + "368": "Forked Pale Tongue", + "369": "Proof of a Concord Well Kept", + "370": "Prism Stone", + "371": "Binoculars", + "372": "Proof of a Concord Kept", + "373": "Pale Tongue", + "374": "Vertebra Shackle", + "375": "Sunlight Medal", + "376": "Pendant", + "377": "Dragon Head Stone", + "378": "Dragon Torso Stone", + "379": "Filianore's Spear Ornament", + "380": "Rubbish", + "385": "Dried Finger", + "387": "Twinkling Dragon Head Stone", + "388": "Twinkling Dragon Torso Stone", + "390": "Fire Keeper Soul", + "400": "Fading Soul", + "401": "Soul of a Deserted Corpse", + "402": "Large Soul of a Deserted Corpse", + "403": "Soul of an Unknown Traveler", + "404": "Large Soul of an Unknown Traveler", + "405": "Soul of a Nameless Soldier", + "406": "Large Soul of a Nameless Soldier", + "407": "Soul of a Weary Warrior", + "408": "Large Soul of a Weary Warrior", + "409": "Soul of a Crestfallen Knight", + "410": "Large Soul of a Crestfallen Knight", + "411": "Soul of a Proud Paladin", + "412": "Large Soul of a Proud Paladin", + "413": "Soul of an Intrepid Hero", + "414": "Large Soul of an Intrepid Hero", + "415": "Soul of a Seasoned Warrior", + "416": "Large Soul of a Seasoned Warrior", + "417": "Soul of an Old Hand", + "418": "Soul of a Venerable Old Hand", + "419": "Soul of a Champion", + "420": "Soul of a Great Champion", + "440": "Seed of a Giant Tree", + "452": "Mossfruit", + "454": "Young White Branch", + "455": "Rusted Coin", + "456": "Siegbräu", + "457": "Rusted Gold Coin", + "458": "Blue Bug Pellet", + "459": "Red Bug Pellet", + "460": "Yellow Bug Pellet", + "461": "Black Bug Pellet", + "462": "Young White Branch", + "463": "Young White Branch", + "490": "Dark Sigil", + "500": "Ember", + "520": "Hello Carving", + "521": "Thank you Carving", + "522": "Very good! Carving", + "523": "I'm sorry Carving", + "524": "Help me! Carving", + "650": "Ritual Spear Fragment", + "651": "Divine Spear Fragment", + "712": "Soul of Champion Gundyr", + "714": "Soul of the Dancer", + "715": "Soul of a Crystal Sage", + "717": "Soul of the Blood of the Wolf", + "718": "Soul of Consumed Oceiros", + "719": "Soul of Boreal Valley Vordt", + "720": "Soul of the Old Demon King", + "721": "Soul of Dragonslayer Armour", + "722": "Soul of the Nameless King", + "724": "Soul of Pontiff Sulyvahn", + "725": "Soul of Aldrich", + "726": "Soul of High Lord Wolnir", + "727": "Soul of the Rotted Greatwood", + "728": "Soul of Rosaria", + "729": "Soul of the Deacons of the Deep", + "731": "Soul of the Twin Princes", + "732": "Soul of Yhorm the Giant", + "733": "Soul of the Lords", + "739": "Soul of a Demon", + "743": "Soul of a Stray Demon", + "744": "Soul of Sister Friede", + "745": "Soul of Slave Knight Gael", + "746": "Soul of the Demon Prince", + "747": "Soul of Darkeater Midir", + "1000": "Titanite Shard", + "1001": "Large Titanite Shard", + "1002": "Titanite Chunk", + "1003": "Titanite Slab", + "1020": "Titanite Scale", + "1030": "Twinkling Titanite", + "1100": "Heavy Gem", + "1110": "Sharp Gem", + "1120": "Refined Gem", + "1130": "Crystal Gem", + "1140": "Simple Gem", + "1150": "Fire Gem", + "1160": "Chaos Gem", + "1170": "Lightning Gem", + "1180": "Deep Gem", + "1190": "Dark Gem", + "1200": "Poison Gem", + "1210": "Blood Gem", + "1220": "Raw Gem", + "1230": "Blessed Gem", + "1240": "Hollow Gem", + "1250": "Shriving Stone", + "2001": "Lift Chamber Key", + "2005": "Small Doll", + "2007": "Jailbreaker's Key", + "2008": "Jailer's Key Ring", + "2009": "Grave Key", + "2010": "Cell Key", + "2011": "Dungeon Ground Floor Key", + "2012": "Old Cell Key", + "2013": "Tower Key", + "2014": "Grand Archives Key", + "2015": "Tower Key", + "2102": "Small Lothric Banner", + "2103": "Farron Coal", + "2104": "Sage's Coal", + "2105": "Giant's Coal", + "2106": "Profaned Coal", + "2107": "Mortician's Ashes", + "2108": "Dreamchaser's Ashes", + "2109": "Paladin's Ashes", + "2110": "Grave Warden's Ashes", + "2111": "Greirat's Ashes", + "2112": "Orbeck's Ashes", + "2113": "Cornyx's Ashes", + "2114": "Karla's Ashes", + "2115": "Irina's Ashes", + "2116": "Yuria's Ashes", + "2117": "Basin of Vows", + "2118": "Loretta's Bone", + "2119": "Braille Divine Tome of Carim", + "2120": "Braille Divine Tome of Lothric", + "2121": "Braille Divine Sunlight Tome", + "2123": "Cinders of a Lord", + "2124": "Cinders of a Lord", + "2125": "Cinders of a Lord", + "2126": "Cinders of a Lord", + "2127": "Great Swamp Pyromancy Tome", + "2128": "Carthus Pyromancy Tome", + "2129": "Izalith Pyromancy Tome", + "2130": "Quelana Pyromancy Tome", + "2131": "Grave Warden Pyromancy Tome", + "2132": "Sage's Scroll", + "2133": "Logan's Scroll", + "2134": "Crystal Scroll", + "2135": "Transposing Kiln", + "2137": "Coiled Sword", + "2138": "Eyes of a Fire Keeper", + "2139": "Sword of Avowal", + "2140": "Golden Scroll", + "2141": "Estus Shard", + "2142": "Hawkwood's Swordgrass", + "2143": "Undead Bone Shard", + "2144": "Deep Braille Divine Tome", + "2145": "Londor Braille Divine Tome", + "2146": "Excrement-covered Ashes", + "2147": "Prisoner Chief's Ashes", + "2148": "Xanthous Ashes", + "2149": "Hollow's Ashes", + "2150": "Patches' Ashes", + "2151": "Dragon Chaser's Ashes", + "2152": "Easterner's Ashes", + "2153": "Champion's Bones", + "2154": "Captain's Ashes", + "2155": "Contraption Key", + "2156": "Small Envoy Banner", + "2157": "Old Woman's Ashes", + "2158": "Blood of the Dark Soul", + "2159": "Young Grass Dew", + "9000": "Beckon", + "9001": "Point forward", + "9002": "Hurrah!", + "9003": "Bow", + "9004": "Jump for joy", + "9005": "Duel bow", + "9006": "Wave", + "9007": "Praise the Sun", + "9008": "Point up", + "9009": "Point down", + "9012": "Prostration", + "9013": "Proper bow", + "9014": "Prayer", + "9015": "Welcome", + "9016": "Joy", + "9017": "My thanks!", + "9018": "Rejoice", + "9019": "Rest", + "9020": "By my sword", + "9021": "Dignified bow", + "9023": "Curl up", + "9024": "Stretch out", + "9025": "Call over", + "9026": "Collapse", + "9027": "Quiet Resolve", + "9028": "Patches Squat", + "9029": "Applause", + "9030": "Path of the Dragon", + "9031": "Legion Etiquette", + "9032": "Darkmoon Loyalty", + "9033": "Sleep", + "9034": "Toast", + "9035": "Silent Ally", + "1200000": "Farron Dart", + "1210000": "Great Farron Dart", + "1300000": "Soul Arrow", + "1301000": "Great Soul Arrow", + "1302000": "Heavy Soul Arrow", + "1303000": "Great Heavy Soul Arrow", + "1304000": "Homing Soulmass", + "1305000": "Homing Crystal Soulmass", + "1306000": "Soul Spear", + "1307000": "Crystal Soul Spear", + "1308000": "Deep Soul", + "1309000": "Great Deep Soul", + "1310000": "Magic Weapon", + "1311000": "Great Magic Weapon", + "1312000": "Crystal Magic Weapon", + "1313000": "Frozen Weapon", + "1330000": "Magic Shield", + "1331000": "Great Magic Shield", + "1340000": "Hidden Weapon", + "1341000": "Hidden Body", + "1350000": "Cast Light", + "1353000": "Repair", + "1354000": "Spook", + "1355000": "Chameleon", + "1356000": "Aural Decoy", + "1370000": "White Dragon Breath", + "1372000": "Farron Hail", + "1373000": "Crystal Hail", + "1374000": "Soul Greatsword", + "1375000": "Farron Flashsword", + "1376000": "Old Moonlight", + "1603000": "Affinity", + "1604000": "Great Soul Dregs", + "1613000": "Dark Edge", + "1620000": "Soul Stream", + "1651000": "Twisted Wall of Light", + "1740000": "Pestilent Mist", + "1741000": "Snap Freeze", + "2400000": "Fireball", + "2402000": "Fire Orb", + "2403000": "Firestorm", + "2405000": "Fire Surge", + "2407000": "Black Serpent", + "2411000": "Great Combustion", + "2420000": "Poison Mist", + "2421000": "Toxic Mist", + "2422000": "Acid Surge", + "2430000": "Iron Flesh", + "2431000": "Flash Sweat", + "2435000": "Carthus Flame Arc", + "2436000": "Rapport", + "2440000": "Power Within", + "2450000": "Great Chaos Fire Orb", + "2451000": "Chaos Storm", + "2452000": "Fire Whip", + "2453000": "Black Flame", + "2455000": "Profaned Flame", + "2456000": "Chaos Bed Vestiges", + "2457000": "Floating Chaos", + "2458000": "Flame Fan", + "2470000": "Warmth", + "2562000": "Profuse Sweat", + "2610000": "Black Fire Orb", + "2620000": "Bursting Fireball", + "2630000": "Boulder Heave", + "2640000": "Sacred Flame", + "2650000": "Carthus Beacon", + "2660000": "Seething Chaos", + "3490000": "Heal Aid", + "3500000": "Heal", + "3501000": "Med Heal", + "3502000": "Great Heal", + "3503000": "Soothing Sunlight", + "3504000": "Replenishment", + "3505000": "Bountiful Sunlight", + "3507000": "Bountiful Light", + "3508000": "Caressing Tears", + "3509000": "Lightning Arrow", + "3520000": "Tears of Denial", + "3521000": "Homeward", + "3530000": "Force", + "3531000": "Wrath of the Gods", + "3532000": "Emit Force", + "3540000": "Seek Guidance", + "3550000": "Lightning Spear", + "3551000": "Great Lightning Spear", + "3552000": "Sunlight Spear", + "3553000": "Lightning Storm", + "3554000": "Gnaw", + "3555000": "Dorhys' Gnawing", + "3556000": "Way of White Corona", + "3557000": "Projected Heal", + "3560000": "Magic Barrier", + "3561000": "Great Magic Barrier", + "3563000": "Sacred Oath", + "3581000": "Vow of Silence", + "3590000": "Lightning Blade", + "3591000": "Darkmoon Blade", + "3640000": "Dark Blade", + "3700000": "Dead Again", + "3710000": "Lightning Stake", + "3720000": "Divine Pillars of Light", + "3730000": "Lifehunt Scythe", + "3760000": "Blessed Weapon", + "3770000": "Deep Protection", + "3780000": "Atonement" + }, + "EquipParamProtector": { + "1": "Ghoul head for PV -- PV用グール頭", + "101000": "Embraced Armor of Favor", + "102000": "Gauntlets of Favor", + "103000": "Leggings of Favor", + "111000": "Armor of the Glorious", + "112000": "Gauntlets of the Vanquisher", + "113000": "Boots of the Explorer", + "121000": "Stone Armor", + "122000": "Stone Gauntlets", + "123000": "Stone Leggings", + "131000": "Crystalline Armor", + "132000": "Crystalline Gauntlets", + "133000": "Crystalline Leggings", + "141000": "Crimson Robe", + "142000": "Crimson Gloves", + "143000": "Crimson Waistcloth", + "151000": "Black Cleric Robe", + "152000": "Black Manchette", + "153000": "Black Tights", + "161000": "Armor of the Sun", + "162000": "Iron Bracelet", + "163000": "Iron Leggings", + "171000": "Chain Armor", + "172000": "Leather Gauntlets", + "173000": "Chain Leggings", + "181000": "Cleric Armor", + "182000": "Cleric Gauntlets", + "183000": "Cleric Leggings", + "201000": "Armor of Thorns", + "202000": "Gauntlets of Thorns", + "203000": "Leggings of Thorns", + "211000": "Hard Leather Armor", + "212000": "Hard Leather Gauntlets", + "213000": "Hard Leather Boots", + "221000": "Sorcerer Cloak", + "222000": "Sorcerer Gauntlets", + "223000": "Sorcerer Boots", + "231000": "Tattered Cloth Robe", + "232000": "Tattered Cloth Manchette", + "233000": "Heavy Boots", + "241000": "Leather Armor", + "242000": "Leather Gloves", + "243000": "Leather Boots", + "251000": "Painting Guardian Robe", + "252000": "Painting Guardian Gloves", + "253000": "Painting Guardian Waistcloth", + "271000": "Ornstein's Armor", + "272000": "Ornstein's Gauntlets", + "273000": "Ornstein's Leggings", + "281000": "Eastern Armor", + "282000": "Eastern Gauntlets", + "283000": "Eastern Leggings", + "291000": "Xanthous Overcoat", + "292000": "Xanthous Gloves", + "293000": "Xanthous Waistcloth", + "301000": "Black Leather Armor", + "302000": "Black Leather Gloves", + "303000": "Black Leather Boots", + "400000": "Dingy Hood", + "401000": "Dingy Robe", + "402000": "Dingy Gloves", + "403000": "Blood-Stained Skirt", + "600000": "Mask of the Mother", + "601000": "[Yamagishi] King of firewood test 1_ torso -- 【山岸】薪の王テスト1_胴", + "602000": "[Yamagishi] King of firewood test 1_ arm -- 【山岸】薪の王テスト1_腕", + "603000": "[Yamagishi] King of firewood test 1_ leg -- 【山岸】薪の王テスト1_脚", + "610000": "Mask of the Child", + "611000": "[Yamagishi] King of firewood test 2_ torso -- 【山岸】薪の王テスト2_胴", + "612000": "[Yamagishi] King of firewood test 2_ arm -- 【山岸】薪の王テスト2_腕", + "613000": "[Yamagishi] King of firewood test 2_ leg -- 【山岸】薪の王テスト2_脚", + "620000": "Fang Boar Helm", + "621000": "[Load check] memory check 1_ Torso -- 【負荷チェック】メモリチェック1_胴", + "622000": "[Load check] memory check 1_ arm -- 【負荷チェック】メモリチェック1_腕", + "623000": "[Load check] memory check 1_ leg -- 【負荷チェック】メモリチェック1_脚", + "630000": "Gargoyle Helm", + "631000": "[Load check] memory check 2_ Torso -- 【負荷チェック】メモリチェック2_胴", + "632000": "[Load check] memory check 2_ arm -- 【負荷チェック】メモリチェック2_腕", + "633000": "[Load check] memory check 2_ leg -- 【負荷チェック】メモリチェック2_脚", + "640000": "Black Sorcerer Hat", + "641000": "Black Sorcerer Cloak", + "642000": "Black Sorcerer Gauntlets", + "643000": "Black Sorcerer Boots", + "650000": "Elite Cleric Helm", + "651000": "Elite Cleric Armor", + "652000": "Elite Cleric Gauntlets", + "653000": "Elite Cleric Leggings", + "660000": "[Load check] memory check 5_ head -- 【負荷チェック】メモリチェック5_頭", + "661000": "[Load check] memory check 5_ Torso -- 【負荷チェック】メモリチェック5_胴", + "662000": "[Load check] memory check 5_ arm -- 【負荷チェック】メモリチェック5_腕", + "663000": "[Load check] memory check 5_ leg -- 【負荷チェック】メモリチェック5_脚", + "670000": "[Load check] memory check 6_ head -- 【負荷チェック】メモリチェック6_頭", + "671000": "[Load check] memory check 6_ Torso -- 【負荷チェック】メモリチェック6_胴", + "672000": "[Load check] memory check 6_ arm -- 【負荷チェック】メモリチェック6_腕", + "673000": "[Load check] memory check 6_ leg -- 【負荷チェック】メモリチェック6_脚", + "730000": "[Proto] Gold Armor _ Head -- 【プロト】錬金鎧_頭", + "731000": "[Proto] Smelting gold armor _ torso -- 【プロト】錬金鎧_胴", + "732000": "[Proto] Wrought gold armor _ arms -- 【プロト】錬金鎧_腕", + "733000": "[Proto] Wrought gold armor _ legs -- 【プロト】錬金鎧_脚", + "740000": "[Proto] Hunter _ head -- 【プロト】ハンター_頭", + "741000": "[Proto] Hunter _ Torso -- 【プロト】ハンター_胴", + "742000": "[Proto] Hunter _ Arms -- 【プロト】ハンター_腕", + "743000": "[Proto] Hunter _ leg -- 【プロト】ハンター_脚", + "750000": "[Proto] Soldier _ head -- 【プロト】兵士_頭", + "751000": "[Proto] Soldier _ Torso -- 【プロト】兵士_胴", + "752000": "[Proto] Soldiers _ arms -- 【プロト】兵士_腕", + "753000": "[Proto] Soldier _ leg -- 【プロト】兵士_脚", + "760000": "[Proto] Covert _ head -- 【プロト】隠密_頭", + "761000": "[Proto] Covert _ Torso -- 【プロト】隠密_胴", + "762000": "[Proto] Covert _ Arms -- 【プロト】隠密_腕", + "763000": "[Proto] Covert _ leg -- 【プロト】隠密_脚", + "770000": "[Proto] Covert _ head -- 【プロト】隠密_頭", + "771000": "[Proto] Covert _ Torso -- 【プロト】隠密_胴", + "772000": "[Proto] Covert _ Arms -- 【プロト】隠密_腕", + "773000": "[Proto] Covert _ leg -- 【プロト】隠密_脚", + "780000": "Fugitive Head -- 逃亡者 頭", + "781000": "Fugitive Torso -- 逃亡者 胴", + "782000": "Fugitive arm -- 逃亡者 腕", + "783000": "Fugitive Leg -- 逃亡者 脚", + "790000": "Funeral Knights Head -- 葬儀騎士 頭", + "791000": "Funeral Knight Torso -- 葬儀騎士 胴", + "792000": "Funeral Knight Arms -- 葬儀騎士 腕", + "793000": "Funeral Knights Leg -- 葬儀騎士 脚", + "800000": "Head of the Red Knight -- 紅騎士 頭", + "801000": "Red Knight Torso -- 紅騎士 胴", + "802000": "Red Knight Arms -- 紅騎士 腕", + "803000": "Red Knight Leg -- 紅騎士 脚", + "810000": "Composite (TGS) head -- 複合(TGS)頭", + "811000": "Compound (TGS) torso -- 複合(TGS)胴", + "812000": "Compound (TGS) hand -- 複合(TGS)手", + "813000": "Combined (TGS) legs -- 複合(TGS)脚", + "820000": "Head of the Overlord (TGS) -- 覇王(TGS)頭", + "821000": "Overlord (TGS) Torso -- 覇王(TGS)胴", + "822000": "Overlord (TGS) hand -- 覇王(TGS)手", + "823000": "Overlord Leg -- 覇王(TGS)脚", + "830000": "Noble (TGS) head -- 貴族(TGS)頭", + "831000": "Noble (TGS) Torso -- 貴族(TGS)胴", + "832000": "Noble (TGS) hand -- 貴族(TGS)手", + "833000": "Noble (TGS) legs -- 貴族(TGS)脚", + "840000": "Jeanne (TGS) head -- ジャンヌ(TGS)頭", + "841000": "Jeanne (TGS) Torso -- ジャンヌ(TGS)胴", + "842000": "Jeanne (TGS) hand -- ジャンヌ(TGS)手", + "843000": "Jeanne (TGS) leg -- ジャンヌ(TGS)脚", + "900000": "Head", + "901000": "Body", + "902000": "Arms", + "903000": "Legs", + "910000": "Metal Armor Test _ Head -- 金属鎧テスト_頭", + "911000": "Metal Armor Test _ Breast -- 金属鎧テスト_胸", + "912000": "Metal Armor Test _ Arms -- 金属鎧テスト_腕", + "913000": "Metal Armor Test Leg -- 金属鎧テスト_脚", + "920000": "Red Fans _ Head -- 赤ファン_頭", + "921000": "Red Fan _ Chest -- 赤ファン_胸", + "922000": "Red Fans _ Arms -- 赤ファン_腕", + "923000": "Red Fan _ Legs -- 赤ファン_脚", + "930000": "Weight test -- 重量装備テスト", + "931000": "Weight test -- 重量装備テスト", + "932000": "Weight test -- 重量装備テスト", + "933000": "Weight test -- 重量装備テスト", + "950000": "No Travel Gear / Head", + "951000": "No Travel Gear / Body", + "952000": "No Travel Gear / Arms", + "953000": "No Travel Gear / Legs", + "961000": "Jeanne (Wandering) head -- ジャンヌ(徘徊)頭", + "962000": "Jeanne (Prowl) Torso -- ジャンヌ(徘徊)胴", + "963000": "Jeanne (Wandering) hands -- ジャンヌ(徘徊)手", + "964000": "Jeanne (Prowl) legs -- ジャンヌ(徘徊)脚", + "971000": "Head of complex equipment (wandering) -- 複合装備(徘徊)頭", + "972000": "Compound equipment (wandering) trunk -- 複合装備(徘徊)胴", + "973000": "Mixed equipment (wandering) hands -- 複合装備(徘徊)手", + "974000": "Complex (wandering) legs -- 複合装備(徘徊)脚", + "981000": "Noble (Wandering) head -- 貴族(徘徊)頭", + "982000": "Noble (Wandering) torso -- 貴族(徘徊)胴", + "983000": "Noble (Wandering) hands -- 貴族(徘徊)手", + "984000": "Noble (wandering) legs -- 貴族(徘徊)脚", + "991000": "Head (Wandering) Overlord -- 覇王(徘徊)頭", + "992000": "Overlord (Wandering) torso -- 覇王(徘徊)胴", + "993000": "Hand (Wandering) Overlord -- 覇王(徘徊)手", + "994000": "Overlord Leg -- 覇王(徘徊)脚", + "1000000": "Dragon Head", + "1001000": "Dragon Body", + "1002000": "Dragon Arms", + "1003000": "Dragon Legs", + "19000000": "Fallen Knight Helm", + "19001000": "Fallen Knight Armor", + "19002000": "Fallen Knight Gauntlets", + "19003000": "Fallen Knight Trousers", + "19500000": "Knight Helm", + "19501000": "Knight Armor", + "19502000": "Knight Gauntlets", + "19503000": "Knight Leggings", + "20000000": "Vilhelm's Helm", + "20001000": "Vilhelm's Armor", + "20002000": "Vilhelm's Gauntlets", + "20003000": "Vilhelm's Leggings", + "21000000": "Firelink Helm", + "21001000": "Firelink Armor", + "21002000": "Firelink Gauntlets", + "21003000": "Firelink Leggings", + "21500000": "Sellsword Helm", + "21501000": "Sellsword Armor", + "21502000": "Sellsword Gauntlet", + "21503000": "Sellsword Trousers", + "22000000": "Herald Helm", + "22001000": "Herald Armor", + "22002000": "Herald Gloves", + "22003000": "Herald Trousers", + "22500000": "Sunless Veil", + "22501000": "Sunless Armor", + "22502000": "Sunless Gauntlets", + "22503000": "Sunless Leggings", + "23000000": "Black Hand Hat", + "23001000": "Black Hand Armor", + "23002000": "Assassin Gloves", + "23003000": "Assassin Trousers", + "23100000": "Assassin Hood", + "23101000": "Assassin Armor", + "23500000": "Xanthous Crown", + "23501000": "Xanthous Overcoat", + "23502000": "Xanthous Gloves", + "23503000": "Xanthous Trousers", + "24000000": "Northern Helm", + "24001000": "Northern Armor", + "24002000": "Northern Gloves", + "24003000": "Northern Trousers", + "24500000": "Morne's Helm", + "24501000": "Morne's Armor", + "24502000": "Morne's Gauntlets", + "24503000": "Morne's Leggings", + "25000000": "Silver Mask", + "25001000": "Leonhard's Garb", + "25002000": "Leonhard's Gauntlets", + "25003000": "Leonhard's Trousers", + "25500000": "Sneering Mask", + "25501000": "Pale Shade Robe", + "25502000": "Pale Shade Gloves", + "25503000": "Pale Shade Trousers", + "26000000": "Sunset Helm", + "26001000": "Sunset Armor", + "26002000": "Sunset Gauntlets", + "26003000": "Sunset Leggings", + "26500000": "Old Sage's Blindfold", + "26501000": "Cornyx's Garb", + "26502000": "Cornyx's Wrap", + "26503000": "Cornyx's Skirt", + "27000000": "Executioner Helm", + "27001000": "Executioner Armor", + "27002000": "Executioner Gauntlets", + "27003000": "Executioner Leggings", + "27500000": "Billed Mask", + "27501000": "Black Dress", + "27502000": "Black Gauntlets", + "27503000": "Black Leggings", + "28000000": "Pyromancer Crown", + "28001000": "Pyromancer Garb", + "28002000": "Pyromancer Wrap", + "28003000": "Pyromancer Trousers", + "28501000": "Antiquated Plain Garb", + "28502000": "Violet Wrappings", + "28503000": "Loincloth", + "29000000": "Court Sorcerer Hood", + "29001000": "Court Sorcerer Robe", + "29002000": "Court Sorcerer Gloves", + "29003000": "Court Sorcerer Trousers", + "29500000": "Shira's Crown", + "29501000": "Shira's Armor", + "29502000": "Shira's Gloves", + "29503000": "Shira's Trousers", + "30000000": "Sorcerer Hood", + "30001000": "Sorcerer Robe", + "30002000": "Sorcerer Gloves", + "30003000": "Sorcerer Trousers", + "30101000": "Clandestine Coat", + "31000000": "Cleric Hat", + "31001000": "Cleric Blue Robe", + "31002000": "Cleric Gloves", + "31003000": "Cleric Trousers", + "32000000": "Lapp's Helm", + "32001000": "Lapp's Armor", + "32002000": "Lapp's Gauntlets", + "32003000": "Lapp's Leggings", + "40000000": "Steel Soldier Helm", + "40001000": "Deserter Armor", + "40003000": "Deserter Trousers", + "40200000": "Thief Mask", + "43000000": "Sage's Big Hat", + "44000000": "Aristocrat's Mask", + "44001000": "Jailer Robe", + "44002000": "Jailer Gloves", + "44003000": "Jailer Trousers", + "46000000": "Grave Warden Hood", + "46001000": "Grave Warden Robe", + "46002000": "Grave Warden Wrap", + "46003000": "Grave Warden Skirt", + "47000000": "Worker Hat", + "47001000": "Worker Garb", + "47002000": "Worker Gloves", + "47003000": "Worker Trousers", + "47500000": "Thrall Hood", + "48000000": "Evangelist Hat", + "48001000": "Evangelist Robe", + "48002000": "Evangelist Gloves", + "48003000": "Evangelist Trousers", + "48500000": "Scholar's Shed Skin", + "48501000": "Scholar's Robe", + "49000000": "Winged Knight Helm", + "49001000": "Winged Knight Armor", + "49002000": "Winged Knight Gauntlets", + "49003000": "Winged Knight Leggings", + "50500000": "Cathedral Knight Helm", + "50501000": "Cathedral Knight Armor", + "50502000": "Cathedral Knight Gauntlets", + "50503000": "Cathedral Knight Leggings", + "52000000": "Lothric Knight Helm", + "52001000": "Lothric Knight Armor", + "52002000": "Lothric Knight Gauntlets", + "52003000": "Lothric Knight Leggings", + "53000000": "Outrider Knight Helm", + "53001000": "Outrider Knight Armor", + "53002000": "Outrider Knight Gauntlets", + "53003000": "Outrider Knight Leggings", + "54000000": "Black Knight Helm", + "54001000": "Black Knight Armor", + "54002000": "Black Knight Gauntlets", + "54003000": "Black Knight Leggings", + "54500000": "Dark Mask", + "54501000": "Dark Armor", + "54502000": "Dark Gauntlets", + "54503000": "Dark Leggings", + "55000000": "Exile Mask", + "55001000": "Exile Armor", + "55002000": "Exile Gauntlets", + "55003000": "Exile Leggings", + "55500000": "Slave Knight Hood", + "55501000": "Slave Knight Armor", + "55502000": "Slave Knight Gauntlets", + "55503000": "Slave Knight Leggings", + "56000000": "Pontiff Knight Crown", + "56001000": "Pontiff Knight Armor", + "56002000": "Pontiff Knight Gauntlets", + "56003000": "Pontiff Knight Leggings", + "56500000": "Ordained Hood", + "56501000": "Ordained Dress", + "56503000": "Ordained Trousers", + "57000000": "Golden Crown", + "57001000": "Dragonscale Armor", + "57002000": "Golden Bracelets", + "57003000": "Dragonscale Waistcloth", + "57500000": "Wolnir's Crown", + "58000000": "Undead Legion Helm", + "58001000": "Undead Legion Armor", + "58002000": "Undead Legion Gauntlet", + "58003000": "Undead Legion Leggings", + "58500000": "Follower Helm", + "58501000": "Follower Armor", + "58502000": "Follower Gloves", + "58503000": "Follower Boots", + "59500000": "Man Serpent's Mask", + "60000000": "Fire Witch Helm", + "60001000": "Fire Witch Armor", + "60002000": "Fire Witch Gauntlets", + "60003000": "Fire Witch Leggings", + "60500000": "Millwood Knight Helm", + "60501000": "Millwood Knight Armor", + "60502000": "Millwood Knight Gauntlets", + "60503000": "Millwood Knight Leggings", + "61000000": "Lorian's Helm", + "61001000": "Lorian's Armor", + "61002000": "Lorian's Gauntlets", + "61003000": "Lorian's Leggings", + "61500000": "Hood of Prayer", + "61501000": "Robe of Prayer", + "61503000": "Skirt of Prayer", + "63000000": "Dancer's Crown", + "63001000": "Dancer's Armor", + "63002000": "Dancer's Gauntlets", + "63003000": "Dancer's Leggings", + "63500000": "Ringed Knight Hood", + "63501000": "Ringed Knight Armor", + "63502000": "Ringed Knight Gauntlets", + "63503000": "Ringed Knight Leggings", + "64000000": "Gundyr's Helm", + "64001000": "Gundyr's Armor", + "64002000": "Gundyr's Gauntlets", + "64003000": "Gundyr's Leggings", + "64501000": "Harald Legion Armor", + "64502000": "Harald Legion Gauntlets", + "64503000": "Harald Legion Leggings", + "66000000": "Archdeacon White Crown", + "66001000": "Archdeacon Holy Garb", + "66003000": "Archdeacon Skirt", + "66501000": "Deacon Robe", + "66503000": "Deacon Skirt", + "67500000": "Iron Dragonslayer Helm", + "67501000": "Iron Dragonslayer Armor", + "67502000": "Iron Dragonslayer Gauntlets", + "67503000": "Iron Dragonslayer Leggings", + "68001000": "Fire Keeper Robe", + "68002000": "Fire Keeper Gloves", + "68003000": "Fire Keeper Skirt", + "68500000": "White Preacher Head", + "70000000": "Chain Helm", + "70001000": "Chain Armor", + "70002000": "Leather Gauntlets", + "70003000": "Chain Leggings", + "71000000": "Nameless Knight Helm", + "71001000": "Nameless Knight Armor", + "71002000": "Nameless Knight Gauntlets", + "71003000": "Nameless Knight Leggings", + "72000000": "Elite Knight Helm", + "72001000": "Elite Knight Armor", + "72002000": "Elite Knight Gauntlets", + "72003000": "Elite Knight Leggings", + "73000000": "Faraam Helm", + "73001000": "Faraam Armor", + "73002000": "Faraam Gauntlets", + "73003000": "Faraam Boots", + "74000000": "Catarina Helm", + "74001000": "Catarina Armor", + "74002000": "Catarina Gauntlets", + "74003000": "Catarina Leggings", + "74500000": "Standard Helm", + "74501000": "Hard Leather Armor", + "74502000": "Hard Leather Gauntlets", + "74503000": "Hard Leather Boots", + "75000000": "Havel's Helm", + "75001000": "Havel's Armor", + "75002000": "Havel's Gauntlets", + "75003000": "Havel's Leggings", + "75500000": "Brigand Hood", + "75501000": "Brigand Armor", + "75502000": "Brigand Gauntlets", + "75503000": "Brigand Trousers", + "76000000": "Pharis's Hat", + "76001000": "Leather Armor", + "76002000": "Leather Gloves", + "76003000": "Leather Boots", + "76500000": "Ragged Mask", + "76501000": "Master's Attire", + "76502000": "Master's Gloves", + "76503000": "Loincloth", + "77000000": "Old Sorcerer Hat", + "77001000": "Old Sorcerer Coat", + "77002000": "Old Sorcerer Gauntlets", + "77003000": "Old Sorcerer Boots", + "77500000": "Conjurator Hood", + "77501000": "Conjurator Robe", + "77502000": "Conjurator Manchettes", + "77503000": "Conjurator Boots", + "78001000": "Black Leather Armor", + "78002000": "Black Leather Gloves", + "78003000": "Black Leather Boots", + "78500000": "Symbol of Avarice", + "79000000": "Creighton's Steel Mask", + "79001000": "Mirrah Chain Mail", + "79002000": "Mirrah Chain Gloves", + "79003000": "Mirrah Chain Leggings", + "79500000": "Maiden Hood", + "79501000": "Maiden Robe", + "79502000": "Maiden Gloves", + "79503000": "Maiden Skirt", + "80000000": "Alva Helm", + "80001000": "Alva Armor", + "80002000": "Alva Gauntlets", + "80003000": "Alva Leggings", + "80500000": "Ruin Helm", + "80501000": "Ruin Armor", + "80502000": "Ruin Gauntlets", + "80503000": "Ruin Leggings", + "81000000": "Shadow Mask", + "81001000": "Shadow Garb", + "81002000": "Shadow Gauntlets", + "81003000": "Shadow Leggings", + "81500000": "Desert Pyromancer Hood", + "81501000": "Desert Pyromancer Garb", + "81502000": "Desert Pyromancer Gloves", + "81503000": "Desert Pyromancer Skirt", + "82000000": "Eastern Helm", + "82001000": "Eastern Armor", + "82002000": "Eastern Gauntlets", + "82003000": "Eastern Leggings", + "82500000": "Black Witch Hat", + "82501000": "Black Witch Garb", + "82502000": "Black Witch Wrappings", + "82503000": "Black Witch Trousers", + "83000000": "Helm of Favor", + "83001000": "Embraced Armor of Favor", + "83002000": "Gauntlets of Favor", + "83003000": "Leggings of Favor", + "83500000": "Black Witch Veil", + "84000000": "Brass Helm", + "84001000": "Brass Armor", + "84002000": "Brass Gauntlets", + "84003000": "Brass Leggings", + "84500000": "Blindfold Mask", + "85000000": "Silver Knight Helm", + "85001000": "Silver Knight Armor", + "85002000": "Silver Knight Gauntlets", + "85003000": "Silver Knight Leggings", + "86000000": "Lucatiel's Mask", + "86001000": "Mirrah Vest", + "86002000": "Mirrah Gloves", + "86003000": "Mirrah Trousers", + "87000000": "Iron Helm", + "87001000": "Armor of the Sun", + "87002000": "Iron Bracelets", + "87003000": "Iron Leggings", + "88000000": "Drakeblood Helm", + "88001000": "Drakeblood Armor", + "88002000": "Drakeblood Gauntlets", + "88003000": "Drakeblood Leggings", + "89001000": "Drang Armor", + "89002000": "Drang Gauntlets", + "89003000": "Drang Shoes", + "90000000": "Black Iron Helm", + "90001000": "Black Iron Armor", + "90002000": "Black Iron Gauntlets", + "90003000": "Black Iron Leggings", + "91000000": "Painting Guardian Hood", + "91001000": "Painting Guardian Gown", + "91002000": "Painting Guardian Gloves", + "91003000": "Painting Guardian Waistcloth", + "92000000": "Wolf Knight Helm", + "92001000": "Wolf Knight Armor", + "92002000": "Wolf Knight Gauntlets", + "92003000": "Wolf Knight Leggings", + "93000000": "Dragonslayer Helm", + "93001000": "Dragonslayer Armor", + "93002000": "Dragonslayer Gauntlets", + "93003000": "Dragonslayer Leggings", + "94000000": "Smough's Helm", + "94001000": "Smough's Armor", + "94002000": "Smough's Gauntlets", + "94003000": "Smough's Leggings", + "96000000": "Helm of Thorns", + "96001000": "Armor of Thorns", + "96002000": "Gauntlets of Thorns", + "96003000": "Leggings of Thorns", + "98000000": "Crown of Dusk", + "98001000": "Antiquated Dress", + "98002000": "Antiquated Gloves", + "98003000": "Antiquated Skirt", + "99000000": "Karla's Pointed Hat", + "99001000": "Karla's Coat", + "99002000": "Karla's Gloves", + "99003000": "Karla's Trousers" + }, + "EquipParamWeapon": { + "1000": "Weapon without correction -- 補正なし武器", + "1100": "Throwing Knives -- 投げナイフ", + "1200": "Fire bottle -- 火炎瓶", + "1300": "TestData1", + "1400": "TestData2", + "1500": "TestData3", + "1600": "TestData4", + "1700": "TestData5", + "1800": "TestData6", + "1900": "TestData7", + "2000": "TestData8", + "2100": "TestData9", + "91000": "[Load Check] memory Check 1 -- 【負荷チェック】メモリチェック1", + "91100": "[Load Check] memory Check 1 -- 【負荷チェック】メモリチェック1", + "92000": "[Load check] memory Check 2 -- 【負荷チェック】メモリチェック2", + "92100": "[Load check] memory Check 2 -- 【負荷チェック】メモリチェック2", + "93000": "[Load Check] memory Check 3 -- 【負荷チェック】メモリチェック3", + "93100": "[Load Check] memory Check 3 -- 【負荷チェック】メモリチェック3", + "94000": "[Load Check] memory check 4 -- 【負荷チェック】メモリチェック4", + "94100": "[Load Check] memory check 4 -- 【負荷チェック】メモリチェック4", + "95000": "[Load Check] memory Check 5 -- 【負荷チェック】メモリチェック5", + "95100": "[Load Check] memory Check 5 -- 【負荷チェック】メモリチェック5", + "96000": "[Load Check] memory Check 6 -- 【負荷チェック】メモリチェック6", + "96100": "[Load Check] memory Check 6 -- 【負荷チェック】メモリチェック6", + "98000": "[Load Check] Quiver 1 -- 【負荷チェック】矢筒1", + "98100": "[Load Check] Quiver 2 -- 【負荷チェック】矢筒2", + "98200": "[Load Check] Quiver 3 -- 【負荷チェック】矢筒3", + "98300": "[Load Check] Quiver 4 -- 【負荷チェック】矢筒4", + "98400": "[Load Check] Quiver 5 -- 【負荷チェック】矢筒5", + "98500": "[Load Check] Quiver 6 -- 【負荷チェック】矢筒6", + "98600": "[Load check] bolt cylinder 1 -- 【負荷チェック】ボルト筒1", + "98700": "[Load check] bolt cylinder 2 -- 【負荷チェック】ボルト筒2", + "98800": "[Load check] bolt cylinder 3 -- 【負荷チェック】ボルト筒3", + "98900": "[Load check] bolt cylinder 4 -- 【負荷チェック】ボルト筒4", + "99000": "[Load check] bolt cylinder 5 -- 【負荷チェック】ボルト筒5", + "99100": "[Load check] bolt cylinder 6 -- 【負荷チェック】ボルト筒6", + "110000": "Fists", + "400000": "Standard Arrow", + "400100": "Fire Arrow", + "400200": "Poison Arrow", + "400300": "Large Arrow", + "400400": "Feather Arrow", + "400500": "Moonlight Arrow", + "400600": "Wood Arrow", + "400700": "Dark Arrow", + "402000": "Dragonslayer Greatarrow", + "402200": "Dragonslayer Lightning Arrow", + "402300": "Onislayer Greatarrow", + "402400": "Millwood Greatarrow", + "404000": "Standard Bolt", + "404100": "Heavy Bolt", + "404200": "Sniper Bolt", + "404300": "Wood Bolt", + "404400": "Lightning Bolt", + "404500": "Splintering Bolt", + "404600": "Exploding Bolt", + "409900": "TestData Bolt1", + "419900": "TestData Bolt2", + "800000": "Test Greatbow", + "890000": "Test-Glow", + "890010": "Test-Glow +10", + "890020": "Test-Glow +20", + "890030": "Test-Glow +30", + "890040": "Test-Glow +40", + "890050": "Test-Glow +50", + "890060": "Test-Glow +60", + "890070": "Test-Glow +70", + "930000": "Ghost Dagger", + "930100": "Ghost Sword", + "930200": "Ghost Longsword", + "930300": "Ghost Ultralongsword", + "930310": "Ghost Ultralongsword+10", + "930400": "Ghost Rapier", + "930500": "Ghost Curved Sword", + "930600": "Ghost Saber", + "930700": "Ghost Katana", + "930800": "Ghost Curved Greatsword", + "930900": "Ghost Axe", + "931000": "Ghost Greataxe", + "931100": "Ghos Club", + "931200": "Ghost Greatclub", + "931300": "Ghost Spear", + "931400": "Ghost Halberd", + "931500": "Ghost Scythe", + "931600": "Ghost Staff", + "931700": "Ghost Chime", + "931800": "Ghost Pyrohand", + "931900": "Ghost Whip", + "932000": "Ghost Bow", + "932100": "Ghost Greatbow", + "932200": "Ghost Arbalet", + "932300": "Ghost Fist", + "932400": "Ghost Caestus", + "932500": "Ghost Claw", + "932600": "Ghost PairedCurvedSwords", + "932700": "Ghost PairedAxes", + "932800": "Ghost PairedDaggers", + "932900": "Ghost PairedLongSwords", + "933000": "Ghost PairedKatanas", + "933100": "Ghost PairedSpears", + "933200": "Ghost DemonFist", + "933300": "Ghost Claw", + "933400": "Ghost PairedMace", + "933600": "Ghost SmallShield", + "933610": "Ghost SmallShield +10", + "933700": "Ghost Shield", + "933710": "Ghost Shield +10", + "933800": "Ghost GreatShield", + "933900": "Ghost Torch", + "1000000": "Dagger", + "1000100": "Heavy Dagger", + "1000200": "Sharp Dagger", + "1000300": "Refined Dagger", + "1000400": "Simple Dagger", + "1000500": "Crystal Dagger", + "1000600": "Fire Dagger", + "1000700": "Chaos Dagger", + "1000800": "Lightning Dagger", + "1000900": "Deep Dagger", + "1001000": "Dark Dagger", + "1001100": "Poison Dagger", + "1001200": "Blood Dagger", + "1001300": "Raw Dagger", + "1001400": "Blessed Dagger", + "1001500": "Hollow Dagger", + "1010000": "Bandit's Knife", + "1010100": "Heavy Bandit's Knife", + "1010200": "Sharp Bandit's Knife", + "1010300": "Refined Bandit's Knife", + "1010400": "Simple Bandit's Knife", + "1010500": "Crystal Bandit's Knife", + "1010600": "Fire Bandit's Knife", + "1010700": "Chaos Bandit's Knife", + "1010800": "Lightning Bandit's Knife", + "1010900": "Deep Bandit's Knife", + "1011000": "Dark Bandit's Knife", + "1011100": "Poison Bandit's Knife", + "1011200": "Blood Bandit's Knife", + "1011300": "Raw Bandit's Knife", + "1011400": "Blessed Bandit's Knife", + "1011500": "Hollow Bandit's Knife", + "1020000": "Parrying Dagger", + "1020100": "Heavy Parrying Dagger", + "1020200": "Sharp Parrying Dagger", + "1020300": "Refined Parrying Dagger", + "1020400": "Simple Parrying Dagger", + "1020500": "Crystal Parrying Dagger", + "1020600": "Fire Parrying Dagger", + "1020700": "Chaos Parrying Dagger", + "1020800": "Lightning Parrying Dagger", + "1020900": "Deep Parrying Dagger", + "1021000": "Dark Parrying Dagger", + "1021100": "Poison Parrying Dagger", + "1021200": "Blood Parrying Dagger", + "1021300": "Raw Parrying Dagger", + "1021400": "Blessed Parrying Dagger", + "1021500": "Hollow Parrying Dagger", + "1040000": "Rotten Ghru Dagger", + "1040100": "Heavy Rotten Ghru Dagger", + "1040200": "Sharp Rotten Ghru Dagger", + "1040300": "Refined Rotten Ghru Dagger", + "1040400": "Simple Rotten Ghru Dagger", + "1040500": "Crystal Rotten Ghru Dagger", + "1040600": "Fire Rotten Ghru Dagger", + "1040700": "Chaos Rotten Ghru Dagger", + "1040800": "Lightning Rotten Ghru Dagger", + "1040900": "Deep Rotten Ghru Dagger", + "1041000": "Dark Rotten Ghru Dagger", + "1041100": "Poison Rotten Ghru Dagger", + "1041200": "Blood Rotten Ghru Dagger", + "1041300": "Raw Rotten Ghru Dagger", + "1041400": "Blessed Rotten Ghru Dagger", + "1041500": "Hollow Rotten Ghru Dagger", + "1060000": "Harpe", + "1060100": "Heavy Harpe", + "1060200": "Sharp Harpe", + "1060300": "Refined Harpe", + "1060400": "Simple Harpe", + "1060500": "Crystal Harpe", + "1060600": "Fire Harpe", + "1060700": "Chaos Harpe", + "1060800": "Lightning Harpe", + "1060900": "Deep Harpe", + "1061000": "Dark Harpe", + "1061100": "Poison Harpe", + "1061200": "Blood Harpe", + "1061300": "Raw Harpe", + "1061400": "Blessed Harpe", + "1061500": "Hollow Harpe", + "1070000": "Scholar's Candlestick", + "1080000": "Tailbone Short Sword", + "1090000": "Corvian Greatknife", + "1090100": "Heavy Corvian Greatknife", + "1090200": "Sharp Corvian Greatknife", + "1090300": "Refined Corvian Greatknife", + "1090400": "Simple Corvian Greatknife", + "1090500": "Crystal Corvian Greatknife", + "1090600": "Fire Corvian Greatknife", + "1090700": "Chaos Corvian Greatknife", + "1090800": "Lightning Corvian Greatknife", + "1090900": "Deep Corvian Greatknife", + "1091000": "Dark Corvian Greatknife", + "1091100": "Poison Corvian Greatknife", + "1091200": "Blood Corvian Greatknife", + "1091300": "Raw Corvian Greatknife", + "1091400": "Blessed Corvian Greatknife", + "1091500": "Hollow Corvian Greatknife", + "1120000": "Handmaid's Dagger", + "1140000": "Aquamarine Dagger", + "1150000": "Murky Hand Scythe", + "1150100": "Heavy Murky Hand Scythe", + "1150200": "Sharp Murky Hand Scythe", + "1150300": "Refined Murky Hand Scythe", + "1150400": "Simple Murky Hand Scythe", + "1150500": "Crystal Murky Hand Scythe", + "1150600": "Fire Murky Hand Scythe", + "1150700": "Chaos Murky Hand Scythe", + "1150800": "Lightning Murky Hand Scythe", + "1150900": "Deep Murky Hand Scythe", + "1151000": "Dark Murky Hand Scythe", + "1151100": "Poison Murky Hand Scythe", + "1151200": "Blood Murky Hand Scythe", + "1151300": "Raw Murky Hand Scythe", + "1151400": "Blessed Murky Hand Scythe", + "1151500": "Hollow Murky Hand Scythe", + "2000000": "Shortsword", + "2000100": "Heavy Shortsword", + "2000200": "Sharp Shortsword", + "2000300": "Refined Shortsword", + "2000400": "Simple Shortsword", + "2000500": "Crystal Shortsword", + "2000600": "Fire Shortsword", + "2000700": "Chaos Shortsword", + "2000800": "Lightning Shortsword", + "2000900": "Deep Shortsword", + "2001000": "Dark Shortsword", + "2001100": "Poison Shortsword", + "2001200": "Blood Shortsword", + "2001300": "Raw Shortsword", + "2001400": "Blessed Shortsword", + "2001500": "Hollow Shortsword", + "2010000": "Long Sword", + "2010100": "Heavy Longsword", + "2010200": "Sharp Longsword", + "2010300": "Refined Longsword", + "2010400": "Simple Longsword", + "2010500": "Crystal Longsword", + "2010600": "Fire Longsword", + "2010700": "Chaos Longsword", + "2010800": "Lightning Longsword", + "2010900": "Deep Longsword", + "2011000": "Dark Longsword", + "2011100": "Poison Longsword", + "2011200": "Blood Longsword", + "2011300": "Raw Longsword", + "2011400": "Blessed Longsword", + "2011500": "Hollow Longsword", + "2020000": "Broadsword", + "2020100": "Heavy Broadsword", + "2020200": "Sharp Broadsword", + "2020300": "Refined Broadsword", + "2020400": "Simple Broadsword", + "2020500": "Crystal Broadsword", + "2020600": "Fire Broadsword", + "2020700": "Chaos Broadsword", + "2020800": "Lightning Broadsword", + "2020900": "Deep Broadsword", + "2021000": "Dark Broadsword", + "2021100": "Poison Broadsword", + "2021200": "Blood Broadsword", + "2021300": "Raw Broadsword", + "2021400": "Blessed Broadsword", + "2021500": "Hollow Broadsword", + "2030000": "Broken Straight Sword", + "2030100": "Broken Heavy Straight Sword", + "2030200": "Broken Sharp Straight Sword", + "2030300": "Broken Refined Straight Sword", + "2030400": "Broken Simple Straight Sword", + "2030500": "Broken Crystal Straight Sword", + "2030600": "Broken Fire Straight Sword", + "2030700": "Broken Chaos Straight Sword", + "2030800": "Broken Lightning Straight Sword", + "2030900": "Broken Deep Straight Sword", + "2031000": "Broken Dark Straight Sword", + "2031100": "Broken Poison Straight Sword", + "2031200": "Broken Blood Straight Sword", + "2031300": "Broken Raw Straight Sword", + "2031400": "Broken Blessed Straight Sword", + "2031500": "Broken Hollow Straight Sword", + "2060000": "Lothric Knight Sword", + "2060100": "Heavy Lothric Sword", + "2060200": "Sharp Lothric Sword", + "2060300": "Refined Lothric Sword", + "2060400": "Simple Lothric Sword", + "2060500": "Crystal Lothric Sword", + "2060600": "Fire Lothric Sword", + "2060700": "Chaos Lothric Sword", + "2060800": "Lightning Lothric Sword", + "2060900": "Deep Lothric Sword", + "2061000": "Dark Lothric Sword", + "2061100": "Poison Lothric Sword", + "2061200": "Blood Lothric Sword", + "2061300": "Raw Lothric Sword", + "2061400": "Blessed Lothric Sword", + "2061500": "Hollow Lothric Sword", + "2110000": "Sunlight Straight Sword", + "2120000": "Rotten Ghru Curved Sword", + "2120100": "Heavy Rotten Ghru Sword", + "2120200": "Sharp Rotten Ghru Sword", + "2120300": "Refined Rotten Ghru Sword", + "2120400": "Simple Rotten Ghru Sword", + "2120500": "Crystal Rotten Ghru Sword", + "2120600": "Fire Rotten Ghru Sword", + "2120700": "Chaos Rotten Ghru Sword", + "2120800": "Lightning Rotten Ghru Sword", + "2120900": "Deep Rotten Ghru Sword", + "2121000": "Dark Rotten Ghru Sword", + "2121100": "Poison Rotten Ghru Sword", + "2121200": "Blood Rotten Ghru Sword", + "2121300": "Raw Rotten Ghru Sword", + "2121400": "Blessed Rotten Ghru Sword", + "2121500": "Hollow Rotten Ghru Sword", + "2140000": "Irithyll Straight Sword", + "2160000": "Cleric's Candlestick", + "2180000": "Morion Blade", + "2200000": "Astora Straight Sword", + "2200100": "Heavy Astora Sword", + "2200200": "Sharp Astora Sword", + "2200300": "Refined Astora Sword", + "2200400": "Simple Astora Sword", + "2200500": "Crystal Astora Sword", + "2200600": "Fire Astora Sword", + "2200700": "Chaos Astora Sword", + "2200800": "Lightning Astora Sword", + "2200900": "Deep Astora Sword", + "2201000": "Dark Astora Sword", + "2201100": "Poison Astora Sword", + "2201200": "Blood Astora Sword", + "2201300": "Raw Astora Sword", + "2201400": "Blessed Astora Sword", + "2201500": "Hollow Astora Sword", + "2210000": "Barbed Straight Sword", + "2210100": "Heavy Barbed Sword", + "2210200": "Sharp Barbed Sword", + "2210300": "Refined Barbed Sword", + "2210400": "Simple Barbed Sword", + "2210500": "Crystal Barbed Sword", + "2210600": "Fire Barbed Sword", + "2210700": "Chaos Barbed Sword", + "2210800": "Lightning Barbed Sword", + "2210900": "Deep Barbed Sword", + "2211000": "Dark Barbed Sword", + "2211100": "Poison Barbed Sword", + "2211200": "Blood Barbed Sword", + "2211300": "Raw Barbed Sword", + "2211400": "Blessed Barbed Sword", + "2211500": "Hollow Barbed Sword", + "2220000": "Executioner's Greatsword", + "2230000": "Anri's Straight Sword", + "2240000": "Onyx Blade", + "2250000": "Ringed Knight Straight Sword", + "2260000": "Gael's Greatsword", + "3000000": "Estoc", + "3000100": "Heavy Estoc", + "3000200": "Sharp Estoc", + "3000300": "Refined Estoc", + "3000400": "Simple Estoc", + "3000500": "Crystal Estoc", + "3000600": "Fire Estoc", + "3000700": "Chaos Estoc", + "3000800": "Lightning Estoc", + "3000900": "Deep Estoc", + "3001000": "Dark Estoc", + "3001100": "Poison Estoc", + "3001200": "Blood Estoc", + "3001300": "Raw Estoc", + "3001400": "Blessed Estoc", + "3001500": "Hollow Estoc", + "3010000": "Mail Breaker", + "3010100": "Heavy Mail Breaker", + "3010200": "Sharp Mail Breaker", + "3010300": "Refined Mail Breaker", + "3010400": "Simple Mail Breaker", + "3010500": "Crystal Mail Breaker", + "3010600": "Fire Mail Breaker", + "3010700": "Chaos Mail Breaker", + "3010800": "Lightning Mail Breaker", + "3010900": "Deep Mail Breaker", + "3011000": "Dark Mail Breaker", + "3011100": "Poison Mail Breaker", + "3011200": "Blood Mail Breaker", + "3011300": "Raw Mail Breaker", + "3011400": "Blessed Mail Breaker", + "3011500": "Hollow Mail Breaker", + "3020000": "Rapier", + "3020100": "Heavy Rapier", + "3020200": "Sharp Rapier", + "3020300": "Refined Rapier", + "3020400": "Simple Rapier", + "3020500": "Crystal Rapier", + "3020600": "Fire Rapier", + "3020700": "Chaos Rapier", + "3020800": "Lightning Rapier", + "3020900": "Deep Rapier", + "3021000": "Dark Rapier", + "3021100": "Poison Rapier", + "3021200": "Blood Rapier", + "3021300": "Raw Rapier", + "3021400": "Blessed Rapier", + "3021500": "Hollow Rapier", + "3030000": "Ricard's Rapier", + "3030100": "Ricard's Heavy Rapier", + "3030200": "Ricard's Sharp Rapier", + "3030300": "Ricard's Refined Rapier", + "3030400": "Ricard's Simple Rapier", + "3030500": "Ricard's Crystal Rapier", + "3030600": "Ricard's Fire Rapier", + "3030700": "Ricard's Chaos Rapier", + "3030800": "Ricard's Lightning Rapier", + "3030900": "Ricard's Deep Rapier", + "3031000": "Ricard's Dark Rapier", + "3031100": "Ricard's Poison Rapier", + "3031200": "Ricard's Blood Rapier", + "3031300": "Ricard's Raw Rapier", + "3031400": "Ricard's Blessed Rapier", + "3031500": "Ricard's Hollow Rapier", + "3040000": "Crystal Sage's Rapier", + "3050000": "Irithyll Rapier", + "4010000": "Shotel", + "4010100": "Heavy Shotel", + "4010200": "Sharp Shotel", + "4010300": "Refined Shotel", + "4010400": "Simple Shotel", + "4010500": "Crystal Shotel", + "4010600": "Fire Shotel", + "4010700": "Chaos Shotel", + "4010800": "Lightning Shotel", + "4010900": "Deep Shotel", + "4011000": "Dark Shotel", + "4011100": "Poison Shotel", + "4011200": "Blood Shotel", + "4011300": "Raw Shotel", + "4011400": "Blessed Shotel", + "4011500": "Hollow Shotel", + "4030000": "Scimitar", + "4030100": "Heavy Scimitar", + "4030200": "Sharp Scimitar", + "4030300": "Refined Scimitar", + "4030400": "Simple Scimitar", + "4030500": "Crystal Scimitar", + "4030600": "Fire Scimitar", + "4030700": "Chaos Scimitar", + "4030800": "Lightning Scimitar", + "4030900": "Deep Scimitar", + "4031000": "Dark Scimitar", + "4031100": "Poison Scimitar", + "4031200": "Blood Scimitar", + "4031300": "Raw Scimitar", + "4031400": "Blessed Scimitar", + "4031500": "Hollow Scimitar", + "4040000": "Falchion", + "4040100": "Heavy Falchion", + "4040200": "Sharp Falchion", + "4040300": "Refined Falchion", + "4040400": "Simple Falchion", + "4040500": "Crystal Falchion", + "4040600": "Fire Falchion", + "4040700": "Chaos Falchion", + "4040800": "Lightning Falchion", + "4040900": "Deep Falchion", + "4041000": "Dark Falchion", + "4041100": "Poison Falchion", + "4041200": "Blood Falchion", + "4041300": "Raw Falchion", + "4041400": "Blessed Falchion", + "4041500": "Hollow Falchion", + "4050000": "Carthus Curved Sword", + "4050100": "Heavy Carthus Sword", + "4050200": "Sharp Carthus Sword", + "4050300": "Refined Carthus Sword", + "4050400": "Simple Carthus Sword", + "4050500": "Crystal Carthus Sword", + "4050600": "Fire Carthus Sword", + "4050700": "Chaos Carthus Sword", + "4050800": "Lightning Carthus Sword", + "4050900": "Deep Carthus Sword", + "4051000": "Dark Carthus Sword", + "4051100": "Poison Carthus Sword", + "4051200": "Blood Carthus Sword", + "4051300": "Raw Carthus Sword", + "4051400": "Blessed Carthus Sword", + "4051500": "Hollow Carthus Sword", + "4060000": "Carthus Curved Greatsword", + "4060100": "Heavy Carthus Greatsword", + "4060200": "Sharp Carthus Greatsword", + "4060300": "Refined Carthus Greatsword", + "4060400": "Simple Carthus Greatsword", + "4060500": "Crystal Carthus Greatsword", + "4060600": "Fire Carthus Greatsword", + "4060700": "Chaos Carthus Greatsword", + "4060800": "Lightning Carthus Greatsword", + "4060900": "Deep Carthus Greatsword", + "4061000": "Dark Carthus Greatsword", + "4061100": "Poison Carthus Greatsword", + "4061200": "Blood Carthus Greatsword", + "4061300": "Raw Carthus Greatsword", + "4061400": "Blessed Carthus Greatsword", + "4061500": "Hollow Carthus Greatsword", + "4070000": "Pontiff Knight Curved Sword", + "4080000": "Storm Curved Sword", + "4090000": "Painting Guardian's Curved Sword", + "4090100": "Painting Guardian's Heavy Sword", + "4090200": "Painting Guardian's Sharp Sword", + "4090300": "Painting Guardian's Refined Sword", + "4090400": "Painting Guardian's Simple Sword", + "4090500": "Painting Guardian's Crystal Sword", + "4090600": "Painting Guardian's Fire Sword", + "4090700": "Painting Guardian's Chaos Sword", + "4090800": "Painting Guardian's Lightning Sword", + "4090900": "Painting Guardian's Deep Sword", + "4091000": "Painting Guardian's Dark Sword", + "4091100": "Painting Guardian's Poison Sword", + "4091200": "Painting Guardian's Blood Sword", + "4091300": "Painting Guardian's Raw Sword", + "4091400": "Painting Guardian's Blessed Sword", + "4091500": "Painting Guardian's Hollow Sword", + "4100000": "Crescent Moon Sword", + "4110000": "Carthus Shotel", + "4110100": "Heavy Carthus Shotel", + "4110200": "Sharp Carthus Shotel", + "4110300": "Refined Carthus Shotel", + "4110400": "Simple Carthus Shotel", + "4110500": "Crystal Carthus Shotel", + "4110600": "Fire Carthus Shotel", + "4110700": "Chaos Carthus Shotel", + "4110800": "Lightning Carthus Shotel", + "4110900": "Deep Carthus Shotel", + "4111000": "Dark Carthus Shotel", + "4111100": "Poison Carthus Shotel", + "4111200": "Blood Carthus Shotel", + "4111300": "Raw Carthus Shotel", + "4111400": "Blessed Carthus Shotel", + "4111500": "Hollow Carthus Shotel", + "4120000": "Follower Sabre", + "4120100": "Heavy Follower Sabre", + "4120200": "Sharp Follower Sabre", + "4120300": "Refined Follower Sabre", + "4120400": "Simple Follower Sabre", + "4120500": "Crystal Follower Sabre", + "4120600": "Fire Follower Sabre", + "4120700": "Chaos Follower Sabre", + "4120800": "Lightning Follower Sabre", + "4120900": "Deep Follower Sabre", + "4121000": "Dark Follower Sabre", + "4121100": "Poison Follower Sabre", + "4121200": "Blood Follower Sabre", + "4121300": "Raw Follower Sabre", + "4121400": "Blessed Follower Sabre", + "4121500": "Hollow Follower Sabre", + "4130000": "Demon's Scar", + "5000000": "Uchigatana", + "5000100": "Heavy Uchigatana", + "5000200": "Sharp Uchigatana", + "5000300": "Refined Uchigatana", + "5000400": "Simple Uchigatana", + "5000500": "Crystal Uchigatana", + "5000600": "Fire Uchigatana", + "5000700": "Chaos Uchigatana", + "5000800": "Lightning Uchigatana", + "5000900": "Deep Uchigatana", + "5001000": "Dark Uchigatana", + "5001100": "Poison Uchigatana", + "5001200": "Blood Uchigatana", + "5001300": "Raw Uchigatana", + "5001400": "Blessed Uchigatana", + "5001500": "Hollow Uchigatana", + "5010000": "Washing Pole", + "5010100": "Heavy Washing Pole", + "5010200": "Sharp Washing Pole", + "5010300": "Refined Washing Pole", + "5010400": "Simple Washing Pole", + "5010500": "Crystal Washing Pole", + "5010600": "Fire Washing Pole", + "5010700": "Chaos Washing Pole", + "5010800": "Lightning Washing Pole", + "5010900": "Deep Washing Pole", + "5011000": "Dark Washing Pole", + "5011100": "Poison Washing Pole", + "5011200": "Blood Washing Pole", + "5011300": "Raw Washing Pole", + "5011400": "Blessed Washing Pole", + "5011500": "Hollow Washing Pole", + "5020000": "Chaos Blade", + "5030000": "Black Blade", + "5030100": "Heavy Black Blade", + "5030200": "Sharp Black Blade", + "5030300": "Refined Black Blade", + "5030400": "Simple Black Blade", + "5030500": "Crystal Black Blade", + "5030600": "Fire Black Blade", + "5030700": "Chaos Black Blade", + "5030800": "Lightning Black Blade", + "5030900": "Deep Black Blade", + "5031000": "Dark Black Blade", + "5031100": "Poison Black Blade", + "5031200": "Blood Black Blade", + "5031300": "Raw Black Blade", + "5031400": "Blessed Black Blade", + "5031500": "Hollow Black Blade", + "5040000": "Bloodlust", + "5050000": "Darkdrift", + "5060000": "Frayed Blade", + "6000000": "Bastard Sword", + "6000100": "Heavy Bastard Sword", + "6000200": "Sharp Bastard Sword", + "6000300": "Refined Bastard Sword", + "6000400": "Simple Bastard Sword", + "6000500": "Crystal Bastard Sword", + "6000600": "Fire Bastard Sword", + "6000700": "Chaos Bastard Sword", + "6000800": "Lightning Bastard Sword", + "6000900": "Deep Bastard Sword", + "6001000": "Dark Bastard Sword", + "6001100": "Poison Bastard Sword", + "6001200": "Blood Bastard Sword", + "6001300": "Raw Bastard Sword", + "6001400": "Blessed Bastard Sword", + "6001500": "Hollow Bastard Sword", + "6020000": "Claymore", + "6020100": "Heavy Claymore", + "6020200": "Sharp Claymore", + "6020300": "Refined Claymore", + "6020400": "Simple Claymore", + "6020500": "Crystal Claymore", + "6020600": "Fire Claymore", + "6020700": "Chaos Claymore", + "6020800": "Lightning Claymore", + "6020900": "Deep Claymore", + "6021000": "Dark Claymore", + "6021100": "Poison Claymore", + "6021200": "Blood Claymore", + "6021300": "Raw Claymore", + "6021400": "Blessed Claymore", + "6021500": "Hollow Claymore", + "6040000": "Zweihander", + "6040100": "Heavy Zweihander", + "6040200": "Sharp Zweihander", + "6040300": "Refined Zweihander", + "6040400": "Simple Zweihander", + "6040500": "Crystal Zweihander", + "6040600": "Fire Zweihander", + "6040700": "Chaos Zweihander", + "6040800": "Lightning Zweihander", + "6040900": "Deep Zweihander", + "6041000": "Dark Zweihander", + "6041100": "Poison Zweihander", + "6041200": "Blood Zweihander", + "6041300": "Raw Zweihander", + "6041400": "Blessed Zweihander", + "6041500": "Hollow Zweihander", + "6050000": "Greatsword", + "6050100": "Heavy Greatsword", + "6050200": "Sharp Greatsword", + "6050300": "Refined Greatsword", + "6050400": "Simple Greatsword", + "6050500": "Crystal Greatsword", + "6050600": "Fire Greatsword", + "6050700": "Chaos Greatsword", + "6050800": "Lightning Greatsword", + "6050900": "Deep Greatsword", + "6051000": "Dark Greatsword", + "6051100": "Poison Greatsword", + "6051200": "Blood Greatsword", + "6051300": "Raw Greatsword", + "6051400": "Blessed Greatsword", + "6051500": "Hollow Greatsword", + "6070000": "Astora Greatsword", + "6070100": "Heavy Astora Greatsword", + "6070200": "Sharp Astora Greatsword", + "6070300": "Refined Astora Greatsword", + "6070400": "Simple Astora Greatsword", + "6070500": "Crystal Astora Greatsword", + "6070600": "Fire Astora Greatsword", + "6070700": "Chaos Astora Greatsword", + "6070800": "Lightning Astora Greatsword", + "6070900": "Deep Astora Greatsword", + "6071000": "Dark Astora Greatsword", + "6071100": "Poison Astora Greatsword", + "6071200": "Blood Astora Greatsword", + "6071300": "Raw Astora Greatsword", + "6071400": "Blessed Astora Greatsword", + "6071500": "Hollow Astora Greatsword", + "6080000": "Murakumo", + "6080100": "Heavy Murakumo", + "6080200": "Sharp Murakumo", + "6080300": "Refined Murakumo", + "6080400": "Simple Murakumo", + "6080500": "Crystal Murakumo", + "6080600": "Fire Murakumo", + "6080700": "Chaos Murakumo", + "6080800": "Lightning Murakumo", + "6080900": "Deep Murakumo", + "6081000": "Dark Murakumo", + "6081100": "Poison Murakumo", + "6081200": "Blood Murakumo", + "6081300": "Raw Murakumo", + "6081400": "Blessed Murakumo", + "6081500": "Hollow Murakumo", + "6100000": "Lothric Knight Greatsword", + "6100100": "Heavy Lothric Greatsword", + "6100200": "Sharp Lothric Greatsword", + "6100300": "Refined Lothric Greatsword", + "6100400": "Simple Lothric Greatsword", + "6100500": "Crystal Lothric Greatsword", + "6100600": "Fire Lothric Greatsword", + "6100700": "Chaos Lothric Greatsword", + "6100800": "Lightning Lothric Greatsword", + "6100900": "Deep Lothric Greatsword", + "6101000": "Dark Lothric Greatsword", + "6101100": "Poison Lothric Greatsword", + "6101200": "Blood Lothric Greatsword", + "6101300": "Raw Lothric Greatsword", + "6101400": "Blessed Lothric Greatsword", + "6101500": "Hollow Lothric Greatsword", + "6130000": "Black Knight Greatsword", + "6140000": "Flamberge", + "6140100": "Heavy Flamberge", + "6140200": "Sharp Flamberge", + "6140300": "Refined Flamberge", + "6140400": "Simple Flamberge", + "6140500": "Crystal Flamberge", + "6140600": "Fire Flamberge", + "6140700": "Chaos Flamberge", + "6140800": "Lightning Flamberge", + "6140900": "Deep Flamberge", + "6141000": "Dark Flamberge", + "6141100": "Poison Flamberge", + "6141200": "Blood Flamberge", + "6141300": "Raw Flamberge", + "6141400": "Blessed Flamberge", + "6141500": "Hollow Flamberge", + "6150000": "Exile Greatsword", + "6150100": "Heavy Exile Greatsword", + "6150200": "Sharp Exile Greatsword", + "6150300": "Refined Exile Greatsword", + "6150400": "Simple Exile Greatsword", + "6150500": "Crystal Exile Greatsword", + "6150600": "Fire Exile Greatsword", + "6150700": "Chaos Exile Greatsword", + "6150800": "Lightning Exile Greatsword", + "6150900": "Deep Exile Greatsword", + "6151000": "Dark Exile Greatsword", + "6151100": "Poison Exile Greatsword", + "6151200": "Blood Exile Greatsword", + "6151300": "Raw Exile Greatsword", + "6151400": "Blessed Exile Greatsword", + "6151500": "Hollow Exile Greatsword", + "6170000": "Greatsword of Judgment", + "6180000": "Profaned Greatsword", + "6190000": "Cathedral Knight Greatsword", + "6190100": "Heavy Cathedral Greatsword", + "6190200": "Sharp Cathedral Greatsword", + "6190300": "Refined Cathedral Greatsword", + "6190400": "Simple Cathedral Greatsword", + "6190500": "Crystal Cathedral Greatsword", + "6190600": "Fire Cathedral Greatsword", + "6190700": "Chaos Cathedral Greatsword", + "6190800": "Lightning Cathedral Greatsword", + "6190900": "Deep Cathedral Greatsword", + "6191000": "Dark Cathedral Greatsword", + "6191100": "Poison Cathedral Greatsword", + "6191200": "Blood Cathedral Greatsword", + "6191300": "Raw Cathedral Greatsword", + "6191400": "Blessed Cathedral Greatsword", + "6191500": "Hollow Cathedral Greatsword", + "6200000": "Farron Greatsword", + "6230000": "Yhorm's Great Machete", + "6240000": "Dark Sword", + "6240100": "Heavy Dark Sword", + "6240200": "Sharp Dark Sword", + "6240300": "Refined Dark Sword", + "6240400": "Simple Dark Sword", + "6240500": "Crystal Dark Sword", + "6240600": "Fire Dark Sword", + "6240700": "Chaos Dark Sword", + "6240800": "Lightning Dark Sword", + "6240900": "Deep Dark Sword", + "6241000": "Reinforced Dark Sword", + "6241100": "Poison Dark Sword", + "6241200": "Blood Dark Sword", + "6241300": "Raw Dark Sword", + "6241400": "Blessed Dark Sword", + "6241500": "Hollow Dark Sword", + "6250000": "Black Knight Sword", + "6260000": "Lorian's Greatsword", + "6270000": "Twin Princes' Greatsword", + "6280000": "Lothric's Holy Sword", + "6290000": "Wolnir's Holy Sword", + "6300000": "Wolf Knight's Greatsword", + "6310000": "Hollowslayer Greatsword", + "6320000": "Moonlight Greatsword", + "6330000": "Drakeblood Greatsword", + "6330100": "Heavy Drakeblood Greatsword", + "6330200": "Sharp Drakeblood Greatsword", + "6330300": "Refined Drakeblood Greatsword", + "6330400": "Simple Drakeblood Greatsword", + "6330500": "Crystal Drakeblood Greatsword", + "6330600": "Fire Drakeblood Greatsword", + "6330700": "Chaos Drakeblood Greatsword", + "6330800": "Lightning Drakeblood Greatsword", + "6330900": "Deep Drakeblood Greatsword", + "6331000": "Dark Drakeblood Greatsword", + "6331100": "Poison Drakeblood Greatsword", + "6331200": "Blood Drakeblood Greatsword", + "6331300": "Raw Drakeblood Greatsword", + "6331400": "Blessed Drakeblood Greatsword", + "6331500": "Hollow Drakeblood Greatsword", + "6340000": "Firelink Greatsword", + "6350000": "Fume Ultra Greatsword", + "6360000": "Old Wolf Curved Sword", + "6370000": "Storm Ruler", + "6380000": "Harald Curved Greatsword", + "6380100": "Heavy Harald Curved Greatsword", + "6380200": "Sharp Harald Curved Greatsword", + "6380300": "Refined Harald Curved Greatsword", + "6380400": "Simple Harald Curved Greatsword", + "6380500": "Crystal Harald Curved Greatsword", + "6380600": "Fire Harald Curved Greatsword", + "6380700": "Chaos Harald Curved Greatsword", + "6380800": "Lightning Harald Curved Greatsword", + "6380900": "Deep Harald Curved Greatsword", + "6381000": "Dark Harald Curved Greatsword", + "6381100": "Poison Harald Curved Greatsword", + "6381200": "Blood Harald Curved Greatsword", + "6381300": "Raw Harald Curved Greatsword", + "6381400": "Blessed Harald Curved Greatsword", + "6381500": "Hollow Harald Curved Greatsword", + "7000000": "Hand Axe", + "7000100": "Heavy Hand Axe", + "7000200": "Sharp Hand Axe", + "7000300": "Refined Hand Axe", + "7000400": "Simple Hand Axe", + "7000500": "Crystal Hand Axe", + "7000600": "Fire Hand Axe", + "7000700": "Chaos Hand Axe", + "7000800": "Lightning Hand Axe", + "7000900": "Deep Hand Axe", + "7001000": "Dark Hand Axe", + "7001100": "Poison Hand Axe", + "7001200": "Blood Hand Axe", + "7001300": "Raw Hand Axe", + "7001400": "Blessed Hand Axe", + "7001500": "Hollow Hand Axe", + "7010000": "Battle Axe", + "7010100": "Heavy Battle Axe", + "7010200": "Sharp Battle Axe", + "7010300": "Refined Battle Axe", + "7010400": "Simple Battle Axe", + "7010500": "Crystal Battle Axe", + "7010600": "Fire Battle Axe", + "7010700": "Chaos Battle Axe", + "7010800": "Lightning Battle Axe", + "7010900": "Deep Battle Axe", + "7011000": "Dark Battle Axe", + "7011100": "Poison Battle Axe", + "7011200": "Blood Battle Axe", + "7011300": "Raw Battle Axe", + "7011400": "Blessed Battle Axe", + "7011500": "Hollow Battle Axe", + "7020000": "Brigand Axe", + "7020100": "Heavy Brigand Axe", + "7020200": "Sharp Brigand Axe", + "7020300": "Refined Brigand Axe", + "7020400": "Simple Brigand Axe", + "7020500": "Crystal Brigand Axe", + "7020600": "Fire Brigand Axe", + "7020700": "Chaos Brigand Axe", + "7020800": "Lightning Brigand Axe", + "7020900": "Deep Brigand Axe", + "7021000": "Dark Brigand Axe", + "7021100": "Poison Brigand Axe", + "7021200": "Blood Brigand Axe", + "7021300": "Raw Brigand Axe", + "7021400": "Blessed Brigand Axe", + "7021500": "Hollow Brigand Axe", + "7040000": "Crescent Axe", + "7040100": "Heavy Crescent Axe", + "7040200": "Sharp Crescent Axe", + "7040300": "Refined Crescent Axe", + "7040400": "Simple Crescent Axe", + "7040500": "Crystal Crescent Axe", + "7040600": "Fire Crescent Axe", + "7040700": "Chaos Crescent Axe", + "7040800": "Lightning Crescent Axe", + "7040900": "Deep Crescent Axe", + "7041000": "Dark Crescent Axe", + "7041100": "Poison Crescent Axe", + "7041200": "Blood Crescent Axe", + "7041300": "Raw Crescent Axe", + "7041400": "Blessed Crescent Axe", + "7041500": "Hollow Crescent Axe", + "7050000": "Greataxe", + "7050100": "Heavy Greataxe", + "7050200": "Sharp Greataxe", + "7050300": "Refined Greataxe", + "7050400": "Simple Greataxe", + "7050500": "Crystal Greataxe", + "7050600": "Fire Greataxe", + "7050700": "Chaos Greataxe", + "7050800": "Lightning Greataxe", + "7050900": "Deep Greataxe", + "7051000": "Dark Greataxe", + "7051100": "Poison Greataxe", + "7051200": "Blood Greataxe", + "7051300": "Raw Greataxe", + "7051400": "Blessed Greataxe", + "7051500": "Hollow Greataxe", + "7070000": "Butcher Knife", + "7080000": "Dragonslayer's Axe", + "7080100": "Heavy Dragonslayer's Axe", + "7080200": "Sharp Dragonslayer's Axe", + "7080300": "Refined Dragonslayer's Axe", + "7080400": "Simple Dragonslayer's Axe", + "7080500": "Crystal Dragonslayer's Axe", + "7080600": "Fire Dragonslayer's Axe", + "7080700": "Chaos Dragonslayer's Axe", + "7080800": "Lightning Dragonslayer's Axe", + "7080900": "Deep Dragonslayer's Axe", + "7081000": "Dark Dragonslayer's Axe", + "7081100": "Poison Dragonslayer's Axe", + "7081200": "Blood Dragonslayer's Axe", + "7081300": "Raw Dragonslayer's Axe", + "7081400": "Blessed Dragonslayer's Axe", + "7081500": "Hollow Dragonslayer's Axe", + "7100000": "Thrall Axe", + "7100100": "Heavy Thrall Axe", + "7100200": "Sharp Thrall Axe", + "7100300": "Refined Thrall Axe", + "7100400": "Simple Thrall Axe", + "7100500": "Crystal Thrall Axe", + "7100600": "Fire Thrall Axe", + "7100700": "Chaos Thrall Axe", + "7100800": "Lightning Thrall Axe", + "7100900": "Deep Thrall Axe", + "7101000": "Dark Thrall Axe", + "7101100": "Poison Thrall Axe", + "7101200": "Blood Thrall Axe", + "7101300": "Raw Thrall Axe", + "7101400": "Blessed Thrall Axe", + "7101500": "Hollow Thrall Axe", + "7110000": "Dragonslayer Greataxe", + "7120000": "Demon's Greataxe", + "7130000": "Eleonora", + "7150000": "Man Serpent Hatchet", + "7150100": "Heavy Serpent Hatchet", + "7150200": "Sharp Serpent Hatchet", + "7150300": "Refined Serpent Hatchet", + "7150400": "Simple Serpent Hatchet", + "7150500": "Crystal Serpent Hatchet", + "7150600": "Fire Serpent Hatchet", + "7150700": "Chaos Serpent Hatchet", + "7150800": "Lightning Serpent Hatchet", + "7150900": "Deep Serpent Hatchet", + "7151000": "Dark Serpent Hatchet", + "7151100": "Poison Serpent Hatchet", + "7151200": "Blood Serpent Hatchet", + "7151300": "Raw Serpent Hatchet", + "7151400": "Blessed Serpent Hatchet", + "7151500": "Hollow Serpent Hatchet", + "7170000": "Millwood Battle Axe", + "7170100": "Heavy Millwood Battle Axe", + "7170200": "Sharp Millwood Battle Axe", + "7170300": "Refined Millwood Battle Axe", + "7170400": "Simple Millwood Battle Axe", + "7170500": "Crystal Millwood Battle Axe", + "7170600": "Fire Millwood Battle Axe", + "7170700": "Chaos Millwood Battle Axe", + "7170800": "Lightning Millwood Battle Axe", + "7170900": "Deep Millwood Battle Axe", + "7171000": "Dark Millwood Battle Axe", + "7171100": "Poison Millwood Battle Axe", + "7171200": "Blood Millwood Battle Axe", + "7171300": "Raw Millwood Battle Axe", + "7171400": "Blessed Millwood Battle Axe", + "7171500": "Hollow Millwood Battle Axe", + "7180000": "Earth Seeker", + "8000000": "Club", + "8000100": "Heavy Club", + "8000200": "Sharp Club", + "8000300": "Refined Club", + "8000400": "Simple Club", + "8000500": "Crystal Club", + "8000600": "Fire Club", + "8000700": "Chaos Club", + "8000800": "Lightning Club", + "8000900": "Deep Club", + "8001000": "Dark Club", + "8001100": "Poison Club", + "8001200": "Blood Club", + "8001300": "Raw Club", + "8001400": "Blessed Club", + "8001500": "Hollow Club", + "8010000": "Mace", + "8010100": "Heavy Mace", + "8010200": "Sharp Mace", + "8010300": "Refined Mace", + "8010400": "Simple Mace", + "8010500": "Crystal Mace", + "8010600": "Fire Mace", + "8010700": "Chaos Mace", + "8010800": "Lightning Mace", + "8010900": "Deep Mace", + "8011000": "Dark Mace", + "8011100": "Poison Mace", + "8011200": "Blood Mace", + "8011300": "Raw Mace", + "8011400": "Blessed Mace", + "8011500": "Hollow Mace", + "8020000": "Morning Star", + "8020100": "Heavy Morning Star", + "8020200": "Sharp Morning Star", + "8020300": "Refined Morning Star", + "8020400": "Simple Morning Star", + "8020500": "Crystal Morning Star", + "8020600": "Fire Morning Star", + "8020700": "Chaos Morning Star", + "8020800": "Lightning Morning Star", + "8020900": "Deep Morning Star", + "8021000": "Dark Morning Star", + "8021100": "Poison Morning Star", + "8021200": "Blood Morning Star", + "8021300": "Raw Morning Star", + "8021400": "Blessed Morning Star", + "8021500": "Hollow Morning Star", + "8030000": "Reinforced Club", + "8030100": "Heavy Reinforced Club", + "8030200": "Sharp Reinforced Club", + "8030300": "Refined Reinforced Club", + "8030400": "Simple Reinforced Club", + "8030500": "Crystal Reinforced Club", + "8030600": "Fire Reinforced Club", + "8030700": "Chaos Reinforced Club", + "8030800": "Lightning Reinforced Club", + "8030900": "Deep Reinforced Club", + "8031000": "Dark Reinforced Club", + "8031100": "Poison Reinforced Club", + "8031200": "Blood Reinforced Club", + "8031300": "Raw Reinforced Club", + "8031400": "Blessed Reinforced Club", + "8031500": "Hollow Reinforced Club", + "8060000": "Large Club", + "8060100": "Heavy Large Club", + "8060200": "Sharp Large Club", + "8060300": "Refined Large Club", + "8060400": "Simple Large Club", + "8060500": "Crystal Large Club", + "8060600": "Fire Large Club", + "8060700": "Chaos Large Club", + "8060800": "Lightning Large Club", + "8060900": "Deep Large Club", + "8061000": "Dark Large Club", + "8061100": "Poison Large Club", + "8061200": "Blood Large Club", + "8061300": "Raw Large Club", + "8061400": "Blessed Large Club", + "8061500": "Hollow Large Club", + "8080000": "Great Club", + "8080100": "Heavy Great Club", + "8080200": "Sharp Great Club", + "8080300": "Refined Great Club", + "8080400": "Simple Great Club", + "8080500": "Crystal Great Club", + "8080600": "Fire Great Club", + "8080700": "Chaos Great Club", + "8080800": "Lightning Great Club", + "8080900": "Deep Great Club", + "8081000": "Dark Great Club", + "8081100": "Poison Great Club", + "8081200": "Blood Great Club", + "8081300": "Raw Great Club", + "8081400": "Blessed Great Club", + "8081500": "Hollow Great Club", + "8110000": "Great Mace", + "8110100": "Heavy Great Mace", + "8110200": "Sharp Great Mace", + "8110300": "Refined Great Mace", + "8110400": "Simple Great Mace", + "8110500": "Crystal Great Mace", + "8110600": "Fire Great Mace", + "8110700": "Chaos Great Mace", + "8110800": "Lightning Great Mace", + "8110900": "Deep Great Mace", + "8111000": "Dark Great Mace", + "8111100": "Poison Great Mace", + "8111200": "Blood Great Mace", + "8111300": "Raw Great Mace", + "8111400": "Blessed Great Mace", + "8111500": "Hollow Great Mace", + "8160000": "Great Wooden Hammer", + "8160100": "Heavy Wooden Hammer", + "8160200": "Sharp Wooden Hammer", + "8160300": "Refined Wooden Hammer", + "8160400": "Simple Wooden Hammer", + "8160500": "Crystal Wooden Hammer", + "8160600": "Fire Wooden Hammer", + "8160700": "Chaos Wooden Hammer", + "8160800": "Lightning Wooden Hammer", + "8160900": "Deep Wooden Hammer", + "8161000": "Dark Wooden Hammer", + "8161100": "Poison Wooden Hammer", + "8161200": "Blood Wooden Hammer", + "8161300": "Raw Wooden Hammer", + "8161400": "Blessed Wooden Hammer", + "8161500": "Hollow Wooden Hammer", + "8170000": "Gargoyle Flame Hammer", + "8180000": "Vordt's Great Hammer", + "8190000": "Old King's Great Hammer", + "8220000": "Heysel Pick", + "8240000": "Warpick", + "8240100": "Heavy Warpick", + "8240200": "Sharp Warpick", + "8240300": "Refined Warpick", + "8240400": "Simple Warpick", + "8240500": "Crystal Warpick", + "8240600": "Fire Warpick", + "8240700": "Chaos Warpick", + "8240800": "Lightning Warpick", + "8240900": "Deep Warpick", + "8241000": "Dark Warpick", + "8241100": "Poison Warpick", + "8241200": "Blood Warpick", + "8241300": "Raw Warpick", + "8241400": "Blessed Warpick", + "8241500": "Hollow Warpick", + "8250000": "Pickaxe", + "8250100": "Heavy Pickaxe", + "8250200": "Sharp Pickaxe", + "8250300": "Refined Pickaxe", + "8250400": "Simple Pickaxe", + "8250500": "Crystal Pickaxe", + "8250600": "Fire Pickaxe", + "8250700": "Chaos Pickaxe", + "8250800": "Lightning Pickaxe", + "8250900": "Deep Pickaxe", + "8251000": "Dark Pickaxe", + "8251100": "Poison Pickaxe", + "8251200": "Blood Pickaxe", + "8251300": "Raw Pickaxe", + "8251400": "Blessed Pickaxe", + "8251500": "Hollow Pickaxe", + "8260000": "Dragon Tooth", + "8270000": "Smough's Great Hammer", + "8280000": "Blacksmith Hammer", + "8280100": "Heavy Blacksmith Hammer", + "8280200": "Sharp Blacksmith Hammer", + "8280300": "Refined Blacksmith Hammer", + "8280400": "Simple Blacksmith Hammer", + "8280500": "Crystal Blacksmith Hammer", + "8280600": "Fire Blacksmith Hammer", + "8280700": "Chaos Blacksmith Hammer", + "8280800": "Lightning Blacksmith Hammer", + "8280900": "Deep Blacksmith Hammer", + "8281000": "Dark Blacksmith Hammer", + "8281100": "Poison Blacksmith Hammer", + "8281200": "Blood Blacksmith Hammer", + "8281300": "Raw Blacksmith Hammer", + "8281400": "Blessed Blacksmith Hammer", + "8281500": "Hollow Blacksmith Hammer", + "8290000": "Morne's Great Hammer", + "8300000": "Spiked Mace", + "8300100": "Heavy Spiked Mace", + "8300200": "Sharp Spiked Mace", + "8300300": "Refined Spiked Mace", + "8300400": "Simple Spiked Mace", + "8300500": "Crystal Spiked Mace", + "8300600": "Fire Spiked Mace", + "8300700": "Chaos Spiked Mace", + "8300800": "Lightning Spiked Mace", + "8300900": "Deep Spiked Mace", + "8301000": "Dark Spiked Mace", + "8301100": "Poison Spiked Mace", + "8301200": "Blood Spiked Mace", + "8301300": "Raw Spiked Mace", + "8301400": "Blessed Spiked Mace", + "8301500": "Hollow Spiked Mace", + "8310000": "Quakestone Hammer", + "8320000": "Ledo's Great Hammer", + "9000000": "Spear", + "9000100": "Heavy Spear", + "9000200": "Sharp Spear", + "9000300": "Refined Spear", + "9000400": "Simple Spear", + "9000500": "Crystal Spear", + "9000600": "Fire Spear", + "9000700": "Chaos Spear", + "9000800": "Lightning Spear", + "9000900": "Deep Spear", + "9001000": "Dark Spear", + "9001100": "Poison Spear", + "9001200": "Blood Spear", + "9001300": "Raw Spear", + "9001400": "Blessed Spear", + "9001500": "Hollow Spear", + "9010000": "Winged Spear", + "9010100": "Heavy Winged Spear", + "9010200": "Sharp Winged Spear", + "9010300": "Refined Winged Spear", + "9010400": "Simple Winged Spear", + "9010500": "Crystal Winged Spear", + "9010600": "Fire Winged Spear", + "9010700": "Chaos Winged Spear", + "9010800": "Lightning Winged Spear", + "9010900": "Deep Winged Spear", + "9011000": "Dark Winged Spear", + "9011100": "Poison Winged Spear", + "9011200": "Blood Winged Spear", + "9011300": "Raw Winged Spear", + "9011400": "Blessed Winged Spear", + "9011500": "Hollow Winged Spear", + "9030000": "Partizan", + "9030100": "Heavy Partizan", + "9030200": "Sharp Partizan", + "9030300": "Refined Partizan", + "9030400": "Simple Partizan", + "9030500": "Crystal Partizan", + "9030600": "Fire Partizan", + "9030700": "Chaos Partizan", + "9030800": "Lightning Partizan", + "9030900": "Deep Partizan", + "9031000": "Dark Partizan", + "9031100": "Poison Partizan", + "9031200": "Blood Partizan", + "9031300": "Raw Partizan", + "9031400": "Blessed Partizan", + "9031500": "Hollow Partizan", + "9080000": "Greatlance", + "9080100": "Heavy Greatlance", + "9080200": "Sharp Greatlance", + "9080300": "Refined Greatlance", + "9080400": "Simple Greatlance", + "9080500": "Crystal Greatlance", + "9080600": "Fire Greatlance", + "9080700": "Chaos Greatlance", + "9080800": "Lightning Greatlance", + "9080900": "Deep Greatlance", + "9081000": "Dark Greatlance", + "9081100": "Poison Greatlance", + "9081200": "Blood Greatlance", + "9081300": "Raw Greatlance", + "9081400": "Blessed Greatlance", + "9081500": "Hollow Greatlance", + "9090000": "Lothric Knight Long Spear", + "9090100": "Heavy Lothric Long Spear", + "9090200": "Sharp Lothric Long Spear", + "9090300": "Refined Lothric Long Spear", + "9090400": "Simple Lothric Long Spear", + "9090500": "Crystal Lothric Long Spear", + "9090600": "Fire Lothric Long Spear", + "9090700": "Chaos Lothric Long Spear", + "9090800": "Lightning Lothric Long Spear", + "9090900": "Deep Lothric Long Spear", + "9091000": "Dark Lothric Long Spear", + "9091100": "Poison Lothric Long Spear", + "9091200": "Blood Lothric Long Spear", + "9091300": "Raw Lothric Long Spear", + "9091400": "Blessed Lothric Long Spear", + "9091500": "Hollow Lothric Long Spear", + "9100000": "Four-Pronged Plow", + "9100100": "Heavy Four-Pronged Plow", + "9100200": "Sharp Four-Pronged Plow", + "9100300": "Refined Four-Pronged Plow", + "9100400": "Simple Four-Pronged Plow", + "9100500": "Crystal Four-Pronged Plow", + "9100600": "Fire Four-Pronged Plow", + "9100700": "Chaos Four-Pronged Plow", + "9100800": "Lightning Four-Pronged Plow", + "9100900": "Deep Four-Pronged Plow", + "9101000": "Dark Four-Pronged Plow", + "9101100": "Poison Four-Pronged Plow", + "9101200": "Blood Four-Pronged Plow", + "9101300": "Raw Four-Pronged Plow", + "9101400": "Blessed Four-Pronged Plow", + "9101500": "Hollow Four-Pronged Plow", + "9110000": "Gargoyle Flame Spear", + "9120000": "Rotten Ghru Spear", + "9120100": "Heavy Rotten Ghru Spear", + "9120200": "Sharp Rotten Ghru Spear", + "9120300": "Refined Rotten Ghru Spear", + "9120400": "Simple Rotten Ghru Spear", + "9120500": "Crystal Rotten Ghru Spear", + "9120600": "Fire Rotten Ghru Spear", + "9120700": "Chaos Rotten Ghru Spear", + "9120800": "Lightning Rotten Ghru Spear", + "9120900": "Deep Rotten Ghru Spear", + "9121000": "Dark Rotten Ghru Spear", + "9121100": "Poison Rotten Ghru Spear", + "9121200": "Blood Rotten Ghru Spear", + "9121300": "Raw Rotten Ghru Spear", + "9121400": "Blessed Rotten Ghru Spear", + "9121500": "Hollow Rotten Ghru Spear", + "9130000": "Tailbone Spear", + "9140000": "Soldering Iron", + "9160000": "Dragonslayer Swordspear", + "9170000": "Arstor's Spear", + "9180000": "Saint Bident", + "9180100": "Heavy Saint Bident", + "9180200": "Sharp Saint Bident", + "9180300": "Refined Saint Bident", + "9180400": "Simple Saint Bident", + "9180500": "Crystal Saint Bident", + "9180600": "Fire Saint Bident", + "9180700": "Chaos Saint Bident", + "9180800": "Lightning Saint Bident", + "9180900": "Deep Saint Bident", + "9181000": "Dark Saint Bident", + "9181100": "Poison Saint Bident", + "9181200": "Blood Saint Bident", + "9181300": "Raw Saint Bident", + "9181400": "Blessed Saint Bident", + "9181500": "Hollow Saint Bident", + "9190000": "Yorshka's Spear", + "9200000": "Pike", + "9200100": "Heavy Pike", + "9200200": "Sharp Pike", + "9200300": "Refined Pike", + "9200400": "Simple Pike", + "9200500": "Crystal Pike", + "9200600": "Fire Pike", + "9200700": "Chaos Pike", + "9200800": "Lightning Pike", + "9200900": "Deep Pike", + "9201000": "Dark Pike", + "9201100": "Poison Pike", + "9201200": "Blood Pike", + "9201300": "Raw Pike", + "9201400": "Blessed Pike", + "9201500": "Hollow Pike", + "9220000": "Dragonslayer Spear", + "9230000": "Follower Javelin", + "9230100": "Heavy Follower Javelin", + "9230200": "Sharp Follower Javelin", + "9230300": "Refined Follower Javelin", + "9230400": "Simple Follower Javelin", + "9230500": "Crystal Follower Javelin", + "9230600": "Fire Follower Javelin", + "9230700": "Chaos Follower Javelin", + "9230800": "Lightning Follower Javelin", + "9230900": "Deep Follower Javelin", + "9231000": "Dark Follower Javelin", + "9231100": "Poison Follower Javelin", + "9231200": "Blood Follower Javelin", + "9231300": "Raw Follower Javelin", + "9231400": "Blessed Follower Javelin", + "9231500": "Hollow Follower Javelin", + "9240000": "Ringed Knight Spear", + "9250000": "Lothric War Banner", + "9250100": "Heavy Lothric War Banner", + "9250200": "Sharp Lothric War Banner", + "9250300": "Refined Lothric War Banner", + "9250400": "Simple Lothric War Banner", + "9250500": "Crystal Lothric War Banner", + "9250600": "Fire Lothric War Banner", + "9250700": "Chaos Lothric War Banner", + "9250800": "Lightning Lothric War Banner", + "9250900": "Deep Lothric War Banner", + "9251000": "Dark Lothric War Banner", + "9251100": "Poison Lothric War Banner", + "9251200": "Blood Lothric War Banner", + "9251300": "Raw Lothric War Banner", + "9251400": "Blessed Lothric War Banner", + "9251500": "Hollow Lothric War Banner", + "9260000": "Crucifix of the Mad King", + "10000000": "Great Scythe", + "10000100": "Heavy Great Scythe", + "10000200": "Sharp Great Scythe", + "10000300": "Refined Great Scythe", + "10000400": "Simple Great Scythe", + "10000500": "Crystal Great Scythe", + "10000600": "Fire Great Scythe", + "10000700": "Chaos Great Scythe", + "10000800": "Lightning Great Scythe", + "10000900": "Deep Great Scythe", + "10001000": "Dark Great Scythe", + "10001100": "Poison Great Scythe", + "10001200": "Blood Great Scythe", + "10001300": "Raw Great Scythe", + "10001400": "Blessed Great Scythe", + "10001500": "Hollow Great Scythe", + "10010000": "Lucerne", + "10010100": "Heavy Lucerne", + "10010200": "Sharp Lucerne", + "10010300": "Refined Lucerne", + "10010400": "Simple Lucerne", + "10010500": "Crystal Lucerne", + "10010600": "Fire Lucerne", + "10010700": "Chaos Lucerne", + "10010800": "Lightning Lucerne", + "10010900": "Deep Lucerne", + "10011000": "Dark Lucerne", + "10011100": "Poison Lucerne", + "10011200": "Blood Lucerne", + "10011300": "Raw Lucerne", + "10011400": "Blessed Lucerne", + "10011500": "Hollow Lucerne", + "10020000": "Glaive", + "10020100": "Heavy Glaive", + "10020200": "Sharp Glaive", + "10020300": "Refined Glaive", + "10020400": "Simple Glaive", + "10020500": "Crystal Glaive", + "10020600": "Fire Glaive", + "10020700": "Chaos Glaive", + "10020800": "Lightning Glaive", + "10020900": "Deep Glaive", + "10021000": "Dark Glaive", + "10021100": "Poison Glaive", + "10021200": "Blood Glaive", + "10021300": "Raw Glaive", + "10021400": "Blessed Glaive", + "10021500": "Hollow Glaive", + "10030000": "Halberd", + "10030100": "Heavy Halberd", + "10030200": "Sharp Halberd", + "10030300": "Refined Halberd", + "10030400": "Simple Halberd", + "10030500": "Crystal Halberd", + "10030600": "Fire Halberd", + "10030700": "Chaos Halberd", + "10030800": "Lightning Halberd", + "10030900": "Deep Halberd", + "10031000": "Dark Halberd", + "10031100": "Poison Halberd", + "10031200": "Blood Halberd", + "10031300": "Raw Halberd", + "10031400": "Blessed Halberd", + "10031500": "Hollow Halberd", + "10050000": "Black Knight Greataxe", + "10070000": "Pontiff Knight Great Scythe", + "10080000": "Great Corvian Scythe", + "10080100": "Heavy Corvian Scythe", + "10080200": "Sharp Corvian Scythe", + "10080300": "Refined Corvian Scythe", + "10080400": "Simple Corvian Scythe", + "10080500": "Crystal Corvian Scythe", + "10080600": "Fire Corvian Scythe", + "10080700": "Chaos Corvian Scythe", + "10080800": "Lightning Corvian Scythe", + "10080900": "Deep Corvian Scythe", + "10081000": "Dark Corvian Scythe", + "10081100": "Poison Corvian Scythe", + "10081200": "Blood Corvian Scythe", + "10081300": "Raw Corvian Scythe", + "10081400": "Blessed Corvian Scythe", + "10081500": "Hollow Corvian Scythe", + "10090000": "Winged Knight Halberd", + "10090100": "Heavy Winged Knight Halberd", + "10090200": "Sharp Winged Knight Halberd", + "10090300": "Refined Winged Knight Halberd", + "10090400": "Simple Winged Knight Halberd", + "10090500": "Crystal Winged Knight Halberd", + "10090600": "Fire Winged Knight Halberd", + "10090700": "Chaos Winged Knight Halberd", + "10090800": "Lightning Winged Knight Halberd", + "10090900": "Deep Winged Knight Halberd", + "10091000": "Dark Winged Knight Halberd", + "10091100": "Poison Winged Knight Halberd", + "10091200": "Blood Winged Knight Halberd", + "10091300": "Raw Winged Knight Halberd", + "10091400": "Blessed Winged Knight Halberd", + "10091500": "Hollow Winged Knight Halberd", + "10100000": "Gundyr's Halberd", + "10140000": "Red Hilted Halberd", + "10140100": "Heavy Red Halberd", + "10140200": "Sharp Red Halberd", + "10140300": "Refined Red Halberd", + "10140400": "Simple Red Halberd", + "10140500": "Crystal Red Halberd", + "10140600": "Fire Red Halberd", + "10140700": "Chaos Red Halberd", + "10140800": "Lightning Red Halberd", + "10140900": "Deep Red Halberd", + "10141000": "Dark Red Halberd", + "10141100": "Poison Red Halberd", + "10141200": "Blood Red Halberd", + "10141300": "Raw Red Halberd", + "10141400": "Blessed Red Halberd", + "10141500": "Hollow Red Halberd", + "10150000": "Black Knight Glaive", + "10160000": "Immolation Tinder", + "10170000": "Splitleaf Greatsword", + "10170100": "Heavy Splitleaf Greatsword", + "10170200": "Sharp Splitleaf Greatsword", + "10170300": "Refined Splitleaf Greatsword", + "10170400": "Simple Splitleaf Greatsword", + "10170500": "Crystal Splitleaf Greatsword", + "10170600": "Fire Splitleaf Greatsword", + "10170700": "Chaos Splitleaf Greatsword", + "10170800": "Lightning Splitleaf Greatsword", + "10170900": "Deep Splitleaf Greatsword", + "10171000": "Dark Splitleaf Greatsword", + "10171100": "Poison Splitleaf Greatsword", + "10171200": "Blood Splitleaf Greatsword", + "10171300": "Raw Splitleaf Greatsword", + "10171400": "Blessed Splitleaf Greatsword", + "10171500": "Hollow Splitleaf Greatsword", + "10180000": "Friede's Great Scythe", + "11000000": "Claw", + "11000100": "Heavy Claw", + "11000200": "Sharp Claw", + "11000300": "Skilled Claw", + "11000400": "Simple Claw", + "11000500": "Crystal Claw", + "11000600": "Fire Claw", + "11000700": "Chaos Claw", + "11000800": "Lightning Claw", + "11000900": "Deep Claw", + "11001000": "Dark Claw", + "11001100": "Poison Claw", + "11001200": "Blood Claw", + "11001300": "Raw Claw", + "11001400": "Blessed Claw", + "11001500": "Hollow Claw", + "11010000": "Caestus", + "11010100": "Heavy Caestus", + "11010200": "Sharp Caestus", + "11010300": "Skilled Caestus", + "11010400": "Simple Caestus", + "11010500": "Crystal Caestus", + "11010600": "Fire Caestus", + "11010700": "Chaos Caestus", + "11010800": "Lightning Caestus", + "11010900": "Deep Caestus", + "11011000": "Dark Caestus", + "11011100": "Poison Caestus", + "11011200": "Blood Caestus", + "11011300": "Raw Caestus", + "11011400": "Blessed Caestus", + "11011500": "Hollow Caestus", + "11020000": "Manikin Claws", + "11020100": "Heavy Manikin Claws", + "11020200": "Sharp Manikin Claws", + "11020300": "Skilled Manikin Claws", + "11020400": "Simple Manikin Claws", + "11020500": "Crystal Manikin Claws", + "11020600": "Fire Manikin Claws", + "11020700": "Chaos Manikin Claws", + "11020800": "Lightning Manikin Claws", + "11020900": "Deep Manikin Claws", + "11021000": "Dark Manikin Claws", + "11021100": "Poison Manikin Claws", + "11021200": "Blood Manikin Claws", + "11021300": "Raw Manikin Claws", + "11021400": "Blessed Manikin Claws", + "11021500": "Hollow Manikin Claws", + "11030000": "Demon's Fist", + "11040000": "Dark Hand", + "11050000": "Crow Talons", + "11050100": "Heavy Crow Talons", + "11050200": "Sharp Crow Talons", + "11050300": "Refined Crow Talons", + "11050400": "Simple Crow Talons", + "11050500": "Crystal Crow Talons", + "11050600": "Fire Crow Talons", + "11050700": "Chaos Crow Talons", + "11050800": "Lightning Crow Talons", + "11050900": "Deep Crow Talons", + "11051000": "Dark Crow Talons", + "11051100": "Poison Crow Talons", + "11051200": "Blood Crow Talons", + "11051300": "Raw Crow Talons", + "11051400": "Blessed Crow Talons", + "11051500": "Hollow Crow Talons", + "12000000": "Whip", + "12000100": "Heavy Whip", + "12000200": "Sharp Whip", + "12000300": "Skilled Whip", + "12000400": "Simple Whip", + "12000500": "Crystal Whip", + "12000600": "Fire Whip", + "12000700": "Chaos Whip", + "12000800": "Lightning Whip", + "12000900": "Deep Whip", + "12001000": "Dark Whip", + "12001100": "Poison Whip", + "12001200": "Blood Whip", + "12001300": "Raw Whip", + "12001400": "Blessed Whip", + "12001500": "Hollow Whip", + "12040000": "Witch's Locks", + "12050000": "Notched Whip", + "12050100": "Heavy Notched Whip", + "12050200": "Sharp Notched Whip", + "12050300": "Skilled Notched Whip", + "12050400": "Simple Notched Whip", + "12050500": "Crystal Notched Whip", + "12050600": "Fire Notched Whip", + "12050700": "Chaos Notched Whip", + "12050800": "Lightning Notched Whip", + "12050900": "Deep Notched Whip", + "12051000": "Dark Notched Whip", + "12051100": "Poison Notched Whip", + "12051200": "Blood Notched Whip", + "12051300": "Raw Notched Whip", + "12051400": "Blessed Notched Whip", + "12051500": "Hollow Notched Whip", + "12060000": "Spotted Whip", + "12070000": "Rose of Ariandel", + "13050000": "Talisman", + "13060000": "Sorcerer's Staff", + "13070000": "Storyteller's Staff", + "13080000": "Mendicant's Staff", + "13100000": "Man-grub's Staff", + "13110000": "Archdeacon's Great Staff", + "13120000": "Golden Ritual Spear", + "13140000": "Yorshka's Chime", + "13160000": "Sage's Crystal Staff", + "13170000": "Heretic's Staff", + "13180000": "Court Sorcerer's Staff", + "13190000": "Witchtree Branch", + "13200000": "Izalith Staff", + "13210000": "Cleric's Sacred Chime", + "13220000": "Priest's Chime", + "13230000": "Saint-tree Bellvine", + "13240000": "Caitha's Chime", + "13250000": "Crystal Chime", + "13260000": "Sunlight Talisman", + "13270000": "Canvas Talisman", + "13280000": "Sunless Talisman", + "13290000": "Saint's Talisman", + "13300000": "White Hair Talisman", + "13400000": "Pyromancy Flame", + "13410000": "Pyromancer's Parting Flame", + "13420000": "Murky Longstaff", + "13430000": "Sacred Chime of Filianore", + "13440000": "Preacher's Right Arm", + "13600000": "Dragonslayer Greatbow", + "14010000": "Short Bow", + "14020000": "Composite Bow", + "14040000": "Light Crossbow", + "14050000": "Arbalest", + "14060000": "Longbow", + "14070000": "Dragonrider Bow", + "14090000": "Avelyn", + "14100000": "Knight's Crossbow", + "14110000": "Heavy Crossbow", + "14120000": "White Birch Bow", + "14130000": "Darkmoon Longbow", + "14140000": "Onislayer Greatbow", + "14150000": "Black Bow of Pharis", + "14170000": "Sniper Crossbow", + "14180000": "Millwood Greatbow", + "14190000": "Repeating Crossbow", + "16000000": "Sellsword Twinblades", + "16000100": "Heavy Sellsword Twinblades", + "16000200": "Sharp Sellsword Twinblades", + "16000300": "Refined Sellsword Twinblades", + "16000400": "Simple Sellsword Twinblades", + "16000500": "Crystal Sellsword Twinblades", + "16000600": "Fire Sellsword Twinblades", + "16000700": "Chaos Sellsword Twinblades", + "16000800": "Lightning Sellsword Twinblades", + "16000900": "Deep Sellsword Twinblades", + "16001000": "Dark Sellsword Twinblades", + "16001100": "Poison Sellsword Twinblades", + "16001200": "Blood Sellsword Twinblades", + "16001300": "Raw Sellsword Twinblades", + "16001400": "Blessed Sellsword Twinblades", + "16001500": "Hollow Sellsword Twinblades", + "16020000": "Warden Twinblades", + "16020100": "Heavy Warden Twinblades", + "16020200": "Sharp Warden Twinblades", + "16020300": "Refined Warden Twinblades", + "16020400": "Simple Warden Twinblades", + "16020500": "Crystal Warden Twinblades", + "16020600": "Fire Warden Twinblades", + "16020700": "Chaos Warden Twinblades", + "16020800": "Lightning Warden Twinblades", + "16020900": "Deep Warden Twinblades", + "16021000": "Dark Warden Twinblades", + "16021100": "Poison Warden Twinblades", + "16021200": "Blood Warden Twinblades", + "16021300": "Raw Warden Twinblades", + "16021400": "Blessed Warden Twinblades", + "16021500": "Hollow Warden Twinblades", + "16030000": "Winged Knight Twinaxes", + "16030100": "Heavy Winged Knight Twinaxes", + "16030200": "Sharp Winged Knight Twinaxes", + "16030300": "Refined Winged Knight Twinaxes", + "16030400": "Simple Winged Knight Twinaxes", + "16030500": "Crystal Winged Knight Twinaxes", + "16030600": "Fire Winged Knight Twinaxes", + "16030700": "Chaos Winged Knight Twinaxes", + "16030800": "Lightning Winged Knight Twinaxes", + "16030900": "Deep Winged Knight Twinaxes", + "16031000": "Dark Winged Knight Twinaxes", + "16031100": "Poison Winged Knight Twinaxes", + "16031200": "Blood Winged Knight Twinaxes", + "16031300": "Raw Winged Knight Twinaxes", + "16031400": "Blessed Winged Knight Twinaxes", + "16031500": "Hollow Winged Knight Twinaxes", + "16040000": "Dancer's Enchanted Swords", + "16050000": "Great Machete", + "16050100": "Heavy Great Machete", + "16050200": "Sharp Great Machete", + "16050300": "Refined Great Machete", + "16050400": "Simple Great Machete", + "16050500": "Crystal Great Machete", + "16050600": "Fire Great Machete", + "16050700": "Chaos Great Machete", + "16050800": "Lightning Great Machete", + "16050900": "Deep Great Machete", + "16051000": "Dark Great Machete", + "16051100": "Poison Great Machete", + "16051200": "Blood Great Machete", + "16051300": "Raw Great Machete", + "16051400": "Blessed Great Machete", + "16051500": "Hollow Great Machete", + "16060000": "Brigand Twindaggers", + "16060100": "Heavy Brigand Twindaggers", + "16060200": "Sharp Brigand Twindaggers", + "16060300": "Refined Brigand Twindaggers", + "16060400": "Simple Brigand Twindaggers", + "16060500": "Crystal Brigand Twindaggers", + "16060600": "Fire Brigand Twindaggers", + "16060700": "Chaos Brigand Twindaggers", + "16060800": "Lightning Brigand Twindaggers", + "16060900": "Deep Brigand Twindaggers", + "16061000": "Dark Brigand Twindaggers", + "16061100": "Poison Brigand Twindaggers", + "16061200": "Blood Brigand Twindaggers", + "16061300": "Raw Brigand Twindaggers", + "16061400": "Blessed Brigand Twindaggers", + "16061500": "Hollow Brigand Twindaggers", + "16070000": "Gotthard Twinswords", + "16070100": "Heavy Gotthard Twinswords", + "16070200": "Sharp Gotthard Twinswords", + "16070300": "Refined Gotthard Twinswords", + "16070400": "Simple Gotthard Twinswords", + "16070500": "Crystal Gotthard Twinswords", + "16070600": "Fire Gotthard Twinswords", + "16070700": "Chaos Gotthard Twinswords", + "16070800": "Lightning Gotthard Twinswords", + "16070900": "Deep Gotthard Twinswords", + "16071000": "Dark Gotthard Twinswords", + "16071100": "Poison Gotthard Twinswords", + "16071200": "Blood Gotthard Twinswords", + "16071300": "Raw Gotthard Twinswords", + "16071400": "Blessed Gotthard Twinswords", + "16071500": "Hollow Gotthard Twinswords", + "16090000": "Onikiri and Ubadachi", + "16090100": "Heavy Onikiri and Ubadachi", + "16090200": "Sharp Onikiri and Ubadachi", + "16090300": "Refined Onikiri and Ubadachi", + "16090400": "Simple Onikiri and Ubadachi", + "16090500": "Crystal Onikiri and Ubadachi", + "16090600": "Fire Onikiri and Ubadachi", + "16090700": "Chaos Onikiri and Ubadachi", + "16090800": "Lightning Onikiri and Ubadachi", + "16090900": "Deep Onikiri and Ubadachi", + "16091000": "Dark Onikiri and Ubadachi", + "16091100": "Poison Onikiri and Ubadachi", + "16091200": "Blood Onikiri and Ubadachi", + "16091300": "Raw Onikiri and Ubadachi", + "16091400": "Blessed Onikiri and Ubadachi", + "16091500": "Hollow Onikiri and Ubadachi", + "16100000": "Drang Twinspears", + "16100100": "Heavy Drang Twinspears", + "16100200": "Sharp Drang Twinspears", + "16100300": "Refined Drang Twinspears", + "16100400": "Simple Drang Twinspears", + "16100500": "Crystal Drang Twinspears", + "16100600": "Fire Drang Twinspears", + "16100700": "Chaos Drang Twinspears", + "16100800": "Lightning Drang Twinspears", + "16100900": "Deep Drang Twinspears", + "16101000": "Dark Drang Twinspears", + "16101100": "Poison Drang Twinspears", + "16101200": "Blood Drang Twinspears", + "16101300": "Raw Drang Twinspears", + "16101400": "Blessed Drang Twinspears", + "16101500": "Hollow Drang Twinspears", + "16120000": "Giant Door Shield", + "16120100": "Heavy Giant Door Shield", + "16120200": "Sharp Giant Door Shield", + "16120300": "Refined Giant Door Shield", + "16120400": "Simple Giant Door Shield", + "16120500": "Crystal Giant Door Shield", + "16120600": "Fire Giant Door Shield", + "16120700": "Chaos Giant Door Shield", + "16120800": "Lightning Giant Door Shield", + "16120900": "Deep Giant Door Shield", + "16121000": "Dark Giant Door Shield", + "16121100": "Poison Giant Door Shield", + "16121200": "Blood Giant Door Shield", + "16121300": "Raw Giant Door Shield", + "16121400": "Blessed Giant Door Shield", + "16121500": "Hollow Giant Door Shield", + "16130000": "Drang Hammers", + "16130100": "Heavy Drang Hammers", + "16130200": "Sharp Drang Hammers", + "16130300": "Refined Drang Hammers", + "16130400": "Simple Drang Hammers", + "16130500": "Crystal Drang Hammers", + "16130600": "Fire Drang Hammers", + "16130700": "Chaos Drang Hammers", + "16130800": "Lightning Drang Hammers", + "16130900": "Deep Drang Hammers", + "16131000": "Dark Drang Hammers", + "16131100": "Poison Drang Hammers", + "16131200": "Blood Drang Hammers", + "16131300": "Raw Drang Hammers", + "16131400": "Blessed Drang Hammers", + "16131500": "Hollow Drang Hammers", + "16140000": "Valorheart", + "16150000": "Crow Quills", + "16150100": "Heavy Crow Quills", + "16150200": "Sharp Crow Quills", + "16150300": "Refined Crow Quills", + "16150400": "Simple Crow Quills", + "16150500": "Crystal Crow Quills", + "16150600": "Fire Crow Quills", + "16150700": "Chaos Crow Quills", + "16150800": "Lightning Crow Quills", + "16150900": "Deep Crow Quills", + "16151000": "Dark Crow Quills", + "16151100": "Poison Crow Quills", + "16151200": "Blood Crow Quills", + "16151300": "Raw Crow Quills", + "16151400": "Blessed Crow Quills", + "16151500": "Hollow Crow Quills", + "16160000": "Ringed Knight Paired Greatswords", + "20000000": "Buckler", + "20000100": "Heavy Buckler", + "20000200": "Sharp Buckler", + "20000300": "Refined Buckler", + "20000400": "Simple Buckler", + "20000500": "Crystal Buckler", + "20000600": "Fire Buckler", + "20000700": "Chaos Buckler", + "20000800": "Lightning Buckler", + "20000900": "Deep Buckler", + "20001000": "Dark Buckler", + "20001100": "Poison Buckler", + "20001200": "Blood Buckler", + "20001300": "Raw Buckler", + "20001400": "Blessed Buckler", + "20001500": "Hollow Buckler", + "20010000": "Small Leather Shield", + "20010100": "Heavy Small Leather Shield", + "20010200": "Sharp Small Leather Shield", + "20010300": "Refined Small Leather Shield", + "20010400": "Simple Small Leather Shield", + "20010500": "Crystal Small Leather Shield", + "20010600": "Fire Small Leather Shield", + "20010700": "Chaos Small Leather Shield", + "20010800": "Lightning Small Leather Shield", + "20010900": "Deep Small Leather Shield", + "20011000": "Dark Small Leather Shield", + "20011100": "Poison Small Leather Shield", + "20011200": "Blood Small Leather Shield", + "20011300": "Raw Small Leather Shield", + "20011400": "Blessed Small Leather Shield", + "20011500": "Hollow Small Leather Shield", + "20030000": "Round Shield", + "20030100": "Heavy Round Shield", + "20030200": "Sharp Round Shield", + "20030300": "Refined Round Shield", + "20030400": "Simple Round Shield", + "20030500": "Crystal Round Shield", + "20030600": "Fire Round Shield", + "20030700": "Chaos Round Shield", + "20030800": "Lightning Round Shield", + "20030900": "Deep Round Shield", + "20031000": "Dark Round Shield", + "20031100": "Poison Round Shield", + "20031200": "Blood Round Shield", + "20031300": "Raw Round Shield", + "20031400": "Blessed Round Shield", + "20031500": "Hollow Round Shield", + "20040000": "Large Leather Shield", + "20040100": "Heavy Large Leather Shield", + "20040200": "Sharp Large Leather Shield", + "20040300": "Refined Large Leather Shield", + "20040400": "Simple Large Leather Shield", + "20040500": "Crystal Large Leather Shield", + "20040600": "Fire Large Leather Shield", + "20040700": "Chaos Large Leather Shield", + "20040800": "Lightning Large Leather Shield", + "20040900": "Deep Large Leather Shield", + "20041000": "Dark Large Leather Shield", + "20041100": "Poison Large Leather Shield", + "20041200": "Blood Large Leather Shield", + "20041300": "Raw Large Leather Shield", + "20041400": "Blessed Large Leather Shield", + "20041500": "Hollow Large Leather Shield", + "20070000": "Hawkwood's Shield", + "20070100": "Hawkwood's Heavy Shield", + "20070200": "Hawkwood's Sharp Shield", + "20070300": "Hawkwood's Refined Shield", + "20070400": "Hawkwood's Simple Shield", + "20070500": "Hawkwood's Crystal Shield", + "20070600": "Hawkwood's Fire Shield", + "20070700": "Hawkwood's Chaos Shield", + "20070800": "Hawkwood's Lightning Shield", + "20070900": "Hawkwood's Deep Shield", + "20071000": "Hawkwood's Dark Shield", + "20071100": "Hawkwood's Poison Shield", + "20071200": "Hawkwood's Blood Shield", + "20071300": "Hawkwood's Raw Shield", + "20071400": "Hawkwood's Blessed Shield", + "20071500": "Hawkwood's Hollow Shield", + "20080000": "Iron Round Shield", + "20080100": "Heavy Iron Shield", + "20080200": "Sharp Iron Shield", + "20080300": "Refined Iron Shield", + "20080400": "Simple Iron Shield", + "20080500": "Crystal Iron Shield", + "20080600": "Fire Iron Shield", + "20080700": "Chaos Iron Shield", + "20080800": "Lightning Iron Shield", + "20080900": "Deep Iron Shield", + "20081000": "Dark Iron Shield", + "20081100": "Poison Iron Shield", + "20081200": "Blood Iron Shield", + "20081300": "Raw Iron Shield", + "20081400": "Blessed Iron Shield", + "20081500": "Hollow Iron Shield", + "20110000": "Wooden Shield", + "20110100": "Heavy Wooden Shield", + "20110200": "Sharp Wooden Shield", + "20110300": "Refined Wooden Shield", + "20110400": "Simple Wooden Shield", + "20110500": "Crystal Wooden Shield", + "20110600": "Fire Wooden Shield", + "20110700": "Chaos Wooden Shield", + "20110800": "Lightning Wooden Shield", + "20110900": "Deep Wooden Shield", + "20111000": "Dark Wooden Shield", + "20111100": "Poison Wooden Shield", + "20111200": "Blood Wooden Shield", + "20111300": "Raw Wooden Shield", + "20111400": "Blessed Wooden Shield", + "20111500": "Hollow Wooden Shield", + "20120000": "Kite Shield", + "20120100": "Heavy Kite Shield", + "20120200": "Sharp Kite Shield", + "20120300": "Refined Kite Shield", + "20120400": "Simple Kite Shield", + "20120500": "Crystal Kite Shield", + "20120600": "Fire Kite Shield", + "20120700": "Chaos Kite Shield", + "20120800": "Lightning Kite Shield", + "20120900": "Deep Kite Shield", + "20121000": "Dark Kite Shield", + "20121100": "Poison Kite Shield", + "20121200": "Blood Kite Shield", + "20121300": "Raw Kite Shield", + "20121400": "Blessed Kite Shield", + "20121500": "Hollow Kite Shield", + "20130000": "Ghru Rotshield", + "20130100": "Heavy Ghru Rotshield", + "20130200": "Sharp Ghru Rotshield", + "20130300": "Refined Ghru Rotshield", + "20130400": "Simple Ghru Rotshield", + "20130500": "Crystal Ghru Rotshield", + "20130600": "Fire Ghru Rotshield", + "20130700": "Chaos Ghru Rotshield", + "20130800": "Lightning Ghru Rotshield", + "20130900": "Deep Ghru Rotshield", + "20131000": "Dark Ghru Rotshield", + "20131100": "Poison Ghru Rotshield", + "20131200": "Blood Ghru Rotshield", + "20131300": "Raw Ghru Rotshield", + "20131400": "Blessed Ghru Rotshield", + "20131500": "Hollow Ghru Rotshield", + "20150000": "Havel's Greatshield", + "20160000": "Target Shield", + "20160100": "Heavy Target Shield", + "20160200": "Sharp Target Shield", + "20160300": "Refined Target Shield", + "20160400": "Simple Target Shield", + "20160500": "Crystal Target Shield", + "20160600": "Fire Target Shield", + "20160700": "Chaos Target Shield", + "20160800": "Lightning Target Shield", + "20160900": "Deep Target Shield", + "20161000": "Dark Target Shield", + "20161100": "Poison Target Shield", + "20161200": "Blood Target Shield", + "20161300": "Raw Target Shield", + "20161400": "Blessed Target Shield", + "20161500": "Hollow Target Shield", + "20170000": "Elkhorn Round Shield", + "20170100": "Heavy Elkhorn Shield", + "20170200": "Sharp Elkhorn Shield", + "20170300": "Refined Elkhorn Shield", + "20170400": "Simple Elkhorn Shield", + "20170500": "Crystal Elkhorn Shield", + "20170600": "Fire Elkhorn Shield", + "20170700": "Chaos Elkhorn Shield", + "20170800": "Lightning Elkhorn Shield", + "20170900": "Deep Elkhorn Shield", + "20171000": "Dark Elkhorn Shield", + "20171100": "Poison Elkhorn Shield", + "20171200": "Blood Elkhorn Shield", + "20171300": "Raw Elkhorn Shield", + "20171400": "Blessed Elkhorn Shield", + "20171500": "Hollow Elkhorn Shield", + "20180000": "Warrior's Round Shield", + "20180100": "Heavy Warrior's Shield", + "20180200": "Sharp Warrior's Shield", + "20180300": "Refined Warrior's Shield", + "20180400": "Simple Warrior's Shield", + "20180500": "Crystal Warrior's Shield", + "20180600": "Fire Warrior's Shield", + "20180700": "Chaos Warrior's Shield", + "20180800": "Lightning Warrior's Shield", + "20180900": "Deep Warrior's Shield", + "20181000": "Dark Warrior's Shield", + "20181100": "Poison Warrior's Shield", + "20181200": "Blood Warrior's Shield", + "20181300": "Raw Warrior's Shield", + "20181400": "Blessed Warrior's Shield", + "20181500": "Hollow Warrior's Shield", + "20190000": "Caduceus Round Shield", + "20190100": "Heavy Caduceus Shield", + "20190200": "Sharp Caduceus Shield", + "20190300": "Refined Caduceus Shield", + "20190400": "Simple Caduceus Shield", + "20190500": "Crystal Caduceus Shield", + "20190600": "Fire Caduceus Shield", + "20190700": "Chaos Caduceus Shield", + "20190800": "Lightning Caduceus Shield", + "20190900": "Deep Caduceus Shield", + "20191000": "Dark Caduceus Shield", + "20191100": "Poison Caduceus Shield", + "20191200": "Blood Caduceus Shield", + "20191300": "Raw Caduceus Shield", + "20191400": "Blessed Caduceus Shield", + "20191500": "Hollow Caduceus Shield", + "20200000": "Red and White Round Shield", + "20200100": "Heavy Red and White Shield", + "20200200": "Sharp Red and White Shield", + "20200300": "Refined Red and White Shield", + "20200400": "Simple Red and White Shield", + "20200500": "Crystal Red and White Shield", + "20200600": "Fire Red and White Shield", + "20200700": "Chaos Red and White Shield", + "20200800": "Lightning Red and White Shield", + "20200900": "Deep Red and White Shield", + "20201000": "Dark Red and White Shield", + "20201100": "Poison Red and White Shield", + "20201200": "Blood Red and White Shield", + "20201300": "Raw Red and White Shield", + "20201400": "Blessed Red and White Shield", + "20201500": "Hollow Red and White Shield", + "20210000": "Plank Shield", + "20210100": "Heavy Plank Shield", + "20210200": "Sharp Plank Shield", + "20210300": "Refined Plank Shield", + "20210400": "Simple Plank Shield", + "20210500": "Crystal Plank Shield", + "20210600": "Fire Plank Shield", + "20210700": "Chaos Plank Shield", + "20210800": "Lightning Plank Shield", + "20210900": "Deep Plank Shield", + "20211000": "Dark Plank Shield", + "20211100": "Poison Plank Shield", + "20211200": "Blood Plank Shield", + "20211300": "Raw Plank Shield", + "20211400": "Blessed Plank Shield", + "20211500": "Hollow Plank Shield", + "20220000": "Leather Shield", + "20220100": "Heavy Leather Shield", + "20220200": "Sharp Leather Shield", + "20220300": "Refined Leather Shield", + "20220400": "Simple Leather Shield", + "20220500": "Crystal Leather Shield", + "20220600": "Fire Leather Shield", + "20220700": "Chaos Leather Shield", + "20220800": "Lightning Leather Shield", + "20220900": "Deep Leather Shield", + "20221000": "Dark Leather Shield", + "20221100": "Poison Leather Shield", + "20221200": "Blood Leather Shield", + "20221300": "Raw Leather Shield", + "20221400": "Blessed Leather Shield", + "20221500": "Hollow Leather Shield", + "20230000": "Crimson Parma", + "20230100": "Heavy Crimson Parma", + "20230200": "Sharp Crimson Parma", + "20230300": "Refined Crimson Parma", + "20230400": "Simple Crimson Parma", + "20230500": "Crystal Crimson Parma", + "20230600": "Fire Crimson Parma", + "20230700": "Chaos Crimson Parma", + "20230800": "Lightning Crimson Parma", + "20230900": "Deep Crimson Parma", + "20231000": "Dark Crimson Parma", + "20231100": "Poison Crimson Parma", + "20231200": "Blood Crimson Parma", + "20231300": "Raw Crimson Parma", + "20231400": "Blessed Crimson Parma", + "20231500": "Hollow Crimson Parma", + "20240000": "Eastern Iron Shield", + "20240100": "Heavy Eastern Shield", + "20240200": "Sharp Eastern Shield", + "20240300": "Refined Eastern Shield", + "20240400": "Simple Eastern Shield", + "20240500": "Crystal Eastern Shield", + "20240600": "Fire Eastern Shield", + "20240700": "Chaos Eastern Shield", + "20240800": "Lightning Eastern Shield", + "20240900": "Deep Eastern Shield", + "20241000": "Dark Eastern Shield", + "20241100": "Poison Eastern Shield", + "20241200": "Blood Eastern Shield", + "20241300": "Raw Eastern Shield", + "20241400": "Blessed Eastern Shield", + "20241500": "Hollow Eastern Shield", + "20250000": "Llewellyn Shield", + "20250100": "Heavy Llewellyn Shield", + "20250200": "Sharp Llewellyn Shield", + "20250300": "Refined Llewellyn Shield", + "20250400": "Simple Llewellyn Shield", + "20250500": "Crystal Llewellyn Shield", + "20250600": "Fire Llewellyn Shield", + "20250700": "Chaos Llewellyn Shield", + "20250800": "Lightning Llewellyn Shield", + "20250900": "Deep Llewellyn Shield", + "20251000": "Dark Llewellyn Shield", + "20251100": "Poison Llewellyn Shield", + "20251200": "Blood Llewellyn Shield", + "20251300": "Raw Llewellyn Shield", + "20251400": "Blessed Llewellyn Shield", + "20251500": "Hollow Llewellyn Shield", + "20270000": "Golden Falcon Shield", + "20270100": "Heavy Falcon Shield", + "20270200": "Sharp Falcon Shield", + "20270300": "Refined Falcon Shield", + "20270400": "Simple Falcon Shield", + "20270500": "Crystal Falcon Shield", + "20270600": "Fire Falcon Shield", + "20270700": "Chaos Falcon Shield", + "20270800": "Lightning Falcon Shield", + "20270900": "Deep Falcon Shield", + "20271000": "Dark Falcon Shield", + "20271100": "Poison Falcon Shield", + "20271200": "Blood Falcon Shield", + "20271300": "Raw Falcon Shield", + "20271400": "Blessed Falcon Shield", + "20271500": "Hollow Falcon Shield", + "20280000": "Sacred Bloom Shield", + "20290000": "Ancient Dragon Greatshield", + "20300000": "Follower Shield", + "20300100": "Heavy Follower Shield", + "20300200": "Sharp Follower Shield", + "20300300": "Refined Follower Shield", + "20300400": "Simple Follower Shield", + "20300500": "Crystal Follower Shield", + "20300600": "Fire Follower Shield", + "20300700": "Chaos Follower Shield", + "20300800": "Lightning Follower Shield", + "20300900": "Deep Follower Shield", + "20301000": "Dark Follower Shield", + "20301100": "Poison Follower Shield", + "20301200": "Blood Follower Shield", + "20301300": "Raw Follower Shield", + "20301400": "Blessed Follower Shield", + "20301500": "Hollow Follower Shield", + "20310000": "Dragonhead Shield", + "21010000": "Lothric Knight Shield", + "21010100": "Heavy Lothric Shield", + "21010200": "Sharp Lothric Shield", + "21010300": "Refined Lothric Shield", + "21010400": "Simple Lothric Shield", + "21010500": "Crystal Lothric Shield", + "21010600": "Fire Lothric Shield", + "21010700": "Chaos Lothric Shield", + "21010800": "Lightning Lothric Shield", + "21010900": "Deep Lothric Shield", + "21011000": "Dark Lothric Shield", + "21011100": "Poison Lothric Shield", + "21011200": "Blood Lothric Shield", + "21011300": "Raw Lothric Shield", + "21011400": "Blessed Lothric Shield", + "21011500": "Hollow Lothric Shield", + "21040000": "Knight Shield", + "21040100": "Heavy Knight Shield", + "21040200": "Sharp Knight Shield", + "21040300": "Refined Knight Shield", + "21040400": "Simple Knight Shield", + "21040500": "Crystal Knight Shield", + "21040600": "Fire Knight Shield", + "21040700": "Chaos Knight Shield", + "21040800": "Lightning Knight Shield", + "21040900": "Deep Knight Shield", + "21041000": "Dark Knight Shield", + "21041100": "Poison Knight Shield", + "21041200": "Blood Knight Shield", + "21041300": "Raw Knight Shield", + "21041400": "Blessed Knight Shield", + "21041500": "Hollow Knight Shield", + "21060000": "Pontiff Knight Shield", + "21070000": "Carthus Shield", + "21070100": "Heavy Carthus Shield", + "21070200": "Sharp Carthus Shield", + "21070300": "Refined Carthus Shield", + "21070400": "Simple Carthus Shield", + "21070500": "Crystal Carthus Shield", + "21070600": "Fire Carthus Shield", + "21070700": "Chaos Carthus Shield", + "21070800": "Lightning Carthus Shield", + "21070900": "Deep Carthus Shield", + "21071000": "Dark Carthus Shield", + "21071100": "Poison Carthus Shield", + "21071200": "Blood Carthus Shield", + "21071300": "Raw Carthus Shield", + "21071400": "Blessed Carthus Shield", + "21071500": "Hollow Carthus Shield", + "21100000": "Black Knight Shield", + "21120000": "Silver Knight Shield", + "21130000": "Spiked Shield", + "21130100": "Heavy Spiked Shield", + "21130200": "Sharp Spiked Shield", + "21130300": "Refined Spiked Shield", + "21130400": "Simple Spiked Shield", + "21130500": "Crystal Spiked Shield", + "21130600": "Fire Spiked Shield", + "21130700": "Chaos Spiked Shield", + "21130800": "Lightning Spiked Shield", + "21130900": "Deep Spiked Shield", + "21131000": "Dark Spiked Shield", + "21131100": "Poison Spiked Shield", + "21131200": "Blood Spiked Shield", + "21131300": "Raw Spiked Shield", + "21131400": "Blessed Spiked Shield", + "21131500": "Hollow Spiked Shield", + "21140000": "Pierce Shield", + "21140100": "Heavy Pierce Shield", + "21140200": "Sharp Pierce Shield", + "21140300": "Refined Pierce Shield", + "21140400": "Simple Pierce Shield", + "21140500": "Crystal Pierce Shield", + "21140600": "Fire Pierce Shield", + "21140700": "Chaos Pierce Shield", + "21140800": "Lightning Pierce Shield", + "21140900": "Deep Pierce Shield", + "21141000": "Dark Pierce Shield", + "21141100": "Poison Pierce Shield", + "21141200": "Blood Pierce Shield", + "21141300": "Raw Pierce Shield", + "21141400": "Blessed Pierce Shield", + "21141500": "Hollow Pierce Shield", + "21150000": "East-West Shield", + "21150100": "Heavy East-West Shield", + "21150200": "Sharp East-West Shield", + "21150300": "Refined East-West Shield", + "21150400": "Simple East-West Shield", + "21150500": "Crystal East-West Shield", + "21150600": "Fire East-West Shield", + "21150700": "Chaos East-West Shield", + "21150800": "Lightning East-West Shield", + "21150900": "Deep East-West Shield", + "21151000": "Dark East-West Shield", + "21151100": "Poison East-West Shield", + "21151200": "Blood East-West Shield", + "21151300": "Raw East-West Shield", + "21151400": "Blessed East-West Shield", + "21151500": "Hollow East-West Shield", + "21160000": "Sunlight Shield", + "21160100": "Heavy Sunlight Shield", + "21160200": "Sharp Sunlight Shield", + "21160300": "Refined Sunlight Shield", + "21160400": "Simple Sunlight Shield", + "21160500": "Crystal Sunlight Shield", + "21160600": "Fire Sunlight Shield", + "21160700": "Chaos Sunlight Shield", + "21160800": "Lightning Sunlight Shield", + "21160900": "Deep Sunlight Shield", + "21161000": "Dark Sunlight Shield", + "21161100": "Poison Sunlight Shield", + "21161200": "Blood Sunlight Shield", + "21161300": "Raw Sunlight Shield", + "21161400": "Blessed Sunlight Shield", + "21161500": "Hollow Sunlight Shield", + "21170000": "Crest Shield", + "21180000": "Dragon Crest Shield", + "21190000": "Spider Shield", + "21190100": "Heavy Spider Shield", + "21190200": "Sharp Spider Shield", + "21190300": "Refined Spider Shield", + "21190400": "Simple Spider Shield", + "21190500": "Crystal Spider Shield", + "21190600": "Fire Spider Shield", + "21190700": "Chaos Spider Shield", + "21190800": "Lightning Spider Shield", + "21190900": "Deep Spider Shield", + "21191000": "Dark Spider Shield", + "21191100": "Poison Spider Shield", + "21191200": "Blood Spider Shield", + "21191300": "Raw Spider Shield", + "21191400": "Blessed Spider Shield", + "21191500": "Hollow Spider Shield", + "21200000": "Grass Crest Shield", + "21210000": "Sunset Shield", + "21210100": "Heavy Sunset Shield", + "21210200": "Sharp Sunset Shield", + "21210300": "Refined Sunset Shield", + "21210400": "Simple Sunset Shield", + "21210500": "Crystal Sunset Shield", + "21210600": "Fire Sunset Shield", + "21210700": "Chaos Sunset Shield", + "21210800": "Lightning Sunset Shield", + "21210900": "Deep Sunset Shield", + "21211000": "Dark Sunset Shield", + "21211100": "Poison Sunset Shield", + "21211200": "Blood Sunset Shield", + "21211300": "Raw Sunset Shield", + "21211400": "Blessed Sunset Shield", + "21211500": "Hollow Sunset Shield", + "21220000": "Golden Wing Crest Shield", + "21230000": "Blue Wooden Shield", + "21230100": "Heavy Blue Shield", + "21230200": "Sharp Blue Shield", + "21230300": "Refined Blue Shield", + "21230400": "Simple Blue Shield", + "21230500": "Crystal Blue Shield", + "21230600": "Fire Blue Shield", + "21230700": "Chaos Blue Shield", + "21230800": "Lightning Blue Shield", + "21230900": "Deep Blue Shield", + "21231000": "Dark Blue Shield", + "21231100": "Poison Blue Shield", + "21231200": "Blood Blue Shield", + "21231300": "Raw Blue Shield", + "21231400": "Blessed Blue Shield", + "21231500": "Hollow Blue Shield", + "21240000": "Silver Eagle Kite Shield", + "21240100": "Heavy Eagle Kite Shield", + "21240200": "Sharp Eagle Kite Shield", + "21240300": "Refined Eagle Kite Shield", + "21240400": "Simple Eagle Kite Shield", + "21240500": "Crystal Eagle Kite Shield", + "21240600": "Fire Eagle Kite Shield", + "21240700": "Chaos Eagle Kite Shield", + "21240800": "Lightning Eagle Kite Shield", + "21240900": "Deep Eagle Kite Shield", + "21241000": "Dark Eagle Kite Shield", + "21241100": "Poison Eagle Kite Shield", + "21241200": "Blood Eagle Kite Shield", + "21241300": "Raw Eagle Kite Shield", + "21241400": "Blessed Eagle Kite Shield", + "21241500": "Hollow Eagle Kite Shield", + "21250000": "Stone Parma", + "21250100": "Heavy Stone Parma", + "21250200": "Sharp Stone Parma", + "21250300": "Refined Stone Parma", + "21250400": "Simple Stone Parma", + "21250500": "Crystal Stone Parma", + "21250600": "Fire Stone Parma", + "21250700": "Chaos Stone Parma", + "21250800": "Lightning Stone Parma", + "21250900": "Deep Stone Parma", + "21251000": "Dark Stone Parma", + "21251100": "Poison Stone Parma", + "21251200": "Blood Stone Parma", + "21251300": "Raw Stone Parma", + "21251400": "Blessed Stone Parma", + "21251500": "Hollow Stone Parma", + "21260000": "Spirit Tree Crest Shield", + "21270000": "Porcine Shield", + "21270100": "Heavy Porcine Shield", + "21270200": "Sharp Porcine Shield", + "21270300": "Refined Porcine Shield", + "21270400": "Simple Porcine Shield", + "21270500": "Crystal Porcine Shield", + "21270600": "Fire Porcine Shield", + "21270700": "Chaos Porcine Shield", + "21270800": "Lightning Porcine Shield", + "21270900": "Deep Porcine Shield", + "21271000": "Dark Porcine Shield", + "21271100": "Poison Porcine Shield", + "21271200": "Blood Porcine Shield", + "21271300": "Raw Porcine Shield", + "21271400": "Blessed Porcine Shield", + "21271500": "Hollow Porcine Shield", + "21280000": "Shield of Want", + "21290000": "Wargod Wooden Shield", + "21290100": "Heavy Wargod Shield", + "21290200": "Sharp Wargod Shield", + "21290300": "Refined Wargod Shield", + "21290400": "Simple Wargod Shield", + "21290500": "Crystal Wargod Shield", + "21290600": "Fire Wargod Shield", + "21290700": "Chaos Wargod Shield", + "21290800": "Lightning Wargod Shield", + "21290900": "Deep Wargod Shield", + "21291000": "Dark Wargod Shield", + "21291100": "Poison Wargod Shield", + "21291200": "Blood Wargod Shield", + "21291300": "Raw Wargod Shield", + "21291400": "Blessed Wargod Shield", + "21291500": "Hollow Wargod Shield", + "21300000": "Ethereal Oak Shield", + "21310000": "Dragonhead Greatshield", + "22010000": "Lothric Knight Greatshield", + "22010100": "Heavy Lothric Greatshield", + "22010200": "Sharp Lothric Greatshield", + "22010300": "Refined Lothric Greatshield", + "22010400": "Simple Lothric Greatshield", + "22010500": "Crystal Lothric Greatshield", + "22010600": "Fire Lothric Greatshield", + "22010700": "Chaos Lothric Greatshield", + "22010800": "Lightning Lothric Greatshield", + "22010900": "Deep Lothric Greatshield", + "22011000": "Dark Lothric Greatshield", + "22011100": "Poison Lothric Greatshield", + "22011200": "Blood Lothric Greatshield", + "22011300": "Raw Lothric Greatshield", + "22011400": "Blessed Lothric Greatshield", + "22011500": "Hollow Lothric Greatshield", + "22020000": "Cathedral Knight Greatshield", + "22020100": "Heavy Cathedral Greatshield", + "22020200": "Sharp Cathedral Greatshield", + "22020300": "Refined Cathedral Greatshield", + "22020400": "Simple Cathedral Greatshield", + "22020500": "Crystal Cathedral Greatshield", + "22020600": "Fire Cathedral Greatshield", + "22020700": "Chaos Cathedral Greatshield", + "22020800": "Lightning Cathedral Greatshield", + "22020900": "Deep Cathedral Greatshield", + "22021000": "Dark Cathedral Greatshield", + "22021100": "Poison Cathedral Greatshield", + "22021200": "Blood Cathedral Greatshield", + "22021300": "Raw Cathedral Greatshield", + "22021400": "Blessed Cathedral Greatshield", + "22021500": "Hollow Cathedral Greatshield", + "22040000": "Dragonslayer Greatshield", + "22050000": "Moaning Shield", + "22070000": "Yhorm's Greatshield", + "22080000": "Black Iron Greatshield", + "22080100": "Heavy Black Iron Greatshield", + "22080200": "Sharp Black Iron Greatshield", + "22080300": "Refined Black Iron Greatshield", + "22080400": "Simple Black Iron Greatshield", + "22080500": "Crystal Black Iron Greatshield", + "22080600": "Fire Black Iron Greatshield", + "22080700": "Chaos Black Iron Greatshield", + "22080800": "Lightning Black Iron Greatshield", + "22080900": "Deep Black Iron Greatshield", + "22081000": "Dark Black Iron Greatshield", + "22081100": "Poison Black Iron Greatshield", + "22081200": "Blood Black Iron Greatshield", + "22081300": "Raw Black Iron Greatshield", + "22081400": "Blessed Black Iron Greatshield", + "22081500": "Hollow Black Iron Greatshield", + "22090000": "Wolf Knight's Greatshield", + "22100000": "Twin Dragon Greatshield", + "22100100": "Heavy Twin Dragon Greatshield", + "22100200": "Sharp Twin Dragon Greatshield", + "22100300": "Refined Twin Dragon Greatshield", + "22100400": "Simple Twin Dragon Greatshield", + "22100500": "Crystal Twin Dragon Greatshield", + "22100600": "Fire Twin Dragon Greatshield", + "22100700": "Chaos Twin Dragon Greatshield", + "22100800": "Lightning Twin Dragon Greatshield", + "22100900": "Deep Twin Dragon Greatshield", + "22101000": "Dark Twin Dragon Greatshield", + "22101100": "Poison Twin Dragon Greatshield", + "22101200": "Blood Twin Dragon Greatshield", + "22101300": "Raw Twin Dragon Greatshield", + "22101400": "Blessed Twin Dragon Greatshield", + "22101500": "Hollow Twin Dragon Greatshield", + "22110000": "Greatshield of Glory", + "22120000": "Curse Ward Greatshield", + "22130000": "Bonewheel Shield", + "22130100": "Heavy Bonewheel Shield", + "22130200": "Sharp Bonewheel Shield", + "22130300": "Refined Bonewheel Shield", + "22130400": "Simple Bonewheel Shield", + "22130500": "Crystal Bonewheel Shield", + "22130600": "Fire Bonewheel Shield", + "22130700": "Chaos Bonewheel Shield", + "22130800": "Lightning Bonewheel Shield", + "22130900": "Deep Bonewheel Shield", + "22131000": "Dark Bonewheel Shield", + "22131100": "Poison Bonewheel Shield", + "22131200": "Blood Bonewheel Shield", + "22131300": "Raw Bonewheel Shield", + "22131400": "Blessed Bonewheel Shield", + "22131500": "Hollow Bonewheel Shield", + "22140000": "Stone Greatshield", + "22140100": "Heavy Stone Greatshield", + "22140200": "Sharp Stone Greatshield", + "22140300": "Refined Stone Greatshield", + "22140400": "Simple Stone Greatshield", + "22140500": "Crystal Stone Greatshield", + "22140600": "Fire Stone Greatshield", + "22140700": "Chaos Stone Greatshield", + "22140800": "Lightning Stone Greatshield", + "22140900": "Deep Stone Greatshield", + "22141000": "Dark Stone Greatshield", + "22141100": "Poison Stone Greatshield", + "22141200": "Blood Stone Greatshield", + "22141300": "Raw Stone Greatshield", + "22141400": "Blessed Stone Greatshield", + "22141500": "Hollow Stone Greatshield", + "23000000": "Torch", + "23010000": "Follower Torch", + "63990000": "[Debug] Arrow", + "67000000": "[Debug] Bolt", + "90040000": "[Debug] Daggers", + "90050000": "[Debug] Twinswords", + "90060000": "[Debug] Shield" + }, + "FaceGenParam": { + "0": "Testdata -- testData", + "1": "Men _ Prototype 1 -- 男性_試作1", + "2": "Men _ Prototype 2 -- 男性_試作2", + "3": "Men _ Prototype 3 -- 男性_試作3", + "4": "Men _ Prototype 4 -- 男性_試作4", + "5": "Men _ Prototype 5 -- 男性_試作5", + "6": "Men _ Prototype 6 -- 男性_試作6", + "7": "Men _ Prototype 7 -- 男性_試作7", + "8": "Men _ Prototype 8 -- 男性_試作8", + "9": "Men _ Prototype 9 -- 男性_試作9", + "10": "Men _ Prototype 10 -- 男性_試作10", + "11": "Men _ Prototype 11 -- 男性_試作11", + "12": "Men _ Prototype 12 -- 男性_試作12", + "13": "Men _ Prototype 13 -- 男性_試作13", + "14": "Men _ Prototype 14 -- 男性_試作14", + "20": "Women _ Prototype 1 -- 女性_試作1", + "21": "Women _ Prototype 2 -- 女性_試作2", + "30": "4th End Edition Warrior _ Man -- 4末版 戦士_男", + "31": "4th End Edition Knight _ Man -- 4末版 騎士_男", + "32": "4-End Edition Witch _ Woman -- 4末版 魔法使い_女", + "33": "4th end version of a sorcerer _ Man -- 4末版 呪術師_男", + "34": "E3 Solar Knights _ Man -- E3 太陽騎士_男", + "100": "Default Face Test _01 -- デフォルト顔テスト_01", + "101": "Default Face Test _02 -- デフォルト顔テスト_02", + "102": "Default Face Test _03 -- デフォルト顔テスト_03", + "103": "Default Face Test _04 -- デフォルト顔テスト_04", + "104": "Default Face Test _05 -- デフォルト顔テスト_05", + "105": "Default Face Test _06 -- デフォルト顔テスト_06", + "106": "Default Face Test _07 -- デフォルト顔テスト_07", + "107": "Default Face Test _08 -- デフォルト顔テスト_08", + "108": "Default Face Test _09 -- デフォルト顔テスト_09", + "109": "Default Face Test _10 -- デフォルト顔テスト_10", + "110": "Default Face Test _11 -- デフォルト顔テスト_11", + "111": "Default Face Test _12 -- デフォルト顔テスト_12", + "112": "Default Face Test _13 -- デフォルト顔テスト_13", + "113": "Default Face Test _14 -- デフォルト顔テスト_14", + "114": "Default Face Test _15 -- デフォルト顔テスト_15", + "115": "Default Face Test _16 -- デフォルト顔テスト_16", + "116": "Default Face Test _17 -- デフォルト顔テスト_17", + "117": "Default Face Test _18 -- デフォルト顔テスト_18", + "118": "Default Face Test _19 -- デフォルト顔テスト_19", + "119": "Default Face Test _20 -- デフォルト顔テスト_20", + "120": "Default Face Test _21 -- デフォルト顔テスト_21", + "121": "Default Face Test _22 -- デフォルト顔テスト_22", + "122": "Default Face Test _23 -- デフォルト顔テスト_23", + "123": "Default Face Test _24 -- デフォルト顔テスト_24", + "124": "Default Face Test _25 -- デフォルト顔テスト_25", + "125": "Default Face Test _26 -- デフォルト顔テスト_26", + "126": "Default Face Test _27 -- デフォルト顔テスト_27", + "127": "Default Face Test _28 -- デフォルト顔テスト_28", + "128": "Default Face Test _29 -- デフォルト顔テスト_29", + "129": "Default Face Test _30 -- デフォルト顔テスト_30", + "130": "Default Face Test _31 -- デフォルト顔テスト_31", + "131": "Default Face Test _32 -- デフォルト顔テスト_32", + "132": "Default Face Test _33 -- デフォルト顔テスト_33", + "133": "Default Face Test _34 -- デフォルト顔テスト_34", + "134": "Default Face Test _35 -- デフォルト顔テスト_35", + "135": "Default Face Test _36 -- デフォルト顔テスト_36", + "136": "Default Face Test _37 -- デフォルト顔テスト_37", + "137": "Default Face Test _38 -- デフォルト顔テスト_38", + "138": "Default Face Test _39 -- デフォルト顔テスト_39", + "139": "Default Face Test _40 -- デフォルト顔テスト_40", + "140": "Default Face Test _41 -- デフォルト顔テスト_41", + "141": "Default Face Test _42 -- デフォルト顔テスト_42", + "142": "Default Face Test _43 -- デフォルト顔テスト_43", + "143": "Default Face Test _44 -- デフォルト顔テスト_44", + "144": "Default Face Test _45 -- デフォルト顔テスト_45", + "145": "Default Face Test _46 -- デフォルト顔テスト_46", + "146": "Default Face Test _47 -- デフォルト顔テスト_47", + "147": "Default Face Test _48 -- デフォルト顔テスト_48", + "148": "Default Face Test _49 -- デフォルト顔テスト_49", + "149": "Default Face Test _50 -- デフォルト顔テスト_50", + "300": "The Gray saint -- 灰色の聖女", + "1000": "A plain face -- 平民顔", + "1001": "Farmer's face of five Fingers River -- 五指河の農民顔", + "1002": "Astra Noble face -- アストラの貴族顔", + "1003": "The student face of the Dragon Academy -- 竜学院の書生顔", + "1004": "Sollond Saint Face -- ソルロンドの聖者顔", + "1005": "The cheerful face of Catalina -- カタリナの陽気顔", + "1006": "Karim's dismal face -- カリムの陰気顔", + "1007": "Xena timers -- ゼナの古顔", + "1008": "Heterophase of Onuma -- 大沼の異相", + "1009": "The foreigner face of the east -- 東の異人顔", + "2000": "A plain face -- 平民顔", + "2001": "Farmer's face of five Fingers River -- 五指河の農民顔", + "2002": "Astra Noble face -- アストラの貴族顔", + "2003": "The student face of the Dragon Academy -- 竜学院の書生顔", + "2004": "Sollond Saint Face -- ソルロンドの聖者顔", + "2005": "The cheerful face of Catalina -- カタリナの陽気顔", + "2006": "Karim's dismal face -- カリムの陰気顔", + "2007": "Xena timers -- ゼナの古顔", + "2008": "Heterophase of Onuma -- 大沼の異相", + "2009": "The foreigner face of the east -- 東の異人顔", + "6000": "Knight of the Sun -- 太陽の騎士", + "6001": "Knight of the Sun (Sun Worm ver.) -- 太陽の騎士(太陽虫Ver)", + "6002": "Knight of the Sun (dead) -- 太陽の騎士(亡者)", + "6010": "Knight of the Dark Moon -- 暗月の騎士", + "6020": "Knight OST -- 騎士オストラ", + "6021": "Knight male Tiger (hostile) -- 騎士オストラ(敵対)", + "6030": "\"Big Hat\" Logarn -- ”ビッグハット”ロガーン", + "6031": "\"Big Hat\" Logarn (dead) -- ”ビッグハット”ロガーン(亡者)", + "6040": "Logarn Disciple -- ロガーンの弟子", + "6041": "Logarn Disciple (dead) -- ロガーンの弟子(亡者)", + "6050": "A ruined princess -- 亡国の王女", + "6060": "The Gray saint -- 灰色の聖女", + "6070": "White Saint -- 白の聖女", + "6071": "White Saint (Dead) -- 白の聖女(亡者)", + "6080": "Saint Knight A -- 聖女の騎士A", + "6090": "Saint Knight B -- 聖女の騎士B", + "6091": "Saint Knight B (dead) -- 聖女の騎士B (亡者)", + "6100": "Saint Knight C -- 聖女の騎士C", + "6101": "Saint Knight C (dead) -- 聖女の騎士C (亡者)", + "6130": "The Sorcerer of the Vase -- 壺の呪術師", + "6131": "The Sorcerer of the Vase (dead) -- 壺の呪術師(亡者)", + "6170": "Wandering Chaos -- さまよう混沌", + "6180": "Healing Hands -- 癒し手", + "6220": "Blacksmith Heinrich Rickert -- 鍛冶屋リッケルト", + "6250": "A broken-hearted merchant -- 心折れた商人", + "6260": "Trickster -- トリックスター", + "6270": "Broken Heart Warrior -- 心折れた戦士", + "6271": "Heart-Broken Warrior (dead) -- 心折れた戦士(亡者)", + "6280": "Onion Knight -- たまねぎ騎士", + "6290": "Onion Knight's Daughter -- たまねぎ騎士の娘", + "6300": "Knight Lek held -- 抱かれ騎士ロートレク", + "6310": "Bandits -- 野武士", + "6320": "Graveyard Cowards Patch -- 墓地の卑怯者パッチ", + "6370": "Dragon Priest -- ドラゴンの神官", + "6390": "Black Knights -- 黒騎士タルカス", + "6400": "Belka Knight -- ベルカ騎士", + "6410": "Witch Malose -- 魔女マロース", + "6420": "Ninja -- 忍者", + "6490": "One companion of the funnel -- ロートレクのお供1", + "6500": "The companion of the Funnel 2 -- ロートレクのお供2", + "6530": "Swamp Woman (NPC Multi) -- 沼女(NPCマルチ)", + "6550": "Temple Knight (NPC Multi) -- 神殿騎士(NPCマルチ)", + "6560": "Thorn Knight (NPC Multi) -- トゲ騎士(NPCマルチ)", + "6570": "Yellow Robe (NPC Multi) -- 黄衣(NPCマルチ)", + "6580": "NPC (Havel) -- 城下塔のNPC(ハベル)", + "6600": "Ojo 1 NPC (Ricard) -- 王城1塔のNPC(リカール)", + "6610": "Crystal Knight -- 結晶騎士", + "6801": "Bandit a Gatekeeper -- 山賊A 門番", + "6802": "Bandit B Warrior -- 山賊B 戦士", + "6803": "Bandit C Archer -- 山賊C 弓使い", + "6804": "Bandit D Magic (Attack) -- 山賊D 魔法(攻撃)", + "6805": "Bandit e Magic (recovery) -- 山賊E 魔法(回復)", + "6806": "Bandit F Covert -- 山賊F 隠密", + "9999": "Phantom (no Face) -- 幻影(顔なし)" + }, + "FaceParam": { + "0": "Test -- test", + "1": "Character Makeup Test -- キャラメイクテスト", + "20": "20: NT version A (Wandering Knight) -- 20:NT版 A (放浪の騎士)", + "21": "21: NT version B (North Warrior) -- 21:NT版 B (北の戦士)", + "22": "22: NT version C (Wizard) -- 22:NT版 C (魔法使い)", + "23": "23: NT version D (Temple Knight) -- 23:NT版 D (神殿騎士)", + "1000": "Newgame presets Face _ man 0 -- NewGameプリセット顔_男0", + "1001": "Newgame preset Face _ man 1 -- NewGameプリセット顔_男1", + "1002": "Newgame presets Face _ Man 2 -- NewGameプリセット顔_男2", + "1003": "Newgame Preset Face _ Man 3 -- NewGameプリセット顔_男3", + "1004": "Newgame Preset Face _ man 4 -- NewGameプリセット顔_男4", + "1005": "Newgame Preset Face _ man 5 -- NewGameプリセット顔_男5", + "1006": "Newgame Preset Face _ man 6 -- NewGameプリセット顔_男6", + "1007": "Newgame Presets Face _ Man 7 -- NewGameプリセット顔_男7", + "1008": "Newgame presets Face _ Man 8 -- NewGameプリセット顔_男8", + "1009": "Newgame Presets Face _ Man 9 -- NewGameプリセット顔_男9", + "2000": "Newgame preset Face _ woman 0 -- NewGameプリセット顔_女0", + "2001": "Newgame preset Face _ woman 1 -- NewGameプリセット顔_女1", + "2002": "Newgame preset Face _ woman 2 -- NewGameプリセット顔_女2", + "2003": "Newgame preset Face _ woman 3 -- NewGameプリセット顔_女3", + "2004": "Newgame preset Face _ woman 4 -- NewGameプリセット顔_女4", + "2005": "Newgame preset Face _ woman 5 -- NewGameプリセット顔_女5", + "2006": "Newgame preset Face _ woman 6 -- NewGameプリセット顔_女6", + "2007": "Newgame preset Face _ woman 7 -- NewGameプリセット顔_女7", + "2008": "Newgame preset Face _ woman 8 -- NewGameプリセット顔_女8", + "2009": "Newgame preset Face _ woman 9 -- NewGameプリセット顔_女9", + "3000": "0 for base body (mixed) -- ベースボディ用0(男女共用)", + "3001": "For base body 1 (mixed) -- ベースボディ用1(男女共用)", + "3002": "For base body 2 (mixed) -- ベースボディ用2(男女共用)", + "3003": "For base body 3 (mixed) -- ベースボディ用3(男女共用)", + "3004": "For base body 4 (mixed) -- ベースボディ用4(男女共用)", + "3005": "For base body 5 (mixed) -- ベースボディ用5(男女共用)", + "3006": "For base body 6 (mixed) -- ベースボディ用6(男女共用)", + "3007": "Base Body 7 (mixed) -- ベースボディ用7(男女共用)", + "3008": "For base body 8 (mixed) -- ベースボディ用8(男女共用)", + "3009": "Base Body 9 (mixed) -- ベースボディ用9(男女共用)", + "4000": "Character make top menu male -- キャラメイクトップメニュー男性", + "5000": "Character make top menu female -- キャラメイクトップメニュー女性", + "9999": "Phantom (no Face) -- 幻影(顔なし)" + }, + "FaceRangeParam": { + "1": "Range Minimum Value -- 範囲最小値", + "2": "Range Maximum Value -- 範囲最大値" + }, + "FootSfxParam": {}, + "GameAreaParam": { + "0": "Test -- テスト", + "1": "Test One -- テスト1", + "100": "Lat _ Bastards -- 石柱_なりそこない", + "200": "Ojo 1_ Phalanx (main body) -- 王城1_ファランクス(本体)", + "201": "Ojo 2_ King's Shield -- 王城2_王の盾", + "202": "Ojo 3_ King's Sword -- 王城3_王の剣", + "203": "Ojo 4_ King -- 王城4_レンドル王", + "301": "The old Fort 1_ referee -- 古砦1_審判者", + "302": "Old Fort 2_ Storm Warrior -- 古砦2_嵐の戦士", + "303": "Old Fort 3_ Storm Beast -- 古砦3_嵐の獣", + "400": "1_-sama -- 牢城1_カミサマ", + "401": "Jail 2_ Chimera -- 牢城2_キメラ", + "402": "3_ Summon NPC -- 牢城3_召喚NPC", + "500": "Unholy 1_ Leech Daemon -- 不浄1_蛭デーモン", + "501": "Unholy 2_ flies bummed -- 不浄2_蠅たかり", + "502": "Unholy 3_ Saint Lee Bra -- 不浄3_聖女リーブラ", + "600": "1_, Large spider -- 坑道1_大蜘蛛", + "601": "Mine 2_ Flame Phantom -- 坑道2_炎怪人", + "602": "Mine 3_ Dragon Demon (mine) -- 坑道3_ドラゴンデーモン(坑道)", + "801": "Tutorial _ Deb Daemon -- チュートリアル_デブデーモン", + "1000800": "2_ the Castle -- 城下2_貪食ドラゴン", + "1010700": "1_ Castle -- 城下1_ハンマーデーモン", + "1010750": "1_-Natal Demon Castle -- 城下1_ナタデーモン", + "1010800": "Castle 1_ Gargoyle -- 城下1_ガーゴイル", + "1100160": "Painting World _ semi-dragon Priscilla -- 絵画世界_半竜プリシラ", + "1200800": "Forest Garden _ The Wolf of the Holy Sword -- 森庭_聖剣の狼", + "1200801": "Forest Garden _ Dragon -- 森庭_カゲロウ龍", + "1210401": "Past Forest _ black Dragon -- 過去森_黒竜", + "1210800": "Past Forest _ Gold Chimera -- 過去森_金キメラ", + "1210820": "Past Forest _ al-Triana -- 過去森_アルトリウス", + "1210840": "Lord of the past forest -- 過去森_深淵の主", + "1300800": "Cemetery 1_ Three Haori -- 墓地1_三人羽織", + "1310800": "Cemetery 2_ Tomb King NITs -- 墓地2_墓王ニト", + "1400800": "Shadow Town _ the Witch of the Flame Klagspider -- 影町_焔の魔女クラグスパイダー", + "1410400": "Waste City _ The Fat Demon -- 廃都_デブデーモン", + "1410600": "Waste City _ what continues to sore -- 廃都_爛れ続けるもの", + "1410700": "Disused City _ Mucademon -- 廃都_ムカデーモン", + "1410800": "The disused city _ the King -- 廃都_キングイザリス", + "1500800": "Ojo 1_ Iron Golem -- 王城1_アイアンゴーレム", + "1510650": "Ojo 2_ mother Brother -- 王城2_王母弟", + "1510801": "Ojo 2_ Huge Griffith -- 王城2_ヒュージグリフィス", + "1510811": "Ojo 2_ Lightningsmow -- 王城2_ライトニングスモウ", + "1600800": "The Abyss -- 深淵_ジャイールデーモン", + "1700800": "Crystal Tower _ Sheath -- 結晶塔_シース", + "1800800": "The Great Tomb _ the King of firewood -- 大墓_薪の王", + "1810800": "Tutorial _ Mini Deb Daemon -- チュートリアル_ミニデブデーモン", + "1810810": "Tutorial _ Deb Daemon -- チュートリアル_デブデーモン", + "2010800": "Religious District -- 宗教街_教区長", + "2910400": "Dungeon A_ Beast of Flames -- ダンジョンA_炎の獣", + "2920800": "Dungeon B_ Beast of Flames -- ダンジョンB_炎の獣", + "3000800": "Ojo 1_ Daemon -- 王城1_デーモン", + "3010800": "Ojo 2_ -- 王城2_孤王", + "3100800": "City of Colossus -- 街_巨像", + "3200800": "Bridge _ Mother Dragon -- 橋_母ドラゴン", + "3500800": "The Church of the Cardinals -- 聖堂_枢機卿団", + "3700800": "Anole _ Salivan -- アノール_サリヴァーン", + "3700850": "Anole _ the Witch of the Moonlight -- アノール_月光の魔女", + "3800800": "Waste City _ King of the Dead -- 廃都_死霊の王", + "3900800": "Prison _ Hallec -- 牢_ハレック", + "4000800": "Stronghold _ Segunda -- 拠点_グンダ", + "9901010": "Boss Seoul Get verified -- ボスソウル入手検証" + }, + "GameProgressParam": {}, + "GemCategoryParam": { + "0": "Nothing is absorbed. -- なにもおこらない", + "1": "Attack system -- 攻撃系", + "2": "Recovery system -- 回復系", + "3": "Status system -- ステータス系" + }, + "GemDropDopingParam": { + "0": "Nothing is absorbed. -- なにもおこらない" + }, + "GemDropModifyParam": { + "0": "Nothing is absorbed. -- なにもおこらない" + }, + "GemGenParam": { + "0": "Sweet Ishikoro -- あまいいしころ", + "1": "Increased attack power and defensive power -- 攻撃力アップ & 防御力アップ", + "2": "HP Regen -- HPリジェネ", + "3": "Max HP up -- マックスHPアップ" + }, + "GemeffectParam": { + "0": "Nothing is absorbed. -- なにもおこらない", + "1": "Increased attack power -- 攻撃力アップ", + "2": "Defense up -- 防御力アップ", + "3": "HP Regen -- HPリジェネ", + "4": "Max HP up -- マックスHPアップ" + }, + "HPEstusFlaskRecoveryParam": { + "0": "Host -- ホスト", + "1": "Cooperation Pathway Clients -- 協力経路のクライアント", + "2": "Intrusion Path Client -- 侵入経路のクライアント" + }, + "HitEffectSeParam": { + "1": "Cobblestone -- 石畳", + "2": "Stone -- 石", + "3": "Soil -- 土", + "4": "Wood -- 木材", + "5": "Grassland -- 草地", + "6": "Gravel -- 砂利", + "7": "Gaps -- 欠番", + "8": "Trees -- 樹木", + "9": "Swamp -- 沼", + "10": "Nest -- 巣", + "11": "Iron -- 鉄", + "12": "Flesh -- 血肉", + "13": "Sand -- 砂", + "14": "Bone -- 骨", + "15": "Ash -- 灰", + "16": "Roof Tiles -- 屋根瓦", + "17": "Cloth -- 布", + "18": "Fallen leaves -- 落ち葉", + "19": "Bell -- 鐘", + "20": "Water (Puddle) -- 水(水溜り程度)", + "21": "Water (ankle level) -- 水(足首程度)", + "22": "Water (knee) -- 水(膝下)", + "23": "Poison Swamp (shallow) -- 毒沼(浅い)", + "24": "Poison Swamp (deep) -- 毒沼(深い)", + "25": "Poison Swamp (knee) -- 毒沼(膝下)", + "26": "Poison Swamp (about puddle) -- 毒沼(水溜まり程度)", + "27": "Water (waist or more) -- 水(腰以上)", + "28": "Carpet -- 絨毯", + "29": "Without -- なし", + "30": "Caries -- 蝕", + "31": "God Grave Net -- 神墓ネット", + "50": "Weapon Iron -- 武器鉄", + "51": "Wax -- 蝋", + "52": "Weapon tree -- 武器木", + "53": "Weapon meat -- 武器肉", + "54": "Shield Iron -- 盾鉄", + "55": "Shield Tree -- 盾木", + "56": "Iron -- 鉄", + "58": "Armor Leather -- 鎧革", + "59": "Meat (Live) -- 肉(生者)", + "60": "Meat (raw) _ Weakness -- 肉(生者)_弱点", + "62": "Heavy Iron -- 重鉄", + "63": "Cloth -- 布", + "64": "Humanity -- 人間性", + "65": "Hair -- 毛", + "66": "Soft Stone -- 石(軟)", + "67": "Feathers -- 羽", + "68": "Carrion -- 腐肉", + "69": "Ash -- 灰", + "70": "Lava -- 溶岩", + "71": "Evil -- 死霊", + "72": "Crystal -- 結晶", + "74": "Bone -- 骨", + "75": "Flame -- 炎", + "76": "Rock -- 岩", + "77": "Shield Stone -- 盾石", + "78": "Tree -- 木", + "79": "Heavy Iron Shield -- 盾重鉄", + "80": "Ghost Enemy Black -- ゴースト敵ブラック", + "84": "Drool -- よだれ", + "85": "Ghost Enemy Black (for guard) -- ゴースト敵ブラック(ガード時用)", + "89": "Without -- なし", + "90": "Penetration -- 眼光", + "91": "Caries -- 蝕", + "92": "Maggots -- うじ", + "93": "Charcoal -- 炭", + "94": "Bugs -- 虫", + "95": "Fluid -- 体液", + "98": "Caries weakness -- 蝕_弱点" + }, + "HitEffectSfxConceptParam": { + "1": "Cobblestone -- 石畳", + "2": "Stone -- 石", + "3": "Soil -- 土", + "4": "Wood -- 木材", + "5": "Grassland -- 草地", + "6": "Gravel -- 砂利", + "7": "Gaps -- 欠番", + "8": "Trees -- 樹木", + "9": "Swamp -- 沼", + "10": "Nest -- 巣", + "11": "Iron -- 鉄", + "12": "Flesh -- 血肉", + "13": "Sand -- 砂", + "14": "Bone -- 骨", + "15": "Ash -- 灰", + "16": "Roof Tiles -- 屋根瓦", + "17": "Cloth -- 布", + "18": "Fallen leaves -- 落ち葉", + "19": "Bell -- 鐘", + "20": "Water (Puddle) -- 水(水溜り程度)", + "21": "Water (ankle level) -- 水(足首程度)", + "22": "Water (knee) -- 水(膝下)", + "23": "Poison Swamp (shallow) -- 毒沼(浅い)", + "24": "Poison Swamp (deep) -- 毒沼(深い)", + "25": "Poison Swamp (knee) -- 毒沼(膝下)", + "26": "Poison Swamp (about puddle) -- 毒沼(水溜まり程度)", + "27": "Water (waist or more) -- 水(腰以上)", + "28": "Carpet -- 絨毯", + "29": "Without -- なし", + "30": "Caries -- 蝕", + "31": "God Grave Net -- 神墓ネット", + "100": "Weapon Iron -- 武器鉄", + "101": "Wax -- 蝋", + "102": "Weapon tree -- 武器木", + "103": "Weapon meat -- 武器肉", + "104": "Shield Iron -- 盾鉄", + "105": "Shield Tree -- 盾木", + "106": "Iron -- 鉄", + "107": "Bugs -- 虫", + "108": "Armor Leather -- 鎧革", + "109": "Meat -- 肉", + "110": "Flesh _ Weakness -- 肉_弱点", + "111": "Dragon Meat -- 竜肉", + "112": "Heavy Iron -- 重鉄", + "113": "Cloth -- 布", + "114": "Humanity -- 人間性", + "115": "Hair -- 毛", + "116": "Soft Stone -- 石(軟)", + "117": "Feathers -- 羽", + "118": "Carrion -- 腐肉", + "119": "Ash -- 灰", + "120": "Lava -- 溶岩", + "121": "Evil -- 死霊", + "122": "Crystal -- 結晶", + "123": "Liquid -- 液体", + "124": "Bone -- 骨", + "125": "Flame -- 炎", + "126": "Rock -- 岩", + "127": "Shield Stone -- 盾石", + "128": "Tree -- 木", + "129": "Heavy Iron Shield -- 盾重鉄", + "130": "Ghost White -- ゴーストホワイト", + "131": "Ghost Black -- ゴーストブラック", + "132": "Ghost Enemy White -- ゴースト敵ホワイト", + "133": "Ghost Enemy Black -- ゴースト敵ブラック", + "134": "Drool -- よだれ", + "135": "Ghost White (for guard) -- ゴーストホワイト(ガード時用)", + "136": "Ghost Black (for guard) -- ゴーストブラック(ガード時用)", + "137": "Ghost Enemy White (for guard) -- ゴースト敵ホワイト(ガード時用)", + "138": "Ghost Enemy Black (for guard) -- ゴースト敵ブラック(ガード時用)", + "139": "Without -- なし", + "140": "Penetration -- 眼光", + "141": "Caries -- 蝕", + "142": "Maggots -- 蛆", + "143": "Charcoal -- 炭", + "144": "Gaps -- 欠番", + "145": "Fluid -- 体液", + "146": "Meat (Live) -- 肉(生者)", + "147": "Meat (raw) _ Weakness -- 肉(生者)_弱点", + "148": "Caries weakness -- 蝕_弱点" + }, + "HitEffectSfxParam": { + "0": "Without -- なし", + "10": "Spark -- 火花", + "20": "General smoke -- 汎用煙", + "30": "Dust -- 砂煙", + "40": "Soil -- 土", + "50": "Gravel -- 砂利", + "60": "Ash Smoke -- 灰煙", + "70": "Dust -- 埃", + "80": "Wood -- 木片", + "90": "A piece of stone -- 石片", + "100": "Bone fragments -- 骨片", + "110": "Crystal Pieces -- 結晶片", + "120": "A piece of grass -- 草片", + "130": "Leaves -- 葉", + "140": "Deciduous -- 落葉", + "150": "God grave net Piece -- 神墓ネット片", + "160": "Splashes -- 水飛沫", + "170": "Mud Splash -- 泥飛沫", + "180": "Poison Swamp Splash -- 毒沼飛沫", + "190": "Oil -- 油", + "200": "The front of the blood -- 血(生者)_正面", + "201": "On the Blood -- 血(生者)_上", + "202": "Under the blood -- 血(生者)_下", + "203": "Blood (Live) _ Left -- 血(生者)_左", + "204": "Blood (The Raw) _ Right -- 血(生者)_右", + "210": "Blood (dead) _ Front -- 血(亡者)_正面", + "211": "On Blood (Dead) _ -- 血(亡者)_上", + "212": "Blood (Dead) _ under -- 血(亡者)_下", + "213": "Blood (dead) _ Left -- 血(亡者)_左", + "214": "Blood (dead) _ Right -- 血(亡者)_右", + "220": "Blood (Dragon) _ Front -- 血(竜)_正面", + "221": "On Blood (Dragons) _ -- 血(竜)_上", + "222": "Under Blood (Dragon) -- 血(竜)_下", + "223": "Blood (Dragon) left -- 血(竜)_左", + "224": "Blood (Dragon) _ Right -- 血(竜)_右", + "230": "Caries _ Front -- 蝕_正面", + "231": "On caries _ -- 蝕_上", + "232": "Under Eclipse -- 蝕_下", + "233": "Eclipse left -- 蝕_左", + "234": "Caries right -- 蝕_右", + "240": "Fluid -- 体液", + "250": "Drool -- よだれ", + "260": "Maggots -- 蛆", + "270": "Wax -- 蝋", + "280": "Insect fluids -- 虫体液", + "290": "Humanity -- 人間性", + "300": "Hair fragments -- 毛片", + "310": "Feathers -- 羽", + "320": "Carrion pieces -- 腐肉片", + "330": "Ash Daemon -- 灰デーモン", + "340": "Lava -- 溶岩", + "350": "Spirits -- 霊", + "360": "Ghost White -- ゴーストホワイト", + "370": "Ghost Black -- ゴーストブラック", + "380": "Flame -- 炎", + "390": "Lightning -- 雷", + "400": "Seoul -- ソウル", + "410": "Poison -- 毒", + "420": "Caries map -- 蝕マップ", + "430": "Fire Powder and Flame -- 火の粉と炎", + "440": "Eclipse hits (gas) -- 蝕ヒット(気体)", + "450": "Eclipse hits (liquid) -- 蝕ヒット(液体)", + "460": "Energy (Strong) -- エネルギー(強)", + "470": "Preliminary -- 予備", + "480": "Preliminary -- 予備", + "490": "Preliminary -- 予備", + "500": "Preliminary -- 予備", + "510": "Preliminary -- 予備", + "520": "Preliminary -- 予備", + "530": "Preliminary -- 予備", + "540": "Preliminary -- 予備", + "550": "Preliminary -- 予備", + "560": "Preliminary -- 予備", + "570": "Preliminary -- 予備", + "580": "Preliminary -- 予備", + "590": "Preliminary -- 予備", + "600": "Preliminary -- 予備" + }, + "HitMtrlParam": { + "0": "Dummy -- ダミー", + "1": "Cobblestone -- 石畳", + "2": "Stone -- 石", + "3": "Soil -- 土", + "4": "Wood -- 木材", + "5": "Grassland -- 草地", + "6": "Gravel -- 砂利", + "7": "Gaps -- 欠番", + "8": "Trees -- 樹木", + "9": "Swamp -- 沼", + "10": "Nest -- 巣", + "11": "Iron -- 鉄", + "12": "Flesh -- 血肉", + "13": "Sand -- 砂", + "14": "Bone -- 骨", + "15": "Ash -- 灰", + "16": "Roof Tiles -- 屋根瓦", + "17": "Cloth -- 布", + "18": "Fallen leaves -- 落ち葉", + "19": "Bell -- 鐘", + "20": "Water (Puddle) -- 水(水溜り程度)", + "21": "Water (ankle level) -- 水(足首程度)", + "22": "Water (knee) -- 水(膝下)", + "23": "Poison Swamp (shallow) -- 毒沼(浅い)", + "24": "Poison Swamp (deep) -- 毒沼(深い)", + "25": "Poison Swamp (knee) -- 毒沼(膝下)", + "26": "Poison Swamp (about puddle) -- 毒沼(水溜まり程度)", + "27": "Water (waist or more) -- 水(腰以上)", + "28": "Carpet -- 絨毯", + "29": "Without -- なし", + "30": "Caries -- 蝕", + "31": "God Grave Net -- 神墓ネット" + }, + "ItemLotParam": { + "0": "DEBUG", + "1": "DEBUG", + "2": "DEBUG", + "10": "DEBUG", + "2000": "[Boss] Soul of Boreal Valley Vordt", + "2010": "[Boss] Soul of the Dancer", + "2020": "[Boss] Soul of Consumed Oceiros", + "2030": "[Boss] Soul of Dragonslayer Armour", + "2040": "[Boss] Cinders of a Lord", + "2041": "[Boss] Soul of the Twin Princes", + "2050": "INVALID", + "2060": "[Boss] Soul of the Rotted Greatwood", + "2061": "[Boss] Transposing Kiln", + "2070": "[Boss] Dragon Head Stone", + "2080": "[Boss] Soul of the Nameless King", + "2090": "[Boss] Soul of a Crystal Sage", + "2100": "[Boss] Cinders of a Lord", + "2101": "[Boss] Soul of the Blood of the Wolf", + "2110": "[Boss] Small Doll", + "2111": "[Boss] Soul of the Deacons of the Deep", + "2120": "[Boss] Soul of Pontiff Sulyvahn", + "2130": "[Boss] Cinders of a Lord", + "2131": "[Boss] Soul of Aldrich", + "2140": "[Boss] Soul of High Lord Wolnir", + "2150": "[Boss] Soul of the Old Demon King", + "2160": "INVALID", + "2170": "[Boss] Cinders of a Lord", + "2171": "[Boss] Soul of Yhorm the Giant", + "2180": "[Boss] Coiled Sword", + "2190": "[Boss] Soul of Champion Gundyr", + "2200": "[Boss] Soul of the Lords", + "2300": "[Boss] Soul of Sister Friede", + "2310": "[Boss] Champion's Bones", + "2311": "[Boss] Valorheart", + "2330": "[Boss] Soul of the Demon Prince", + "2340": "[Boss] Titanite Slab", + "2341": "[Boss] Filianore's Spear Ornament", + "2350": "[Boss] Soul of Darkeater Midir", + "2351": "[Boss] Spears of the Church", + "2360": "[Boss] Soul of Slave Knight Gael", + "2361": "[Boss] Blood of the Dark Soul", + "2500": "Coiled Sword", + "2520": "INVALID", + "4000": "Seed of a Giant Tree", + "4010": "Rosaria's Fingers - Emblem", + "4020": "Way of White Circlet", + "4200": "Warrior of Sunlight - Emblem", + "4207": "[Covenant] Warrior of Sunlight Rank 2 - Sunlight Straight Sword", + "4208": "[Covenant] Warrior of Sunlight Rank 1 - Sunlight Shield", + "4210": "Mound-makers - Emblem", + "4217": "[Covenant] Mound-makers Rank 2 - Warmth", + "4218": "[Covenant] Mound-makers Rank 1 - Bloodlust", + "4220": "Watchdogs of Farron - Emblem", + "4226": "[Covenant] Watchdogs of Farron Rank 2 - Wolf Knight's Greatshield", + "4227": "[Covenant] Watchdogs of Farron Rank 2 - Wolf Ring", + "4228": "[Covenant] Watchdogs of Farron Rank 1 - Old Wolf Curved Sword", + "4230": "Aldrich Faithful - Emblem", + "4237": "[Covenant] Aldrich Faithful Rank 2 - Archdeacon's Great Staff", + "4238": "[Covenant] Aldrich Faithful Rank 1 - Great Deep Soul", + "4240": "Blue Sentinels - Emblem", + "4247": "Firebomb", + "4248": "Kukri", + "4250": "Blade of the Darkmoon - Emblem", + "4257": "Firebomb", + "4258": "Firebomb", + "4260": "Rosaria's Fingers - Emblem", + "4267": "[Covenant] Rosaria's Fingers Rank 2 - Man-grub's Staff", + "4268": "[Covenant] Rosaria's Fingers Rank 1 - Obscuring Ring", + "4270": "Way of Blue - Emblem", + "4277": "Firebomb", + "4278": "Firebomb", + "4280": "EMPTY", + "4287": "Divine Spear Fragment", + "4288": "Young Grass Dew", + "4300": "[Crow] Iron Bracelets", + "4301": "[Crow] Ring of Sacrifice", + "4302": "[Crow] Porcine Shield", + "4303": "[Crow] Lucatiel's Mask", + "4304": "[Crow] Very good! Carving", + "4305": "[Crow] Thank you Carving", + "4306": "[Crow] I'm sorry Carving", + "4307": "[Crow] Sunlight Shield", + "4308": "[Crow] Hollow Gem", + "4309": "[Crow] Titanite Scale", + "4310": "[Crow] Help me! Carving", + "4311": "[Crow] Titanite Slab", + "4312": "EMPTY", + "4313": "EMPTY", + "4314": "EMPTY", + "4315": "EMPTY", + "4316": "EMPTY", + "4317": "EMPTY", + "4318": "EMPTY", + "4319": "EMPTY", + "4320": "[Crow] Hello Carving", + "4321": "[Crow] Armor of the Sun", + "4322": "[Crow] Large Titanite Shard", + "4323": "[Crow] Titanite Chunk", + "4324": "[Crow] Iron Helm", + "4325": "[Crow] Twinkling Titanite", + "4326": "[Crow] Iron Leggings", + "4327": "[Crow] Lightning Gem", + "4328": "[Crow] Twinkling Titanite", + "4329": "[Crow] Blessed Gem", + "4330": "[Crow] Titanite Scale", + "4331": "EMPTY", + "4332": "EMPTY", + "4333": "EMPTY", + "4334": "EMPTY", + "4335": "EMPTY", + "4336": "EMPTY", + "4337": "EMPTY", + "4338": "EMPTY", + "4339": "EMPTY", + "4500": "Pale Tongue", + "4510": "Proof of a Concord Kept", + "4530": "Vertebra Shackle", + "4550": "Ember", + "4600": "Storm Ruler", + "4700": "Titanite Slab", + "4810": "INVALID", + "4811": "INVALID", + "4812": "INVALID", + "4813": "INVALID", + "4814": "INVALID", + "5000": "Titanite Shard, INVALID, Titanite Scale, Twinkling Titanite, INVALID, INVALID, Rubbish, Pendant", + "5010": "INVALID", + "5020": "Vertebra Shackle", + "5030": "Sunlight Medal", + "5040": "Sharp Gem", + "5200": "INVALID", + "5210": "INVALID", + "5220": "INVALID", + "5230": "INVALID", + "5240": "INVALID", + "5250": "INVALID", + "5260": "INVALID", + "5270": "INVALID", + "5280": "White Sign Soapstone", + "5500": "INVALID", + "5510": "Ember", + "5520": "Ember", + "5530": "Pale Tongue", + "5540": "Forked Pale Tongue", + "5550": "Proof of a Concord Kept", + "5560": "Vertebra Shackle", + "5570": "Proof of a Concord Well Kept", + "5580": "Wolf's Blood Swordgrass", + "5590": "EMPTY", + "5600": "Human Dregs", + "5610": "EMPTY", + "5620": "Filianore's Spear Ornament", + "5630": "Filianore's Spear Ornament", + "5640": "Filianore's Spear Ornament", + "5650": "Filianore's Spear Ornament", + "5660": "Filianore's Spear Ornament", + "5670": "Filianore's Spear Ornament", + "6000": "Divine Blessing, Large Soul of an Unknown Traveler, Soul of a Weary Warrior", + "6010": "Divine Blessing, Rusted Coin, Dung Pie", + "6020": "Divine Blessing, Rusted Coin, Soul of a Deserted Corpse", + "6030": "Divine Blessing, Rusted Coin, Soul of a Weary Warrior", + "6040": "Hidden Blessing, Pale Pine Resin", + "6050": "Divine Blessing, Rusted Coin", + "6060": "Divine Blessing, Rusted Coin", + "6070": "Divine Blessing, INVALID, Rusted Coin", + "6080": "Twinkling Titanite", + "6090": "Ember, Young White Branch", + "6100": "Titanite Scale, Hidden Blessing, INVALID", + "6110": "Titanite Slab", + "6120": "Ember", + "6130": "Ember", + "6140": "Ember", + "6150": "Ember", + "6160": "Ember", + "6170": "Ember", + "6180": "Ember", + "6190": "Ember", + "9000": "Ember", + "9010": "Ember", + "9020": "INVALID", + "9030": "Charcoal Pine Resin", + "50300": "[Ludleth of Courland] Skull Ring", + "50400": "[Yuria of Londor] Darkdrift", + "50401": "[Yuria of Londor] Yuria's Ashes", + "50600": "[Company Captain Yorshka] Blade of the Darkmoon", + "50610": "[Company Captain Yorshka] Yorshka's Chime", + "50700": "[Hawkwood the Deserter] Heavy Gem", + "50800": "[Sirris of the Sunless Realms] Sunless Talisman", + "50900": "[Ringfinger Leonhard] Cracked Red Eye Orb", + "50901": "[Ringfinger Leonhard] Silver Mask", + "50902": "[Ringfinger Leonhard] Lift Chamber Key", + "51100": "[Shrine Handmaid] Priestess Ring", + "51200": "[Greirat of the Undead Settlement] Blue Tearstone Ring", + "51201": "[Greirat of the Undead Settlement] Greirat's Ashes", + "51300": "[Orbeck of Vinheim] Orbeck's Ashes", + "51400": "[Cornyx of the Great Swamp] Pyromancy Flame", + "51401": "[Cornyx of the Great Swamp] Old Sage's Blindfold", + "51402": "[Cornyx of the Great Swamp] Cornyx's Garb", + "51403": "[Cornyx of the Great Swamp] Cornyx's Wrap", + "51404": "[Cornyx of the Great Swamp] Cornyx's Skirt", + "51405": "[Cornyx of the Great Swamp] Cornyx's Ashes", + "51500": "[Karla] Karla's Pointed Hat", + "51501": "[Karla] Karla's Coat", + "51502": "[Karla] Karla's Gloves", + "51503": "[Karla] Karla's Trousers", + "51504": "[Karla] Karla's Ashes", + "51600": "[Irina of Carim] Tower Key", + "51601": "[Irina of Carim] Irina's Ashes", + "51700": "[Eygon of Carim] Morne's Great Hammer", + "51701": "[Eygon of Carim] Moaning Shield", + "51900": "[Anri of Astora #1] Anri's Straight Sword", + "51910": "[Anri of Astora #2] Anri's Straight Sword", + "51911": "[Anri of Astora #2] Ring of the Evil Eye", + "52000": "[Unbreakable Patches #1] Winged Spear", + "52001": "[Unbreakable Patches #1] Horsehoof Ring", + "52002": "[Unbreakable Patches #1] Patches' Ashes", + "52010": "[Unbreakable Patches #2] Horsehoof Ring", + "52011": "[Unbreakable Patches #2] Patches' Ashes", + "52020": "[Unbreakable Patches #3] Pierce Shield", + "52021": "[Unbreakable Patches #3] Catarina Helm", + "52022": "[Unbreakable Patches #3] Catarina Armor", + "52023": "[Unbreakable Patches #3] Catarina Gauntlets", + "52024": "[Unbreakable Patches #3] Catarina Leggings", + "52100": "[Siegward of Catarina #1] Catarina Helm", + "52101": "[Siegward of Catarina #1] Catarina Armor", + "52102": "[Siegward of Catarina #1] Catarina Gauntlets", + "52103": "[Siegward of Catarina #1] Catarina Leggings", + "52104": "[Siegward of Catarina #1] Storm Ruler", + "52105": "[Siegward of Catarina #1] Pierce Shield", + "52110": "[Siegward of Catarina #2] Catarina Helm", + "52111": "[Siegward of Catarina #2] Catarina Armor", + "52112": "[Siegward of Catarina #2] Catarina Gauntlets", + "52113": "[Siegward of Catarina #2] Catarina Leggings", + "52114": "[Siegward of Catarina #2] Storm Ruler", + "52115": "[Siegward of Catarina #2] Pierce Shield", + "52116": "[Siegward of Catarina #3] Titanite Slab", + "52300": "[High Priestess Emma] Small Lothric Banner", + "52301": "[High Priestess Emma] Way of Blue", + "52302": "[High Priestess Emma] Basin of Vows", + "52500": "[Giant] Hawk Ring", + "52600": "[Horace the Hushed] Blue Sentinels", + "52601": "[Horace the Hushed] Llewellyn Shield", + "53000": "[Londor Pilgrim] Chameleon", + "53010": "[Londor Pilgrim] Sword of Avowal", + "53011": "[Londor Pilgrim] Chameleon", + "53100": "[Drowsy Forlorn] Homeward Bone", + "55200": "[Sir Vilhelm] Contraption Key", + "55201": "[Sir Vilhelm] Onyx Blade", + "55400": "[Forlorn Corvian Settler] Titanite Slab", + "55500": "[Sister Friede] Chillbite Ring", + "56200": "[Amnesiac Lapp #1] Champion's Bones", + "56210": "[Amnesiac Lapp #2] Siegbräu", + "56211": "[Amnesiac Lapp #2] Champion's Bones", + "56220": "[Amnesiac Lapp #3] Siegbräu", + "56221": "[Amnesiac Lapp #3] Champion's Bones", + "56230": "[Amnesiac Lapp #4] Siegbräu", + "56231": "[Amnesiac Lapp #4] Champion's Bones", + "56240": "[Amnesiac Lapp #5] Siegbräu", + "56241": "[Amnesiac Lapp #5] Champion's Bones", + "56250": "[Amnesiac Lapp #6] Titanite Slab", + "56251": "[Amnesiac Lapp #6] Siegbräu", + "56252": "[Amnesiac Lapp #6] Champion's Bones", + "56300": "[Shira, Knight of Filianore #1] Sacred Chime of Filianore", + "56301": "[Shira, Knight of Filianore #1] Titanite Slab", + "56302": "[Shira, Knight of Filianore #1] Crucifix of the Mad King", + "56310": "[Shira, Knight of Filianore #2] Sacred Chime of Filianore", + "56311": "[Shira, Knight of Filianore #2] Titanite Slab", + "56312": "[Shira, Knight of Filianore #2] Crucifix of the Mad King", + "56600": "[Stone-humped Hag] Old Woman's Ashes", + "57000": "[Black Hand Gotthard] Grand Archives Key", + "57001": "[Black Hand Gotthard] Gotthard Twinswords", + "57010": "[Black Hand Kamui] Onikiri and Ubadachi", + "57100": "[Havel the Rock] Dragon Tooth", + "57101": "[Havel the Rock] Havel's Greatshield", + "57200": "[Sword Master] Uchigatana", + "57201": "[Sword Master] Master's Attire", + "57202": "[Sword Master] Master's Gloves", + "57300": "[Brigand] Spider Shield", + "57400": "[Drakeblood Knight] Drakeblood Greatsword", + "57500": "[Rapier Champion] Ricard's Rapier", + "57600": "[Exile Watchdog] Exile Greatsword", + "57700": "[Exile Watchdog] Great Club", + "57800": "[Yellowfinger Heysel] Heysel Pick", + "57801": "[Yellowfinger Heysel] Xanthous Crown", + "57900": "[Londor Pale Shade] Manikin Claws", + "58000": "[Lion Knight Albert] Golden Wing Crest Shield", + "58100": "[Daughter of Crystal Kriemhild] Sage's Crystal Staff", + "58200": "[Court Sorcerer] Logan's Scroll", + "58300": "[Drang Knight] Drang Twinspears", + "58400": "[Knight Slayer Tsorig #1] Knight Slayer's Ring", + "58410": "[Knight Slayer Tsorig #2] Knight Slayer's Ring", + "58411": "[Knight Slayer Tsorig #2] Fume Ultra Greatsword", + "58412": "[Knight Slayer Tsorig #2] Black Iron Greatshield", + "58500": "[Creighton the Wanderer] Dragonslayer's Axe", + "58600": "[Alva, Seeker of the Spurned] Murakumo", + "58700": "[Longfinger Kirk] Barbed Straight Sword", + "58701": "[Longfinger Kirk] Spiked Shield", + "58800": "[Isabella the Mad] Butcher Knife", + "59200": "[Livid Pyromancer Dunnel] Floating Chaos", + "59300": "[Shira, Knight of Filianore] Crucifix of the Mad King", + "59400": "[Unk] White Birch Bow", + "59500": "[Desert Pyromancer Zoey] Flame Fan", + "59600": "[Silver Knight Ledo] Ledo's Great Hammer", + "59700": "[Alva, Seeker of the Spurned] Wolf Ring+3", + "59800": "[Moaning Knight] Blindfold Mask", + "60200": "[Untended Graves] Eyes of a Fire Keeper", + "60300": "[Smouldering Lake] Anri's Straight Sword", + "60310": "[Ludleth of Courland] Twin Princes' Greatsword", + "60400": "[Yuria of Londor] Morion Blade", + "60410": "[Yuria of Londor] Darkdrift - Lord of Hollow reward", + "60411": "[Yuria of Londor] Billed Mask - Lord of Hollow reward", + "60412": "[Yuria of Londor] Black Dress - Lord of Hollow reward", + "60413": "[Yuria of Londor] Black Gauntlets - Lord of Hollow reward", + "60414": "[Yuria of Londor] Black Leggings - Lord of Hollow reward", + "60600": "[Covenant] Blade of the Darkmoon", + "60610": "[Covenant] Darkmoon Ring", + "60620": "[Covenant] Darkmoon Blade", + "60630": "[Covenant] Darkmoon Ring", + "60631": "[Covenant] Darkmoon Blade", + "60640": "Kukri", + "60700": "Heavy Gem", + "60703": "Heavy Gem", + "60705": "INVALID", + "60710": "[Archdragon Peak] Twinkling Dragon Torso Stone - Pray at Altar", + "60711": "[Hawkwood] Twinkling Dragon Head Stone", + "60720": "[Hawkwood] Farron Ring", + "60730": "[Hawkwood] Hawkwood's Shield", + "60800": "[Sirris of the Sunless Realms] Sunless Talisman", + "60804": "[Sirris of the Sunless Realms] Sunless Talisman", + "60805": "[Sirris of the Sunless Realms] Blessed Mail Breaker", + "60806": "[Sirris of the Sunless Realms] Silvercat Ring", + "60810": "[Sirris of the Sunless Realms] Sunset Shield", + "60830": "[Sirris of the Sunless Realms] Sunset Helm", + "60831": "[Sirris of the Sunless Realms] Sunset Armor", + "60832": "[Sirris of the Sunless Realms] Sunset Gauntlets", + "60833": "[Sirris of the Sunless Realms] Sunset Leggings", + "60900": "[Ringfinger Leonhard] Cracked Red Eye Orb", + "60910": "[Ringfinger Leonhard] Lift Chamber Key", + "60920": "[Ringfinger Leonhard] Black Eye Orb", + "60930": "[Ringfinger Leonhard] Soul of Rosaria", + "60931": "[Ringfinger Leonhard] Crescent Moon Sword", + "60932": "[Ringfinger Leonhard] Silver Mask", + "60940": "[Ringfinger Leonhard] Red Eye Orb", + "61000": "[Andre] Hawkwood's Swordgrass", + "61200": "[Greirat of the Undead Settlement] Blue Tearstone Ring", + "61300": "[Orbeck of Vinheim] Young Dragon Ring", + "61310": "[Orbeck of Vinheim] Slumbering Dragoncrest Ring", + "61400": "[Cornyx of the Great Swamp] Pyromancy Flame", + "61600": "[Undead Settlement] Saint's Talisman", + "61610": "[Cathedral of the Deep] Deep Braille Divine Tome - Mimic drop", + "61611": "[Yuria of Londor] Londor Braille Divine Tome", + "61900": "[Anri of Astora] Ring of the Evil Eye", + "61930": "[Yoel of Londor] Dark Sigil", + "62000": "Rusted Coin", + "62010": "Rusted Gold Coin", + "62100": "[Siegward of Catarina] Siegbräu", + "62103": "[Siegward of Catarina] Siegbräu", + "62105": "[Siegward of Catarina] Siegbräu", + "62110": "[Siegward of Catarina] Kukri", + "62120": "[Siegward of Catarina] Emit Force", + "62130": "[Siegward of Catarina] Titanite Slab", + "62140": "[Siegward of Catarina] Storm Ruler", + "62141": "[Siegward of Catarina] Titanite Slab", + "62300": "[High Priestess Emma] Small Lothric Banner", + "62310": "[High Priestess Emma] Way of Blue", + "62320": "[High Priestess Emma] Basin of Vows", + "62500": "[Giant] Young White Branch", + "62510": "[Giant] Hawk Ring", + "62600": "[Horace the Hushed] Blue Sentinels", + "62700": "EMPTY", + "63010": "[Londor Pilgrim] Sword of Avowal", + "63100": "[Holy Knight Hodrick] Mound-makers", + "63110": "[Holy Knight Hodrick] Homeward Bone", + "65400": "[Forlorn Corvian Settler] Titanite Slab", + "65500": "[Sister Friede] Chillbite Ring", + "66200": "[Amnesiac Lapp] Siegbräu", + "66210": "[Amnesiac Lapp] Titanite Slab", + "66220": "[Amnesiac Lapp] Siegbräu", + "66230": "[Amnesiac Lapp] Champion's Bones", + "66231": "[Amnesiac Lapp] Lapp's Helm", + "66232": "[Amnesiac Lapp] Lapp's Armor", + "66233": "[Amnesiac Lapp] Lapp's Gauntlets", + "66234": "[Amnesiac Lapp] Lapp's Leggings", + "66300": "[Shira, Knight of Filianore] Sacred Chime of Filianore", + "66310": "[Shira, Knight of Filianore] Titanite Slab", + "66311": "[Shira, Knight of Filianore] Sacred Chime of Filianore", + "3000000": "[High Wall of Lothric] Estus Shard", + "3000010": "[High Wall of Lothric] Green Blossom", + "3000020": "[High Wall of Lothric] Gold Pine Resin", + "3000030": "[High Wall of Lothric] Large Soul of a Deserted Corpse", + "3000040": "[High Wall of Lothric] Soul of a Deserted Corpse", + "3000060": "[High Wall of Lothric] Longbow", + "3000061": "[High Wall of Lothric] Standard Arrow", + "3000070": "[High Wall of Lothric] Firebomb", + "3000090": "[High Wall of Lothric] Throwing Knife", + "3000110": "[High Wall of Lothric] Soul of a Deserted Corpse", + "3000120": "[High Wall of Lothric] Club", + "3000130": "[High Wall of Lothric] Claymore", + "3000140": "[High Wall of Lothric] Ember", + "3000150": "[High Wall of Lothric] Firebomb", + "3000160": "[High Wall of Lothric] Titanite Shard", + "3000170": "[High Wall of Lothric] Undead Hunter Charm", + "3000180": "[High Wall of Lothric] Firebomb", + "3000210": "[High Wall of Lothric] Cell Key", + "3000230": "[High Wall of Lothric] Ember", + "3000240": "[High Wall of Lothric] Soul of a Deserted Corpse", + "3000250": "[High Wall of Lothric] Lucerne", + "3000270": "[High Wall of Lothric] Mail Breaker", + "3000280": "[High Wall of Lothric] Titanite Shard", + "3000290": "[High Wall of Lothric] Rapier", + "3000300": "[High Wall of Lothric] Titanite Shard", + "3000310": "[High Wall of Lothric] Large Soul of a Deserted Corpse", + "3000320": "[High Wall of Lothric] Black Firebomb", + "3000340": "[High Wall of Lothric] Soul of a Deserted Corpse", + "3000360": "[High Wall of Lothric] Ember", + "3000370": "[High Wall of Lothric] Large Soul of a Deserted Corpse", + "3000380": "[High Wall of Lothric] Binoculars", + "3000390": "[High Wall of Lothric] Ring of Sacrifice", + "3000400": "[High Wall of Lothric] Throwing Knife", + "3000410": "[High Wall of Lothric] Soul of a Deserted Corpse", + "3000420": "[High Wall of Lothric] Green Blossom", + "3000430": "[Consumed King's Garden] Shadow Mask", + "3000431": "[Consumed King's Garden] Shadow Garb", + "3000432": "[Consumed King's Garden] Shadow Gauntlets", + "3000433": "[Consumed King's Garden] Shadow Leggings", + "3000440": "[High Wall of Lothric] Broadsword", + "3000450": "[High Wall of Lothric] Soul of a Deserted Corpse", + "3000470": "[High Wall of Lothric] Black Firebomb", + "3000480": "[Consumed King's Garden] Claw", + "3000490": "[Consumed King's Garden] Large Titanite Shard", + "3000500": "[Consumed King's Garden] Dragonscale Ring", + "3000510": "[Consumed King's Garden] Human Pine Resin", + "3000520": "[Consumed King's Garden] Titanite Chunk", + "3000530": "[Consumed King's Garden] Titanite Chunk", + "3000540": "[Consumed King's Garden] Soul of a Weary Warrior", + "3000550": "[Consumed King's Garden] Dark Gem", + "3000570": "[Consumed King's Garden] Refined Gem", + "3000580": "[Consumed King's Garden] Firebomb", + "3000610": "[Consumed King's Garden] Soul of a Deserted Corpse", + "3000620": "[Consumed King's Garden] Human Pine Resin", + "3000630": "[Consumed King's Garden] Titanite Chunk", + "3000640": "[Consumed King's Garden] Ring of Sacrifice", + "3000650": "[High Wall of Lothric] Estus Shard", + "3000700": "[High Wall of Lothric] Fleshbite Ring+1", + "3000710": "[High Wall of Lothric] Wood Grain Ring+1", + "3000720": "[High Wall of Lothric] Ring of the Evil Eye+2", + "3000730": "[Consumed King's Garden] Sage Ring+2", + "3000800": "[Consumed King's Garden] Titanite Scale", + "3000820": "[High Wall of Lothric] Silver Eagle Kite Shield", + "3000830": "[High Wall of Lothric] Astora Straight Sword", + "3000840": "[Consumed King's Garden] Titanite Scale", + "3000950": "[Consumed King's Garden] Drakeblood Helm", + "3000951": "[Consumed King's Garden] Drakeblood Armor", + "3000952": "[Consumed King's Garden] Drakeblood Gauntlets", + "3000953": "[Consumed King's Garden] Drakeblood Leggings", + "3010000": "[Lothric Castle] Sniper Crossbow", + "3010001": "[Lothric Castle] Sniper Bolt", + "3010010": "[Lothric Castle] Titanite Scale", + "3010020": "[Lothric Castle] Titanite Chunk", + "3010030": "[Lothric Castle] Greatlance", + "3010040": "[Lothric Castle] Titanite Chunk", + "3010050": "[Lothric Castle] Titanite Chunk", + "3010060": "[Lothric Castle] Sacred Bloom Shield", + "3010070": "[Lothric Castle] Titanite Chunk", + "3010080": "[Lothric Castle] Refined Gem", + "3010090": "[Lothric Castle] Soul of a Crestfallen Knight", + "3010100": "[Lothric Castle] Undead Bone Shard", + "3010110": "[Lothric Castle] Lightning Urn", + "3010120": "[Lothric Castle] Titanite Chunk", + "3010130": "[Lothric Castle] Titanite Chunk", + "3010140": "[Lothric Castle] Titanite Chunk", + "3010150": "[Grand Archives] Caitha's Chime", + "3010160": "[Lothric Castle] Lightning Urn", + "3010170": "[Lothric Castle] Ember", + "3010180": "[Lothric Castle] Raw Gem", + "3010190": "[Lothric Castle] Black Firebomb", + "3010200": "[Lothric Castle] Pale Pine Resin", + "3010210": "[Lothric Castle] Large Soul of a Weary Warrior", + "3010220": "[Lothric Castle] Sunlight Medal", + "3010230": "[Lothric Castle] Soul of a Crestfallen Knight", + "3010240": "[Lothric Castle] Titanite Chunk", + "3010250": "[Lothric Castle] Titanite Scale", + "3010260": "[Lothric Castle] Large Soul of a Nameless Soldier", + "3010270": "[Lothric Castle] Knight's Ring", + "3010280": "[Lothric Castle] Ember", + "3010290": "[Lothric Castle] Large Soul of a Weary Warrior", + "3010300": "[Lothric Castle] Ember", + "3010310": "[Lothric Castle] Twinkling Titanite", + "3010320": "[Lothric Castle] Large Soul of a Nameless Soldier", + "3010330": "[Lothric Castle] Ember", + "3010340": "[Lothric Castle] Winged Knight Helm", + "3010341": "[Lothric Castle] Winged Knight Armor", + "3010342": "[Lothric Castle] Winged Knight Gauntlets", + "3010343": "[Lothric Castle] Winged Knight Leggings", + "3010350": "[Lothric Castle] Rusted Coin", + "3010360": "[Lothric Castle] Titanite Slab", + "3010370": "[Lothric Castle] Braille Divine Tome of Lothric", + "3010380": "[Lothric Castle] Red Tearstone Ring", + "3010400": "[Lothric Castle] Twinkling Titanite", + "3010420": "[Lothric Castle] Large Soul of a Nameless Soldier", + "3010500": "[Lothric Castle] Titanite Scale", + "3010520": "[Lothric Castle] Titanite Scale", + "3010530": "[Lothric Castle] Hood of Prayer", + "3010531": "[Lothric Castle] Robe of Prayer", + "3010532": "[Lothric Castle] Skirt of Prayer", + "3010600": "[Lothric Castle] Spirit Tree Crest Shield", + "3010610": "[Lothric Castle] Titanite Scale", + "3010620": "[Lothric Castle] Twinkling Titanite", + "3010640": "[Lothric Castle] Twinkling Titanite", + "3010700": "[Lothric Castle] Life Ring+2", + "3010710": "[Lothric Castle] Dark Stoneplate Ring+1", + "3010720": "[Lothric Castle] Thunder Stoneplate Ring+2", + "3100000": "[Undead Settlement] Flynn's Ring", + "3100010": "[Undead Settlement] Undead Bone Shard", + "3100020": "[Undead Settlement] Alluring Skull", + "3100030": "[Undead Settlement] Mortician's Ashes", + "3100040": "[Undead Settlement] Homeward Bone", + "3100050": "[Undead Settlement] Caduceus Round Shield", + "3100060": "[Undead Settlement] Ember", + "3100070": "[Undead Settlement] Soul of an Unknown Traveler", + "3100080": "[Undead Settlement] Repair Powder", + "3100090": "[Undead Settlement] Homeward Bone", + "3100100": "[Undead Settlement] Spotted Whip", + "3100101": "[Undead Settlement] Cornyx's Garb", + "3100102": "[Undead Settlement] Cornyx's Wrap", + "3100103": "[Undead Settlement] Cornyx's Skirt", + "3100110": "[Undead Settlement] Titanite Shard", + "3100120": "[Undead Settlement] Wargod Wooden Shield", + "3100130": "[Undead Settlement] Large Soul of a Deserted Corpse", + "3100140": "[Undead Settlement] Ember", + "3100150": "[Undead Settlement] Large Soul of a Deserted Corpse", + "3100160": "[Undead Settlement] Titanite Shard", + "3100170": "[Undead Settlement] Alluring Skull", + "3100180": "[Undead Settlement] Charcoal Pine Bundle", + "3100190": "[Undead Settlement] Blue Wooden Shield", + "3100191": "[Undead Settlement] Cleric Hat", + "3100192": "[Undead Settlement] Cleric Blue Robe", + "3100193": "[Undead Settlement] Cleric Gloves", + "3100194": "[Undead Settlement] Cleric Trousers", + "3100200": "[Undead Settlement] Soul of an Unknown Traveler", + "3100210": "[Undead Settlement] Charcoal Pine Resin", + "3100220": "[Undead Settlement] Loincloth", + "3100230": "[Undead Settlement] Charcoal Pine Bundle", + "3100240": "[Undead Settlement] Soul of an Unknown Traveler", + "3100250": "[Undead Settlement] Titanite Shard", + "3100260": "[Undead Settlement] Red Hilted Halberd", + "3100270": "[Undead Settlement] Rusted Coin", + "3100280": "[Undead Settlement] Caestus", + "3100300": "[Undead Settlement] Saint's Talisman", + "3100310": "[Undead Settlement] Alluring Skull", + "3100320": "[Undead Settlement] Large Club", + "3100330": "[Undead Settlement] Titanite Shard", + "3100340": "[Undead Settlement] Titanite Shard", + "3100350": "[Undead Settlement] Fading Soul", + "3100360": "[Undead Settlement] Titanite Shard", + "3100370": "[Undead Settlement] Hand Axe", + "3100380": "[Undead Settlement] Soul of an Unknown Traveler", + "3100390": "[Undead Settlement] Ember", + "3100400": "[Undead Settlement] Mirrah Vest", + "3100401": "[Undead Settlement] Mirrah Gloves", + "3100402": "[Undead Settlement] Mirrah Trousers", + "3100410": "[Undead Settlement] Plank Shield", + "3100420": "[Undead Settlement] Red Bug Pellet", + "3100430": "[Undead Settlement] Chloranthy Ring", + "3100440": "[Undead Settlement] Fire Clutch Ring", + "3100450": "[Undead Settlement] Estus Shard", + "3100460": "[Undead Settlement] Firebomb", + "3100490": "[Undead Settlement] Whip", + "3100500": "[Undead Settlement] Great Scythe", + "3100540": "[Undead Settlement] Homeward Bone", + "3100550": "[Undead Settlement] Large Soul of a Deserted Corpse", + "3100570": "[Undead Settlement] Ember", + "3100610": "[Undead Settlement] Large Soul of a Deserted Corpse", + "3100620": "[Undead Settlement] Fading Soul", + "3100630": "[Undead Settlement] Young White Branch", + "3100640": "[Undead Settlement] Ember", + "3100650": "[Undead Settlement] Large Soul of a Deserted Corpse", + "3100660": "[Undead Settlement] Young White Branch", + "3100670": "[Undead Settlement] Reinforced Club", + "3100680": "[Undead Settlement] Soul of a Nameless Soldier", + "3100700": "[Undead Settlement] Loretta's Bone", + "3100710": "[Undead Settlement] Northern Helm", + "3100711": "[Undead Settlement] Northern Armor", + "3100712": "[Undead Settlement] Northern Gloves", + "3100713": "[Undead Settlement] Northern Trousers", + "3100720": "[Undead Settlement] Partizan", + "3100730": "[Undead Settlement] Flame Stoneplate Ring", + "3100740": "[Undead Settlement] Red and White Round Shield", + "3100750": "[Undead Settlement] Small Leather Shield", + "3100760": "[Undead Settlement] Pale Tongue", + "3100770": "[Undead Settlement] Large Soul of a Deserted Corpse", + "3100800": "[Undead Settlement] Kukri", + "3100850": "[Undead Settlement] Life Ring+1", + "3100860": "[Undead Settlement] Poisonbite Ring+1", + "3100870": "[Undead Settlement] Covetous Silver Serpent Ring+2", + "3100910": "[Undead Settlement] Human Pine Resin", + "3100950": "[Undead Settlement] Homeward Bone", + "3200000": "[Archdragon Peak] Lightning Clutch Ring", + "3200010": "[Archdragon Peak] Stalk Dung Pie", + "3200020": "[Archdragon Peak] Titanite Chunk", + "3200030": "[Archdragon Peak] Titanite Scale", + "3200040": "[Archdragon Peak] Soul of a Weary Warrior", + "3200050": "[Archdragon Peak] Titanite Chunk", + "3200060": "[Archdragon Peak] Lightning Gem", + "3200070": "[Archdragon Peak] Homeward Bone", + "3200080": "[Archdragon Peak] Soul of a Nameless Soldier", + "3200090": "[Archdragon Peak] Titanite Chunk", + "3200100": "[Archdragon Peak] Ember", + "3200110": "[Archdragon Peak] Large Soul of a Weary Warrior", + "3200120": "[Archdragon Peak] Large Soul of a Nameless Soldier", + "3200130": "[Archdragon Peak] Lightning Urn", + "3200140": "[Archdragon Peak] Lightning Bolt", + "3200150": "[Archdragon Peak] Titanite Chunk", + "3200160": "[Archdragon Peak] Dung Pie", + "3200170": "[Archdragon Peak] Titanite Scale", + "3200180": "[Archdragon Peak] Soul of a Weary Warrior", + "3200190": "[Archdragon Peak] Soul of a Crestfallen Knight", + "3200200": "[Archdragon Peak] Titanite Chunk", + "3200210": "[Archdragon Peak] Ember", + "3200220": "[Archdragon Peak] Thunder Stoneplate Ring", + "3200230": "[Archdragon Peak] Titanite Scale", + "3200240": "[Archdragon Peak] Ember", + "3200260": "[Archdragon Peak] Ancient Dragon Greatshield", + "3200270": "[Archdragon Peak] Large Soul of a Crestfallen Knight", + "3200280": "[Archdragon Peak] Dragon Chaser's Ashes", + "3200290": "[Archdragon Peak] Ember", + "3200300": "[Archdragon Peak] Dragonslayer Spear", + "3200310": "[Archdragon Peak] Dragonslayer Helm", + "3200311": "[Archdragon Peak] Dragonslayer Armor", + "3200312": "[Archdragon Peak] Dragonslayer Gauntlets", + "3200313": "[Archdragon Peak] Dragonslayer Leggings", + "3200330": "[Archdragon Peak] Twinkling Titanite", + "3200340": "[Archdragon Peak] Twinkling Titanite", + "3200350": "[Archdragon Peak] Titanite Slab", + "3200360": "[Archdragon Peak] Great Magic Barrier", + "3200370": "[Archdragon Peak] Titanite Slab", + "3200380": "[Archdragon Peak] Ring of Steel Protection", + "3200500": "[Archdragon Peak] Havel's Ring+1", + "3200510": "[Archdragon Peak] Covetous Gold Serpent Ring+2", + "3200700": "[Archdragon Peak] Titanite Scale", + "3200710": "[Archdragon Peak] Twinkling Titanite", + "3200900": "[Archdragon Peak] Twinkling Dragon Torso Stone", + "3200910": "[Archdragon Peak] Calamity Ring", + "3300000": "[Road of Sacrifices] Titanite Shard", + "3300010": "[Road of Sacrifices] Titanite Shard", + "3300020": "[Road of Sacrifices] Green Blossom", + "3300030": "[Road of Sacrifices] Estus Shard", + "3300040": "[Road of Sacrifices] Ring of Sacrifice", + "3300050": "[Road of Sacrifices] Soul of an Unknown Traveler", + "3300060": "[Road of Sacrifices] Fallen Knight Helm", + "3300061": "[Road of Sacrifices] Fallen Knight Armor", + "3300062": "[Road of Sacrifices] Fallen Knight Gauntlets", + "3300063": "[Road of Sacrifices] Fallen Knight Trousers", + "3300070": "[Road of Sacrifices] Heretic's Staff", + "3300080": "[Road of Sacrifices] Large Soul of an Unknown Traveler", + "3300090": "[Road of Sacrifices] Conjurator Hood", + "3300091": "[Road of Sacrifices] Conjurator Robe", + "3300092": "[Road of Sacrifices] Conjurator Manchettes", + "3300093": "[Road of Sacrifices] Conjurator Boots", + "3300100": "[Road of Sacrifices] Soul of an Unknown Traveler", + "3300110": "[Road of Sacrifices] Green Blossom", + "3300120": "[Road of Sacrifices] Great Swamp Pyromancy Tome", + "3300130": "[Road of Sacrifices] Homeward Bone", + "3300140": "[Road of Sacrifices] Titanite Shard", + "3300150": "[Road of Sacrifices] Purple Moss Clump", + "3300160": "[Road of Sacrifices] Purple Moss Clump", + "3300170": "[Road of Sacrifices] Greatsword", + "3300180": "[Road of Sacrifices] Twin Dragon Greatshield", + "3300190": "[Road of Sacrifices] Hollow Gem", + "3300210": "[Road of Sacrifices] Fading Soul", + "3300220": "[Road of Sacrifices] Sorcerer Hood", + "3300221": "[Road of Sacrifices] Sorcerer Robe", + "3300222": "[Road of Sacrifices] Sorcerer Gloves", + "3300223": "[Road of Sacrifices] Sorcerer Trousers", + "3300230": "[Road of Sacrifices] Sage Ring", + "3300240": "[Road of Sacrifices] Purple Moss Clump", + "3300270": "[Road of Sacrifices] Undead Bone Shard", + "3300280": "[Road of Sacrifices] Atonement", + "3300290": "[Road of Sacrifices] Titanite Shard", + "3300300": "[Road of Sacrifices] Iron Flesh", + "3300310": "[Road of Sacrifices] Grass Crest Shield", + "3300320": "[Road of Sacrifices] Stone Parma", + "3300340": "[Road of Sacrifices] Rotten Pine Resin", + "3300350": "[Road of Sacrifices] Titanite Shard", + "3300360": "[Road of Sacrifices] Rusted Gold Coin", + "3300370": "[Road of Sacrifices] Nameless Knight Helm", + "3300371": "[Road of Sacrifices] Nameless Knight Armor", + "3300372": "[Road of Sacrifices] Nameless Knight Gauntlets", + "3300373": "[Road of Sacrifices] Nameless Knight Leggings", + "3300380": "[Road of Sacrifices] Shriving Stone", + "3300390": "[Road of Sacrifices] Repair Powder", + "3300400": "[Road of Sacrifices] Golden Scroll", + "3300410": "[Road of Sacrifices] Sage's Scroll", + "3300420": "[Road of Sacrifices] Dreamchaser's Ashes", + "3300430": "[Road of Sacrifices] Titanite Shard", + "3300440": "[Road of Sacrifices] Wolf's Blood Swordgrass", + "3300450": "[Road of Sacrifices] Great Magic Weapon", + "3300460": "[Road of Sacrifices] Ember", + "3300470": "[Road of Sacrifices] Titanite Shard", + "3300480": "[Road of Sacrifices] Titanite Shard", + "3300490": "[Road of Sacrifices] Titanite Shard", + "3300500": "[Road of Sacrifices] Black Bug Pellet", + "3300510": "[Road of Sacrifices] Rotten Pine Resin", + "3300520": "[Road of Sacrifices] Poison Gem", + "3300525": "[Road of Sacrifices] Ragged Mask", + "3300530": "[Road of Sacrifices] Estus Shard", + "3300535": "[Road of Sacrifices] Homeward Bone", + "3300540": "[Road of Sacrifices] Titanite Shard", + "3300545": "[Road of Sacrifices] Large Soul of a Nameless Soldier", + "3300550": "[Road of Sacrifices] Prism Stone", + "3300555": "[Road of Sacrifices] Large Soul of a Nameless Soldier", + "3300560": "[Road of Sacrifices] Ember", + "3300570": "[Road of Sacrifices] Sage's Coal", + "3300580": "[Road of Sacrifices] Lightning Spear", + "3300590": "[Road of Sacrifices] Blue Bug Pellet", + "3300600": "[Road of Sacrifices] Soul of an Unknown Traveler", + "3300610": "[Road of Sacrifices] Shriving Stone", + "3300620": "[Road of Sacrifices] Titanite Shard", + "3300630": "[Road of Sacrifices] Brigand Twindaggers", + "3300640": "[Road of Sacrifices] Braille Divine Tome of Carim", + "3300650": "[Road of Sacrifices] Ember", + "3300680": "[Road of Sacrifices] Gold Pine Bundle", + "3300690": "[Road of Sacrifices] Ember", + "3300700": "[Road of Sacrifices] Soul of a Nameless Soldier", + "3300710": "[Road of Sacrifices] Large Soul of an Unknown Traveler", + "3300720": "[Road of Sacrifices] Sellsword Twinblades", + "3300730": "[Road of Sacrifices] Golden Falcon Shield", + "3300740": "[Road of Sacrifices] Herald Helm", + "3300741": "[Road of Sacrifices] Herald Armor", + "3300742": "[Road of Sacrifices] Herald Gloves", + "3300743": "[Road of Sacrifices] Herald Trousers", + "3300750": "[Road of Sacrifices] Brigand Axe", + "3300760": "[Road of Sacrifices] Brigand Hood", + "3300761": "[Road of Sacrifices] Brigand Armor", + "3300762": "[Road of Sacrifices] Brigand Gauntlets", + "3300763": "[Road of Sacrifices] Brigand Trousers", + "3300770": "[Road of Sacrifices] Morne's Ring", + "3300780": "[Road of Sacrifices] Sellsword Helm", + "3300781": "[Road of Sacrifices] Sellsword Armor", + "3300782": "[Road of Sacrifices] Sellsword Gauntlet", + "3300783": "[Road of Sacrifices] Sellsword Trousers", + "3300790": "[Road of Sacrifices] Farron Coal", + "3300800": "[Farron Keep] Havel's Helm", + "3300801": "[Farron Keep] Havel's Armor", + "3300802": "[Farron Keep] Havel's Gauntlets", + "3300803": "[Farron Keep] Havel's Leggings", + "3300810": "[Farron Keep] Greataxe", + "3300820": "[Farron Keep] Speckled Stoneplate Ring", + "3300830": "[Farron Keep] Ember", + "3300840": "[Farron Keep] Dragon Crest Shield", + "3300850": "[Farron Keep] Dark Stoneplate Ring+2", + "3300860": "[Farron Keep] Chloranthy Ring+2", + "3300870": "[Farron Keep] Lingering Dragoncrest Ring+1", + "3300880": "[Farron Keep] Magic Stoneplate Ring+1", + "3300890": "[Farron Keep] Wolf Ring+1", + "3300940": "[Farron Keep] Antiquated Dress", + "3300941": "[Farron Keep] Antiquated Gloves", + "3300942": "[Farron Keep] Antiquated Skirt", + "3300950": "[Farron Keep] Sunlight Talisman", + "3300960": "[Farron Keep] Young White Branch", + "3300970": "[Farron Keep] Young White Branch", + "3300980": "[Farron Keep] Crown of Dusk", + "3410000": "[Grand Archives] Titanite Chunk", + "3410010": "[Grand Archives] Titanite Chunk", + "3410020": "[Grand Archives] Soul of a Crestfallen Knight", + "3410030": "[Grand Archives] Titanite Chunk", + "3410040": "[Grand Archives] Fleshbite Ring", + "3410060": "[Grand Archives] Soul of a Crestfallen Knight", + "3410070": "[Grand Archives] Soul of a Nameless Soldier", + "3410080": "[Grand Archives] Crystal Chime", + "3410090": "[Grand Archives] Titanite Scale", + "3410100": "[Grand Archives] Estus Shard", + "3410110": "[Grand Archives] Homeward Bone", + "3410120": "[Grand Archives] Titanite Scale", + "3410130": "[Grand Archives] Titanite Chunk", + "3410140": "[Grand Archives] Hollow Gem", + "3410150": "[Grand Archives] Titanite Scale", + "3410160": "[Grand Archives] Titanite Scale", + "3410180": "[Grand Archives] Titanite Scale", + "3410200": "[Grand Archives] Shriving Stone", + "3410210": "[Grand Archives] Large Soul of a Crestfallen Knight", + "3410220": "[Grand Archives] Titanite Chunk", + "3410240": "[Grand Archives] Titanite Scale", + "3410250": "[Grand Archives] Titanite Chunk", + "3410260": "[Grand Archives] Soul of a Weary Warrior", + "3410280": "[Grand Archives] Titanite Chunk", + "3410290": "[Grand Archives] Ember", + "3410300": "[Grand Archives] Blessed Gem", + "3410320": "[Grand Archives] Titanite Chunk", + "3410330": "[Grand Archives] Large Soul of a Crestfallen Knight", + "3410350": "[Grand Archives] Avelyn", + "3410360": "[Grand Archives] Titanite Chunk", + "3410370": "[Grand Archives] Hunter's Ring", + "3410380": "[Grand Archives] Divine Pillars of Light", + "3410410": "[Grand Archives] Titanite Chunk", + "3410420": "[Grand Archives] Power Within", + "3410450": "[Grand Archives] Sage Ring+1", + "3410470": "[Grand Archives] Lingering Dragoncrest Ring+2", + "3410500": "[Grand Archives] Divine Blessing", + "3410510": "[Grand Archives] Twinkling Titanite", + "3410520": "[Grand Archives] Witch's Locks", + "3410530": "[Grand Archives] Titanite Slab", + "3410540": "[Grand Archives] Titanite Scale", + "3410600": "[Grand Archives] Soul Stream", + "3410610": "[Grand Archives] Scholar Ring", + "3410620": "[Grand Archives] Undead Bone Shard", + "3500000": "[Cathedral of the Deep] Notched Whip", + "3500010": "[Cathedral of the Deep] Titanite Shard", + "3500020": "[Cathedral of the Deep] Astora Greatsword", + "3500030": "[Cathedral of the Deep] Executioner's Greatsword", + "3500040": "[Cathedral of the Deep] Undead Bone Shard", + "3500050": "[Cathedral of the Deep] Curse Ward Greatshield", + "3500060": "[Cathedral of the Deep] Titanite Shard", + "3500070": "[Cathedral of the Deep] Large Soul of an Unknown Traveler", + "3500080": "[Cathedral of the Deep] Paladin's Ashes", + "3500090": "[Cathedral of the Deep] Arbalest", + "3500110": "[Cathedral of the Deep] Ember", + "3500130": "[Cathedral of the Deep] Ember", + "3500140": "[Cathedral of the Deep] Poisonbite Ring", + "3500150": "[Cathedral of the Deep] Drang Armor", + "3500160": "[Cathedral of the Deep] Ember", + "3500170": "[Cathedral of the Deep] Duel Charm", + "3500180": "[Cathedral of the Deep] Seek Guidance", + "3500200": "[Cathedral of the Deep] Estus Shard", + "3500210": "[Cathedral of the Deep] Maiden Hood", + "3500211": "[Cathedral of the Deep] Maiden Robe", + "3500212": "[Cathedral of the Deep] Maiden Gloves", + "3500213": "[Cathedral of the Deep] Maiden Skirt", + "3500220": "[Cathedral of the Deep] Pale Tongue", + "3500230": "[Cathedral of the Deep] Fading Soul", + "3500240": "[Cathedral of the Deep] Blessed Gem", + "3500260": "[Cathedral of the Deep] Red Bug Pellet", + "3500270": "[Cathedral of the Deep] Soul of a Nameless Soldier", + "3500280": "[Cathedral of the Deep] Duel Charm", + "3500300": "[Cathedral of the Deep] Large Soul of an Unknown Traveler", + "3500310": "[Cathedral of the Deep] Ember", + "3500320": "[Cathedral of the Deep] Repair Powder", + "3500330": "[Cathedral of the Deep] Large Soul of an Unknown Traveler", + "3500340": "[Cathedral of the Deep] Large Soul of an Unknown Traveler", + "3500370": "[Cathedral of the Deep] Undead Hunter Charm", + "3500380": "[Cathedral of the Deep] Red Bug Pellet", + "3500390": "[Cathedral of the Deep] Titanite Shard", + "3500400": "[Cathedral of the Deep] Titanite Shard", + "3500420": "[Cathedral of the Deep] Rusted Coin", + "3500430": "[Cathedral of the Deep] Drang Hammers", + "3500450": "[Cathedral of the Deep] Drang Shoes", + "3500460": "[Cathedral of the Deep] Large Soul of an Unknown Traveler", + "3500470": "[Cathedral of the Deep] Pale Tongue", + "3500480": "[Cathedral of the Deep] Drang Gauntlets", + "3500490": "[Cathedral of the Deep] Soul of a Nameless Soldier", + "3500500": "[Cathedral of the Deep] Helm of Thorns", + "3500501": "[Cathedral of the Deep] Armor of Thorns", + "3500502": "[Cathedral of the Deep] Gauntlets of Thorns", + "3500503": "[Cathedral of the Deep] Leggings of Thorns", + "3500540": "[Cathedral of the Deep] Exploding Bolt", + "3500550": "[Cathedral of the Deep] Lloyd's Sword Ring", + "3500560": "[Cathedral of the Deep] Soul of a Nameless Soldier", + "3500620": "[Cathedral of the Deep] Homeward Bone", + "3500630": "[Cathedral of the Deep] Deep Gem", + "3500680": "[Cathedral of the Deep] Titanite Shard", + "3500690": "[Cathedral of the Deep] Large Soul of an Unknown Traveler", + "3500800": "[Cathedral of the Deep] Ring of the Evil Eye+1", + "3500810": "[Cathedral of the Deep] Ring of Favor+2", + "3500850": "[Cathedral of the Deep] Crest Shield", + "3500860": "[Cathedral of the Deep] Young White Branch", + "3500870": "[Cathedral of the Deep] Young White Branch", + "3500880": "[Cathedral of the Deep] Saint-tree Bellvine", + "3500890": "[Cathedral of the Deep] Saint Bident", + "3500950": "[Cathedral of the Deep] Archdeacon White Crown", + "3500951": "[Cathedral of the Deep] Archdeacon Holy Garb", + "3500952": "[Cathedral of the Deep] Archdeacon Skirt", + "3600000": "Large Soul of an Unknown Traveler", + "3600010": "Large Soul of an Unknown Traveler", + "3600020": "Large Soul of an Unknown Traveler", + "3600030": "Large Soul of an Unknown Traveler", + "3600040": "Large Soul of an Unknown Traveler", + "3600050": "Large Soul of an Unknown Traveler", + "3600060": "Large Soul of an Unknown Traveler", + "3600070": "Large Soul of an Unknown Traveler", + "3600080": "Large Soul of an Unknown Traveler", + "3600090": "Large Soul of an Unknown Traveler", + "3700000": "[Irithyll] Creighton's Steel Mask", + "3700001": "[Irithyll] Mirrah Chain Mail", + "3700002": "[Irithyll] Mirrah Chain Gloves", + "3700003": "[Irithyll] Mirrah Chain Leggings", + "3700010": "[Irithyll] Homeward Bone", + "3700020": "[Irithyll] Large Soul of a Nameless Soldier", + "3700030": "[Irithyll] Large Titanite Shard", + "3700040": "[Irithyll] Soul of a Weary Warrior", + "3700050": "[Irithyll] Soul of a Weary Warrior", + "3700060": "[Irithyll] Rime-blue Moss Clump", + "3700070": "[Irithyll] Witchtree Branch", + "3700080": "[Irithyll] Large Titanite Shard", + "3700090": "[Irithyll] Estus Shard", + "3700100": "[Irithyll] Budding Green Blossom", + "3700110": "[Irithyll] Rime-blue Moss Clump", + "3700120": "[Irithyll] Large Titanite Shard", + "3700130": "[Irithyll] Large Titanite Shard", + "3700140": "[Irithyll] Ring of the Sun's First Born", + "3700150": "[Irithyll] Large Soul of a Nameless Soldier", + "3700160": "[Irithyll] Large Titanite Shard", + "3700170": "[Irithyll] Large Titanite Shard", + "3700180": "[Irithyll] Soul of a Weary Warrior", + "3700190": "[Irithyll] Magic Clutch Ring", + "3700200": "[Irithyll] Fading Soul", + "3700210": "[Irithyll] Fading Soul", + "3700220": "[Anor Londo] Painting Guardian's Curved Sword", + "3700230": "[Irithyll] Homeward Bone", + "3700240": "[Irithyll] Undead Bone Shard", + "3700250": "[Irithyll] Kukri", + "3700260": "[Irithyll] Rusted Gold Coin", + "3700270": "[Irithyll] Brass Helm", + "3700271": "[Irithyll] Brass Armor", + "3700272": "[Irithyll] Brass Gauntlets", + "3700273": "[Irithyll] Brass Leggings", + "3700280": "[Irithyll] Blue Bug Pellet", + "3700290": "[Irithyll] Shriving Stone", + "3700300": "[Irithyll] Human Dregs", + "3700310": "[Irithyll] Roster of Knights", + "3700320": "[Irithyll] Blood Gem", + "3700330": "[Irithyll] Green Blossom", + "3700340": "[Irithyll] Ring of Sacrifice", + "3700350": "[Irithyll] Great Heal", + "3700360": "[Irithyll] Large Soul of a Nameless Soldier", + "3700370": "[Irithyll] Green Blossom", + "3700380": "[Irithyll] Dung Pie", + "3700390": "[Irithyll] Dung Pie", + "3700400": "[Irithyll] Excrement-covered Ashes", + "3700410": "[Irithyll] Ember", + "3700420": "[Irithyll] Large Titanite Shard", + "3700430": "[Irithyll] Large Soul of a Nameless Soldier", + "3700440": "[Irithyll] Soul of a Weary Warrior", + "3700450": "[Irithyll] Large Titanite Shard", + "3700460": "[Irithyll] Blue Bug Pellet", + "3700470": "[Irithyll] Ember", + "3700480": "[Irithyll] Large Titanite Shard", + "3700490": "[Irithyll] Large Titanite Shard", + "3700500": "[Irithyll] Soul of a Weary Warrior", + "3700510": "[Irithyll] Ember", + "3700520": "[Irithyll] Ember", + "3700530": "[Irithyll] Large Titanite Shard", + "3700540": "[Irithyll] Dark Stoneplate Ring", + "3700550": "[Irithyll] Large Titanite Shard", + "3700560": "[Irithyll] Green Blossom", + "3700600": "[Irithyll] Deep Gem", + "3700610": "[Irithyll] Titanite Scale", + "3700620": "[Irithyll] Dragonslayer Greatbow", + "3700621": "[Irithyll] Dragonslayer Greatarrow", + "3700630": "[Irithyll] Easterner's Ashes", + "3700640": "[Anor Londo] Painting Guardian Hood", + "3700641": "[Anor Londo] Painting Guardian Gown", + "3700642": "[Anor Londo] Painting Guardian Gloves", + "3700643": "[Anor Londo] Painting Guardian Waistcloth", + "3700660": "[Anor Londo] Soul of a Crestfallen Knight", + "3700670": "[Irithyll] Lightning Gem", + "3700690": "[Anor Londo] Moonlight Arrow", + "3700700": "[Irithyll] Proof of a Concord Kept", + "3700720": "[Irithyll] Large Soul of a Nameless Soldier", + "3700740": "[Irithyll] Soul of a Weary Warrior", + "3700750": "[Irithyll] Proof of a Concord Kept", + "3700760": "[Irithyll] Rusted Gold Coin", + "3700770": "[Irithyll] Large Soul of a Weary Warrior", + "3700800": "[Anor Londo] Giant's Coal", + "3700810": "[Irithyll] Chloranthy Ring+1", + "3700820": "[Irithyll] Havel's Ring+2", + "3700830": "[Irithyll] Ring of Favor+1", + "3700840": "[Irithyll] Sun Princess Ring", + "3700850": "[Irithyll] Covetous Gold Serpent Ring+1", + "3700860": "[Irithyll] Wood Grain Ring+2", + "3700900": "[Irithyll] Divine Blessing", + "3700920": "[Irithyll] Smough's Great Hammer", + "3700940": "[Irithyll] Reversal Ring", + "3700950": "[Irithyll] Yorshka's Spear", + "3700960": "[Irithyll] Leo Ring", + "3800000": "[Catacombs of Carthus] Carthus Rouge", + "3800010": "[Catacombs of Carthus] Sharp Gem", + "3800020": "[Catacombs of Carthus] Soul of a Nameless Soldier", + "3800030": "[Catacombs of Carthus] Titanite Shard", + "3800040": "[Catacombs of Carthus] Bloodred Moss Clump", + "3800050": "[Catacombs of Carthus] Carthus Milkring", + "3800060": "[Catacombs of Carthus] Ember", + "3800070": "[Catacombs of Carthus] Carthus Rouge", + "3800080": "[Catacombs of Carthus] Ember", + "3800090": "[Catacombs of Carthus] Carthus Bloodring", + "3800100": "[Catacombs of Carthus] Titanite Shard", + "3800110": "[Catacombs of Carthus] Titanite Shard", + "3800120": "[Catacombs of Carthus] Ember", + "3800130": "[Catacombs of Carthus] Carthus Pyromancy Tome", + "3800140": "[Catacombs of Carthus] Large Titanite Shard", + "3800150": "[Catacombs of Carthus] Large Titanite Shard", + "3800160": "[Catacombs of Carthus] Yellow Bug Pellet", + "3800170": "[Catacombs of Carthus] Large Soul of a Nameless Soldier", + "3800180": "[Catacombs of Carthus] Black Bug Pellet", + "3800190": "[Catacombs of Carthus] Grave Warden's Ashes", + "3800200": "[Catacombs of Carthus] Large Titanite Shard", + "3800210": "[Catacombs of Carthus] Large Titanite Shard", + "3800220": "[Catacombs of Carthus] Large Titanite Shard", + "3800230": "[Catacombs of Carthus] Large Titanite Shard", + "3800240": "[Catacombs of Carthus] Large Titanite Shard", + "3800250": "[Catacombs of Carthus] Large Titanite Shard", + "3800260": "[Catacombs of Carthus] Yellow Bug Pellet", + "3800270": "[Catacombs of Carthus] Large Titanite Shard", + "3800280": "[Catacombs of Carthus] Large Titanite Shard", + "3800290": "[Catacombs of Carthus] Large Titanite Shard", + "3800300": "[Catacombs of Carthus] Speckled Stoneplate Ring", + "3800310": "[Catacombs of Carthus] Homeward Bone", + "3800330": "[Catacombs of Carthus] Ember", + "3800340": "[Catacombs of Carthus] Chaos Gem", + "3800350": "[Catacombs of Carthus] Ember", + "3800360": "[Catacombs of Carthus] Izalith Pyromancy Tome", + "3800370": "[Catacombs of Carthus] Black Knight Sword", + "3800380": "[Catacombs of Carthus] Large Soul of a Nameless Soldier", + "3800390": "[Catacombs of Carthus] Old Sage's Blindfold", + "3800391": "[Catacombs of Carthus] Witch's Ring", + "3800400": "[Catacombs of Carthus] Ember", + "3800410": "[Catacombs of Carthus] Quelana Pyromancy Tome", + "3800420": "[Catacombs of Carthus] Izalith Staff", + "3800430": "[Catacombs of Carthus] White Hair Talisman", + "3800440": "[Catacombs of Carthus] Toxic Mist", + "3800450": "[Catacombs of Carthus] Undead Bone Shard", + "3800460": "[Catacombs of Carthus] Titanite Scale", + "3800470": "[Catacombs of Carthus] Soul of a Nameless Soldier", + "3800500": "[Catacombs of Carthus] Grave Warden Pyromancy Tome", + "3800510": "[Catacombs of Carthus] Grave Warden Pyromancy Tome", + "3800520": "[Catacombs of Carthus] Shield of Want", + "3800530": "[Catacombs of Carthus] Soul of a Crestfallen Knight", + "3800540": "[Catacombs of Carthus] Ember", + "3800560": "[Catacombs of Carthus] Sacred Flame", + "3800570": "[Catacombs of Carthus] Large Soul of an Unknown Traveler", + "3800580": "[Catacombs of Carthus] Dragonrider Bow", + "3800590": "[Catacombs of Carthus] Estus Shard", + "3800600": "[Catacombs of Carthus] Ring of Steel Protection+2", + "3800610": "[Catacombs of Carthus] Thunder Stoneplate Ring+1", + "3800620": "[Catacombs of Carthus] Bloodbite Ring+1", + "3800630": "[Catacombs of Carthus] Flame Stoneplate Ring+2", + "3800760": "[Catacombs of Carthus] Large Titanite Shard", + "3800900": "[Catacombs of Carthus] Undead Bone Shard", + "3800910": "[Catacombs of Carthus] Dark Gem", + "3900000": "[Irithyll Dungeon] Large Titanite Shard", + "3900010": "[Irithyll Dungeon] Fading Soul", + "3900030": "[Irithyll Dungeon] Large Soul of a Nameless Soldier", + "3900040": "[Irithyll Dungeon] Jailbreaker's Key", + "3900050": "[Irithyll Dungeon] Pale Pine Resin", + "3900060": "[Irithyll Dungeon] Simple Gem", + "3900070": "[Irithyll Dungeon] Large Soul of a Nameless Soldier", + "3900080": "[Irithyll Dungeon] Large Titanite Shard", + "3900090": "[Irithyll Dungeon] Homeward Bone", + "3900100": "[Irithyll Dungeon] Bellowing Dragoncrest Ring", + "3900110": "[Irithyll Dungeon] Soul of a Weary Warrior", + "3900120": "[Irithyll Dungeon] Soul of a Crestfallen Knight", + "3900130": "[Irithyll Dungeon] Alva Helm", + "3900131": "[Irithyll Dungeon] Alva Armor", + "3900132": "[Irithyll Dungeon] Alva Gauntlets", + "3900133": "[Irithyll Dungeon] Alva Leggings", + "3900140": "[Irithyll Dungeon] Lightning Bolt", + "3900150": "[Irithyll Dungeon] Large Titanite Shard", + "3900160": "[Irithyll Dungeon] Profaned Flame", + "3900180": "[Irithyll Dungeon] Large Titanite Shard", + "3900190": "[Irithyll Dungeon] Soul of a Weary Warrior", + "3900200": "[Irithyll Dungeon] Dung Pie", + "3900210": "[Irithyll Dungeon] Purging Stone", + "3900220": "[Irithyll Dungeon] Ember", + "3900230": "[Irithyll Dungeon] Ember", + "3900240": "[Irithyll Dungeon] Profaned Coal", + "3900250": "[Irithyll Dungeon] Large Titanite Shard", + "3900260": "[Irithyll Dungeon] Old Sorcerer Hat", + "3900261": "[Irithyll Dungeon] Old Sorcerer Coat", + "3900262": "[Irithyll Dungeon] Old Sorcerer Gauntlets", + "3900263": "[Irithyll Dungeon] Old Sorcerer Boots", + "3900270": "[Irithyll Dungeon] Large Soul of a Weary Warrior", + "3900280": "[Profaned Capital] Rusted Coin", + "3900290": "[Profaned Capital] Rusted Gold Coin", + "3900300": "[Profaned Capital] Purging Stone", + "3900310": "[Profaned Capital] Cursebite Ring", + "3900320": "[Profaned Capital] Poison Gem", + "3900330": "[Profaned Capital] Shriving Stone", + "3900340": "[Profaned Capital] Poison Arrow", + "3900350": "[Profaned Capital] Rubbish", + "3900360": "[Profaned Capital] Onislayer Greatarrow", + "3900370": "[Profaned Capital] Large Soul of a Weary Warrior", + "3900380": "[Profaned Capital] Rusted Coin", + "3900390": "[Profaned Capital] Rusted Coin", + "3900400": "[Profaned Capital] Covetous Gold Serpent Ring", + "3900410": "[Profaned Capital] Blooming Purple Moss Clump", + "3900420": "[Profaned Capital] Wrath of the Gods", + "3900430": "[Irithyll Dungeon] Lightning Blade", + "3900440": "[Irithyll Dungeon] Large Titanite Shard", + "3900450": "[Irithyll Dungeon] Rusted Coin", + "3900460": "[Irithyll Dungeon] Dusk Crown Ring", + "3900470": "[Irithyll Dungeon] Pickaxe", + "3900480": "[Irithyll Dungeon] Xanthous Ashes", + "3900490": "[Irithyll Dungeon] Onislayer Greatbow", + "3900500": "[Irithyll Dungeon] Rusted Gold Coin", + "3900510": "[Irithyll Dungeon] Large Titanite Shard", + "3900520": "[Irithyll Dungeon] Jailer's Key Ring", + "3900590": "[Irithyll Dungeon] Ember", + "3900610": "[Irithyll Dungeon] Old Cell Key", + "3900710": "[Irithyll Dungeon] Flame Stoneplate Ring+1", + "3900720": "[Irithyll Dungeon] Covetous Silver Serpent Ring+1", + "3900730": "[Irithyll Dungeon] Magic Stoneplate Ring+2", + "3900750": "[Irithyll Dungeon] Dragon Torso Stone", + "3900800": "[Profaned Capital] Court Sorcerer Hood", + "3900801": "[Profaned Capital] Court Sorcerer Robe", + "3900802": "[Profaned Capital] Court Sorcerer Gloves", + "3900803": "[Profaned Capital] Court Sorcerer Trousers", + "3900810": "[Profaned Capital] Storm Ruler", + "3900820": "[Irithyll Dungeon] Prisoner Chief's Ashes", + "3900900": "[Irithyll Dungeon] Undead Bone Shard", + "4000010": "[Cemetery of Ash] Broken Straight Sword", + "4000020": "[Cemetery of Ash] Soul of a Deserted Corpse", + "4000030": "[Cemetery of Ash] Firebomb", + "4000050": "[Cemetery of Ash] Titanite Shard", + "4000060": "[Cemetery of Ash] Homeward Bone", + "4000070": "[Cemetery of Ash] Ember", + "4000080": "[Cemetery of Ash] Soul of a Deserted Corpse", + "4000090": "[Cemetery of Ash] East-West Shield", + "4000100": "[Cemetery of Ash] Homeward Bone", + "4000110": "[Cemetery of Ash] Soul of an Unknown Traveler", + "4000120": "[Cemetery of Ash] Ember", + "4000140": "[Cemetery of Ash] Sneering Mask", + "4000141": "[Cemetery of Ash] Pale Shade Robe", + "4000142": "[Cemetery of Ash] Pale Shade Gloves", + "4000143": "[Cemetery of Ash] Pale Shade Trousers", + "4000160": "[Cemetery of Ash] Homeward Bone", + "4000170": "[Cemetery of Ash] Estus Ring", + "4000180": "[Cemetery of Ash] Estus Shard", + "4000190": "[Cemetery of Ash] Fire Keeper Soul", + "4000200": "[Cemetery of Ash] Shriving Stone", + "4000220": "[Cemetery of Ash] Titanite Chunk", + "4000230": "[Cemetery of Ash] Soul of a Crestfallen Knight", + "4000240": "[Cemetery of Ash] Titanite Chunk", + "4000250": "[Cemetery of Ash] Ashen Estus Ring", + "4000260": "[Cemetery of Ash] Black Knight Glaive", + "4000280": "[Cemetery of Ash] Eyes of a Fire Keeper", + "4000290": "[Cemetery of Ash] Soul of a Crestfallen Knight", + "4000300": "[Cemetery of Ash] Blacksmith Hammer", + "4000310": "[Cemetery of Ash] Chaos Blade", + "4000320": "[Cemetery of Ash] Hollow's Ashes", + "4000330": "[Cemetery of Ash] Hornet Ring", + "4000340": "[Cemetery of Ash] Coiled Sword Fragment", + "4000350": "[Cemetery of Ash] Fire Keeper Robe", + "4000351": "[Cemetery of Ash] Fire Keeper Gloves", + "4000352": "[Cemetery of Ash] Fire Keeper Skirt", + "4000400": "[Cemetery of Ash] Life Ring+3", + "4000410": "[Cemetery of Ash] Ring of Steel Protection+1", + "4000420": "[Cemetery of Ash] Speckled Stoneplate Ring+1", + "4000430": "[Cemetery of Ash] Wolf Ring+2", + "4000505": "Ashen Estus Flask", + "4000515": "Ashen Estus Flask+1", + "4000525": "Ashen Estus Flask+2", + "4000535": "Ashen Estus Flask+3", + "4000545": "Ashen Estus Flask+4", + "4000555": "Ashen Estus Flask+5", + "4000565": "Ashen Estus Flask+6", + "4000575": "Ashen Estus Flask+7", + "4000585": "Ashen Estus Flask+8", + "4000595": "Ashen Estus Flask+9", + "4000605": "Ashen Estus Flask+10", + "4000700": "[Cemetery of Ash] Covetous Silver Serpent Ring", + "4500000": "[Ariandel] Rime-blue Moss Clump", + "4500010": "[Ariandel] Poison Gem", + "4500020": "[Ariandel] Large Soul of an Unknown Traveler", + "4500030": "[Ariandel] Follower Javelin", + "4500040": "[Ariandel] Large Soul of an Unknown Traveler", + "4500050": "[Ariandel] Homeward Bone", + "4500060": "[Ariandel] Blessed Gem", + "4500070": "[Ariandel] Captain's Ashes", + "4500080": "[Ariandel] Black Firebomb", + "4500090": "[Ariandel] Shriving Stone", + "4500100": "[Ariandel] Millwood Greatbow", + "4500101": "[Ariandel] Millwood Greatarrow", + "4500110": "[Ariandel] Large Soul of an Unknown Traveler", + "4500120": "[Ariandel] Rusted Coin", + "4500130": "[Ariandel] Large Titanite Shard", + "4500140": "[Ariandel] Large Soul of an Unknown Traveler", + "4500150": "[Ariandel] Crow Quills", + "4500160": "[Ariandel] Simple Gem", + "4500170": "[Ariandel] Large Soul of an Unknown Traveler", + "4500180": "[Ariandel] Slave Knight Hood", + "4500181": "[Ariandel] Slave Knight Armor", + "4500182": "[Ariandel] Slave Knight Gauntlets", + "4500183": "[Ariandel] Slave Knight Leggings", + "4500190": "[Ariandel] Ember", + "4500200": "[Ariandel] Dark Gem", + "4500220": "[Ariandel] Large Soul of an Unknown Traveler", + "4500230": "[Ariandel] Large Soul of an Unknown Traveler", + "4500240": "[Ariandel] Rusted Gold Coin", + "4500250": "[Ariandel] Soul of a Crestfallen Knight", + "4500260": "[Ariandel] Way of White Corona", + "4500270": "[Ariandel] Rusted Coin", + "4500280": "[Ariandel] Young White Branch", + "4500290": "[Ariandel] Budding Green Blossom", + "4500300": "[Ariandel] Crow Talons", + "4500310": "[Ariandel] Prism Stone", + "4500320": "[Ariandel] Titanite Chunk", + "4500330": "[Ariandel] Titanite Chunk", + "4500340": "[Ariandel] Follower Shield", + "4500350": "[Ariandel] Large Titanite Shard", + "4500360": "[Ariandel] Quakestone Hammer", + "4500370": "[Ariandel] Ember", + "4500380": "[Ariandel] Large Titanite Shard", + "4500390": "[Ariandel] Soul of a Crestfallen Knight", + "4500400": "[Ariandel] Soul of a Crestfallen Knight", + "4500410": "[Ariandel] Large Soul of a Crestfallen Knight", + "4500420": "[Ariandel] Earth Seeker", + "4500430": "[Ariandel] Follower Torch", + "4500460": "[Ariandel] Dung Pie", + "4500470": "[Ariandel] Vilhelm's Helm", + "4500471": "[Ariandel] Vilhelm's Armor", + "4500472": "[Ariandel] Vilhelm's Gauntlets", + "4500473": "[Ariandel] Vilhelm's Leggings", + "4500480": "[Ariandel] Blood Gem", + "4500490": "[Ariandel] Hollow Gem", + "4500530": "[Ariandel] Rime-blue Moss Clump", + "4500540": "[Ariandel] Follower Sabre", + "4500550": "[Ariandel] Ember", + "4500560": "[Ariandel] Snap Freeze", + "4500570": "[Ariandel] Pyromancer's Parting Flame", + "4500571": "[Ariandel] Homeward Bone", + "4500600": "[Ariandel] Rime-blue Moss Clump", + "4500610": "[Ariandel] Large Soul of an Unknown Traveler", + "4500620": "[Ariandel] Ember", + "4500630": "[Ariandel] Frozen Weapon", + "4500640": "[Ariandel] Titanite Slab", + "4500650": "[Ariandel] Homeward Bone", + "4500660": "[Ariandel] Large Soul of an Unknown Traveler", + "4500670": "[Ariandel] Large Soul of a Weary Warrior", + "4500680": "[Ariandel] Large Soul of an Unknown Traveler", + "4500690": "[Ariandel] Heavy Gem", + "4500800": "[Ariandel] Large Soul of a Weary Warrior", + "4500810": "[Ariandel] Millwood Battle Axe", + "4500820": "[Ariandel] Ethereal Oak Shield", + "4500830": "[Ariandel] Soul of a Weary Warrior", + "5000000": "[Dreg Heap] Ember", + "5000010": "[Dreg Heap] Soul of a Weary Warrior", + "5000020": "[Dreg Heap] Titanite Chunk", + "5000030": "[Dreg Heap] Aquamarine Dagger", + "5000040": "[Dreg Heap] Twinkling Titanite", + "5000050": "[Dreg Heap] Murky Hand Scythe", + "5000060": "[Dreg Heap] Divine Blessing", + "5000070": "[Dreg Heap] Ring of Steel Protection+3", + "5000080": "[Dreg Heap] Soul of a Crestfallen Knight", + "5000090": "[Dreg Heap] Rusted Coin", + "5000100": "[Dreg Heap] Titanite Chunk", + "5000110": "[Dreg Heap] Murky Longstaff", + "5000120": "[Dreg Heap] Ember", + "5000130": "[Dreg Heap] Great Soul Dregs", + "5000140": "[Dreg Heap] Covetous Silver Serpent Ring+3", + "5000150": "[Dreg Heap] Fading Soul", + "5000160": "[Dreg Heap] Titanite Chunk", + "5000170": "[Dreg Heap] Homeward Bone", + "5000180": "[Dreg Heap] Fading Soul", + "5000190": "[Dreg Heap] Lightning Urn", + "5000200": "[Dreg Heap] Projected Heal", + "5000210": "[Dreg Heap] Large Soul of a Weary Warrior", + "5000220": "[Dreg Heap] Lothric War Banner", + "5000230": "[Dreg Heap] Titanite Scale", + "5000240": "[Dreg Heap] Fading Soul", + "5000250": "[Dreg Heap] Fading Soul", + "5000260": "[Dreg Heap] Fading Soul", + "5000270": "[Dreg Heap] Fading Soul", + "5000280": "[Dreg Heap] Fading Soul", + "5000290": "[Dreg Heap] Fading Soul", + "5000300": "[Dreg Heap] Black Firebomb", + "5000310": "[Dreg Heap] Titanite Chunk", + "5000320": "[Dreg Heap] Twinkling Titanite", + "5000330": "[Dreg Heap] Desert Pyromancer Garb", + "5000340": "[Dreg Heap] Titanite Chunk", + "5000350": "[Dreg Heap] Giant Door Shield", + "5000360": "[Dreg Heap] Ember", + "5000370": "[Dreg Heap] Desert Pyromancer Hood", + "5000371": "[Dreg Heap] Desert Pyromancer Garb", + "5000372": "[Dreg Heap] Desert Pyromancer Gloves", + "5000373": "[Dreg Heap] Desert Pyromancer Skirt", + "5000380": "[Dreg Heap] Desert Pyromancer Gloves", + "5000390": "[Dreg Heap] Desert Pyromancer Skirt", + "5000400": "[Dreg Heap] Titanite Scale", + "5000410": "[Dreg Heap] Purple Moss Clump", + "5000420": "[Dreg Heap] Ring of Favor+3", + "5000430": "[Dreg Heap] Titanite Chunk", + "5000440": "[Dreg Heap] Large Soul of a Weary Warrior", + "5000450": "[Dreg Heap] Titanite Slab", + "5000460": "[Dreg Heap] Titanite Chunk", + "5000470": "[Dreg Heap] Loincloth", + "5000480": "[Dreg Heap] Titanite Chunk", + "5000490": "[Dreg Heap] Large Soul of a Weary Warrior", + "5000500": "[Dreg Heap] Harald Curved Greatsword", + "5000510": "[Dreg Heap] Homeward Bone", + "5000520": "[Dreg Heap] Prism Stone", + "5000530": "[Dreg Heap] Desert Pyromancer Hood", + "5000540": "[Dreg Heap] Twinkling Titanite", + "5000550": "[Dreg Heap] Divine Blessing", + "5000560": "[Dreg Heap] Ember", + "5000600": "[Dreg Heap] Small Envoy Banner", + "5100000": "[Dreg Heap] Titanite Scale", + "5100010": "[Ringed City] Ruin Helm", + "5100011": "[Ringed City] Ruin Armor", + "5100012": "[Ringed City] Ruin Gauntlets", + "5100013": "[Ringed City] Ruin Leggings", + "5100020": "[Ringed City] Budding Green Blossom", + "5100030": "[Ringed City] Titanite Chunk", + "5100040": "[Ringed City] Ember", + "5100050": "[Ringed City] Budding Green Blossom", + "5100060": "[Ringed City] Hidden Blessing", + "5100070": "[Ringed City] Soul of a Crestfallen Knight", + "5100080": "[Ringed City] Large Soul of a Weary Warrior", + "5100090": "[Ringed City] Fading Soul", + "5100100": "[Ringed City] Soul of a Crestfallen Knight", + "5100110": "[Ringed City] Ember", + "5100120": "[Ringed City] Purging Stone", + "5100130": "[Ringed City] Fading Soul", + "5100140": "[Ringed City] Fading Soul", + "5100150": "[Ringed City] Hollow Gem", + "5100160": "[Ringed City] Titanite Chunk", + "5100170": "[Ringed City] Twinkling Titanite", + "5100180": "[Ringed City] Shriving Stone", + "5100190": "[Ringed City] Shira's Crown", + "5100191": "[Ringed City] Shira's Armor", + "5100192": "[Ringed City] Shira's Gloves", + "5100193": "[Ringed City] Shira's Trousers", + "5100200": "[Ringed City] Mossfruit", + "5100210": "[Ringed City] Fading Soul", + "5100220": "[Ringed City] Large Soul of a Crestfallen Knight", + "5100230": "[Ringed City] Ringed Knight Spear", + "5100240": "[Ringed City] Fading Soul", + "5100250": "[Ringed City] Black Witch Hat", + "5100251": "[Ringed City] Black Witch Garb", + "5100252": "[Ringed City] Black Witch Wrappings", + "5100253": "[Ringed City] Black Witch Trousers", + "5100260": "[Ringed City] Dragonhead Shield", + "5100270": "[Ringed City] Titanite Chunk", + "5100280": "[Ringed City] Mossfruit", + "5100290": "[Ringed City] Large Soul of a Crestfallen Knight", + "5100300": "[Ringed City] Covetous Gold Serpent Ring+3", + "5100310": "[Ringed City] Fading Soul", + "5100320": "[Ringed City] Fading Soul", + "5100330": "[Ringed City] Titanite Chunk", + "5100340": "[Ringed City] Fading Soul", + "5100350": "[Ringed City] Dark Gem", + "5100360": "[Ringed City] Prism Stone", + "5100370": "[Ringed City] Ringed Knight Straight Sword", + "5100380": "[Ringed City] Havel's Ring+3", + "5100390": "[Ringed City] Titanite Chunk", + "5100400": "[Ringed City] Twinkling Titanite", + "5100410": "[Ringed City] Fading Soul", + "5100420": "[Ringed City] Soul of a Weary Warrior", + "5100430": "[Ringed City] Preacher's Right Arm", + "5100440": "[Ringed City] Rubbish", + "5100450": "[Ringed City] Titanite Chunk", + "5100460": "[Ringed City] Black Witch Veil", + "5100470": "[Ringed City] Church Guardian Shiv", + "5100480": "[Ringed City] Twinkling Titanite", + "5100490": "[Ringed City] Fading Soul", + "5100500": "[Ringed City] Fading Soul", + "5100510": "[Ringed City] Soul of a Crestfallen Knight", + "5100520": "[Ringed City] White Preacher Head", + "5100530": "[Ringed City] Fading Soul", + "5100540": "[Ringed City] Titanite Scale", + "5100550": "[Ringed City] Titanite Scale", + "5100560": "[Ringed City] Dragonhead Greatshield", + "5100570": "[Ringed City] Titanite Scale", + "5100580": "[Ringed City] Rubbish", + "5100590": "[Ringed City] Large Soul of a Weary Warrior", + "5100600": "[Ringed City] Titanite Scale", + "5100610": "[Ringed City] Titanite Scale", + "5100620": "[Ringed City] Lightning Gem", + "5100630": "[Ringed City] Blessed Gem", + "5100640": "[Ringed City] Simple Gem", + "5100650": "[Ringed City] Large Soul of a Weary Warrior", + "5100660": "[Ringed City] Lightning Arrow", + "5100670": "[Ringed City] Chloranthy Ring+3", + "5100680": "[Ringed City] Ember", + "5100690": "[Ringed City] Filianore's Spear Ornament", + "5100700": "[Ringed City] Antiquated Plain Garb", + "5100701": "[Ringed City] Violet Wrappings", + "5100710": "[Ringed City] Soul of a Weary Warrior", + "5100720": "[Ringed City] Fading Soul", + "5100730": "[Ringed City] Fading Soul", + "5100740": "[Ringed City] Fading Soul", + "5100750": "[Ringed City] Twinkling Titanite", + "5100760": "[Ringed City] Ritual Spear Fragment", + "5100770": "[Ringed City] Budding Green Blossom", + "5100780": "[Ringed City] Fading Soul", + "5100790": "[Ringed City] Fading Soul", + "5100800": "[Ringed City] Titanite Chunk", + "5100810": "[Ringed City] Large Soul of a Weary Warrior", + "5100820": "[Ringed City] Fading Soul", + "5100830": "[Ringed City] Soul of a Weary Warrior", + "5100840": "[Ringed City] Fading Soul", + "5100850": "[Ringed City] Titanite Scale", + "5100860": "[Ringed City] Soul of a Crestfallen Knight", + "5100870": "[Ringed City] White Birch Bow", + "5100880": "[Ringed City] Titanite Chunk", + "5100890": "[Ringed City] Fading Soul", + "5100900": "[Ringed City] Young White Branch", + "5100910": "[Ringed City] Young White Branch", + "5100920": "[Ringed City] Young White Branch", + "10700000": "[Skeleton - Scimitar] Scimitar", + "10700001": "[Skeleton - Scimitar] Human Pine Resin", + "10700100": "[Skeleton - Falchion] Falchion", + "10700101": "[Skeleton - Falchion] Human Pine Resin", + "10701000": "[Skeleton - Scimitar] Scimitar", + "10701001": "[Skeleton - Scimitar] Kukri", + "10701100": "[Skeleton - Falchion] Falchion", + "10701101": "[Skeleton - Falchion] Carthus Rouge", + "10701200": "[Skeleton - Bow] Longbow", + "10701201": "[Skeleton - Bow] Fire Arrow", + "10701300": "[Skeleton - Firebomb] Firebomb", + "10701400": "[Skeleton - Ball] Alluring Skull", + "10701500": "[Skeleton - Ball] Alluring Skull", + "10702000": "[Skeleton - Scimitar] Scimitar", + "10702001": "[Skeleton - Scimitar] Yellow Bug Pellet", + "10702100": "[Skeleton - Falchion] Falchion", + "10702101": "[Skeleton - Falchion] Yellow Bug Pellet", + "10702200": "[Skeleton - Bow] Longbow", + "10702201": "[Skeleton - Bow] Fire Arrow", + "10702300": "[Skeleton - Firebomb] Firebomb", + "10702400": "[Skeleton] Alluring Skull", + "10703000": "[Skeleton] Human Pine Resin", + "10703100": "[Skeleton] Human Pine Resin", + "10900000": "[Pus of Man #1] Dark Gem, Titanite Shard", + "10900001": "[Pus of Man #1] Titanite Shard", + "10900002": "[Pus of Man #1] Ember", + "10900003": "[Pus of Man #1] Ember", + "10900010": "[Pus of Man #2] Dark Gem, Titanite Shard", + "10900011": "[Pus of Man #2] Titanite Shard", + "10900012": "[Pus of Man #2] Ember", + "10900013": "[Pus of Man #2] Ember", + "10901000": "[Pus of Man #3] Dark Gem, Large Titanite Shard, Titanite Chunk", + "10901001": "[Pus of Man #3] Ember", + "10902000": "[Pus of Man #4] Dark Gem, Large Titanite Shard, Titanite Chunk", + "10902001": "[Pus of Man #4] Ember", + "10903000": "[Pus of Man #5] Dark Gem, Large Titanite Shard, Titanite Chunk", + "10903001": "[Pus of Man #5] Ember", + "11000000": "[Hollow Soldier - Sword] Long Sword", + "11000001": "[Hollow Soldier - Sword] Deserter Trousers", + "11000002": "[Hollow Soldier - Sword] Firebomb", + "11000003": "[Hollow Soldier - Sword] Titanite Shard", + "11000004": "[Hollow Soldier - Sword] Raw Gem", + "11000100": "[Hollow Soldier - Hilt] Broken Straight Sword", + "11000101": "[Hollow Soldier - Hilt] Titanite Shard", + "11000102": "[Hollow Soldier - Hilt] Raw Gem", + "11000200": "[Hollow Soldier - Sword & Shield] Long Sword", + "11000201": "[Hollow Soldier - Sword & Shield] Iron Round Shield", + "11000202": "[Hollow Soldier - Sword & Shield] Steel Soldier Helm", + "11000203": "[Hollow Soldier - Sword & Shield] Deserter Armor", + "11000204": "[Hollow Soldier - Sword & Shield] Deserter Trousers", + "11000205": "[Hollow Soldier - Sword & Shield] Firebomb", + "11000206": "[Hollow Soldier - Sword & Shield] Titanite Shard", + "11000207": "[Hollow Soldier - Sword & Shield] Raw Gem", + "11000300": "[Hollow Soldier - Lantern] Broken Straight Sword", + "11000301": "[Hollow Soldier - Lantern] Deserter Trousers", + "11000302": "[Hollow Soldier - Lantern] Titanite Shard", + "11000303": "[Hollow Soldier - Lantern] Raw Gem", + "11000400": "[Hollow Soldier - Crossbow] Light Crossbow", + "11000401": "[Hollow Soldier - Crossbow] Steel Soldier Helm", + "11000402": "[Hollow Soldier - Crossbow] Deserter Trousers", + "11000403": "[Hollow Soldier - Crossbow] Standard Bolt", + "11000404": "[Hollow Soldier - Crossbow] Titanite Shard", + "11000405": "[Hollow Soldier - Crossbow] Raw Gem", + "11000500": "[Hollow Soldier - Spear and Shield] Spear", + "11000501": "[Hollow Soldier - Spear and Shield] Wooden Shield", + "11000502": "[Hollow Soldier - Spear and Shield] Steel Soldier Helm", + "11000503": "[Hollow Soldier - Spear and Shield] Deserter Armor", + "11000504": "[Hollow Soldier - Spear and Shield] Deserter Trousers", + "11000505": "[Hollow Soldier - Spear and Shield] Titanite Shard", + "11000506": "[Hollow Soldier - Spear and Shield] Raw Gem", + "11000600": "[Hollow Assassin] Dagger", + "11000601": "[Hollow Assassin] Deserter Trousers", + "11000602": "[Hollow Assassin] Throwing Knife", + "11000603": "[Hollow Assassin] Titanite Shard", + "11000604": "[Hollow Assassin] Raw Gem", + "11001000": "[Hollow Soldier - Sword] Long Sword", + "11001001": "[Hollow Soldier - Sword] Deserter Trousers", + "11001002": "[Hollow Soldier - Sword] Firebomb", + "11001003": "[Hollow Soldier - Sword] Large Titanite Shard", + "11001004": "[Hollow Soldier - Sword] Titanite Chunk", + "11001005": "[Hollow Soldier - Sword] Raw Gem", + "11001100": "[Hollow Soldier - Hilt] Broken Straight Sword", + "11001101": "[Hollow Soldier - Hilt] Large Titanite Shard", + "11001102": "[Hollow Soldier - Hilt] Titanite Chunk", + "11001103": "[Hollow Soldier - Hilt] Raw Gem", + "11001200": "[Hollow Soldier - Sword & Shield] Long Sword", + "11001201": "[Hollow Soldier - Sword & Shield] Iron Round Shield", + "11001202": "[Hollow Soldier - Sword & Shield] Steel Soldier Helm", + "11001203": "[Hollow Soldier - Sword & Shield] Deserter Armor", + "11001204": "[Hollow Soldier - Sword & Shield] Deserter Trousers", + "11001205": "[Hollow Soldier - Sword & Shield] Firebomb", + "11001206": "[Hollow Soldier - Sword & Shield] Large Titanite Shard", + "11001207": "[Hollow Soldier - Sword & Shield] Titanite Chunk", + "11001208": "[Hollow Soldier - Sword & Shield] Raw Gem", + "11001300": "[Hollow Soldier - Lantern] Broken Straight Sword", + "11001301": "[Hollow Soldier - Lantern] Deserter Trousers", + "11001302": "[Hollow Soldier - Lantern] Large Titanite Shard", + "11001303": "[Hollow Soldier - Lantern] Titanite Chunk", + "11001304": "[Hollow Soldier - Lantern] Raw Gem", + "11001400": "[Hollow Soldier - Crossbow] Light Crossbow", + "11001401": "[Hollow Soldier - Crossbow] Steel Soldier Helm", + "11001402": "[Hollow Soldier - Crossbow] Deserter Trousers", + "11001403": "[Hollow Soldier - Crossbow] Standard Bolt", + "11001404": "[Hollow Soldier - Crossbow] Large Titanite Shard", + "11001405": "[Hollow Soldier - Crossbow] Titanite Chunk", + "11001406": "[Hollow Soldier - Crossbow] Raw Gem", + "11001500": "[Hollow Soldier - Spear and Shield] Spear", + "11001501": "[Hollow Soldier - Spear and Shield] Wooden Shield", + "11001502": "[Hollow Soldier - Spear and Shield] Steel Soldier Helm", + "11001503": "[Hollow Soldier - Spear and Shield] Deserter Armor", + "11001504": "[Hollow Soldier - Spear and Shield] Deserter Trousers", + "11001505": "[Hollow Soldier - Spear and Shield] Large Titanite Shard", + "11001506": "[Hollow Soldier - Spear and Shield] Titanite Chunk", + "11001507": "[Hollow Soldier - Spear and Shield] Raw Gem", + "11001600": "[Hollow Assassin] Dagger", + "11001601": "[Hollow Assassin] Deserter Trousers", + "11001602": "[Hollow Assassin] Throwing Knife", + "11001603": "[Hollow Assassin] Large Titanite Shard", + "11001604": "[Hollow Assassin] Titanite Chunk", + "11001605": "[Hollow Assassin] Raw Gem", + "11002000": "[Hollow Soldier - Sword] Long Sword", + "11002001": "[Hollow Soldier - Sword] Deserter Trousers", + "11002002": "[Hollow Soldier - Sword] Firebomb", + "11002003": "[Hollow Soldier - Sword] Large Titanite Shard", + "11002004": "[Hollow Soldier - Sword] Titanite Chunk", + "11002100": "[Hollow Soldier - Hilt] Broken Straight Sword", + "11002101": "[Hollow Soldier - Hilt] Large Titanite Shard", + "11002102": "[Hollow Soldier - Hilt] Titanite Chunk", + "11002200": "[Hollow Soldier - Sword & Shield] Long Sword", + "11002201": "[Hollow Soldier - Sword & Shield] Iron Round Shield", + "11002202": "[Hollow Soldier - Sword & Shield] Steel Soldier Helm", + "11002203": "[Hollow Soldier - Sword & Shield] Deserter Armor", + "11002204": "[Hollow Soldier - Sword & Shield] Deserter Trousers", + "11002205": "[Hollow Soldier - Sword & Shield] Firebomb", + "11002206": "[Hollow Soldier - Sword & Shield] Large Titanite Shard", + "11002207": "[Hollow Soldier - Sword & Shield] Titanite Chunk", + "11002400": "[Hollow Soldier - Crossbow] Light Crossbow", + "11002401": "[Hollow Soldier - Crossbow] Steel Soldier Helm", + "11002402": "[Hollow Soldier - Crossbow] Deserter Trousers", + "11002403": "[Hollow Soldier - Crossbow] Standard Bolt", + "11002404": "[Hollow Soldier - Crossbow] Large Titanite Shard", + "11002405": "[Hollow Soldier - Crossbow] Titanite Chunk", + "11002500": "[Hollow Soldier - Spear and Shield] Spear", + "11002501": "[Hollow Soldier - Spear and Shield] Wooden Shield", + "11002502": "[Hollow Soldier - Spear and Shield] Steel Soldier Helm", + "11002503": "[Hollow Soldier - Spear and Shield] Deserter Armor", + "11002504": "[Hollow Soldier - Spear and Shield] Deserter Trousers", + "11002505": "[Hollow Soldier - Spear and Shield] Large Titanite Shard", + "11002506": "[Hollow Soldier - Spear and Shield] Titanite Chunk", + "11050000": "[Large Hollow Soldier - Greataxe] Greataxe", + "11050001": "[Large Hollow Soldier - Greataxe] Titanite Shard", + "11050002": "[Large Hollow Soldier - Greataxe] Raw Gem", + "11050100": "[Large Hollow Soldier - Halberd] Halberd", + "11050101": "[Large Hollow Soldier - Halberd] Titanite Shard", + "11050102": "[Large Hollow Soldier - Halberd] Raw Gem", + "11051000": "[Large Hollow Soldier - Greataxe] Greataxe", + "11051001": "[Large Hollow Soldier - Greataxe] Large Titanite Shard", + "11051002": "[Large Hollow Soldier - Greataxe] Titanite Chunk", + "11051003": "[Large Hollow Soldier - Greataxe] Raw Gem", + "11051100": "[Large Hollow Soldier - Halberd] Halberd", + "11051101": "[Large Hollow Soldier - Halberd] Large Titanite Shard", + "11051102": "[Large Hollow Soldier - Halberd] Titanite Chunk", + "11051103": "[Large Hollow Soldier - Halberd] Raw Gem", + "11300000": "[Unk16] Poison Gem", + "11300001": "[Unk16] Heavy Gem", + "11301000": "[Unk16] Dark Gem", + "11700000": "[Carthus Swordsman - Sword] Carthus Curved Sword", + "11700001": "[Carthus Swordsman - Sword] Carthus Shield", + "11700002": "[Carthus Swordsman - Sword] Sharp Gem, Titanite Shard, Large Titanite Shard", + "11700003": "[Carthus Swordsman - Sword] Vertebra Shackle, Ember", + "11700100": "[Carthus Swordsman - Greatsword] Carthus Curved Greatsword", + "11700101": "[Carthus Swordsman - Greatsword] Sharp Gem, Titanite Shard, Large Titanite Shard", + "11700102": "[Carthus Swordsman - Greatsword] Vertebra Shackle, Ember", + "11700103": "[Carthus Swordsman - Greatsword] Carthus Rouge", + "11700200": "[Carthus Swordsman - Bow] Longbow", + "11700201": "[Carthus Swordsman - Bow] Fire Arrow", + "11700202": "[Carthus Swordsman - Bow] Sharp Gem, Titanite Shard, Large Titanite Shard", + "11700203": "[Carthus Swordsman - Bow] Vertebra Shackle, Ember", + "11800000": "[Carthus Swordsman - Shotel] Carthus Shotel", + "11800001": "[Carthus Swordsman - Shotel] Sharp Gem, Titanite Shard, Large Titanite Shard", + "11800002": "[Carthus Swordsman - Shotel] Vertebra Shackle, Ember", + "11800003": "[Carthus Swordsman - Shotel] Kukri", + "11800100": "[Carthus Swordsman - Shotel] Carthus Shotel", + "11800101": "[Carthus Swordsman - Shotel] Sharp Gem, Titanite Shard, Large Titanite Shard", + "11800102": "[Carthus Swordsman - Shotel] Vertebra Shackle, Ember", + "11801000": "[Carthus Swordsman - Shotel] Carthus Shotel", + "11801001": "[Carthus Swordsman - Shotel] Sharp Gem, Titanite Shard, Large Titanite Shard", + "11801002": "[Carthus Swordsman - Shotel] Vertebra Shackle, Ember", + "11801003": "[Carthus Swordsman - Shotel] Yellow Bug Pellet", + "11801100": "[Carthus Swordsman - Shotel] Carthus Shotel", + "11801101": "[Carthus Swordsman - Shotel] Sharp Gem, Titanite Shard, Large Titanite Shard", + "11801102": "[Carthus Swordsman - Shotel] Vertebra Shackle, Ember", + "11801103": "[Carthus Swordsman - Shotel] Yellow Bug Pellet", + "11900000": "[Cathedral Knight - Mace] Great Mace", + "11900001": "[Cathedral Knight - Mace] Cathedral Knight Greatshield", + "11900002": "[Cathedral Knight - Mace] Cathedral Knight Helm", + "11900003": "[Cathedral Knight - Mace] Cathedral Knight Armor", + "11900004": "[Cathedral Knight - Mace] Cathedral Knight Gauntlets", + "11900005": "[Cathedral Knight - Mace] Cathedral Knight Leggings", + "11900006": "[Cathedral Knight - Mace] Titanite Shard, Ember", + "11900100": "[Cathedral Knight - Greatsword] Cathedral Knight Greatsword", + "11900101": "[Cathedral Knight - Greatsword] Cathedral Knight Helm", + "11900102": "[Cathedral Knight - Greatsword] Cathedral Knight Armor", + "11900103": "[Cathedral Knight - Greatsword] Cathedral Knight Gauntlets", + "11900104": "[Cathedral Knight - Greatsword] Cathedral Knight Leggings", + "11900105": "[Cathedral Knight - Greatsword] Titanite Shard, Ember", + "11900200": "[Cathedral Knight - Mace] Great Mace", + "11900201": "[Cathedral Knight - Mace] Cathedral Knight Greatshield", + "11900202": "[Cathedral Knight - Mace] Heavy Crossbow", + "11900203": "[Cathedral Knight - Mace] Cathedral Knight Helm", + "11900204": "[Cathedral Knight - Mace] Cathedral Knight Armor", + "11900205": "[Cathedral Knight - Mace] Cathedral Knight Gauntlets", + "11900206": "[Cathedral Knight - Mace] Cathedral Knight Leggings", + "11900207": "[Cathedral Knight - Mace] Heavy Bolt", + "11900208": "[Cathedral Knight - Mace] Titanite Shard, Ember", + "11901000": "[Cathedral Knight - Greatsword] Great Mace", + "11901001": "[Cathedral Knight - Greatsword] Cathedral Knight Greatshield", + "11901002": "[Cathedral Knight - Greatsword] Cathedral Knight Helm", + "11901003": "[Cathedral Knight - Greatsword] Cathedral Knight Armor", + "11901004": "[Cathedral Knight - Greatsword] Cathedral Knight Gauntlets", + "11901005": "[Cathedral Knight - Greatsword] Cathedral Knight Leggings", + "11901006": "[Cathedral Knight - Greatsword] Large Titanite Shard, Titanite Chunk, Ember", + "11901100": "[Cathedral Knight - Mace] Cathedral Knight Greatsword", + "11901101": "[Cathedral Knight - Mace] Cathedral Knight Helm", + "11901102": "[Cathedral Knight - Mace] Cathedral Knight Armor", + "11901103": "[Cathedral Knight - Mace] Cathedral Knight Gauntlets", + "11901104": "[Cathedral Knight - Mace] Cathedral Knight Leggings", + "11901105": "[Cathedral Knight - Mace] Large Titanite Shard, Titanite Chunk, Ember", + "11901110": "[Cathedral Knight - Greatsword] Cathedral Knight Greatsword", + "11901111": "[Cathedral Knight - Greatsword] Cathedral Knight Helm", + "11901112": "[Cathedral Knight - Greatsword] Cathedral Knight Armor", + "11901113": "[Cathedral Knight - Greatsword] Cathedral Knight Gauntlets", + "11901114": "[Cathedral Knight - Greatsword] Cathedral Knight Leggings", + "11901120": "[Cathedral Knight - Oceiros] Magic Stoneplate Ring", + "12000000": "[Hollow Slave - Axe] Thrall Axe", + "12000001": "[Hollow Slave - Axe] Thrall Hood", + "12000002": "[Hollow Slave - Axe] Titanite Shard", + "12000100": "[Hollow Slave - Axe] Thrall Hood", + "12000101": "[Hollow Slave - Axe] Titanite Shard", + "12000200": "[Hollow Slave - Flamberge] Flamberge", + "12000201": "[Hollow Slave - Flamberge] Thrall Hood", + "12000202": "[Hollow Slave - Flamberge] Titanite Shard", + "12000300": "[Hollow Slave - Flamberge] Thrall Hood", + "12000301": "[Hollow Slave - Flamberge] Titanite Shard", + "12001000": "[Hollow Slave - Axe] Thrall Axe", + "12001001": "[Hollow Slave - Axe] Thrall Hood", + "12001002": "[Hollow Slave - Axe] Titanite Shard, Deep Gem", + "12001100": "[Hollow Slave - Axe] Thrall Hood", + "12001101": "[Hollow Slave - Axe] Titanite Shard, Deep Gem", + "12001200": "[Hollow Slave - Flamberge] Flamberge", + "12001201": "[Hollow Slave - Flamberge] Thrall Hood", + "12001202": "[Hollow Slave - Flamberge] Titanite Shard, Deep Gem", + "12001300": "[Hollow Slave - Flamberge] Thrall Hood", + "12001301": "[Hollow Slave - Flamberge] Titanite Shard, Deep Gem", + "12002000": "[Hollow Slave - Axe] Thrall Axe", + "12002001": "[Hollow Slave - Axe] Thrall Hood", + "12002002": "[Hollow Slave - Axe] Crystal Gem, Titanite Chunk", + "12002100": "[Hollow Slave - Axe] Thrall Hood", + "12002101": "[Hollow Slave - Axe] Crystal Gem, Titanite Chunk", + "12002200": "[Hollow Slave - Flamberge] Flamberge", + "12002201": "[Hollow Slave - Flamberge] Thrall Hood", + "12002202": "[Hollow Slave - Flamberge] Crystal Gem, Titanite Chunk", + "12002300": "[Hollow Slave - Flamberge] Thrall Hood", + "12002301": "[Hollow Slave - Flamberge] Crystal Gem, Titanite Chunk", + "12003000": "[Hollow Slave - Axe] Thrall Axe", + "12003001": "[Hollow Slave - Axe] Thrall Hood", + "12003002": "[Hollow Slave - Axe] Titanite Chunk", + "12003100": "[Hollow Slave - Axe] Thrall Hood", + "12003101": "[Hollow Slave - Axe] Titanite Chunk", + "12003200": "[Hollow Slave - Flamberge] Flamberge", + "12003201": "[Hollow Slave - Flamberge] Thrall Hood", + "12003202": "[Hollow Slave - Flamberge] Titanite Chunk", + "12003300": "[Hollow Slave - Flamberge] Thrall Hood", + "12003301": "[Hollow Slave - Flamberge] Titanite Chunk", + "12004000": "[Hollow Slave - Axe] Thrall Hood", + "12004001": "[Hollow Slave - Axe] Titanite Chunk, Titanite Chunk", + "12004100": "[Hollow Slave - Axe] Thrall Hood", + "12004101": "[Hollow Slave - Axe] Titanite Chunk, Titanite Chunk", + "12004200": "[Hollow Slave - Flamberge] Thrall Hood", + "12004201": "[Hollow Slave - Flamberge] Titanite Chunk, Titanite Chunk", + "12004210": "[Hollow Slave - Flamberge] Thrall Hood", + "12004211": "[Hollow Slave - Flamberge] Titanite Chunk, Titanite Chunk", + "12004220": "[Hollow Slave - Flamberge] Thrall Hood", + "12004221": "[Hollow Slave - Flamberge] Titanite Chunk, Titanite Chunk", + "12004222": "[Hollow Slave - Flamberge] Titanite Chunk", + "12100000": "[Ghru - Spear] Rotten Ghru Spear", + "12100001": "[Ghru - Spear] Ghru Rotshield", + "12100002": "[Ghru - Spear] Titanite Shard", + "12100003": "[Ghru - Spear] Poison Gem", + "12100004": "[Ghru - Spear] Rotten Pine Resin", + "12100005": "[Ghru - Spear] Wolf's Blood Swordgrass", + "12100100": "[Ghru - Curved Sword] Rotten Ghru Curved Sword", + "12100101": "[Ghru - Curved Sword] Titanite Shard", + "12100102": "[Ghru - Curved Sword] Poison Gem", + "12100103": "[Ghru - Curved Sword] Rotten Pine Resin", + "12100104": "[Ghru - Curved Sword] Wolf's Blood Swordgrass", + "12100200": "[Ghru - Dagger] Rotten Ghru Dagger", + "12100201": "[Ghru - Dagger] Titanite Shard", + "12100202": "[Ghru - Dagger] Heavy Gem", + "12100203": "[Ghru - Dagger] Black Bug Pellet", + "12100204": "[Ghru - Dagger] Wolf's Blood Swordgrass", + "12100300": "[Mad Ghru] Titanite Shard", + "12100301": "[Mad Ghru] Heavy Gem", + "12100302": "[Mad Ghru] Black Bug Pellet", + "12100303": "[Mad Ghru] Wolf's Blood Swordgrass", + "12100400": "[Smouldering Ghru - Spear] Titanite Shard", + "12101000": "[Smouldering Ghru - Spear] Rotten Ghru Spear", + "12101001": "[Smouldering Ghru - Spear] Ghru Rotshield", + "12101002": "[Smouldering Ghru - Spear] Titanite Shard", + "12101003": "[Smouldering Ghru - Spear] Large Titanite Shard", + "12101100": "[Smouldering Ghru - Curved Sword] Rotten Ghru Curved Sword", + "12101101": "[Smouldering Ghru - Curved Sword] Titanite Shard", + "12101102": "[Smouldering Ghru - Curved Sword] Large Titanite Shard", + "12101200": "[Smouldering Ghru - Dagger] Rotten Ghru Dagger", + "12101201": "[Smouldering Ghru - Dagger] Titanite Shard", + "12101202": "[Smouldering Ghru - Dagger] Large Titanite Shard, Fire Gem", + "12101300": "[Smouldering Mad Ghru] Titanite Shard", + "12101301": "[Smouldering Mad Ghru] Large Titanite Shard, Fire Gem", + "12101400": "[Smouldering Mad Ghru] Titanite Shard", + "12101401": "[Smouldering Mad Ghru] Large Titanite Shard", + "12300000": "[Cathedral Evangelist] Spiked Mace", + "12300001": "[Cathedral Evangelist] Evangelist Hat", + "12300002": "[Cathedral Evangelist] Evangelist Robe", + "12300003": "[Cathedral Evangelist] Evangelist Gloves", + "12300004": "[Cathedral Evangelist] Evangelist Trousers", + "12300005": "[Cathedral Evangelist] Titanite Shard", + "12300006": "[Cathedral Evangelist] Blessed Gem", + "12301000": "[Cathedral Evangelist #2] Spiked Mace", + "12301001": "[Cathedral Evangelist #2] Evangelist Hat", + "12301002": "[Cathedral Evangelist #2] Evangelist Robe", + "12301003": "[Cathedral Evangelist #2] Evangelist Gloves", + "12301004": "[Cathedral Evangelist #2] Evangelist Trousers", + "12301005": "[Cathedral Evangelist #2] Titanite Shard", + "12301006": "[Cathedral Evangelist #2] Blessed Gem", + "12302000": "[Cathedral Evangelist #3] Spiked Mace", + "12302001": "[Cathedral Evangelist #3] Evangelist Hat", + "12302002": "[Cathedral Evangelist #3] Evangelist Robe", + "12302003": "[Cathedral Evangelist #3] Evangelist Gloves", + "12302004": "[Cathedral Evangelist #3] Evangelist Trousers", + "12302005": "[Cathedral Evangelist #3] Titanite Shard", + "12302006": "[Cathedral Evangelist #3] Blessed Gem", + "12303000": "[Cathedral Evangelist #4] Spiked Mace", + "12303001": "[Cathedral Evangelist #4] Evangelist Hat", + "12303002": "[Cathedral Evangelist #4] Evangelist Robe", + "12303003": "[Cathedral Evangelist #4] Evangelist Gloves", + "12303004": "[Cathedral Evangelist #4] Evangelist Trousers", + "12303010": "[Cathedral Evangelist #4] Dorhys' Gnawing", + "12400000": "[Peasant Hollow - Axe] Firebomb", + "12400001": "[Peasant Hollow - Axe] Worker Hat", + "12400002": "[Peasant Hollow - Axe] Worker Garb", + "12400003": "[Peasant Hollow - Axe] Worker Gloves", + "12400004": "[Peasant Hollow - Axe] Worker Trousers", + "12400005": "[Peasant Hollow - Axe] Charcoal Pine Resin", + "12400100": "[Peasant Hollow - Lantern] Firebomb", + "12400101": "[Peasant Hollow - Lantern] Worker Hat", + "12400102": "[Peasant Hollow - Lantern] Worker Garb", + "12400103": "[Peasant Hollow - Lantern] Worker Gloves", + "12400104": "[Peasant Hollow - Lantern] Worker Trousers", + "12400105": "[Peasant Hollow - Lantern] Fire Gem", + "12400200": "[Peasant Hollow - Sickle] Harpe", + "12400201": "[Peasant Hollow - Sickle] Worker Garb", + "12400202": "[Peasant Hollow - Sickle] Worker Gloves", + "12400203": "[Peasant Hollow - Sickle] Worker Trousers", + "12400204": "[Peasant Hollow - Sickle] Charcoal Pine Bundle", + "12400300": "[Peasant Hollow - Mallet] Great Wooden Hammer", + "12400301": "[Peasant Hollow - Mallet] Worker Garb", + "12400302": "[Peasant Hollow - Mallet] Worker Gloves", + "12400303": "[Peasant Hollow - Mallet] Worker Trousers", + "12400304": "[Peasant Hollow - Mallet] Titanite Shard", + "12400400": "[Peasant Hollow - Hoe] Four-Pronged Plow", + "12400401": "[Peasant Hollow - Hoe] Worker Hat", + "12400402": "[Peasant Hollow - Hoe] Worker Garb", + "12400403": "[Peasant Hollow - Hoe] Worker Gloves", + "12400404": "[Peasant Hollow - Hoe] Worker Trousers", + "12400405": "[Peasant Hollow - Hoe] Rubbish", + "12410000": "[Giant Slave] Firebomb", + "12410001": "[Giant Slave] Large Titanite Shard", + "12410002": "[Giant Slave] Dung Pie", + "12410100": "[Giant Slave #2] Firebomb", + "12410101": "[Giant Slave #2] Large Titanite Shard", + "12410102": "[Giant Slave #2] Dung Pie", + "12410200": "[Giant Slave #3] Large Titanite Shard", + "12410201": "[Giant Slave #3] Dung Pie", + "12410300": "[Giant Slave #4] Large Titanite Shard", + "12410301": "[Giant Slave #4] Dung Pie", + "12410400": "[Giant Slave #5] Large Titanite Shard", + "12410401": "[Giant Slave #5] Dung Pie", + "12410500": "[Giant Slave #6] Large Titanite Shard", + "12410501": "[Giant Slave #6] Dung Pie", + "12500000": "[Cathedral Grave Warden] Warden Twinblades", + "12500001": "[Cathedral Grave Warden] Grave Warden Hood", + "12500002": "[Cathedral Grave Warden] Grave Warden Robe", + "12500003": "[Cathedral Grave Warden] Grave Warden Wrap", + "12500004": "[Cathedral Grave Warden] Grave Warden Skirt", + "12500005": "[Cathedral Grave Warden] Titanite Shard", + "12500006": "[Cathedral Grave Warden] Bloodred Moss Clump", + "12501000": "[Cathedral Grave Warden #2] Warden Twinblades", + "12501001": "[Cathedral Grave Warden #2] Grave Warden Hood", + "12501002": "[Cathedral Grave Warden #2] Grave Warden Robe", + "12501003": "[Cathedral Grave Warden #2] Grave Warden Wrap", + "12501004": "[Cathedral Grave Warden #2] Grave Warden Skirt", + "12501005": "[Cathedral Grave Warden #2] Large Titanite Shard, Titanite Chunk", + "12600000": "[Hollow Manservant - Saw] Great Machete", + "12600001": "[Hollow Manservant - Saw] Titanite Shard", + "12600002": "[Hollow Manservant - Saw] Rubbish", + "12600100": "[Hollow Manservant - Pot] Great Machete", + "12600101": "[Hollow Manservant - Pot] Titanite Shard", + "12600102": "[Hollow Manservant - Pot] Rubbish", + "12600200": "[Hollow Manservant - Pot #2] Great Machete", + "12600201": "[Hollow Manservant - Pot #2] Titanite Shard", + "12600202": "[Hollow Manservant - Pot #2] Rubbish", + "12601100": "[Hollow Manservant - Pot #3] Great Machete", + "12601101": "[Hollow Manservant - Pot #3] Titanite Shard", + "12601102": "[Hollow Manservant - Pot #3] Rubbish", + "12800000": "[Lothric Knight - Sword and Shield] Lothric Knight Sword", + "12800001": "[Lothric Knight - Sword and Shield] Knight's Crossbow", + "12800002": "[Lothric Knight - Sword and Shield] Lothric Knight Shield", + "12800003": "[Lothric Knight - Sword and Shield] Lothric Knight Helm", + "12800004": "[Lothric Knight - Sword and Shield] Lothric Knight Armor", + "12800005": "[Lothric Knight - Sword and Shield] Lothric Knight Gauntlets", + "12800006": "[Lothric Knight - Sword and Shield] Lothric Knight Leggings", + "12800007": "[Lothric Knight - Sword and Shield] Titanite Shard", + "12800008": "[Lothric Knight - Sword and Shield] Ember", + "12800100": "[Lothric Knight - Spear and Shield] Lothric Knight Sword", + "12800101": "[Lothric Knight - Spear and Shield] Lothric Knight Shield", + "12800102": "[Lothric Knight - Spear and Shield] Lothric Knight Helm", + "12800103": "[Lothric Knight - Spear and Shield] Lothric Knight Armor", + "12800104": "[Lothric Knight - Spear and Shield] Lothric Knight Gauntlets", + "12800105": "[Lothric Knight - Spear and Shield] Lothric Knight Leggings", + "12800106": "[Lothric Knight - Spear and Shield] Titanite Shard", + "12800107": "[Lothric Knight - Spear and Shield] Ember", + "12800108": "[Lothric Knight - Spear and Shield] Refined Gem", + "12800200": "[Lothric Knight - Spear and Greatshield] Lothric Knight Long Spear", + "12800201": "[Lothric Knight - Spear and Greatshield] Lothric Knight Greatshield", + "12800202": "[Lothric Knight - Spear and Greatshield] Lothric Knight Helm", + "12800203": "[Lothric Knight - Spear and Greatshield] Lothric Knight Armor", + "12800204": "[Lothric Knight - Spear and Greatshield] Lothric Knight Gauntlets", + "12800205": "[Lothric Knight - Spear and Greatshield] Lothric Knight Leggings", + "12800206": "[Lothric Knight - Spear and Greatshield] Titanite Shard", + "12800207": "[Lothric Knight - Spear and Greatshield] Ember", + "12800300": "[Lothric Knight - Spear and Greatshield] Lothric Knight Long Spear", + "12800301": "[Lothric Knight - Spear and Greatshield] Lothric Knight Greatshield", + "12800302": "[Lothric Knight - Spear and Greatshield] Lothric Knight Helm", + "12800303": "[Lothric Knight - Spear and Greatshield] Lothric Knight Armor", + "12800304": "[Lothric Knight - Spear and Greatshield] Lothric Knight Gauntlets", + "12800305": "[Lothric Knight - Spear and Greatshield] Lothric Knight Leggings", + "12800306": "[Lothric Knight - Spear and Greatshield] Titanite Shard", + "12800307": "[Lothric Knight - Spear and Greatshield] Ember", + "12800308": "[Lothric Knight - Spear and Greatshield] Refined Gem", + "12800400": "[Lothric Knight] Lothric Knight Sword", + "12800401": "[Lothric Knight] Knight's Crossbow", + "12800402": "[Lothric Knight] Lothric Knight Shield", + "12800403": "[Lothric Knight] Lothric Knight Helm", + "12800404": "[Lothric Knight] Lothric Knight Armor", + "12800405": "[Lothric Knight] Lothric Knight Gauntlets", + "12800406": "[Lothric Knight] Lothric Knight Leggings", + "12800407": "[Lothric Knight] Titanite Shard", + "12800408": "[Lothric Knight] Ember", + "12800409": "[Lothric Knight] Raw Gem", + "12800420": "[Lothric Knight] Raw Gem", + "12801000": "[Lothric Knight #1 - Lothric Castle] Lothric Knight Sword", + "12801001": "[Lothric Knight #1 - Lothric Castle] Knight's Crossbow", + "12801002": "[Lothric Knight #1 - Lothric Castle] Lothric Knight Shield", + "12801003": "[Lothric Knight #1 - Lothric Castle] Lothric Knight Helm", + "12801004": "[Lothric Knight #1 - Lothric Castle] Lothric Knight Armor", + "12801005": "[Lothric Knight #1 - Lothric Castle] Lothric Knight Gauntlets", + "12801006": "[Lothric Knight #1 - Lothric Castle] Lothric Knight Leggings", + "12801007": "[Lothric Knight #1 - Lothric Castle] Large Titanite Shard, Titanite Chunk", + "12801008": "[Lothric Knight #1 - Lothric Castle] Ember", + "12801009": "[Lothric Knight #1 - Lothric Castle] Sunlight Medal", + "12801100": "[Lothric Knight #2 - Lothric Castle]", + "12801101": "[Lothric Knight #2 - Lothric Castle]", + "12801102": "[Lothric Knight #2 - Lothric Castle]", + "12801103": "[Lothric Knight #2 - Lothric Castle]", + "12801104": "[Lothric Knight #2 - Lothric Castle]", + "12801105": "[Lothric Knight #2 - Lothric Castle]", + "12801106": "[Lothric Knight #2 - Lothric Castle]", + "12801107": "[Lothric Knight #2 - Lothric Castle]", + "12801108": "[Lothric Knight #2 - Lothric Castle] Sunlight Medal", + "12801109": "[Lothric Knight #3 - Lothric Castle]", + "12801200": "[Lothric Knight #3 - Lothric Castle]", + "12801201": "[Lothric Knight #3 - Lothric Castle]", + "12801202": "[Lothric Knight #3 - Lothric Castle]", + "12801203": "[Lothric Knight #3 - Lothric Castle]", + "12801204": "[Lothric Knight #3 - Lothric Castle]", + "12801205": "[Lothric Knight #3 - Lothric Castle]", + "12801206": "[Lothric Knight #3 - Lothric Castle]", + "12801207": "[Lothric Knight #3 - Lothric Castle]", + "12801208": "[Lothric Knight #3 - Lothric Castle] Sunlight Medal", + "12801300": "[Lothric Knight #4 - Lothric Castle]", + "12801301": "[Lothric Knight #4 - Lothric Castle]", + "12801302": "[Lothric Knight #4 - Lothric Castle]", + "12801303": "[Lothric Knight #4 - Lothric Castle]", + "12801304": "[Lothric Knight #4 - Lothric Castle]", + "12801305": "[Lothric Knight #4 - Lothric Castle]", + "12801306": "[Lothric Knight #4 - Lothric Castle]", + "12801307": "[Lothric Knight #4 - Lothric Castle]", + "12801308": "[Lothric Knight #4 - Lothric Castle] Sunlight Medal", + "12801309": "[Lothric Knight #5 - Lothric Castle]", + "12801400": "[Lothric Knight #5 - Lothric Castle]", + "12801401": "[Lothric Knight #5 - Lothric Castle]", + "12801402": "[Lothric Knight #5 - Lothric Castle]", + "12801403": "[Lothric Knight #5 - Lothric Castle]", + "12801404": "[Lothric Knight #5 - Lothric Castle]", + "12801405": "[Lothric Knight #5 - Lothric Castle]", + "12801406": "[Lothric Knight #5 - Lothric Castle]", + "12801407": "[Lothric Knight #5 - Lothric Castle] Sunlight Medal", + "12801408": "[Lothric Knight #5 - Lothric Castle]", + "12802100": "[Lothric Knight #1 - Grand Archives] Lothric Knight Sword", + "12802101": "[Lothric Knight #1 - Grand Archives]", + "12802102": "[Lothric Knight #1 - Grand Archives]", + "12802103": "[Lothric Knight #1 - Grand Archives]", + "12802104": "[Lothric Knight #1 - Grand Archives]", + "12802105": "[Lothric Knight #1 - Grand Archives]", + "12802106": "[Lothric Knight #1 - Grand Archives]", + "12802107": "[Lothric Knight #1 - Grand Archives]", + "12802108": "[Lothric Knight #1 - Grand Archives] Raw Gem", + "12802300": "[Lothric Knight #2 - Grand Archives] Lothric Knight Long Spear", + "12802301": "[Lothric Knight #2 - Grand Archives]", + "12802302": "[Lothric Knight #2 - Grand Archives]", + "12802303": "[Lothric Knight #2 - Grand Archives]", + "12802304": "[Lothric Knight #2 - Grand Archives]", + "12802305": "[Lothric Knight #2 - Grand Archives]", + "12802306": "[Lothric Knight #2 - Grand Archives]", + "12802307": "[Lothric Knight #2 - Grand Archives]", + "12802308": "[Lothric Knight #2 - Grand Archives] Raw Gem", + "12802400": "[Lothric Knight #3 - Grand Archives] Lothric Knight Greatsword", + "12802401": "[Lothric Knight #3 - Grand Archives]", + "12802402": "[Lothric Knight #3 - Grand Archives]", + "12802403": "[Lothric Knight #3 - Grand Archives]", + "12802404": "[Lothric Knight #3 - Grand Archives]", + "12802405": "[Lothric Knight #3 - Grand Archives]", + "12802406": "[Lothric Knight #3 - Grand Archives]", + "12802407": "[Lothric Knight #3 - Grand Archives] Lightning Gem", + "12830000": "[Lothric Knight #4 - Grand Archives] Lothric Knight Sword", + "12830001": "[Lothric Knight #4 - Grand Archives]", + "12830002": "[Lothric Knight #4 - Grand Archives]", + "12830003": "[Lothric Knight #4 - Grand Archives]", + "12830004": "[Lothric Knight #4 - Grand Archives]", + "12830005": "[Lothric Knight #4 - Grand Archives]", + "12830006": "[Lothric Knight #4 - Grand Archives] Titanite Chunk", + "12830007": "[Lothric Knight #4 - Grand Archives]", + "12830008": "[Lothric Knight #4 - Grand Archives] Raw Gem", + "12830100": "[Lothric Knight #5 - Grand Archives] Lothric Knight Greatshield", + "12830101": "[Lothric Knight #5 - Grand Archives]", + "12830102": "[Lothric Knight #5 - Grand Archives]", + "12830103": "[Lothric Knight #5 - Grand Archives]", + "12830104": "[Lothric Knight #5 - Grand Archives]", + "12830105": "[Lothric Knight #5 - Grand Archives] Titanite Chunk", + "12830106": "[Lothric Knight #5 - Grand Archives]", + "12830107": "[Lothric Knight #5 - Grand Archives] Raw Gem", + "12830300": "[Lothric Knight #6 - Grand Archives] Lothric Knight Greatsword", + "12830301": "[Lothric Knight #6 - Grand Archives]", + "12830302": "[Lothric Knight #6 - Grand Archives]", + "12830303": "[Lothric Knight #6 - Grand Archives]", + "12830304": "[Lothric Knight #6 - Grand Archives]", + "12830305": "[Lothric Knight #6 - Grand Archives] Titanite Chunk", + "12830306": "[Lothric Knight #6 - Grand Archives]", + "12830307": "[Lothric Knight #6 - Grand Archives] Lightning Gem", + "12900000": "[Winged Knight - High Wall] Winged Knight Halberd", + "12900001": "[Winged Knight - High Wall] Titanite Shard", + "12900002": "[Winged Knight - High Wall] Blessed Gem", + "12901000": "[Winged Knight #1 - Lothric Castle] Winged Knight Halberd", + "12901001": "[Winged Knight #1 - Lothric Castle] Titanite Shard, Titanite Chunk", + "12901002": "[Winged Knight #1 - Lothric Castle] Blessed Gem", + "12901100": "[Winged Knight #2 - Lothric Castle] Winged Knight Twinaxes", + "12901101": "[Winged Knight #2 - Lothric Castle] Titanite Shard, Titanite Chunk", + "12901102": "[Winged Knight #2 - Lothric Castle] Blessed Gem", + "12902000": "[Winged Knight #1 - Grand Archives] Winged Knight Halberd", + "12902001": "[Winged Knight #1 - Grand Archives] Titanite Shard, Titanite Chunk", + "12902002": "[Winged Knight #1 - Grand Archives] Blessed Gem", + "12902100": "[Winged Knight #2 - Grand Archives] Winged Knight Twinaxes", + "12902101": "[Winged Knight #2 - Grand Archives] Titanite Shard, Titanite Chunk", + "12902102": "[Winged Knight #2 - Grand Archives] Blessed Gem", + "12902200": "[Winged Knight #3 - Grand Archives] Titanite Slab", + "13000000": "[Black Knight #1] Black Knight Greatsword", + "13000001": "[Black Knight #1]", + "13000002": "[Black Knight #1]", + "13000003": "[Black Knight #1]", + "13000004": "[Black Knight #1]", + "13000005": "[Black Knight #1]", + "13000006": "[Black Knight #1] Ember", + "13000100": "[Black Knight #2] Black Knight Greataxe", + "13000101": "[Black Knight #2]", + "13000102": "[Black Knight #2]", + "13000103": "[Black Knight #2]", + "13000104": "[Black Knight #2]", + "13000105": "[Black Knight #2]", + "13000106": "[Black Knight #2] Ember", + "13001000": "[Black Knight #3] Black Knight Greatsword", + "13001001": "[Black Knight #3]", + "13001002": "[Black Knight #3]", + "13001003": "[Black Knight #3]", + "13001004": "[Black Knight #3]", + "13001005": "[Black Knight #3]", + "13001006": "[Black Knight #3] Ember", + "13001100": "[Black Knight #4] Black Knight Greataxe", + "13001101": "[Black Knight #4]", + "13001102": "[Black Knight #4]", + "13001103": "[Black Knight #4]", + "13001104": "[Black Knight #4]", + "13001105": "[Black Knight #4]", + "13001106": "[Black Knight #4] Ember", + "13002000": "[Black Knight #5] Black Knight Greatsword", + "13002001": "[Black Knight #5]", + "13002002": "[Black Knight #5]", + "13002003": "[Black Knight #5]", + "13002004": "[Black Knight #5]", + "13002005": "[Black Knight #5]", + "13002006": "[Black Knight #5] Ember", + "13002100": "[Black Knight #6] Black Knight Greataxe", + "13002101": "[Black Knight #6]", + "13002102": "[Black Knight #6]", + "13002103": "[Black Knight #6]", + "13002104": "[Black Knight #6]", + "13002105": "[Black Knight #6]", + "13002106": "[Black Knight #6] Ember", + "13100000": "[Boreal Outrider Knight] Irithyll Straight Sword", + "13101000": "[Boreal Outrider Knight] Outrider Knight Helm", + "13101001": "[Boreal Outrider Knight] Outrider Knight Armor", + "13101002": "[Boreal Outrider Knight] Outrider Knight Gauntlets", + "13101003": "[Boreal Outrider Knight] Outrider Knight Leggings", + "13102000": "[Boreal Outrider Knight] Irithyll Straight Sword", + "13103000": "[Boreal Outrider Knight] Irithyll Rapier", + "13210000": "[Crystal Sage] Crystal Scroll", + "13400000": "[Archive Scholar] Scholar's Candlestick", + "13400001": "[Archive Scholar] Scholar's Robe", + "13400002": "[Archive Scholar] Crystal Gem", + "13400100": "[Archive Scholar #2] Scholar's Candlestick", + "13400101": "[Archive Scholar #2] Scholar's Robe", + "13400102": "[Archive Scholar #2] Crystal Gem", + "13500000": "[Irithyllian Slave] Blood Gem", + "13500001": "[Irithyllian Slave] Blue Bug Pellet", + "13500100": "[Irithyllian Slave #2] Blood Gem", + "13500101": "[Irithyllian Slave #2] Blue Bug Pellet", + "13500200": "[Irithyllian Slave #3] Blood Gem", + "13500201": "[Irithyllian Slave #3] Blue Bug Pellet", + "13500300": "[Irithyllian Slave #4] Blood Gem", + "13500301": "[Irithyllian Slave #4] Blue Bug Pellet", + "13500400": "[Irithyllian Slave #5] Blood Gem", + "13500401": "[Irithyllian Slave #5] Claymore", + "13600000": "[Lycanthrope] Titanite Shard", + "13600001": "[Lycanthrope] Ember", + "13700000": "[Lycanthrope Hunter] Titanite Shard", + "13700001": "[Lycanthrope Hunter] Pike", + "13800000": "[Serpent-man Summoner] Mendicant's Staff", + "13900000": "[Serpent-man] Large Titanite Shard, Titanite Chunk", + "13900001": "[Serpent-man] Lightning Gem", + "13900100": "[Serpent-man #2] Man Serpent Hatchet", + "13900101": "[Serpent-man #2] Small Leather Shield", + "13900102": "[Serpent-man #2] Large Titanite Shard, Titanite Chunk", + "13900103": "[Serpent-man #2] Lightning Gem", + "13900200": "[Serpent-man #3] Man Serpent Hatchet", + "13900201": "[Serpent-man #3] Large Titanite Shard, Titanite Chunk", + "13900202": "[Serpent-man #3] Lightning Gem", + "13900300": "[Serpent-man #4] Man Serpent Hatchet", + "13900301": "[Serpent-man #4] Large Titanite Shard, Titanite Chunk", + "13900302": "[Serpent-man #4] Lightning Gem", + "13901000": "[Serpent-man #5] Large Titanite Shard, Titanite Chunk", + "13910000": "[Giant Serpent-man #1] Large Titanite Shard, Titanite Chunk", + "13910001": "[Giant Serpent-man #1] Lightning Gem", + "13910100": "[Giant Serpent-man #2] Large Titanite Shard, Titanite Chunk", + "13910101": "[Giant Serpent-man #2] Lightning Gem", + "14100000": "[Silver Knight #1] Silver Knight Shield", + "14100001": "[Silver Knight #1]", + "14100002": "[Silver Knight #1]", + "14100003": "[Silver Knight #1]", + "14100004": "[Silver Knight #1]", + "14100005": "[Silver Knight #1]", + "14100006": "[Silver Knight #1]", + "14100100": "[Silver Knight #2]", + "14100101": "[Silver Knight #2]", + "14100102": "[Silver Knight #2]", + "14100103": "[Silver Knight #2]", + "14100104": "[Silver Knight #2]", + "14100105": "[Silver Knight #2]", + "14100200": "[Silver Knight #3]", + "14100201": "[Silver Knight #3]", + "14100202": "[Silver Knight #3]", + "14100203": "[Silver Knight #3]", + "14100204": "[Silver Knight #3]", + "14100205": "[Silver Knight #3]", + "14100206": "[Silver Knight #3]", + "14101000": "[Silver Knight #4]", + "14101001": "[Silver Knight #4]", + "14101002": "[Silver Knight #4]", + "14101003": "[Silver Knight #4]", + "14101004": "[Silver Knight #4]", + "14101005": "[Silver Knight #4]", + "14101006": "[Silver Knight #4] Proof of a Concord Kept", + "14101100": "[Silver Knight #5]", + "14101101": "[Silver Knight #5]", + "14101102": "[Silver Knight #5]", + "14101103": "[Silver Knight #5]", + "14101104": "[Silver Knight #5]", + "14101105": "[Silver Knight #5] Proof of a Concord Kept", + "14101200": "[Silver Knight #6]", + "14101201": "[Silver Knight #6]", + "14101202": "[Silver Knight #6]", + "14101203": "[Silver Knight #6]", + "14101204": "[Silver Knight #6]", + "14101205": "[Silver Knight #6]", + "14101206": "[Silver Knight #6]", + "14101207": "[Silver Knight #6] Proof of a Concord Kept", + "14101300": "[Silver Knight #7]", + "14101301": "[Silver Knight #7]", + "14101302": "[Silver Knight #7]", + "14101303": "[Silver Knight #7]", + "14101304": "[Silver Knight #7]", + "14101305": "[Silver Knight #7]", + "14101306": "[Silver Knight #7] Proof of a Concord Kept", + "14300000": "[Undead Cleric #1 - Cemetery of Ash] Cleric's Sacred Chime", + "14300001": "[Undead Cleric #1 - Cemetery of Ash] Fading Soul", + "14300100": "[Undead Cleric #2 - Cemetery of Ash] Cleric's Sacred Chime", + "14300101": "[Undead Cleric #2 - Cemetery of Ash] Fading Soul", + "14300200": "[Undead Cleric #3 - Cemetery of Ash] Cleric's Sacred Chime", + "14300201": "[Undead Cleric #3 - Cemetery of Ash] Fading Soul", + "14300300": "[Undead Cleric #4 - Cemetery of Ash] Cleric's Sacred Chime", + "14300301": "[Undead Cleric #4 - Cemetery of Ash] Fading Soul", + "14300400": "[Undead Cleric #5 - Cemetery of Ash] Cleric's Sacred Chime", + "14300401": "[Undead Cleric #5 - Cemetery of Ash] Fading Soul", + "14300500": "[Undead Cleric #6 - Cemetery of Ash] Cleric's Sacred Chime", + "14300501": "[Undead Cleric #6 - Cemetery of Ash] Fading Soul", + "14300600": "[Undead Cleric #7 - Cemetery of Ash] Cleric's Sacred Chime", + "14300601": "[Undead Cleric #7 - Cemetery of Ash] Fading Soul", + "14301000": "[Undead Cleric #1 - Untended Graves] Cleric's Sacred Chime", + "14301001": "[Undead Cleric #1 - Untended Graves] Large Soul of a Deserted Corpse", + "14301100": "[Undead Cleric #2 - Untended Graves] Cleric's Sacred Chime", + "14301101": "[Undead Cleric #2 - Untended Graves] Large Soul of a Deserted Corpse", + "14301200": "[Undead Cleric #3 - Untended Graves] Cleric's Sacred Chime", + "14301201": "[Undead Cleric #3 - Untended Graves] Large Soul of a Deserted Corpse", + "14301300": "[Undead Cleric #4 - Untended Graves] Cleric's Sacred Chime", + "14301301": "[Undead Cleric #4 - Untended Graves] Large Soul of a Deserted Corpse", + "14301400": "[Undead Cleric #5 - Untended Graves] Cleric's Sacred Chime", + "14301401": "[Undead Cleric #5 - Untended Graves] Large Soul of a Deserted Corpse", + "14301500": "[Undead Cleric #6 - Untended Graves] Cleric's Sacred Chime", + "14301501": "[Undead Cleric #6 - Untended Graves] Large Soul of a Deserted Corpse", + "14301600": "[Undead Cleric #7 - Untended Graves] Cleric's Sacred Chime", + "14301601": "[Undead Cleric #7 - Untended Graves] Large Soul of a Deserted Corpse", + "14400000": "[Sage Prentice #1] Long Sword", + "14400001": "[Sage Prentice #1] Firebomb", + "14400002": "[Sage Prentice #1] Crystal Gem", + "14400100": "[Sage Prentice #2] Broken Straight Sword", + "14400101": "[Sage Prentice #2] Crystal Gem", + "14400200": "[Sage Prentice #3] Long Sword", + "14400201": "[Sage Prentice #3] Firebomb", + "14400202": "[Sage Prentice #3] Crystal Gem", + "14400300": "[Sage Prentice #4] Broken Straight Sword", + "14400301": "[Sage Prentice #4] Crystal Gem", + "14400400": "[Sage Prentice #5] Light Crossbow", + "14400401": "[Sage Prentice #5] Standard Bolt", + "14400402": "[Sage Prentice #5] Crystal Gem", + "14400500": "[Sage Prentice #6] Pike", + "14400501": "[Sage Prentice #6] Wooden Shield", + "14400502": "[Sage Prentice #6] Crystal Gem", + "14400600": "[Sage Prentice #7] Dagger", + "14400601": "[Sage Prentice #7] Throwing Knife", + "14400602": "[Sage Prentice #7] Crystal Gem", + "14401000": "[#1] Long Sword", + "14401001": "[#1] Firebomb, Red Bug Pellet", + "14401100": "[#2] Broken Straight Sword", + "14401200": "[#3] Long Sword", + "14401201": "[#3] Firebomb, Red Bug Pellet", + "14401300": "[#4] Broken Straight Sword", + "14401301": "[#4] Red Bug Pellet", + "14401400": "[#5] Light Crossbow", + "14401401": "[#5] Standard Bolt", + "14401500": "[#6] Spear", + "14401501": "[#6] Wooden Shield", + "14401502": "[#6] Red Bug Pellet", + "14401600": "[#7] Dagger", + "14401601": "[#7] Throwing Knife", + "14401602": "[#7] Red Bug Pellet", + "14401700": "[#8] Arbalest", + "14401701": "[#8] Heavy Bolt", + "14401702": "[#8] Red Bug Pellet", + "14402000": "[#1] Blessed Gem", + "14403000": "[#1] Blessed Gem", + "14450000": "[#1] Greataxe", + "14450001": "[#1] Crystal Gem", + "14450100": "[#2] Halberd", + "14450101": "[#2] Crystal Gem", + "14460000": "[Sage's Devout] Sorcerer's Staff", + "14460001": "[Sage's Devout] Crystal Gem", + "14700000": "[Bonewheel Skeleton] Bonewheel Shield", + "14700001": "[Bonewheel Skeleton] Large Titanite Shard", + "20200000": "[Undead Dog - High Wall] None", + "20201000": "[Large Undead Dog - High Wall] None", + "20202000": "[Undead Dog] None", + "20203000": "[Undead Dog] None", + "20204000": "[Undead Dog] None", + "20210000": "[Small Undead Dog - High Wall] None", + "20211000": "[Small Undead Dog - High Wall] None", + "20212000": "[Undead Dog] None", + "20213000": "[Undead Dog] None", + "20300000": "[Pontiff Knight #1] Pontiff Knight Curved Sword", + "20300001": "[Pontiff Knight #1] Pontiff Knight Shield", + "20300002": "[Pontiff Knight #1] Pontiff Knight Crown", + "20300003": "[Pontiff Knight #1] Pontiff Knight Armor", + "20300004": "[Pontiff Knight #1] Pontiff Knight Gauntlets", + "20300005": "[Pontiff Knight #1] Pontiff Knight Leggings", + "20300006": "[Pontiff Knight #1] Large Titanite Shard", + "20300100": "[Pontiff Knight #2] Pontiff Knight Curved Sword", + "20300101": "[Pontiff Knight #2] Pontiff Knight Crown", + "20300102": "[Pontiff Knight #2] Pontiff Knight Armor", + "20300103": "[Pontiff Knight #2] Pontiff Knight Gauntlets", + "20300104": "[Pontiff Knight #2] Pontiff Knight Leggings", + "20300105": "[Pontiff Knight #2] Large Titanite Shard", + "20300200": "[Pontiff Knight #3] Pontiff Knight Great Scythe", + "20300201": "[Pontiff Knight #3] Pontiff Knight Crown", + "20300202": "[Pontiff Knight #3] Pontiff Knight Armor", + "20300203": "[Pontiff Knight #3] Pontiff Knight Gauntlets", + "20300204": "[Pontiff Knight #3] Pontiff Knight Leggings", + "20300205": "[Pontiff Knight #3] Large Titanite Shard", + "20400000": "[Monstrosity of Sin #1] Dung Pie", + "20400001": "[Monstrosity of Sin #1] Dung Pie", + "20400010": "[Monstrosity of Sin #2] Dung Pie", + "20400011": "[Monstrosity of Sin #2] Dung Pie", + "20400020": "[Monstrosity of Sin #3] Eleonora", + "20600000": "[Corpse-grub #1] Soul of a Deserted Corpse, Large Soul of a Deserted Corpse", + "20601000": "[Corpse-grub #2] None", + "20601010": "[Corpse-grub #2] Great Magic Shield", + "20700000": "[Wretch #1] Pale Pine Resin", + "20700100": "[Wretch #2] Tailbone Spear", + "20700101": "[Wretch #2] Pale Pine Resin", + "20700200": "[Wretch #3] Tailbone Short Sword", + "20700201": "[Wretch #3] Pale Pine Resin", + "20800000": "None", + "21000000": "[Sewer Centipede - Irithyll] Green Blossom, Budding Green Blossom", + "21001000": "[Sewer Centipede - Profaned Capital] Purging Stone", + "21100000": "[Hound-rat] Soul of a Deserted Corpse", + "21101000": "[Hound-rat] Soul of a Deserted Corpse", + "21102000": "[Hound-rat] Soul of a Deserted Corpse", + "21103000": "[Hound-rat] Soul of a Deserted Corpse", + "21200000": "[Mimic] Symbol of Avarice", + "21200001": "[Mimic] Deep Braille Divine Tome", + "21201000": "[Mimic] Symbol of Avarice", + "21201001": "[Mimic] Sunlight Straight Sword", + "21201100": "[Mimic] Symbol of Avarice", + "21201101": "[Mimic] Titanite Scale", + "21202000": "[Mimic] Symbol of Avarice", + "21202001": "[Mimic] Black Blade", + "21203000": "[Mimic] Symbol of Avarice", + "21203001": "[Mimic] Dragonslayer Lightning Arrow", + "21203010": "[Mimic] Symbol of Avarice", + "21203011": "[Mimic] Titanite Scale", + "21203020": "[Mimic] Symbol of Avarice", + "21203021": "[Mimic] Rusted Gold Coin", + "21203030": "[Mimic] Symbol of Avarice", + "21203031": "[Mimic] Court Sorcerer's Staff", + "21203040": "[Mimic] Symbol of Avarice", + "21203041": "[Mimic] Greatshield of Glory", + "21203050": "[Mimic] Symbol of Avarice", + "21203051": "[Mimic] Estus Shard", + "21203100": "[Mimic] Symbol of Avarice", + "21203101": "[Mimic] Dark Clutch Ring", + "21204000": "[Mimic] Symbol of Avarice", + "21204001": "[Mimic] Golden Ritual Spear", + "21205000": "[Mimic] Symbol of Avarice", + "21205001": "[Mimic] Deep Battle Axe", + "21206000": "[Mimic] Symbol of Avarice", + "21206001": "[Mimic] Ring of the Evil Eye +3", + "21300000": "[Writhing Rotten Flesh] Titanite Shard", + "21301000": "[Writhing Rotten Flesh] Titanite Shard", + "21310000": "[Writhing Rotten Flesh] Titanite Shard", + "21311000": "[Writhing Rotten Flesh] Titanite Shard", + "21320000": "[Smouldering Rotten Flesh] Titanite Shard", + "21320001": "[Smouldering Rotten Flesh] Fire Gem", + "21400000": "[Basilisk] Mossfruit", + "21401000": "[Basilisk] Mossfruit", + "21402000": "[Basilisk] Mossfruit", + "21500000": "[Crystal Lizard] Raw Gem", + "21501000": "[Crystal Lizard] Sharp Gem", + "21501010": "[Crystal Lizard] Heavy Gem", + "21502000": "[Crystal Lizard] Crystal Gem", + "21502010": "[Crystal Lizard] Twinkling Titanite", + "21502020": "[Crystal Lizard] Twinkling Titanite", + "21502030": "[Crystal Lizard] Large Titanite Shard", + "21502040": "[Crystal Lizard] Large Titanite Shard", + "21502050": "[Crystal Lizard] Heavy Gem", + "21502060": "[Crystal Lizard] Twinkling Titanite", + "21503000": "[Crystal Lizard] Twinkling Titanite", + "21503010": "[Crystal Lizard] Twinkling Titanite", + "21504000": "[Crystal Lizard] Twinkling Titanite", + "21504010": "[Crystal Lizard] Twinkling Titanite", + "21505000": "[Crystal Lizard] Twinkling Titanite", + "21505001": "[Crystal Lizard] Chaos Gem", + "21505010": "[Crystal Lizard] Crystal Gem", + "21505011": "[Crystal Lizard] Twinkling Titanite", + "21505020": "[Crystal Lizard] Twinkling Titanite", + "21505030": "[Crystal Lizard] Titanite Scale", + "21505040": "[Crystal Lizard] Twinkling Titanite", + "21505041": "[Crystal Lizard] Heavy Gem", + "21505050": "[Crystal Lizard] Twinkling Titanite", + "21505051": "[Crystal Lizard] Sharp Gem", + "21505060": "[Crystal Lizard] Twinkling Titanite", + "21505061": "[Crystal Lizard] Refined Gem", + "21505070": "[Crystal Lizard] Twinkling Titanite", + "21506000": "[Crystal Lizard] Twinkling Titanite", + "21506010": "[Crystal Lizard] Fire Gem", + "21506020": "[Crystal Lizard] Twinkling Titanite", + "21506030": "[Crystal Lizard] Titanite Chunk", + "21506040": "[Crystal Lizard] Chaos Gem", + "21507000": "[Crystal Lizard] Twinkling Titanite", + "21507010": "[Crystal Lizard] Simple Gem", + "21507020": "[Crystal Lizard] Twinkling Titanite", + "21507030": "[Crystal Lizard] Twinkling Titanite", + "21507040": "[Crystal Lizard] Twinkling Titanite", + "21508000": "[Crystal Lizard] Titanite Chunk", + "21508010": "[Crystal Lizard] Twinkling Titanite", + "21508020": "[Crystal Lizard] Twinkling Titanite", + "21508030": "[Crystal Lizard] Titanite Scale", + "21509000": "[Crystal Lizard] Twinkling Titanite", + "21509500": "[Crystal Lizard] Twinkling Titanite", + "21509600": "[Crystal Lizard] Twinkling Titanite", + "21509610": "[Crystal Lizard] Twinkling Titanite", + "21509620": "[Crystal Lizard] Large Titanite Shard", + "21509630": "[Crystal Lizard] Twinkling Titanite", + "21509640": "[Crystal Lizard] Twinkling Titanite", + "21509650": "[Crystal Lizard] Twinkling Titanite", + "21509660": "[Crystal Lizard] Twinkling Titanite", + "21509670": "[Crystal Lizard] Twinkling Titanite", + "21509680": "[Crystal Lizard] Twinkling Titanite", + "21509690": "[Crystal Lizard] Large Titanite Shard", + "21509700": "[Crystal Lizard] Twinkling Titanite", + "21509800": "[Crystal Lizard] Twinkling Titanite", + "21509801": "[Crystal Lizard] Titanite Scale", + "21509810": "[Crystal Lizard] Titanite Scale", + "21509820": "[Crystal Lizard] Twinkling Titanite", + "21509830": "[Crystal Lizard] Twinkling Titanite", + "21509840": "[Crystal Lizard] Twinkling Titanite", + "21509850": "[Crystal Lizard] Twinkling Titanite", + "21509860": "[Crystal Lizard] Twinkling Titanite", + "21509861": "[Crystal Lizard] Titanite Scale", + "21509870": "[Crystal Lizard] Twinkling Titanite", + "21800000": "[Yellowfinger Heysel] Undead Hunter Charm", + "21800010": "[Yellowfinger Heysel] Heysel Pick", + "21800011": "[Yellowfinger Heysel] Xanthous Crown", + "21800100": "Duel Charm", + "21800110": "Red Sign Soapstone", + "21801000": "Undead Hunter Charm", + "21801100": "Duel Charm", + "21900000": "[Gargoyle - Profaned Capital] Gargoyle Flame Hammer", + "21900100": "[Gargoyle - Profaned Capital] Gargoyle Flame Spear", + "21910000": "[Gargoyle - Grand Archives] Gargoyle Flame Hammer", + "21910100": "[Gargoyle - Grand Archives] Gargoyle Flame Spear", + "22000000": "[Carthus Sandworm] Lightning Stake", + "22000001": "[Carthus Sandworm] Undead Bone Shard", + "22100000": "[Corvian #1 - Road of Sacrifices] Corvian Greatknife", + "22100001": "[Corvian #1 - Road of Sacrifices] Shriving Stone", + "22100100": "[Corvian #2 - Road of Sacrifices] Great Corvian Scythe", + "22100101": "[Corvian #2 - Road of Sacrifices] Shriving Stone", + "22100200": "[Corvian #3 - Road of Sacrifices] Storyteller's Staff", + "22100201": "[Corvian #3 - Road of Sacrifices] Hollow Gem", + "22101000": "[Corvian #1 - Farron Keep] Corvian Greatknife", + "22101001": "[Corvian #1 - Farron Keep] Shriving Stone", + "22101100": "[Corvian #2 - Farron Keep] Great Corvian Scythe", + "22101101": "[Corvian #2 - Farron Keep] Shriving Stone", + "22101200": "[Corvian #3 - Farron Keep] Storyteller's Staff", + "22101201": "[Corvian #3 - Farron Keep] Hollow Gem", + "22102000": "[Corvian #1 - Irithyll] Corvian Greatknife", + "22102001": "[Corvian #1 - Irithyll] Shriving Stone", + "22102100": "[Corvian #2 - Irithyll] Great Corvian Scythe", + "22102101": "[Corvian #2 - Irithyll] Shriving Stone", + "22102200": "[Corvian #3 - Irithyll] Storyteller's Staff", + "22102201": "[Corvian #3 - Irithyll] Hollow Gem", + "22103000": "[Corvian #1 - Untended Graves] Corvian Greatknife", + "22103001": "[Corvian #1 - Untended Graves]", + "22103100": "[Corvian #2 - Untended Graves]", + "22103101": "[Corvian #2 - Untended Graves]", + "22103200": "[Corvian #3 - Untended Graves]", + "22103201": "[Corvian #3 - Untended Graves]", + "22300000": "[Jailer #1] Soldering Iron", + "22300001": "[Jailer #1] Aristocrat's Mask", + "22300002": "[Jailer #1] Jailer Robe", + "22300003": "[Jailer #1] Jailer Gloves", + "22300004": "[Jailer #1] Jailer Trousers", + "22300005": "[Jailer #1] Magic Gem", + "22300010": "[Jailer #2] Jailer's Key Ring", + "22300100": "[Jailer Handmaid #1] Handmaid's Dagger", + "22300101": "[Jailer Handmaid #1] Rusted Coin, Rusted Gold Coin", + "22500000": "[Sulyvahn's Beast #1] Pontiff's Right Eye", + "22501000": "[Sulyvahn's Beast #2] None", + "22501010": "[Sulyvahn's Beast #2] Ring of Favor", + "22600000": "None", + "22700000": "[Great Crab - Road of Sacrifices] Titanite Shard", + "22700010": "[Great Crab - Road of Sacrifices] Titanite Shard", + "22700020": "[Great Crab - Road of Sacrifices] Great Swamp Ring", + "22701000": "[Great Crab - Smouldering Lake] Titanite Shard", + "22701001": "[Great Crab - Smouldering Lake] Large Titanite Shard", + "22702000": "[Great Crab - Farron Keep] Titanite Shard", + "22702010": "[Great Crab - Farron Keep] Lingering Dragoncrest Ring", + "22710000": "[Lesser Crab] Bloodred Moss Clump, Purple Moss Clump", + "22711000": "[Lesser Crab] Blooming Purple Moss Clump, Rime-blue Moss Clump", + "22800000": "[Giant Rat] Bloodbite Ring", + "22800010": "[Giant Rat] Large Soul of a Deserted Corpse", + "22801000": "[Giant Rat] Soul of an Unknown Traveler", + "22802000": "[Giant Rat] Large Soul of an Unknown Traveler", + "22900000": "None", + "22910000": "None", + "30200000": "[Giant Slave #1 - Irithyll] Stalk Dung Pie", + "30200001": "[Giant Slave #1 - Irithyll] Titanite Shard, Large Titanite Shard", + "30200100": "[Giant Slave #2 - Irithyll] Stalk Dung Pie", + "30200101": "[Giant Slave #2 - Irithyll] Titanite Shard, Large Titanite Shard", + "30210000": "[Giant Slave - Cathedral of the Deep] Large Titanite Shard", + "30210001": "[Giant Slave - Cathedral of the Deep] Dung Pie", + "30211000": "[Giant Slave - Irithyll Dungeon] Titanite Chunk", + "30211001": "[Giant Slave - Irithyll Dungeon] Dung Pie", + "30600000": "[Demon] Fire Gem", + "30601000": "[Demon] Soul of a Demon", + "30700000": "[Demon Cleric] Chaos Gem", + "30700001": "[Demon Cleric] Titanite Shard, Large Titanite Shard", + "30900000": "[Cage Spider] Fading Soul", + "30901000": "[Cage Spider] Fading Soul", + "31000000": "[#] Titanite Scale", + "31001000": "[#] Titanite Scale", + "31002000": "[#] Titanite Scale", + "31004000": "[#] Titanite Scale", + "31100000": "[Deep Acursed] Aldrich's Sapphire", + "31101000": "[#] Titanite Shard, Large Titanite Shard, Titanite Chunk", + "31102000": "[Deep Acursed] Aldrich's Ruby", + "31200000": "[Elder Ghru #1] Poison Gem, Heavy Gem", + "31200001": "[Elder Ghru #1] Stone Greatshield", + "31200002": "[Elder Ghru #1] Ember", + "31200100": "[Elder Ghru #2] Poison Gem, Heavy Gem", + "31200101": "[Elder Ghru #2] Stone Greatshield", + "31200102": "[Elder Ghru #2] Ember", + "31200110": "[Elder Ghru #3] Pharis's Hat", + "31200200": "[Elder Ghru #3] Poison Gem, Heavy Gem", + "31200201": "[Elder Ghru #3] Stone Greatshield", + "31200202": "[Elder Ghru #3] Ember", + "31200210": "[Elder Ghru #4] Black Bow of Pharis", + "31410000": "[Ancient Wyvern] Large Titanite Shard", + "31411000": "[Ancient Wyvern] Titanite Chunk", + "31411001": "[Ancient Wyvern] Ember", + "31411100": "[Ancient Wyvern] Titanite Chunk", + "31411101": "[Ancient Wyvern] Ember", + "31412000": "[Ancient Wyvern] Titanite Chunk", + "31412001": "[Ancient Wyvern] Titanite Scale", + "31412002": "[Ancient Wyvern] Twinkling Titanite", + "31600000": "[Dragonslayer Armour] Iron Dragonslayer Helm", + "31600001": "[Dragonslayer Armour] Iron Dragonslayer Armor", + "31600002": "[Dragonslayer Armour] Iron Dragonslayer Gauntlets", + "31600003": "[Dragonslayer Armour] Iron Dragonslayer Leggings", + "31700000": "[Darkwraith #1] Dark Sword", + "31700001": "[Darkwraith #1] Dark Mask", + "31700002": "[Darkwraith #1] Dark Armor", + "31700003": "[Darkwraith #1] Dark Gauntlets", + "31700004": "[Darkwraith #1] Dark Leggings", + "31700005": "[Darkwraith #1] Pale Tongue", + "31700006": "[Darkwraith #1] Cracked Red Eye Orb", + "31701000": "[Darkwraith #2] Dark Sword", + "31701001": "[Darkwraith #2] Dark Mask", + "31701002": "[Darkwraith #2] Dark Armor", + "31701003": "[Darkwraith #2] Dark Gauntlets", + "31701004": "[Darkwraith #2] Dark Leggings", + "31701005": "[Darkwraith #2] Pale Tongue", + "32100000": "[Poisonhorn Bug] Rotten Pine Resin", + "32200000": "[Rock Lizard] Titanite Scale", + "32200001": "[Rock Lizard] Twinkling Titanite", + "52000000": "[Stray Demon] Soul of a Stray Demon", + "52210000": "[Deacon #1] None", + "52210100": "[Deacon #1] None", + "52210200": "[Deacon #2] Deep Gem", + "52210201": "[Deacon #2] Deacon Robe", + "52210202": "[Deacon #2] Deacon Skirt", + "52220000": "[Deacon #3] None", + "52220100": "[Deacon #3] None", + "52220200": "[Deacon #3] Deep Gem", + "52220201": "[Deacon #3] Deacon Robe", + "52220202": "[Deacon #3] Deacon Skirt", + "52230000": "[Deacon #4] None", + "52230100": "[Deacon #5] None", + "52230200": "[Deacon #6] Deep Gem", + "52230201": "[Deacon #6] Deacon Robe", + "52230202": "[Deacon #6] Deacon Skirt", + "52230310": "[Deacon #1 - Irithyll] Deep Ring", + "52250000": "[Deacon #2 - Irithyll] Deep Gem", + "52250001": "[Deacon #2 - Irithyll] Deacon Robe", + "52250002": "[Deacon #2 - Irithyll] Deacon Skirt", + "52250003": "[Deacon #2 - Irithyll] Human Dregs", + "52250100": "[Deacon #3 - Irithyll] Deep Gem", + "52250101": "[Deacon #3 - Irithyll] Deacon Robe", + "52250102": "[Deacon #3 - Irithyll] Deacon Skirt", + "52250103": "[Deacon #4 - Irithyll] Human Dregs", + "52260000": "[Deacon #4 - Irithyll] Deep Gem", + "52260001": "[Deacon #4 - Irithyll] Deacon Robe", + "52260002": "[Deacon #4 - Irithyll] Deacon Skirt", + "52260003": "[Deacon #5 - Irithyll] Human Dregs", + "52260100": "[Deacon #5 - Irithyll] Deep Gem", + "52260101": "[Deacon #5 - Irithyll] Deacon Robe", + "52260102": "[Deacon #5 - Irithyll] Deacon Skirt", + "52260103": "[Deacon #5 - Irithyll] Human Dregs", + "52270000": "[Deacon #1 - Anor Londo] Deep Gem", + "52270001": "[Deacon #1 - Anor Londo] Deacon Robe", + "52270002": "[Deacon #1 - Anor Londo] Deacon Skirt", + "52270003": "[Deacon #1 - Anor Londo] Human Dregs", + "52270100": "[Deacon #2 - Anor Londo] Deep Gem", + "52270101": "[Deacon #2 - Anor Londo] Deacon Robe", + "52270102": "[Deacon #2 - Anor Londo] Deacon Skirt", + "52270103": "[Deacon #2 - Anor Londo] Human Dregs", + "52400000": "[Irithyll Fire Witch] Immolation Tinder", + "52400001": "[Irithyll Fire Witch] Fire Witch Helm", + "52400002": "[Irithyll Fire Witch] Fire Witch Armor", + "52400003": "[Irithyll Fire Witch] Fire Witch Gauntlets", + "52400004": "[Irithyll Fire Witch] Fire Witch Leggings", + "52400005": "[Irithyll Fire Witch] Large Titanite Shard", + "62300001": "Human Dregs", + "62300011": "Human Dregs", + "62310001": "Human Dregs", + "62310011": "Human Dregs", + "62600004": "Filianore's Spear Ornament", + "70010000": "INVALID", + "95040000": "INVALID", + "95040001": "Fading Soul", + "95040002": "Fading Soul", + "95040003": "Fading Soul", + "95040004": "INVALID", + "203000030": "Large Soul of a Proud Paladin", + "203000040": "Soul of a Proud Paladin", + "203000110": "Soul of a Proud Paladin", + "203000240": "Soul of a Proud Paladin", + "203000310": "Large Soul of a Proud Paladin", + "203000340": "Soul of a Proud Paladin", + "203000370": "Large Soul of a Proud Paladin", + "203000410": "Soul of a Proud Paladin", + "203000450": "Soul of a Proud Paladin", + "203000540": "Soul of a Proud Paladin", + "203000610": "Soul of a Proud Paladin", + "203010090": "Soul of a Champion", + "203010210": "Soul of a Venerable Old Hand", + "203010230": "Soul of a Champion", + "203010260": "Large Soul of a Seasoned Warrior", + "203010290": "Soul of a Venerable Old Hand", + "203010320": "Large Soul of a Seasoned Warrior", + "203010420": "Large Soul of a Seasoned Warrior", + "203100070": "Soul of an Intrepid Hero", + "203100130": "Large Soul of a Proud Paladin", + "203100150": "Large Soul of a Proud Paladin", + "203100200": "Soul of an Intrepid Hero", + "203100240": "Soul of an Intrepid Hero", + "203100380": "Soul of an Intrepid Hero", + "203100550": "Large Soul of a Proud Paladin", + "203100610": "Large Soul of a Proud Paladin", + "203100650": "Large Soul of a Proud Paladin", + "203100680": "Soul of a Seasoned Warrior", + "203100770": "Large Soul of a Proud Paladin", + "203200040": "Soul of an Old Hand", + "203200080": "Soul of a Seasoned Warrior", + "203200110": "Soul of a Venerable Old Hand", + "203200120": "Large Soul of a Seasoned Warrior", + "203200180": "Soul of an Old Hand", + "203200190": "Soul of a Champion", + "203200270": "Soul of a Great Champion", + "203300050": "Soul of an Intrepid Hero", + "203300080": "Large Soul of an Intrepid Hero", + "203300100": "Soul of an Intrepid Hero", + "203300545": "Large Soul of a Seasoned Warrior", + "203300555": "Large Soul of a Seasoned Warrior", + "203300600": "Soul of an Intrepid Hero", + "203300700": "Soul of a Seasoned Warrior", + "203300710": "Large Soul of an Intrepid Hero", + "203410020": "Soul of a Champion", + "203410060": "Soul of a Champion", + "203410070": "Soul of a Seasoned Warrior", + "203410210": "Soul of a Great Champion", + "203410260": "Soul of an Old Hand", + "203410330": "Soul of a Great Champion", + "203500070": "Large Soul of an Intrepid Hero", + "203500270": "Soul of a Seasoned Warrior", + "203500300": "Large Soul of an Intrepid Hero", + "203500330": "Large Soul of an Intrepid Hero", + "203500340": "Large Soul of an Intrepid Hero", + "203500460": "Large Soul of an Intrepid Hero", + "203500490": "Soul of a Seasoned Warrior", + "203500560": "Soul of a Seasoned Warrior", + "203500690": "Large Soul of an Intrepid Hero", + "203700020": "Large Soul of a Seasoned Warrior", + "203700040": "Soul of an Old Hand", + "203700050": "Soul of an Old Hand", + "203700150": "Large Soul of a Seasoned Warrior", + "203700180": "Soul of an Old Hand", + "203700360": "Large Soul of a Seasoned Warrior", + "203700430": "Large Soul of a Seasoned Warrior", + "203700440": "Soul of an Old Hand", + "203700500": "Soul of an Old Hand", + "203700660": "Soul of a Champion", + "203700720": "Large Soul of a Seasoned Warrior", + "203700740": "Soul of an Old Hand", + "203700770": "Soul of a Venerable Old Hand", + "203800020": "Soul of a Seasoned Warrior", + "203800170": "Large Soul of a Seasoned Warrior", + "203800380": "Large Soul of a Seasoned Warrior", + "203800470": "Soul of a Seasoned Warrior", + "203800530": "Soul of a Champion", + "203800570": "Large Soul of an Intrepid Hero", + "203900030": "Large Soul of a Seasoned Warrior", + "203900070": "Large Soul of a Seasoned Warrior", + "203900110": "Soul of an Old Hand", + "203900120": "Soul of a Champion", + "203900190": "Soul of an Old Hand", + "203900270": "Soul of a Venerable Old Hand", + "203900370": "Soul of a Venerable Old Hand", + "204000020": "Soul of a Proud Paladin", + "204000080": "Soul of an Intrepid Hero", + "204000110": "Soul of an Intrepid Hero", + "204000230": "Soul of a Champion", + "204000290": "Soul of a Champion", + "204500020": "Large Soul of an Intrepid Hero", + "204500040": "Large Soul of an Intrepid Hero", + "204500110": "Large Soul of an Intrepid Hero", + "204500140": "Large Soul of an Intrepid Hero", + "204500170": "Large Soul of an Intrepid Hero", + "204500220": "Large Soul of an Intrepid Hero", + "204500230": "Large Soul of an Intrepid Hero", + "204500250": "Soul of a Champion", + "204500390": "Soul of a Champion", + "204500400": "Soul of a Champion", + "204500410": "Soul of a Great Champion", + "204500610": "Large Soul of an Intrepid Hero", + "204500660": "Large Soul of an Intrepid Hero", + "204500670": "Soul of a Venerable Old Hand", + "204500680": "Large Soul of an Intrepid Hero", + "204500800": "Soul of a Venerable Old Hand", + "204500830": "Soul of an Old Hand", + "205000010": "Soul of an Old Hand", + "205000080": "Soul of a Champion", + "205000210": "Soul of a Venerable Old Hand", + "205000440": "Soul of a Venerable Old Hand", + "205000490": "Soul of a Venerable Old Hand", + "205100070": "Soul of a Champion", + "205100080": "Soul of a Venerable Old Hand", + "205100220": "Soul of a Great Champion", + "205100290": "Soul of a Great Champion", + "205100420": "Soul of an Old Hand", + "205100510": "Soul of a Champion", + "205100590": "Soul of a Venerable Old Hand", + "205100650": "Soul of a Venerable Old Hand", + "205100710": "Soul of an Old Hand", + "205100810": "Soul of a Venerable Old Hand", + "205100830": "Soul of an Old Hand", + "205100860": "Soul of a Champion", + "210900000": "Throwing Knife", + "263300001": "Soul of an Intrepid Hero", + "263300002": "Soul of a Seasoned Warrior", + "263300003": "Soul of a Champion", + "503400040": "Green Blossom", + "603400040": "Throwing Knife", + "703400040": "Charcoal Pine Resin" + }, + "KnockBackParam": { + "0": "Generic -- 汎用", + "1": "For PC -- PC用", + "10": "Enemy generic Old -- 敵汎用old" + }, + "KnowledgeLoadScreenItemParam": {}, + "LoadBalancerDrawDistScaleParam": {}, + "LoadBalancerParam": {}, + "LockCamParam": { + "0": "Default value -- デフォルト値", + "1": "Summon Magic for range designation -- 召喚魔法射程距離指定用", + "2": "【 SP 】 Test Map for Hammer warfare _ Normal Time -- 【SP】テストマップハンマー戦用_通常時", + "3": "【 SP 】 Test Map for hammer warfare _ near -- 【SP】テストマップハンマー戦用_近接時", + "101": "Short -- 近距離", + "102": "Medium -- 中距離", + "103": "Long distance -- 遠距離", + "104": "Centipede only -- ムカデ専用", + "105": "Dragon Zombie Only -- ドラゴンゾンビ専用", + "110": "usually dark -- 通常_暗闇", + "111": "Close range _ Darkness -- 近距離_暗闇", + "112": "Medium Range _ Darkness -- 中距離_暗闇", + "113": "Distant Darkness -- 遠距離_暗闇", + "200": "【 Protomap 】 Darkness -- 【プロトマップ】暗闇", + "210": "[DLC] warmonger camera of the abyss -- 【DLC】深淵の主戦用カメラ", + "211": "[DLC] Camera for al-Tri-race -- 【DLC】アルトリウス戦用カメラ", + "212": "[DLC] black dragon Warfare camera -- 【DLC】黒竜戦用カメラ", + "213": "[DLC] chain person war camera -- 【DLC】鎖人戦用カメラ", + "214": "[DLC] Camera for Go warfare -- 【DLC】ゴー戦用カメラ", + "220": "[DLC] Exclusive lock camera for the arena -- 【DLC】闘技場専用ロックカメラ", + "1000": "Phagocytic Dragon Only -- 貪食ドラゴン専用", + "1010": "Camera for Gargoyle -- ガーゴイル用カメラ", + "1100": "【 1st map 】 Suspension Bridge -- 【1stマップ】つり橋", + "1101": "[1st map] Long distance -- 【1stマップ】遠距離", + "1102": "[1st map] Boss Room -- 【1stマップ】ボス部屋", + "1103": "[1st map] Old boss Room -- 【1stマップ】旧ボス部屋", + "1210": "[DLC] Gold Chimera Camera -- 【DLC】金キメラ用カメラ", + "1300": "Near the grave -- 墓場近距離", + "1301": "Grave distance -- 墓場遠距離", + "1410": "Dedicated to the abolition of the visor -- 廃都イザリス専用", + "1510": "Camera for Gargoyle -- ガーゴイル用カメラ", + "1511": "Camera for Gargoyle Night -- ガーゴイル用カメラ_夜用", + "1700": "Sheath Combat Camera -- シース戦闘用カメラ", + "2000": "[SP] vs Parish General -- 【SP】vs教区長 通常", + "2001": "[SP] vs Parish Long distance -- 【SP】vs教区長 近距離", + "2002": "【 SP 】 Ohashi -- 【SP】大橋", + "2003": "【 SP 】 Full of statues -- 【SP】彫像いっぱい", + "2004": "【 SP 】 Avoiding sunflowers -- 【SP】ひまわり回避", + "2010": "[SP] vs fire Beast usually -- 【SP】vs炎の獣 通常", + "2011": "[SP] vs Beast of flames close range -- 【SP】vs炎の獣 近距離", + "3000": "[FDP] vs Tracker -- 【FDP】vs追跡者", + "3001": "[FDP] vs Tracker (throw camera) -- 【FDP】vs追跡者(投げ時カメラ)", + "3002": "[FDP] vs Tracker (2-knife-throwing camera) -- 【FDP】vs追跡者(2刀流投げ時カメラ)", + "3010": "[FDP] Camera for distant view -- 【FDP】遠景用カメラ", + "3100": "[FDP] Ceremonial camera -- 【FDP】儀式用カメラ", + "3101": "[FDP] Ceremonial cameras _ on the way -- 【FDP】儀式用カメラ_途中変更", + "3102": "[FDP] Camera for flame ritual changed on the way -- 【FDP】炎儀式用カメラ_途中変更", + "3120": "[FDP] Forest Sacred Beast _ lock-on camera -- 【FDP】森の霊獣_ロックオンカメラ", + "3160": "[FDP] Guardian Knight of the Dragon -- 【FDP】竜の守護騎士", + "3200": "[FDP] for Segunda -- 【FDP】グンダ用", + "3201": "[FDP] for snake spirits possession segunda -- 【FDP】蛇霊憑きグンダ用", + "3202": "[FDP] for the snake spirits -- 【FDP】蛇霊用", + "3203": "[FDP] for elevators -- 【FDP】エレベーター用", + "3204": "[FDP] Possession segunda-throwing snake spirits -- 【FDP】蛇霊憑きグンダ投げ演出", + "3300": "[FDP] Full Armor Beast -- 【FDP】フルアーマー獣", + "3301": "[FDP] Stench crab -- 【FDP】死臭蟹", + "5020": "[FDP] Crimson Bat -- 【FDP】クリムゾンバット", + "5030": "[FDP] King of the Storm (cowgirl) -- 【FDP】嵐の王(騎乗)", + "5140": "[FDP] The old king of caries -- 【FDP】蝕の老王", + "5160": "[FDP] King of the Dead -- 【FDP】死霊の王", + "5180": "[FDP] Cursed Colossus test -- 【FDP】呪われた巨像テスト", + "5190": "[FDP] King of the disused city: the first half -- 【FDP】廃都の孤王:前半戦", + "5191": "[FDP] King of the disused city: Late war -- 【FDP】廃都の孤王:後半戦", + "5230": "[FDP] Mother Dragon -- 【FDP】母ドラゴン", + "5250": "[FDP] Prince of Darkness -- 【FDP】闇の双皇子", + "5260": "[FDP] Mad Warrior Hallec -- 【FDP】狂戦士ハレック", + "6000": "[FDP] Crystal elders _ only when throwing -- 【FDP】結晶の古老_投げ時のみ", + "7370": "[FDP] Anole _ starting point -- 【FDP】アノール_スタート地点", + "8000": "[FDP] Ceiling Low Place -- 【FDP】天井低い場所", + "9000": "[FDP] for servant ride -- 【FDP】下男乗車用", + "10000": "Short distance camera -- 近距離カメラ", + "10001": "Medium Range Camera -- 中距離カメラ", + "10002": "Long Distance Camera -- 遠距離カメラ", + "10003": "Dark Rock -- 暗闇ロック", + "10004": "【 Protomap 】 Darkness -- 【プロトマップ】暗闇", + "10005": "[Protomap] a little wide -- 【プロトマップ】ちょっと広い", + "10006": "[FDP] Test -- 【FDP】テスト", + "10100": "[FDP] Narrow-wide test _ narrow camera -- 【FDP】狭~広テスト_狭いカメラ", + "10101": "[FDP] Narrow to wide test _ wide Camera -- 【FDP】狭~広テスト_広いカメラ", + "10102": "[FDP] Stoning machine test -- 【FDP】投石機テスト", + "10103": "[FDP] Death of a stoned machine -- 【FDP】投石機死亡", + "10104": "[FDP] death-following stoning machine -- 【FDP】投石機死亡追従", + "10120": "[FDP] is swallowed slime -- 【FDP】スライム飲み込まれ", + "10121": "[FDP] is swallowed slime -- 【FDP】スライム飲み込まれ", + "10200": "[FDP] Entrance door of the candle room -- 【FDP】蝋燭部屋の入り口扉", + "10201": "[FDP] Candle Room camera -- 【FDP】蝋燭部屋カメラ", + "10202": "[FDP] Candle room warp camera -- 【FDP】蝋燭部屋ワープ時カメラ", + "10300": "[FDP] Wolf Kara -- 【FDP】ウルフ飛び掛かられ時", + "10400": "[FDP] Player map start -- 【FDP】プレイヤーマップスタート時", + "90000": "Covert Camera-Zoom in -- 隠密カメラ-ズームイン", + "90001": "Covert Camera-Zoom Out -- 隠密カメラ-ズームアウト", + "90010": "Monster House Boss Camera -- モンスターハウスボス用カメラ" + }, + "LodParam": { + "0": "Default settings -- デフォルト設定", + "1": "L0 Main -- L0メイン", + "2": "L1 Main -- L1メイン", + "3": "Not LOD -- LODしない", + "4": "Testparm -- testparm", + "10": "Small size -- サイズ小", + "11": "Medium size -- サイズ中", + "12": "Large size -- サイズ大", + "13": "Size Oversized -- サイズ特大", + "19": "Don't switch to LOD models -- LODモデルに切り替わらない", + "20": "Lake Beast -- 湖獣", + "60": "Not switch to low texture -- lowテクスチャに切り替わらない", + "61": "Not switch to the low texture that does not switch to the LOD model -- LODモデルに切り替わらない lowテクスチャに切り替わらない", + "62": "L2 only (Reflection scene default) -- L2のみ(反射シーンデフォルト)", + "63": "Do not switch to LOD model (for poly play) -- LODモデルに切り替わらない(ポリ劇用)" + }, + "LodParam_ps4": { + "0": "Default settings -- デフォルト設定", + "1": "L0 Main -- L0メイン", + "2": "L1 Main -- L1メイン", + "3": "Not LOD -- LODしない", + "4": "Testparm -- testparm", + "10": "Small size -- サイズ小", + "11": "Medium size -- サイズ中", + "12": "Large size -- サイズ大", + "13": "Size Oversized -- サイズ特大", + "19": "Don't switch to LOD models -- LODモデルに切り替わらない", + "20": "Lake Beast -- 湖獣", + "60": "Not switch to low texture -- lowテクスチャに切り替わらない", + "61": "Not switch to the low texture that does not switch to the LOD model -- LODモデルに切り替わらない lowテクスチャに切り替わらない", + "62": "L2 only (Reflection scene default) -- L2のみ(反射シーンデフォルト)", + "63": "Do not switch to LOD model (for poly play) -- LODモデルに切り替わらない(ポリ劇用)" + }, + "LodParam_xb1": { + "0": "Default settings -- デフォルト設定", + "1": "L0 Main -- L0メイン", + "2": "L1 Main -- L1メイン", + "3": "Not LOD -- LODしない", + "4": "Testparm -- testparm", + "10": "Small size -- サイズ小", + "11": "Medium size -- サイズ中", + "12": "Large size -- サイズ大", + "13": "Size Oversized -- サイズ特大", + "19": "Don't switch to LOD models -- LODモデルに切り替わらない", + "20": "Lake Beast -- 湖獣", + "60": "Not switch to low texture -- lowテクスチャに切り替わらない", + "61": "Not switch to the low texture that does not switch to the LOD model -- LODモデルに切り替わらない lowテクスチャに切り替わらない", + "62": "L2 only (Reflection scene default) -- L2のみ(反射シーンデフォルト)", + "63": "Do not switch to LOD model (for poly play) -- LODモデルに切り替わらない(ポリ劇用)" + }, + "MPEstusFlaskRecoveryParam": { + "0": "Host -- ホスト", + "1": "Cooperation Pathway Clients -- 協力経路のクライアント", + "2": "Intrusion Path Client -- 侵入経路のクライアント" + }, + "Magic": { + "1200000": "Farron Dart", + "1210000": "Great Farron Dart", + "1300000": "Soul Arrow", + "1301000": "Great Soul Arrow", + "1302000": "Heavy Soul Arrow", + "1303000": "Great Heavy Soul Arrow", + "1304000": "Homing Soulmass", + "1305000": "Homing Crystal Soulmass", + "1306000": "Soul Spear", + "1307000": "Crystal Soul Spear", + "1308000": "Deep Soul", + "1309000": "Great Deep Soul", + "1310000": "Magic Weapon", + "1311000": "Great Magic Weapon", + "1312000": "Crystal Magic Weapon", + "1313000": "Frozen Weapon", + "1330000": "Magic Shield", + "1331000": "Great Magic Shield", + "1340000": "Hidden Weapon", + "1341000": "Hidden Body", + "1350000": "Cast Light", + "1353000": "Repair", + "1354000": "Spook", + "1355000": "Chameleon", + "1356000": "Aural Decoy", + "1370000": "White Dragon Breath", + "1372000": "Farron Hail", + "1373000": "Crystal Hail", + "1374000": "Soul Greatsword", + "1375000": "Farron Flashsword", + "1376000": "Old Moonlight", + "1603000": "Affinity", + "1604000": "Great Soul Dregs", + "1613000": "Dark Edge", + "1620000": "Soul Stream", + "1651000": "Twisted Wall of Light", + "1740000": "Pestilent Mist", + "1741000": "Snap Freeze", + "2400000": "Fireball", + "2402000": "Fire Orb", + "2403000": "Firestorm", + "2405000": "Fire Surge", + "2407000": "Black Serpent", + "2410000": "Combustion", + "2411000": "Great Combustion", + "2420000": "Poison Mist", + "2421000": "Toxic Mist", + "2422000": "Acid Surge", + "2430000": "Iron Flesh", + "2431000": "Flash Sweat", + "2435000": "Carthus Flame Arc", + "2436000": "Rapport", + "2440000": "Power Within", + "2450000": "Great Chaos Fire Orb", + "2451000": "Chaos Storm", + "2452000": "Fire Whip", + "2453000": "Black Flame", + "2455000": "Profaned Flame", + "2456000": "Chaos Bed Vestiges", + "2457000": "Floating Chaos", + "2458000": "Flame Fan", + "2470000": "Warmth", + "2562000": "Profuse Sweat", + "2600000": "Dark Orb", + "2610000": "Black Fire Orb", + "2620000": "Bursting Fireball", + "2630000": "Boulder Heave", + "2640000": "Sacred Flame", + "2650000": "Carthus Beacon", + "2660000": "Seething Chaos", + "3490000": "Heal Aid", + "3500000": "Heal", + "3501000": "Med Heal", + "3502000": "Great Heal", + "3503000": "Soothing Sunlight", + "3504000": "Replenishment", + "3505000": "Bountiful Sunlight", + "3507000": "Bountiful Light", + "3508000": "Caressing Tears", + "3509000": "Lightning Arrow", + "3513000": "Morbid Temptation", + "3520000": "Tears of Denial", + "3521000": "Homeward", + "3530000": "Force", + "3531000": "Wrath of the Gods", + "3532000": "Emit Force", + "3540000": "Seek Guidance", + "3550000": "Lightning Spear", + "3551000": "Great Lightning Spear", + "3552000": "Sunlight Spear", + "3553000": "Lightning Storm", + "3554000": "Gnaw", + "3555000": "Dorhys' Gnawing", + "3556000": "Way of White Corona", + "3557000": "Projected Heal", + "3560000": "Magic Barrier", + "3561000": "Great Magic Barrier", + "3563000": "Sacred Oath", + "3581000": "Vow of Silence", + "3590000": "Lightning Blade", + "3591000": "Darkmoon Blade", + "3640000": "Dark Blade", + "3700000": "Dead Again", + "3710000": "Lightning Stake", + "3720000": "Divine Pillars of Light", + "3730000": "Lifehunt Scythe", + "3750000": "Dorris Swarm", + "3760000": "Blessed Weapon", + "3770000": "Deep Protection", + "3780000": "Atonement" + }, + "MapMimicryEstablishmentParam": { + "0": "Do not erase -- 消すべからず" + }, + "MenuOffscrRendParam": {}, + "MenuPropertyLayoutParam": { + "1000": "Detail status: Normal item -- 詳細ステータス:通常アイテム", + "1006": "Detail status: Normal item: Termination -- 詳細ステータス:通常アイテム:終端", + "2000": "Detail status: Weapons: Others -- 詳細ステータス:武器:その他", + "2059": "Detail Status: Weapon: Other: termination -- 詳細ステータス:武器:その他:終端", + "4000": "Detail Status: Armor -- 詳細ステータス:防具", + "4023": "Detail Status: Armor: Termination -- 詳細ステータス:防具:終端", + "5000": "Detail Status: Spelling -- 詳細ステータス:スペル", + "5011": "Detail status: spelling: Terminating -- 詳細ステータス:スペル:終端", + "6000": "Detail status: Arrow, Bolt -- 詳細ステータス:矢、ボルト", + "6022": "Detail status: Arrow, Bolt: termination -- 詳細ステータス:矢、ボルト:終端", + "10000": "Player Status: First page -- プレイヤーステータス:1ページ目", + "10024": "Player Status: First page: End -- プレイヤーステータス:1ページ目:終端", + "11000": "Player Status: Second page -- プレイヤーステータス:2ページ目", + "11033": "Player Status: second page: termination -- プレイヤーステータス:2ページ目:終端", + "15000": "Status: Second page (player info) -- ステータス:2ページ目(プレイヤー情報)", + "15006": "Status: Second page: termination -- ステータス:2ページ目:終端", + "16000": "Status: First page (player status) -- ステータス:1ページ目(プレイヤーステータス)", + "16043": "Status: first page: termination -- ステータス:1ページ目:終端", + "20000": "Inventory: Top -- インベントリ:上部", + "20100": "Shop: Top -- ショップ:上部", + "20200": "Shop For Sale: Top -- 売却ショップ:上部", + "20900": "Other item selection system: Top -- その他アイテム選択系:上部", + "30000": "Level Up Left -- レベルアップ左側", + "30015": "Level Up left: End -- レベルアップ左側:終端", + "31000": "Level Up Right -- レベルアップ右側", + "31031": "Level Up right: End -- レベルアップ右側:終端", + "40000": "Character make top: Top -- キャラメイクトップ:上部", + "40005": "Character make top: Bottom -- キャラメイクトップ:下部" + }, + "MenuPropertySpecParam": { + "0": "---- -- ----", + "100": "[Item common name] -- 【アイテム共通】 名前", + "101": "[Item Common] Description -- 【アイテム共通】 説明", + "102": "[Item common] Unchiku -- 【アイテム共通】 うんちく", + "103": "[Items Common] weight -- 【アイテム共通】 重量", + "110": "[Item common] number of possession -- 【アイテム共通】 所持数", + "111": "[Item Common] Possession number _ maximum value -- 【アイテム共通】 所持数_最大値", + "112": "Number of items in the warehouse -- 【アイテム共通】 倉庫所持数", + "113": "[Item common] Warehouse possession number _ maximum value -- 【アイテム共通】 倉庫所持数_最大値", + "120": "[Items common] required Seoul -- 【アイテム共通】 必要ソウル", + "121": "[Items common] earning soul -- 【アイテム共通】 獲得ソウル", + "300": "Weapon type -- 【武器】 武器種別", + "301": "Weapon: Attack attributes -- 【武器】 攻撃属性", + "302": "【 Weapon 】 Arts name -- 【武器】 アーツ名", + "310": "[Weapon] Attack Force: Physics -- 【武器】 攻撃力:物理", + "311": "[Weapon] Attack power: Magic -- 【武器】 攻撃力:魔法", + "312": "[Weapon] Attack force: Flame -- 【武器】 攻撃力:炎", + "313": "[Weapon] Attack power: Thunder -- 【武器】 攻撃力:雷", + "314": "[Weapon] Attack power: Darkness -- 【武器】 攻撃力:闇", + "315": "[Weapon] Additional attack force: Physics -- 【武器】付加攻撃力:物理", + "316": "[Weapon] additional attack force: Magic -- 【武器】 付加攻撃力:魔法", + "317": "[Weapon] Additional attack force: Flame -- 【武器】 付加攻撃力:炎", + "318": "[Weapon] Additional attack force: Thunder -- 【武器】 付加攻撃力:雷", + "319": "[Weapon] Additional attack force: Darkness -- 【武器】 付加攻撃力:闇", + "320": "Weapon Range -- 【武器】 射程距離", + "321": "[Weapon] Magic power correction -- 【武器】 魔法威力修正", + "322": "【 Weapon 】 Deadlier -- 【武器】 致命", + "330": "【 Weapon 】 Special effects: Poison -- 【武器】 特殊効果:毒", + "331": "【 Weapon 】 Special effects: Bleeding -- 【武器】 特殊効果:出血", + "332": "【 Weapon 】 Special effects: Sacred -- 【武器】 特殊効果:神聖", + "333": "【 Weapon 】 Special effects: Voodoo -- 【武器】 特殊効果:邪教", + "334": "【 Weapon 】 Special effects: cold air -- 【武器】 特殊効果:冷気", + "340": "【 weapon 】 Damage cut rate: physical -- 【武器】 ダメージカット率:物理", + "341": "[Weapon] damage cut rate: Magic -- 【武器】 ダメージカット率:魔法", + "342": "【 weapon 】 Damage cut rate: Flame -- 【武器】 ダメージカット率:炎", + "343": "【 weapon 】 Damage cut rate: lightning -- 【武器】 ダメージカット率:雷", + "344": "[Weapon] Damage cut rate: darkness -- 【武器】 ダメージカット率:闇", + "350": "Weapon: Ability to receive -- 【武器】 受け能力", + "360": "[Weapon] Required ability value: Muscular strength -- 【武器】 必要能力値:筋力", + "361": "[Weapon] Required ability value: workmanship -- 【武器】 必要能力値:技量", + "362": "[Weapon] Required ability value: Power -- 【武器】 必要能力値:理力", + "363": "[Weapon] Required ability value: Faith -- 【武器】 必要能力値:信仰", + "370": "【 Weapon 】 Ability Correction: Muscular strength -- 【武器】 能力補正:筋力", + "371": "[Weapon] Capacity correction: workmanship -- 【武器】 能力補正:技量", + "372": "【 Weapon 】 Ability Correction: Power -- 【武器】 能力補正:理力", + "373": "【 weapons 】 Ability Correction: Faith -- 【武器】 能力補正:信仰", + "380": "Current value of weapon endurance -- 【武器】 耐久度 現在値", + "381": "Weapon: Maximum Endurance -- 【武器】 耐久度 最大値", + "390": "【 Weapon 】 Consumption Arts point: L1 -- 【武器】 消費アーツポイント:L1", + "391": "【 Weapon 】 Consumption Arts point: L2 -- 【武器】 消費アーツポイント:L2", + "392": "【 Weapon 】 Consumption Arts point: R1 -- 【武器】 消費アーツポイント:R1", + "393": "[Weapon] Consumption arts point: R2 -- 【武器】 消費アーツポイント:R2", + "400": "[Armor] Defense Force: Physical -- 【防具】 防御力:物理", + "401": "[Armor] defensive force: physical versus blow -- 【防具】 防御力:物理 対打撃", + "402": "[Armor] Defense Force: Physics vs slashing -- 【防具】 防御力:物理 対斬撃", + "403": "[Armor] Defense Force: physical versus biting -- 【防具】 防御力:物理 対刺突", + "404": "[Armor] Defense Force: Magic -- 【防具】 防御力:魔法", + "405": "[Armor] Defense Force: Flame -- 【防具】 防御力:炎", + "406": "[Armor] Defense Force: Thunder -- 【防具】 防御力:雷", + "410": "[Armor] Strength degree -- 【防具】 強靭度", + "411": "[Armor] Resistant: poison -- 【防具】 耐性:毒", + "412": "[Armor] Resistant: bleeding -- 【防具】 耐性:出血", + "413": "[Armor] Resistant: curse -- 【防具】 耐性:呪い", + "414": "[Armor] Resistant: cold air -- 【防具】 耐性:冷気", + "420": "[Armor] Endurance Current Value -- 【防具】 耐久度 現在値", + "421": "[Armor] Endurance maximum -- 【防具】 耐久度 最大値", + "430": "[Armor] damage Cut: physical -- 【防具】 ダメージカット:物理", + "431": "[Armor] damage cut: physical versus blow -- 【防具】 ダメージカット:物理 対打撃", + "432": "[Armor] damage Cut: physics vs. slashing -- 【防具】 ダメージカット:物理 対斬撃", + "433": "[Armor] damage cut: physical versus biting -- 【防具】 ダメージカット:物理 対刺突", + "434": "[Armor] damage Cut: Magic -- 【防具】 ダメージカット:魔法", + "435": "[Armor] damage Cut: Flame -- 【防具】 ダメージカット:炎", + "436": "[Armor] damage Cut: Thunder -- 【防具】 ダメージカット:雷", + "437": "[Armor] damage Cut: Darkness -- 【防具】 ダメージカット:闇", + "500": "Spell type -- 【スペル】 スペル種別", + "501": "Spell Attack attribute -- 【スペル】 攻撃属性", + "502": "[Spell] Number of slots used -- 【スペル】 使用スロット数", + "503": "[spell] number of times used -- 【スペル】 使用回数", + "504": "[Spell] Required ability value Force -- 【スペル】 必要能力値 理力", + "505": "[Spell] Required Ability value Faith -- 【スペル】 必要能力値 信仰", + "520": "【 spell 】 Consumption MP -- 【スペル】 消費MP", + "600": "Arrow: Weapon type -- 【矢】 武器種別", + "601": "[Arrow] Attack attribute -- 【矢】 攻撃属性", + "610": "[Arrow] Attack Force: Physics -- 【矢】 攻撃力:物理", + "611": "[Arrow] Attack Force: Magic -- 【矢】 攻撃力:魔法", + "612": "[Arrow] Attack Force: Flame -- 【矢】 攻撃力:炎", + "613": "[Arrow] Attack Force: Thunder -- 【矢】 攻撃力:雷", + "614": "【 Arrow 】 Deadlier -- 【矢】 致命", + "615": "[Arrow] attack power: Darkness -- 【矢】 攻撃力:闇", + "620": "【 Arrow 】 Special Effect: Poison -- 【矢】 特殊効果:毒", + "621": "【 Arrow 】 Special effects: Bleeding -- 【矢】 特殊効果:出血", + "622": "【 Arrow 】 Special effects: Sacred -- 【矢】 特殊効果:神聖", + "623": "【 Arrow 】 Special Effect: Voodoo -- 【矢】 特殊効果:邪教", + "624": "【 Arrow 】 Special Effect: cold air -- 【矢】 特殊効果:冷気", + "10000": "PC Basic Name -- 【PC基本】 名前", + "10001": "[PC Basic] Sex -- 【PC基本】 性別", + "10002": "[Basic PC] Feature -- 【PC基本】 素性", + "10003": "[PC Basic] Gift -- 【PC基本】 贈り物", + "10004": "[Basic PC] Body type -- 【PC基本】 体型", + "10005": "[PC Basic] Face -- 【PC基本】 顔", + "10006": "[PC Basic] Hairstyle -- 【PC基本】 髪型", + "10007": "[Basic PC] hair and pupil color -- 【PC基本】 髪と瞳の色", + "10008": "Basic PC Level -- 【PC基本】 レベル", + "10009": "[PC Basic] Possession Soul -- 【PC基本】 所持ソウル", + "10010": "[PC Basic] required Seoul -- 【PC基本】 必要ソウル", + "10011": "Basic PC Pledge -- 【PC基本】 誓約", + "10012": "[Basic PC] age group -- 【PC基本】 年齢層", + "10013": "[PC basic] dead degree -- 【PC基本】 亡者度", + "10100": "[PC1 next] life force -- 【PC1次】 生命力", + "10101": "[PC1 Next] Endurance -- 【PC1次】 持久力", + "10102": "[PC1 Next] Memory -- 【PC1次】 記憶力", + "10103": "[PC1 next] muscular strength -- 【PC1次】 筋力", + "10104": "[PC1 Next] Workmanship -- 【PC1次】 技量", + "10105": "[PC1 next] Physical fitness -- 【PC1次】 体力", + "10106": "[PC1 next] power of science -- 【PC1次】 理力", + "10107": "[PC1 Next] Faith -- 【PC1次】 信仰", + "10108": "[PC1 next] human nature -- 【PC1次】 人間性", + "10109": "[PC1 Next] Luck -- 【PC1次】 運", + "10200": "[PC2 Next] HP Current Value -- 【PC2次】 HP 現在値", + "10201": "[PC2 Next] HP Max Value -- 【PC2次】 HP 最大値", + "10202": "[PC2 Next] MP Current Value -- 【PC2次】 MP 現在値", + "10203": "[PC2 Next] MP Max Value -- 【PC2次】 MP 最大値", + "10204": "[PC2 Next] Stamina -- 【PC2次】 スタミナ", + "10205": "[PC2 next] equipment weight current value -- 【PC2次】 装備重量 現在値", + "10206": "[PC2 Next] equipment weight maximum -- 【PC2次】 装備重量 最大値", + "10207": "[PC2 Next] Right weapon 1 attack force -- 【PC2次】 右武器1 攻撃力", + "10208": "[PC2 Next] Right Weapon 2 attack force -- 【PC2次】 右武器2 攻撃力", + "10209": "[PC2 Next] Right Weapon 3 attack force -- 【PC2次】 右武器3 攻撃力", + "10210": "[PC2 next] left Weapon 1 attack force -- 【PC2次】 左武器1 攻撃力", + "10211": "[PC2 next] left Weapon 2 attack force -- 【PC2次】 左武器2 攻撃力", + "10212": "[PC2 next] left Weapon 3 attack force -- 【PC2次】 左武器3 攻撃力", + "10213": "[PC2 next] Defense Force: Physical -- 【PC2次】 防御力:物理", + "10214": "[PC2] defensive force: physical versus blow -- 【PC2次】 防御力:物理 対打撃", + "10215": "[PC2] Defense Force: Physics vs. slashing -- 【PC2次】 防御力:物理 対斬撃", + "10216": "[PC2] Defense Force: Physical vs. piercing -- 【PC2次】 防御力:物理 対刺突", + "10217": "[PC2 next] Defense Force: Magic -- 【PC2次】 防御力:魔法", + "10218": "[PC2] Defense Force: Flame -- 【PC2次】 防御力:炎", + "10219": "[PC2] Defense Force: Thunder -- 【PC2次】 防御力:雷", + "10220": "[PC2] Resistant: Poison -- 【PC2次】 耐性:毒", + "10221": "[PC2] Resistant: bleeding -- 【PC2次】 耐性:出血", + "10222": "[PC2] Resistance: Curse -- 【PC2次】 耐性:呪い", + "10223": "[PC2 next] strong degree -- 【PC2次】 強靭度", + "10224": "[PC2] Number of memory slots -- 【PC2次】 記憶スロット数", + "10225": "[PC2 Next] Item discovery Power -- 【PC2次】 アイテム発見力", + "10242": "[PC2 next] armor damage cut: physical -- 【PC2次】 防具ダメージカット:物理", + "10243": "[PC2 next] Armor damage Cut: Magic -- 【PC2次】 防具ダメージカット:魔法", + "10244": "[PC2 next] armor damage cut: Flame -- 【PC2次】 防具ダメージカット:炎", + "10245": "[PC2 next] Armor damage Cut: Thunder -- 【PC2次】 防具ダメージカット:雷", + "10258": "[PC2 next] Dark Defense Force -- 【PC2次】 闇防御力", + "10259": "[PC2 next] armor damage cut: physical versus blow -- 【PC2次】 防具ダメージカット:物理 対打撃", + "10260": "[PC2 next] Armor damage cut: Physics vs slashing -- 【PC2次】 防具ダメージカット:物理 対斬撃", + "10261": "[PC2 next] armor damage cut: physical vs. piercing -- 【PC2次】 防具ダメージカット:物理 対刺突", + "10262": "[PC2 next] Armor damage Cut: Darkness -- 【PC2次】 防具ダメージカット:闇", + "10263": "[PC2 Next] Resistance: cold air -- 【PC2次】 耐性:冷気", + "10264": "[PC2] Armor resistance: bleeding -- 【PC2次】 防具耐性:出血", + "10265": "[PC2] Armor Resistant: Poison -- 【PC2次】 防具耐性:毒", + "10266": "[PC2 Next] armor resistant: cold air -- 【PC2次】 防具耐性:冷気", + "10270": "【 PC2 Next 】 Arts point: Muscular strength Current value -- 【PC2次】 アーツポイント:筋力 現在値", + "10271": "【 PC2 Next 】 Arts point: Skill present Value -- 【PC2次】 アーツポイント:技量 現在値", + "10272": "【 PC2 Next 】 Arts point: Magic present Value -- 【PC2次】 アーツポイント:魔法 現在値", + "10273": "【 PC2 Next 】 Arts point: Miracle present Value -- 【PC2次】 アーツポイント:奇跡 現在値", + "10280": "【 PC2 Next 】 Arts point: Maximum muscle value -- 【PC2次】 アーツポイント:筋力 最大値", + "10281": "【 PC2 Next 】 Arts point: Maximum skill level -- 【PC2次】 アーツポイント:技量 最大値", + "10282": "【 PC2 Next 】 Arts point: Magic Max -- 【PC2次】 アーツポイント:魔法 最大値", + "10283": "【 PC2 Next 】 Arts point: Miracle Maximum -- 【PC2次】 アーツポイント:奇跡 最大値" + }, + "MenuValueTableParam": { + "100": "A table that converts a number to an e-s character -- 数値をE~Sの文字へ変換するテーブル", + "110": "Pledge -- 誓約" + }, + "ModelSfxParam": { + "0": "For testing -- テスト用", + "80000": "Message tombstone (before lighting) -- メッセージ墓石(点灯前)", + "80010": "Message tombstone (after lighting) -- メッセージ墓石(点灯後)", + "1030000": "[Ritual] Princess alternative obj -- 【儀式】皇女代替OBJ", + "1230000": "Ojo Candlestick (Low) -- 王城燭台(低)", + "1240000": "Candle ver00 -- 蝋燭ver00", + "1240001": "Candle Ver01 -- 蝋燭ver01", + "1240002": "Candle Ver02 -- 蝋燭ver02", + "1240010": "Blue Flame バリエ 1 -- 青炎バリエ1", + "1240011": "Blue Flame バリエ 2 -- 青炎バリエ2", + "1510000": "Old Lantern -- ランタン(古)", + "2120000": "Statue Candle lit -- 石像ロウソク点灯", + "4660000": "General-purpose wall lighting (torches) -- 汎用壁照明(松明)", + "4661000": "General-purpose Ceiling lighting (torches) -- 汎用天井照明(松明)", + "9004010": "Concept Solar -- コンセプト版太陽", + "302518000": "Ojo Candles -- 王城蝋燭", + "302525000": "Hanging Lantern 1 -- 吊るし灯篭1", + "302526000": "Fire of firewood -- 薪の炎", + "302564000": "Burnt Corpse -- 燃えた死体", + "302565000": "Having a statue candle -- 彫像蝋燭持ち", + "304517000": "Ojo 1 Lantern 1 -- 王城1ランタン1", + "304857000": "Ojo Candlestick (High) -- 王城燭台(高)", + "304863000": "Ojo 2 Torch -- 王城2 トーチ", + "315100000": "Bonfires Tree -- 焚火のツリー", + "316500000": "Hanging Lantern 1 -- 吊るし灯篭1", + "316500001": "Hanging Lantern 1 -- 吊るし灯篭1", + "319006000": "Candle with Dish -- 蝋燭(皿付き)", + "319010000": "Lantern -- ランタン", + "319012000": "Hanging Torch -- 吊るしトーチ", + "324014000": "Incense Burner M32 -- 香炉m32", + "330009000": "Skeleton Forest Candle -- 森骸骨蝋燭", + "330010000": "Mori Lantern -- 森ランタン", + "331390000": "Mori boss Room Skeleton Candle 01 -- 森 ボス部屋骸骨蝋燭01", + "331391000": "Mori boss Room Skeleton Candle 02 -- 森 ボス部屋骸骨蝋燭02", + "331392000": "Mori boss Room Skeleton Candle 03 -- 森 ボス部屋骸骨蝋燭03", + "344857000": "Ojo 2, 3 candlestick (high) -- 王城2,3燭台(高)", + "344859000": "Ojo 2, 3 candlesticks (Low) -- 王城2,3燭台(低)", + "344863000": "Ojo 2, 3 torch -- 王城2,3 トーチ", + "350000000": "Cathedral Church Chandelier -- 聖堂教会シャンデリア", + "350010000": "Cathedral Church Candlestick A -- 聖堂教会燭台A", + "350013000": "Cathedral Church Candlestick Bver00 -- 聖堂教会燭台Bver00", + "350013001": "Cathedral Church Candlestick Bver01 -- 聖堂教会燭台Bver01", + "350015000": "Cathedral church boss Room Candle -- 聖堂教会 ボス部屋蝋燭", + "352000000": "Cathedral Church _ Indoor Torches -- 聖堂教会_室内松明", + "359050000": "Cathedral Church Outdoor Torches -- 聖堂教会 屋外松明", + "364512000": "God Tomb Lantern 2 -- 神墓ランタン2", + "364517000": "God Tomb Lantern 1 -- 神墓ランタン1", + "372010000": "Anol Lantan A -- アノールランタンA", + "381004000": "Candle ver00 -- 蝋燭ver00", + "381008000": "Wall Lantern -- 壁灯篭", + "381009000": "Hanging lantern -- 吊るし灯篭", + "391000000": "Candle One -- 蝋燭1", + "391000001": "Candle 2 -- 蝋燭2", + "391100000": "Incense Burner 1 -- 香炉1", + "392300000": "Shaking Incense Burner 1 -- 揺れる香炉1", + "392310000": "Shaking Incense Burner 2 -- 揺れる香炉2", + "398000000": "Corpse Mountain 1 -- 死体の山1", + "399100000": "Wall Torches 1 -- 壁掛け松明1", + "399100001": "Wall Torches 1 -- 壁掛け松明1", + "399110000": "Wall Torches 2 -- 壁掛け松明2", + "399999000": "Candle test -- 蝋燭テスト", + "934630000": "Bonfire Candlestick Normal Fire -- 篝火燭台ノーマル火", + "962120000": "Statue Candle lit (6-digit version) -- 石像ロウソク点灯(6桁版)", + "962140000": "Hanging lighting -- 吊るし照明", + "969004010": "Concept Solar (6-digit version) -- コンセプト版太陽(6桁版)", + "969007000": "Torch 1 -- 松明1" + }, + "MoveParam": { + "0": "Lightweight -- 軽量", + "1": "Lightweight + -- 軽量+", + "5": "Medium Amount -- 中量", + "6": "Medium Amount + -- 中量+", + "10": "Weight -- 重量", + "15": "Over weight -- 重量オーバー", + "16": "Super light -- 超軽量", + "20": "Mimicry _ Light Weight -- 擬態_軽量", + "21": "Mimicry _ lightweight + -- 擬態_軽量+", + "25": "Mimicry _ Medium Volume -- 擬態_中量", + "26": "Mimicry _ Medium Amount + -- 擬態_中量+", + "30": "Mimicry weight -- 擬態_重量", + "35": "Mimicry _ over Weight -- 擬態_重量オーバー", + "36": "Mimicry _ ultra-light -- 擬態_超軽量", + "40": "Underwater (deep) _ Lightweight -- 水中(深)_軽量", + "41": "Underwater (deep) _ Lightweight + -- 水中(深)_軽量+", + "45": "Underwater (deep) _ Medium volume -- 水中(深)_中量", + "46": "Underwater (deep) _ Medium Volume + -- 水中(深)_中量+", + "50": "Underwater (deep) _ Weight -- 水中(深)_重量", + "55": "Underwater (deep) _ Over weight -- 水中(深)_重量オーバー", + "56": "Underwater (deep) _ Ultra-Light -- 水中(深)_超軽量", + "60": "【 SP 】 Guard Vigilance _ Lightweight -- 【SP】ガード警戒_軽量", + "61": "【 SP 】 Guard Vigilance _ lightweight + -- 【SP】ガード警戒_軽量+", + "65": "【 SP 】 Guard Vigilance _ medium volume -- 【SP】ガード警戒_中量", + "66": "【 SP 】 Guard Vigilance _ Medium Amount + -- 【SP】ガード警戒_中量+", + "70": "【 SP 】 Guard Vigilance _ Weight -- 【SP】ガード警戒_重量", + "75": "[SP] Guard vigilance _ over weight -- 【SP】ガード警戒_重量オーバー", + "76": "[SP] Guard Vigilance _ ultra-light -- 【SP】ガード警戒_超軽量", + "100": "Enemy Base Combat -- 敵基本 戦闘時", + "101": "Bird Standard -- 鳥標準", + "102": "Guard -- ガード", + "103": "Dog -- 犬", + "104": "Dragon Demon -- ドラゴンデーモン", + "105": "Enemy base non-combat time -- 敵基本 非戦闘時", + "106": "Scale miners during combat -- ウロコ鉱夫 戦闘時", + "107": "Scales Miners Non-combat (bag) -- ウロコ鉱夫 非戦闘時(袋)", + "108": "Scales Miners Non-combat (pick) -- ウロコ鉱夫 非戦闘時(ピックル)", + "109": "Big Spider Peeping -- 大蜘蛛 のぞき込み", + "110": "Gargoyletest -- ガーゴイルテスト", + "111": "Dragon Demon (mine) -- ドラゴンデーモン(坑道)", + "112": "For the beast of the Storm -- 嵐の獣用", + "113": "Storm Beast (CUB) Bichibichi wait -- 嵐の獣(子エイ)ビチビチ待機", + "114": "Scales Miners Non-combat (bare hands) -- ウロコ鉱夫 非戦闘時(素手)", + "115": "Octopus head when fighting -- タコ頭  戦闘時", + "116": "Gargoyle aerial (for 3050) -- ガーゴイル空中(3050用)", + "117": "Gargoyle Ground (for 3050) -- ガーゴイル地上(3050用)", + "118": "Shadow woman _ for disappearing -- 影女_消える用", + "119": "Blood mites only -- 血ダニ専用", + "120": "Paris AIM -- パリィ狙い", + "121": "[DLC] Enemy Basic combat (running/swirling anime without version) -- 【DLC】敵基本 戦闘時(走行/旋回アニメなしバージョン)", + "900": "Four-legged type for PG -- PG用4足タイプ", + "910": "[FDP] Test _ First time -- 【FDP】テスト_はじめてのろじっく" + }, + "MultiHPEstusFlaskBonusParam": {}, + "MultiMPEstusFlaskBonusParam": {}, + "MultiPlayCorrectionParam": { + "0": "Do not erase -- 消すべからず", + "10": "Test Data 2 -- テストデータ2", + "100": "Super Ability -- ザコ", + "200": "Formidable -- 強敵", + "300": "Boss -- ボス" + }, + "MultiSoulBonusRateParam": {}, + "NetworkAreaParam": { + "0": "Default (delete not allowed) -- デフォルト(削除禁止)", + "300000": "Ojo of caries 1 -- 蝕の王城1", + "310000": "City of Towers -- 塔の街", + "320000": "The Bridge of Flying Dragon -- 飛竜の橋", + "330000": "Poison Swamp Forest -- 毒沼の森", + "341000": "Ojo of caries 3 -- 蝕の王城3", + "350000": "Cathedral Church -- 聖堂教会", + "370000": "Anole ruins -- アノール遺跡", + "380000": "Dungeon -- ダンジョン", + "390000": "Dungeon -- 地下牢", + "400000": "Base -- 拠点", + "981000": "Multi-Play Test map -- マルチプレイテストマップ", + "991000": "Old multi-play test map -- 旧マルチプレイテストマップ" + }, + "NetworkMsgParam": {}, + "NetworkParam": {}, + "NewMenuColorTableParam": { + "0": "Chara Makeup: ○ ○ -- キャラメイク:○○用", + "100": "Character Makeover: White for skin -- キャラメイク:肌用 白人", + "105": "Black -- 黒人", + "110": "Yellow people -- 黄人", + "115": "India -- インド", + "120": "Ruddy -- 赤ら顔", + "125": "Shing -- 鈍色" + }, + "NpcAiActionParam": {}, + "NpcParam": { + "0": "Do not erase -- 消すべからず", + "1": "Atarisawari data (copy and paste recommended) -- あたりさわりのないデータ(コピペ元推奨)", + "10": "Treasure Test 1 -- 宝テスト1", + "11": "Treasure Test 2 -- 宝テスト2", + "12": "Treasure Test 3 -- 宝テスト3", + "100": "Automatic patrol (default) -- 自動巡回用(デフォルト)", + "540": "For automatic patrol (running) -- 自動巡回用(走り)", + "541": "Automatic patrol (walking) -- 自動巡回用(歩き)", + "542": "Automatic patrol (super dash) -- 自動巡回用(スーパーダッシュ)", + "10000": "Collective Patrol dummy leader -- 集団巡回ダミーリーダー", + "10010": "City Map Sniper Platoon target dummy character -- 街マップスナイパーの小隊ターゲット用ダミーキャラ", + "10100": "NPC Conversation Test 1 (garbled NPC in pot) -- NPC会話テスト1 (壺に化けるNPC)", + "10101": "NPC Conversation Test 2 -- NPC会話テスト2", + "10102": "NPC Conversation Test _ α 2 -- NPC会話テスト_α2", + "10200": "NPC Logic Test -- NPCロジックテスト", + "10290": "NPC Combat Test -- NPC戦闘テスト", + "10298": "City Map intrusion NPC test -- 街マップ侵入NPCテスト", + "10299": "City map cooperation NPC Logic test -- 街マップ協力NPCロジックテスト", + "20000": "NPC Behavior Test 1 -- NPC挙動テスト1", + "21000": "21,000: [Multi NPC] Berserker: ■ Darkness 1 -- 21000:【マルチNPC】バーサーカー:街■闇霊1", + "21100": "21100: [multi-NPC] Sniper NPC: Sniper NPC: Super Distance -- 21100:【マルチNPC】スナイパーNPC:スナイパーNPC:超距離", + "21200": "21200: [Multi-NPC] Dragon Hunting Warrior: Bridge ★ White Spirits 1 -- 21200:【マルチNPC】竜狩りの戦士:橋★白霊1", + "21300": "21300: [Multi-NPC] Warrior fell in mid-★: Bridge White Spirit 2 -- 21300:【マルチNPC】志半ばで倒れた戦士:橋★白霊2", + "21400": "21400: [multi-NPC] blunt with healing: Forest ★ White Spirits 1_ -- 21400:【マルチNPC】鈍器持ち治癒使い:森★白霊1_道中", + "21500": "21500: [multi-NPC] Hit man: Mori ★ White Spirits 2_vs Elders -- 21500:【マルチNPC】一撃にかける男:森★白霊2_VS古老", + "21800": "21800: [multi-NPC] King's SS chief: Ojo 3 ■ Dark Spirits 1 -- 21800:【マルチNPC】王の親衛隊長:王城3■闇霊1", + "22000": "22,000: [Multi NPC] Paris love: The temple ★ White Spirits 2_ -- 22000:【マルチNPC】パリィ大好き:聖堂★白霊2_道中", + "29000": "Enemy NPC Warrior Ojo 1 Mausoleum side -- 敵NPC 戦士 王城1霊廟側", + "29100": "Enemy NPC Wizard Ojo 1 Mausoleum side -- 敵NPC 魔法使い 王城1霊廟側", + "29200": "Enemy NPC Hunter Ojo 1 Mausoleum side -- 敵NPC 狩人 王城1霊廟側", + "100000": "Dummy character for Bonfire -- 篝火用ダミーキャラ", + "107000": "【 test 】 Skeleton: Poison Swamp forest _ boss Room -- 【テスト】スケルトン:毒沼の森_ボス部屋", + "107001": "Skeleton: Song Sword -- スケルトン:曲剣", + "107002": "Skeleton: a Sword -- スケルトン:大曲剣", + "107003": "Skeleton: Bow -- スケルトン:弓", + "107006": "Skeleton: Flame Pots -- スケルトン:火炎壺", + "107007": "Skeleton: Song Sword (single Effect) -- スケルトン:曲剣(一きり効果)", + "107008": "Skeleton: One-way sword (single effect) -- スケルトン:大曲剣(一きり効果)", + "107009": "Skeleton: Bow (One effect) -- スケルトン:弓(一きり効果)", + "109000": "Dead soldier: Segunda State folding Sword Half-naked Ojo 1 -- 亡者兵士:グンダ状態 折剣 半裸 王城1", + "109100": "Dead soldier: Segunda State folding Sword Half-naked Ojo 2 -- 亡者兵士:グンダ状態 折剣 半裸 王城2", + "109200": "Dead soldier: Segunda State folding Sword Half-naked Ojo 3 -- 亡者兵士:グンダ状態 折剣 半裸 王城3", + "110000": "Dead Soldier Sword only dress Ojo 1 -- 亡者兵士 剣のみ 軽装 王城1", + "110001": "Dead Soldier Sword only lightly waist lantern no Ojo 1 -- 亡者兵士 剣のみ 軽装 腰ランタン無し 王城1", + "110010": "Dead Soldier folding Sword Half-naked Ojo 1 -- 亡者兵士 折剣 半裸 王城1", + "110011": "Dead Soldier Folding Sword Tea suit Ojo 1 -- 亡者兵士 折剣 茶服 王城1", + "110012": "Dead Soldier Folding Sword white clothes Ojo 1 -- 亡者兵士 折剣 白服 王城1", + "110013": "Dead Soldier Folding Sword White suit Vest Ojo 1 -- 亡者兵士 折剣 白服ベスト 王城1", + "110020": "Dead Soldier Sword Shield full equipment Ojo 1 -- 亡者兵士 剣盾 フル装備 王城1", + "110021": "Dead Soldier Sword Shield full equipment No waist lantern Ojo 1 -- 亡者兵士 剣盾 フル装備腰ランタン無し 王城1", + "110030": "Dead Soldier folding Sword lantern Black skirt Ojo 1 -- 亡者兵士 折剣ランタン 黒スカート 王城1", + "110040": "Dead soldiers cross-bow full equipment _ without scarves Ojo 1 -- 亡者兵士 クロスボウ フル装備_スカーフなし 王城1", + "110050": "Dead Soldier Spear Large shield Full equipment _ with Scarf Ojo 1 -- 亡者兵士 槍大盾 フル装備_スカーフあり 王城1", + "110070": "Dead Soldier evil Spirit makeover pre-folded sword half-naked Ojo 1 -- 亡者兵士 邪霊変身前 折剣 半裸 王城1", + "110080": "Dead soldier Dagger half-naked black Cape Ojo 1 -- 亡者兵士 短剣 半裸黒頭巾 王城1", + "110100": "Dead Soldier Sword only dress Ojo 2 -- 亡者兵士 剣のみ 軽装 王城2", + "110110": "Dead Soldier folding Sword Half-naked Ojo 2 -- 亡者兵士 折剣 半裸 王城2", + "110111": "Dead Soldier folding Sword tea Clothes Ojo 2 -- 亡者兵士 折剣 茶服 王城2", + "110112": "Dead Soldier Folding Sword white clothes Ojo 2 -- 亡者兵士 折剣 白服 王城2", + "110113": "Dead Soldier Folding Sword White suit Vest Ojo 2 -- 亡者兵士 折剣 白服ベスト 王城2", + "110120": "Dead Soldier Sword Shield full Equipment Ojo 2 -- 亡者兵士 剣盾 フル装備 王城2", + "110130": "Dead Soldier Folding sword lantern Half-naked Ojo 2 -- 亡者兵士 折剣ランタン 半裸 王城2", + "110140": "Dead soldiers cross-bow full equipment _ without scarves Ojo 2 -- 亡者兵士 クロスボウ フル装備_スカーフなし 王城2", + "110150": "Dead Soldier Spear Large shield Full equipment _ scarf available Ojo 2 -- 亡者兵士 槍大盾 フル装備_スカーフあり 王城2", + "110170": "Dead Soldier evil Spirit makeover pre-folded sword half-naked Ojo 2 -- 亡者兵士 邪霊変身前 折剣 半裸 王城2", + "110180": "Dead soldier Dagger half-naked black Cape Ojo 2 -- 亡者兵士 短剣 半裸黒頭巾 王城2", + "110200": "Dead Soldier Sword only dress base -- 亡者兵士 剣のみ 軽装 拠点", + "110210": "Dead soldier half-naked base -- 亡者兵士 折剣 半裸 拠点", + "110220": "Dead Soldier Sword Shield lightly-dressed base -- 亡者兵士 剣盾 軽装 拠点", + "110240": "Dead soldier cross-bow half-naked base -- 亡者兵士 クロスボウ 半裸 拠点", + "110250": "Dead soldier spear large shield half-naked base -- 亡者兵士 槍大盾 半裸 拠点", + "110300": "Dead Soldier Sword only Light Cathedral church -- 亡者兵士 剣のみ 軽装 聖堂教会", + "110400": "Dead Soldier Sword only dress Ojo 3 -- 亡者兵士 剣のみ 軽装 王城3", + "110410": "Dead Soldier folding Sword Half-naked Ojo 3 -- 亡者兵士 折剣 半裸 王城3", + "110420": "Dead Soldier Sword Shield full Equipment Ojo 3 -- 亡者兵士 剣盾 フル装備 王城3", + "110430": "Dead Soldier Folding sword lantern Half-naked Ojo 3 -- 亡者兵士 折剣ランタン 半裸 王城3", + "110440": "Dead soldiers cross-bow full equipment _ no scarves Ojo 3 -- 亡者兵士 クロスボウ フル装備_スカーフなし 王城3", + "110450": "Dead Soldier Spear Large shield Full equipment _ with Scarf Ojo 3 -- 亡者兵士 槍大盾 フル装備_スカーフあり 王城3", + "110470": "Dead Soldier evil Spirit makeover pre-folded sword half-naked Ojo 3 -- 亡者兵士 邪霊変身前 折剣 半裸 王城3", + "110480": "Dead soldier Dagger half-naked black Cape Ojo 3 -- 亡者兵士 短剣 半裸黒頭巾 王城3", + "110500": "Dead Soldier (Large) Axe Ojo 1 -- 亡者兵士(大) 斧 王城1", + "110510": "Dead Soldier (Large) Ojo 1 -- 亡者兵士(大) ハルバード 王城1", + "110600": "Dead Soldier (Large) Axe Basilica Church -- 亡者兵士(大) 斧 聖堂教会", + "110610": "Dead Soldier (Dai) The church of the Jardin Basilica -- 亡者兵士(大) ハルバード 聖堂教会", + "113000": "Caries slug small usually ojo 1 -- 蝕のナメクジ小 通常 王城1", + "113050": "Caries slug small usually poison swamp forest -- 蝕のナメクジ小 通常 毒沼の森", + "113060": "Slugs of caries small arm out poison swamp forest -- 蝕のナメクジ小 腕出し 毒沼の森", + "117000": "Skeleton Warrior A: Scimitar + shield -- スケルトン戦士A:シミター+盾", + "117010": "Skeleton Warrior A: Nodachi -- スケルトン戦士A:野太刀", + "117020": "Skeleton Warrior A: Bow -- スケルトン戦士A:弓", + "118000": "Skeleton Warrior B: Scimitar one hand -- スケルトン戦士B:シミター片手", + "118010": "Skeleton Warrior B: Scimitar Nitori -- スケルトン戦士B:シミター二刀流", + "119000": "Dead Knight Grey Tome + Large Shield -- 亡者僧騎士 グレートメイス+大盾", + "119010": "Dead Priest Great Sword -- 亡者僧騎士 グレートソード", + "119100": "Dead Knight Grey Tome + Large Shield -- 亡者僧騎士 グレートメイス+大盾", + "119110": "Dead Priest Great Sword -- 亡者僧騎士 グレートソード", + "120000": "Dwarf people Hatchet -- 矮小人 ハチェット", + "120010": "Dwarf man ice-ax -- 矮小人 ピッケル", + "120020": "Dwarf Man Large Sword -- 矮小人 大剣", + "120100": "Dwarf Man Hatchet Ojo 3 -- 矮小人 ハチェット 王城3", + "120110": "Dwarf man ice-ax Ojo 3 -- 矮小人 ピッケル 王城3", + "120120": "Dwarf Man Large Sword Ojo 3 -- 矮小人 大剣 王城3", + "120200": "Dwarf people Hatchet City -- 矮小人 ハチェット 街", + "120210": "Dwarf-ice-ax City -- 矮小人 ピッケル 街", + "120220": "Dwarf men's Great Swords Street -- 矮小人 大剣 街", + "121000": "Blue: Spear shield poison Swamp forest -- ブルー:槍盾 毒沼の森", + "121010": "Blue: Sword Poison Swamp Forest -- ブルー:剣 毒沼の森", + "121020": "Blue: Deep Poison swamp forest -- ブルー:ディープ 毒沼の森", + "121030": "Blue: The Forest of estrus poison Swamp -- ブルー:発情 毒沼の森", + "121040": "Blue: Dog Poison Swamp Forest -- ブルー:犬 毒沼の森", + "122000": "Resurrection _ Host Basilica Church -- よみがえり_宿主 聖堂教会", + "122010": "Resurrection _ Host + Body Basilica Church -- よみがえり_宿主+本体 聖堂教会", + "123000": "Missionary Town -- 宣教師 街", + "123010": "Missionary Town * For Sniper stand-in -- 宣教師 街 ※スナイパー代役用", + "123100": "Missionary Cathedral Church -- 宣教師 聖堂教会", + "123200": "Missionary Poison Swamp first half -- 宣教師 毒沼前半", + "124000": "Poor dead (hatchet) city -- 貧民亡者(鉈) 街", + "124010": "The poor dead (hatchet + lantern) town -- 貧民亡者(鉈+ランタン) 街", + "124020": "The poor dead (sickle + dagger) City -- 貧民亡者(鎌+短剣) 街", + "124030": "Poor dead (Mallet) Street -- 貧民亡者(木槌) 街", + "124040": "Poor dead (hoe) city -- 貧民亡者(鍬) 街", + "124100": "Poor dead (hatchet) underground lake -- 貧民亡者(鉈) 地底湖", + "124110": "Poor dead (hatchet + lantern) underground Lake -- 貧民亡者(鉈+ランタン) 地底湖", + "124120": "The poor dead (sickle + dagger) underground Lake -- 貧民亡者(鎌+短剣) 地底湖", + "124130": "Poor dead (wooden mallet) underground lake -- 貧民亡者(木槌) 地底湖", + "124140": "Poor dead (hoe) underground lake -- 貧民亡者(鍬) 地底湖", + "125000": "Poor dead Elite Basilica Church -- 貧民亡者エリート 聖堂教会", + "125100": "Poor dead Elite Base -- 貧民亡者エリート 拠点", + "126000": "Poor dead servant: sawing wooden-shouldered Street -- 貧民亡者下男:のこぎり 木板背負い 街", + "126001": "Poor dead servant: a town with a saw-iron basket -- 貧民亡者下男:のこぎり 鉄籠背負い 街", + "126010": "Poor dead servant: Mortar → saw Town -- 貧民亡者下男:臼→のこぎり 街", + "128000": "Shin Ojo Knight Straight Sword + Shield visor Close Ojo 1 -- 新王城騎士 直剣+盾 バイザー閉め 王城1", + "128003": "New Ojo Knight Straight Sword + shield visor Open red eye Ojo 1 -- 新王城騎士 直剣+盾 バイザー開け 赤目 王城1", + "128010": "New Ojo Knight Spear + shield visor close Ojo 1 -- 新王城騎士 槍+盾 バイザー閉め 王城1", + "128013": "New Ojo Knight Spear + shield visor open red eye Ojo 1 -- 新王城騎士 槍+盾 バイザー開け 赤目 王城1", + "128100": "Shin Ojo Knight Straight Sword + Shield visor Close Ojo 2 -- 新王城騎士 直剣+盾 バイザー閉め 王城2", + "128101": "New Ojo Knight Straight Sword + shield visor open red eye Ojo 2 -- 新王城騎士 直剣+盾 バイザー開け 赤目 王城2", + "128110": "New Ojo Knight Spear + shield visor close Ojo 2 -- 新王城騎士 槍+盾 バイザー閉め 王城2", + "128111": "New Ojo Knight Spear + shield visor open red eye Ojo 2 -- 新王城騎士 槍+盾 バイザー開け 赤目 王城2", + "128120": "New Ojo Knight Great Sword visor Close Ojo 2 -- 新王城騎士 大剣 バイザー閉め 王城2", + "128121": "New Ojo Knight Large sword visor open red-eye Ojo 2 -- 新王城騎士 大剣 バイザー開け 赤目 王城2", + "128201": "New Ojo Knight Straight Sword + shield visor open red eye Ojo 3 -- 新王城騎士 直剣+盾 バイザー開け 赤目 王城3", + "128211": "New Ojo Knight Spear + shield visor open red eye Ojo 3 -- 新王城騎士 槍+盾 バイザー開け 赤目 王城3", + "128221": "New Ojo Knight Large sword visor open red-eye Ojo 3 -- 新王城騎士 大剣 バイザー開け 赤目 王城3", + "129000": "Ojo fat-long axe Ojo 1 -- 王城デブ 長斧 王城1", + "129100": "Ojo Fatty Axe Ojo 2 -- 王城デブ 長斧 王城2", + "129110": "Ojo fat Short Axe Nitori Ojo 2 -- 王城デブ 短斧二刀流 王城2", + "129400": "Ojo Long Axe forest late -- 王城デブ 長斧 森後半", + "129410": "Ojo fat short Axe Nitori Mori -- 王城デブ 短斧二刀流 森後半", + "130010": "Black Knight: Oversized Sword -- 黒騎士:特大剣", + "130020": "Black Knight: The Great Axe -- 黒騎士:大斧", + "130110": "Black Knight: Oversized sword Waste City -- 黒騎士:特大剣 廃都", + "130120": "Black Knight: Large axe Waste city -- 黒騎士:大斧 廃都", + "130610": "Black Knight: Oversized Sword -- 黒騎士:特大剣", + "130620": "Black Knight: The Great Axe -- 黒騎士:大斧", + "131000": "Dark Knight Beast Ojo 1 -- ダークナイトビースト 王城1", + "131001": "Dark Knight Beast Ojo 1 -- ダークナイトビースト 王城1", + "131100": "Dark Knight Beast Ojo 3 -- ダークナイトビースト 王城3", + "132000": "Crystal Elders -- 結晶の古老", + "132010": "Elders alter ego of Crystal -- 結晶の古老 分身", + "134000": "Dead Wax: Whip + Magic Ojo 3 -- 蝋の死人:鞭+魔法 王城3", + "134010": "Dead wax: Beating Ojo 3 -- 蝋の死人:殴り 王城3", + "135000": "Slave Spirits: Dagger -- 奴隷霊:短剣", + "135010": "Slave Spirits: fetters -- 奴隷霊:足枷", + "135020": "Slave Spirits: no Legs -- 奴隷霊:足なし", + "135030": "Slave Spirit: Straight Sword -- 奴隷霊:直剣", + "136000": "Crucifixion dead A -- 磔亡者A", + "137000": "Crucifixion dead B -- 磔亡者B", + "138000": "Snake Man priest -- 蛇人の司祭", + "139000": "Snake Assassin (Dagger x 2) -- 蛇人の暗殺者(短刀×2)", + "139010": "Snake Assassin (shorty + small shield) -- 蛇人の暗殺者(ショーテル+小盾)", + "139100": "The assassin of the Snake (Kusarigama) -- 蛇人の暗殺者(鎖鎌)", + "140000": "Fire-proof woman -- 火防女", + "141000": "Silver Knight: Sword + Shield -- 銀騎士:剣+盾", + "141010": "Silver Knight: Spear + Shield -- 銀騎士:槍+盾", + "141020": "Silver Knight: Bow → sword + shield -- 銀騎士:弓 → 剣+盾", + "141030": "Silver Knight: Bow → Spear + shield -- 銀騎士:弓 → 槍 + 盾", + "144000": "Pilgrimage dead -- 巡礼亡者", + "147000": "Wheel Skeleton Dungeon -- 車輪スケルトン ダンジョン", + "148000": "Dark Knight (Phantom) -- ダークナイト(幻影)", + "149000": "Tracker (Phantom) -- 追跡者(幻影)", + "202000": "Dead Dog (Large) no arrow Ojo 1 -- 亡者犬(大) 矢無し 王城1", + "202001": "Dead Dog (Large) arrow Little Ojo 1 -- 亡者犬(大) 矢少しあり 王城1", + "202002": "Dead Dog (Large) arrow many Ojo 1 -- 亡者犬(大) 矢多くあり 王城1", + "202010": "Dead Dog (Large) without an arrow -- 亡者犬(大) 矢無し 街", + "202020": "Dead Dog (Large) no arrow forest -- 亡者犬(大) 矢無し 森", + "202021": "Dead Dog (Large) arrow little forest -- 亡者犬(大) 矢少しあり 森", + "202022": "Dead Dog (Large) arrow many Woods -- 亡者犬(大) 矢多くあり 森", + "202100": "Dead Dog (small) no arrow Ojo 1 -- 亡者犬(小) 矢無し 王城1", + "202110": "Dead Dog (small) no Arrow street -- 亡者犬(小) 矢無し 街", + "202210": "Dead Dog (small) no arrow forest -- 亡者犬(小) 矢無し 森", + "203000": "Salivan's death: the song Sword -- サリヴァーンの死神:曲剣", + "203010": "Salivan's death: Sickle -- サリヴァーンの死神:鎌", + "204000": "Hungry Jack -- はらぺこジャック", + "206000": "Resurrection (Third form) -- よみがえり(第3形態)", + "207000": "Prisoner of the Dungeon: bare hands -- 地下牢の囚人:素手", + "207010": "Prisoner of the Dungeon: Spear -- 地下牢の囚人:槍", + "207020": "Prisoner of the Dungeon: Dagger -- 地下牢の囚人:短剣", + "208000": "Dead dog: Maggots belly poison swamp forest -- 亡者犬:蛆腹 毒沼の森", + "209000": "Dragon's Errand Ojo 2 -- 竜の御使い 王城2", + "210000": "Drifting Stuff -- 漂うもの", + "210100": "One of the drifting dungeons -- 漂うもの 地下牢", + "211000": "Dog Rat Street -- 犬ネズミ 街", + "211100": "Rat Dungeon -- 犬ネズミ 地下牢", + "211200": "Dog Rat Waste City -- 犬ネズミ 廃都", + "211300": "A dog rat wastes underground lake -- 犬ネズミ 廃都 地底湖", + "212000": "Mimic _ Normal -- ミミック_ノーマル", + "212100": "Mimic _ Normal Ojo 2 -- ミミック_ノーマル 王城2", + "212110": "Mimic _ Exorcist Ojo 2 -- ミミック_エクソシスト 王城2", + "212200": "Mimic _ Normal Dungeon -- ミミック_ノーマル ダンジョン", + "212300": "Mimic _ Normal Dungeons -- ミミック_ノーマル 地下牢", + "212310": "Mimic _ Exorcist Dungeon -- ミミック_エクソシスト 地下牢", + "213000": "Wriggles Carrion Street -- 蠢く腐肉 街", + "213100": "Wriggles Carrion -- 蠢く腐肉 廃都", + "213200": "Wriggles Carrion, an underground lake -- 蠢く腐肉 廃都 地底湖", + "214000": "Basilisk -- バジリスク", + "215000": "Crystal Lizard Ojo 1 -- 結晶トカゲ 王城1", + "215100": "Crystal Lizard Town -- 結晶トカゲ 街", + "215200": "Crystal Lizard Ojo 2 -- 結晶トカゲ 王城2", + "215300": "Crystal Lizard Ojo 3 -- 結晶トカゲ 王城3", + "215400": "Crystal Lizard Bridge -- 結晶トカゲ 橋", + "215500": "Crystal Lizard Anole -- 結晶トカゲ アノール", + "215600": "Crystal Lizard Dungeon -- 結晶トカゲ 地下牢", + "215700": "Crystal Lizard Poison Swamp -- 結晶トカゲ 毒沼", + "215800": "Crystal Lizard Cathedral Church -- 結晶トカゲ 聖堂教会", + "215900": "Crystal Lizard Dungeon -- 結晶トカゲ ダンジョン", + "215950": "Crystal Lizard Base -- 結晶トカゲ 拠点", + "216000": "What we call caries (small) Ojo 1 -- 蝕を呼ぶもの(小) 王城1", + "217000": "Saint of the Prison -- 牢獄の聖女", + "218000": "Maggots (slug type) -- 蛆人(なめくじタイプ)", + "218010": "Maggots (witch type) -- 蛆人(魔法使いタイプ)", + "219000": "Ojo's Gargoyle Light Dungeon -- 王城のガーゴイル 灯火 地下牢", + "219010": "Ojo's Vampire spear Dungeon -- 王城のガーゴイル 槍 地下牢", + "219100": "Ojo Gargoyle Lights Ojo 3 -- 王城のガーゴイル 灯火 王城3", + "219110": "Ojo Gargoyle Spear Ojo 3 -- 王城のガーゴイル 槍 王城3", + "220000": "Sand worm in the waste city -- 廃都のサンドワーム", + "221000": "Zombie Glass: Dagger -- ゾンビガラス:短剣", + "221001": "Zombie Glass: Scythe -- ゾンビガラス:大鎌", + "223000": "New Shing -- 新獄吏", + "224000": "Full Armor Beast Ojo 1 -- フルアーマー獣 王城1", + "224001": "Full Armor Beast Ojo 1 (after HU) -- フルアーマー獣 王城1(HU後)", + "225000": "Tindalos -- ティンダロス", + "226000": "3-Ream Varistor -- 3連バリスタ", + "227000": "Stench Crab Poison Swamp -- 死臭蟹 毒沼", + "227020": "Stench Crab Waste City -- 死臭蟹 廃都", + "227100": "Stench crab (small) poison swamp -- 死臭蟹(小) 毒沼", + "227120": "Stench crab (small) disused city -- 死臭蟹(小) 廃都", + "228000": "Dog Rats (Large) -- 犬ネズミ(大)", + "229000": "Salivan watchdog -- サリヴァーンの番犬", + "229100": "Salivan watchdog (small) -- サリヴァーンの番犬(小)", + "302000": "Golem -- ゴーレム", + "302010": "Golem (Iron Sphere) -- ゴーレム(鉄球)", + "302100": "Golem, Cathedral Church -- ゴーレム(大)_聖堂教会", + "302101": "Golem (Large) _ Cathedral church (special effects differences _ events) -- ゴーレム(大)_聖堂教会(特殊効果違い_イベント)", + "302198": "Golem (Large) _ Dungeon test -- ゴーレム(大)_地下牢テスト", + "304000": "Observer of the Abyss -- 深淵の監視者", + "305000": "Ash Daemon -- 灰のデーモン", + "306000": "Wood Demon Street -- 薪のデーモン 街", + "306100": "Daemon base of firewood -- 薪のデーモン 拠点", + "307000": "Daemon Priest -- デーモン司祭", + "308000": "Caries Butterfly Ojo 2 -- 蝕の蝶 王城2", + "309000": "Spider Town -- 牢蜘蛛 街", + "310000": "The Divine City of Crystal lizards -- 結晶トカゲの神 街", + "310200": "Church of the Divine Cathedral of Crystal Lizards -- 結晶トカゲの神 聖堂教会", + "310320": "The God of crystal lizards (Crystal high) underground lake -- 結晶トカゲの神(結晶多い) 廃都 地底湖", + "310400": "Crystal Lizard God (short tail) Basilica Church -- 結晶トカゲの神(尻尾短い) 聖堂教会", + "311000": "Eclipse Spider Ojo 3 -- 蝕の蜘蛛 王城3", + "311100": "Spider Cathedral of caries -- 蝕の蜘蛛 聖堂", + "311200": "Spider waste of caries -- 蝕の蜘蛛 廃都", + "312000": "Sacred Beast of the Forest -- 森の霊獣", + "314000": "The Flying Dragon of the bridge _ Hashimoto -- 橋の飛竜_ヘルカイト_橋下", + "314010": "The Flying Dragon of the bridge _ the Climb 2 -- 橋の飛竜_ヘルカイト_登る2", + "314100": "The Flying Dragon of the bridge _ Hel Kite _ Ojo 1 -- 橋の飛竜_ヘルカイト_王城1", + "316000": "Dragon's Guardian Knight Ojo 2 -- 竜の守護騎士 王城2", + "317000": "Dark Wraith -- ダークレイス", + "501000": "King of storms: simple -- 嵐の王:単体", + "502000": "Crimson Bat -- クリムゾンバット", + "503000": "The King of the Storm: riding -- 嵐の王:騎乗", + "511000": "Hero Segunda -- 英雄グンダ", + "512000": "Snake Spirit -- 蛇霊", + "514000": "The Old king of caries -- 蝕の老王", + "514010": "The old king of caries _ an apparition -- 蝕の老王_幻影", + "515000": "Salivan -- サリヴァーン", + "516000": "King of the Dead -- 死霊の王", + "518000": "Cursed Colossus City -- 呪われた巨像 街", + "518001": "Cursed Colossus (heat up Test) -- 呪われた巨像(ヒートアップテスト)", + "520000": "Fat Daemon -- デブデーモン", + "520001": "Fat daemon (heat up) -- デブデーモン(ヒートアップ)", + "521000": "Sinful Rosalia -- 罪深きロザリア", + "522000": "Cardinal (Long) -- 枢機卿団(長)", + "522098": "Cardinal HP Dummy -- 枢機卿団 HPダミー", + "522100": "Cardinal (Deb): Wheel or Sword -- 枢機卿団(デブ):輪っか剣", + "522102": "The Cardinal (Deb): Long Wheel or sword -- 枢機卿団(デブ):長い輪っか剣", + "522110": "Cardinal (SS Deb): A Ring or a sword -- 枢機卿団(親衛隊デブ):輪っか剣", + "522112": "The Cardinal (SS Deb): Long Wheel or sword -- 枢機卿団(親衛隊デブ):長い輪っか剣", + "522200": "Cardinal (tall): Wheel or Sword -- 枢機卿団(のっぽ):輪っか剣", + "522202": "Cardinal (tall): Long Wheel or sword -- 枢機卿団(のっぽ):長い輪っか剣", + "522301": "Cardinal (normal): Wheel or Sword -- 枢機卿団(通常):輪っか剣", + "522302": "Cardinal (normal): candlestick -- 枢機卿団(通常):燭台", + "522303": "Cardinal (usually): Long Wheel or sword -- 枢機卿団(通常):長い輪っか剣", + "524000": "Moonlight Witch -- 月光の魔女", + "525000": "Prince of Darkness (elder brother) Ojo 3 -- 闇の双皇子(兄) 王城3", + "525001": "Prince of Darkness (elder brother): HU Ojo 3 -- 闇の双皇子(兄):HU 王城3", + "525100": "Prince of Darkness (brother) Ojo 3 -- 闇の双皇子(弟) 王城3", + "526000": "Mad Warrior Hallec -- 狂戦士ハレック", + "527000": "Tracker Ojo 1 -- 追跡者 王城1", + "800000": "■ ■ ■ ■ ■ For products up here ■ ■ ■ ■. ■. -- ■■■■■製品用ここまで■■■■■", + "890000": "Adjustment base character for the time being -- とりあえずの調整ベースキャラ", + "890001": "(during testing) player assumption _ Level 1 -- (テスト中)プレイヤー想定_レベル1", + "890100": "Player assumed _ Level 100 (during testing) -- (テスト中)プレイヤー想定_レベル100", + "890200": "Start Game -- ゲーム開始", + "890210": "Ojo 1 -- 王城1", + "890220": "City of Towers -- 塔の街", + "890230": "Mori 1 (first half) -- 森1(前半)", + "890240": "Cathedral Church -- 聖堂教会", + "890260": "Dungeon -- ダンジョン", + "890280": "Anole -- アノール", + "890290": "Dungeon -- 地下牢", + "890330": "Base -- 拠点", + "890340": "End of game -- ゲーム終了", + "890900": "Enemy character for E3 -- E3用敵キャラ", + "890910": "Avoidance test character -- 回避テストキャラ", + "891000": "ID Book -- ID予約", + "900001": "Sound character -- 音出し用キャラ", + "950100": "Black Knight Default -- 黒騎士デフォルト", + "960099": "quadruped test -- 四脚テスト", + "970003": "FDP Skeleton (item drop dummy) -- FDP スケルトン(アイテムドロップダミー)", + "992000": "Production character test -- 演出キャラテスト", + "999000": "NPC Test NPC Multi cooperation -- NPCテスト  NPCマルチ協力", + "999001": "NPC Test NPC Multi Intrusion -- NPCテスト  NPCマルチ侵入" + }, + "NpcThinkParam": { + "0": "For testing -- テスト用", + "1": "For not doing anything -- なにもしない用", + "2": "Atarisawari data (copy and paste recommended) -- あたりさわりのないデータ(コピペ元推奨)", + "10": "Logic for animation check: near -- アニメチェック用ロジック:近", + "11": "Logic for animation check: Far -- アニメチェック用ロジック:遠", + "50": "Ishizaki Test -- 石崎テスト", + "100": "Automatic patrol (default) -- 自動巡回用(デフォルト)", + "540": "For automatic patrol (running) -- 自動巡回用(走り)", + "541": "Automatic patrol (walking) -- 自動巡回用(歩き)", + "542": "Automatic patrol (super dash) -- 自動巡回用(スーパーダッシュ)", + "10000": "Collective Patrol dummy leader -- 集団巡回ダミーリーダー", + "10001": "For funnels -- ファンネル用", + "10010": "City Map Sniper Platoon target dummy character -- 街マップスナイパーの小隊ターゲット用ダミーキャラ", + "10200": "For NPC Logic Testing -- NPCロジックテスト用", + "20000": "NPC Sub-goal Test 00: Combat -- NPCサブゴールテスト00:戦闘", + "20001": "NPC Sub-goal Test 01: walking and Running -- NPCサブゴールテスト01:歩行・走行", + "20002": "NPC Sub-goal Test 02: Quick Turn/left/right movement -- NPCサブゴールテスト02:クイックターン・左右移動", + "20003": "NPC Sub-goal Test 03: Retreat/Step -- NPCサブゴールテスト03:後退・ステップ", + "20010": "NPC Test 00: Test -- NPCテスト00:テスト", + "90390": "Dungeon Objects (for bullet owners) -- 地下牢 器オブジェ(弾丸オーナー用)", + "107000": "Skeleton (King of the Evil Kin) -- スケルトン(死霊の王 眷属)", + "107001": "Skeleton (song sword) -- スケルトン(曲剣)", + "107002": "Skeleton (Sword) -- スケルトン(大曲剣)", + "107003": "Skeleton (bow) -- スケルトン(弓)", + "107004": "Skeleton (song sword) * Always running -- スケルトン(曲剣)※必ず走る", + "107005": "Skeleton (Sword) * Always running -- スケルトン(大曲剣)※必ず走る", + "107006": "Skeleton (Flame vase) -- スケルトン(火炎壺)", + "107081": "Skeleton (Sword for suspension bridge) -- スケルトン(吊り橋用 剣)", + "107082": "Skeleton (torch for suspension bridge) -- スケルトン(吊り橋用 松明)", + "109000": "Dead Soldier: Segunda State -- 亡者兵士 :グンダ状態", + "110000": "Dead Soldier (Straight Sword + shield) -- 亡者兵士 (直剣+盾)", + "110001": "Dead Soldier (Straight Sword + shield): Oil pot possible -- 亡者兵士 (直剣+盾):油壺可能", + "110003": "Dead Soldier (Straight Sword + shield): Flame bottle possible -- 亡者兵士 (直剣+盾):火炎瓶可能", + "110004": "Dead Soldier (Straight Sword + shield): Love Molotov cocktails -- 亡者兵士 (直剣+盾):火炎瓶大好き", + "110005": "Dead Soldier (Straight sword only) -- 亡者兵士 (直剣のみ)", + "110006": "Dead Soldier (Straight sword only): Love Molotov cocktails -- 亡者兵士 (直剣のみ):火炎瓶大好き", + "110007": "Dead Soldier (Straight sword only): Flame bottle possible -- 亡者兵士 (直剣のみ):火炎瓶可能", + "110008": "Dead Soldier (Straight sword only): Oil pot possible -- 亡者兵士 (直剣のみ):油壷可能", + "110010": "Dead soldier (Spear + large shield) -- 亡者兵士 (槍+大盾)", + "110020": "Dead Soldier (Crossbow) -- 亡者兵士 (クロスボウ)", + "110030": "Dead Soldier (Lantern) -- 亡者兵士 (ランタン)", + "110050": "Dead Soldier (broken) -- 亡者兵士 (折れ直)", + "110053": "Dead Soldier (Ojo 1) -- 亡者兵士 (折れ直 嗅覚有 王城1)", + "110054": "Dead soldier (for a broken straight makeover. Only closer) -- 亡者兵士 (折れ直 変身用。近づくだけ)", + "110060": "Dead Soldier (Dagger) -- 亡者兵士 (短剣)", + "110070": "Dead Soldier (Common) special standby ※ When you become a combat state, change to another thought ID on the event side -- 亡者兵士 (共通)特殊待機時 ※戦闘状態になったら、イベント側で別の思考IDに変更する", + "110090": "[Monster House] dead soldier (Straight sword) -- 【モンスターハウス】亡者兵士 (直剣)", + "110091": "[Monster House] dead soldier (Spear + large shield) -- 【モンスターハウス】亡者兵士 (槍+大盾)", + "110093": "[Monster House] dead soldier (lantern) -- 【モンスターハウス】亡者兵士 (ランタン)", + "110094": "[For City Test] dead Sniper -- 【街テスト用】亡者スナイパー", + "110098": "Dead soldier Test: Straight Sword + Shield -- 亡者兵士テスト用:直剣+盾", + "110500": "Dead Soldier (Large) _ Axe -- 亡者兵士(大)_斧", + "110501": "Dead Soldier (Large) _ Axe visibility Low Ojo 1 -- 亡者兵士(大)_斧 視界低い 王城1", + "110510": "Dead Soldier (Large) _ Halle Bird -- 亡者兵士(大)_ハルバード", + "110511": "Dead Soldier (Large) _ Halle Bird Vision/Hearing Low Ojo 1 -- 亡者兵士(大)_ハルバード 視界/聴覚低い 王城1", + "110580": "Dead Soldier (Large) _ Axe _interupttest -- 亡者兵士(大)_斧_INTERUPTTest", + "110590": "Dead Soldier (Large) _ for Umeda test -- 亡者兵士(大)_梅田テスト用", + "111000": "Dark Knight Straight Sword + Shield -- ダークナイト 直剣 + 盾", + "111001": "Dark Knight Straight Sword + shield (olfactory parameters for events) -- ダークナイト 直剣 + 盾  (イベント用嗅覚パラメータ)", + "111050": "Dark Knight Straight Sword + shield for Avatar -- ダークナイト 直剣 + 盾 アバター用", + "111098": "For the Dark Knight Test (Nakano) -- ダークナイト テスト用(中野)", + "112000": "Dead Knight (Sword shield) -- 亡者騎士(剣盾)", + "113000": "Small slugs of caries -- 蝕のナメクジ小", + "113010": "It's a small arm slug. -- 蝕のナメクジ小 腕だし", + "113200": "A slug of the caries (dead dumpling) -- 蝕のナメクジ(亡者団子)", + "115000": "Dead Shi Mace + Large Shield -- 亡者僧兵 メイス+大盾", + "115010": "Dead Shi both hand held hammer -- 亡者僧兵 両手持ちハンマー", + "115020": "Dead Shi Ice-ax -- 亡者僧兵 ピッケル", + "115030": "Dead Shi Mace + Miracle -- 亡者僧兵 メイス+奇跡", + "115040": "Dead Shi Long Distance miracle -- 亡者僧兵 遠距離奇跡", + "115070": "Narrow visual range for dead Shi circuit -- 亡者僧兵 巡回用 視覚範囲狭い", + "117000": "Skeleton Warrior a Scimitar + shield -- スケルトン戦士A シミター+盾", + "117010": "Skeleton Warrior A Nodachi -- スケルトン戦士A 野太刀", + "117030": "Skeleton Warrior A bow (pre-creation) -- スケルトン戦士A 弓(先行作成)", + "118000": "Skeleton Warrior B: Scimitar one hand -- スケルトン戦士B:シミター片手", + "118010": "Skeleton Warrior B: Scimitar Nitori -- スケルトン戦士B:シミター二刀流", + "119000": "Dead Priest Grey Tome + Cathedral Church of the Great Shield -- 亡者僧騎士 グレートメイス+大盾 聖堂教会", + "119005": "Dead Priest Grey tome + great Shield Bow Switching Basilica Association -- 亡者僧騎士 グレートメイス+大盾 弓持ち替え可 聖堂協会", + "119010": "Dead Priest the Great Sword Basilica Church -- 亡者僧騎士 グレートソード 聖堂教会", + "119050": "Dead Knight Grey Tome + Large shield (avatar) -- 亡者僧騎士 グレートメイス+大盾(アバター)", + "120000": "Dwarf man hatchet/ice-ax: blowgun possible -- 矮小人 ハチェット/ピッケル :吹き矢可能", + "120001": "Dwarf man hatchet/ice-ax: blowgun narrow View -- 矮小人 ハチェット/ピッケル :吹き矢可能 視野狭い", + "120002": "Dwarf man hatchet/ice-ax: blowgun possible?? -- 矮小人 ハチェット/ピッケル :吹き矢可能 ??", + "120003": "Dwarf man hatchet/ice-ax: Flame pots available -- 矮小人 ハチェット/ピッケル :火炎壺可能", + "120004": "Dwarf man hatchet/ice-ax: Fire Pot battery -- 矮小人 ハチェット/ピッケル :火炎壺砲台", + "120005": "Dwarf man hatchet/ice-ax: blowgun/flame vase not available -- 矮小人 ハチェット/ピッケル :吹き矢/火炎壺 不可", + "120010": "Dwarf man hatchet/ice-ax: blowgun Main -- 矮小人 ハチェット/ピッケル :吹き矢メイン", + "120020": "Dwarf Man Large Sword -- 矮小人 大剣", + "120050": "Dwarf man hatchet/ice-ax (avatar) -- 矮小人 ハチェット/ピッケル (アバター)", + "121000": "Blue _ Spear + Shield -- ブルー_槍+盾", + "121001": "Blue _ Spear + Shield: Arimoro -- ブルー_槍+盾:専守", + "121010": "Blue _ Sword -- ブルー_剣", + "121020": "Deep Blue -- ブルー_ディープ", + "121030": "Blue _ Estrus -- ブルー_発情", + "121040": "Blue _ quadruped -- ブルー_四足", + "122000": "Resurrection (first to second form) patrol -- よみがえり(第1~2形態) 巡回", + "122010": "Resurrection (first to second form) fixed battery -- よみがえり(第1~2形態) 固定砲台", + "122020": "Resurrection (first to second form) body appearance solid -- よみがえり(第1~2形態) 本体出現固体", + "122030": "Resurrection (first to second form) body injection solid -- よみがえり(第1~2形態) 本体射出固体", + "123000": "Missionary -- 宣教師", + "123001": "Long distance attack version until missionary PC approaches -- 宣教師 PCが近づくまで遠距離攻撃版", + "123051": "Missionary (Avatar: Retreat) -- 宣教師(アバター:後退)", + "123098": "Missionaries (for snipers) -- 宣教師(スナイパー用)", + "123099": "Missionary -- 宣教師", + "124000": "Poor dead (hatchet) -- 貧民亡者(鉈)", + "124001": "Poor Dead (hatchet): Fire pot fixed Battery -- 貧民亡者(鉈):火炎壺固定砲台", + "124002": "Poor Dead (hatchet): Use of flame pots -- 貧民亡者(鉈):火炎壺使用", + "124003": "Poor Dead (hatchet): Oil pot fixed Battery -- 貧民亡者(鉈):油壺固定砲台", + "124004": "Poor Dead (hatchet): Oil jar use -- 貧民亡者(鉈):油壷使用", + "124010": "Poor dead (hatchet + lantern) -- 貧民亡者(鉈+ランタン)", + "124020": "The poor dead (sickle + dagger) -- 貧民亡者(鎌+短剣)", + "124030": "Poor dead (Mallet) -- 貧民亡者(木槌)", + "124040": "Poor dead (hoe) -- 貧民亡者(鍬)", + "125000": "Poor dead Elite -- 貧民亡者エリート", + "125099": "Poor dead Elite patrol test -- 貧民亡者エリート巡回テスト用", + "126000": "Poor dead servant: common -- 貧民亡者下男:共通", + "126090": "Poor dead servant: sawing -- 貧民亡者下男:鋸", + "126091": "Poor dead servant: common/Upper Visibility Limited edition -- 貧民亡者下男:共通/上視界制限版", + "128000": "Shin Ojo Knight: Straight Sword + Shield -- 新王城騎士:直剣+盾", + "128010": "New Ojo Knight: Spear + Shield -- 新王城騎士:槍+盾", + "128020": "New Ojo Knight: the Great Sword -- 新王城騎士:大剣", + "128030": "Shin Ojo Knight: Crossbow -- 新王城騎士:クロスボウ", + "129000": "Ojo Deb: Long axe -- 王城デブ:長斧", + "129010": "Ojo Deb: Short Axe Nitori -- 王城デブ:短斧二刀流", + "130000": "Black Knight: Sword -- 黒騎士:剣", + "130010": "Black Knight: Oversized Sword -- 黒騎士:特大剣", + "130020": "Black Knight: The Great Axe -- 黒騎士:大斧", + "130030": "Black Knight: Axe Spear -- 黒騎士:斧槍", + "131000": "Dark Knight Beast -- ダークナイトビースト", + "132000": "Crystal Elders -- 結晶の古老", + "132010": "Elders alter ego of Crystal -- 結晶の古老 分身", + "132200": "Crystal Elders Funnel -- 結晶の古老 ファンネル", + "133000": "The Keeper of the Forest: Long axe -- 森の番人:長斧", + "133010": "The Keeper of the Forest: the Great Sword -- 森の番人:大剣", + "133098": "Forest keeper: Long axe for bug test -- 森の番人:長斧バグテスト用", + "133099": "The Keeper of the Forest: the Great Sword test -- 森の番人:大剣 テスト", + "134000": "Dead Wax: Whip + Magic -- 蝋の死人:鞭+魔法", + "134010": "Dead Wax: Beating -- 蝋の死人:殴り", + "135000": "Slave Spirits: Dagger -- 奴隷霊:短剣", + "135010": "Slave Spirits: fetters -- 奴隷霊:足枷", + "135020": "Slave Spirits: no Legs -- 奴隷霊:足なし", + "135030": "Slave Spirit: Straight Sword -- 奴隷霊:直剣", + "136000": "Crucifixion dead A -- 磔亡者A", + "137000": "Crucifixion dead B -- 磔亡者B", + "137090": "Crucifixion dead b * old -- 磔亡者B ※古い", + "138000": "Snake Man priest -- 蛇人の司祭", + "139000": "Snake Assassin (Dagger x 2) -- 蛇人の暗殺者(短刀×2)", + "139010": "Snake Assassin (shorty + small shield) -- 蛇人の暗殺者(ショーテル+小盾)", + "139100": "Snake Assassin (Large) (Kusarigama) -- 蛇人の暗殺者(大) (鎖鎌)", + "141000": "Silver Knight Sword + Shield -- 銀騎士 剣+盾", + "141010": "Silver Knight Spear + Shield -- 銀騎士 槍+盾", + "141020": "Silver Knight Bow → Sword + shield -- 銀騎士 弓 → 剣+盾", + "141030": "Silver Knight bow → Spear + shield -- 銀騎士 弓 → 槍+盾", + "146000": "Painting Protection (phantom) -- 絵画守り(幻影)", + "147000": "Wheel skeleton -- 車輪スケルトン", + "148000": "Dark Knight (spirit body) -- ダークナイト(霊体)", + "149000": "A tracker (spirit body) -- 追跡者(霊体)", + "200000": "Eclipse Wolf -- 蝕のオオカミ", + "200096": "Eclipse Wolf: Kayukawa test -- 蝕のオオカミ:粥川テスト", + "200097": "Eclipse Wolf (heat up): Yoshida test -- 蝕のオオカミ(ヒートアップ):吉田テスト", + "200098": "Eclipse Wolf: Yoshida Test -- 蝕のオオカミ:吉田テスト", + "200099": "Eclipse Wolf: Kayukawa test -- 蝕のオオカミ:粥川テスト", + "202000": "Dead Dog (Large) -- 亡者犬(大)", + "202050": "Dead Dog (Large): Avatar test -- 亡者犬(大):アバタ―テスト", + "202099": "Dead Dog (Large): test -- 亡者犬(大):テスト", + "202100": "Dead Dog (Large) visual range minimum, hearing lower forest first half (dog skeleton instead) -- 亡者犬(大) 視覚範囲極小,聴覚低め 森前半(犬スケルトン代わり)", + "202101": "Dead Dog (small) -- 亡者犬(小)", + "202102": "Dead Dog (small) visibility Low Ojo 1 -- 亡者犬(小) 視界低い 王城1", + "202200": "Dead Dog (Large) (Salivan dog instead) -- 亡者犬(大)(サリヴァーン犬代わり)", + "202201": "Dead Dog (Large) (Salivan dog instead) _ Olfactory strong -- 亡者犬(大)(サリヴァーン犬代わり)_嗅覚強い", + "203000": "Salivan Reaper (song sword) -- サリヴァーンの死神(曲剣)", + "203010": "Salivan's death (sickle) -- サリヴァーンの死神(鎌)", + "203099": "Salivan Reaper: Test -- サリヴァーンの死神:テスト", + "204000": "Hungry Jack -- はらぺこジャック", + "204050": "Hungry Jack: The 12-end Avatar Edition -- はらぺこジャック:12末アバタ―版", + "204099": "Hungry Jack: Test -- はらぺこジャック:テスト", + "206000": "Resurrection (Third form) -- よみがえり(第3形態)", + "206010": "Resurrection (third form) Poison swamp forest -- よみがえり(第3形態) 毒沼の森", + "207000": "Prisoners in Dungeons (bare hands) -- 地下牢の囚人たち(素手)", + "207010": "Prisoners in Dungeons (spear) -- 地下牢の囚人たち(槍)", + "207020": "Prisoners in Dungeons (Daggers) -- 地下牢の囚人たち(短剣)", + "208000": "Dead Dog (Jibara) -- 亡者犬(うじばら)", + "209000": "The Angel of the Dragon -- 竜の御使い", + "210000": "Drifting Stuff -- 漂うもの", + "210010": "Drifting Stuff (mimicry) -- 漂うもの(擬態)", + "211000": "Dog Rats -- 犬ネズミ", + "211098": "Dog Rat (Test ai) -- 犬ネズミ(テストAI)", + "212000": "Mimic _ Normal -- ミミック_ノーマル", + "212010": "Mimic _ Exorcist -- ミミック_エクソシスト", + "213000": "Wriggles Carrion -- 蠢く腐肉", + "213090": "Wriggles Carrion (underground test) -- 蠢く腐肉(地下テスト)", + "214000": "Basilisk -- バジリスク", + "215000": "Crystal Lizard -- 結晶トカゲ", + "216000": "What we call Eclipse (small) -- 蝕を呼ぶもの(小)", + "218000": "Maggots (slug type) -- 蛆人(ナメクジタイプ)", + "218010": "Maggots (witch type) -- 蛆人(魔法使いタイプ)", + "218100": "Maggots (slug type): for Salivan warfare -- 蛆人(ナメクジタイプ):サリヴァーン戦用", + "218110": "Maggots (witch type): for Salivan warfare -- 蛆人(魔法使いタイプ):サリヴァーン戦用", + "219000": "Ojo Gargoyle: Lights -- 王城のガーゴイル:灯火", + "219010": "Ojo Gargoyle: Spear -- 王城のガーゴイル:槍", + "220000": "Sand worm in the waste city -- 廃都のサンドワーム", + "220100": "Sand worm in the Waste City (queen) -- 廃都のサンドワーム(女王)", + "221000": "Zombie Glass (dagger) -- ゾンビガラス(短剣)", + "221001": "Zombie Glass (scythe) -- ゾンビガラス(大鎌)", + "221002": "Zombie Glass (Cane) -- ゾンビガラス(杖)", + "223000": "New Shing -- 新獄吏", + "223010": "New Shing Sniper -- 新獄吏 スナイパー", + "224000": "Full Armor Beast -- フルアーマー獣", + "224100": "Full Armor Beast Ojo 2 small -- フルアーマー獣 王城2 雑魚", + "225000": "Tindalos -- ティンダロス", + "226000": "3-Ream Varistor -- 3連バリスタ", + "227000": "Stench crab -- 死臭蟹", + "227100": "Stench Crab (small) -- 死臭蟹(小)", + "229000": "Salivan watchdog (Large) -- サリヴァーンの番犬(大)", + "229100": "Salivan watchdog (small) -- サリヴァーンの番犬(小)", + "302000": "Golem (Bare hands) -- ゴーレム(素手)", + "302010": "Golem (Iron Sphere) -- ゴーレム(鉄球)", + "302100": "Golem (Large) -- ゴーレム(大)", + "302197": "Golem (Large) olfactory test -- ゴーレム(大) 嗅覚テスト", + "302198": "Golem (Large) Dungeon -- ゴーレム(大) 地下牢", + "302199": "Golem Cathedral -- ゴーレム(大) 聖堂", + "304000": "Observer of the Abyss -- 深淵の監視者", + "304090": "Observer of the Abyss * old -- 深淵の監視者 ※古い", + "304098": "Observer of the Abyss: Yoshida Test -- 深淵の監視者:吉田テスト", + "305000": "Ash Daemon -- 灰のデーモン", + "306000": "Firewood Daemon -- 薪のデーモン", + "306099": "Firewood Daemon (old) -- 薪のデーモン(古い)", + "306100": "Fire Wood Demon Street entrance square -- 薪のデーモン 街 入口広場", + "307000": "Daemon Priest -- デーモン司祭", + "308000": "Butterfly in caries -- 蝕の蝶", + "308001": "Butterfly of caries (not landing) -- 蝕の蝶(着地しない)", + "309000": "The prison spider -- 牢蜘蛛", + "310000": "Crystal Lizard God -- 結晶トカゲの神", + "310050": "Crystal Lizard God-avatar-bver- -- 結晶トカゲの神-アバタ-Bver-", + "311000": "Eclipse Spider -- 蝕の蜘蛛", + "312000": "Sacred Beast of the Forest -- 森の霊獣", + "312020": "Sacred Beast in the Forest (test) -- 森の霊獣(テスト)", + "314000": "The Flying Dragon of the bridge _ Hashimoto -- 橋の飛竜_ヘルカイト_橋下", + "314010": "The Flying Dragon of the bridge _ the Climb 2 -- 橋の飛竜_ヘルカイト_登る2", + "314020": "The bridge Flying Dragon _ hellfire _ Normal Combat -- 橋の飛竜_ヘルカイト_通常戦闘", + "314100": "The Flying Dragon of the bridge _ Ojo 1 (without sight or hearing) -- 橋の飛竜_ヘルカイト_王城1 (視覚・聴覚なし)", + "316000": "Dragon's Guardian Knight -- 竜の守護騎士", + "317000": "Dark Wraith -- ダークレイス", + "501000": "King of storms, simple -- 嵐の王・単体", + "502000": "Crimson Bat -- クリムゾンバット", + "503000": "The King of the Storm: riding -- 嵐の王:騎乗", + "511000": "Hero Segunda -- 英雄グンダ", + "511080": "Segunda (for throwing sync confirmation) -- グンダ(投げ同期確認用)", + "511090": "Segunda (Dead soldier control) monster House -- グンダ(亡者兵士系制御)モンスターハウス", + "511091": "Segunda (tracker-based control) monster House -- グンダ(追跡者系制御)モンスターハウス", + "511098": "Segunda (servant) -- グンダ(下男)", + "511099": "Segunda (tracker-based control) -- グンダ(追跡者系制御)", + "512000": "Snake Spirit -- 蛇霊", + "512092": "Snake Spirit Test _ Monster House -- 蛇霊テスト_モンスターハウス", + "512099": "Snake Spirit Test -- 蛇霊テスト", + "514000": "The Old king of caries -- 蝕の老王", + "514010": "The old king of caries _ an apparition -- 蝕の老王_幻影", + "514099": "The old king of caries test -- 蝕の老王テスト", + "515000": "Salivan -- サリヴァーン", + "516000": "King of the Dead -- 死霊の王", + "518000": "Cursed Colossus -- 呪われた巨像", + "518001": "Cursed Colossus (heat up Test) -- 呪われた巨像(ヒートアップテスト)", + "518002": "Cursed Colossus (normal test) -- 呪われた巨像(通常時テスト)", + "519000": "King of the disused city -- 廃都の孤王", + "520000": "Fat Daemon -- デブデーモン", + "520001": "Deb Demon Ojo 1 (Mausoleum) -- デブデーモン 王城1(霊廟)", + "520002": "Fat Demon Dungeon (surrogate) -- デブデーモン ダンジョン(代理)", + "522000": "Cardinal (Long) -- 枢機卿団(長)", + "522099": "Cardinal Test -- 枢機卿団テスト", + "522100": "Cardinal (Deb) -- 枢機卿団(デブ)", + "522101": "Cardinal (long guards Deb) -- 枢機卿団(長親衛デブ)", + "522200": "Cardinal (tall) -- 枢機卿団(のっぽ)", + "522300": "Cardinal (Normal) -- 枢機卿団(通常)", + "523000": "Mother Dragon -- 母ドラゴン", + "524000": "Moonlight Witch -- 月光の魔女", + "525000": "Prince of Darkness (brother) -- 闇の双皇子(兄)", + "525001": "Prince of Darkness (brother): HU -- 闇の双皇子(兄):HU", + "525100": "Prince of Darkness (brother) -- 闇の双皇子(弟)", + "526000": "Mad Warrior Hallec -- 狂戦士ハレック", + "527000": "A tracker -- 追跡者", + "900000": "■ ■ ■ ■ ■ For products up here ■ ■ ■ ■. ■. -- ■■■■■製品用ここまで■■■■■", + "901000": "Hiras Test -- hirasテスト", + "901100": "Yoshihi Test -- yoshihiテスト", + "901200": "Tsuruy Test -- tsuruyテスト", + "901300": "Move sub-goal Test 1: walking and running -- 移動サブゴールテスト1:歩行・走行", + "901301": "Move sub-goal Test 2: Quick turn/left/right movement -- 移動サブゴールテスト2:クイックターン・左右移動", + "901302": "Move sub-goal Test 3: Retreat Step -- 移動サブゴールテスト3:後退・ステップ", + "901400": "Masut Test -- masutテスト", + "902000": "Yoshihi damage Check -- yoshihiダメージチェック用", + "999305": "[FDP] Proto-wolf (weakening) -- 【FDP】プロト_ウルフ(弱化)", + "999410": "[FDP] Dead _ for covert confirmation -- 【FDP】亡者_隠密確認用", + "999901": "Team AI Reader test -- チームAIリーダーテスト", + "999910": "For sound Confirmation -- 音確認用" + }, + "ObjActParam": { + "0": "Need -- 必要", + "110": "Treasure Chest -- 宝箱", + "200": "Treasure Chest -- 宝箱", + "350": "M93_01_ Door _ Candle Room -- m93_01_扉_蝋燭部屋", + "351": "M93_01_ Door _ Candle Room -- m93_01_扉_蝋燭部屋", + "360": "M96_00 Door Concept Map _ Entrance -- m96_00 扉 コンセプトマップ_入口", + "370": "M96_00 Door Concept Map _ Temple entrance -- m96_00 扉 コンセプトマップ_聖堂入口", + "371": "M96_00 Door Concept Map _ Distant Entrance -- m96_00 扉 コンセプトマップ_遠景入口", + "475": "M20_01_ Door _ Orphanage 2f_ Small -- m20_01_扉_孤児院2F_小", + "1011": "Test_ Door Test -- test_扉テスト", + "1012": "Test_ Door Test -- test_扉テスト", + "10000": "Default -- デフォルト", + "90000": "Versatile door for FDP_ testing (double doors) -- FDP_テスト用_汎用扉(両開き)", + "90001": "Door with key for FDP_ test (double doors) -- FDP_テスト用_鍵付扉(両開き)", + "90002": "Key door for FDP_ test -- FDP_テスト用_内鍵扉", + "90010": "General purpose door for FDP_ test (single open) -- FDP_テスト用_汎用扉(片開き)", + "90011": "FDP_ Test door with key (single open) -- FDP_テスト用_鍵付扉(片開き)", + "90012": "Key door for FDP_ test (single open) -- FDP_テスト用_内鍵扉(片開き)", + "90013": "FDP_ test for Play -- FDP_テスト用_プレイアブル動作確認A", + "90014": "FDP_ Test (Play-AB operation confirmation B -- FDP_テスト用_プレイアブル動作確認B", + "90015": "FDP_ Test (Play-AB operation confirmation B -- FDP_テスト用_プレイアブル動作確認B", + "300300": "m30_00_ Door _ Mausoleum Short cut -- m30_00_扉_霊廟ショートカット", + "300301": "m30_00_ Door _ starting point -- m30_00_扉_スタート地点", + "300310": "M30_00_ Doors _ Wall Shortcuts -- m30_00_扉_城壁ショートカット", + "300311": "M30_00_ door _ Beast Room door -- m30_00_扉_ビースト部屋扉", + "300312": "m30_00_ Door _ One Way -- m30_00_扉_一方通行", + "300320": "M30_01_ doors _ Old garden buildings -- m30_01_扉_旧ガーデン建物", + "300370": "m30_00_ Door _ Salon Entrance -- m30_00_扉_大広間入口", + "300371": "m30_00_ Door _ Mausoleum exit door -- m30_00_扉_霊廟出口扉", + "300500": "m30_00_ Lever _ Mausoleum Façade elevator -- m30_00_レバー_霊廟正面エレベータ", + "300510": "m30_00_ Lever _ walled Elevator -- m30_00_レバー_城壁エレベーター", + "302420": "M30_02_ Lever _ a library elevator -- m30_02_レバー_書庫エレベータ", + "304873": "M30_01_ Lever _ Saloon Elevators -- m30_01_レバー_大広間エレベータ", + "310300": "m31_00_ doors _ with sewer keys -- m31_00_扉_下水道 鍵付き", + "310301": "m31_00_ Door _ Sewer one-way door -- m31_00_扉_下水道 一方通行扉", + "314027": "m31_00_ Door _ before the Sniper tower -- m31_00_扉_スナイパー塔前", + "314028": "m31_00_ Door _ Elephant Boss room ago -- m31_00_扉_巨象ボス部屋前", + "324012": "M32_00 Levers _ Ohgane -- m32_00 レバー_大鐘", + "324051": "M32_00 Lever _ Bridge Elevator -- m32_00 レバー_橋エレベーター", + "331312": "m33_00 lever poison swamp forest elevator -- m33_00 レバー 毒沼の森エレベーター", + "331321": "M33_00 Front door boss -- m33_00 両開き扉 ボス前", + "332100": "m33_00_ Doors _ Shotka -- m33_00_扉_ショトカ", + "340320": "m34_00_ doors _ Old garden buildings -- m34_00_扉_旧ガーデン建物", + "340330": "m34_00_ Doors _ Stacks Entrance -- m34_00_扉_書庫入口", + "350003": "M35_00 Levers _ Elevators -- m35_00 レバー_エレベーター", + "350005": "M35_00 Big Door _ Both sides of the basilica -- m35_00 大扉_聖堂両脇", + "350021": "m35_00 Lever _ shutter -- m35_00 レバー_シャッター", + "350206": "m35_00 Main Gate -- m35_00 大扉_聖堂正門", + "351000": "M35_00 Double Door -- m35_00 両開き扉", + "360320": "M36_00 double door in front of boss -- m36_00 両開き扉 中ボス前", + "360330": "m36_00 Double Door Shotka -- m36_00 両開き扉 ショトカ", + "370301": "m37_00_ Door _ Landmark Church Plaza -- m37_00_扉_ランドマーク教会前広場", + "370302": "M37_00_ Doors _ Garden Buildings -- m37_00_扉_ガーデン建物", + "370502": "m37_00_ Lever -- m37_00_レバー", + "382002": "M38_00 for Double Door Shotka -- m38_00 両開き扉 ショトカ用", + "390300": "m39_00_ Normal Door -- m39_00_通常扉", + "390301": "m39_00_ Fence Doors _ Outside -- m39_00_鉄柵扉_外側", + "390302": "m39_00_ Fence Door _ inside -- m39_00_鉄柵扉_内側", + "390305": "m39_00_ door one-way door -- m39_00_扉 一方通行扉", + "390306": "m39_00_ Door (Large) one-way door -- m39_00_扉(大) 一方通行扉", + "390500": "m39_00_ Dungeon Shotka Elebator -- m39_00_地下牢ショトカエレベーター", + "400340": "m40_00_ Room Door -- m40_00_ラスボス部屋扉", + "400510": "m40_00_ Lever -- m40_00_レバー", + "1000370": "M96_00 Door Concept Map _ Temple entrance -- m96_00 扉 コンセプトマップ_聖堂入口", + "1000371": "M96_00 Door Concept Map _ Distant Entrance -- m96_00 扉 コンセプトマップ_遠景入口", + "1300311": "M30_00_ Door _ Wall Shortcut 1 -- m30_00_扉_城壁ショートカット1", + "1314027": "m31_00_ Door _ before the Sniper tower -- m31_00_扉_スナイパー塔前", + "2300311": "M30_00_ Door _ Wall Shortcut 2 -- m30_00_扉_城壁ショートカット2" + }, + "ObjectMaterialSfxParam": {}, + "ObjectParam": { + "0": "Barista -- バリスタ", + "100": "Bonfire -- 篝火", + "350": "M93_01 Candle Room Door -- m93_01 蝋燭部屋扉", + "360": "[Concept version] start door -- 【コンセプト版】スタート扉", + "370": "[Concept version] boss entrance -- 【コンセプト版】ボス入口", + "371": "[Concept version] boss exit -- 【コンセプト版】ボス出口", + "400": "Small white Door -- 白扉(小)", + "401": "White Door (Medium) -- 白扉(中)", + "402": "Large White Door -- 白扉(大)", + "700": "Ladder test -- はしごテスト", + "705": "Ladder test -- はしごテスト", + "706": "Ladder test -- はしごテスト", + "707": "Ladder test -- はしごテスト", + "1010": "Wooden Desk Small -- 木の机 小", + "1020": "Wooden Desk -- 木の机", + "1030": "【 ritual 】 Princess Alternative obj00 -- 【儀式】皇女代替OBJ00", + "1031": "【 ritual 】 Princess Alternative obj01 -- 【儀式】皇女代替OBJ01", + "1032": "【 ritual 】 Princess Alternative obj02 -- 【儀式】皇女代替OBJ02", + "1033": "【 ritual 】 Princess Alternative obj03 -- 【儀式】皇女代替OBJ03", + "1034": "【 ritual 】 Princess Alternative obj04 -- 【儀式】皇女代替OBJ04", + "1050": "Wooden Chair -- 木の椅子", + "1060": "Wooden Stand -- 木の台", + "1080": "Crates -- 木箱", + "1090": "Barrels -- 樽", + "1091": "Flammable barrels -- 引火する樽", + "1095": "Oil Pot test -- 油壺テスト", + "1100": "Font -- 壷", + "1110": "Tub -- 桶", + "1190": "Mummy -- ミイラ", + "1240": "Candle Set -- 蝋燭セット", + "1241": "Candle Set -- 蝋燭セット", + "1270": "Firewood -- 薪", + "1279": "Cart Wheels -- 荷車車輪", + "1280": "Carts -- 荷車", + "1290": "Bookshelf -- 本棚", + "1332": "Skeleton Remnant -- 骸骨像残骸", + "1334": "Skeleton Mountain -- 骸骨の山", + "1336": "One Foot skull -- 足元髑髏1", + "1337": "Foot Skull 2 -- 足元髑髏2", + "2040": "Barista -- バリスタ", + "2050": "Wall broken with a sling -- 投石器で壊れる壁", + "2060": "Wall a broken by huge slime -- 巨大スライムによって壊れる壁A", + "2061": "Wall b broken by huge slime -- 巨大スライムによって壊れる壁B", + "2110": "Candle Room Coffin A -- 蝋燭部屋棺桶A", + "2111": "Candle Room Coffin B -- 蝋燭部屋棺桶B", + "2112": "Under the candle room coffin A -- 蝋燭部屋棺桶A下", + "2113": "Under the candle room coffin B -- 蝋燭部屋棺桶B下", + "2114": "Candle room on a coffin a -- 蝋燭部屋棺桶A上", + "2115": "On the candle room coffin B -- 蝋燭部屋棺桶B上", + "2132": "Candle Room: Pillar candle 1 (top) -- 【ロウソク部屋】柱ロウソク1(上)", + "2133": "Candle Room: Pillar Candle 2 (top) -- 【ロウソク部屋】柱ロウソク2(上)", + "2134": "Candle Room: Pillar Candle 3 (top) -- 【ロウソク部屋】柱ロウソク3(上)", + "2135": "[Candle room] pillar candle 4 (top) -- 【ロウソク部屋】柱ロウソク4(上)", + "2136": "[Candle Room] pillar candle 5 (top) -- 【ロウソク部屋】柱ロウソク5(上)", + "2137": "Candle Room: Pillar Candle 6 (top) -- 【ロウソク部屋】柱ロウソク6(上)", + "2138": "[Candle Room] pillar candle 7 (top) -- 【ロウソク部屋】柱ロウソク7(上)", + "2139": "[Candle Room] pillar candle 8 (top) -- 【ロウソク部屋】柱ロウソク8(上)", + "2140": "Hung Incense Burner -- 吊るされた香炉", + "2142": "Candle Room: Pillar candle 1 (bottom) -- 【ロウソク部屋】柱ロウソク1(下)", + "2143": "[Candle Room] pillar candle 2 (bottom) -- 【ロウソク部屋】柱ロウソク2(下)", + "2144": "[Candle Room] pillar candle 3 (bottom) -- 【ロウソク部屋】柱ロウソク3(下)", + "2145": "[Candle room] pillar candle 4 (bottom) -- 【ロウソク部屋】柱ロウソク4(下)", + "2146": "[Candle Room] pillar candle 5 (bottom) -- 【ロウソク部屋】柱ロウソク5(下)", + "2147": "[Candle Room] pillar candle 6 (bottom) -- 【ロウソク部屋】柱ロウソク6(下)", + "2148": "[Candle Room] pillar candle 7 (bottom) -- 【ロウソク部屋】柱ロウソク7(下)", + "2149": "[Candle Room] pillar candle 8 (bottom) -- 【ロウソク部屋】柱ロウソク8(下)", + "2150": "Candlestick -- 燭台", + "2160": "Oil jar -- 油壷", + "2170": "Column -- 柱", + "2172": "High pillar -- 高い柱", + "2182": "Cloth -- 布", + "2188": "Cloth Burning -- 布燃焼", + "2189": "Cloth Burning 2 -- 布燃焼2", + "2190": "Cloth Burning 3 -- 布燃焼3", + "2191": "Cloth Burning 4 -- 布燃焼4", + "2192": "Cloth Burning 5 -- 布燃焼5", + "2425": "Column Crates -- 柱木枠", + "2426": "Crate 01 -- 木枠01", + "2427": "Crate 02 -- 木枠02", + "2428": "Crate 03 -- 木枠03", + "2429": "Crate 04 -- 木枠04", + "2486": "Chain cloth -- チェーン布", + "3015": "Corpse D -- 死体D", + "4500": "Statue of Ishibashi -- 石橋像", + "4501": "Statue of Ishibashi 2 -- 石橋像2", + "4502": "Statue of Ishibashi 3 -- 石橋像3", + "4510": "Ishibashi Entrance Gate -- 石橋入口門", + "4520": "Tower entrance -- 塔入口", + "4541": "Ishibashi Entrance -- 石橋入口", + "4542": "Ishibashi Second -- 石橋2番目", + "4543": "Ishibashi Dragon Destruction -- 石橋ドラゴン破壊", + "4545": "Ishibashi Last -- 石橋最後", + "4546": "Ishibashi Middle Dragon Destruction -- 石橋中間ドラゴン破壊", + "4550": "Candle Room Altar -- 蝋燭部屋祭壇", + "4610": "Rack broken -- 壊れるラック", + "4620": "Wheel of wood broken -- 壊れる木の車輪", + "4650": "Destruction obj for m93_01_00 -- m93_01_00用 破壊OBJ", + "4651": "Destruction Obj2 for m93_01_00 -- m93_01_00用 破壊OBJ2", + "6025": "Flying snake -- 飛び蛇", + "7010": "Wood windows for FDP -- FDP用_木窓", + "7011": "Wood for FDP-_M95 -- FDP用_m95用木材", + "7100": "Muzha -- 木柵", + "8000": "Crystal Lizard God Crystal -- 結晶トカゲの神 結晶", + "8100": "Crystal Elders Crystals -- 結晶の古老 結晶", + "9020": "Tree -- 木", + "9036": "Tree -- 木", + "9039": "Icicles on -- つらら 上用", + "9041": "Suspension Bridge Test -- 吊り橋テスト", + "9042": "Test -- test", + "9043": "Test2 -- test2", + "9044": "Suspension Bridge Test 2 -- 吊り橋テスト2", + "9046": "For icicles -- つらら 下用", + "9055": "Hidden aisle Right -- 隠し通路 右", + "9056": "In the hidden aisle -- 隠し通路 中", + "9057": "Hidden aisle Left -- 隠し通路 左", + "9064": "Icicles -- つらら", + "9070": "Branch PO -- 枝ポき", + "9200": "Branch to be squared -- 乗れる枝", + "9201": "Small trees -- 小さい木", + "9202": "Waterfall (bottom) -- 滝(下)", + "9203": "Waterfall (top) -- 滝(上)", + "9204": "Suspension bridge -- 吊り橋", + "9205": "Can break tower -- 壊せる塔", + "9206": "Cornice (small) -- 雪庇(小)", + "9207": "Cornice (Large) -- 雪庇(大)", + "9208": "Bridge Bar -- 橋棒", + "300305": "M30_00 Mausoleum Door -- m30_00 霊廟扉", + "300310": "M30_00 Barred Door -- m30_00 鉄格子扉", + "300370": "M30_00_ Hall Entrance Door -- m30_00_大広間入り口の扉", + "300400": "White Door Saloon -- 白扉大広間", + "300510": "m30_00_ Elevator Lever -- m30_00_エレベータレバー", + "300700": "Ojo Ladder A -- 王城梯子A", + "300711": "Ojo Ladder B -- 王城梯子B", + "300712": "Ojo Ladder C -- 王城梯子C", + "300713": "Ojo Ladder D -- 王城梯子D", + "300714": "Ojo Ladder E -- 王城梯子E", + "300720": "Ojo Hall Ladder A -- 王城大広間用梯子A", + "301100": "M30_00 Ball -- m30_00 大玉", + "301336": "Bone Mountain A -- 骨の山A", + "301337": "Bone Mountain B -- 骨の山B", + "301880": "M30_00 Boss Room Altar A -- m30_00 ボス部屋祭壇A", + "301881": "M30_00 boss Room Altar C -- m30_00 ボス部屋祭壇C", + "301883": "M30_00 Boss Room Altar B -- m30_00 ボス部屋祭壇B", + "301885": "M30_00 Boss Room Pillar B -- m30_00 ボス部屋柱B", + "301890": "M30_00 Boss Room Pillar A -- m30_00 ボス部屋柱A", + "301895": "M30_00 Boss Room Beam -- m30_00 ボス部屋梁", + "301896": "M30_00 boss Room Wall C -- m30_00 ボス部屋壁C", + "301898": "M30_00 boss Room carpet on the floor -- m30_00 ボス部屋床の絨毯", + "301970": "M30_00 Boss Room Grass A -- m30_00ボス部屋草A", + "301971": "M30_00 Boss Room Grass B -- m30_00ボス部屋草B", + "302040": "m30_00 Luggage availed Mounting obj -- m30_00 荷物吊り上げる土台OBJ", + "302041": "m30_00 Luggage availed obj -- m30_00 荷物吊り上げるOBJ", + "302512": "Tableware Set 1 -- 食器セット1", + "302513": "Tableware Set 2 -- 食器セット2", + "302514": "Wooden Shelves -- 木の棚", + "302517": "Tree -- 組み木", + "302519": "Tower Tip -- 塔先端", + "302520": "Salon Chaise -- 大広間の長椅子", + "302525": "Ojo Wall Lantern -- 王城城壁用灯篭", + "302526": "Burning timbered -- 燃えている木組み", + "302552": "Caries Armor 1 -- 蝕の鎧1", + "302553": "Caries Armor 2 -- 蝕の鎧2", + "302554": "Caries Armor 3 -- 蝕の鎧3", + "302555": "Iron Sword -- 鉄の剣", + "302563": "Fat Knight Corpse -- デブ騎士死体", + "302565": "Stone Candle -- 石像蝋燭持ち", + "302566": "No statue head -- 石像頭無し", + "302567": "The Altar of the tavern -- 酒場の祭壇", + "302580": "Dead Tree A -- 亡者の木A", + "302581": "Dead b -- 亡者の木B", + "302582": "Dead Tree C -- 亡者の木C", + "302583": "Dead Tree D -- 亡者の木D", + "302584": "Dead E -- 亡者の木E", + "302585": "Dead Tree E Swell -- 亡者の木Eのウネリ", + "302590": "The body that calls for eclipse -- 蝕を呼ぶもの死体", + "304005": "Crates -- 木箱", + "304500": "M30_00 Boss Room Pillar A -- m30_00ボス部屋柱A", + "304501": "M30_00 Boss Room Pillar B -- m30_00ボス部屋柱B", + "304502": "M30_00 Boss Room column C -- m30_00ボス部屋柱C", + "304517": "Lantern -- 灯篭", + "304663": "Cup -- コップ", + "304664": "M30_00 Segunda Mausoleum Sword -- m30_00 グンダ霊廟の剣", + "304665": "Sword entity of the m30_00 Segunda mausoleum -- m30_00 グンダ霊廟の剣実体", + "304670": "M30_00 Weapon Racks -- m30_00 武器ラック", + "304715": "Wooden Chair -- 木の椅子", + "304783": "M30_00 Chandelier -- m30_00 シャンデリア", + "304822": "M30_00 Elevator -- m30_00エレベーター", + "304837": "M30_00 Boss Room Stone Monument -- m30_00ボス部屋石碑", + "304851": "Luxury chairs in the saloon -- 大広間の豪華椅子", + "304852": "M30_00 Chair -- m30_00 椅子", + "304853": "Saloon Pulpit -- 大広間の説教台", + "304854": "Wooden Chair -- 木の椅子", + "304855": "Wooden Desk -- 木の机", + "304856": "Wooden Desk 2 -- 木の机2", + "304857": "Shu of the Saloon -- 大広間の蜀台", + "305000": "Salon Tapestry -- 大広間タペストリ", + "309002": "m30_00 Dragon Corpse -- m30_00 ドラゴンの死体", + "309003": "m30_00 Dragon Corpse -- m30_00 ドラゴンの死体", + "311000": "Wooden Fence 1 -- 木製柵1", + "311001": "Wooden Fence 2 -- 木製柵2", + "311800": "Crates (city) -- 木箱(街)", + "311900": "Boss Room Floor -- ボス部屋床", + "311910": "Boss Room Floor Rubble -- ボス部屋床瓦礫", + "312001": "Iron Cage -- 鉄檻", + "313000": "Piles of wood -- 木の杭", + "314000": "Curse Dolls -- 呪いの人形", + "314004": "Wooden Chair (city) -- 木製椅子 (街)", + "314005": "Crates (city) -- 木箱(街)", + "314007": "Small Ladder (city) -- 小梯子(街)", + "314008": "Zaru -- ざる", + "314009": "Small urn (city) -- 壷小(街)", + "314010": "Crock 1 (city) -- 壷1(街)", + "314027": "Boss Room: Door -- ボス部屋:扉", + "314100": "M31_00 OBJ -- m31_00 OBJ", + "314101": "M31_00 OBJ -- m31_00 OBJ", + "314102": "M31_00 OBJ -- m31_00 OBJ", + "314103": "M31_00 OBJ -- m31_00 OBJ", + "315600": "Barrel with cloth -- 布付き樽", + "315700": "Destructive board -- 破壊可能板", + "316000": "Font -- 壷", + "316010": "Carts -- 荷車", + "316500": "Suspended torches -- 吊るされた松明", + "319000": "M31_00 Test Model -- m31_00 テストモデル", + "319002": "Iron Carriage 1 (cover) -- 鉄馬車1(遮蔽物)", + "319004": "Iron Carriage 2 (cover) -- 鉄馬車2(遮蔽物)", + "319012": "A light-up thing -- 街灯的な物", + "319180": "The suspended body (on the foot) -- 吊るされた死体(足が上)", + "319181": "Dead body (head up) -- 吊るされた死体(頭が上)", + "321030": "Bridge Destruction Dummy -- 橋の破壊ダミー", + "331000": "Tree -- 木", + "331003": "Tree -- 木", + "331004": "Tree -- 木", + "331005": "Tree -- 木", + "331006": "Tree -- 木", + "331007": "Tree -- 木", + "331008": "Tree -- 木", + "331204": "Tree Grave 1 -- 木の墓標1", + "331205": "Tree Grave 2 -- 木の墓標2", + "331206": "Tree Grave 3 -- 木の墓標3", + "331207": "Tree Grave 4 -- 木の墓標4", + "331208": "Tree Grave 5 -- 木の墓標5", + "331322": "Ruined church floor -- 廃教会破壊床", + "340700": "Ladder 0 -- 梯子0", + "340701": "Ladder One -- 梯子1", + "340702": "Ladder 2 -- 梯子2", + "340703": "Ladder 3 -- 梯子3", + "340704": "Ladder 4 -- 梯子4", + "340705": "Ladder 5 -- 梯子5", + "342200": "Boss Destruction Pillar 00 -- ボス破壊柱00", + "342210": "Boss Destruction Pillar 10 -- ボス破壊柱10", + "342220": "Boss Destruction Wall 20 -- ボス破壊壁20", + "342230": "Boss Destruction Wall 30 -- ボス破壊壁30", + "342240": "Boss Destruction Wall 40 -- ボス破壊壁40", + "342300": "Globe -- 地球儀", + "342301": "Telescope -- 望遠鏡", + "342400": "Elevator -- エレベータ", + "344783": "Chandelier -- シャンデリア", + "344850": "Decorated stand -- 装飾された台", + "344851": "Decorated chairs -- 装飾された椅子", + "344852": "Simple Chair -- 簡素な椅子", + "344854": "Chair -- 椅子", + "344855": "Desk -- 机", + "344856": "Desk (lots of decorations) -- 机(装飾多め)", + "344857": "Candlestick (Large) -- 燭台(大)", + "344858": "Chandelier (Castle Style) -- シャンデリア(城風)", + "344859": "Candlestick (small) -- 燭台(小)", + "344863": "Torch -- トーチ", + "344884": "Small box -- 小物箱", + "344885": "Vase -- 壺", + "344886": "Feature -- 本立て", + "344890": "Loading book 0 -- 積み本0", + "344891": "Loading Book 1 -- 積み本1", + "344892": "Loading Book 2 -- 積み本2", + "344893": "Loading Book 3 -- 積み本3", + "344894": "Loading Book 4 -- 積み本4", + "350002": "Elevator -- 昇降機", + "350003": "Lever One -- レバー1", + "350004": "Wooden Chair -- 木製椅子", + "350006": "Incense Burner (small) -- 香炉(小)", + "350007": "Incense Burner (Medium) -- 香炉(中)", + "350008": "Incense Burner (Large) -- 香炉(大)", + "350010": "Candlestick 1 -- 燭台1", + "350013": "A candle stand -- 蝋燭台", + "350016": "Statue One -- 石像1", + "350017": "Stone Statue 2 -- 石像2", + "350018": "Fence Door -- 鉄柵扉", + "350019": "Lat -- 石柱", + "350021": "Lever 2 -- レバー2", + "350034": "Bell tower -- 鐘楼", + "350051": "Grave -- 墓", + "350053": "Grave (Large) -- 墓(大)", + "350063": "The edge of a moving scaffold -- 動く足場の端", + "351102": "Ladder -- はしご", + "353000": "Book -- 本", + "353010": "Candlestick 2 -- 燭台2", + "359010": "Coffin -- 棺", + "359012": "Fallen trees -- 倒木", + "359013": "Tomb (Sarcophagus set) -- 墓(石棺セット)", + "359019": "Wooden Fence 2 -- 木製柵2", + "359020": "Wooden Desk -- 木の机", + "359021": "Wooden Chair -- 木の椅子", + "359101": "Rosalia Room Vert A -- ロザリア部屋のヴェールA", + "359112": "Cradle -- ゆりかご", + "359114": "Rosalia Room Vert B -- ロザリア部屋のヴェールB", + "359115": "Cradle Hung -- 吊るされたゆりかご", + "359200": "Golem only can break statue -- ゴーレムのみ壊せる石像", + "360710": "The God grave destroyed ladder -- 神墓破壊される梯子", + "369100": "God grave Test Branch -- 神墓 テスト枝", + "373001": "A small desk -- キチンの机(小)", + "373002": "Chitin Cage 01 -- キチンのケージ01", + "373003": "Chitin Cage 02 -- キチンのケージ02", + "373004": "Cage 03 of Chitin -- キチンのケージ03", + "373011": "Kitchen Desk (Large) version 02 -- キチンの机(大)バージョン02", + "373012": "Kitchen Desk (Large) version 03 -- キチンの机(大)バージョン03", + "373013": "Kitchen Desk (Large) version 04 -- キチンの机(大)バージョン04", + "373014": "Kitchen Desk (small) version 02 -- キチンの机(小)バージョン02", + "373016": "Bonfire Church Chair -- 篝火教会の椅子", + "381004": "Candle Set -- 蝋燭セット", + "381015": "For bridge Event obj -- 吊橋イベント用OBJ", + "381034": "Dungeon Varistor Avoidance Wall -- ダンジョンバリスタ回避壁", + "389010": "Dungeon Destruction Floor -- ダンジョン破壊床", + "389020": "Dungeon Varistor Avoidance Wall A -- ダンジョンバリスタ回避壁A", + "389021": "Dungeon Varistor Avoidance Wall B -- ダンジョンバリスタ回避壁B", + "389041": "Dungeon Suspension Bridge -- ダンジョン 吊り橋", + "389042": "Dungeon Suspension Bridge post-destruction ladder -- ダンジョン 吊り橋破壊後梯子", + "390300": "Fence Door 1 -- 鉄柵扉1", + "390301": "Fence Door 2 -- 鉄柵扉2", + "390302": "Fence Door 3 -- 鉄柵扉3", + "390303": "Fence Door 4 -- 鉄柵扉4", + "390304": "Fence Door 5 -- 鉄柵扉5", + "390500": "Lever One -- レバー1", + "390501": "Lever 2 -- レバー2", + "390550": "Elevator 1 -- エレベーター1", + "392000": "Tableware 1 -- 食器1", + "392001": "Tableware 2 -- 食器2", + "392100": "Wooden Scaffolding 1 -- 木製足場1", + "392101": "Wooden Scaffolding 2 -- 木製足場2", + "392200": "Iron Basket 1 -- 鉄籠1", + "392400": "Swaying chain (long) -- 揺れる鎖(長)", + "392410": "Swinging Chain (Medium) -- 揺れる鎖(中)", + "392420": "Short chain swaying -- 揺れる鎖(短)", + "400340": "Fence Door 1 -- 鉄柵扉1", + "400510": "Lever -- レバー", + "400700": "Ladder -- はしご", + "404011": "Big bells -- でかい鐘", + "404822": "Elevator -- エレベーター", + "962121": "The image of a woman praying -- 祈っている女像(壊)", + "990023": "Caries test -- 蝕テスト", + "990026": "The king expression test of firewood -- 薪の王表現テスト", + "990060": "Test box -- テストボックス", + "999993": "A suspended cage -- 吊るされた檻", + "999999": "Default -- デフォルト" + }, + "PhantomParam": { + "1": "小白 Phantom -- 小白ファントム", + "2": "White Phantom -- 白ファントム", + "3": "Blue Phantom 0 -- 青ファントム0", + "4": "Blue Phantom 1 -- 青ファントム1", + "5": "Blue Phantom 2 -- 青ファントム2", + "6": "Koganeyu Phantom -- 小金ファントム", + "7": "Gold Phantom -- 金ファントム", + "8": "Red Phantom 0 -- 赤ファントム0", + "9": "Red Phantom 1 -- 赤ファントム1", + "10": "Red Phantom 2 -- 赤ファントム2", + "11": "Black Phantom -- 黒ファントム", + "12": "Dragon Spirit Phantom -- 竜霊ファントム", + "13": "The Abyss Phantom -- 深淵ファントム", + "14": "Servant Phantom -- 下僕ファントム", + "15": "Ghost Phantom usually -- 通常幻影ファントム", + "16": "Bonfire Ghost Phantom -- 篝火幻影ファントム", + "17": "Tomb Ghost Phantom -- 墓霊ファントム", + "18": "Weapon Enchantment _ Physical reinforcement -- 武器エンチャント_物理強化", + "19": "Weapon Enchantment _ Magical reinforcement -- 武器エンチャント_魔力強化", + "20": "Weapon Enchant _ Lightning strengthening -- 武器エンチャント_雷強化", + "21": "Weapon Enchant _ Flame Enhancement -- 武器エンチャント_炎強化", + "22": "Weapon Enchantment _ Dark Reinforcement -- 武器エンチャント_闇強化", + "23": "Weapons Enchant _ Poison strengthening -- 武器エンチャント_毒強化", + "24": "Weapons Enchant _ Bleeding strengthening -- 武器エンチャント_出血強化", + "25": "Weapon Enchantment _ Weapon destruction reinforcement -- 武器エンチャント_武器破壊強化", + "26": "Weapons Enchanted _ Curse Enhanced -- 武器エンチャント_呪強化", + "27": "Phantom Ghost (tentative name) -- 幻影霊ファントム(仮称)", + "28": "Weapon Enchantment _ Chill -- 武器エンチャント_冷気", + "29": "Red Phantom 3 -- 赤ファントム3", + "30": "Weapon Enchantment _ Greater Magic -- 武器エンチャント_魔力強化(大)", + "31": "Ghost Knight _ Ghost State -- 亡霊騎士_亡霊状態", + "32": "Painting Mamoru Phantom -- 絵画守 幻影", + "33": "Old King Illusion of caries -- 蝕の老王 幻影", + "35": "King of Firewood Test -- 薪の王テスト", + "36": "King of Firewood Test (with Edge) -- 薪の王テスト(エッジあり)", + "40": "Tiger Translucent -- トラ 半透明", + "41": "Tiger completely transparent -- トラ 完全に透明", + "42": "Tiger Normal -- トラ 通常", + "43": "Black Tiger Normal -- 黒トラ 通常", + "50": "Shield Enchantment _ Physical reinforcement -- 盾エンチャント_物理強化", + "51": "Shield Enchantment _ Strengthening Magic -- 盾エンチャント_魔力強化", + "52": "Shield Enchantment _ Lightning strengthening -- 盾エンチャント_雷強化", + "53": "Shield Enchantment _ Flame Enhancement -- 盾エンチャント_炎強化", + "54": "Shield Enchantment _ Dark Reinforcement -- 盾エンチャント_闇強化", + "55": "Shield Enchantment _ Strengthening Poison -- 盾エンチャント_毒強化", + "56": "Shield Enchantment _ Bleeding strengthening -- 盾エンチャント_出血強化", + "57": "Shield Enchantment _ Shield destruction reinforcement -- 盾エンチャント_盾破壊強化", + "58": "Shield Enchanted _ Curse Enhanced -- 盾エンチャント_呪強化", + "59": "Shield Enchantment _ Chill -- 盾エンチャント_冷気", + "60": "Dark Spirits -- 闇霊", + "61": "White Spirits -- 白霊", + "62": "Wandering Ghosts -- 徘徊幻影", + "63": "Blood Phantom. -- 血痕幻影", + "64": "Solar White Spirits -- 太陽白霊", + "65": "Sun Red Spirits -- 太陽赤霊", + "66": "Berserker White Spirits -- バーサーカー白霊", + "67": "Berserker Red Spirits -- バーサーカー赤霊", + "68": "The Sinner Hero Spirit -- 罪人英雄霊", + "69": "Sinners Hunting Spirits -- 罪人狩り霊", + "70": "Red Hunting Spirits -- 赤狩り霊", + "71": "Rosalia Guardian Spirits -- ロザリア守護霊", + "72": "Map Guardian Spirits (bridge) -- マップ守護霊(橋)", + "73": "Map Guardian Spirits (tbd) -- マップ守護霊(未定)", + "74": "Sign Illusion -- サイン幻影", + "101": "小白 Phantom-time to rest-inside -- 小白ファントム-残り時間-中", + "102": "White Phantom-time remaining-medium -- 白ファントム-残り時間-中", + "103": "Koganeyu Phantom-time to rest-inside -- 小金ファントム-残り時間-中", + "104": "Gold Phantom-remaining time-in -- 金ファントム-残り時間-中", + "105": "Red Phantom 0-remaining time-medium -- 赤ファントム0-残り時間-中", + "106": "Red Phantom 1-time to rest-medium -- 赤ファントム1-残り時間-中", + "107": "Red Phantom 2-time to rest-medium -- 赤ファントム2-残り時間-中", + "108": "Red Phantom 3-remaining time-medium -- 赤ファントム3-残り時間-中", + "109": "Black Phantom-time remaining-medium -- 黒ファントム-残り時間-中", + "201": "小白 Phantom-Time remaining-small -- 小白ファントム-残り時間-小", + "202": "White Phantom-Time left-small -- 白ファントム-残り時間-小", + "203": "Koganeyu Phantom-Time remaining-small -- 小金ファントム-残り時間-小", + "204": "Gold Phantom-time remaining-small -- 金ファントム-残り時間-小", + "205": "Red Phantom 0-time left-small -- 赤ファントム0-残り時間-小", + "206": "Red Phantom 1-time left-small -- 赤ファントム1-残り時間-小", + "207": "Red Phantom 2-time left-small -- 赤ファントム2-残り時間-小", + "208": "Red Phantom 3-time left-small -- 赤ファントム3-残り時間-小", + "209": "Black Phantom-Time left-small -- 黒ファントム-残り時間-小" + }, + "PlayRegionParam": { + "0": "Invalid data (no deletion) -- 無効データ(削除禁止)", + "300001": "Ojo 1_01 -- 王城1_01", + "300002": "Ojo 1_02 -- 王城1_02", + "300003": "Ojo 1_03 -- 王城1_03", + "300004": "Ojo 1_04 -- 王城1_04", + "300006": "Ojo 1_06 -- 王城1_06", + "300007": "Ojo 1_07 -- 王城1_07", + "300008": "Ojo 1_08 -- 王城1_08", + "300009": "Ojo 1_09 -- 王城1_09", + "300020": "Ojo 1_20 -- 王城1_20", + "300021": "Ojo 1_21 -- 王城1_21", + "300022": "Ojo 1_22 -- 王城1_22", + "300023": "Ojo 1_24 -- 王城1_24", + "300024": "Ojo 1_25 -- 王城1_25", + "301000": "Ojo 2_00 -- 王城2_00", + "301001": "Ojo 2_01 -- 王城2_01", + "301002": "Ojo 2_02 -- 王城2_02", + "301003": "Ojo 2_03 -- 王城2_03", + "301010": "Ojo 2_10 -- 王城2_10", + "301011": "Ojo 2_11 -- 王城2_11", + "310000": "_00 City of the tower -- 塔の街_00", + "310001": "_01 City of the tower -- 塔の街_01", + "310002": "_02 City of the tower -- 塔の街_02", + "310003": "_03 City of the tower -- 塔の街_03", + "310004": "_04 City of the tower -- 塔の街_04", + "310020": "_20 City of the tower -- 塔の街_20", + "310021": "_21 City of the tower -- 塔の街_21", + "320001": "Bridge _01 -- 橋_01", + "320002": "Bridge _02 -- 橋_02", + "320010": "Bridge _10 -- 橋_10", + "320011": "Bridge _11 -- 橋_11", + "330001": "Poison Swamp forest _01 -- 毒沼の森_01", + "330002": "Poison Swamp forest _02 -- 毒沼の森_02", + "341000": "Ojo 3_00 -- 王城3_00", + "341001": "Ojo 3_01 -- 王城3_01", + "341002": "Ojo 3_02 -- 王城3_02", + "341003": "Ojo 3_03 -- 王城3_03", + "341010": "Ojo 3_10 -- 王城3_10", + "341011": "Ojo 3_11 -- 王城3_11", + "350001": "Basilica Church _01 -- 聖堂教会_01", + "350002": "Basilica Church _02 -- 聖堂教会_02", + "350003": "Basilica Church _03 -- 聖堂教会_03", + "360001": "God Grave _01 -- 神墓_01", + "360002": "God Grave _02 -- 神墓_02", + "360003": "God Grave _03 -- 神墓_03", + "370001": "Anole Ruins _01 -- アノール遺跡_01", + "370002": "Anole Ruins _02 -- アノール遺跡_02", + "370003": "Anole Ruins _03 -- アノール遺跡_03", + "380001": "Dungeon _01 -- ダンジョン_01", + "380002": "Dungeon _02 -- ダンジョン_02", + "380003": "Dungeon _03 -- ダンジョン_03", + "390001": "Dungeon _01 -- 地下牢_01", + "390002": "Dungeon _02 -- 地下牢_02", + "390003": "Dungeon _03 -- 地下牢_03", + "400001": "Base _01 -- 拠点_01", + "400002": "Base _02 -- 拠点_02", + "981001": "Test Map _01 -- テストマップ_01", + "981002": "Test Map _02 -- テストマップ_02", + "981003": "Test Map _03 -- テストマップ_03", + "981004": "Test Map _04 -- テストマップ_04", + "981005": "Test Map _05 -- テストマップ_05" + }, + "ProtectorGenParam": { + "0": "The Impossible -- ぬのきれ", + "770000": "[Proto] Hunter _ head _ New joint -- 【プロト】ハンター_頭_新関節", + "771000": "[Proto] Hunter _ torso _ New Joint -- 【プロト】ハンター_胴_新関節", + "772000": "[Proto] Hunter _ arms _ New Joints -- 【プロト】ハンター_腕_新関節", + "773000": "[Proto] Hunter _ leg _ New joint -- 【プロト】ハンター_脚_新関節" + }, + "RagdollParam": { + "0": "Move -- 動かない", + "1": "Havok Default Value -- Havokのデフォルト値", + "1000": "Segunda: The Evil Spirits -- グンダ:邪霊", + "1001": "Segunda Ragdoll Test 2 -- グンダのラグドールテスト2", + "1100": "Snake Spirit: Right arm -- 蛇霊:右腕", + "1101": "Snake Spirit: Left arm -- 蛇霊:左腕", + "1102": "Snake Spirit: small feet -- 蛇霊:小足", + "1103": "Snake Spirit: Tail root -- 蛇霊:尻尾付け根", + "1104": "Snake Spirit: Tail tip -- 蛇霊:尻尾先端", + "1105": "Snake Spirit: Head -- 蛇霊:頭", + "1106": "Snake Spirit: Neck -- 蛇霊:首", + "1201": "King of the Dead: Crown -- 死霊の王:王冠", + "1202": "King of the Dead: torso -- 死霊の王:胴体", + "1203": "King of the dead: right arm -- 死霊の王:右腕", + "1204": "King of the dead: left arm -- 死霊の王:左腕", + "1206": "King of the Dead: Head -- 死霊の王:頭", + "1301": "Mad Warrior Hallec: Head -- 狂戦士ハレック:頭", + "1302": "Mad Warrior Hallec: Torso -- 狂戦士ハレック:胴", + "1303": "Mad Warrior Hallec: left arm -- 狂戦士ハレック:左腕", + "1304": "Mad Warrior Hallec: right arm -- 狂戦士ハレック:右腕", + "1305": "Mad Warrior Hallec: Left Shin -- 狂戦士ハレック:左脛", + "1306": "Mad Warrior Hallec: Right Shin -- 狂戦士ハレック:右脛", + "1307": "Mad Warrior Hallec: right hand weapon -- 狂戦士ハレック:右手武器", + "1401": "Dead Slug (dumpling): Dead dumpling -- 蝕のナメクジ(亡者団子):亡者団子", + "1500": "Hell Kite: twines in the legs -- ヘルカイト:脚に絡みつく蝕", + "1501": "Hell Kite: Before your left ankle -- ヘルカイト:左足の足首より先", + "1600": "Golem: Iron Ball -- ゴーレム:鉄球", + "9999": "Dummy -- ダミー" + }, + "ReinforceParamProtector": { + "0": "Usually -- 通常", + "1": "Normal + 1 -- 通常+1", + "2": "Normal + 2 -- 通常+2", + "3": "usually + 3 -- 通常+3", + "4": "usually + 4 -- 通常+4", + "5": "Normal + 5 -- 通常+5", + "6": "usually + 6 -- 通常+6", + "7": "usually + 7 -- 通常+7", + "8": "usually + 8 -- 通常+8", + "9": "usually + 9 -- 通常+9", + "10": "Normal + 10 -- 通常+10", + "100": "Special -- 特殊", + "101": "Special + 1 -- 特殊+1", + "102": "Special + 2 -- 特殊+2", + "103": "Special + 3 -- 特殊+3", + "104": "Special + 4 -- 特殊+4", + "105": "Special + 5 -- 特殊+5" + }, + "ReinforceParamWeapon": { + "0": "Standard", + "1": "Standard+1", + "2": "Standard+2", + "3": "Standard+3", + "4": "Standard+4", + "5": "Standard+5", + "6": "Standard+6", + "7": "Standard+7", + "8": "Standard+8", + "9": "Standard+9", + "10": "Standard+10", + "100": "Heavy", + "101": "Heavy+1", + "102": "Heavy+2", + "103": "Heavy+3", + "104": "Heavy+4", + "105": "Heavy+5", + "106": "Heavy+6", + "107": "Heavy+7", + "108": "Heavy+8", + "109": "Heavy+9", + "110": "Heavy+10", + "200": "Sharp", + "201": "Sharp+1", + "202": "Sharp+2", + "203": "Sharp+3", + "204": "Sharp+4", + "205": "Sharp+5", + "206": "Sharp+6", + "207": "Sharp+7", + "208": "Sharp+8", + "209": "Sharp+9", + "210": "Sharp+10", + "300": "Refined", + "301": "Refined+1", + "302": "Refined+2", + "303": "Refined+3", + "304": "Refined+4", + "305": "Refined+5", + "306": "Refined+6", + "307": "Refined+7", + "308": "Refined+8", + "309": "Refined+9", + "310": "Refined+10", + "400": "Magic A -- 魔法A", + "401": "Magic A + 1 -- 魔法A+1", + "402": "Magic A + 2 -- 魔法A+2", + "403": "Magic A + 3 -- 魔法A+3", + "404": "Magic A + 4 -- 魔法A+4", + "405": "Magic A + 5 -- 魔法A+5", + "406": "Magic A + 6 -- 魔法A+6", + "407": "Magic A + 7 -- 魔法A+7", + "408": "Magic A + 8 -- 魔法A+8", + "409": "Magic A + 9 -- 魔法A+9", + "410": "Magic A + 10 -- 魔法A+10", + "500": "Magic B -- 魔法B", + "501": "Magic B + 1 -- 魔法B+1", + "502": "Magic B + 2 -- 魔法B+2", + "503": "Magic B + 3 -- 魔法B+3", + "504": "Magic B + 4 -- 魔法B+4", + "505": "Magic B + 5 -- 魔法B+5", + "506": "Magic B + 1 -- 魔法B+1", + "507": "Magic B + 2 -- 魔法B+2", + "508": "Magic B + 3 -- 魔法B+3", + "509": "Magic B + 4 -- 魔法B+4", + "510": "Magic B + 5 -- 魔法B+5", + "600": "Flame -- 炎", + "601": "Flame + 1 -- 炎+1", + "602": "Flame + 2 -- 炎+2", + "603": "Flame + 3 -- 炎+3", + "604": "Flame + 4 -- 炎+4", + "605": "Flame + 5 -- 炎+5", + "606": "Flame + 6 -- 炎+6", + "607": "Flame + 7 -- 炎+7", + "608": "Flame + 8 -- 炎+8", + "609": "Flame + 9 -- 炎+9", + "610": "Flame + 10 -- 炎+10", + "700": "Flames of Chaos -- 混沌の炎", + "701": "Flames of Chaos + 1 -- 混沌の炎+1", + "702": "Flames of Chaos + 2 -- 混沌の炎+2", + "703": "Flames of Chaos + 3 -- 混沌の炎+3", + "704": "Flames of Chaos + 4 -- 混沌の炎+4", + "705": "Flames of Chaos + 5 -- 混沌の炎+5", + "706": "Flame of Chaos + 6 -- 混沌の炎+6", + "707": "Flames of Chaos + 7 -- 混沌の炎+7", + "708": "Flames of Chaos + 8 -- 混沌の炎+8", + "709": "Flames of Chaos + 9 -- 混沌の炎+9", + "710": "Flames of Chaos + 10 -- 混沌の炎+10", + "800": "Lightning -- 雷", + "801": "Thunder + 1 -- 雷+1", + "802": "Thunder + 2 -- 雷+2", + "803": "Thunder + 3 -- 雷+3", + "804": "Thunder + 4 -- 雷+4", + "805": "Thunder + 5 -- 雷+5", + "806": "Thunder + 6 -- 雷+6", + "807": "Thunder + 7 -- 雷+7", + "808": "Thunder + 8 -- 雷+8", + "809": "Thunder + 9 -- 雷+9", + "810": "Thunder + 10 -- 雷+10", + "900": "Lightning -- 雷", + "901": "Thunder + 1 -- 雷+1", + "902": "Thunder + 2 -- 雷+2", + "903": "Thunder + 3 -- 雷+3", + "904": "Thunder + 4 -- 雷+4", + "905": "Thunder + 5 -- 雷+5", + "906": "Thunder + 6 -- 雷+6", + "907": "Thunder + 7 -- 雷+7", + "908": "Thunder + 8 -- 雷+8", + "909": "Thunder + 9 -- 雷+9", + "910": "Thunder + 10 -- 雷+10", + "1000": "Lightning -- 雷", + "1001": "Thunder + 1 -- 雷+1", + "1002": "Thunder + 2 -- 雷+2", + "1003": "Thunder + 3 -- 雷+3", + "1004": "Thunder + 4 -- 雷+4", + "1005": "Thunder + 5 -- 雷+5", + "1006": "Thunder + 6 -- 雷+6", + "1007": "Thunder + 7 -- 雷+7", + "1008": "Thunder + 8 -- 雷+8", + "1009": "Thunder + 9 -- 雷+9", + "1010": "Thunder + 10 -- 雷+10", + "1100": "Lightning -- 雷", + "1101": "Thunder + 1 -- 雷+1", + "1102": "Thunder + 2 -- 雷+2", + "1103": "Thunder + 3 -- 雷+3", + "1104": "Thunder + 4 -- 雷+4", + "1105": "Thunder + 5 -- 雷+5", + "1106": "Thunder + 6 -- 雷+6", + "1107": "Thunder + 7 -- 雷+7", + "1108": "Thunder + 8 -- 雷+8", + "1109": "Thunder + 9 -- 雷+9", + "1110": "Thunder + 10 -- 雷+10", + "1200": "Lightning -- 雷", + "1201": "Thunder + 1 -- 雷+1", + "1202": "Thunder + 2 -- 雷+2", + "1203": "Thunder + 3 -- 雷+3", + "1204": "Thunder + 4 -- 雷+4", + "1205": "Thunder + 5 -- 雷+5", + "1206": "Thunder + 6 -- 雷+6", + "1207": "Thunder + 7 -- 雷+7", + "1208": "Thunder + 8 -- 雷+8", + "1209": "Thunder + 9 -- 雷+9", + "1210": "Thunder + 10 -- 雷+10", + "1300": "Lightning -- 雷", + "1301": "Thunder + 1 -- 雷+1", + "1302": "Thunder + 2 -- 雷+2", + "1303": "Thunder + 3 -- 雷+3", + "1304": "Thunder + 4 -- 雷+4", + "1305": "Thunder + 5 -- 雷+5", + "1306": "Thunder + 6 -- 雷+6", + "1307": "Thunder + 7 -- 雷+7", + "1308": "Thunder + 8 -- 雷+8", + "1309": "Thunder + 9 -- 雷+9", + "1310": "Thunder + 10 -- 雷+10", + "1400": "Sacred -- 神聖", + "1401": "Sacred + 1 -- 神聖+1", + "1402": "Sacred + 2 -- 神聖+2", + "1403": "Sacred + 3 -- 神聖+3", + "1404": "Sacred + 4 -- 神聖+4", + "1405": "Sacred + 5 -- 神聖+5", + "1406": "Sacred + 6 -- 神聖+6", + "1407": "Sacred + 7 -- 神聖+7", + "1408": "Sacred + 8 -- 神聖+8", + "1409": "Sacred + 9 -- 神聖+9", + "1410": "Sacred + 10 -- 神聖+10", + "1500": "Dark -- 暗黒", + "1501": "Darkness + 1 -- 暗黒+1", + "1502": "Darkness + 2 -- 暗黒+2", + "1503": "Darkness + 3 -- 暗黒+3", + "1504": "Darkness + 4 -- 暗黒+4", + "1505": "Darkness + 5 -- 暗黒+5", + "2000": "Daemon -- デーモン", + "2001": "Daemon + 1 -- デーモン+1", + "2002": "Daemon + 2 -- デーモン+2", + "2003": "Daemon + 3 -- デーモン+3", + "2004": "Daemon + 4 -- デーモン+4", + "2005": "Daemon + 5 -- デーモン+5", + "2100": "Dragon -- ドラゴン", + "2101": "Dragon + 1 -- ドラゴン+1", + "2102": "Dragon + 2 -- ドラゴン+2", + "2103": "Dragon + 3 -- ドラゴン+3", + "2104": "Dragon + 4 -- ドラゴン+4", + "2105": "Dragon + 5 -- ドラゴン+5", + "2200": "Special -- 特別", + "2201": "Special + 1 -- 特別+1", + "2202": "Special + 2 -- 特別+2", + "2203": "Special + 3 -- 特別+3", + "2204": "Special + 4 -- 特別+4", + "2205": "Special + 5 -- 特別+5", + "5000": "Shield usually -- 【盾】通常", + "5001": "Shield: Normal + 1 -- 【盾】通常+1", + "5002": "Shield: Normal + 2 -- 【盾】通常+2", + "5003": "Shield: Normal + 3 -- 【盾】通常+3", + "5004": "Shield: Normal + 4 -- 【盾】通常+4", + "5005": "Shield: Normal + 5 -- 【盾】通常+5", + "5006": "Shield: usually + 6 -- 【盾】通常+6", + "5007": "Shield: usually + 7 -- 【盾】通常+7", + "5008": "Shield: usually + 8 -- 【盾】通常+8", + "5009": "Shield: Normal + 9 -- 【盾】通常+9", + "5010": "Shield: Normal + 10 -- 【盾】通常+10" + }, + "RoleParam": { + "0": "Survival player -- 生存プレイヤ", + "1": "White Ghost -- 白ゴースト", + "2": "Black Ghost -- 黒ゴースト", + "3": "Wandering -- 徘徊", + "4": "Wandering NPC -- 徘徊NPC", + "5": "Normal enemy -- 通常敵", + "6": "Animal enemies -- 動物敵", + "7": "Boss Enemy -- ボス敵", + "8": "Grey Ghost -- グレイゴースト", + "9": "Npc -- NPC", + "10": "Replay -- リプレイ", + "11": "Display -- 表示", + "12": "Intruders -- 侵入者", + "13": "For the Arena -- 闘技場用", + "10001": "White Ghost (Red Hunt white pledge) -- 白ゴースト(赤狩り白誓約)", + "10002": "Black Ghost (Red Hunt white pledge) -- 黒ゴースト(赤狩り白誓約)", + "20001": "White Ghost (Sun Pledge) -- 白ゴースト(太陽誓約)", + "20002": "Black Ghost (Sun Pledge) -- 黒ゴースト(太陽誓約)", + "30001": "White Ghost (Berserker Pledge) -- 白ゴースト(バーサーカー誓約)", + "30002": "Black Ghost (Berserker Pledge) -- 黒ゴースト(バーサーカー誓約)", + "40001": "White Ghost (Sinner Hero Pledge) -- 白ゴースト(罪人英雄誓約)", + "40002": "Black Ghost (Sinner Hero Pledge) -- 黒ゴースト(罪人英雄誓約)", + "50001": "White Ghost (Boss Guardian Pledge (Rosalia)) -- 白ゴースト(ボス守護者誓約(ロザリア))", + "50002": "Black Ghost (Boss Guardian Pledge (Rosalia)) -- 黒ゴースト(ボス守護者誓約(ロザリア))", + "60001": "White Ghost (Map Guardian pledge (bridge)) -- 白ゴースト(マップ守護者誓約(橋))", + "60002": "Black Ghost (Map Guardian pledge (bridge)) -- 黒ゴースト(マップ守護者誓約(橋))" + }, + "SeMaterialConvertParam": { + "1": "Cobblestone -- 石畳", + "2": "Stone -- 石", + "3": "Soil -- 土", + "4": "Wood -- 木材", + "5": "Grassland -- 草地", + "6": "Gravel -- 砂利", + "8": "Trees -- 樹木", + "9": "Swamp -- 沼", + "10": "Nest -- 巣", + "11": "Iron -- 鉄", + "12": "Flesh -- 血肉", + "13": "Sand -- 砂", + "14": "Bone -- 骨", + "15": "Ash -- 灰", + "16": "Roof Tiles -- 屋根瓦", + "17": "Cloth -- 布", + "18": "Fallen leaves -- 落ち葉", + "19": "Bell -- 鐘", + "20": "Water (Puddle) -- 水(水溜り程度)", + "21": "Water (ankle level) -- 水(足首程度)", + "22": "Water (knee) -- 水(膝下)", + "23": "Poison Swamp (shallow) -- 毒沼(浅い)", + "24": "Poison Swamp (deep) -- 毒沼(深い)", + "25": "Poison Swamp (knee) -- 毒沼(膝下)", + "26": "Poison Swamp (about puddle) -- 毒沼(水溜まり程度)", + "27": "Water (waist or more) -- 水(腰以上)", + "28": "Carpet -- 絨毯", + "29": "Without -- なし", + "30": "Caries -- 蝕", + "31": "God Grave Net -- 神墓ネット", + "100": "Weapon Iron -- 武器鉄", + "101": "Wax -- 蝋", + "102": "Weapon tree -- 武器木", + "103": "Weapon meat -- 武器肉", + "104": "Shield Iron -- 盾鉄", + "105": "Shield Tree -- 盾木", + "106": "Iron -- 鉄", + "107": "Bugs -- 虫", + "108": "Armor Leather -- 鎧革", + "109": "Meat -- 肉", + "110": "Flesh _ Weakness -- 肉_弱点", + "111": "Dragon Meat -- 竜肉", + "112": "Heavy Iron -- 重鉄", + "113": "Cloth -- 布", + "114": "Humanity -- 人間性", + "115": "Hair -- 毛", + "116": "Soft Stone -- 石(軟)", + "117": "Feathers -- 羽", + "118": "Carrion -- 腐肉", + "119": "Ash -- 灰", + "120": "Lava -- 溶岩", + "121": "Evil -- 死霊", + "122": "Crystal -- 結晶", + "123": "Liquid -- 液体", + "124": "Bone -- 骨", + "125": "Flame -- 炎", + "126": "Rock -- 岩", + "127": "Shield Stone -- 盾石", + "128": "Tree -- 木", + "129": "Heavy Iron Shield -- 盾重鉄", + "130": "Ghost White -- ゴーストホワイト", + "131": "Ghost Black -- ゴーストブラック", + "132": "Ghost Enemy White -- ゴースト敵ホワイト", + "133": "Ghost Enemy Black -- ゴースト敵ブラック", + "134": "Drool -- よだれ", + "135": "Ghost White (for guard) -- ゴーストホワイト(ガード時用)", + "136": "Ghost Black (for guard) -- ゴーストブラック(ガード時用)", + "137": "Ghost Enemy White (for guard) -- ゴースト敵ホワイト(ガード時用)", + "138": "Ghost Enemy Black (for guard) -- ゴースト敵ブラック(ガード時用)", + "139": "Without -- なし", + "140": "Penetration -- 眼光", + "141": "Caries -- 蝕", + "142": "Maggots -- 蛆", + "143": "Charcoal -- 炭", + "144": "Kusari Katabira -- くさりかたびら", + "145": "Fluid -- 体液", + "146": "Meat (Live) -- 肉(生者)", + "147": "Meat (raw) _ Weakness -- 肉(生者)_弱点", + "148": "Caries weakness -- 蝕_弱点" + }, + "ShopLineupParam": { + "1": "Do not erase -- 消すべからず", + "2000": "Noconata -- ノコナタ", + "2001": "Axe Rod -- 斧竿", + "2002": "Cane Whip -- 杖鞭", + "2010": "Atelier Handguns -- 工房短銃", + "2011": "Atelier Head Gun -- 工房長銃", + "900000": "Sword: Short Sword -- 剣:ショートソード", + "900001": "Shield: Buckler -- 盾:バックラー", + "900002": "Bow: Short Bow -- 弓:ショートボウ", + "900003": "Catalyst: Magician's Wand -- 触媒:魔術師の杖", + "900004": "Armor _ Head 1: Funeral Knights -- 防具_頭1:葬送騎士", + "900005": "Armor _ Head 2: Crimson Knight -- 防具_頭2:紅騎士", + "900006": "Armor _ Torso 1: Funeral Knight -- 防具_胴1:葬送騎士", + "900007": "Armor _ Torso 2: Crimson Knight -- 防具_胴2:紅騎士", + "900008": "Armor _ Hand 1: Funeral Knights -- 防具_手1:葬送騎士", + "900009": "Armor _ Hand 2: Crimson Knight -- 防具_手2:紅騎士", + "900010": "Armor _ Foot 1: Funeral Knight -- 防具_足1:葬送騎士", + "900011": "Armor _ Foot Two: -- 防具_足2:", + "900012": "Ring 1: Equipment weight up -- 指輪1:装備重量アップ", + "900013": "Ring 2: Pinch attack power up -- 指輪2:ピンチ攻撃力アップ", + "900014": "Ring 3: The Dark Moon God's ring -- 指輪3:暗月神の指輪", + "900015": "Ring 4: Ring of Thieves -- 指輪4:盗賊団の指輪", + "900016": "Ring 5: Stamina Recovery up -- 指輪5:スタミナ回復アップ", + "900017": "Arrow 1: Normal arrow -- 矢1:普通の矢", + "900018": "Arrow 2: Arrows -- 矢2:火矢", + "900019": "Arrow 3: Mantella -- 矢3:毒矢", + "900020": "Tool 1: Reinforcement items -- 道具1:強化アイテム", + "900021": "Tool 2: Reinforcement items -- 道具2:強化アイテム", + "900022": "Tool 3: Reinforcement items -- 道具3:強化アイテム", + "900023": "Tool 4: Reinforcement items -- 道具4:強化アイテム", + "900024": "Tool 5: Reinforcement items -- 道具5:強化アイテム", + "900025": "Tool 6: Reinforcement items -- 道具6:強化アイテム", + "900026": "Tool 7: Reinforcement items -- 道具7:強化アイテム", + "900027": "Tool 8: Reinforcement items -- 道具8:強化アイテム", + "900028": "Tool 9: Reinforcement items -- 道具9:強化アイテム", + "900029": "Tool 10: Reinforcement items -- 道具10:強化アイテム", + "900030": "Tool 11: Reinforcement items -- 道具11:強化アイテム", + "900031": "Tool 12: Reinforcement items -- 道具12:強化アイテム", + "900032": "Tool 13: Reinforcement items -- 道具13:強化アイテム", + "900033": "Tool 14: Reinforcement items -- 道具14:強化アイテム", + "900034": "Tool 15: Seoul -- 道具15:ソウル", + "900035": "Tool 16: Seoul -- 道具16:ソウル", + "900036": "Tool 17: Seoul -- 道具17:ソウル", + "900037": "Tool 18: Seoul -- 道具18:ソウル", + "900038": "Tool 19: Seoul -- 道具19:ソウル", + "900039": "Tool 20: Seoul -- 道具20:ソウル", + "900040": "Tool 21: Seoul -- 道具21:ソウル", + "900041": "Tool 22: Seoul -- 道具22:ソウル", + "900042": "Tool 23: Seoul -- 道具23:ソウル", + "900043": "Tool 24: Seoul -- 道具24:ソウル", + "900044": "Tool 25: Seoul -- 道具25:ソウル", + "900045": "Tool 26: Seoul -- 道具26:ソウル", + "900046": "Tool 27: Seoul -- 道具27:ソウル", + "900047": "Tool 28: Seoul -- 道具28:ソウル", + "900048": "Tool 29: Seoul -- 道具29:ソウル", + "900049": "Tool 30: Seoul -- 道具30:ソウル" + }, + "SkeletonParam": { + "0": "Move -- 動かない", + "1": "NPC Common Neck -- NPC共通 首", + "2": "NPC Common Body 1 -- NPC共通 胴1", + "3": "NPC Common Body 2 -- NPC共通 胴2", + "10": "Human-type general-purpose left foot -- 人型汎用左足", + "11": "Human-type universal right foot -- 人型汎用右足", + "18": "Copy _ Test Right leg -- コピー_テスト右脚", + "19": "Copy _ Test left leg -- コピー_テスト左脚", + "100": "Heroine -- ヒロイン", + "200": "Vips -- 要人", + "300": "Blacksmith Edo -- 鍛冶屋江戸", + "400": "Slave soldier -- 奴隷兵士", + "500": "Ex-noble lady -- 元貴族婦人", + "600": "Puppet use -- 人形使い", + "700": "Beggar Woman -- 乞食女", + "800": "Baldwin -- ボールドウィン", + "900": "Beggar Man -- 乞食男", + "998": "Copy _ old general-purpose left foot -- コピー_旧汎用左足", + "999": "Copy _ old-purpose right foot -- コピー_旧汎用右足", + "1000": "Hounds -- 猟犬_", + "1001": "Hounds -- 猟犬_", + "1002": "Hounds -- 猟犬_", + "1003": "Hounds -- 猟犬_", + "1010": "Priest _ Left Foot -- 司祭_左足", + "1011": "Priest _ Right foot -- 司祭_右足", + "1022": "Crowd A_ set neck shake -- 群衆A_首振り設定", + "1030": "B_ crowd left foot -- 群衆B_左足", + "1031": "Crowd b_ right foot -- 群衆B_右足", + "2000": "Mucademon right foot -- ムカデーモン右足", + "2001": "Mucademon left Foot -- ムカデーモン左足", + "2010": "Gargoyle Right Foot -- ガーゴイル右足", + "2011": "Gargoyle left Foot -- ガーゴイル左足", + "2020": "Iron Golem Right Foot -- アイアンゴーレム右足", + "2021": "Iron Golem left Foot -- アイアンゴーレム左足", + "2022": "Iron Golem Right Hand -- アイアンゴーレム右手", + "2030": "Hammer Demon left Foot -- ハンマーデーモン左足", + "2031": "Hammer Daemon Right foot -- ハンマーデーモン右足", + "3004": "Thaiwand Foot ⑤ -- クラグ足⑤", + "3005": "Thaiwand Foot ⑥ -- クラグ足⑥", + "3100": "Thaiwand Foot ⑦ -- クラグ足⑦", + "3101": "Thaiwand Foot ⑧ -- クラグ足⑧", + "3102": "Thaiwand Foot ⑨ -- クラグ足⑨", + "3103": "Thaiwand Foot ⑩ -- クラグ足⑩", + "3104": "Thaiwand Foot ⑪ -- クラグ足⑪", + "3105": "Thaiwand Foot ⑫ -- クラグ足⑫", + "3106": "Thaiwand Foot ⑬ -- クラグ足⑬", + "5010": "Beast of flames _ left leg -- 炎の獣_左前脚", + "5011": "Beast of flames _ right legs -- 炎の獣_右前脚", + "5012": "The Beast in flames _ left leg -- 炎の獣_左後脚", + "5013": "Beast of flames _ right after leg -- 炎の獣_右後脚", + "5014": "Beast of flames _ neck shaking _ head -- 炎の獣_首振り_頭", + "5015": "Fire Beast _ Neck Swing _ Neck 1 -- 炎の獣_首振り_首1", + "5016": "Fire Beast _ Neck Shaking _ Neck 2 -- 炎の獣_首振り_首2", + "5017": "Fire Beast _ Neck Shaking _ neck 3 -- 炎の獣_首振り_首3", + "5018": "Fire Beast _ Neck Swing _ Neck 4 -- 炎の獣_首振り_首4" + }, + "SpEffectParam": { + "0": "For testing -- テスト用", + "1": "Pledge effect test -- 誓約効果テスト", + "2": "Test_enchantweapon -- test_enchantweapon", + "3": "Test_cure -- test_cure", + "4": "Item: White Sign Soapstone", + "5": "Test_cureitem -- test_cureitem", + "6": "【 system 】 Kickout -- 【システム】kickout", + "7": "Item: Black Separation Crystal", + "8": "System: Parameter changes during ghosting -- 【システム】ゴースト時のパラメータ変化", + "9": "【 system 】 Black parameter change -- 【システム】ブラック時のパラメータ変化", + "10": "Item: Red Sign Soapstone", + "11": "Item: Cracked Red Eye Orb", + "12": "【 system 】 Bloodsign -- 【システム】bloodSign", + "13": "[System] Soul steel [multi] -- 【システム】ソウルスティール【マルチ】", + "14": "[System] Blue sign Visualization -- 【システム】青サイン可視化", + "15": "Item: Black Eye Orb", + "16": "【 system 】 NITs intrusion sign barreling -- 【システム】ニト侵入サインばらまき", + "17": "【 system 】 L Arena exit -- 【システム】l闘技場 退出", + "20": "【 System 】 Evaluation effect -- 【システム】評価効果", + "21": "[System] Point light source equipment -- 【システム】点光源装備", + "22": "Test_change_wep0 -- test_change_wep0", + "23": "Test_change_wep1 -- test_change_wep1", + "24": "【 system 】 Request for rescue -- 【システム】救援要請", + "25": "[System] effect for revival production -- 【システム】復活演出用効果", + "26": "【 system 】 Invasion of the prize neck -- 【システム】賞金首に侵入", + "27": "[System] to scatter the scales of dragons -- 【システム】竜のうろこをばらまく", + "28": "Item: Dried Finger", + "30": "Paris State (throwing conditions) -- パリィ崩され状態(投げ条件)", + "31": "Counter damage [puncture] -- カウンターダメージ【刺突】", + "32": "Player is falling (throwing condition) -- プレイヤが落下中(投げ条件)", + "33": "Petrified -- 石化", + "34": "Crystallization -- 結晶化", + "35": "Throwing invalid state -- 投げ無効状態", + "36": "Throwing ring equipment (throwing conditions) -- 指輪装備投げ(投げ条件)", + "37": "Soul Drain Throw condition -- ソウルドレイン投げ状態(投げ条件)", + "38": "Enhanced throwing damage up effect -- 強化投げダメージアップ効果", + "39": "【 DLC 】 Throwing disabled state _ for prevention of saddle -- 【DLC】投げ無効状態_ハメ防止用", + "40": "No resonance -- 共鳴なし", + "41": "Resonance LV1 -- 共鳴Lv1", + "42": "Resonance Lv2 -- 共鳴Lv2", + "43": "Resonance Lv3 -- 共鳴Lv3", + "44": "Resonance lv4 -- 共鳴Lv4", + "45": "Caries deaths -- 蝕死亡", + "50": "Magic Nature (slot + 3 version) -- 魔法の天性(スロット+3版)", + "52": "PG Test: Detection -- PGテスト:探知", + "53": "PG Test: Waiting for cooperation -- PGテスト:協力待ち", + "54": "PG Test: Cooperation -- PGテスト:協力", + "55": "PG Test: Cooperating send -- PGテスト:協力送信", + "57": "PG Test: Gravity disabled -- PGテスト:グラビティ無効", + "59": "Cooperation LV1 -- 協力Lv1", + "60": "Cooperation LV2 -- 協力Lv2", + "61": "Cooperation Lv3 -- 協力Lv3", + "62": "Waiting for cooperation -- 協力待ち解除", + "63": "Evil Eye Lv1 -- 邪眼Lv1", + "64": "Evil Eye Lv2 -- 邪眼Lv2", + "65": "The Evil eye (for use) -- 邪眼(使用者用)", + "71": "Curse effect _LV1 -- 呪い効果_LV1", + "72": "Curse effect _lv2 -- 呪い効果_LV2", + "73": "Curse effect _lv3 -- 呪い効果_LV3", + "74": "Curse effect _lv4 -- 呪い効果_LV4", + "80": "Curse effect [Strengthening of spirits] -- 呪い効果【対霊強化】", + "90": "Down -- ダウン中", + "91": "Not guarded: scheduled to be deleted -- ガード不可:削除予定", + "92": "Guard possible -- ガード可能", + "94": "SA addition disabled -- SA加算無効", + "95": "Movement magnification can be changed -- 移動倍率変更可能", + "96": "View Cut -- 視界カット", + "97": "In a posture collapse -- 体勢崩れ中", + "100": "Bonfire Recovery effect 1 -- かがり火回復効果1", + "101": "Bonfire Recovery Effect 2 -- かがり火回復効果2", + "102": "Bonfire Recovery Effect 3 -- かがり火回復効果3", + "103": "Bonfire Recovery Effect 4 -- かがり火回復効果4", + "104": "Bonfire Recovery Effect 5 -- かがり火回復効果5", + "105": "Bonfire Recovery Effect 6 -- かがり火回復効果6", + "106": "Bonfire Recovery Effect 7 -- かがり火回復効果7", + "107": "Bonfire Recovery Effect 8 -- かがり火回復効果8", + "108": "Bonfire Recovery Effect 9 -- かがり火回復効果9", + "109": "Bonfire Recovery effect 10 -- かがり火回復効果10", + "110": "Squirrel-Pong Recovery effect 1 -- リスポン回復効果1", + "111": "Squirrel Pong Recovery Effect 2 -- リスポン回復効果2", + "112": "Squirrel Pong Recovery Effect 3 -- リスポン回復効果3", + "113": "Squirrel Pong Recovery Effect 4 -- リスポン回復効果4", + "114": "Squirrel Pong Recovery Effect 5 -- リスポン回復効果5", + "115": "The Squirrel Pong Recovery effect 6 -- リスポン回復効果6", + "116": "Squirrel Pong Recovery Effect 7 -- リスポン回復効果7", + "117": "Squirrel Pong Recovery Effect 8 -- リスポン回復効果8", + "118": "Squirrel Pong Recovery Effect 9 -- リスポン回復効果9", + "119": "Squirrel Pong Recovery Effect 10 -- リスポン回復効果10", + "201": "【 QWC 】 Area _npc_ + 1 -- 【QWC】エリア_NPC_+1", + "202": "【 QWC 】 Area _npc_ + 2 -- 【QWC】エリア_NPC_+2", + "203": "【 QWC 】 Area _npc_ + 3 -- 【QWC】エリア_NPC_+3", + "206": "【 QWC 】 Area _npc_-1 -- 【QWC】エリア_NPC_-1", + "207": "【 QWC 】 Area _NPC_-2 -- 【QWC】エリア_NPC_-2", + "208": "【 QWC 】 Area _NPC_-3 -- 【QWC】エリア_NPC_-3", + "211": "[QWC] Area _ black _ + 1 -- 【QWC】エリア_ブラック_+1", + "212": "[QWC] Area _ black _ + 2 -- 【QWC】エリア_ブラック_+2", + "221": "[QWC] Area _ white _ + 1 -- 【QWC】エリア_ホワイト_+1", + "222": "[QWC] Area _ white _ + 2 -- 【QWC】エリア_ホワイト_+2", + "231": "[QWC] Area _ gray _ + 1 -- 【QWC】エリア_グレイ_+1", + "232": "[QWC] Area _ gray _ + 2 -- 【QWC】エリア_グレイ_+2", + "236": "[QWC] Area _ gray _-1 -- 【QWC】エリア_グレイ_-1", + "237": "[QWC] Area _ gray _-2 -- 【QWC】エリア_グレイ_-2", + "311": "[QWC] Player _ black _ + 1 -- 【QWC】プレイヤー_ブラック_+1", + "312": "[QWC] Player _ black _ + 2 -- 【QWC】プレイヤー_ブラック_+2", + "321": "[QWC] Player _ white _ + 1 -- 【QWC】プレイヤー_ホワイト_+1", + "322": "[QWC] Player _ white _ + 2 -- 【QWC】プレイヤー_ホワイト_+2", + "331": "[QWC] Player _ gray _ + 1 -- 【QWC】プレイヤー_グレイ_+1", + "332": "[QWC] Player _ gray _ + 2 -- 【QWC】プレイヤー_グレイ_+2", + "336": "[QWC] Player _ gray _-1 -- 【QWC】プレイヤー_グレイ_-1", + "337": "[QWC] Player _ gray _-2 -- 【QWC】プレイヤー_グレイ_-2", + "403": "Torches (for enemy sensing) -- 松明(敵感知用)", + "404": "[SP] Torches _ for flame effect -- 【SP】松明_炎エフェクト用", + "407": "[SP] Torch _ for Light ID offset -- 【SP】松明_ライトIDオフセット用", + "412": "[FDP] Torch _ for Flame effect (raised) -- 【FDP】松明_炎エフェクト用(掲げ時)", + "420": "[SP] covered with oil -- 【SP】油まみれ", + "421": "【 SP 】 Fire Daruma -- 【SP】火だるま", + "425": "【 SP 】 Fire Spread damage -- 【SP】延焼ダメージ", + "430": "[FDP] Damage in the fire Daruma -- 【FDP】火だるま中のダメージ", + "490": "[FDP] King of firewood added effect -- 【FDP】薪の王付加効果", + "491": "[FDP] Added SFX when attacking king of firewood -- 【FDP】薪の王 攻撃時追加SFX", + "499": "[FDP] King of firewood added effect _ client -- 【FDP】薪の王付加効果_クライアント", + "500": "Gravity -- グラビティ", + "510": "Gravity (for the use of) -- グラビティ(使用者用)", + "520": "Sound Feed -- 音送り", + "530": "Hidden -- 姿隠し", + "531": "Hidden-sound source for dead -- 姿隠し-音源亡者用", + "540": "Silence -- サイレンス", + "550": "Tip Blood Letters -- ヒント血文字", + "560": "Resurrection when dead -- 死んだとき復活", + "561": "Resurrection when dead (for determination of cord) -- 死んだとき復活(索状判定用)", + "570": "Regenerate -- リジェネレイト", + "580": "return [standby] -- 帰還【発動待機】", + "581": "Return of movement -- 帰還【発動】", + "600": "Anti Magic -- アンチマジック", + "610": "Anti-Magic (for the use) 【 effect 】 -- アンチマジック(使用者用)【効果】", + "611": "Anti-Magic (for the use of) [effect] -- アンチマジック(使用者用)【エフェクト】", + "620": "Light -- ライト", + "630": "Attracted -- 魅了", + "640": "Falling control -- フォーリングコントロール", + "650": "A firm oath -- 固い誓い_本体", + "651": "Hard Oath for icons -- 固い誓い_アイコン用", + "1000": "Weapon Magic Reinforcement 1 -- 武器魔法強化1", + "1010": "Weapon Magic Reinforcement 2 -- 武器魔法強化2", + "1020": "Weapon Magic Reinforcement 3 -- 武器魔法強化3", + "1040": "Shield Reinforcement 1 -- 盾強化1", + "1050": "Shield Reinforcement 2 -- 盾強化2", + "1060": "Invisible weapon -- インビジブルウェポン", + "1070": "Sword of the Sun -- 太陽の剣", + "1080": "Moon Sword -- 月の剣", + "1081": "Sword of the Moon _lv1 -- 月の剣_LV1", + "1082": "Sword of the Moon _lv2 -- 月の剣_LV2", + "1083": "Sword of the Moon _lv3 -- 月の剣_LV3", + "1090": "The Power of Madness -- 狂気の力", + "1100": "Fire Weapon Reinforcement 1 -- 炎武器強化1", + "1120": "Veil of water -- 水のヴェール", + "1130": "Body of iron [damage reduction effect] -- 鉄の身体【はじきダメージ減少効果】", + "1140": "Body of iron [moving slow effect] -- 鉄の身体【移動鈍足効果】", + "1150": "Body of iron [damage animation change effect] -- 鉄の身体【ダメージアニメ変化効果】", + "1160": "Magic Protection 1 -- 魔法防護1", + "1170": "Magic Protection 2 -- 魔法防護2", + "1200": "Poison for Poisoncloud -- ポイズンクラウド用の毒", + "1210": "Deadly poison for the desk loud -- デスクラウド用の猛毒", + "1220": "Corrosion for corrosion Cloud -- 腐食クラウド用の腐食", + "1230": "A deadly poison for the Mist of Darkness -- 闇の霧用の猛毒", + "1300": "Universal treatment [State Recovery] -- 万能治療【状態回復】", + "1301": "Universal treatment [recovery of bleeding immunity] -- 万能治療【出血耐性回復】", + "1302": "Universal cure [Poison tolerance recovery] -- 万能治療【毒耐性回復】", + "1303": "Universal cure [deadly poison resistant recovery] -- 万能治療【猛毒耐性回復】", + "1320": "Poison treatment [State recovery] -- 毒治療【状態回復】", + "1321": "Poison treatment [Resilient recovery] -- 毒治療【耐性回復】", + "1330": "Weapon Armor Repair -- 武器防具修復", + "1340": "A curse -- 解呪", + "1350": "Worm Recovery -- うじ回復", + "1400": "HP Recovery 1_ Yourself -- HP回復1_自分", + "1401": "HP Recovery 1_ around -- HP回復1_周囲", + "1420": "HP Recovery 3_ Yourself -- HP回復3_自分", + "1421": "HP Recovery 3_ around -- HP回復3_周囲", + "1430": "HP Recovery 4 -- HP回復4", + "1431": "HP Recovery 4_ Resonance LV1 -- HP回復4_共鳴LV1", + "1500": "Mimicry -- 擬態", + "1510": "Mimicry [moving slow effect] -- 擬態【移動鈍足効果】", + "1520": "Dragon Change 1 -- 竜変化1", + "1530": "Dragon Change 2 -- 竜変化2", + "1600": "Soul Drain 1 [AI] -- ソウルドレイン1【AI】", + "1610": "Soul Drain 1 【 PC 】 -- ソウルドレイン1【PC】", + "1620": "Soul Drain 2 [AI] -- ソウルドレイン2【AI】", + "1630": "Soul Drain 2 [PC] -- ソウルドレイン2【PC】", + "1700": "White Relief Magic -- 白救援探知魔法", + "1710": "Black Relief Magic -- 黒救援探知魔法", + "1720": "Item Detection Magic -- アイテム探知魔法", + "1800": "Causal retribution _ for counting -- 因果応報_カウント用", + "1810": "Causal retribution _ for explosive generation -- 因果応報_爆発発生用", + "1900": "[FDP] Tread SA -- 【FDP】踏込SA", + "1901": "FDP ID override test -- 【FDP】ID上書きテスト", + "1902": "[FDP] covered with Uzi test -- 【FDP】ウジまみれテスト", + "1903": "[FDP] Tread guard -- 【FDP】踏込ガード", + "1904": "[FDP] Rotation movement gap -- 【FDP】回転移動隙", + "1905": "[FDP] Holding guard compensation for continuous firing -- 【FDP】構え連撃用ガード補正", + "1906": "[FDP] Double chanting -- 【FDP】二重詠唱", + "1907": "FDP SA chanting -- 【FDP】SA詠唱", + "2000": "Item: Estus Flask", + "2001": "Item: Estus Flask+1", + "2002": "Item: Estus Flask+2", + "2003": "Item: Estus Flask+3", + "2004": "Item: Estus Flask+4", + "2005": "Item: Estus Flask+5", + "2006": "Item: Estus Flask+6", + "2007": "Item: Estus Flask+7", + "2008": "Item: Estus Flask+8", + "2009": "Item: Estus Flask+9", + "2010": "Item: Estus Flask+10", + "2020": "Item: Ashen Estus Flask", + "2021": "Item: Ashen Estus Flask+1", + "2022": "Item: Ashen Estus Flask+2", + "2023": "Item: Ashen Estus Flask+3", + "2024": "Item: Ashen Estus Flask+4", + "2025": "Item: Ashen Estus Flask+5", + "2026": "Item: Ashen Estus Flask+6", + "2027": "Item: Ashen Estus Flask+7", + "2028": "Item: Ashen Estus Flask+8", + "2029": "Item: Ashen Estus Flask+9", + "2030": "Item: Ashen Estus Flask+10", + "2100": "Item: Charcoal Pine Resin", + "2110": "Item: Charcoal Pine Bundle", + "2120": "Item: Gold Pine Resin", + "2130": "Item: Gold Pine Bundle", + "2140": "Resonance -- 共鳴", + "2150": "Item: Rotten Pine Resin", + "2170": "Item: Human Pine Resin", + "2180": "Item: Carthus Rouge", + "2190": "Item: Pale Pine Resin", + "2300": "Power Up Miracles -- 奇跡威力アップ", + "2310": "Magic Slot-up B -- 魔法スロットアップB", + "2320": "Dark Moon God's ring -- 暗月神の指輪", + "2330": "Ring of Thieves -- 盗賊団の指輪", + "2340": "HP Slight increase -- HP微増", + "2350": "Black Dragon Ring -- 黒竜の指輪", + "3000": "HP Recovery Grass -- HP回復草", + "3040": "Item: Green Blossom", + "3041": "[DLC] Fragment of mushroom -- 【DLC】エリンギの欠片", + "3042": "Item: Budding Green Blossom", + "3050": "bleeding treatment [State recovery] -- 出血治療【状態回復】", + "3051": "bleeding treatment [resistance recovery] -- 出血治療【耐性回復】", + "3060": "Poison treatment [State recovery] -- 毒治療【状態回復】", + "3061": "Poison treatment [Resilient recovery] -- 毒治療【耐性回復】", + "3070": "Toxic treatment [State recovery] -- 猛毒治療【状態回復】", + "3071": "Toxic treatment [Resilient recovery] -- 猛毒治療【耐性回復】", + "3080": "Universal treatment [State Recovery] -- 万能治療【状態回復】", + "3090": "Curse treatment -- 呪治療", + "3091": "Egg treatment -- 卵治療", + "3092": "Caries treatment -- 蝕治療", + "3093": "Item: Purging Stone", + "3100": "Item: Repair Powder", + "3110": "Poison-throwing knife [poison effect] -- 毒投げナイフ【毒効果】", + "3120": "To make the opponent a poisonous poison -- 糞団子【相手を猛毒にする】", + "3121": "I take damage -- 糞団子【自分もダメージを受ける】", + "3130": "Each time a -- またたびA", + "3140": "And every time B -- またたびB", + "3150": "EST not available [for mimic sleep determination] -- エスト使用不可【ミミック睡眠判定用】", + "3151": "EST not available [EST] -- エスト使用不可【エスト使用不可】", + "3152": "EST not available [for mimic sleep judgment] -- エスト使用不可【ミミック睡眠判定消し用】", + "3160": "Weapon Flame Enhancement -- 武器炎強化", + "3161": "Weapon Flame Enhancement (quick) -- 武器炎強化(クイック)", + "3170": "Weapon Lightning Reinforcement -- 武器雷強化", + "3171": "Weapon Lightning Enhancement (quick) -- 武器雷強化(クイック)", + "3180": "Weapon versus Spirit reinforcement -- 武器対霊強化", + "3210": "Excitement Incense -- 興奮香", + "3220": "Item: Coiled Sword Fragment", + "3221": "Return Stone A -- 帰還石A", + "3222": "return Stone B -- 帰還石B", + "3223": "return Stone C -- 帰還石C", + "3224": "return Stone D -- 帰還石D", + "3225": "Return Stone E -- 帰還石E", + "3226": "Item: Darksign", + "3230": "Resurrection Stone [Resurrection effect] -- 復活石【復活効果】", + "3231": "Human Nature Recovery -- 人間性回復", + "3240": "Item: Binoculars", + "3250": "Pledge discarded -- 誓約破棄", + "3269": "Item: Fading Soul", + "3270": "Item: Soul of a Deserted Corpse", + "3271": "Item: Large Soul of a Deserted Corpse", + "3272": "Item: Soul of an Unknown Traveler", + "3273": "Item: Large Soul of an Unknown Traveler", + "3274": "Item: Soul of a Nameless Soldier", + "3275": "Item: Large Soul of a Nameless Soldier", + "3276": "Item: Soul of a Weary Warrior", + "3277": "Item: Large Soul of a Weary Warrior", + "3278": "Item: Soul of a Crestfallen Knight", + "3279": "Item: Large Soul of a Crestfallen Knight", + "3280": "Item: Soul of a Proud Paladin", + "3281": "Item: Large Soul of a Proud Paladin", + "3282": "Item: Soul of an Intrepid Hero", + "3283": "Item: Large Soul of an Intrepid Hero", + "3284": "Item: Soul of a Seasoned Warrior", + "3285": "Item: Large Soul of a Seasoned Warrior", + "3286": "Item: Soul of an Old Hand", + "3287": "Item: Soul of a Venerable Old Hand", + "3288": "Item: Soul of a Champion", + "3289": "Item: Soul of a Great Champion", + "3290": "Item: Ember", + "3291": "Wang Hua of firewood when SFX: right elbow -- 薪の王化時SFX:右肘", + "3292": "Wang Hua of firewood when SFX: right shoulder -- 薪の王化時SFX:右肩", + "3293": "Wang Hua of firewood when SFX: upper body -- 薪の王化時SFX:上半身", + "3294": "Wang Hua of firewood when SFX: systemic -- 薪の王化時SFX:全身", + "3295": "Wang Hua of firewood when SFX: -- 薪の王化時SFX:", + "3296": "Wang Hua of firewood when SFX: -- 薪の王化時SFX:", + "3297": "Wang Hua of firewood when SFX: -- 薪の王化時SFX:", + "3298": "Wang Hua of firewood when SFX: -- 薪の王化時SFX:", + "3330": "Human Nature Recovery -- 人間性回復", + "3340": "Item: Hidden Blessing", + "3400": "Item: Soul of a Crystal Sage", + "3401": "Soul of the Wolf of the eclipse of the boss soul -- 【ボスソウル】蝕のオオカミのソウル", + "3402": "Item: Soul of the Blood of the Wolf", + "3403": "Item: Soul of Consumed Oceiros", + "3404": "Item: Soul of Boreal Valley Vordt", + "3405": "Item: Soul of the Old Demon King", + "3406": "Item: Soul of Dragonslayer Armour", + "3407": "Item: Soul of the Nameless King", + "3408": "[Boss Soul] Crimson bat Soul -- 【ボスソウル】クリムゾンバットのソウル", + "3409": "Item: Soul of Champion Gundyr", + "3410": "[Boss Soul] soul of evil spirits -- 【ボスソウル】邪霊のソウル", + "3411": "Item: Soul of Pontiff Sulyvahn", + "3412": "Item: Soul of Aldrich", + "3413": "Item: Soul of High Lord Wolnir", + "3414": "Item: Soul of the Rotted Greatwood", + "3415": "Item: Soul of Rosaria", + "3416": "Item: Soul of the Deacons of the Deep", + "3417": "Boss Soul: Prince of Darkness, soul of Brother -- 【ボスソウル】闇の双皇子兄のソウル", + "3418": "Item: Soul of the Twin Princes", + "3419": "Item: Soul of Yhorm the Giant", + "3420": "Item: Soul of the Dancer", + "3421": "Item: Soul of the Lords", + "3427": "Item: Soul of a Demon", + "3431": "Item: Soul of a Stray Demon", + "3432": "Item: Soul of Sister Friede", + "3433": "Item: Soul of Slave Knight Gael", + "3434": "Item: Soul of the Demon Prince", + "3435": "Item: Soul of Darkeater Midir", + "3700": "Item: Seed of a Giant Tree", + "3730": "Item: Way of White Circlet", + "3740": "Item: Forked Pale Tongue", + "3750": "Item: Proof of a Concord Well Kept", + "3820": "Item: Mossfruit", + "3870": "Item: Young White Branch", + "3880": "Item: Rusted Coin", + "3890": "Item: Rusted Gold Coin", + "3900": "Item: Siegbräu Heal", + "3901": "Item: Siegbräu Frost Resistence", + "3910": "Item: Blue Bug Pellet", + "3920": "Item: Red Bug Pellet", + "3930": "Item: Yellow Bug Pellet", + "3940": "Item: Black Bug Pellet", + "4000": "Sustained damage floor [slow for poison] -- 持続ダメージ床【毒用鈍足】", + "4001": "Sustained damage floor [Poison _ Interval Adjustment _ Poison swamp Forest (deep)] -- 持続ダメージ床【毒_間隔調整_毒沼の森(深)】", + "4002": "Sustained damage floor [poison _ Effect Body _ Poison swamp Forest (deep)] -- 持続ダメージ床【毒_効果本体_毒沼の森(深)】", + "4003": "Sustained damage floor [Poison _ Interval Adjustment _ Poison swamp forest (shallow)] -- 持続ダメージ床【毒_間隔調整_毒沼の森(浅)】", + "4004": "Sustained damage floor [poison _ Effect Body _ Poison swamp forest (shallow)] -- 持続ダメージ床【毒_効果本体_毒沼の森(浅)】", + "4050": "Forced fall death disabled [used in God's Tomb map] -- 強制落下死亡無効【神墓マップで使用】", + "4060": "Drop damage disabled [used in stronghold map] -- 落下ダメージ無効【拠点マップで使用】", + "4100": "Slow effect (weak) -- 鈍足効果(弱)", + "4101": "Slow effect (strong) -- 鈍足効果(強)", + "4150": "Inside Key of Universal door -- 汎用扉の内鍵", + "4200": "The swamp of caries -- 蝕の沼", + "5000": "Non-combat action running -- 非戦闘行動 走り化", + "5001": "Non-combat behavior smooth disregard -- 非戦闘行動 なめらか無視", + "5020": "General effect for logic judgment 1 -- ロジック判定用 汎用効果1", + "5021": "General effect for logic judgment 2 -- ロジック判定用 汎用効果2", + "5022": "General effect for logic judgment 3 -- ロジック判定用 汎用効果3", + "5023": "General effect for logic judgment 4 -- ロジック判定用 汎用効果4", + "5024": "General effect for logic judgment 5 -- ロジック判定用 汎用効果5", + "5025": "General effect for logic judgment 6 -- ロジック判定用 汎用効果6", + "5026": "General effect for logic judgment 7 -- ロジック判定用 汎用効果7", + "5027": "General effect for logic judgement 8 -- ロジック判定用 汎用効果8", + "5028": "General effect for logic judgment 9 -- ロジック判定用 汎用効果9", + "5029": "General effect for logic judgment 10 -- ロジック判定用 汎用効果10", + "5030": "General effect for logic judgment 11 -- ロジック判定用 汎用効果11", + "5031": "General effect for logic judgement 12 -- ロジック判定用 汎用効果12", + "5032": "General effect for logic judgment 13 -- ロジック判定用 汎用効果13", + "5033": "General effect for logic judgment 14 -- ロジック判定用 汎用効果14", + "5034": "General effect for logic judgment 15 -- ロジック判定用 汎用効果15", + "5040": "MP Decrease-1 -- MP減少-1", + "5041": "MP Decrease-2 -- MP減少-2", + "5042": "MP Decrease-3 -- MP減少-3", + "5043": "MP Decrease-4 -- MP減少-4", + "5044": "MP Decrease-5 -- MP減少-5", + "5045": "MP Recovery + 1 -- MP回復+1", + "5046": "MP Recovery + 2 -- MP回復+2", + "5047": "MP Recovery + 3 -- MP回復+3", + "5048": "MP Recovery + 4 -- MP回復+4", + "5049": "MP Recovery + 5 -- MP回復+5", + "5100": "Maggots covered -- うじまみれ", + "5101": "Blood damage so that the maggots smeared -- うじまみれよう出血ダメージ", + "5247": "Cold air Damage Release -- 冷気ダメージ解除", + "5300": "Normal damage anime changes [all disabled] -- 通常時ダメージアニメ変化【全て無効】", + "5301": "Normal damage anime changes [minimal, small, medium, large, beating, launch, pushing disabled] -- 通常時ダメージアニメ変化【極小・小・中・大・叩き・打上・押し 無効】", + "5302": "Normal damage anime changes [minimum, small, medium, large, push disabled] -- 通常時ダメージアニメ変化【極小・小・中・大・押し 無効】", + "5303": "Normal damage anime change [Minimal, small, medium, press disabled] -- 通常時ダメージアニメ変化【極小・小・中・押し 無効】", + "5304": "Normal damage anime change [minimal, small, push disabled] -- 通常時ダメージアニメ変化【極小・小・押し 無効】", + "5305": "Normal damage anime change [minimal, push disabled] -- 通常時ダメージアニメ変化【極小・押し 無効】", + "5306": "Normal time damage anime change [press → Small] -- 通常時ダメージアニメ変化【押し→小】", + "5307": "Normal damage anime change [minimum → small] -- 通常時ダメージアニメ変化【極小→小】", + "5308": "Normal Time damage Anime change -- 通常時ダメージアニメ変化【中以上】", + "5309": "Normal damage Anime change -- 通常時ダメージアニメ変化【中以上、押しあり】", + "5310": "Normal damage anime changes [lv1 down] -- 通常時ダメージアニメ変化【Lv1ダウン】", + "5311": "Normal damage anime changes [small, 吹tsu飛bimasu, launch only] -- 通常時ダメージアニメ変化【小・吹っ飛び・打ち上げ のみ】", + "5320": "Normal damage anime change [large only] -- 通常時ダメージアニメ変化【大 のみ】", + "5321": "Normal damage anime change [Medium, large, only slams] -- 通常時ダメージアニメ変化【中・大・叩きつけ のみ】", + "5322": "Normal damage anime changes [吹tsu飛bimasu] -- 通常時ダメージアニメ変化【吹っ飛びがない】", + "5323": "Normal damage anime changes [no 吹tsu飛bimasu/slams] -- 通常時ダメージアニメ変化【吹っ飛び・叩きつけ がない】", + "5324": "Normal damage anime change [Minimal, small, medium, large only] -- 通常時ダメージアニメ変化【極小・小・中・大のみ】", + "5325": "Normal damage anime changes [吹tsu飛bimasu/push] -- 通常時ダメージアニメ変化【吹っ飛び・押し がない】", + "5326": "Normal damage anime changes [small and medium only] -- 通常時ダメージアニメ変化【小・中のみ】", + "5327": "Normal damage anime change [small, medium, large only] -- 通常時ダメージアニメ変化【小・中・大のみ】", + "5328": "Normal damage anime change [small, medium, large, only slapping] -- 通常時ダメージアニメ変化【小・中・大・叩きのみ】", + "5329": "Normal damage anime change [small only] -- 通常時ダメージアニメ変化【小のみ】", + "5330": "Normal damage anime change [small, large, 吹tsu飛bimasu only] -- 通常時ダメージアニメ変化【小・大・吹っ飛びのみ】", + "5331": "Normal damage anime change [for crystal lizards] -- 通常時ダメージアニメ変化【結晶トカゲ用】", + "5332": "Normal damage anime changes [under the big deal] -- 通常時ダメージアニメ変化【中以下は大扱い】", + "5333": "Normal damage anime changes [during only] -- 通常時ダメージアニメ変化【中のみ】", + "5334": "Normal damage anime change [medium/吹tsu飛bimasu only] -- 通常時ダメージアニメ変化【中・吹っ飛びのみ】", + "5335": "Normal damage anime change [reaction large] -- 通常時ダメージアニメ変化【リアクション大】", + "5350": "Normal damage anime change [all disabled] (instant) -- 通常時ダメージアニメ変化【全て無効】(瞬間)", + "5351": "Normal damage anime changes [minimal, small, medium, large, beating, launch, pushing disabled] (instant) -- 通常時ダメージアニメ変化【極小・小・中・大・叩き・打上・押し 無効】(瞬間)", + "5352": "Normal damage anime change [minimum, small, medium, large, push disabled] (instant) -- 通常時ダメージアニメ変化【極小・小・中・大・押し 無効】(瞬間)", + "5353": "Normal damage anime change [Minimal, small, medium, press disabled] (instant) -- 通常時ダメージアニメ変化【極小・小・中・押し 無効】(瞬間)", + "5354": "Normal damage anime change [minimal, small, push disabled] (instant) -- 通常時ダメージアニメ変化【極小・小・押し 無効】(瞬間)", + "5360": "SA Time damage Anime change [all anime No] -- SA時ダメージアニメ変化【全てアニメなし】", + "5361": "SA Time damage Anime change [small only] -- SA時ダメージアニメ変化【小のみ】", + "5362": "SA Time damage Anime changes -- SA時ダメージアニメ変化【中のみ】", + "5363": "SA when damage anime changes [small and medium] -- SA時ダメージアニメ変化【小と中】", + "5364": "SA Time damage Anime change [small only/large void] -- SA時ダメージアニメ変化【小のみ・大無効】", + "5370": "SA Time damage Anime change [all disabled] (instant) -- SA時ダメージアニメ変化【全て無効】(瞬間)", + "5371": "SA Time damage Anime change [small only] (instant) -- SA時ダメージアニメ変化【小のみ】(瞬間)", + "5372": "SA Time damage Anime change [medium only] (instant) -- SA時ダメージアニメ変化【中のみ】(瞬間)", + "5373": "SA when damage anime changes [small and medium] (instant) -- SA時ダメージアニメ変化【小と中】(瞬間)", + "5374": "SA Time damage Anime change [small only/large void] (instant) -- SA時ダメージアニメ変化【小のみ・大無効】(瞬間)", + "5400": "Weapon change Anime ID offset 0 -- 武器チェンジ アニメIDオフセット0", + "5404": "Anime ID offset 1,000,000 -- アニメIDオフセット1000000", + "5405": "Anime ID offset 2,000,000 -- アニメIDオフセット2000000", + "5406": "Anime ID offset 3,000,000 -- アニメIDオフセット3000000", + "5407": "Anime ID offset 4 million -- アニメIDオフセット4000000", + "5408": "Anime ID Offset 5,000,000 -- アニメIDオフセット5000000", + "5450": "An enemy special waiting: for event processing -- エネミー特殊待機中:イベント処理用", + "5460": "Enemy character est [HP] -- 敵キャラ エスト【HP】", + "5461": "Enemy character est [HP] -- 敵キャラ エスト【HP】", + "5540": "Maggots flame condition (for Panish Flag) -- 蛆人 炎状態(パニッシュフラグ用)", + "5600": "Salivan Enchant -- サリヴァーンエンチャント", + "5700": "_c2180 maggots for special damage assessment -- 特殊ダメージ判定用_c2180蛆人", + "5701": "_c1360 Crucifixion dead for special damage determination -- 特殊ダメージ判定用_c1360磔亡者A", + "5702": "_c1370 Crucifixion dead B for special damage determination -- 特殊ダメージ判定用_c1370磔亡者B", + "5703": "_c2250 Tindalos for special damage determination -- 特殊ダメージ判定用_c2250ティンダロス", + "5704": "_c1390 snake Assassin for special damage determination -- 特殊ダメージ判定用_c1390蛇人の暗殺者", + "5705": "Sand worm c2201 sharing of _c2200 waste for special damage determination -- 特殊ダメージ判定用_c2200廃都のサンドワーム c2201共有", + "5706": "_c2020 dead dog for special damage determination -- 特殊ダメージ判定用_c2020亡者犬", + "5707": "_c5230_ Mother Dragon for special damage determination -- 特殊ダメージ判定用_c5230_母ドラゴン", + "5708": "_c2190_ Ojo Gargoyle for special Damage determination -- 特殊ダメージ判定用_c2190_王城のガーゴイル", + "5709": "_c1090_ dead soldier for special damage Determination (Segunda State) -- 特殊ダメージ判定用_c1090_亡者兵士(グンダ状態)", + "5710": "_c2240_ Full Armor beast for special damage determination -- 特殊ダメージ判定用_c2240_フルアーマー獣", + "5711": "_c2250_ Tindalos for special Damage Determination (for animation transition after large throw) -- 特殊ダメージ判定用_c2250_ティンダロス(大型投げ後アニメ遷移用)", + "5712": "_c1170 Skeleton Warrior a c1180 share for special damage determination -- 特殊ダメージ判定用_c1170 スケルトン戦士A c1180共有", + "5750": "For special Damage Determination _ Continuous Regeneration Prevention: duration of flag pulling -- 特殊ダメージ判定用_連続再生防止 :フラグ引いている期間", + "5751": "For special Damage Determination _ Continuous regeneration Prevention: cool time 3 seconds -- 特殊ダメージ判定用_連続再生防止 :クールタイム3秒", + "5752": "For special Damage Determination _ Continuous regeneration Prevention: cool time 5 seconds -- 特殊ダメージ判定用_連続再生防止 :クールタイム5秒", + "5800": "[Behavior] Do not cut the movement amount of damage anime -- 【Behavior】 ダメージアニメの移動量カットをしない", + "5820": "[Behavior] Stance: Valid only for the duration of the flag pulling -- 【Behavior】 構え中 :フラグ引いている期間のみ有効", + "5830": "The VFX will light your eyes and revive you once and for all -- VFXで目が光り、一度きりの復活をかける", + "5831": "If the 5830 is at stake, let the dead anime transition -- 5830がかかっている場合、死んだふりアニメに遷移させる", + "6000": "[Behavior] touchable in rolling -- 【Behavior】 ローリングで押せる", + "6001": "[Behavior] is flipped when the damage judgment is hit the map anime reproduction -- 【Behavior】 ダメージ判定がマップに命中すると弾かれアニメ再生", + "6002": "[Behavior] Wait offset instantaneous switching -- 【Behavior】 待機オフセット瞬時切り替え", + "6003": "[Behavior] Count any number of seconds -- 【Behavior】 任意の秒数を数える", + "6050": "Golem keeps crumbling state -- ゴーレム崩れ状態維持", + "6200": "Stamina Recovery Down _ head _ Level 1 -- スタミナ回復ダウン_頭_レベル1", + "6201": "Stamina Recovery Down _ head _ Level 2 -- スタミナ回復ダウン_頭_レベル2", + "6202": "Stamina Recovery Down _ head _ Level 3 -- スタミナ回復ダウン_頭_レベル3", + "6203": "Stamina Recovery Down _ head _ Level 4 -- スタミナ回復ダウン_頭_レベル4", + "6210": "Stamina Recovery Down _ torso _ Level 1 -- スタミナ回復ダウン_胴_レベル1", + "6211": "Stamina Recovery Down _ torso _ Level 2 -- スタミナ回復ダウン_胴_レベル2", + "6212": "Stamina Recovery Down _ torso _ Level 3 -- スタミナ回復ダウン_胴_レベル3", + "6213": "Stamina Recovery Down _ torso _ Level 4 -- スタミナ回復ダウン_胴_レベル4", + "6220": "Stamina Recovery Down _ arm _ Level 1 -- スタミナ回復ダウン_腕_レベル1", + "6221": "Stamina Recovery Down _ arms _ Level 2 -- スタミナ回復ダウン_腕_レベル2", + "6222": "Stamina Recovery Down _ arms _ Level 3 -- スタミナ回復ダウン_腕_レベル3", + "6223": "Stamina Recovery Down _ arm _ Level 4 -- スタミナ回復ダウン_腕_レベル4", + "6230": "Stamina Recovery Down _ leg _ Level 1 -- スタミナ回復ダウン_脚_レベル1", + "6231": "Stamina Recovery Down _ leg _ Level 2 -- スタミナ回復ダウン_脚_レベル2", + "6232": "Stamina Recovery Down _ leg _ Level 3 -- スタミナ回復ダウン_脚_レベル3", + "6233": "Stamina Recovery Down _ leg _ Level 4 -- スタミナ回復ダウン_脚_レベル4", + "6300": "Super Armor -- スーパーアーマー", + "6335": "Chain Missing: damage reduction -- チェイン抜け:ダメージ減少", + "6340": "Strength: Damage Reduction: Medium -- 強靭度:ダメージ減少:中", + "6350": "Strength: Minimum (30 or less) -- 強靭度:極小(30以下)", + "6351": "Strong: Small (less than 50) -- 強靭度:小(50以下)", + "6352": "Strong: Medium (70 or less) -- 強靭度:中(70以下)", + "6353": "Strong: Large (100 or less) -- 強靭度:大(100以下)", + "6354": "Strong: Oversized (greater than 100) -- 強靭度:特大(100より大きい)", + "6400": "Bleeding _1 -- 出血_1", + "6401": "Bleeding _2 -- 出血_2", + "6402": "Bleeding _3 -- 出血_3", + "6403": "Bleeding _4 -- 出血_4", + "6404": "Bleeding _5 -- 出血_5", + "6405": "Bleeding _6 -- 出血_6", + "6500": "Poison _1 -- 毒_1", + "6501": "Poison _2 -- 毒_2", + "6502": "Poison _3 -- 毒_3", + "6503": "Poison _4 -- 毒_4", + "6504": "Poison _5 -- 毒_5", + "6505": "Poison _6 -- 毒_6", + "6510": "Poison _1 (sustained short) -- 毒_1(持続短い)", + "6511": "Poison _2 (short lasting) -- 毒_2(持続短い)", + "6512": "Poison _3 (sustained short) -- 毒_3(持続短い)", + "6513": "Poison _4 (sustained short) -- 毒_4(持続短い)", + "6514": "Poison _5 (sustained short) -- 毒_5(持続短い)", + "6515": "Poison _6 (sustained short) -- 毒_6(持続短い)", + "6600": "Poisonous _1 -- 猛毒_1", + "6601": "Poisonous _2 -- 猛毒_2", + "6602": "Poisonous _3 -- 猛毒_3", + "6603": "Poisonous _4 -- 猛毒_4", + "6604": "Poisonous _5 -- 猛毒_5", + "6605": "Poisonous _6 -- 猛毒_6", + "6700": "Cold _1 -- 冷気_1", + "6701": "Chill _2 -- 冷気_2", + "6702": "Cold _3 -- 冷気_3", + "6703": "Cold _4 -- 冷気_4", + "6704": "Cold _5 -- 冷気_5", + "6705": "Cold _6 -- 冷気_6", + "6800": "Petrified Curse Damage 1 -- 石化呪いダメージ1", + "6801": "Petrified Curse Damage 2 -- 石化呪いダメージ2", + "6802": "Petrified Curse Damage 3 -- 石化呪いダメージ3", + "6803": "Petrified Curse Damage 4 -- 石化呪いダメージ4", + "6804": "Petrified Curse Damage 5 -- 石化呪いダメージ5", + "6805": "Petrified Curse damage 0 (weaker than 1) -- 石化呪いダメージ0(1より弱い)", + "6980": "Event: City Maps Nipe stop -- イベント:街マップスナイプ停止", + "7000": "Level doping 0: Game start -- レベルドーピング0:ゲーム開始", + "7010": "Level doping 1: Ojo 1 -- レベルドーピング1:王城1", + "7020": "Level doping 2: City of Towers -- レベルドーピング2:塔の街", + "7030": "Level Doping 3: Mori 1 (first half) -- レベルドーピング3:森1(前半)", + "7040": "Level doping 4: Cathedral Church -- レベルドーピング4:聖堂教会", + "7060": "Level Doping 6: Dungeon -- レベルドーピング6:ダンジョン", + "7070": "Level doping 7: Dungeon Underground Lake (sub) -- レベルドーピング7:ダンジョン地底湖(サブ)", + "7080": "Level Doping 8: Anole -- レベルドーピング8:アノール", + "7090": "Level doping 9: Dungeons -- レベルドーピング9:地下牢", + "7120": "Level doping 12: Bridge (sub) -- レベルドーピング12:橋(サブ)", + "7130": "Level doping 13: Bases -- レベルドーピング13:拠点", + "7140": "Level doping 14: End of game -- レベルドーピング14:ゲーム終了", + "7150": "Level doping 15: (unused) -- レベルドーピング15:(未使用)", + "7160": "Level doping 16: (unused) -- レベルドーピング16:(未使用)", + "7300": "Soul Black -- ソウルブラック", + "7410": "Doping laps 1: Ojo 1 -- 周回ドーピング1:王城1", + "7420": "Doping laps 2: City of the Tower -- 周回ドーピング2:塔の街", + "7430": "Doping laps 3: Mori 1 (first half) -- 周回ドーピング3:森1(前半)", + "7440": "Doping laps 4: Basilica of the Church -- 周回ドーピング4:聖堂教会", + "7460": "Doping laps 6: Dungeon -- 周回ドーピング6:ダンジョン", + "7470": "Doping laps 7: Dungeon Underground Lake -- 周回ドーピング7:ダンジョン地底湖", + "7480": "Doping laps 8: Anole -- 周回ドーピング8:アノール", + "7490": "Doping laps 9: Dungeons -- 周回ドーピング9:地下牢", + "7520": "Doping laps 12: Bridge -- 周回ドーピング12:橋", + "7530": "Doping laps 13: Bases -- 周回ドーピング13:拠点", + "7540": "Doping laps 14: End of game -- 周回ドーピング14:ゲーム終了", + "7550": "Doping laps 15: (Unused) -- 周回ドーピング15:(未使用)", + "7560": "Doping laps 16: (unused) -- 周回ドーピング16:(未使用)", + "9000": "VFX for Avatar (Super Ability) -- アバター(ザコ)用VFX", + "9010": "No warp. -- ワープ不可", + "9100": "World Baff: Return blood of poison -- ワールドバフ:毒の返り血", + "9200": "Invasion occurring -- 侵入発生中", + "9201": "Intrusion Outbreak & Intrusion Stop State -- 侵入発生中&侵入停止状態", + "9500": "ABATABAF: 3 times the actual damage -- アバターバフ:実ダメージ3倍", + "10501": "The Curse of the Evil King -- 死霊の王 呪い解除中", + "10502": "King of the evil dissipated state -- 死霊の王 霧散状態", + "10503": "The King of the evil right arm part -- 死霊の王 右腕部位破壊状態", + "10504": "King of the Dead left arm part breakdown state -- 死霊の王 左腕部位破壊状態", + "10505": "The King of the evil whole body miasma -- 死霊の王 全身瘴気", + "10506": "The King of the evil whole body miasma -- 死霊の王 全身瘴気", + "10510": "Daemon Priest Magic Special effects for SFX (small) -- デーモン司祭 呪術SFX(小)用特殊効果", + "10511": "Daemon Priest Magic SFX (medium) special effects -- デーモン司祭 呪術SFX(中)用特殊効果", + "10512": "Daemon Priest Magic Special effects for SFX (Large) -- デーモン司祭 呪術SFX(大)用特殊効果", + "10513": "Daemon Priest Magic SFX (NO) special effects -- デーモン司祭 呪術SFX(無)用特殊効果", + "10514": "Daemon Priest Mojo SFX Reservoir Speed doubled -- デーモン司祭 呪術SFX溜め速度倍化", + "10515": "Daemon Priest for Flame Enchantment -- デーモン司祭 炎エンチャント用", + "10530": "Salivan Reaper (Straight sword) -- サリヴァーンの死神(直剣)", + "10531": "Salivan's death (sickle) -- サリヴァーンの死神(鎌)", + "10532": "Death (resident SFX) -- 死神(常駐SFX)", + "10540": "Maggots flame condition (for Panish Flag) -- 蛆人 炎状態(パニッシュフラグ用)", + "10550": "Crystal Elders Buff (for myself) -- 結晶の古老 バフ (自分用)", + "10551": "Crystal Elders Buff (for ally) -- 結晶の古老 バフ (味方用)", + "10552": "Elders weapon switching ban special effects on crystals -- 結晶の古老 武器持ち替え禁止特殊効果", + "10553": "Elders casting of crystals for camera application judgment -- 結晶の古老 投げ演出カメラ適用判定", + "10560": "Dead soldier Hand-held lantern resident SFX -- 亡者兵士 手持ちランタン常駐SFX", + "10561": "Dead soldier: Segunda State resident SFX -- 亡者兵士:グンダ状態 常駐SFX", + "10562": "Dead soldier Waist Lantern resident SFX -- 亡者兵士 腰ランタン常駐SFX", + "10563": "Dead soldier: Est recovery 40% -- 亡者兵士:エスト回復40%", + "10570": "Blue: Avatars (tentative) slow granted -- ブルー:アバター(仮) 鈍足付与", + "10571": "Blue: Avatar (tentative) around recovery -- ブルー:アバター(仮) 周囲回復", + "10572": "Blue: Avatar (tentative) self-enhancement -- ブルー:アバター(仮) 自己強化", + "10573": "Blue: Avatar Reinforcement -- ブルー:アバター(仮) 味方強化", + "10574": "During guard -- ガード中", + "10580": "Firewood Daemon _ (resident SFX) -- 薪のデーモン_(常駐SFX)", + "10581": "Firewood Daemon Hu_ (resident SFX) -- 薪のデーモンHU_(常駐SFX)", + "10590": "New Skeleton Torch (resident SFX) -- 新スケルトン松明(常駐SFX)", + "10591": "New Skeleton _hp informing -- 新スケルトン_HP全快", + "10600": "Old King of caries _ Trace judgement 00 -- 蝕の老王_トレース判定00", + "10601": "Old King of caries _ Trace judgement 01 -- 蝕の老王_トレース判定01", + "10602": "Old King of caries _ Trace Determination 02 -- 蝕の老王_トレース判定02", + "10603": "Old King of caries _ Trace Determination 03 -- 蝕の老王_トレース判定03", + "10604": "Old King of caries _ Trace Determination 04 -- 蝕の老王_トレース判定04", + "10605": "Old King of caries _ Trace judgement 05 -- 蝕の老王_トレース判定05", + "10606": "Old King of caries _ Trace Determination 06 -- 蝕の老王_トレース判定06", + "10607": "Old King of caries _ Trace judgement 07 -- 蝕の老王_トレース判定07", + "10608": "Old King of caries _ Trace judgement 08 -- 蝕の老王_トレース判定08", + "10609": "Old King of caries _ tracing judgement 09 -- 蝕の老王_トレース判定09", + "10610": "Old King of caries _ Trace judgement 10 -- 蝕の老王_トレース判定10", + "10611": "Old King of caries _ Trace judgement 11 -- 蝕の老王_トレース判定11", + "10612": "Old King of caries _ Trace Determination 12 -- 蝕の老王_トレース判定12", + "10613": "Old King of caries _ Trace Determination 13 -- 蝕の老王_トレース判定13", + "10614": "Old King of caries _ Trace Determination 14 -- 蝕の老王_トレース判定14", + "10615": "Old King of caries _ Trace judgement 15 -- 蝕の老王_トレース判定15", + "10616": "Old King of caries _ Trace judgement 16 -- 蝕の老王_トレース判定16", + "10617": "Old King of caries _ Trace judgement 17 -- 蝕の老王_トレース判定17", + "10618": "Old King of caries _ Trace judgement 18 -- 蝕の老王_トレース判定18", + "10619": "Old King of caries _ Trace Determination 19 -- 蝕の老王_トレース判定19", + "10620": "Old King of caries _ Trace Determination 20 -- 蝕の老王_トレース判定20", + "10621": "Old King of caries _ Trace Determination 21 -- 蝕の老王_トレース判定21", + "10622": "Old King of caries _ Trace Determination 22 -- 蝕の老王_トレース判定22", + "10623": "Old King of caries _ Trace Determination 23 -- 蝕の老王_トレース判定23", + "10624": "Old King of caries _ Trace Determination 24 -- 蝕の老王_トレース判定24", + "10625": "Old King of caries _ Trace Determination 25 -- 蝕の老王_トレース判定25", + "10629": "Old King of caries _ illusion transparent invalidation -- 蝕の老王_幻影透明無効化", + "10630": "Caries Old King resident sfx Hu Mae -- 蝕の老王 常駐SFX Hu前", + "10631": "Old King resident SFX Hu after caries -- 蝕の老王 常駐SFX Hu後", + "10632": "The old king of caries _ the illusion becomes translucent -- 蝕の老王_幻影が半透明になる", + "10633": "The old king of caries _ the illusion becomes completely transparent -- 蝕の老王_幻影が完全透明になる", + "10634": "The old king of caries _ Disabling Ghosts -- 蝕の老王_幻影を無効化する", + "10635": "The old king of caries _ void the full transparency of the apparition and become translucent -- 蝕の老王_幻影の完全透明を無効化し、半透明になる", + "10640": "The Old King _hu1 stage of caries -- 蝕の老王_HU1段階目", + "10641": "The Old King _hu2 stage of caries -- 蝕の老王_HU2段階目", + "10642": "The old king of caries _ the illusion of Enchantment ID addition for ghosts -- 蝕の老王_幻影用エンチャント前行動判定ID加算", + "10650": "Tindalos for Event state transition a20000 from prayer transition permission conditions -- ティンダロス イベント状態遷移用 a20000祈りから立ち上がる 遷移許可条件", + "10651": "Tindalos Event state Transition a20004 for death transition permission conditions -- ティンダロス イベント状態遷移用 a20004仰向けから死亡 遷移許可条件", + "10652": "Tindalos Events & Warp execution request for AI -- ティンダロス イベント&AI用 ワープ実行要求", + "10700": "Butterfly resident SFX of caries -- 蝕の蝶常駐SFX", + "10800": "New Ojo Knights: Red Eye -- 新王城騎士:赤目", + "10900": "Dark Knight Beast resident SFX -- ダークナイトビースト 常駐SFX", + "10901": "Dark Knight Beast resident Chill bullet firing (for freezing) -- ダークナイトビースト 常駐冷気弾丸発射(凍結用)", + "10902": "Dark Knight Beast resident Chill Bullet firing (for decals) -- ダークナイトビースト 常駐冷気弾丸発射(デカール用)", + "10920": "Moonlight Witch Resident SFX -- 月光の魔女 常駐SFX", + "10921": "Moonlight Witch Torch for Damage -- 月光の魔女 松明ダメージ用", + "10922": "Moonlight Witch Anime ID offset 1,000,000 -- 月光の魔女 アニメIDオフセット1000000", + "10930": "Salivan _ NITs Sword Enchantment (SFX display, for AI judgement) -- サリヴァーン_ニト剣エンチャント(SFX表示、AI判定用)", + "11000": "Hell Kite (Ojo 1) _ Still not blowing breath once -- ヘルカイト(王城1)_まだブレスを1回も吹いていない状態", + "11001": "Hel Kite (Ojo 1) _ Event Animation Transition Timing -- ヘルカイト(王城1)_イベントアニメ遷移タイミング", + "11002": "Hell Kite (Ojo 1) _ Breath blowing good condition -- ヘルカイト(王城1)_ブレスを吹いていい状態", + "11003": "Hel Kite (Ojo 1) _ Front Breath frequency: High -- ヘルカイト(王城1)_正面ブレス頻度:高", + "11004": "The Hel Kite (Ojo 1) _ Stop blowing the breath -- ヘルカイト(王城1)_ブレスを吹くのをやめる", + "11005": "Hel Kite (Ojo 1) _ Side street Breath Frequency: High -- ヘルカイト(王城1)_脇道ブレス頻度:高", + "11006": "Hell Kite (Ojo 1) _ Lost player status -- ヘルカイト(王城1)_プレイヤーを見失った状態", + "11007": "Hell Kite (Ojo 1) _ Lost player status _ lifted -- ヘルカイト(王城1)_プレイヤーを見失った状態_解除", + "11008": "Hel Kite (Ojo 1) _ for the caries foot SFX -- ヘルカイト(王城1)_蝕足SFX用", + "11009": "Hellfire (Ojo 1) _ for removal of caries feet SFX -- ヘルカイト(王城1)_蝕足SFX用 削除用", + "11010": "Hel Kite (Ojo 1) _ Lower left breath frequency: high -- ヘルカイト(王城1)_左下ブレス頻度:高", + "11011": "Hel Kite (Ojo 1) _ Top left breath frequency: high -- ヘルカイト(王城1)_左上ブレス頻度:高", + "11060": "Go back on the golem rampage -- ゴーレム大暴れで反撃", + "11100": "Tracker _ Body Chill (resident SFX) -- 追跡者_体の冷気(常駐SFX)", + "11101": "Tracker _ Flaming Sword (resident SFX) -- 追跡者_炎の剣(常駐SFX)", + "11102": "Tracker _ The Sword of the Eclipse (cold) (resident SFX) -- 追跡者_蝕(冷気)の剣(常駐SFX)", + "11103": "Tracker Hu Pre-throwing frequency control 10 seconds -- 追跡者 HU前 投げ頻度制御 10秒", + "11200": "Triple Barista _ Special effects for three-shot shooting 1 -- 三連バリスタ_三連射撃用特殊効果1", + "11201": "Triple Barista _ Special effects for three-shot shooting 2 -- 三連バリスタ_三連射撃用特殊効果2", + "11202": "Tri-Barista _ three-shot special effects 3 -- 三連バリスタ_三連射撃用特殊効果3", + "11280": "Snake Spirit _hu -- 蛇霊_HU", + "11281": "Snake Spirits _hu: caries Reservoir bullet (right hand) -- 蛇霊_HU:蝕溜まり弾丸(右手)", + "11282": "Snake Spirits _hu: caries Reservoir bullets (left) -- 蛇霊_HU:蝕溜まり弾丸(左手)", + "11283": "Snake Spirits _hu: caries Reservoir bullets (right elbow) -- 蛇霊_HU:蝕溜まり弾丸(右肘)", + "11284": "Snake Spirits _hu: caries Reservoir bullets (left elbow) -- 蛇霊_HU:蝕溜まり弾丸(左肘)", + "11285": "Snake Spirits _hu: caries Reservoir bullet (tail) -- 蛇霊_HU:蝕溜まり弾丸(尻尾)", + "11300": "Dragon's Guardian Knight _hu -- 竜の守護騎士_HU", + "11400": "Mad Warrior Hallec _hu -- 狂戦士ハレック_HU", + "11500": "Cardinal _ Curse: Bullet outbreak -- 枢機卿団_呪詛:弾丸発生", + "11501": "Cardinal _ Curse: appearance -- 枢機卿団_呪詛:見た目", + "11520": "Cardinal _ Eye Light (resident SFX) -- 枢機卿団_目光(常駐SFX)", + "11521": "Cardinal _ Aura (resident SFX) -- 枢機卿団_オーラ(常駐SFX)", + "11530": "Helmeted of the Cardinal Corps _ curse -- 枢機卿団_呪詛の号令", + "11531": "Helmeted of the Cardinal Corps _ curse -- 枢機卿団_呪詛の号令解除", + "11560": "Cardinal: For damage to the body (large) -- 枢機卿団:本体へのダメージ用(大)", + "11561": "Cardinal: For damage to the body (medium) -- 枢機卿団:本体へのダメージ用(中)", + "11562": "Cardinal: For damage to the body (small) -- 枢機卿団:本体へのダメージ用(小)", + "11600": "Prince of Darkness (brother): Regen revival -- 闇の双皇子(兄):リジェネ復活", + "11601": "Prince of Darkness (brother): Character attachment -- 闇の双皇子(兄):キャラアタッチ", + "11700": "Mimic: \"○ Open the Treasure Chest\" condition -- ミミック:「○宝箱を開ける」条件", + "11710": "Mimic: Back to mimicry conditions -- ミミック:擬態に戻る条件", + "11720": "Mimic: Sleep judgment condition -- ミミック:眠り判定条件", + "11721": "Mimic: Sleep judgement disabled -- ミミック:眠り判定無効", + "11730": "Mimic: The condition to mimic after awakening -- ミミック:目覚めた後に擬態する条件", + "11731": "Mimic: Remove the mimic condition after awakening -- ミミック:目覚めた後に擬態する条件削除", + "11800": "Hungry Jack: Ai visual distance change _0.25 times -- はらぺこジャック:AI視覚距離変更_0.25倍", + "11900": "New Shing: Lantern resident SFX -- 新獄吏:ランタン常駐SFX", + "11910": "Gargoyle resident -- ガーゴイル常駐", + "11911": "During guard -- ガード中", + "11920": "Full Armor Beast _ resident SFX (before HU) -- フルアーマー獣_常駐SFX(HU前)", + "11921": "Full Armor Beast _ resident SFX (after HU) -- フルアーマー獣_常駐SFX(HU後)", + "11922": "Full Armor animal resident cold air bullet firing (for decals) -- フルアーマー獣 常駐冷気弾丸発射(デカール用)", + "11923": "Full Armor Beast _hu -- フルアーマー獣_HU", + "11926": "Full Armor Beast _ Blizzard breath suspended wince damage -- フルアーマー獣_吹雪ブレス中断ひるみダメージ", + "11950": "Phantom of the Painting (Stone hat) -- 絵画守り_幻影(石コロ帽子)", + "11960": "Drifting stuff _ Underwater offset switching -- 漂うもの_水中時オフセット切り替え", + "11970": "Dead Wax _ Resident SFX -- 蝋の死人_常駐SFX", + "11980": "Segunda to change the damage magnification from dead enemy -- グンダ化亡者 敵からのダメージ倍率変更用", + "12000": "Sacred Beast in the woods _ gravity -- 森の霊獣_グラビティ", + "12010": "Salivan watchdog (Large) Resident SFX -- サリヴァーンの番犬(大)常駐SFX", + "12011": "Salivan watchdog (small) Resident SFX -- サリヴァーンの番犬(小)常駐SFX", + "12020": "Wax: The energetic ball: the first form -- 蝋まみれ:元気玉:第一形態", + "12021": "Wax covered: Fine ball: Check -- 蝋まみれ:元気玉:チェック", + "12022": "Wax covered: The second form of energy ball -- 蝋まみれ:元気玉第二形態", + "12023": "Shing Slow effect -- 獄吏 鈍足効果", + "12030": "City Map Sniper Transparent effect -- 街マップスナイパー用透明効果", + "12040": "Stench Crab _ Slow effect for bubble breath -- 死臭蟹_泡ブレス用鈍足効果", + "12041": "Stench crab for step (right) -- 死臭蟹_ステップ用(右)", + "12042": "Stench crab for step (left) -- 死臭蟹_ステップ用(左)", + "71100": "Disable all -- すべて無効", + "71110": "Immortality disabled -- 不死系無効", + "71111": "All enabled -- すべて有効", + "80000": "Disable all -- すべて無効", + "80011": "Remnant & Soul-absorbing disabled -- 名残&吸魂無効", + "80101": "Remnant & Fascination Disabled -- 名残&魅了無効", + "80111": "Remnants invalid -- 名残無効", + "81001": "Soul & Fascination Disabled -- 吸魂&魅了無効", + "81011": "Soul Absorption disabled -- 吸魂無効", + "81101": "Fascinated disabled -- 魅了無効", + "81111": "All enabled -- すべて有効", + "90000": "Disable all -- すべて無効", + "90001": "Poison & Bleeding & plague Disabled -- 毒&出血&疫病無効", + "90010": "Poison & Bleeding & curse disabled -- 毒&出血&呪い無効", + "90011": "Poison & Bleeding Disabled -- 毒&出血無効", + "90100": "Poison & Plague & Curse Disabled -- 毒&疫病&呪い無効", + "90101": "Poison & Plague Disabled -- 毒&疫病無効", + "90110": "Poison & Curse Disabled -- 毒&呪い無効", + "90111": "Poison disabled -- 毒無効", + "91000": "Bleeding & plague & Curse Disabled -- 出血&疫病&呪い無効", + "91001": "Bleeding & plague Disabled -- 出血&疫病無効", + "91010": "Bleeding & curses disabled -- 出血&呪い無効", + "91011": "Bleeding disabled -- 出血無効", + "91100": "Plague & Curse Invalid -- 疫病&呪い無効", + "91101": "Plague disabled -- 疫病無効", + "91110": "Curse disabled -- 呪い無効", + "91111": "All enabled -- すべて有効", + "99000": "Shallow snow -- 浅い雪", + "99001": "Deep snow -- 深い雪", + "99002": "Dead Torches State -- 亡者松明状態", + "99003": "Desaster from the Sword -- 剣から血糊飛ばし", + "99004": "Show off -- 表示消し", + "99005": "Test after caries ritual -- 蝕儀式後テスト", + "99006": "Play an enemy that does not notice the version -- プレイアブル版 気づかない敵", + "99007": "The power of the evil spirits in the play -- プレイアブル版 邪霊の力", + "99008": "Counter Test -- カウンターtest", + "99013": "Always throwing off for concept bridge dead -- コンセプト版吊り橋亡者用常時投げ無効", + "99014": "Suspension dead for determining waiting condition -- 吊り橋亡者待機状態判定用", + "99020": "Special effects for Slime -- スライム用特殊効果", + "99050": "The swamp of caries -- 蝕の沼", + "99100": "[FDP] Test _ No damage against flames -- 【FDP】テスト_炎に対してノーダメージ", + "99101": "[FDP] Test _ wolf-throwing damage -- 【FDP】テスト_ウルフ投げ時のダメージ", + "99102": "[FDP] Test _ Firefly Item Use event acquisition -- 【FDP】テスト_蛍アイテム使用イベント取得", + "99200": "[FDP] Proto-giant slime freezing -- 【FDP】プロト_巨大スライム凍結", + "99201": "[FDP] Proto _ giant slime freezing SFX -- 【FDP】プロト_巨大スライム凍結SFX", + "99300": "Dragon Bleeding -- 龍出血", + "99310": "Dragon Bleeding 1 -- ドラゴン出血1", + "99311": "Dragon Bleeding 2 -- ドラゴン出血2", + "99312": "Dragon Bleeding 3 -- ドラゴン出血3", + "99313": "Dragon Bleeding 4 -- ドラゴン出血4", + "99314": "Dragon Bleeding 5 -- ドラゴン出血5", + "99400": "[Test] Curse of the Evil King -- 【テスト】死霊の王 呪い", + "99401": "C1210 Blue estrus Permit test -- c1210ブルー発情許可テスト", + "99402": "c1210 Blue estrus Anime ID offset 3,000,000 -- c1210ブルー発情中 アニメIDオフセット3000000", + "99410": "Touchable in c1240 poor dead rolling -- c1240貧民亡者 ローリングで押せるテスト", + "99420": "c2180 maggots test for changing animation of damage in flames -- c2180 蛆人 炎でダメージアニメを変える用テスト", + "99430": "12 End edition avatar for pseudo-death state -- 12末版アバター 擬死状態用", + "99440": "Ash Daemon hot air damage large -- 灰のデーモン熱風ダメージ大", + "99441": "Ash Daemon hot air damage small -- 灰のデーモン熱風ダメージ小", + "99450": "Resident damage Anime change [for provisional Black Knight] -- 常駐ダメージアニメ変化【仮黒騎士用】", + "99451": "Resident damage Anime change [for temporary crucifixion dead a] -- 常駐ダメージアニメ変化【仮磔亡者A用】", + "99500": "Test for the Cathedral Golem -- 聖堂ゴーレム用テスト", + "99600": "Test for time measurement until the pseudo-death resurrection -- 擬似死亡復活までの時間計測用テスト", + "99700": "Team Type Change test -- チームタイプ変更テスト", + "99800": "Tae-eventmaker Collaboration Test -- TAE-EventMaker連携テスト", + "100000": "Moving (walking) -- 移動中(歩行)", + "100001": "On the move -- 移動中(走行)", + "100002": "Moving (dash) -- 移動中(ダッシュ)", + "100005": "Movement Stop (walking) -- 移動停止(歩行)", + "100006": "Travel stop -- 移動停止(走行)", + "100007": "Stop Moving (DASH) -- 移動停止(ダッシュ)", + "100010": "Quick Turn decision -- クイックターン判定", + "100020": "Player stamina out of judgment -- プレイヤースタミナ切れ判定用", + "100030": "upper body Anime End transition judgement -- 上半身アニメ終了遷移判定用", + "100040": "Lower body anime End transition judgement -- 下半身アニメ終了遷移判定用", + "100050": "Rotation attack transition available for specified period -- 回転攻撃遷移可能期間指定用", + "100060": "吹tsu飛bimasu for back-step Prohibition in motion -- 吹っ飛び系モーション中のバックステップ禁止判定用", + "100070": "For the fall transition judging of jump animation -- ジャンプアニメの落下遷移判定用", + "100080": "For judgment of wall collision during throwing -- 投げ時の壁衝突処理判定用", + "100090": "For determining the timing of the possible interruption of the reservoir attack -- 溜め攻撃の中断可能タイミング判定用", + "100100": "For determining death timing for wall collisions -- 投げ時壁衝突用の死亡タイミング判定用", + "100110": "Bonfire Event Issue Timing determination -- 篝火イベント発行タイミング判定用", + "100120": "Guard reversal Possible timing determination -- ガードリバーサル可能タイミング判定用", + "100130": "Right for Movement judgment -- 右向き移動判定用", + "100140": "For right diagonal movement judgment -- 右斜め移動判定用", + "100150": "For Left movement judgment -- 左向き移動判定用", + "100160": "Left diagonal Movement judgment -- 左斜め移動判定用", + "100170": "For determination of 180 degree turning in dash -- ダッシュ中180度旋回判定用", + "100180": "For no dash judgment -- ダッシュ不可判定用", + "100190": "For the driving and dash no judgment -- 走行・ダッシュ不可判定用", + "100200": "For non-moving judgment -- 移動不可判定用", + "100210": "Left-hand attack transition timing -- 左繋ぎ攻撃遷移可能タイミング", + "100220": "Continue to dash even if dash input is missing -- ダッシュ入力がなくなってもダッシュし続ける", + "100230": "Make a default attack instead of a combo attack -- コンボ攻撃ではなくデフォルトの攻撃を出す", + "100240": "No turning when rolling -- ローリング時旋回不可判定", + "100250": "The second stage of attack can be derived or determined -- 構え攻撃2段目派生可能か判定", + "100260": "The second stage of the rush attack can be derived or determined -- 突進攻撃2段目派生可能か判定", + "100270": "Can rise and roll -- 起き上がりローリング可能か判定", + "120000": "Arts: Axe: War cry -- アーツ:斧:ウォークライ", + "120010": "Arts: Axe: War cry: lack of points -- アーツ:斧:ウォークライ:ポイント不足", + "120020": "Arts: Axe: War cry Shockwave: Point shortage -- アーツ:斧:ウォークライ衝撃波:ポイント不足", + "120110": "Arts: Oversized Sword: Depression attack: lack of points -- アーツ:特大剣:踏み込み攻撃:ポイント不足", + "120210": "Arts: Straight Sword: Poised attack: lack of points -- アーツ:直剣:構え攻撃:ポイント不足", + "120310": "Arts: Song Sword: Spinning attack: lack of points -- アーツ:曲剣:回転攻撃:ポイント不足", + "120410": "Arts: Bow: Fire: Point shortage -- アーツ:弓:連射:ポイント不足", + "120500": "Arts: Cane: Magic power Up (right) -- アーツ:杖:魔法威力アップ(右手)", + "120501": "Arts: Cane: Magic power Up (left hand) -- アーツ:杖:魔法威力アップ(左手)", + "120510": "Arts: Cane: Magic power Up (right): lack of points -- アーツ:杖:魔法威力アップ(右手):ポイント不足", + "120511": "Arts: Cane: Magic power Up (left hand): lack of points -- アーツ:杖:魔法威力アップ(左手):ポイント不足", + "120610": "Arts: Spear: Assault: lack of points -- アーツ:槍:突撃:ポイント不足", + "120700": "Arts: Hammered: Patience -- アーツ:槌:我慢", + "120710": "Arts: Hammered: Patience: lack of points -- アーツ:槌:我慢:ポイント不足", + "120800": "Arts: Talisman: SA chant -- アーツ:タリスマン:SA詠唱", + "120801": "Arts: Talisman: SA chanting damage replacement -- アーツ:タリスマン:SA詠唱ダメージ差し替え", + "120810": "Arts: Talisman: SA chant (point shortage) -- アーツ:タリスマン:SA詠唱(ポイント不足)", + "120811": "Arts: Talisman: SA cast damage replacement (lack of points) -- アーツ:タリスマン:SA詠唱ダメージ差し替え(ポイント不足)", + "120910": "Arts: Miyakonojo: Shoot through: lack of points -- アーツ:大弓:貫通射撃:ポイント不足", + "130000": "Wet control: Water wet -- 濡れ制御:水濡れ", + "130010": "Wet control: Poison wet -- 濡れ制御:毒濡れ", + "130020": "Wet control: Mud wet -- 濡れ制御:泥濡れ", + "130040": "Wet control: Frostbite wetting -- 濡れ制御:凍傷濡れ", + "140001": "Multi-Doping: Super Ability: Client 1 -- マルチドーピング:ザコ:クライアント1名", + "140002": "Multi-Doping: Super Ability: 2 clients -- マルチドーピング:ザコ:クライアント2名", + "140003": "Multi-Doping: Super Ability: 3 clients -- マルチドーピング:ザコ:クライアント3名", + "140101": "Multi-Doping: Strong enemy: 1 Client -- マルチドーピング:強敵:クライアント1名", + "140102": "Multi-Doping: formidable: 2 clients -- マルチドーピング:強敵:クライアント2名", + "140103": "Multi-Doping: formidable: 3 clients -- マルチドーピング:強敵:クライアント3名", + "140201": "Multi-Doping: Boss: 1 Client -- マルチドーピング:ボス:クライアント1名", + "140202": "Multi-Doping: Boss: 2 Clients -- マルチドーピング:ボス:クライアント2名", + "140203": "Multi-Doping: Boss: 3 clients -- マルチドーピング:ボス:クライアント3名", + "224690": "Item:", + "224691": "Item:", + "224692": "Item:", + "224693": "Item:", + "900100": "SFX Confirmation: EST recovery -- SFX確認用:エスト使用回数回復", + "900200": "Ring:", + "900201": "Ring:", + "900202": "Ring:", + "900203": "Ring:", + "900210": "Ring:", + "900211": "Ring:", + "900212": "Ring:", + "111000000": "Ring: Blade of the Darkmoon", + "111001000": "Ring: Spears of the Church", + "111002000": "Ring: Watchdogs of Farron", + "111003000": "Ring: Aldrich Faithful", + "111004000": "Ring: Blue Sentinels", + "112000000": "Ring: Life Ring", + "112000100": "Ring: Life Ring+1", + "112000200": "Ring: Life Ring+2", + "112000300": "Ring: Life Ring+3", + "112001000": "Ring: Chloranthy Ring", + "112001100": "Ring: Chloranthy Ring+1", + "112001200": "Ring: Chloranthy Ring+2", + "112001300": "Ring: Chloranthy Ring+3", + "112002000": "Ring: Havel's Ring", + "112002100": "Ring: Havel's Ring+1", + "112002200": "Ring: Havel's Ring+2", + "112002300": "Ring: Havel's Ring+3", + "112003000": "Ring: Ring of Favor", + "112003100": "Ring: Ring of Favor+1", + "112003200": "Ring: Ring of Favor+2", + "112003300": "Ring: Ring of Favor+3", + "112004000": "Ring: Ring of Steel Protection", + "112004100": "Ring: Ring of Steel Protection+1", + "112004200": "Ring: Ring of Steel Protection+2", + "112004300": "Ring: Ring of Steel Protection+3", + "112005000": "Ring: Flame Stoneplate Ring", + "112005100": "Ring: Flame Stoneplate Ring+1", + "112005200": "Ring: Flame Stoneplate Ring+2", + "112006000": "Ring: Thunder Stoneplate Ring", + "112006100": "Ring: Thunder Stoneplate Ring+1", + "112006200": "Ring: Thunder Stoneplate Ring+2", + "112007000": "Ring: Magic Stoneplate Ring", + "112007100": "Ring: Magic Stoneplate Ring+1", + "112007200": "Ring: Magic Stoneplate Ring+2", + "112008000": "Ring: Dark Stoneplate Ring", + "112008100": "Ring: Dark Stoneplate Ring+1", + "112008200": "Ring: Dark Stoneplate Ring+2", + "112009000": "Ring: Speckled Stoneplate Ring", + "112009100": "Ring: Speckled Stoneplate Ring+1", + "112010000": "Ring: Bloodbite Ring", + "112010100": "Ring: Bloodbite Ring+1", + "112011000": "Ring: Poisonbite Ring", + "112011100": "Ring: Poisonbite Ring+1", + "112012000": "Ring: Cursebite Ring", + "112013000": "Ring: Fleshbite Ring", + "112013100": "Ring: Fleshbite Ring+1", + "112014000": "Ring: Wood Grain Ring", + "112014100": "Ring: Wood Grain Ring+1", + "112014200": "Ring: Wood Grain Ring+2", + "112015000": "Ring: Scholar Ring", + "112016000": "Ring: Priestess Ring", + "112017000": "Ring: Red Tearstone Ring", + "112018000": "Ring: Blue Tearstone Ring", + "112019000": "Ring: Wolf Ring", + "112019100": "Ring: Wolf Ring+1", + "112019200": "Ring: Wolf Ring+2", + "112019300": "Ring: Wolf Ring+3", + "112020000": "Ring: Leo Ring", + "112021000": "Ring: Ring of Sacrifice", + "112022000": "Ring: Ring of Sacrifice (Complementary)", + "112023000": "Ring: Young Dragon Ring", + "112023100": "Ring: Bellowing Dragoncrest Ring", + "112024000": "Ring: Great Swamp Ring", + "112024100": "Ring: Witch's Ring", + "112025000": "Ring: Morne's Ring", + "112025100": "Ring: Ring of the Sun's First Born", + "112027000": "Ring: Lingering Dragoncrest Ring", + "112027100": "Ring: Lingering Dragoncrest Ring+1", + "112027200": "Ring: Lingering Dragoncrest Ring+2", + "112028000": "Ring: Sage Ring", + "112028100": "Ring: Sage Ring+1", + "112028200": "Ring: Sage Ring+2", + "112029000": "Ring: Slumbering Dragoncrest Ring", + "112030000": "Ring: Dusk Crown Ring", + "112031000": "Ring: Saint's Ring", + "112032000": "Ring: Deep Ring", + "112033000": "Ring: Darkmoon Ring", + "112037000": "Ring: Hawk Ring", + "112038000": "Ring: Hornet Ring", + "112039000": "Ring: Covetous Gold Serpent Ring", + "112039100": "Ring: Covetous Gold Serpent Ring+1", + "112039200": "Ring: Covetous Gold Serpent Ring+2", + "112039300": "Ring: Covetous Gold Serpent Ring+3", + "112040000": "Ring: Covetous Silver Serpent Ring", + "112040100": "Ring: Covetous Silver Serpent Ring+1", + "112040200": "Ring: Covetous Silver Serpent Ring+2", + "112040300": "Ring: Covetous Silver Serpent Ring+3", + "112041000": "Ring: Sun Princess Ring", + "112042000": "Ring: Silvercat Ring", + "112043000": "Ring: Skull Ring", + "112044000": "Ring: Untrue White Ring", + "112045000": "Ring: Carthus Milkring - Effect", + "112045010": "Ring: Carthus Milkring - Condition", + "112046000": "Ring: Knight's Ring", + "112047000": "Ring: Hunter's Ring", + "112048000": "Ring: Knight Slayer's Ring", + "112049000": "Ring: Magic Clutch Ring", + "112050000": "Ring: Lightning Clutch Ring", + "112051000": "Ring: Fire Clutch Ring", + "112052000": "Ring: Dark Clutch Ring", + "112054000": "Ring: Flynn's Ring", + "112055000": "Ring: Prisoner's Chain", + "112056000": "Ring: Untrue Dark Ring", + "112058000": "Ring: Obscuring Ring", + "112059000": "Ring: Ring of the Evil Eye", + "112059010": "Ring: Ring of the Evil Eye - Effect", + "112059100": "Ring: Ring of the Evil Eye+1", + "112059110": "Ring: Ring of the Evil Eye+1 - Effect", + "112059200": "Ring: Ring of the Evil Eye+2", + "112059210": "Ring: Ring of the Evil Eye+2 - Effect", + "112059300": "Ring: Ring of the Evil Eye+3", + "112059310": "Ring: Ring of the Evil Eye+3 - Effect", + "112060000": "Ring: Calamity Ring", + "112061000": "Ring: Farron Ring", + "112062000": "Ring: Aldrich's Ruby", + "112062001": "Ring: Aldrich's Ruby - Condition", + "112062002": "Ring: Aldrich's Ruby - Effect", + "112063000": "Ring: Aldrich's Sapphire", + "112063001": "Ring: Aldrich's Sapphire - Condition", + "112063002": "Ring: Aldrich's Sapphire - Effect", + "112066000": "Ring: Lloyd's Sword Ring", + "112067000": "Ring: Lloyd's Shield Ring", + "112070000": "Ring: Estus Ring", + "112071000": "Ring: Ashen Estus Ring", + "112072000": "Ring: Horsehoof Ring", + "112073000": "Ring: Carthus Bloodring", + "112074000": "Ring: Reversal Ring", + "112075000": "Ring: Pontiff's Right Eye - Condition", + "112075010": "Ring: Pontiff's Right Eye - Condition (Complementary)", + "112075020": "Ring: Pontiff's Right Eye - Condition (Complementary)", + "112075030": "Ring: Pontiff's Right Eye - Condition (Complementary)", + "112075100": "Ring: Pontiff's Right Eye - Effect (Complementary)", + "112075110": "Ring: Pontiff's Right Eye - Effect (Complementary)", + "112075120": "Ring: Pontiff's Right Eye - Effect (Complementary)", + "112075130": "Ring: Pontiff's Right Eye - Effect", + "112079000": "Ring: Pontiff's Left Eye", + "112079100": "Ring: Pontiff's Left Eye - Effect", + "112083000": "Ring: Dragonscale Ring", + "112100000": "Ring: Chillbite Ring", + "129000500": "Infusion: Simple", + "129000501": "Infusion: Simple +1", + "129000502": "Infusion: Simple +2", + "129000503": "Infusion: Simple +3", + "129000504": "Infusion: Simple +4", + "129000505": "Infusion: Simple +5", + "129000506": "Infusion: Simple +6", + "129000507": "Infusion: Simple +7", + "129000508": "Infusion: Simple +8", + "129000509": "Infusion: Simple +9", + "129000510": "Infusion: Simple +10", + "129001100": "Infusion: Poison", + "129001101": "Infusion: Poison +1", + "129001102": "Infusion: Poison +2", + "129001103": "Infusion: Poison +3", + "129001104": "Infusion: Poison +4", + "129001105": "Infusion: Poison +5", + "129001106": "Infusion: Poison +6", + "129001107": "Infusion: Poison +7", + "129001108": "Infusion: Poison +8", + "129001109": "Infusion: Poison +9", + "129001110": "Infusion: Poison +10", + "129001200": "Infusion: Bleed", + "129001201": "Infusion: Bleed +1", + "129001202": "Infusion: Bleed +2", + "129001203": "Infusion: Bleed +3", + "129001204": "Infusion: Bleed +4", + "129001205": "Infusion: Bleed +5", + "129001206": "Infusion: Bleed +6", + "129001207": "Infusion: Bleed +7", + "129001208": "Infusion: Bleed +8", + "129001209": "Infusion: Bleed +9", + "129001210": "Infusion: Bleed +10", + "129001400": "Infusion: Blessed", + "129001401": "Infusion: Blessed +1", + "129001402": "Infusion: Blessed +2", + "129001403": "Infusion: Blessed +3", + "129001404": "Infusion: Blessed +4", + "129001405": "Infusion: Blessed +5", + "129001406": "Infusion: Blessed +6", + "129001407": "Infusion: Blessed +7", + "129001408": "Infusion: Blessed +8", + "129001409": "Infusion: Blessed +9", + "129001410": "Infusion: Blessed +10", + "129001500": "Infusion: Hollow", + "129001501": "Infusion: Hollow +1", + "129001502": "Infusion: Hollow +2", + "129001503": "Infusion: Hollow +3", + "129001504": "Infusion: Hollow +4", + "129001505": "Infusion: Hollow +5", + "129001506": "Infusion: Hollow +6", + "129001507": "Infusion: Hollow +7", + "129001508": "Infusion: Hollow +8", + "129001509": "Infusion: Hollow +9", + "129001510": "Infusion: Hollow +10", + "129010500": "Infusion: Simple Level 2", + "129010501": "Infusion: Simple Level 2 +1", + "129010502": "Infusion: Simple Level 2 +2", + "129010503": "Infusion: Simple Level 2 +3", + "129010504": "Infusion: Simple Level 2 +4", + "129010505": "Infusion: Simple Level 2 +5", + "129010506": "Infusion: Simple Level 2 +6", + "129010507": "Infusion: Simple Level 2 +7", + "129010508": "Infusion: Simple Level 2 +8", + "129010509": "Infusion: Simple Level 2 +9", + "129010510": "Infusion: Simple Level 2 +10", + "129011100": "Infusion: Poison Level 2", + "129011101": "Infusion: Poison Level 2 +1", + "129011102": "Infusion: Poison Level 2 +2", + "129011103": "Infusion: Poison Level 2 +3", + "129011104": "Infusion: Poison Level 2 +4", + "129011105": "Infusion: Poison Level 2 +5", + "129011106": "Infusion: Poison Level 2 +6", + "129011107": "Infusion: Poison Level 2 +7", + "129011108": "Infusion: Poison Level 2 +8", + "129011109": "Infusion: Poison Level 2 +9", + "129011110": "Infusion: Poison Level 2 +10", + "129011200": "Infusion: Bleed Level 2", + "129011201": "Infusion: Bleed Level 2 +1", + "129011202": "Infusion: Bleed Level 2 +2", + "129011203": "Infusion: Bleed Level 2 +3", + "129011204": "Infusion: Bleed Level 2 +4", + "129011205": "Infusion: Bleed Level 2 +5", + "129011206": "Infusion: Bleed Level 2 +6", + "129011207": "Infusion: Bleed Level 2 +7", + "129011208": "Infusion: Bleed Level 2 +8", + "129011209": "Infusion: Bleed Level 2 +9", + "129011210": "Infusion: Bleed Level 2 +10", + "129011400": "Infusion: Blessed Level 2", + "129011401": "Infusion: Blessed Level 2 +1", + "129011402": "Infusion: Blessed Level 2 +2", + "129011403": "Infusion: Blessed Level 2 +3", + "129011404": "Infusion: Blessed Level 2 +4", + "129011405": "Infusion: Blessed Level 2 +5", + "129011406": "Infusion: Blessed Level 2 +6", + "129011407": "Infusion: Blessed Level 2 +7", + "129011408": "Infusion: Blessed Level 2 +8", + "129011409": "Infusion: Blessed Level 2 +9", + "129011410": "Infusion: Blessed Level 2 +10", + "129021100": "Infusion: Poison Level 3", + "129021101": "Infusion: Poison Level 3 +1", + "129021102": "Infusion: Poison Level 3 +2", + "129021103": "Infusion: Poison Level 3 +3", + "129021104": "Infusion: Poison Level 3 +4", + "129021105": "Infusion: Poison Level 3 +5", + "129021106": "Infusion: Poison Level 3 +6", + "129021107": "Infusion: Poison Level 3 +7", + "129021108": "Infusion: Poison Level 3 +8", + "129021109": "Infusion: Poison Level 3 +9", + "129021110": "Infusion: Poison Level 3 +10", + "129021200": "Infusion: Bleed Level 3", + "129021201": "Infusion: Bleed Level 3 +1", + "129021202": "Infusion: Bleed Level 3 +2", + "129021203": "Infusion: Bleed Level 3 +3", + "129021204": "Infusion: Bleed Level 3 +4", + "129021205": "Infusion: Bleed Level 3 +5", + "129021206": "Infusion: Bleed Level 3 +6", + "129021207": "Infusion: Bleed Level 3 +7", + "129021208": "Infusion: Bleed Level 3 +8", + "129021209": "Infusion: Bleed Level 3 +9", + "129021210": "Infusion: Bleed Level 3 +10", + "129031100": "Infusion: Poison Level 4", + "129031101": "Infusion: Poison Level 4 +1", + "129031102": "Infusion: Poison Level 4 +2", + "129031103": "Infusion: Poison Level 4 +3", + "129031104": "Infusion: Poison Level 4 +4", + "129031105": "Infusion: Poison Level 4 +5", + "129031106": "Infusion: Poison Level 4 +6", + "129031107": "Infusion: Poison Level 4 +7", + "129031108": "Infusion: Poison Level 4 +8", + "129031109": "Infusion: Poison Level 4 +9", + "129031110": "Infusion: Poison Level 4 +10", + "129031200": "Infusion: Bleed Level 4", + "129031201": "Infusion: Bleed Level 4 +1", + "129031202": "Infusion: Bleed Level 4 +2", + "129031203": "Infusion: Bleed Level 4 +3", + "129031204": "Infusion: Bleed Level 4 +4", + "129031205": "Infusion: Bleed Level 4 +5", + "129031206": "Infusion: Bleed Level 4 +6", + "129031207": "Infusion: Bleed Level 4 +7", + "129031208": "Infusion: Bleed Level 4 +8", + "129031209": "Infusion: Bleed Level 4 +9", + "129031210": "Infusion: Bleed Level 4 +10", + "129041100": "Infusion: Poison Level 5", + "129041101": "Infusion: Poison Level 5 +1", + "129041102": "Infusion: Poison Level 5 +2", + "129041103": "Infusion: Poison Level 5 +3", + "129041104": "Infusion: Poison Level 5 +4", + "129041105": "Infusion: Poison Level 5 +5", + "129041106": "Infusion: Poison Level 5 +6", + "129041107": "Infusion: Poison Level 5 +7", + "129041108": "Infusion: Poison Level 5 +8", + "129041109": "Infusion: Poison Level 5 +9", + "129041110": "Infusion: Poison Level 5 +10", + "129041200": "Infusion: Bleed Level 5", + "129041201": "Infusion: Bleed Level 5 +1", + "129041202": "Infusion: Bleed Level 5 +2", + "129041203": "Infusion: Bleed Level 5 +3", + "129041204": "Infusion: Bleed Level 5 +4", + "129041205": "Infusion: Bleed Level 5 +5", + "129041206": "Infusion: Bleed Level 5 +6", + "129041207": "Infusion: Bleed Level 5 +7", + "129041208": "Infusion: Bleed Level 5 +8", + "129041209": "Infusion: Bleed Level 5 +9", + "129041210": "Infusion: Bleed Level 5 +10", + "129051100": "Infusion: Poison Level 6", + "129051101": "Infusion: Poison Level 6 +1", + "129051102": "Infusion: Poison Level 6 +2", + "129051103": "Infusion: Poison Level 6 +3", + "129051104": "Infusion: Poison Level 6 +4", + "129051105": "Infusion: Poison Level 6 +5", + "129051106": "Infusion: Poison Level 6 +6", + "129051107": "Infusion: Poison Level 6 +7", + "129051108": "Infusion: Poison Level 6 +8", + "129051109": "Infusion: Poison Level 6 +9", + "129051110": "Infusion: Poison Level 6 +10", + "129051200": "Infusion: Bleed Level 6", + "129051201": "Infusion: Bleed Level 6 +1", + "129051202": "Infusion: Bleed Level 6 +2", + "129051203": "Infusion: Bleed Level 6 +3", + "129051204": "Infusion: Bleed Level 6 +4", + "129051205": "Infusion: Bleed Level 6 +5", + "129051206": "Infusion: Bleed Level 6 +6", + "129051207": "Infusion: Bleed Level 6 +7", + "129051208": "Infusion: Bleed Level 6 +8", + "129051209": "Infusion: Bleed Level 6 +9", + "129051210": "Infusion: Bleed Level 6 +10", + "160000000": "Ring:" + }, + "SpEffectVfxParam": { + "0": "For testing -- テスト用", + "1": "Flame -- 炎", + "2": "Poison -- 毒", + "3": "Hill -- ヒル", + "4": "Corrosion -- 腐食", + "5": "Plague -- 疫病", + "6": "Bleeding -- 出血", + "8": "Hidden -- 姿隠し", + "9": "Gravity user -- グラビティ使用者", + "10": "State abnormal recovery [poison] -- 状態異常回復【毒】", + "11": "State abnormal recovery [plague] -- 状態異常回復【疫病】", + "12": "State abnormal recovery [bleeding] -- 状態異常回復【出血】", + "13": "State abnormal recovery [Universal] -- 状態異常回復【万能】", + "14": "Soul Steele -- ソウルスティール", + "15": "Zoom -- ズーム", + "16": "Warp -- ワープ", + "17": "Demon's Souls -- デモンズソウル", + "18": "Black Ghost Disperse -- 黒ゴースト退散", + "19": "Strong Ghost -- 強ゴースト", + "20": "White Hope -- ホワイト希望", + "21": "Black Hope -- ブラック希望", + "22": "Black Ghost -- 黒ゴースト化", + "23": "Resuscitation -- 蘇生", + "24": "Magic Prohibition -- 魔法使用禁止", + "25": "Miracle Motion Extension -- 奇跡モーション延長", + "26": "Grinding wheel -- 砥石", + "27": "Asphyxia Resuscitation -- 仮死蘇生", + "28": "Weapon reinforcement -- 武器強化", + "29": "Defense Shield -- 防御シールド", + "30": "Covered yarn -- 糸まみれ", + "31": "【 system 】 Ghost Rum Change -- 【システム】ゴーストパラム変化", + "32": "Incubus -- 金縛り", + "33": "Flies bummed -- 蠅たかり", + "34": "[FDP proto] slime freezing -- 【FDPプロト】スライム凍結", + "35": "Flame Phantom _ Second phase -- 炎怪人_第2段階", + "36": "Flame Phantom _ Third stage -- 炎怪人_第3段階", + "37": "Flame Phantom _ Fourth stage -- 炎怪人_第4段階", + "38": "Hallucinations -- 幻聴", + "39": "Soul Coins -- ソウルコイン", + "40": "Strong defense Shield -- 強防御シールド", + "41": "Fire Resistant Shield -- 火耐性シールド", + "42": "HP Recovery Status -- HP回復状態", + "43": "Forced ghosting first Stage -- 強制ゴースト化 第1段階", + "44": "Forced ghosting Phase II -- 強制ゴースト化 第2段階", + "45": "Forced ghosting third phase -- 強制ゴースト化 第3段階", + "46": "Pheromones -- フェロモン", + "47": "Cat Landing -- 猫着地", + "48": "Pinch attack power up -- ピンチ攻撃力アップ", + "49": "Pinch defensive power up -- ピンチ防御力アップ", + "50": "Regenerate -- リジェネレイト", + "51": "Torchlight -- たいまつ", + "52": "Weak Regenerate -- 弱リジェネレイト", + "53": "Weak Ghost Camouflage -- 弱ゴーストカムフラージュ", + "54": "Hidden weakness -- 弱姿隠し", + "55": "Tip Blood Letters -- ヒント血文字", + "56": "Hill Foot -- ヒル足", + "57": "Yellow Robe -- 黄衣", + "58": "Point Light -- 点光源", + "59": "Blood character evaluation -- 血文字評価", + "60": "Weapon reinforcement [medium] -- 武器強化【中】", + "61": "Weapon reinforcement [large] -- 武器強化【大】", + "62": "Flame Enhancement -- 炎強化", + "63": "flame enhancement [Large] -- 炎強化【大】", + "64": "Magic Reinforcement -- 魔法強化", + "65": "Chimera Reinforcement -- キメラ強化", + "66": "Item Drop correction -- アイテムドロップ補正", + "67": "MP Regenerate -- MPリジェネレイト", + "68": "Weak MP Regenerate -- 弱MPリジェネレイト", + "69": "Resurrection when dead -- 死んだとき復活", + "70": "Poison tolerance up -- 毒耐性UP", + "71": "Magic Power Up -- 魔法威力UP", + "72": "Magic Defense Up -- 魔法防御UP", + "73": "Bleeding resistance up -- 出血耐性UP", + "74": "Plague resistant up -- 疫病耐性UP", + "75": "Stamina Recovery Up -- スタミナ回復UP", + "76": "Seoul gets up -- ソウル取得UP", + "77": "Flame resistant up -- 炎耐性UP", + "78": "King's Shield one step left foot -- 王の盾1段階左足", + "79": "King's Shield 2 step left foot -- 王の盾2段階左足", + "80": "King's Shield three step left foot -- 王の盾3段階左足", + "91": "King's Shield one step right foot -- 王の盾1段階右足", + "92": "King's Shield 2 stage right foot -- 王の盾2段階右足", + "93": "King's Shield 3 stage right foot -- 王の盾3段階右足", + "94": "Referee's belly bleeding -- 審判者腹出血", + "95": "Mimicry -- 擬態", + "96": "[SP] Makeover -- 【SP】変身", + "97": "Extension -- ガスマン", + "98": "Detection -- 探知", + "99": "Waiting for cooperation -- 協力待ち", + "100": "Cooperation -- 協力", + "101": "Send cooperation -- 協力送信", + "102": "Gravity -- グラビティ", + "103": "Evil Eye -- 邪眼", + "104": "State lifting [waiting for cooperation] -- 状態解除【協力待ち】", + "105": "Effect LV1 -- エフェクトLv1", + "106": "Effect LV2 -- エフェクトLv2", + "107": "Effect Lv3 -- エフェクトLv3", + "108": "Evil Eye Lv1 -- 邪眼Lv1", + "109": "Evil Eye Lv2 -- 邪眼Lv2", + "110": "Counter -- カウンター", + "111": "Planting Egg Standby -- 植卵スタンバイ", + "112": "Planting eggs -- 植卵", + "113": "Egg Head Standby -- 卵頭スタンバイ", + "114": "Egg Head -- 卵頭", + "115": "Super Light Movement -- 超軽量移動", + "116": "Curse -- 呪い", + "117": "Petrified -- 石化", + "118": "Curse lifted -- 呪い解除", + "119": "Human Nature Damage -- 人間性ダメージ", + "120": "Damage Anime Change _sa Limited time -- ダメージアニメ変化_SA時限定", + "121": "Damage Anime Changes _ added -- ダメージアニメ変化_追加", + "122": "Underwater behavior -- 水中挙動", + "123": "Weapon Head -- 武器頭", + "124": "Weapon Torso -- 武器胴", + "125": "Weapon hand -- 武器手", + "126": "Weapon legs -- 武器脚", + "127": "Sleep -- 眠り", + "128": "Mimic _ mimicry -- ミミック_擬態", + "129": "Mimic _ Mimicry Slumber -- ミミック_擬態眠り", + "130": "Mimic _ usually -- ミミック_通常", + "131": "Mimic _ usually asleep -- ミミック_通常眠り", + "132": "Attracted -- 魅了", + "133": "Blood character acquisition -- 血文字取得", + "134": "A change in the -- はじき変化", + "135": "Mimic _ usually beginning to sleep -- ミミック_通常眠り始め", + "136": "Crystallization -- 結晶化", + "137": "Resonance lv0 -- 共鳴Lv0", + "138": "Resonance LV1 -- 共鳴Lv1", + "139": "Resonance Lv2 -- 共鳴Lv2", + "140": "Resonance Lv3 -- 共鳴Lv3", + "141": "Resonance lv4 -- 共鳴Lv4", + "142": "Behavior ID Specification -- 行動ID指定", + "143": "Immortal Enemy -- 敵_不死", + "144": "Enemy _ Asphyxia -- 敵_仮死", + "145": "The Sacred attribute -- 聖属性", + "146": "Whole Body Grindstone -- 全身砥石", + "147": "Light Magic -- ライト魔法", + "148": "Request for Relief -- 救援要請", + "149": "White Relief -- 白救援", + "150": "Black Relief -- 黒救援", + "151": "Lightning Reinforcement -- 雷強化", + "152": "Poison Reinforcement -- 毒強化", + "153": "Strengthening the plague -- 疫病強化", + "154": "EST unavailable -- エスト使用不可", + "155": "SA reinforcement -- SA強化", + "156": "Endurance decrease disabled -- 耐久度減少無効", + "157": "Strengthening against spirituality -- 対霊強化", + "158": "Guard Reinforcement -- ガード強化", + "159": "Usually dead when the ring resurrection -- 通常死んだとき指輪復活", + "160": "When a curse dies, the ring revives. -- 呪いで死んだとき指輪復活", + "161": "Warp b -- ワープB", + "162": "Warp C -- ワープC", + "163": "Warp D -- ワープD", + "164": "Warp E -- ワープE", + "165": "Warp A -- ワープA", + "166": "Pledge discarded -- 誓約破棄", + "167": "【 SP 】 Systemic makeover -- 【SP】全身変身", + "168": "Precision Reinforcement -- 精密強化", + "169": "resonance enhancement -- 共鳴強化", + "170": "Causal retribution -- 因果応報", + "171": "Causal retribution explosion -- 因果応報爆発", + "172": "Sheath Invincible 1 -- シース無敵1", + "173": "Sheath Invincible 2 -- シース無敵2", + "174": "Sheath Invincible 3 -- シース無敵3", + "175": "Revival of humanity -- 人間性復活", + "176": "Soul Coin (Immortal) -- ソウルコイン(不死系)", + "177": "Soul Coin (Beast System) -- ソウルコイン(獣系)", + "178": "Ally Reinforcement Magic -- 味方強化魔法", + "179": "Curse effect LV1 -- 呪い効果Lv1", + "180": "Curse effect Lv2 -- 呪い効果Lv2", + "181": "Curse effect Lv3 -- 呪い効果Lv3", + "182": "Curse effect Lv4 -- 呪い効果Lv4", + "183": "SOS Vis -- SOS可視", + "184": "Invisible weapon -- インビジブルウェポン", + "185": "NITs effect -- ニト効果", + "186": "Fire Kick -- 炎キック", + "187": "A death -- 死神化", + "188": "Forest thieves summon Hope -- 森の盗賊団召喚希望", + "189": "Forest thieves in territory -- 森の盗賊団テリトリ内", + "190": "Wang Mother brother summoned Hope -- 王母弟召喚希望", + "191": "King Mother Brother Territory -- 王母弟テリトリ内", + "192": "Egg Head _ Two -- 卵頭_二段目", + "193": "Life extension -- 寿命延長", + "194": "Magic Use up -- 魔法使用回数アップ", + "195": "Dragon NEWT Sines -- ドラゴンニュートサイン", + "196": "Prize Neck sign -- 賞金首サイン", + "197": "Counter up -- カウンターアップ", + "198": "Egg condemning -- 卵くだし", + "199": "HP Drain -- HPドレイン", + "200": "The Power of Madness -- 狂気の力", + "201": "For magic ban effect -- 魔法禁止エフェクト用", + "202": "Dragon Roar -- 竜咆哮", + "203": "Magic usage Down -- 魔法使用回数ダウン", + "204": "Strengthen guard [large] -- ガード強化【大】", + "205": "[DLC] Dark reinforcement -- 【DLC】闇強化", + "206": "Arena 1 vs. 1 [small] in territory -- 闘技場1対1【小】テリトリ内", + "207": "Arena 2 vs. 2 [small] territory -- 闘技場2対2【小】テリトリ内", + "208": "Arena Battle Royal [small] territory -- 闘技場バトルロイヤル【小】テリトリ内", + "209": "Arena 1 vs. 1 [small] summon hope a -- 闘技場1対1【小】召喚希望A", + "210": "Arena 1 vs. 1 [small] Summon Hope B -- 闘技場1対1【小】召喚希望B", + "211": "Arena 2 vs. 2 [small] summon hope A1 -- 闘技場2対2【小】召喚希望A1", + "212": "Arena 2 vs. 2 [small] summon hope A2 -- 闘技場2対2【小】召喚希望A2", + "213": "Arena 2 vs. 2 [small] Summon Hope B1 -- 闘技場2対2【小】召喚希望B1", + "214": "Arena 2 vs. 2 [small] Summon hope B2 -- 闘技場2対2【小】召喚希望B2", + "215": "Arena Battle Royal [small] summon hope a -- 闘技場バトルロイヤル【小】召喚希望A", + "216": "Arena Battle Royal [small] summon Hope B -- 闘技場バトルロイヤル【小】召喚希望B", + "217": "Arena Battle Royal [small] Summon hope C -- 闘技場バトルロイヤル【小】召喚希望C", + "218": "Arena Battle Royal [small] summon hope D -- 闘技場バトルロイヤル【小】召喚希望D", + "219": "Arena 1 to 1 [large] in territory -- 闘技場1対1【大】テリトリ内", + "220": "Arena 2 vs. 2 [large] territory -- 闘技場2対2【大】テリトリ内", + "221": "Arena Battle Royal 【 Dai 】 Territory -- 闘技場バトルロイヤル【大】テリトリ内", + "222": "Arena 1 to 1 [large] Summon hope a -- 闘技場1対1【大】召喚希望A", + "223": "Arena 1 to 1 [large] Summon hope B -- 闘技場1対1【大】召喚希望B", + "224": "Arena 2 vs. 2 [large] summon request A1 -- 闘技場2対2【大】召喚希望A1", + "225": "Arena 2 vs. 2 [large] summon hope A2 -- 闘技場2対2【大】召喚希望A2", + "226": "Arena 2 vs. 2 [large] Summon hope B1 -- 闘技場2対2【大】召喚希望B1", + "227": "Arena 2 vs. 2 [large] Summon hope B2 -- 闘技場2対2【大】召喚希望B2", + "228": "Arena Battle Royal [large] summon hope a -- 闘技場バトルロイヤル【大】召喚希望A", + "229": "Arena Battle Royal [large] Summon hope B -- 闘技場バトルロイヤル【大】召喚希望B", + "230": "Arena Battle Royal [large] Summon hope C -- 闘技場バトルロイヤル【大】召喚希望C", + "231": "Arena Battle Royal [large] summon hope D -- 闘技場バトルロイヤル【大】召喚希望D", + "232": "Prohibition of use prohibited items in the arena -- 闘技場使用禁止アイテム使用禁止", + "233": "Arena dead -- 闘技場死亡", + "234": "Provisional first place in the arena -- 闘技場暫定1位", + "235": "Arena Nodead -- 闘技場NoDead", + "236": "Arena Equal # 1 -- 闘技場同率1位", + "237": "Black Dragon Ring -- 黒竜の指輪", + "238": "More than ten fighting pits -- 闘技場10勝以上", + "239": "Over 30 wins in the arena -- 闘技場30勝以上", + "240": "Arena 50 wins over -- 闘技場50勝以上", + "241": "Over 100 wins in the arena -- 闘技場100勝以上", + "242": "Blood material override -- 血材質上書き", + "243": "Blood Material _ Blood -- 血材質_血", + "244": "Blood Material _ Flame -- 血材質_炎", + "245": "Blood Material _ blood Small -- 血材質_血少", + "246": "Stacking Magic A_LV1 -- 重ね掛け魔法A_LV1", + "247": "Stacking Magic A_lv2 -- 重ね掛け魔法A_LV2", + "248": "Stacking Magic A_lv3 -- 重ね掛け魔法A_LV3", + "249": "Stacking Magic B_LV1 -- 重ね掛け魔法B_LV1", + "250": "Stacking Magic B_lv2 -- 重ね掛け魔法B_LV2", + "251": "Stacking Magic B_lv3 -- 重ね掛け魔法B_LV3", + "252": "Covered with oil -- 油まみれ", + "253": "Fire Daruma -- 火だるま", + "254": "In the midst of being possessed -- 取り憑かれ中", + "255": "Dark Magic -- 暗闇魔法", + "256": "Burning Body combustion Level 1 -- 焼死体燃焼レベル1", + "257": "Burning Body combustion Level 2 -- 焼死体燃焼レベル2", + "258": "Sound magnification change -- 音倍率変更", + "259": "Target Down -- ターゲットダウン中", + "260": "Caries -- 蝕", + "261": "Maggots -- 蛆", + "262": "State abnormal recovery [maggots] -- 状態異常回復【蛆】", + "263": "Bleeding state -- 出血状態", + "265": "Quick Match Request -- クイックマッチリクエスト", + "266": "Dead disabled during fall -- 落下中死亡無効", + "267": "Change Visual Range -- 視覚範囲変更", + "268": "Caries deaths -- 蝕死亡", + "269": "Double chanting -- 二重詠唱中", + "270": "General ABATABAF 1 -- 汎用アバターバフ1", + "271": "General ABATABAF 2 -- 汎用アバターバフ2", + "272": "General ABATABAF 3 -- 汎用アバターバフ3", + "273": "General ABATABAF 4 -- 汎用アバターバフ4", + "274": "General ABATABAF 5 -- 汎用アバターバフ5", + "5000": "Torches _ Flame Effect -- 松明_炎エフェクト", + "5001": "Torches, the effect of hanging -- 松明、掲げた時のエフェクト", + "5010": "King of Firewood State Fire powder (small) -- 薪の王状態 火の粉(小)", + "5011": "King of Firewood State Fire powder (Large) -- 薪の王状態 火の粉(大)", + "5020": "Wang Hua of firewood when SFX: right arm -- 薪の王化時SFX:右腕", + "5021": "Wang Hua of firewood when SFX: right elbow -- 薪の王化時SFX:右肘", + "5022": "Wang Hua of firewood when SFX: right shoulder -- 薪の王化時SFX:右肩", + "5023": "Wang Hua of firewood when SFX: upper body -- 薪の王化時SFX:上半身", + "5024": "Wang Hua of firewood when SFX: systemic -- 薪の王化時SFX:全身", + "5025": "Wang Hua of firewood when SFX: -- 薪の王化時SFX:", + "5026": "Wang Hua of firewood when SFX: -- 薪の王化時SFX:", + "5027": "Wang Hua of firewood when SFX: -- 薪の王化時SFX:", + "5028": "Wang Hua of firewood when SFX: -- 薪の王化時SFX:", + "6900": "Arts: Axe: War cry -- アーツ:斧:ウォークライ", + "6910": "Arts: Cane: strengthening Magic (right) -- アーツ:杖:魔力強化(右)", + "6911": "Arts: Cane: strengthening Magic (left) -- アーツ:杖:魔力強化(左)", + "6920": "Arts: Hammered: Patience -- アーツ:槌:我慢", + "6930": "Arts: Talisman: Bearable chanting -- アーツ:タリスマン:我慢詠唱", + "6999": "SFX Confirmation: EST recovery -- SFX確認用:エスト使用回数回復", + "8000": "Fire weapon Reinforcement -- 炎武器強化", + "8010": "Regen Double Chanting -- リジェネ二重詠唱", + "8020": "Recovery double Chanting -- 回復二重詠唱", + "8030": "Sun Sword -- 太陽剣", + "8040": "Great recovery -- 大回復", + "8050": "A firm vow -- 固い誓い", + "40002": "Poison (Body Center effect) -- 毒(体中心エフェクト)", + "40253": "Fire Daruma -- 火だるま", + "40260": "Caries (Body center effect) -- 蝕(体中心エフェクト)", + "50000": "Daemon Priest _ Mojo Small -- デーモン司祭_呪術小", + "50001": "Demon Priest _ in Witchcraft -- デーモン司祭_呪術中", + "50002": "Demon Priest _ Great Mojo -- デーモン司祭_呪術大", + "50003": "Demon Priest _ Flame Enchant -- デーモン司祭_炎エンチャント", + "50004": "Daemon Priest _ -- デーモン司祭_", + "50010": "Elders of Crystals _ ally -- 結晶の古老_味方", + "50020": "Dead Wax (head) -- 蝋の死人_蝋まみれ(頭)", + "50021": "Dead of wax _ head Flame -- 蝋の死人_頭の炎", + "50030": "Firewood Daemon Head (resident SFX) -- 薪のデーモン_頭(常駐SFX)", + "50031": "Firewood Daemon _ Breast (resident SFX) -- 薪のデーモン_胸(常駐SFX)", + "50032": "Firewood Daemon _ Back (resident SFX) -- 薪のデーモン_背中(常駐SFX)", + "50033": "Firewood Daemon _ Weapons (resident SFX) -- 薪のデーモン_武器(常駐SFX)", + "50034": "Daemon Hu_ Head of firewood (resident SFX) -- 薪のデーモンHU_頭(常駐SFX)", + "50035": "Firewood Daemon hu_ Chest (resident SFX) -- 薪のデーモンHU_胸 (常駐SFX)", + "50036": "Firewood Daemon Hu_ back (resident SFX) -- 薪のデーモンHU_背中(常駐SFX)", + "50037": "Wood Daemon Hu_ Weapon (resident SFX) -- 薪のデーモンHU_武器(常駐SFX)", + "50040": "New Skeleton Torch (resident SFX) -- 新スケルトン松明(常駐SFX)", + "50050": "Salivan's Reaper _ Sword Enchanted -- サリヴァーンの死神_剣エンチャント", + "50051": "Salivan's Reaper _ Sickle Enchantment -- サリヴァーンの死神_鎌エンチャント", + "50052": "Salivan Reaper (Resident SFX) -- サリヴァーンの死神(常駐SFX)", + "50053": "Salivan Reaper _ (resident SFX) -- サリヴァーンの死神_(常駐SFX)", + "50055": "Tindalos _ Eyed -- ティンダロス_眼光", + "50058": "Gargoyl Torch -- ガーゴイルトーチ", + "50060": "King of the evil miasma chest resident SFX -- 死霊の王 瘴気胸 常駐SFX", + "50061": "King of the Evil Miasma -- 死霊の王 瘴気", + "50070": "The old king of caries Aura resident SFX -- 蝕の老王 蝕オーラ 常駐SFX", + "50071": "The old king of caries Aura Hu-Resident SFX -- 蝕の老王 蝕オーラHu 常駐SFX", + "50072": "The old king caries Vane resident SFX -- 蝕の老王 蝕羽根 常駐SFX", + "50073": "The old king caries Vane resident SFX -- 蝕の老王 蝕羽根 常駐SFX", + "50074": "Old King Style resident SFX of caries -- 蝕の老王 風 常駐SFX", + "50075": "The Old king illusion of Eclipse translucent -- 蝕の老王 幻影半透明", + "50076": "The Old king illusion of caries completely transparent -- 蝕の老王 幻影完全透明", + "50080": "Butterfly Scales resident of caries -- 蝕の蝶鱗粉常駐", + "50090": "Ash Daemon _ Weapon Smoke (resident SFX) -- 灰のデーモン_武器の煙(常駐SFX)", + "50091": "Ash Daemon _ Full Body smoke (resident SFX) -- 灰のデーモン_全身煙(常駐SFX)", + "50092": "Ash Daemon _ Joint 1 (Resident SFX) -- 灰のデーモン_関節1(常駐SFX)", + "50093": "Ash Daemon _ Joint 2 (Resident SFX) -- 灰のデーモン_関節2(常駐SFX)", + "50094": "Ash Daemon _ Joint 3 (Resident SFX) -- 灰のデーモン_関節3(常駐SFX)", + "50095": "Ash Daemon _ Joint 4 (Resident SFX) -- 灰のデーモン_関節4(常駐SFX)", + "50096": "Ash Daemon _ Strain 1 (resident SFX) -- 灰のデーモン_歪み1(常駐SFX)", + "50097": "Ash Daemon _ Strain 2 (resident SFX) -- 灰のデーモン_歪み2(常駐SFX)", + "50098": "Ash Daemon _ Strain 3 (resident SFX) -- 灰のデーモン_歪み3(常駐SFX)", + "50110": "Dead soldier Hand-held lantern resident SFX -- 亡者兵士 手持ちランタン常駐SFX", + "50120": "Dead soldier: Segunda State resident SFX -- 亡者兵士:グンダ状態 常駐SFX", + "50121": "Dead soldier: Segunda State resident SFX -- 亡者兵士:グンダ状態 常駐SFX", + "50122": "Dead soldier: Segunda State resident SFX -- 亡者兵士:グンダ状態 常駐SFX", + "50123": "Dead soldier: Segunda State resident SFX -- 亡者兵士:グンダ状態 常駐SFX", + "50124": "Dead soldier: Segunda State resident SFX -- 亡者兵士:グンダ状態 常駐SFX", + "50125": "Dead Soldier: Segunda status (Resident SFX) -- 亡者兵士:グンダ状態 両目(常駐SFX)", + "50130": "Dead soldier Waist Lantern resident SFX -- 亡者兵士 腰ランタン常駐SFX", + "50150": "New Ojo Knight: Red Eye (resident SFX) -- 新王城騎士:赤目(常駐SFX)", + "50200": "Dark Knight Beast _ Head (resident SFX) -- ダークナイトビースト_頭(常駐SFX)", + "50201": "Dark Knight Beast _ Torso (resident SFX) -- ダークナイトビースト_胴(常駐SFX)", + "50202": "Dark Knight Beast _ left arm (resident SFX) -- ダークナイトビースト_左腕(常駐SFX)", + "50203": "Dark Knight Beast _ right arm (resident SFX) -- ダークナイトビースト_右腕(常駐SFX)", + "50204": "Dark Knight Beast _ right foot (resident SFX) -- ダークナイトビースト_右足(常駐SFX)", + "50205": "Dark Knight Beast _ Left foot (resident SFX) -- ダークナイトビースト_左足(常駐SFX)", + "50206": "Dark Knight Beast _ Weapons (resident SFX) -- ダークナイトビースト_武器(常駐SFX)", + "50207": "Dark Knight Beast Eyes (resident SFX) -- ダークナイトビースト_目(常駐SFX)", + "50210": "Tracker _ Body Chill (resident SFX) -- 追跡者_体の冷気(常駐SFX)", + "50211": "Tracker _ Flaming Sword (resident SFX) -- 追跡者_炎の剣(常駐SFX)", + "50212": "Tracker _ The Sword of the Eclipse (cold) (resident SFX) -- 追跡者_蝕(冷気)の剣(常駐SFX)", + "50220": "Cardinal _ Curse (resident SFX) -- 枢機卿団_呪詛(常駐SFX)", + "50221": "Cardinals _ Range Regen (Effect SFX) -- 枢機卿団_範囲リジェネ(効果SFX)", + "50222": "Cardinals _ Range Scrut (Effect SFX) -- 枢機卿団_範囲スクルト(効果SFX)", + "50223": "Cardinal _ Eye Light (resident SFX) -- 枢機卿団_目光(常駐SFX)", + "50224": "Cardinal _ Aura (resident SFX) -- 枢機卿団_オーラ(常駐SFX)", + "50230": "Moonlight Witch (resident SFX) -- 月光の魔女(常駐SFX)", + "50240": "New Shing (resident SFX) -- 新獄吏(常駐SFX)", + "50250": "Full Armor Beast _ Whole body chill (before HU) -- フルアーマー獣_全身冷気(HU前)", + "50251": "Full Armor Beast _ weapon cold (before HU) -- フルアーマー獣_武器冷気(HU前)", + "50252": "Full Armor Beast _ Whole body chill (after HU) -- フルアーマー獣_全身冷気(HU後)", + "50253": "Full Armor Beast _ weapon cold (after Hu) -- フルアーマー獣_武器冷気(HU後)", + "50254": "Full Armor Beast _ Eye light (after Hu) -- フルアーマー獣_眼の光(HU後)", + "50260": "Salivan (NITs Sword Enchanted) -- サリヴァーン(ニト剣エンチャント)", + "50270": "Phantom of the painting -- 絵画守り_幻影", + "50280": "Hel Kite _ Ojo 1 feet -- ヘルカイト_王城1蝕足", + "50290": "Dead-resident SFX of Wax -- 蝋の死人 常駐SFX", + "50300": "Salivan watchdog (Large) Resident SFX -- サリヴァーンの番犬(大)常駐SFX", + "50301": "Salivan watchdog (small) Resident SFX -- サリヴァーンの番犬(小)常駐SFX" + }, + "SwordArtsParam": { + "0": "None", + "1": "None", + "10": "Weapon Skill", + "60": "Weapon Skill", + "70": "Weapon Skill", + "80": "Weapon Skill", + "90": "Parry", + "91": "Parry", + "92": "Spell Parry", + "93": "Spell Parry", + "99": "Parry", + "100": "Quickstep", + "101": "Blind Spot", + "102": "Unleash Dragon", + "103": "Guiding Light", + "104": "Blind Spot", + "105": "Shield Splitter", + "106": "Stance", + "107": "Crystal Blade", + "108": "Quickstep", + "200": "Stance", + "201": "Stomp", + "202": "Guiding Light", + "203": "Oath of Sunlight", + "204": "Sacred Lothric Light", + "205": "Stance", + "206": "Lion Stance", + "207": "Ember", + "300": "Stance", + "301": "Wrath of the Gods", + "302": "Ember", + "303": "Moonlight Vortex", + "304": "Stance of Judgment", + "305": "Sacred Light and Flame", + "306": "Wolf Sword", + "307": "Stomp", + "308": "Stomp", + "309": "Storm King", + "310": "Perseverance", + "311": "Elfriede's Blackflame", + "312": "Blade of Peril", + "400": "Stomp", + "401": "Parry", + "402": "Charge", + "403": "Profaned Flame", + "404": "Flame of Lorian", + "405": "Stomp", + "406": "Stomp", + "407": "Stomp", + "410": "Ember", + "500": "Stance", + "501": "Shield Splitter", + "502": "Ricard's Lunge and Press", + "503": "Quill Dart", + "600": "Spin Slash", + "601": "Crescent Blade", + "602": "Tornado", + "603": "Frost Blade", + "604": "Spin Slash", + "605": "Spin Slash", + "606": "Chained Dance", + "607": "Prying Wedge", + "608": "Spin Slash", + "700": "Spin Slash", + "701": "Wolf Leap", + "702": "Spin Slash", + "703": "Spin Slash", + "704": "Sever", + "800": "Hold", + "801": "Bloodlust", + "802": "Hold", + "803": "Darkdrift", + "804": "Hold", + "900": "Warcry", + "901": "Sharpen", + "902": "Feast Bell", + "903": "Quickstep", + "904": "Warcry", + "1000": "Warcry", + "1002": "Demonic Flare", + "1003": "Falling Bolt", + "1004": "Warcry", + "1005": "Sharpen", + "1006": "Earthen Wrath", + "1100": "Perseverance", + "1101": "Warcry", + "1102": "Steady Chant", + "1103": "Galvanize", + "1104": "Breathe Fire", + "1200": "Perseverance", + "1201": "Molten Perseverance", + "1202": "Kindled Flurry", + "1203": "Warcry", + "1204": "Morne's Rage", + "1205": "Spin Bash", + "1206": "Galvanize", + "1207": "Quake", + "1208": "Call to Stone", + "1300": "Charge", + "1301": "Falling Bolt", + "1302": "Pacify", + "1303": "Shield Splitter", + "1304": "Steady Chant", + "1305": "Unleash Dragon", + "1306": "Charge", + "1307": "Charge", + "1308": "Lightning Charge", + "1309": "Kindled Charge", + "1310": "Charge", + "1311": "Spin Sweep", + "1312": "Hurl Spear", + "1313": "Ember", + "1314": "Lothric War Banner", + "1400": "Spin Sweep", + "1401": "Chain Spin", + "1402": "Champion's Charge", + "1404": "Punitive Flame", + "1405": "Warcry", + "1406": "Charge", + "1407": "Perseverance", + "1408": "Wind Wheel", + "1409": "Mad King's Folly", + "1500": "Neck Swipe", + "1502": "Frost", + "1504": "Elfriede's Stance", + "1600": "Impact", + "1601": "Flame Whip", + "1700": "Quickstep", + "1701": "Flame Whirlwind", + "1702": "Lifedrain", + "1703": "Perseverance", + "1800": "Leaping Slash", + "1801": "Quickstep", + "1802": "Quickstep", + "1803": "Raptor Flurry", + "1900": "Rapid Fire", + "1901": "Puncture", + "1902": "Pharis Triple-shot", + "1903": "Darkmoon Arrow", + "1904": "Unseen Arrow", + "2000": "Puncturing Arrow", + "2001": "Puncturing Arrow", + "2002": "Pierce Earth", + "2101": "Tackle", + "2102": "Quickstep", + "2103": "Repeat Fire", + "2200": "Steady Chant", + "2201": "Steady Chant", + "2202": "Poison Spores", + "2203": "Steady Chant", + "2204": "Chant from the Depths", + "2205": "Feasting Branch", + "2300": "Unfaltering Prayer", + "2301": "Gentle Prayer", + "2302": "Combustion", + "2303": "Unfaltering Prayer", + "2304": "Unfaltering Prayer", + "2305": "Awakening", + "2306": "Pray for Favor", + "2400": "Combustion", + "2401": "Parting Flame", + "2500": "Quickstep", + "2600": "Spin Slash", + "2700": "Spin Slash", + "2701": "Spin Slash", + "2720": "Dancer's Grace", + "2800": "Onislayer", + "2900": "Charge", + "3000": "Chain Spin", + "3100": "Spin Bash", + "3200": "Shield Bash", + "3201": "Shield Strike", + "3300": "Shield Bash", + "3301": "Moan", + "3310": "Stone Flesh", + "3320": "Wheel of Fate", + "3321": "Dragon Roar", + "3330": "Lockout", + "3400": "Shield Bash", + "3401": "Dragon Breath" + }, + "TalkParam": { + "22000000": "It's a blade of God. -- 神の姿に刃するものよ", + "22000001": "My name is Gwindlin. -- 我が名はグウィンドリン", + "22000002": "Thy profane shall never be forgiven. -- 汝の不敬は、決して許されるものではない", + "22000003": "The night of Anole Rondo is good. -- アノール・ロンドの夜に果てるがよい", + "22000100": "A profane person... -- 不敬者が…", + "22000101": "Not only the appearance of the princess, Susu to the grave of the great... -- 王女の姿のみならず、大王の墓所まで穢すとは…", + "22000102": "In the shade of the sun, in the name of Gwindlin -- 陰の太陽、グウィンドリンの名において", + "22000103": "Never think you'll be forgiven! -- 決して、許されるものと思うなよ!", + "22000200": "The profane who was born in the dark... -- 闇に生まれた不敬者が…", + "22000201": "To you, The Curse of eternity... -- 貴様に、永遠の呪いを…", + "22000300": "Stop. -- 止まりなさい", + "22000301": "Beyond this, the tomb of the Great Gwin -- これより先は、大王グウィンの墓所", + "22000302": "No one is allowed to Susu this. -- 何人であれ、これを穢すことは許されない", + "22000500": "Good went back. The Sword of the Dark Moon. -- よくぞ戻った。暗月の剣よ", + "22000600": "Good, dark Moon sword. -- よいだろう、暗月の剣よ", + "22000800": "The stupid... -- 愚かな…", + "22000900": "The sun in the shadows. -- 陰の太陽の信徒よ", + "22000901": "Good came here and heard my voice -- よくぞここに至り、我の声を聞いた", + "22000902": "Thou shalt be my pledge and be a sword to hunt the enemies of God. -- 汝、我の誓約者となり神の敵を狩る剣となる", + "22000903": "The shadow of my father Gwin and elder sister Gwynevia -- 我が父グウィンと、姉グウィネヴィアの陰となり", + "22000904": "If you are prepared to be a sword to hunt the enemies of God -- 神の敵を狩る、剣となる覚悟があるならば", + "22001000": "May Then thou shall be the Sword of the Dark Moon. -- よろしい。ならば、汝はこれより暗月の剣となる", + "22001001": "The shadow of the sun, the power of the Dark Moon, will hunt the enemy of God. -- 陰の太陽、暗月の力もて、神の敵を狩るがよい", + "22001100": "That's good. -- それもよい", + "22001101": "But then we intersect. -- だが、ならば我らは交わらぬ", + "22001102": "Leave here and do thy work. -- ここを去り、汝のつとめを果たすがよい" + }, + "ThrowDirectionSfxParam": {}, + "ThrowParam": { + "100": "back PC → PC -- 背面 PC→PC", + "101": "Paris pc → PC -- パリィ PC→PC", + "107000": "Back PC → Skeleton -- 背面 PC→スケルトン", + "110400": "Back PC → dead -- 背面 PC→亡者", + "111000": "Back PC → dead soldier -- 背面 PC→亡者兵士", + "111050": "Back PC → dead soldier (Large) -- 背面 PC→亡者兵士(大)", + "111100": "Back PC → Dark Knight -- 背面 PC→ダークナイト", + "111200": "Back PC → dead Knight -- 背面 PC→亡者騎士", + "111500": "Back PC → dead Shi -- 背面 PC→亡者僧兵", + "111800": "Back PC → Skeleton frontier -- 背面 PC→スケルトン辺境", + "111900": "Back PC → dead priest Knight -- 背面 PC→亡者僧騎士", + "112000": "Back PC → dwarf people -- 背面 PC→矮小人", + "112100": "Back PC → Blue -- 背面 PC→ブルー", + "112200": "Back PC → Resurrection -- 背面 PC→よみがえり", + "112300": "Back PC → Missionary -- 背面 PC→宣教師", + "112400": "Back PC → Poor dead -- 背面 PC→貧民亡者", + "112500": "Back PC → Poor dead elite -- 背面 PC→貧民亡者エリート", + "112800": "Back PC → New Ojo Knights -- 背面 PC→新王城騎士", + "112900": "Back PC → Ojo Deb -- 背面 PC→王城デブ", + "113000": "Back PC → Black Knight -- 背面 PC→黒騎士", + "113400": "Back PC → dead wax -- 背面 PC→蝋の死人", + "113700": "Back PC → Crucifixion dead b -- 背面 PC→磔亡者B", + "113900": "Rear PC → Snake man assassin -- 背面 PC→蛇人の暗殺者", + "114100": "Back PC → Silver Knight -- 背面 PC→銀騎士", + "114400": "Back PC → pilgrimage dead -- 背面 PC→巡礼亡者", + "120300": "Back PC → Salivan Reaper -- 背面 PC→サリヴァーンの死神", + "131700": "Back PC → Dark Wraith -- 背面 PC→ダークレイス", + "152200": "Back PC → cardinal (long) -- 背面 PC→枢機卿団(長)", + "152210": "Back PC → cardinal (deb) -- 背面 PC→枢機卿団(デブ)", + "152220": "Back PC → cardinal (tall) -- 背面 PC→枢機卿団(のっぽ)", + "152230": "Back PC → cardinal (normal) -- 背面 PC→枢機卿団(通常)", + "210400": "Paris PC → dead -- パリィ PC→亡者", + "210701": "Paris PC → Skeleton -- パリィ PC→スケルトン", + "211000": "Paris PC → dead soldier -- パリィ PC→亡者兵士", + "211050": "Paris PC → dead soldier (Large) -- パリィ PC→亡者兵士(大)", + "211100": "Paris PC → Dark Knight -- パリィ PC→ダークナイト", + "211200": "Paris PC → dead Knight -- パリィ PC→亡者騎士", + "211500": "Paris PC → dead Shi -- パリィ PC→亡者僧兵", + "211800": "Paris PC → Skeleton Frontier -- パリィ PC→スケルトン辺境", + "211900": "Paris PC → dead Priest Knight -- パリィ PC→亡者僧騎士", + "212000": "Paris PC → dwarf people -- パリィ PC→矮小人", + "212100": "Paris PC → Blue -- パリィ PC→ブルー", + "212300": "Paris PC → Missionary -- パリィ PC→宣教師", + "212400": "Paris PC → Poor dead -- パリィ PC→貧民亡者", + "212500": "Paris PC → Poor dead elite -- パリィ PC→貧民亡者エリート", + "212600": "Paris PC → Poor dead servant -- パリィ PC→貧民亡者下男", + "212800": "Paris PC → New Ojo Knight -- パリィ PC→新王城騎士", + "213000": "Paris PC → Black Knight -- パリィ PC→黒騎士", + "213400": "Paris PC → dead Wax -- パリィ PC→蝋の死人", + "213900": "Paris PC → Snake man assassin -- パリィ PC→蛇人の暗殺者", + "213910": "Paris PC → Snake Assassin (Large) -- パリィ PC→蛇人の暗殺者(大)", + "214100": "Paris PC → Silver Knight -- パリィ PC→銀騎士", + "214400": "Paris PC → Pilgrimage dead -- パリィ PC→巡礼亡者", + "220300": "Paris PC → Salivan's death -- パリィ PC→サリヴァーンの死神", + "221600": "Paris PC → What you call caries (small) -- パリィ PC→蝕を呼ぶもの(小)", + "231700": "Paris PC → Dark Wraith -- パリィ PC→ダークレイス", + "252200": "Paris PC → cardinal (long) -- パリィ PC→枢機卿団(長)", + "252210": "Paris PC → cardinal (deb) -- パリィ PC→枢機卿団(デブ)", + "252220": "Paris PC → cardinal (tall) -- パリィ PC→枢機卿団(のっぽ)", + "252230": "Paris PC → cardinal (normal) -- パリィ PC→枢機卿団(通常)", + "410700": "Paris new skeleton → PC throwing -- パリィ 新スケルトン→PC 投げ", + "413900": "Paris Assassin (shorty) → PC throwing -- パリィ 蛇人の暗殺者(ショーテル)→PC 投げ", + "505000": "Wolf → PC throwing -- ウルフ→PC 投げ", + "505110": "Segunda → PC throwing -- グンダ→PC 投げ", + "505111": "Segunda (snake spirits possession) → PC throwing -- グンダ(蛇霊憑き)→PC 投げ", + "510900": "Dead soldier: Segunda state → PC throwing -- 亡者兵士:グンダ状態→PC 投げ", + "511000": "Dead soldier: Dagger → PC throwing -- 亡者兵士:短剣→PC 投げ", + "511310": "caries slugs → PC throwing -- 蝕ナメクジ→PC 投げ", + "511312": "Caries slug (dead dumpling) → PC throwing -- 蝕ナメクジ(亡者団子)→PC 投げ", + "512000": "Dwarf person → PC throwing -- 矮小人→PC 投げ", + "512100": "Blue → PC throwing -- ブルー→PC 投げ", + "512200": "Resurrection → PC throwing -- よみがえり→PC 投げ", + "512300": "Missionary → PC throwing -- 宣教師→PC 投げ", + "512400": "Poor dead (bi-stiletto) → PC throwing -- 貧民亡者(双小剣)→PC 投げ", + "513200": "Crystal Elders → PC throwing -- 結晶の古老→PC 投げ", + "513600": "Crucifixion dead A → PC throwing -- 磔亡者A→PC 投げ", + "513910": "Snake man Assassin (kusarigama) → PC throwing -- 蛇人の暗殺者(鎖鎌)→PC 投げ", + "520400": "Hungry jack (small) → PC throwing -- はらぺこジャック(小)→PC 投げ", + "520600": "Resurrection (main body) → PC throwing -- よみがえり(本体)→PC 投げ", + "520800": "Dead dog (maggots belly) → PC throwing -- 亡者犬(蛆腹)→PC 投げ", + "521200": "Mimic hug → PC toss -- ミミック 抱きつく→PC 投げ", + "521201": "Mimic jumped → PC throwing -- ミミック 飛びつき→PC 投げ", + "521202": "Mimic back bit → PC throwing -- ミミック 背面噛み付き→PC 投げ", + "521203": "Mimic mimicry 1 → PC throwing -- ミミック 擬態1→PC 投げ", + "521204": "Mimic mimicry 2 → PC throwing -- ミミック 擬態2→PC 投げ", + "521300": "Wriggles carrion → PC fall Throw -- 蠢く腐肉→PC 落下時投げ", + "521301": "Wriggles carrion → PC fell down crowded throw -- 蠢く腐肉→PC 倒れこみ投げ", + "522000": "Sand worm → PC throwing -- サンドワーム→PC 投げ", + "522010": "Sand worm (parent) → PC throwing -- サンドワーム(親)→PC 投げ", + "522300": "New Shing → PC throwing (front judgment) -- 新獄吏→PC 投げ(正面判定)", + "522301": "New Shing → PC throw (back judgment) -- 新獄吏→PC 投げ(背面判定)", + "522500": "Tindalos → PC throwing -- ティンダロス→PC 投げ", + "522700": "Stench Crab → PC toss -- 死臭蟹→PC 投げ", + "530201": "Golem → Throw from the PC probe -- ゴーレム→PC 探りからの投げ", + "530210": "Golem (Large) → PC throwing -- ゴーレム(大)→PC 投げ", + "530400": "Observer → PC thrower -- 監視者→PC 投げ", + "530800": "Butterfly of caries → PC throwing -- 蝕の蝶→PC 投げ", + "531700": "Dark Wraith → PC Toss -- ダークレイス→PC 投げ", + "550100": "King of the Storm → PC throwing -- 嵐の王→PC 投げ", + "551400": "The old king of caries → PC throwing -- 蝕の老王→PC 投げ", + "551800": "Colossus → PC throwing -- 巨像→PC 投げ", + "552400": "Moonlight Witch → PC throwing -- 月光の魔女→PC 投げ", + "552700": "Tracker → PC throwing -- 追跡者→PC 投げ", + "552701": "Tracker Hu → PC throwing -- 追跡者HU→PC 投げ", + "620400": "PC → Hungry Jack (small) Large throw -- PC→はらぺこジャック(小) 大型投げ", + "622500": "PC → Tindalos Large Throw -- PC→ティンダロス 大型投げ", + "630200": "PC → Golem Large Throw -- PC→ゴーレム 大型投げ", + "630500": "PC → Ash daemon Large throw -- PC→灰のデーモン 大型投げ", + "631100": "PC → large spider throw of caries -- PC→蝕の蜘蛛 大型投げ", + "631200": "PC → Sacred beast Large throw of forest -- PC→森の霊獣 大型投げ", + "650300": "PC → Storm King (cowgirl) Large throw -- PC→嵐の王(騎乗) 大型投げ", + "651200": "PC → Snake spirit large throw -- PC→蛇霊 大型投げ", + "652500": "PC → Prince of Darkness big throw -- PC→闇の双皇子 大型投げ", + "652600": "PC → Mad Warrior Hallec Large Throw -- PC→狂戦士ハレック 大型投げ", + "652700": "PC → tracker Large Throw -- PC→追跡者 大型投げ" + }, + "ToughnessParam": { + "1": "Generic parameters for enemies -- 敵用の汎用パラメータ", + "10": "Generic: 1.0 x -- 汎用:1.0倍", + "15": "Versatile: 1.5 x -- 汎用:1.5倍", + "20": "Generic: 2.0 X -- 汎用:2.0倍", + "25": "General Purpose: 2.5 x -- 汎用:2.5倍", + "30": "Generic: 3.0 x -- 汎用:3.0倍", + "100": "Attack: one hand: weak -- 攻撃:片手:弱", + "101": "Attack: one hand: weak: Minimum warranty -- 攻撃:片手:弱:最低保障", + "110": "Attack: one hand: Strong -- 攻撃:片手:強", + "111": "Attack: one hand: strong: Minimum security -- 攻撃:片手:強:最低保障", + "120": "Attack: one hand: Strong Max Infuser -- 攻撃:片手:強MAX溜め", + "121": "Attack: one hand: Strong max Infuser: Minimum security -- 攻撃:片手:強MAX溜め:最低保障" + }, + "UpperArmParam": {}, + "WeaponGenParam": { + "0": "Fushikure. -- ふしくれたえだ", + "90000": "[Prototyping] Torches -- 【プロト用】松明", + "91000": "[Prototyping] Orb -- 【プロト用】オーブ", + "201000": "Long Sword -- ロングソード", + "1450000": "Shield -- 盾" + }, + "WepAbsorpPosParam": { + "0": "Test -- test", + "1": "Dmy -- dmy", + "2": "Dmy -- dmy", + "3": "Dmy -- dmy", + "4": "Dmy -- dmy", + "5": "Dmy -- dmy", + "6": "Dmy -- dmy", + "7": "Dmy -- dmy", + "8": "Dmy -- dmy", + "9": "Dmy -- dmy", + "10": "Dmy -- dmy", + "11": "Dmy -- dmy", + "12": "Dmy -- dmy", + "13": "Dmy -- dmy", + "14": "Dmy -- dmy", + "15": "Dmy -- dmy", + "16": "Dmy -- dmy", + "17": "Dmy -- dmy", + "18": "Dmy -- dmy", + "19": "Dmy -- dmy", + "20": "Dagger (normal) -- 短剣(通常)", + "21": "Dagger (piercing) -- 短剣(刺突)", + "22": "Dagger (throwing) -- 短剣(投擲)", + "23": "Straight Sword (normal) -- 直剣(通常)", + "24": "Straight Sword -- 直剣(刺突)", + "25": "Straight Sword (Large) -- 直剣(大型)", + "26": "Straight Sword (huge) -- 直剣(巨大)", + "27": "Piercing Swords (normal) -- 刺剣(通常)", + "28": "Song Sword (normal) -- 曲剣(通常)", + "29": "Song Sword (Sword) -- 曲剣(刀)", + "30": "Axe (normal) -- 斧(通常)", + "31": "Axe (throwing) -- 斧(投擲)", + "32": "Axe (Large) -- 斧(大型)", + "33": "Mallet (normal) -- 槌(通常)", + "34": "Hammer (Piercing) -- 槌(刺突)", + "35": "Mallet (Large) -- 槌(大型)", + "36": "Spear (normal) -- 槍(通常)", + "37": "Spear (throwing) -- 槍(投擲)", + "38": "Rod-like (slashing) -- 竿状(斬撃)", + "39": "Rod-like (puncture) -- 竿状(刺突)", + "40": "Rod-like compound -- 竿状(複合)", + "41": "Catalysts (normal) -- 触媒(通常)", + "42": "Fist (normal) -- 拳(通常)", + "43": "Fist (slashing) -- 拳(斬撃)", + "44": "Bow (small) -- 弓(小型)", + "45": "Large bow -- 弓(大型)", + "46": "Crossbow (normal) -- 弩(通常)", + "47": "Large Shield -- 盾(大型)", + "48": "Shield (small) -- 盾(小型)", + "49": "Torch (Proto) -- 松明(プロト)" + }, + "WetAspectParam": { + "1": "Water wet -- 水濡れ", + "2": "Poison Wet -- 毒濡れ", + "3": "Oil wet -- 油濡れ", + "4": "Mud Stains -- 泥汚れ", + "5": "Sand Dust -- 砂埃", + "6": "Freezing -- 凍結", + "7": "Covered with wax -- 蝋まみれ", + "8": "Frostbite -- 凍傷", + "9": "(Preliminary 1) -- (予備1)", + "10": "(Preliminary 2) -- (予備2)", + "11": "(Preliminary 3) -- (予備3)" + }, + "WhiteSignCoolTimeParam": {}, + "Wind": { + "0": "For testing -- テスト用", + "10": "General Environment Wind (weak) -- 汎用環境風(弱)", + "11": "General environment Wind (medium) -- 汎用環境風(中)", + "12": "General Environment Wind (strong) -- 汎用環境風(強)", + "50000": "General-Purpose one shot wind (weak) -- 汎用ワンショット風(弱)", + "50001": "General-Purpose one shot wind (medium) -- 汎用ワンショット風(中)", + "50002": "General-Purpose one shot wind (strong) -- 汎用ワンショット風(強)", + "100000": "Map Placement Collision -- マップ配置用コリジョン", + "120100000": "M20_01 start part (after door open) -- m20_01スタート部(扉OPEN後)", + "120100001": "m20_01 Start Room-Ohashi -- m20_01スタート部屋~大橋", + "120100002": "M20_01 Ohashi -- m20_01大橋", + "120100003": "M20_01 Orphanage -- m20_01孤児院前", + "120100004": "M20_01 Orphanage Armpit -- m20_01孤児院脇", + "120100005": "M20_01 Orphanage Passage (after window destruction) -- m20_01孤児院通路(窓破壊後)", + "120100006": "M20_01 Orphanage Hall -- m20_01孤児院ホール", + "120100007": "M20_01 Orphanage Terrace -- m20_01孤児院テラス", + "120100008": "M20_01 Orphanage-Basilica Terrace -- m20_01孤児院~聖堂テラス", + "120100009": "M20_01 Cathedral Terrace -- m20_01聖堂テラス", + "120100010": "m20_01 Basilica -- m20_01聖堂前", + "120100011": "M20_01 boss Front passage (after door open) -- m20_01ボス前通路(扉OPEN後)", + "120100012": "M20_01 Boss Room -- m20_01ボス部屋", + "120150000": "M20_01 a small door and blow it -- m20_01小扉開けて吹き込む", + "120150001": "M20_01 Open the big door and breathe -- m20_01大扉開けて吹き込む", + "120150002": "m20_01 Windows Blow broken -- m20_01窓壊れて吹き込む", + "120150003": "M20_01 Boss appearance production wind -- m20_01ボス登場演出風", + "129100000": "M29 boss Stairs 20 ° Wind -- m29 ボス前階段20°の風", + "191040000": "M91_04 Yamagishi Style -- m91_04 山岸風", + "200000000": "Test (Tae Style) -- テスト用(TAE風)", + "200000010": "General character style (weak) -- 汎用キャラ風(弱)", + "200000011": "General character style (medium) -- 汎用キャラ風(中)", + "200000012": "General character style (strong) -- 汎用キャラ風(強)", + "200000100": "Pc_ Front _ Wind -- PC_正面_風", + "200000101": "Pc_ Left _ Wind -- PC_左前_風", + "200000102": "Pc_ Right _ Wind -- PC_右前_風", + "200000103": "Pc_ left after _ wind -- PC_左後_風", + "200000104": "Pc_ right after _ wind -- PC_右後_風", + "200000810": "Pc_ bodies _ before _ wind -- PC_体_前_ 風", + "200000811": "Pc_ bodies _ after _ winds -- PC_体_後_風", + "200000812": "Pc_ Bodies _ left _ winds -- PC_体_左_風", + "200000813": "Pc_ Bodies _ right _ winds -- PC_体_右_風", + "200000814": "Test for debugging -- デバック用テスト", + "200001000": "Player collision body for SFX interference -- SFX干渉用プレイヤーコリジョン_ボディ", + "200001010": "SFX interference player collision right arm -- SFX干渉用プレイヤーコリジョン_右腕", + "200001020": "SFX interference player collision left arm -- SFX干渉用プレイヤーコリジョン_左腕", + "200001030": "SFX interference player collision right foot -- SFX干渉用プレイヤーコリジョン_右足", + "200001040": "The left foot of the player collision for SFX interference -- SFX干渉用プレイヤーコリジョン_左足", + "200001050": "SFX Interference player collision Weapon (Common) -- SFX干渉用プレイヤーコリジョン_武器(共通)", + "350000100": "Parish Chief _ front _ Wind -- 教区長_正面_風", + "350000101": "Parish Warden _ Before the Wind -- 教区長_左前_風", + "350000102": "Parish Chief _ right _ winds -- 教区長_右前_風", + "350000103": "Parish Warden _ After left _ winds -- 教区長_左後_風", + "350000104": "Parish Warden _ right after winds -- 教区長_右後_風", + "350000810": "Parish Chief _ Body _ before _ Wind -- 教区長_体_前_ 風", + "350000811": "Parish Warden _ After body _ winds -- 教区長_体_後_風", + "350000812": "Parish Chief _ Body _ left _ Wind -- 教区長_体_左_風", + "350000813": "Parish Chief _ Body _ right _ winds -- 教区長_体_右_風", + "350000900": "Parish Chief _ Feet -- 教区長_足元" + } +} \ No newline at end of file diff --git a/lib/param-tinkerer/Cargo.toml b/lib/param-tinkerer/Cargo.toml index 1ea5b45..84cd4cd 100644 --- a/lib/param-tinkerer/Cargo.toml +++ b/lib/param-tinkerer/Cargo.toml @@ -14,4 +14,3 @@ libds3 = { path = "../libds3" } windows = { version = "0.42.0", features = ["Win32_System_LibraryLoader", "Win32_Foundation"] } hudhook.workspace = true imgui.workspace = true -imgui-sys.workspace = true diff --git a/practice-tool/Cargo.toml b/practice-tool/Cargo.toml index 4df51f8..058253b 100644 --- a/practice-tool/Cargo.toml +++ b/practice-tool/Cargo.toml @@ -32,7 +32,6 @@ libds3 = { path = "../lib/libds3" } hudhook.workspace = true imgui.workspace = true -imgui-sys.workspace = true once_cell.workspace = true windows.workspace = true practice-tool-core.workspace = true diff --git a/practice-tool/src/practice_tool.rs b/practice-tool/src/practice_tool.rs index cb897a3..2da3ab9 100644 --- a/practice-tool/src/practice_tool.rs +++ b/practice-tool/src/practice_tool.rs @@ -15,8 +15,9 @@ use tracing_subscriber::prelude::*; use crate::config::{Config, Settings}; use crate::util; -const VERSION: (usize, usize, usize) = - (pkg_version_major!(), pkg_version_minor!(), pkg_version_patch!()); +const MAJOR: usize = pkg_version_major!(); +const MINOR: usize = pkg_version_minor!(); +const PATCH: usize = pkg_version_patch!(); struct FontIDs { small: FontId, @@ -35,8 +36,10 @@ enum UiState { pub(crate) struct PracticeTool { settings: Settings, - widgets: Vec>, pointers: PointerChains, + version_label: String, + widgets: Vec>, + log: Vec<(Instant, String)>, log_rx: Receiver, log_tx: Sender, @@ -132,6 +135,11 @@ impl PracticeTool { let pointers = PointerChains::new(); + let version_label = { + let (maj, min, patch) = (*VERSION).into(); + format!("Game Ver {}.{:02}.{}", maj, min, patch) + }; + let widgets = config.make_commands(&pointers); { @@ -155,12 +163,13 @@ impl PracticeTool { PracticeTool { settings, pointers, + version_label, widgets, - ui_state: UiState::Closed, log: Vec::new(), - fonts: None, log_rx, log_tx, + fonts: None, + ui_state: UiState::Closed, } } @@ -242,9 +251,9 @@ impl PracticeTool { self.pointers.cursor_show.set(true); ui.text(formatcp!( "Dark Souls III Practice Tool v{}.{}.{}", - VERSION.0, - VERSION.1, - VERSION.2 + MAJOR, + MINOR, + PATCH )); ui.separator(); ui.text(format!( @@ -274,8 +283,14 @@ impl PracticeTool { ) .ok(); } + ui.same_line(); + if ui.button("Support") { + open::that("https://patreon.com/johndisandonato").ok(); + } }); + ui.text(&self.version_label); + if let Some(igt) = self.pointers.igt.read() { let millis = (igt % 1000) / 10; let total_seconds = igt / 1000; diff --git a/practice-tool/src/widgets/item_spawn.rs b/practice-tool/src/widgets/item_spawn.rs index 89ff083..3abc012 100644 --- a/practice-tool/src/widgets/item_spawn.rs +++ b/practice-tool/src/widgets/item_spawn.rs @@ -2,7 +2,10 @@ use std::borrow::Cow; use std::ffi::c_void; use std::fmt::Display; -use imgui::sys::{igGetCursorPosX, igGetCursorPosY, igGetWindowPos, igSetNextWindowPos, ImVec2}; +use imgui::sys::{ + igGetCursorPosX, igGetCursorPosY, igGetTreeNodeToLabelSpacing, igGetWindowPos, igIndent, + igSetNextWindowPos, igUnindent, ImVec2, +}; use imgui::{Condition, InputText, TreeNodeFlags}; use libds3::memedit::Bitflag; use once_cell::sync::Lazy; @@ -62,7 +65,7 @@ impl<'a> ItemIDNodeRef<'a> { fn render(&self, ui: &imgui::Ui, current: &mut u32, filtered: bool) { match self { ItemIDNodeRef::Leaf { node, value } => { - unsafe { imgui_sys::igUnindent(imgui_sys::igGetTreeNodeToLabelSpacing()) }; + unsafe { igUnindent(igGetTreeNodeToLabelSpacing()) }; ui.tree_node_config(*node) .label::<&str, &str>(node) .flags(if current == value { @@ -73,7 +76,7 @@ impl<'a> ItemIDNodeRef<'a> { TreeNodeFlags::LEAF | TreeNodeFlags::NO_TREE_PUSH_ON_OPEN }) .build(|| {}); - unsafe { imgui_sys::igIndent(imgui_sys::igGetTreeNodeToLabelSpacing()) }; + unsafe { igIndent(igGetTreeNodeToLabelSpacing()) }; if ui.is_item_clicked() { *current = *value; } diff --git a/practice-tool/src/widgets/position.rs b/practice-tool/src/widgets/position.rs index 7381e7d..71168ec 100644 --- a/practice-tool/src/widgets/position.rs +++ b/practice-tool/src/widgets/position.rs @@ -31,7 +31,7 @@ impl SavePosition { } impl PositionStorage for SavePosition { - fn read(&mut self) { + fn save(&mut self) { if let (Some(pos), Some(angle)) = (self.ptr_pos.read(), self.ptr_angle.read()) { self.saved_position = [pos[0], pos[1], pos[2], angle]; self.valid = true; @@ -40,7 +40,7 @@ impl PositionStorage for SavePosition { } } - fn write(&mut self) { + fn load(&mut self) { self.ptr_pos.write([ self.saved_position[0], self.saved_position[1], diff --git a/xtask/Cargo.toml b/xtask/Cargo.toml index 961a57f..1bb3c0a 100644 --- a/xtask/Cargo.toml +++ b/xtask/Cargo.toml @@ -5,13 +5,13 @@ authors.workspace = true edition = "2021" [dependencies] -widestring = "0.5.1" -zip = "0.6" +anyhow = "1.0.80" +dotenv = "0.15.0" +heck = "0.4.0" +pelite = "0.10.0" regex = "1.5.5" serde_json = "1.0.73" -rayon = "1.5.3" -heck = "0.4.0" textwrap = "0.15.0" -dotenv = "0.15.0" -once_cell.workspace = true -pelite = "0.10.0" +zip = "0.6" + +practice-tool-tasks.workspace = true diff --git a/xtask/src/codegen/aob_scans.rs b/xtask/src/codegen/aob_scans.rs index 8370043..4c0ac20 100644 --- a/xtask/src/codegen/aob_scans.rs +++ b/xtask/src/codegen/aob_scans.rs @@ -1,362 +1,13 @@ -use std::cmp::PartialOrd; -use std::collections::HashSet; use std::env; -use std::fs::File; -use std::io::Write; use std::path::{Path, PathBuf}; -use heck::AsSnakeCase; -use once_cell::sync::Lazy; -use pelite::{FileMap, PeFile}; -use rayon::prelude::*; +use practice_tool_tasks::codegen::{self, aob_direct, aob_indirect, aob_indirect_twice}; use textwrap::dedent; -const AOBS: &[(&str, &str, usize, usize)] = &[ - ("WorldChrMan", "48 8B 1D ?? ?? ?? 04 48 8B F9 48 85 DB ?? ?? 8B 11 85 D2 ?? ?? 8D", 3, 7), - ("WorldChrManDbg", "48 8B 05 ?? ?? ?? ?? 66 0F 7F 44 24 40 48 85 C0", 3, 7), - ("MenuMan", "48 89 15 ?? ?? ?? ?? 44 8b 82 ?? ?? ?? ?? 44 8b 8a ?? ?? ?? ?? 48 8b c3", 3, 7), - ("BaseA", "48 8B 05 ?? ?? ?? ?? 48 85 C0 ?? ?? 48 8b 40 ?? C3", 3, 7), - ("BaseD", "48 8B 0D ?? ?? ?? ?? 48 85 C9 74 26 44 8B", 3, 7), - ("SprjDebugEvent", "48 8B 05 ?? ?? ?? ?? 41 0F B6 D8 8B EA", 3, 7), - ( - "Debug", - "C6 05 ?? ?? ?? ?? 01 48 8B 8C 24 ?? ?? ?? ?? 48 33 CC E8 ?? ?? ?? ?? 4C 8D 9C 24", - 2, - 7, - ), - ( - "Grend", - "C6 05 ?? ?? ?? ?? 00 C6 05 ?? ?? ?? ?? 00 C6 05 ?? ?? ?? ?? 00 C6 05 ?? ?? ?? ?? 00 4C \ - 8B 05 ?? ?? ?? ?? 4C 89 44 24 58", - 2, - 7, - ), - ("BaseHBD", "48 8B 0D ?? ?? ?? ?? 41 B0 01 E8 ?? ?? ?? ?? 48 8B D3 48 8B CF", 3, 7), - ("MapItemMan", "48 8B 0D ?? ?? ?? ?? 48 8B 89 ?? ?? ?? ?? E8 ?? ?? ?? ?? E9", 3, 7), - ( - "SpawnItemFuncPtr", - // "E8 ?? ?? ?? ?? C7 44 24 20 00 01 00 00 4C 8D 4C 24 40 41 B8 2C 00 00 00 48 8B D3", - "E8 ?? ?? ?? ?? C7 44 24 20 00 01 00 00 4C 8D 4C 24 40 41 B8", - 1, - 5, - ), - ("Param", "48 8B 0D ?? ?? ?? ?? 48 85 C9 74 0B 4C 8B C0 48 8B D7", 3, 7), -]; - -static AOBS_README: Lazy, usize)>> = - Lazy::new(|| vec![("XA", vec!["48 8B 83 ?? ?? ?? ?? 48 8B 10 48 85 D2 ?? ?? 8B"], 3)]); - -static AOBS_DIRECT: Lazy)>> = Lazy::new(|| { - vec![ - ("FormatString", vec!["3C 00 54 00 45 00 58 00 54 00 46 00 4F 00 52 00 4D 00 41 00 54 00"]), - ("NoLogo", vec!["E8 ?? ?? ?? FF 90 4D 8B C7 49 8B D4 48 8B C8 E8 ?? ?? ?? FF"]), - ("CurrentTarget", vec!["48 8B 80 ?? ?? ?? ?? 48 8B 08 48 8B ?? 58"]), - ("MenuTravel", vec![ - "40 55 53 56 57 41 56 48 8D 6C 24 C9 48 81 EC 00 01 00 00 48 C7 45 97 FE FF FF FF", - ]), - ("MenuAttune", vec![ - "48 8D 45 0F 48 89 45 EF 48 8D 45 0F 48 89 45 F7 48 8D ?? ?? ?? ?? ?? 48 89 45 0F 48 \ - 8D ?? ?? ?? ?? ?? 48 89 45 0F 48 8D ?? ?? ?? ?? ?? 48 89 45 17", - ]), - ] -}); - -#[derive(PartialOrd, Ord, PartialEq, Eq, Hash, Clone, Copy)] -pub struct Version(u32, u32, u32); - -impl Version { - fn to_fromsoft_string(self) -> String { - format!("{}.{:02}.{}", self.0, self.1, self.2) - } -} - -struct VersionData { - version: Version, - aobs: Vec<(&'static str, usize)>, -} - -fn into_needle(pattern: &str) -> Vec> { - pattern - .split(' ') - .map(|byte| match byte { - "?" | "??" => None, - x => u8::from_str_radix(x, 16).ok(), - }) - .collect::>() -} - -fn naive_search(bytes: &[u8], pattern: &[Option]) -> Option { - bytes.windows(pattern.len()).position(|wnd| { - wnd.iter().zip(pattern.iter()).all(|(byte, pattern)| match pattern { - Some(x) => byte == x, - None => true, - }) - }) -} - -fn find_aob_normal( - name: &'static str, - aob: &str, - offset_read: usize, - offset_final: usize, - pe_file: &PeFile, -) -> Option<(&'static str, usize)> { - let needle = into_needle(aob); - - pe_file - .section_headers() - .into_iter() - .filter_map(|sh| Some((sh.VirtualAddress as usize, pe_file.get_section_bytes(sh).ok()?))) - .find_map(|(base, bytes)| { - let offset = naive_search(bytes, &needle)?; - let val = u32::from_le_bytes( - bytes[offset + offset_read..offset + offset_read + 4].try_into().unwrap(), - ) as usize; - let addr = val + offset_final + offset + base; - - Some((name, addr)) - }) -} - -fn find_aob_direct( - name: &'static str, - aob: &str, - pe_file: &PeFile, -) -> Option<(&'static str, usize)> { - let needle = into_needle(aob); - - pe_file - .section_headers() - .into_iter() - .filter_map(|sh| Some((sh.VirtualAddress as usize, pe_file.get_section_bytes(sh).ok()?))) - .find_map(|(base, bytes)| naive_search(bytes, &needle).map(|r| (name, r + base))) -} - -fn find_aob_readme( - name: &'static str, - aob: &str, - offset: usize, - pe_file: &PeFile, -) -> Option<(&'static str, usize)> { - let needle = into_needle(aob); - - pe_file - .section_headers() - .into_iter() - .filter_map(|sh| pe_file.get_section_bytes(sh).ok()) - .find_map(|bytes| { - naive_search(bytes, &needle).map(|r| { - let r = - u32::from_le_bytes((&bytes[r + offset..r + offset + 4]).try_into().unwrap()); - (name, r as usize) - }) - }) -} - -fn find_aobs(pe_file: &PeFile) -> Vec<(&'static str, usize)> { - let mut aob_offsets = AOBS - .into_par_iter() - .filter_map(|(name, aob, offset_read, offset_final)| { - find_aob_normal(name, aob, *offset_read, *offset_final, pe_file) - }) - .collect::>(); - - aob_offsets.sort_by(|a, b| a.0.cmp(b.0)); - - // - let mut aob_offsets_direct = AOBS_DIRECT - .iter() - .filter_map(|(name, aob)| aob.iter().find_map(|aob| find_aob_direct(name, aob, pe_file))) - .collect::>(); - - aob_offsets_direct.sort_by(|a, b| a.0.cmp(b.0)); - - aob_offsets.extend(aob_offsets_direct); - - // - let mut aob_offsets_readme = AOBS_README - .iter() - .filter_map(|(name, aob, offset)| { - aob.iter().find_map(|aob| find_aob_readme(name, aob, *offset, pe_file)) - }) - .collect::>(); - - aob_offsets_readme.sort_by(|a, b| a.0.cmp(b.0)); - - aob_offsets.extend(aob_offsets_readme); - - aob_offsets -} - -// Codegen routine -// - -/// Generate the `BaseAddresses` struct. -fn codegen_base_addresses_struct() -> String { - let mut generated = String::new(); - - generated.push_str("// **********************************\n"); - generated.push_str("// *** AUTOGENERATED, DO NOT EDIT ***\n"); - generated.push_str("// **********************************\n"); - - generated.push_str("#[derive(Debug)]\n"); - generated.push_str("pub struct BaseAddresses {\n"); - generated.push_str( - &AOBS - .iter() - .map(|(name, ..)| format!(" pub {}: usize,\n", AsSnakeCase(name))) - .collect::>() - .join(""), - ); - generated.push_str({ - &AOBS_DIRECT - .iter() - .map(|(name, _)| format!(" pub {}: usize,\n", AsSnakeCase(name))) - .collect::>() - .join("") - }); - generated.push_str({ - &AOBS_README - .iter() - .map(|(name, ..)| format!(" pub {}: usize,\n", AsSnakeCase(name))) - .collect::>() - .join("") - }); - generated.push_str("}\n\n"); - generated.push_str("impl BaseAddresses {\n"); - generated.push_str(" pub fn with_module_base_addr(self, base: usize) -> BaseAddresses {\n"); - generated.push_str(" BaseAddresses {\n"); - generated.push_str( - &AOBS - .iter() - .map(|(name, ..)| { - format!(" {}: self.{} + base,\n", AsSnakeCase(name), AsSnakeCase(name)) - }) - .collect::>() - .join(""), - ); - generated.push_str( - &AOBS_DIRECT - .iter() - .map(|(name, _)| { - format!(" {}: self.{} + base,\n", AsSnakeCase(name), AsSnakeCase(name)) - }) - .collect::>() - .join(""), - ); - generated.push_str( - &AOBS_README - .iter() - .map(|(name, ..)| { - format!(" {}: self.{},\n", AsSnakeCase(name), AsSnakeCase(name)) - }) - .collect::>() - .join(""), - ); - generated.push_str(" }\n }\n}\n\n"); - generated -} - -/// Generate `BaseAddresses` instances. -fn codegen_base_addresses_instances(ver: &Version, aobs: &[(&str, usize)]) -> String { - use std::fmt::Write; - let mut string = aobs.iter().fold( - format!( - "pub const BASE_ADDRESSES_{}_{:02}_{}: BaseAddresses = BaseAddresses {{\n", - ver.0, ver.1, ver.2 - ), - |mut o, (name, offset)| { - writeln!(o, " {}: 0x{:x},", AsSnakeCase(name), offset).unwrap(); - o - }, - ); - string.push_str("};\n\n"); - string -} - -/// Generate the `Version` enum and `From for BaseAddresses`. -fn codegen_version_enum(ver: &[VersionData]) -> String { - use std::fmt::Write; - let mut string = String::new(); - - // pub enum Version - - string.push_str("#[derive(Clone, Copy)]\n"); - string.push_str("pub enum Version {\n"); - - for v in ver { - writeln!(string, " V{}_{:02}_{},", v.version.0, v.version.1, v.version.2).unwrap(); - } - - string.push_str("}\n\n"); - - // impl From<(u32, u32, u32)> for Version - - string.push_str("impl From<(u32, u32, u32)> for Version {\n"); - string.push_str(" fn from(v: (u32, u32, u32)) -> Self {\n"); - string.push_str(" match v {\n"); - - for v in ver { - let Version(maj, min, patch) = v.version; - writeln!( - string, - " ({maj}, {min}, {patch}) => Version::V{maj}_{min:02}_{patch}," - ) - .unwrap(); - } - - string.push_str(" (maj, min, patch) => {\n"); - string.push_str( - " log::error!(\"Unrecognized version {maj}.{min:02}.{patch}\");\n", - ); - string.push_str(" panic!()\n"); - string.push_str(" }\n"); - string.push_str(" }\n"); - string.push_str(" }\n"); - string.push_str("}\n\n"); - - // impl From for (u32, u32, u32) - - string.push_str("impl From for (u32, u32, u32) {\n"); - string.push_str(" fn from(v: Version) -> Self {\n"); - string.push_str(" match v {\n"); - - for v in ver { - let Version(maj, min, patch) = v.version; - writeln!( - string, - " Version::V{maj}_{min:02}_{patch} => ({maj}, {min}, {patch})," - ) - .unwrap(); - } - - string.push_str(" }\n"); - string.push_str(" }\n"); - string.push_str("}\n\n"); - - // impl From for BaseAddresses - - string.push_str("impl From for BaseAddresses {\n"); - string.push_str(" fn from(v: Version) -> Self {\n"); - string.push_str(" match v {\n"); - - for v in ver { - let Version(maj, min, patch) = v.version; - let stem = format!("{maj}_{min:02}_{patch}"); - writeln!(string, " Version::V{stem} => BASE_ADDRESSES_{stem},").unwrap(); - } - - string.push_str(" }\n"); - string.push_str(" }\n"); - string.push_str("}\n\n"); - - string -} - fn patches_paths() -> impl Iterator { let base_path = PathBuf::from( - env::var("DSIIIPT_PATCHES_PATH").unwrap_or_else(|_| panic!("{}", dedent(r" - DSIIIPT_PATCHES_PATH environment variable undefined. + env::var("DSIII_PATCHES_PATH").unwrap_or_else(|_| panic!("{}", dedent(r" + DSIII_PATCHES_PATH environment variable undefined. Check the documentation: https://github.com/veeenu/darksoulsiii-practice-tool/README.md#building "))), ); @@ -367,7 +18,7 @@ fn patches_paths() -> impl Iterator { .map(|dir| dir.path().join("Game").join("DarkSoulsIII.exe")) } -fn codegen_base_addresses_path() -> PathBuf { +fn base_addresses_rs_path() -> PathBuf { Path::new(&env!("CARGO_MANIFEST_DIR")) .ancestors() .nth(1) @@ -380,47 +31,112 @@ fn codegen_base_addresses_path() -> PathBuf { .join("base_addresses.rs") } -pub fn codegen_base_addresses() { - let mut processed_versions: HashSet = HashSet::new(); - - let mut version_data = patches_paths() - .filter(|p| p.exists()) - .filter_map(|exe| { - let file_map = FileMap::open(&exe).unwrap(); - let pe_file = PeFile::from_bytes(&file_map).unwrap(); - - let version = pe_file - .resources() - .unwrap() - .version_info() - .unwrap() - .fixed() - .unwrap() - .dwProductVersion; - let version = Version(version.Major as u32, version.Minor as u32, version.Patch as u32); - - if processed_versions.contains(&version) { - None - } else { - let exe = exe.canonicalize().unwrap(); - println!("\nVERSION {}: {:?}", version.to_fromsoft_string(), exe); - - let aobs = find_aobs(&pe_file); - processed_versions.insert(version); - Some(VersionData { version, aobs }) - } - }) - .collect::>(); - - version_data.sort_by_key(|vd| vd.version); - - let mut codegen = codegen_base_addresses_struct(); - codegen.push_str(&codegen_version_enum(&version_data)); - - let codegen = version_data.iter().fold(codegen, |mut o, i| { - o.push_str(&codegen_base_addresses_instances(&i.version, &i.aobs)); - o - }); +pub fn get_base_addresses() { + let aobs = &[ + aob_indirect_twice( + "WorldChrMan", + &["48 8B 1D ?? ?? ?? 04 48 8B F9 48 85 DB ?? ?? 8B 11 85 D2 ?? ?? 8D"], + 3, + 7, + true, + ), + aob_indirect_twice( + "WorldChrManDbg", + &["48 8B 05 ?? ?? ?? ?? 66 0F 7F 44 24 40 48 85 C0"], + 3, + 7, + true, + ), + aob_indirect_twice( + "MenuMan", + &["48 89 15 ?? ?? ?? ?? 44 8b 82 ?? ?? ?? ?? 44 8b 8a ?? ?? ?? ?? 48 8b c3"], + 3, + 7, + true, + ), + aob_indirect_twice( + "BaseA", + &["48 8B 05 ?? ?? ?? ?? 48 85 C0 ?? ?? 48 8b 40 ?? C3"], + 3, + 7, + true, + ), + aob_indirect_twice("BaseD", &["48 8B 0D ?? ?? ?? ?? 48 85 C9 74 26 44 8B"], 3, 7, true), + aob_indirect_twice( + "SprjDebugEvent", + &["48 8B 05 ?? ?? ?? ?? 41 0F B6 D8 8B EA"], + 3, + 7, + true, + ), + aob_indirect_twice( + "Debug", + &["C6 05 ?? ?? ?? ?? 01 48 8B 8C 24 ?? ?? ?? ?? 48 33 CC E8 ?? ?? ?? ?? 4C 8D 9C 24"], + 2, + 7, + true, + ), + aob_indirect_twice( + "Grend", + &["C6 05 ?? ?? ?? ?? 00 C6 05 ?? ?? ?? ?? 00 C6 05 ?? ?? ?? ?? 00 C6 05 ?? ?? ?? ?? \ + 00 4C 8B 05 ?? ?? ?? ?? 4C 89 44 24 58"], + 2, + 7, + true, + ), + aob_indirect_twice( + "BaseHBD", + &["48 8B 0D ?? ?? ?? ?? 41 B0 01 E8 ?? ?? ?? ?? 48 8B D3 48 8B CF"], + 3, + 7, + true, + ), + aob_indirect_twice( + "MapItemMan", + &["48 8B 0D ?? ?? ?? ?? 48 8B 89 ?? ?? ?? ?? E8 ?? ?? ?? ?? E9"], + 3, + 7, + true, + ), + aob_indirect_twice( + "SpawnItemFuncPtr", + // "E8 ?? ?? ?? ?? C7 44 24 20 00 01 00 00 4C 8D 4C 24 40 41 B8 2C 00 00 00 48 8B D3", + &["E8 ?? ?? ?? ?? C7 44 24 20 00 01 00 00 4C 8D 4C 24 40 41 B8"], + 1, + 5, + true, + ), + aob_indirect_twice( + "Param", + &["48 8B 0D ?? ?? ?? ?? 48 85 C9 74 0B 4C 8B C0 48 8B D7"], + 3, + 7, + true, + ), + aob_direct( + "FormatString", + &["3C 00 54 00 45 00 58 00 54 00 46 00 4F 00 52 00 4D 00 41 00 54 00"], + true, + ), + aob_direct( + "NoLogo", + &["E8 ?? ?? ?? FF 90 4D 8B C7 49 8B D4 48 8B C8 E8 ?? ?? ?? FF"], + true, + ), + aob_direct("CurrentTarget", &["48 8B 80 ?? ?? ?? ?? 48 8B 08 48 8B ?? 58"], true), + aob_direct( + "MenuTravel", + &["40 55 53 56 57 41 56 48 8D 6C 24 C9 48 81 EC 00 01 00 00 48 C7 45 97 FE FF FF FF"], + true, + ), + aob_direct( + "MenuAttune", + &["48 8D 45 0F 48 89 45 EF 48 8D 45 0F 48 89 45 F7 48 8D ?? ?? ?? ?? ?? 48 89 45 0F \ + 48 8D ?? ?? ?? ?? ?? 48 89 45 0F 48 8D ?? ?? ?? ?? ?? 48 89 45 17"], + true, + ), + aob_indirect("XA", &["48 8B 83 ?? ?? ?? ?? 48 8B 10 48 85 D2 ?? ?? 8B"], 3, false), + ]; - File::create(codegen_base_addresses_path()).unwrap().write_all(codegen.as_bytes()).unwrap(); + codegen::codegen_base_addresses(base_addresses_rs_path(), patches_paths(), aobs) } diff --git a/xtask/src/codegen/codegen.py b/xtask/src/codegen/codegen.py index 23a29e9..c17f479 100644 --- a/xtask/src/codegen/codegen.py +++ b/xtask/src/codegen/codegen.py @@ -234,7 +234,6 @@ def rename(self, idx): print('// **********************************') print('// *** AUTOGENERATED, DO NOT EDIT ***') print('// **********************************') - print('use super::*;') print('use std::collections::HashMap;') print('use std::ffi::c_void;') print('') diff --git a/xtask/src/codegen/mod.rs b/xtask/src/codegen/mod.rs index 442e288..ba914ec 100644 --- a/xtask/src/codegen/mod.rs +++ b/xtask/src/codegen/mod.rs @@ -1,127 +1,11 @@ -use std::collections::BTreeMap; -use std::env; -use std::ffi::OsStr; -use std::fs::File; -use std::io::{BufRead, BufReader, Write}; -use std::process::Command; +use anyhow::Result; -use regex::Regex; - -use crate::{project_root, Result}; - -pub(crate) mod aob_scans; +mod aob_scans; +mod params; pub(crate) fn codegen() -> Result<()> { - checkout_paramdex()?; - run_python_script()?; - codegen_param_names()?; - aob_scans::codegen_base_addresses(); - - Ok(()) -} - -fn run_python_script() -> Result<()> { - let python = env::var("PYTHON").unwrap_or_else(|_| "python".to_string()); - let cmd = Command::new(python) - .current_dir(project_root().join("target")) - .args(&[ - project_root().join("xtask/src/codegen/codegen.py"), - project_root().join("target/Paramdex"), - project_root().join("xtask"), - ]) - .output() - .map_err(|e| format!("python: {}", e))?; - - if !cmd.status.success() { - eprintln!("{}", std::str::from_utf8(&cmd.stderr).unwrap()); - return Err("python codegen failed".into()); - } - - File::create(project_root().join("lib/libds3/src/params/param_data.rs"))? - .write_all(&cmd.stdout)?; - - Ok(()) -} - -fn codegen_param_names() -> Result<()> { - let mut data: BTreeMap> = BTreeMap::new(); - - let files_with_content = project_root() - .join("target/Paramdex/DS3/Names") - .read_dir()? - .flat_map(|entry| { - entry.map(|entry| entry.path()).map(|path| { - if path.is_file() && Some("txt") == path.extension().and_then(OsStr::to_str) { - Some(path) - } else { - None - } - }) - }) - .flatten(); - - let r = Regex::new(r"^(\d+)\s+(.+)").unwrap(); - - for path in files_with_content { - let stem = path.file_stem().unwrap().to_string_lossy().to_string(); - - let data_contents: BTreeMap<_, _> = BufReader::new(File::open(path)?) - .lines() - .filter_map(|line| { - let line = line.ok()?; - let cap = r.captures(&line)?; - - let id: usize = cap[1].parse().ok()?; - let name: String = cap[2].to_string(); - Some((id, name)) - }) - .collect(); - - data.insert(stem, data_contents); - } - - serde_json::to_writer( - File::create(project_root().join("lib/libds3/src/params/param_names.json"))?, - &data, - )?; - - Ok(()) -} - -fn checkout_paramdex() -> Result<()> { - let git = env::var("GIT").unwrap_or_else(|_| "git".to_string()); - - if project_root().join("target/Paramdex").exists() { - let status = Command::new(&git) - .current_dir(project_root().join("target/Paramdex")) - .args(["fetch"]) - .status() - .map_err(|e| format!("git: {}", e))?; - - if !status.success() { - return Err("git fetch failed".into()); - } - - let status = Command::new(&git) - .current_dir(project_root().join("target/Paramdex")) - .args(["pull"]) - .status() - .map_err(|e| format!("git: {}", e))?; - - if !status.success() { - return Err("git pull failed".into()); - } - } else { - let status = Command::new(&git) - .current_dir(project_root().join("target")) - .args(["clone", "https://github.com/soulsmods/Paramdex.git"]) - .status() - .map_err(|e| format!("git: {}", e))?; - - if !status.success() { - return Err("git clone failed".into()); - } - } + aob_scans::get_base_addresses(); + params::codegen()?; Ok(()) } diff --git a/xtask/src/codegen/params.rs b/xtask/src/codegen/params.rs new file mode 100644 index 0000000..1accbdf --- /dev/null +++ b/xtask/src/codegen/params.rs @@ -0,0 +1,40 @@ +use std::env; +use std::fs::File; +use std::io::Write; +use std::process::Command; + +use anyhow::{bail, Context}; +use practice_tool_tasks::params::{checkout_paramdex, codegen_param_names}; + +use crate::{project_root, Result}; + +pub(crate) fn codegen() -> Result<()> { + checkout_paramdex()?; + run_python_script()?; + codegen_param_names("target/Paramdex/DS3/Names", "lib/libds3/src/params/param_names.json")?; + + Ok(()) +} + +fn run_python_script() -> Result<()> { + let python = env::var("PYTHON").unwrap_or_else(|_| "python".to_string()); + let cmd = Command::new(python) + .current_dir(project_root().join("target")) + .args(&[ + project_root().join("xtask/src/codegen/codegen.py"), + project_root().join("target/Paramdex"), + project_root().join("xtask"), + ]) + .output() + .context("python")?; + + if !cmd.status.success() { + eprintln!("{}", std::str::from_utf8(&cmd.stderr).unwrap()); + bail!("python codegen failed"); + } + + File::create(project_root().join("lib/libds3/src/params/param_data.rs"))? + .write_all(&cmd.stdout)?; + + Ok(()) +} diff --git a/xtask/src/dist.rs b/xtask/src/dist.rs deleted file mode 100644 index d1f6ada..0000000 --- a/xtask/src/dist.rs +++ /dev/null @@ -1,107 +0,0 @@ -use std::fs::{self, File}; -use std::io::{Read, Write}; -use std::path::PathBuf; - -use zip::write::FileOptions; -use zip::{CompressionMethod, ZipWriter}; - -use crate::{cargo_command, project_root, target_path, Result}; - -pub(crate) fn dist() -> Result<()> { - let status = cargo_command("build") - .args(["--locked", "--release"]) - .env("CARGO_XTASK_DIST", "true") - .status() - .map_err(|e| format!("cargo: {}", e))?; - - if !status.success() { - return Err("cargo build failed".into()); - } - - let status = cargo_command("build") - .args(["--locked", "--release", "--package", "no-logo"]) - .env("CARGO_XTASK_DIST", "true") - .status() - .map_err(|e| format!("cargo: {}", e))?; - - if !status.success() { - return Err("cargo build failed".into()); - } - - fs::remove_dir_all(dist_dir()).ok(); - fs::create_dir_all(dist_dir())?; - - let mut zip = ZipWriter::new(File::create(dist_dir().join("jdsd_dsiii_practice_tool.zip"))?); - let file_options = FileOptions::default().compression_method(CompressionMethod::Deflated); - - let mut buf: Vec = Vec::new(); - - let mut add_zip = |src: PathBuf, dst: &str| -> Result<()> { - File::open(src) - .map_err(|e| format!("{}: Couldn't open file: {}", dst, e))? - .read_to_end(&mut buf) - .map_err(|e| format!("{}: Couldn't read file: {}", dst, e))?; - zip.start_file(dst, file_options) - .map_err(|e| format!("{}: Couldn't start zip file: {}", dst, e))?; - zip.write_all(&buf).map_err(|e| format!("{}: Couldn't write zip: {}", dst, e))?; - buf.clear(); - Ok(()) - }; - - add_zip( - target_path("release").join("jdsd_dsiii_practice_tool.exe"), - "jdsd_dsiii_practice_tool.exe", - )?; - add_zip( - target_path("release").join("libjdsd_dsiii_practice_tool.dll"), - "jdsd_dsiii_practice_tool.dll", - )?; - add_zip(target_path("release").join("dinput8nologo.dll"), "dinput8.dll")?; - add_zip(project_root().join("lib/data/RELEASE-README.txt"), "README.txt")?; - add_zip(project_root().join("jdsd_dsiii_practice_tool.toml"), "jdsd_dsiii_practice_tool.toml")?; - - Ok(()) -} - -pub(crate) fn dist_parammod() -> Result<()> { - let status = cargo_command("build") - .args(["--locked", "--release"]) - .status() - .map_err(|e| format!("cargo: {}", e))?; - - if !status.success() { - return Err("cargo build failed".into()); - } - - std::fs::remove_dir_all(dist_dir()).ok(); - std::fs::create_dir_all(dist_dir())?; - - let mut zip = ZipWriter::new(File::create(dist_dir().join("jdsd_dsiii_param_tinkerer.zip"))?); - let file_options = FileOptions::default().compression_method(CompressionMethod::Deflated); - - let mut buf: Vec = Vec::new(); - - let mut add_zip = |src: PathBuf, dst: &str| -> Result<()> { - File::open(src) - .map_err(|e| format!("{}: Couldn't open file: {}", dst, e))? - .read_to_end(&mut buf) - .map_err(|e| format!("{}: Couldn't read file: {}", dst, e))?; - zip.start_file(dst, file_options) - .map_err(|e| format!("{}: Couldn't start zip file: {}", dst, e))?; - zip.write_all(&buf).map_err(|e| format!("{}: Couldn't write zip: {}", dst, e))?; - buf.clear(); - Ok(()) - }; - - add_zip(target_path("release").join("param-tinkerer.exe"), "param-tinkerer.exe")?; - add_zip(target_path("release").join("jdsd_dsiii_param_tinkerer.dll"), "param-tinkerer.dll")?; - add_zip(target_path("release").join("dinput8parammod.dll"), "dinput8.dll")?; - add_zip(project_root().join("lib/data/PARAM-TINKERER.txt"), "README.txt")?; - add_zip(project_root().join("lib/param-mod/param-mod.toml"), "param-mod.toml")?; - - Ok(()) -} - -fn dist_dir() -> PathBuf { - project_root().join("target/dist") -} diff --git a/xtask/src/main.rs b/xtask/src/main.rs index 880de6b..64659b4 100644 --- a/xtask/src/main.rs +++ b/xtask/src/main.rs @@ -1,51 +1,64 @@ mod codegen; -mod dist; use std::ffi::OsStr; -use std::fs::File; -use std::io::{Read, Write}; -use std::path::{Path, PathBuf}; -use std::process::Command; -use std::{env, iter}; +use std::{env, fs, iter}; -type DynError = Box; -type Result = std::result::Result; +use anyhow::{bail, Context, Result}; +use practice_tool_tasks::{ + cargo_command, project_root, steam_command, target_path, Distribution, FileInstall, +}; -// Main +const APPID: u32 = 374320; fn main() -> Result<()> { dotenv::dotenv().ok(); let task = env::args().nth(1); match task.as_deref() { - Some("dist") => dist::dist()?, - Some("dist-parammod") => dist::dist_parammod()?, + Some("dist") => dist()?, + Some("dist-param-mod") => dist_param_mod()?, + Some("codegen") => codegen::codegen()?, Some("inject") => inject(env::args().skip(1).map(String::from))?, Some("run") => run()?, Some("run-param-tinkerer") => run_param_tinkerer()?, - Some("codegen") => codegen::codegen()?, + Some("install") => install()?, + Some("uninstall") => uninstall()?, Some("help") => print_help(), _ => print_help(), } Ok(()) } -// Tasks +fn print_help() { + eprintln!( + r#" +Tasks: + +run ............. compile and start the practice tool +dist ............ build distribution artifacts +codegen ......... generate Rust code: parameters, base addresses, ... +inject ... standalone dll inject +install ......... install standalone dll to $DSIII_PATH +uninstall ....... uninstall standalone dll from $DSIII_PATH +help ............ print this help +"# + ); +} fn run() -> Result<()> { let status = cargo_command("build") .args(["--lib", "--package", "darksoulsiii-practice-tool"]) .status() - .map_err(|e| format!("cargo: {}", e))?; + .context("cargo")?; if !status.success() { - return Err("cargo build failed".into()); + bail!("cargo build failed"); } - let mut buf = String::new(); - File::open(project_root().join("jdsd_dsiii_practice_tool.toml"))?.read_to_string(&mut buf)?; - File::create(target_path("debug").join("jdsd_dsiii_practice_tool.toml"))? - .write_all(buf.as_bytes())?; + fs::copy( + project_root().join("jdsd_dsiii_practice_tool.toml"), + target_path("debug").join("jdsd_dsiii_practice_tool.toml"), + )?; let dll_path = target_path("debug").join("libjdsd_dsiii_practice_tool.dll").canonicalize()?; @@ -58,10 +71,10 @@ fn run_param_tinkerer() -> Result<()> { let status = cargo_command("build") .args(["--release", "--lib", "--package", "param-tinkerer"]) .status() - .map_err(|e| format!("cargo: {}", e))?; + .context("cargo")?; if !status.success() { - return Err("cargo build failed".into()); + bail!("cargo build failed"); } let dll_path = project_root() @@ -75,61 +88,66 @@ fn run_param_tinkerer() -> Result<()> { Ok(()) } -fn print_help() { - eprintln!( - r#" -Tasks: - -run ........... compile and start the practice tool -dist .......... build distribution artifacts -codegen ....... generate Rust code: parameters, base addresses, ... -help .......... print this help -"# - ); +fn dist() -> Result<()> { + Distribution::new("jdsd_dsiii_practice_tool.zip") + .with_artifact("libjdsd_dsiii_practice_tool.dll", "jdsd_dsiii_practice_tool.dll") + .with_artifact("jdsd_dsiii_practice_tool.exe", "jdsd_dsiii_practice_tool.exe") + .with_artifact("dinput8nologo.dll", "dinput8.dll") + .with_file("lib/data/RELEASE-README.txt", "README.txt") + .with_file("jdsd_dsiii_practice_tool.toml", "jdsd_dsiii_practice_tool.toml") + .build() } -// Utilities - -fn project_root() -> PathBuf { - Path::new(&env!("CARGO_MANIFEST_DIR")).ancestors().nth(1).unwrap().to_path_buf() +fn dist_param_mod() -> Result<()> { + Distribution::new("jdsd_dsiii_param_tinkerer.zip") + .with_artifact("jdsd_dsiii_param_tinkerer.dll", "param_tinkerer.dll") + .with_artifact("param_tinkerer.exe", "param_tinkerer.exe") + .with_artifact("dinput8parammod.dll", "dinput8.dll") + .with_file("lib/data/PARAM-TINKERER.txt", "README.txt") + .with_file("lib/param-mod/param-mod.toml", "param-mod.toml") + .build() } -fn target_path(target: &str) -> PathBuf { - let mut target_path = project_root().join("target"); - if cfg!(not(windows)) { - target_path = target_path.join("x86_64-pc-windows-msvc"); +fn install() -> Result<()> { + let status = cargo_command("build") + .args(["--lib", "--release", "--package", "darksoulsiii-practice-tool"]) + .status() + .context("cargo")?; + + if !status.success() { + bail!("cargo build failed"); } - target_path.join(target) + FileInstall::new() + .with_file(target_path("release").join("libjdsd_dsiii_practice_tool.dll"), "dinput8.dll") + .with_file( + project_root().join("jdsd_dsiii_practice_tool.toml"), + "jdsd_dsiii_practice_tool.toml", + ) + .install("DSIII_PATH")?; + + Ok(()) } -fn cargo_command(cmd: &'static str) -> Command { - let cargo = env::var("CARGO").unwrap_or_else(|_| "cargo".to_string()); +fn uninstall() -> Result<()> { + FileInstall::new() + .with_file(target_path("release").join("libjdsd_dsiii_practice_tool.dll"), "dinput8.dll") + .with_file( + project_root().join("jdsd_dsiii_practice_tool.toml"), + "jdsd_dsiii_practice_tool.toml", + ) + .uninstall("DSIII_PATH")?; - let mut command = Command::new(cargo); - command.current_dir(project_root()); - if cfg!(windows) { - command.arg(cmd); - } else { - command.args(["xwin", cmd, "--target", "x86_64-pc-windows-msvc"]); - } - command + Ok(()) } fn inject>(args: impl Iterator) -> Result<()> { - cargo_command("build") - .args(["--release", "--bin", "inject"]) - .status() - .map_err(|e| format!("cargo: {}", e))?; + cargo_command("build").args(["--release", "--bin", "inject"]).status().context("cargo")?; - let mut cmd = if cfg!(windows) { - Command::new(target_path("release").join("inject")) - } else { - let mut c = Command::new(env::var("XTASK_WINE").expect("XTASK_WINE not defined")); - c.arg(target_path("release").join("inject.exe").strip_prefix(project_root()).unwrap()); - c - }; + steam_command(target_path("release").join("inject"), APPID)? + .args(args) + .status() + .context("inject")?; - cmd.args(args).status().map_err(|e| format!("inject: {}", e))?; Ok(()) }